#vmenu { /* Common style */
	margin: 0px; 
	padding: 0px; 
	list-style: none;
	font: bold 12px Verdana;
}

#vmenu ul { /* Root items */
	padding: 1px;
	margin: 0px;
	list-style: none;
	width: 168px;
	z-index: 99;
	overflow: visible;
	position: absolute; 
	background-color: #ffffff;
	border: 1px solid #848484;
}

#vmenu li.has-children { /* Root with children */
	position: relative;
	width: 168px;
	display:block;
	background: #f6f6f6 url('images/category_collapsed.gif') no-repeat 97%;
}

#vmenu li ul li.has-children { /* 2nd+ level with children */
	position: relative;
	width: 168px;
	display:block;
	background: #ffffff url('images/category_collapsed.gif') no-repeat 97%;
}

#vmenu li.has-children:hover, #vmenu li > a.has-children:hover, #vmenu li:hover > a.has-children:link, #vmenu li:hover > a.has-children:visited   { /* Root with children - hover */
	color: #eda928;
	background: #ffffff url('images/category_expanded_emenu.gif') no-repeat 97%; 
}

#vmenu li ul li.has-children:hover, #vmenu li ul li a.has-children:hover, #vmenu li ul li:hover a.has-children:link, #vmenu li ul li:hover a.has-children:visited { /* 2nd+ level item with children - hover */
	color: #ffffff;
	background: #eda928 url('images/category_expanded_emenu.gif') no-repeat 97%; 
}

#vmenu li { /* Root without without children */
	position: relative;
	width: 168px;
	display: block;
}

#vmenu li ul li { /* 2nd+ level without children */
	position: relative;
	width: 168px;
	display: block;
}

#vmenu li:hover, #vmenu a:hover { /* Root wihout children - hover */
	color: #eda928;
	background-color: #ffffff;
}

#vmenu li ul li:hover, #vmenu li ul li a:hover { /* 2nd+ level wihout children - hover */
	color: #ffffff;
	background-color: #eda928;
}

#vmenu li.h-sep { /* Horizontal separator */
	margin: 0;
	padding: 0;
	height: 3px;
	line-height: 3px;
	font-size: 1px;
	background: url('images/emenu_delim.gif') repeat-x center;
}

#vmenu li.h-sep:hover { /* Horizontal separator */
	background: url('images/emenu_delim.gif') repeat-x center;
}

#vmenu ul li {  /* 2nd+ level items */
	background-color: #ffffff; 
	font-size: 11px; 
	background-image: none;
}

#vmenu a { /* 2nd+ level items (a tag) */
    text-decoration:none; 
	color: #333333;
	font: bold 12px Tahoma;
    display:block;
    padding: 4px;
}

#vmenu li ul li a {
	font: bold 11px Tahoma;
}

#vmenu ul { /* submenu offset relating to root items */
    display: none; 
    position: absolute; 
    top:0; 
    left: 168px;

}

#vmenu li:hover > ul { /* Show children */
    display: block; 
}

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

/* Win IE only \*/
* html #vmenu li {float:left;} 
* html #vmenu a {width: 168px;} 
* html #vmenu li.has-children:hover, * html #vmenu li a.has-children:hover, * html #vmenu li:hover a.has-children:link, * html #vmenu li:hover a.has-children:visited { /* Root with children - hover */
	color: #eda928;
	background: #ffffff url('images/category_expanded_emenu.gif') no-repeat 97%; 
}
* html #vmenu ul { left: 176px;}
/* end holly hack */

