/* pulled from http://ago.tanfa.co.uk/css/examples/menu/tutorial-h.html */
/* need more options? check out: http://www.lwis.net/free-css-drop-down-menu/ */

#nav {
	width: 100%;
	float: left;
}

#nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	/* width: 110px; */	/* ??? */
/* 	width: 13%; */
	float: left;
	background-color: #fff;
	text-transform: uppercase;
	font-family: "Arial Black", Arial-BoldMT, Arial, sans-serif;

}


#nav .nav1 { width: 108px; }
#nav .nav2 { width: 96px; }
#nav .nav3 { width: 84px; }
#nav .nav4 { width: 72px; }
#nav .nav5 { width: 140px; }

/* #nav ul.last {} */

#nav ul li.last {
	border: none;
}


#nav ul ul {
	font-size: 11px;
	padding-top: 5px;	/* is this breaking stuff?? -LM */
	/* padding:  */
	width: auto;

	/* drop down over the top of any existing text: */
	position: absolute;
	z-index: 500;
	
	border-bottom: 2px solid #F7931E;
	/* border-left: 2px solid #F7931E; */
	
	box-shadow: 0 4px 6px #555;
}

#nav a, #nav h3 {
	display: block;
	margin: 0;
	padding: 2px 6px;
}

#nav h3 {
	font-size: 12px;
}

#nav a {
	color: #A71E22;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

#nav ul li ul a {
	padding: 2px 6px;
}

#nav ul li ul a:hover {
	color: #A71E22;
	background-color: #ddd;
/* 	background: #fff; */
}


#nav ul ul li {
	border-bottom: 2px dashed #666;
	padding: 4px 0;
}


/* hide and show: */

div#nav ul ul {
	display: none;
}

div#nav ul li:hover ul {
	display: block;
}