/* menuH.css
 * For: menuDropdown.js (version: 0.1x)
 */

/* if the menu is horizontal:
 * avoid defining 'static' elements that have a non-zero border and that have
 * their 'width' or 'height' different than 'auto', when they are ancestors of
 * submenu elements (including #mainMenu and #menuList themselves)
 * it may cause slight positioning bugs in Win/IE5-6
 * for the same reason, avoid setting a non-zero border on the BODY element if
 * Win/IE6.0 switches to standards-compliant mode
 */
/* if the menu is horizontal and has a 'static' position:
 * do not set neither margin nor padding nor border on the HTML element, as it
 * will lead to wrong submenu position in Opera 7
 * do not set margin on the BODY element neither (use padding instead)
 */
#mainMenu1 {
	color: #FFFFFF;
	z-index: 1000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:small;
	padding:0px;
	margin:0px;
}
#menuList1 {
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
	padding-left:0;
	padding-right: 0;  /* do not use a position other than 'static' here */
}
#menuList1 li {
	display: inline;
	margin:0;
	padding-right: 6px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#menuList1 li a {

  color: #FFFFFF;
  display: inline;
line-height:30px;
  margin: 0;
  padding: 1px 8px;
  vertical-align:middle;
  /* always set margin to '0' */
  /* Win/IE5.0 will ignore border and padding if display is 'inline' */
  text-decoration: none;
}



/* As Win/IE5.0 doesn't apply padding on inline elements, background images
 * must be hidden from it, otherwise they will be displayed behind text
 */
/* As Win/IE5.0 doesn't apply padding on inline elements, background images
 * must be hidden from it, otherwise they will be displayed behind text
 */
#menuList1 li a.actuator {
  width/* */: auto; /* hides the following rule from Win/IE5.0 */

}





#menuList1 .menu .menu {
  margin-left: 2px;
  /* if a non-zero padding is set on .menu, set margin-left to margin-left + padding */
}
#menuList1 .menu li {
	padding:0px;
}
#menuList1 .menu li a {
  display: block;
  line-height: normal;
}

#menuList1 .menu li a.actuator {
	background-color: #B6005E;
	background-image: url("images/menu_down.gif");
	background-repeat: no-repeat;
	background-position: 100% 50%;
}

#menuList1 .menu li a.actuator:hover, #menuList1 .menu li a.actuator:focus {
  background: url("images/menu_down.gif") no-repeat 100% 50% #B6005E;
}