div#vnav { 
	float: left; z-index: 104;
	width: 239px; height: 291px; background: #272D3E; font-size: 14px;
}
div#vnav ul.nav,
.nav ul{
/*Remove all spacings from the list items*/
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	z-index: 105;
}

div#vnav ul.nav{
	width: 239px;
/*Optional, to make the navigation bar positions on the left of the content*/
	float: left;
	margin-right: 1em;
}


div#vnav ul.nav>li{
	margin: 0;
	padding: 4px 6px;
}

div#vnav ul.nav li>ul{
/*Make the sub list items invisible*/
	display: none;
	position: absolute;
	width: 200px;
	left: 12ex;
	margin-top: -1.4em;
	margin-left: 9px;
}

div#vnav ul.nav li:hover>ul{
/*When hovered, make them appear*/
	display : block;
}

.nav ul li a{
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 4px 10px;color:#FFFFFF;
}

/*** Menu styles (customizable) ***/

div#vnav ul.nav,
.nav ul,
.nav ul li a{
	background-color: #272D3E;
	color: #FFFFFF;
}
ul.nav li:hover,
.nav ul li a:hover{
	background-color: #272D3E;
	color: #D30F4C;
}
div#vnav ul.nav li:active,
.nav ul li a:active{
	background-color: #272D3E;
	color: #fff;
}
ul{
	border: 0px solid #FF0000;
}
.nav a{
	font:14px Arial, Helvetica, sans-serif;
	text-decoration: none;color:#FFFFFF;
}
.nav a:hover{
	font:14px Arial, Helvetica, sans-serif;
	text-decoration: none;color:#D30F4C;
}

