/*********************************************************
I TRIED TO MAKE THIS EASY TO STYLE! SEE NOTES BELOW
**********************************************************/
#topnav {
	width: 865px;
	background-color: #ffffff;
	display: block;
	color: #b9110c;
	font-size: 16px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border: #ffffff solid 1px;
	margin: 0 auto;
	margin-top: 15px;
	height: 30px;
}

.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	line-height:30px;
}
	
.dropdown a {
	font-family: verdana, helvetica, tahoma, arial;
	font-size: 16px;
	display:block;
	padding:0px 10px 0px 10px;
	color:#b9110c;
	text-decoration:none;
	text-align: center;
}
.dropdown a:hover{
	color: #999999;
}
.dropdown ul {
	top:20px;
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width: 200px;
	background-color:#0a0a0a;
	background-image: none;
		/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	filter:alpha(opacity=95);-moz-opacity:.95;opacity:.95;
	text-align: left;
	font-size: 12px;
}

.dropdown li ul {
	border-top: solid 0px #333333;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:200px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:200px;
}
.dropdown li ul li a{
	border: solid 1px #333333;
}
.dropdown a.popout {
	/* totally optional popout indicator */
	background-image: url(../images/topnav/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;
	width: 144px;
}
.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: 5px 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;
}

/* Dropdown spans */

.dropdown span {
	font-family: verdana, helvetica, tahoma, arial;
	font-size: 16px;
	display:block;
	padding:0px 10px 0px 10px;
	color:#ffffff;
	text-decoration:none;
	text-align: center;
}

.dropdown li ul span{
	/* The width of the dropdown and popout menu */
	width: 200px;
	background-color:#0a0a0a;
	background-image: none;
		/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	filter:alpha(opacity=95);-moz-opacity:.95;opacity:.95;
	text-align: left;
	font-size: 12px;
}

.dropdown span.popout {
	/* totally optional popout indicator */
	background-image: url(../images/topnav/popout.gif);
	background-position:center right;
	background-repeat:no-repeat;
}

.dropdown li ul li span { border: solid 1px #333333; }
.dropdown span { display:block; }
.dropdown li ul span { float:left; }