﻿/* -------------------------------------------------------------------------- */
/* Common                                                                     */

#nav a, 
#nav a:link, 
#nav a:visited, 
#nav a:active
{
	color: #7c0707;
	text-decoration: none;
}
#nav a:hover
{
	color: Red;
}
/* all lists */
#nav ul
{
	padding: 0;
	margin: 0;
	list-style: none;
	display: block;
}
/* all list items */
#nav li
{
	float: left;
	position: relative;
	white-space: nowrap;
	display: block;
}

/* -------------------------------------------------------------------------- */
/* Top Level                                                                  */

#nav ul li a
{
	padding: 11px 0.7em;
	font-size: 15px;
	display: block;
}

#nav ul#nav-menu
{
	height: 37px;
	margin-left: 12px;
}

/* -------------------------------------------------------------------------- */
/* Second Level                                                               */

#nav ul li ul li a
{
	padding: 1em 1.5em 0 1.5em;
	font-size: 14px;
	height: 1em;
	width: 100%;
	display: block;
	border: none;
}

#nav li ul
{
	background-color: #f9e8d1;
	border-color: #005b00;
	border-width: 1px;
	display: none;
	position: absolute;
	top: 37px;
	left: 0;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	padding-bottom: 1.5em;
	list-style-type: none;
}

#nav li ul li
{
	float: none;
}
/* to override top and left in browsers other than IE, 
   which will position to the top right of the containing 
   li, rather than bottom left */
#nav li > ul
{
	/*top: auto;*/
	left: auto;
}

/* lists nested under hovered list items */
#nav li:hover ul, #nav li.over ul
{
	display: block;
}

#content
{
	z-index: 0;
	clear: left;
}
