/*********************************************************
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
	*/
	text-align:center;
		background-image:url(../images/10_bgtabs.gif);
background-repeat:repeat-x;
width:100%;
height:36px;
}

#nav a {
	color:#fff;
}
#nav a:hover{
	color: #555;
}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	min-width: 90px;
	text-transform: uppercase;
	font-size: 13px;
	display:block;
	padding:0px ;
	text-decoration:none;
	font-weight:bold;
	color:#fff;
	text-shadow:0 1px 1px #bf7d26;
}
.dropdown ul {
	/*top:32px;*/
	
}
.dropdown li {
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:131px;
		background-image:url(../images/10_bgtabs.gif);
background-repeat:repeat-x;
}
.dropdown li a {
padding:10px 0;
color:#fff;
	
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:131px;
	background-color:#e69f44;
	/*background-image:url(images/10_ddbg.gif);
	background-repeat:repeat-x;*/
	font-size: 13px;
	line-height:16px;
	/*
		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 0px #333333;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:131px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:131px;
	border:0px;
}
.dropdown li ul li a{
	border-top: 1px dashed #f9c179;
	padding:8px 0px;
}

#dropdown-holder #current {
	
}
#dropdown-holder #current a {
	
}

/************************************************************
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: 0px 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;
}


