#hmenu{
   list-style: none;
   position: relative;
   float: left;
   display: block;
   top: 68px;
   margin-bottom: 0px;
   color: #414141;
   font-weight: bold;
   text-decoration: none;
   z-index: 500;
   padding: 0px;
}
#menuTree ul,
#menuTreeIndex ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
   position: relative;
   display: block;
}
#menuTree li,
#menuTreeIndex li { /* all list items */
	float: left;
	color: #ffffff;
   display: block;
	/*text-transform: uppercase;*/
	font-weight: bold;
	position: relative;
	width: auto;
}
.menuDivider {
display: block;
	float: left;
   width: 1px;
   height: 36px;
   position: relative;
   white-space: nowrap;
   background: url(../images/menuStroke.gif) no-repeat;
}


#menuTree li a,
#menuTreeIndex li a { 
   color: #414141;
   cursor:pointer;
display:block;
padding: 0.2em 1em;
text-decoration:none;
}
#menuTree li ul,
#menuTreeIndex li ul { /* second-level lists */
	display: none;
	position: absolute;
	width: 180px;
   background-color: #D1BE00;
	
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	/*border-bottom: 1px solid #ffffff;*/
	top: 12px;
	margin-left: -1px;
}
#menuTree li ul.menuItemMarker,
#menuTreeIndex li ul.menuItemMarker{
   display: none;
   border-left: 1px solid #ffffff;
   border-right: 1px solid #ffffff;
   width: 100%;
   height: 6px;
   top: 32px;
   position: absolute;
   background-color: #D1BE00;
      z-index: 50;
}

#menuTree li ul li,
#menuTreeIndex li ul li { /* second-level lists */
	display:block;
   white-space: nowrap;
   width: 100%;
	clear: both;
}
#menuTree li ul li a,
#menuTreeIndex li ul li a { 
border-bottom: 1px solid #fff;
text-transform: none;
	font-weight: normal;
	padding-top:5px;
	padding-bottom: 5px;
   display: block;
}
#menuTree li ul li a:hover,
#menuTreeIndex li ul li a:hover { 
background-color: #E3D866;
}
#menuTree li>ul,
#menuTreeIndex li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: 38px;
	left: auto;
}

#menuTree li:hover ul, #menuTreeIndex li:hover ul, #menuTree li.over ul, #menuTreeIndex li.over ul { /* lists nested under hovered list items */
	display: block;
	z-index:999;
}





