/*********************************************************
I TRIED TO MAKE THIS EASY TO STYLE! SEE NOTES BELOW
**********************************************************/
.topNav{background:url(../images/top.jpg) 0 0 repeat-x;height:50px;}
#dropdown-holder {
	/*
		This is just the holder and how you want what is behind the
		main menu links too look like
	*/
	width: 458px;
	background-color:#000000;
	padding-left:10px;
}

.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	min-width: 50px;
	text-transform: uppercase;
	display:block;
	font:bold 16px Arial, Helvetica, sans-serif;
	color:#ffffff;
	text-decoration:none;
	padding:0 10px;
	border-right:1px solid #fff;
	
}
.dropdown a:hover{
	color: #00ccff;
	background-color: #2c64ae;
}
.dropdown ul {
	top:40px;
	
}

.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:180px;
	background-color:#2c64ae;
	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	filter:alpha(opacity=90);-moz-opacity:.90;opacity:.90;
}
.dropdown li ul {
	
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:200px;
	z-index:999;
	margin-top:3px;
	
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:220px;
	margin:0px;
	border:solid 0px red;
	line-height:25px;
	padding:0px;
}
.dropdown li ul li a{
	border-bottom: solid 1px #8eb3e4;
	border-top: solid 2px #8eb3e4;
	border-right: solid 2px #8eb3e4;
	border-left: solid 2px #8eb3e4;
	background:#2e6ec0;
	font-size:12px;
	text-align:left;
	padding:5px;
}
.dropdown li ul li a:hover{background:#4084e0;color:#fff}
.dropdown a.popout {
	/* totally optional popout indicator */

	background-position:center right;
	background-repeat:no-repeat;
	
}

/************************************************************
ONLY EDIT BELOW IF YOU REALLY KNOW WHAT YOUR DOING!
************************************************************/
.dropdown {
	
	
	margin-top:15px;
	list-style-type:none;
	width:520px;
	float:right;
}
.dropdown ul{
	margin:0;
	padding:0;
	list-style-type:none;
}
.dropdown a {
	display:block;
	text-align:center;
}
.dropdown a:hover{background:none}
.dropdown li{
	float:left;
	position:relative;
	display: block;
	margin:0 3px 0 0;
}
.dropdown ul {
	position:absolute;
	display:none;
}
.dropdown li ul a{
	float: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;
}
.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;
	
}

