/*********************************************************
I TRIED TO MAKE THIS EASY TO STYLE! SEE NOTES BELOW
**********************************************************/
#nav{
	width:975px;
	margin:0px auto;
	padding-left:8px;
	
}
.menuLevel0 a{


 
}
a{
	text-decoration:none;
}
.dropdown li{
	/*
		OVER ALL LINE HEIGHT
	*/
		margin-left: 10px;
 text-decoration:none;
 color:#16213f;
 padding:3px 3px 3px 3px;
 margin:10px 20px 0px 0px;
 font-size:16px;
 font-family:Arial,sans-serif;
 font-weight:bold;
 cursor:pointer;
 letter-spacing:1px;

}
.dropdown li ul li{
	/*
		OVER ALL LINE HEIGHT
	*/
		margin-left: 10px;
 text-decoration:none;
 color:#16213f;
 padding:3px 3px 3px 3px;
 margin:0px 0px 0px 0px;


}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	font-size:13px;
	padding:3px;
}
.menuLevel0 a{
	color:#333;
	
}
.selectedmenuLevel0 a{
	color:#ED037C;
}
.dropdown a:hover{
	color: #fff000;
	font-weight:bold;
	text-decoration:none;

}
.dropdown li ul, .menuLevel0 ul {
	background-color:#16213f;
	margin-bottom:-2px;
	margin-left:0px !important;
	padding-left:0px !important;
	margin-right:0px !important;
	padding-right:0px !important;
	border:1px solid #fff;
	color:#fff;
	font-size:13px;
	font-weight:bold;
}
.dropdown li{
	padding:3px;
}

.dropdown li ul li a{
	/* The width of the dropdown and popout menu */
	font-weight:bold;
	font-size: 14px;
	color:#fff;
	padding-left:4px;
	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	
}
.dropdown li ul li a:hover{
	
	color: #fff000;
}
.dropdown li ul {
	font-size:12px;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	margin-left:0px;
	padding-left:0px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	border-bottom:1px solid #fff;
	width:150px;
	margin-left:0px !important;
	padding-left:0px !important;
}
.dropdown li ul li a{
	width:148px;
	margin-left:0px !important;
	margin-right:0px !important;
	padding-right:0px !important;
	font-size:10px
}
.dropdown a.popout {
	/* totally optional popout indicator */
	background-image: url(../_media/graphics/dropdown/popout.gif);
	background-position:center right;
	background-repeat:no-repeat;
}

/************************************************************
ONLY EDIT BELOW IF YOU REALLY KNOW WHAT YOUR DOING!
************************************************************/
.dropdown {
	margin:0;
	padding:0;
	list-style-type:none;
}
.dropdown ul{
	margin:0;
	padding:0;
	list-style-type:none;
}
.dropdown a {
	display:block;
}
.dropdown li{
	float:left;
	position:relative;
	display: block;
	
}
.dropdown ul {
	position:absolute;
	display:none;
}
.dropdown li ul a{
	float:left;
	text-align:left;
}
.dropdown li ul {
	float:left;
}
.dropdown li ul li{
	float:left;
	position:relative;
}
.dropdown ul ul{
	top:0;
	left:100%;
}
.dropdown li ul ul {
	width:auto;
	margin: -1px 0px 0px 0px;
	float:left;
	text-align:left;
}
.dropdown li:hover ul ul, .dropdown li:hover ul ul ul, .dropdown li:hover ul ul ul ul{
	display:none;
}
.dropdown li:hover ul, .dropdown li li:hover ul, .dropdown li li li:hover ul, .dropdown li li li li:hover ul{
	display:block;
}
