/* 
 *	Vertical, left-2-right menu
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *	(c) 2004 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by/2.0/
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 */

/*		------	Basic style	------		*/

#Vmenu {
	/*
	width: ?;
	YOU MUST specify some width, otherwise menu would span whole page.
	Since this depends on design, do it in make-up section.
	*/
	display: block;
}

#Vmenu, #Vmenu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

#Vmenu li {
	margin: 0;
	padding: 0 ;
	border: 0;
	width: 100%;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 15;		/* thus we need to apply explicit z-index here... */
}

#Vmenu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
}

#Vmenu a {
	display: block;
}

/* initialy hide all sub menus */
#Vmenu li ul {
	display: none;
	position: absolute;
}

/* fix the position for 2nd level submenus. first make sure no horizontal scrollbars are visible on initial page load... */
#Vmenu li ul {
	top: 0;
	left: 0;
}

/* ...and then place it where it should be when shown */
#Vmenu li:hover ul {
	left: 100%;
}

/* display them on hover */
#Vmenu li:hover>ul {
	display: block;
}

/* this is needed if you want to style #Vmenu div - force containment of floated LIs inside of main UL */
/* -- float.clear --
	force containment of floated LIs inside of UL */
#Vmenu:after, #Vmenu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

/* fix white-space for IE5+ */
<!--[if IE]>

#Vmenu ul li, #Vmenu li {float: left; width: 100%;}
#Vmenu ul li a, #Vmenu li a {height: 1%;}

<![endif]-->


/*		------   Make-up	--------			*/

#Vmenu {
	width: 100%;
	color: #fff;
	background: none;
}

#VmenuList a, #VmenuList a:visited {
	padding: 3px 0px 3px 15px;
	font-size: 1.0em;
	font-weight: bold;
	text-decoration: none;
	text-align: left;
	color: #fff;
	background: none;
}

#VmenuList li:hover>a {
	background: none;
	color: #b2bb1c;
}

#VmenuList a:hover {
	background: none;
	color: #b2bb1c;
}

#VmenuList ul {
	width: 160px;
	border: 1px solid #ccc;
	background: #ac2c32;
}

#VmenuList ul li a, #VmenuList ul li a:visited {
	color: #fff;
	background: #ac2c32;
}

#VmenuList ul li a:hover {
	color: #b2bb1c;
	background: #ac2c32;
}

/* inset submenus, to show off overlapping */
/*
#VmenuList li:hover>ul {
	top: 5px;
	left: 95%;
}
*/


/*
#Vmenu ul.VsubList {
	background-image: none;
	background-repeat: no-repeat ;
	background-position: right;
}

#Vmenu ul.VsubList>a {
	background-image: none; 
	background-repeat: no-repeat ;
	background-position: right;
}

#Vmenu ul.VsubList:hover>a {
	background:#fbe631;
	color:#333333;
}
*/