/*** Nav bar styles ***/

#navigation {
	margin-left: 15px;
	margin-top: -75px;
}

#navigation a, a:visited, a:active {
	font-size: 11px;
	color: #FFFFFF;
}

ul.nav,
.nav ul{
/*Remove all spacings from the list items*/
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	z-index: 1;
}

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: 25ex;
	left: 15ex;
	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 10px;
}

.nav ul li a:hover {
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
}

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

ul.nav,
.nav ul,
.nav ul li a{
	background-color: #000000;
	color: #003366;
}

ul.nav li:hover,
.nav ul li a:hover{
	background-color: #003366;
	color: #fff;
}

ul.nav li:active,
.nav ul li a:active{
	background-color: #036;
	color: #fff;
}

ul{
	border: 1px solid #000000;
}

.nav a{
	text-decoration: none;
}
