#vmenu { /* Common style */
	margin: 0px; 
	color: #ffffff;
	padding: 0px;
	height: 30;
	list-style: none;
	font-size: 11px;
}

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

#vmenu li.has-children { /* Any item with children */
	position: relative;
	width: 90px;
	height: 30;
	color: #ffffff;
	background-color: #000000 url('images/top_menu_bg.gif') no-repeat right;
	display:block;
}

#vmenu li.has-children:hover, #vmenu a.has-children:hover { /* Any item with children - hover */
	background-color: #D165B0;
}

#vmenu li { /* Any item without children */
	position: relative;
	width: 150px;
	font-size: 11px;
	height: 30;
	background-color: #000000;
	display: block;
}

#vmenu li a {
	font-size: 11px;
}

#vmenu ul li a {
	font-size: 11px;
}

#vmenu li:hover, #vmenu a:hover { /* Any item wihout children - hover */
	background-color: #D165B0;
}

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

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

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

}

#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: 90px;} 
/* end holly hack */