/* CSS Document */
/*** Nav bar styles ***/

ul.nav,
.nav ul{
	/*Remove all spacings from the list items*/
	margin: 0 0 0 10;
	padding: 0;
	cursor: default;
	list-style-type: none;
	text-align: left;
}

ul.nav{
	width: 40ex;
	/*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;
	font-size: 1.4em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.6em;
	border-bottom: 1px dotted #C90;
	background-image: url(../images/arrow.gif);
	background-repeat: no-repeat;
	background-position: right;
}

ul.nav li>ul{
	/*Make the sub list items invisible*/
	display: none;
	position: absolute;
	width: 28ex;
	left: 20ex;
	margin-top: -1.4em;
	margin-left: 9px;
	visibility: visible;
	font-size: .8em;
	
}

ul.nav li:hover>ul{
	/*When hovered, make them appear*//*This is the container that holds the sub-links*/
	display : block;
	margin-left: 115px;
	border: 1px dotted #FFF;
	z-index: 101;
}

.nav ul li a{
	/*Make the hyperlinks as a block element, sort of a hover effect*/
	/*display: block;*/
	padding: 2px 10px;
	border-bottom: 1px dotted #FFF;

}

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

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

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

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


.nav a{
	text-decoration: none;
	color: #FFF;
	
}
.insideBullet {
	list-style-position: inside;
	margin-bottom: 5px;
}
