/* 
 *	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 ul {
	margin: 0 0 1px 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

#Vmenu li {
	margin: 0px;
	padding:0px;
	border: 0;
	display: block;
	position: relative;
}

#Vmenu a {
	display: block;
}

#Vmenu li {
	width: 100%;
}

/* 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%;
}

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

/* 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 */
#VmenuList:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

/* Clear-fix for IE5/Mac 
#Vmenu a {
	float: left;
}
*/

#VmenuList {
	display: block;
}


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

#Vmenu {
	width: 100%;
	color: #fff;
	background-color: #1b1b1b;
}

#VmenuList li:hover {
	background:#1b1b1b;
	color:#fff;
}

#VmenuList a, #VmenuList a:visited {
	padding: 3px 0px 3px 25px;
	font-size: 1.05em;
	font-weight: normal;
	text-decoration: none;
	text-align: left;
	color: #fff;
	text-transform:uppercase;
	height:20px;
	border-bottom: 1px solid #636363;
	/* background:  #EBE7E5 url(../images/menu_roll.jpg) 0 0; */
}

#VmenuList a:hover {
	color:#FFF;
	background:#343434;
	/* background:  #DBD6D2 url(../images/menu_roll.jpg) 0 -50px; */
}



#VmenuList li ul {
	width: 160px;
	color: #fff;
	background-color: #1b1b1b;
	border: 1px solid #636363;
}

#VmenuList li ul a {
	text-align: left;
}

/*
#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;
}