/* ____________________ CSS DROP-DOWN MENU SYSTEM ____________________
   -------------------------------------------------------------------
   | This CSS file needs to be modified and then included in the     |
   | main CSS document. Please pay special attention to the ID and   |
   | class names in other CSS documents as to not overwrite the      |
   | styles in this file.                                            |
   ------------------------------------------------------------------- */
   
/* Styles for the submenus that make it look all pretty */
.navcontainer { 
	width: 160px;
	}

.navcontainer ul {
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
	width: 100%;
	}

.navcontainer ul li {
	padding: 0;
	margin: 0;
	line-height: 20px;
	
	}

.navcontainer a {
	display: block;
	padding: 3px;
	width: 100%;
	background: #8f8f8f;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	border: 1px solid #2F3C66;
	border-bottom: none;
	}


.navcontainer a:hover {
	background: #303D69;
	color: #fff;
	}

#subnav1 { 					/* Add as many as necessary */
	left:224px;
	top:224px;
	visibility: hidden;
	z-index: 2;
	position: absolute;
}

#subnav2 {	
	position: absolute;
	left:224px;
	top:254px;
	z-index: 2;
	visibility: hidden;
}