/*********************************************************
I TRIED TO MAKE THIS EASY TO STYLE! SEE NOTES BELOW
**********************************************************/

.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
		margin-left: 10px;

}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	
	font-family: helvetica, verdana, tahoma, arial;
	text-transform: uppercase;
	font-size: 1.1em;
	letter-spacing:.2px;
	display:block;
	padding:4px;
	color:#fff;
	text-decoration:none;
}
.menuLevel0 a{
	color:#333;
}
.selectedmenuLevel0 a{
	color:#ED037C;
}
.dropdown a:hover{
	color: #ED037C;
	background-color:#fff;

}
.dropdown li ul, .menuLevel0 ul {
	background-color:#ED037C;
	margin-bottom:-2px;
	margin-left:0px !important;
	padding-left:0px !important;
	margin-right:0px !important;
	padding-right:0px !important;
	border:1px solid #fff;
}
.dropdown li{
	
}

.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	;
	font-size: 1.2em;
	color:#fff;
	/*
		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{
	background:#fff;
	color: #ED037C;
}
.dropdown li ul {
	
	/* 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;
}
.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;
}
