/* ..........| menuDropdown |.............................. */

/* 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 {
  font-family: tahoma, arial, sans-serif;
  font-weight:bold;
  font-size: 12px;
  margin: 0;
  /*padding-top: 290px;*/
  /* if the menu is horizontal and has a 'static' position:
   * do not set a non-zero margin-top, if the BODY element has a zero
   * padding-top and this menu is its first 'static' child
   * this is due to an Opera 7 bug :-(
   */
  z-index: 1;
  position: absolute;
  top: 0;
	/*left: 50px;*/
  
  /* if the menu is horizontal: use a 'static' position
   * if the menu is vertical: use an 'absolute' or 'fixed' position
   */
}

#menuList1 {
  border: none;
  margin: 0;
  padding: 0;
  /* do not use a position other than 'static' here */
}

#menuList1 li {
  /* do not change these rules */
  display: inline;
  margin: 0;
  padding: 0;
  list-style: none;
  /* do not change these rules */
}

#menuList1 li a {
  background-color: transparent;
  display: block;
	float: left;
	height: 29px;
  line-height: 29px;
  border: none;
  margin: 0;
  padding: 0 10px;
	color: #CCC;
	
	/*padding-right: 150px;*/
  /* always set margin to '0' */
  /* Win/IE5.0 will ignore border and padding if display is 'inline' */
  text-decoration: none;
}
#menuList1 li a:hover {
	background-image: url(../../images/nav_hover.gif);
	color: #FFF;
}

#menuList1 li a:last-child {
	/*padding-right: 0;*/
}

#menuList1 .menu li a {
  background-color: transparent;
  display: block;
  /*line-height: 25px;
	height: 25px;*/
  border: none;
	text-align: left;
  margin: 0;
  /*padding: 0 10px;*/
  /* always set margin to '0' */
  /* Win/IE5.0 will ignore border and padding if display is 'inline' */
  text-decoration: none;
}

#menuList1 li a.actuator {
  width: auto;
}

#menuList1 .menu li a.actuator:hover, #menuList1 .menu li a.actuator:focus {
  background-color: #663531;
  color: #FFF;
  font-size: 12px;
}

#menuList1 .menu {
	background-color: #1d4d40;
  color: #FFF;
  border: 1px solid #1a1a53;
  margin: 0;
  padding: 0;
  /* only set '0' or negative margin */
  /* border  width must be the same on the four sides (in 'px' units) */
  /* padding width must be the same on the four sides (in 'px' units) */
  z-index: 1;
  position: absolute;
  visibility: hidden;
  /* always set position to 'absolute' and visibility to 'hidden' */
}

#menuList1 .menu .menu {
  margin-left: 0px;
  /* if a non-zero padding is set on .menu, set margin-left to margin-left + padding */
}
#menuList1 .menu li {
}

#menuList1 .menu li a {
	display: block;
  
}

#menuList1 .menu li a.actuator {
  display: block;
	color: #FFF;
  background: none;
  font-weight: bold;
  font-size: 12px;
	border-bottom: 1px solid #1a1a53;
	width: 150px;
	line-height: 24px;
	height: 24px;
}

#menuList1 .menu li a.actuator:hover, #menuList1 .menu li a.actuator:focus {
  color: #FFF;
  background: #1a1a53;
	border-bottom: 1px solid #1a1a53;
}
