/*** Nav bar styles ***/
ul.nav,
.nav ul{
/*Remove all spacings from the list items*/
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	line-height:16px;
}

ul.nav{
	width: 160px;
	height:21px;
/*Optional, to make the navigation bar positions on the left of the content*/
	float: left;
	margin-right: 1em;
}

ul.nav>li{
	margin: 0;
	padding: 2px 6px;
}

ul.nav li>ul{
/*Make the sub list items invisible*/
	display: none;
	position: absolute;
	width: 160px;
	height:21px;
	margin-top: -1.4em;
	margin-left: 120px;
	margin-left: 0px !imporatant;
}

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: 2px 10px;
}

/*** Menu styles (customizable) ***/

ul.nav,
.nav ul,
.nav ul li a{
	background:url(../images/button_active.png) no-repeat;
	color: #312a20;
}

ul.nav li:hover,
.nav ul li a:hover{	
	background:url(../images/button.png) no-repeat;
	color: #fff;
}

ul.nav li:active,
.nav ul li a:active{
	color: #fff;
}

ul{
	/*border: 1px solid #369;*/
}

.nav a{
	text-decoration: none;
	color:#312a20;
}
