/*
  This is the default layout template for nice menus, and will provide
  a starting point for the look of your menus. To customize, it's
  recommended to create a custom CSS file using this file as a template,
  then configure the module to use your custom CSS file
  (this is done in the global settings tab of the theme administration.)

  See README.txt and the handbook page (http://drupal.org/node/185543)
  for more information on using the CSS.
*/

/******************************
 Global CSS for ALL menu types
******************************/

ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: transparent none;
  font-size:12px;
}

ul.nice-menu li {
  border: transparent none;

  float: left; /* LTR */
  background-color: #366092;
}

ul.nice-menu a {
  padding: 12px 20px 12px 20px;
  color:#ffffff;
  text-decoration:none;
}

ul.nice-menu>li:hover {
	background-color:#afbfd3;
}

ul.nice-menu>li:hover>a{
	background-color:#afbfd3;
	color:#000;
}


ul.nice-menu a:hover {
	background-color:#afbfd3;
	color:#000000;
}

ul.nice-menu ul {
  top: 42px;
  left: -1px; /* LTR */

  border:transparent none;
  /*border-top:1px solid #366092;*/
  margin-right: 0; /* LTR */
  background-color:#afbfd3;
}

ul.nice-menu ul li {
  width: 12.5em;
  background-color:#afbfd3;
}
ul.nice-menu>li.active-trail {
	background-color:#afbfd3;
}
ul.nice-menu>li.active-trail>a {
	color:#000;
}

ul.nice-menu ul li a {
	color:#333;
	padding:3px 15px;
	  border-top:1px solid #afbfd3;
	  border-bottom:1px solid #afbfd3;
	
}
ul.nice-menu>li>ul>li:hover>a{
	color:#000;
	background-color:#fff;
	border-top:1px solid #666;
	border-bottom:1px solid #666;
}

ul.nice-menu ul li a:hover {
	color:#000;
	background-color:#fff;
	border-top:1px solid #666;
	border-bottom:1px solid #666;
}
ul.nice-menu li ul li ul {
	background-color:#ffffff;
	border:1px solid #666;
	border-left:transparent none;
}
ul.nice-menu ul ul li {
	background-color:#ffffff;
	border:transparent none;
}
ul.nice-menu ul ul li a, ul.nice-menu ul ul li:hover a {
	background-color:#ffffff;
	color:#666;
	border-top:transparent none;
	border-bottom:transparent none;

}
ul.nice-menu ul ul li:hover {
	background-color:#fff;
	border-top:transparent none;
	border-bottom:transparent none;
}
ul.nice-menu ul ul li a:hover {
	color:#000;
}

/******************************
 HORIZONTAL (down) menus
******************************/

ul.nice-menu-down {
  float: left; /* LTR */
  border: 0;
}

ul.nice-menu-down li {
  border: transparent none;
}

ul.nice-menu-down li li {
  border-top: 0;
}

ul.nice-menu-down ul {
  left: 0; /* LTR */
}

ul.nice-menu-down ul li {
  clear: both;
}

ul.nice-menu-down li ul li ul {
  left: 12.5em; /* LTR */
  top: -1px;
}

ul.nice-menu-down .menuparent a {
  padding-right: 15px; /* LTR */
}


ul.nice-menu-down li li.menuparent {
  background: url("../images/arrow-right.png") right center no-repeat; /* LTR */
}

ul.nice-menu-down li li.menuparent:hover {
  background: url("../images/arrow-right.png") right center no-repeat; /* LTR */
}


ul.nice-menu-down li.menu-234 ul {
	min-width:200px;
}
ul.nice-menu-down li.menu-234 ul li {
	min-width:200px;
}
ul.nice-menu-down li.menu-234 ul li ul {
	left:200px;
}