/* Navigation Styles Begin */



#nav {
	z-index:10; /* to sit above other positioned elements*/
}

#nav li {
	display: block;
	float: left;
	position:relative;	
	margin:0;
	z-index:10;
}

#nav li ul {
	display: none; /* hides the sub navs so they don't all display on page load */
}

#nav li:hover ul, #nav li a:hover ul {
	display: block;
	position: absolute;
	top: 35px; /* pushes the start of the dropdowns away from parent menu */ 
	z-index:10;
	border-top: 2px solid #c92435;
	border-bottom: 2px solid #c92435;
}

#nav li:hover ul li a, #nav li a:hover ul li a {
	border:2px solid #c92435;
	margin-left:0;
	border-top: 1px solid #c92435;
	border-bottom:0;
	height: auto;
	width: 12em;
	/* these can be left to inherit the colors of the parent or overridden */
	background: #0c303f;
}

#nav li:hover ul li:hover a , #nav li a:hover ul li a:hover {
	background: #c92435;
}

#nav li table {
	margin-bottom: -1px;
}

/*Navigation Styles End */
