@charset "utf-8";
/* CSS Document */

/*** Nav bar styles ***/

ul.nav,
.nav ul{
/*Remove all spacings from the list items*/
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
}

ul.nav{
	width: 20ex;
/*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: 33ex;
	left: 17ex;
	margin-top: -1.4em;
	margin-left: 9px;
}

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 4px;
}


.nav ul li a{
	background-color: #c3bf64;
	color: #293022;
	border-color: #293022;
	border-style: solid;
    border-width: .25ex;

}

.nav ul li a:hover{
	background-color: #620f0f;
	color: #fff;
}


.nav a{
	text-decoration: none;
}
