#hmenu { /* Common style */
	list-style: none; 
	font-size: 11px;
	margin: 0;
	padding: 0;
	z-index:40;
}

#hmenu ul { /* 2nd level items */
	padding: 0px;
	margin-left:0;
	list-style: none;
	position:absolute;
	overflow:visible;
	border: 1px solid black; 
	background: #fff;
	z-index:50;
	width: 150px;
}

#hmenu li { /* Root items */
	background: #def3ff url(images/top_menu_bg_new.gif) repeat-x;
	margin:0;
	float:left;
	display: block;
	_display: inline-block;
	margin-right: 0px;
	margin-left: 1px;
}

#hmenu li a { /* Root items: text color */
	color: #fff;
	font-weight: bold;
	text-align: center;
	display: block; 
	_display: inline-block;
	text-decoration: none; 
	padding: 5px 26px 0px 26px;
	height: 22px;
	background: #def3ff url(images/top_menu_bg_new.gif) repeat-x;
}

#hmenu li a:hover, #hmenu li:hover{ /* Root items: hover background */
	background: #def3ff url(images/top_menu_bg_active.gif) repeat-x;
}

#hmenu ul li{ /* 2nd+ level items */
	font-size: 11px;
	width: 150px;
	margin: 0px;
}

#hmenu ul li a{ /* 2nd+ level items color */
	color: #fff;
	background: #cc7328;
	font-weight: normal;
	text-align: left;
	display: block; 
	_display: inline-block;
	text-decoration: none; 
	height: auto;
	padding: 3px 11px 3px 11px;
	/* white-space: nowrap; */
}

#hmenu ul li a:hover, #hmenu ul li:hover{ /* 2nd+ level items hover background*/
	background: #709fd1 url(none);
	
}

#hmenu ul li.has-children { /* 2nd+ level items that have children */
	/*background: #ffffff url('images/category_collapsed.gif') no-repeat right;*/
	width: 150px;
}

#hmenu ul li.has-children:hover, #hmenu ul a.has-children:hover{ /* 2nd+ level items that have children hover */
}

#hmenu a { /* Common a element */
    color: #fff;
	font-weight: bold;
	text-align: left;
	display: block; 
	_display: inline-block;
	text-decoration: none; 
	padding: 5px 21px 0px 21px;
	height: 22px;
	background: #def3ff url(images/top_menu_bg_new.gif) repeat-x;
}

#hmenu li.v-sep { /* Vertical separator */
	background: url('images/top_menu_delim.gif') no-repeat;
	background-position: top left;
	height: 22px;
	width: 2px;
}

#hmenu li.h-sep { /* Horizontal separator */
	height: 3px;
	line-height: 3px;
	font-size: 1px;
	background: url('images/sidebox_body_delim.gif') repeat-x left -3px;
}

#hmenu li.h-sep:hover { /* Horizontal separator */
	background-color: #ffffff;
	background-image: url('images/sidebox_body_delim.gif');
}

#hmenu ul {
	display: none;
}

#hmenu ul ul, #hmenu ul ul ul { /* items offset - IE */
    	display:none;
    	position:absolute;
    	margin-top: -25px;
    	margin-left: 149px;
	z-index:60;
}

#hmenu ul li>ul, #hmenu ul ul li>ul{ /* items offset - non-IE */
   margin-top: -25px;
}


#hmenu li:hover ul ul, #hmenu li:hover ul ul ul, #hmenu li:hover ul ul ul ul, #hmenu li:hover ul ul ul ul ul{ /* Hide children */
    display: none;
}

#hmenu li:hover ul, #hmenu ul li:hover ul, #hmenu ul ul li:hover ul, #hmenu ul ul ul li:hover ul, #hmenu ul ul ul ul li:hover ul{ /* Show children */
    display: block;
	_display: inline-block;
}

li>ul { /* Something IE related? :) */
	top: auto;
	left: auto;
}

/* Win IE only \*/
* html #hmenu li a {width: auto; z-index: 1010;}
/* end holly hack */


