/*********************************************************
I TRIED TO MAKE THIS EASY TO STYLE! SEE NOTES BELOW
**********************************************************/
#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:#5D1519;
	/*padding-left:5px;*/
}
.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
line-height:26px;

}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	min-width: 104px;
	/*font-family: helvetica, verdana, tahoma, arial;*/
	/*text-transform: uppercase;*/
	font-size: 10px;
	font-weight:bold;
	display:block;
	/*padding:0px 7px 0px 10px;*/
	padding:6px 20px 11px 10px;	
	color: #FFFFFF;
	text-decoration:none;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;	
	line-height:1em;

}
.dropdown a:hover{
	color: #FFFFFF;
	background-color: #465e76;
	/*border-left: 1px solid #6886a4;
	border-right: 1px solid #d5dde6;	*/
	/*border-top: #5D1519;	*/

	

}
.dropdown ul {
/*	top:32px;*/
	top:auto;
		padding:6px 15px 11px 10px;		

}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:109px;
	background-color:#5D1519;
	/*padding: 6px 15px 3px 05px;*/
		padding:6px 15px 11px 10px;				
	/*
		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 {
	border-top: solid 1px #333333;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:129px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:136px;
}
.dropdown li ul li a{
	border-bottom: solid 1px #5D1519;
	border-top: solid 1px #5D1519;
	border-left: solid 1px #5D1519;
	border-right: solid 1px #5D1519;

}
.dropdown a.popout {
	background-position:right center;
	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;
}
.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;
}
.dropdown li:hover,
.dropdown li.popout,
.dropdown a:focus, .dropdown a:hover, .dropdown a:active {
	background-color: #C10000;
	color: #5D1519;
	visibility:inherit;
}