@charset "UTF-8";
/* ================================================================
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop3.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any
way to fit your requirements.

Modified by:	John C. Scott, Scott Communications
				jcscott@scottcomm.com
=================================================================== */

/* top level rollovers */
/* style the outer div to give it width */
.menu
{
	position: relative;
	z-index: 10;
	font-size: 11px;
	white-space: nowrap;
	text-transform: uppercase;
	color: #2d2e32;
	text-decoration: none;
	height: 23px;
	padding-left: 272px;
	background-color: #dfdfe0;
	background-image: url(../images/navbar-bkgd.png);
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul
{
	padding: 0;
	margin: 0;
	list-style-type: none;
}

/* float the list to make it horizontal and a relative position so that you can control the dropdown menu position */
.menu li
{
	float: left;
	position: relative;
	/* IE6 Float Double Margin fix */
	display: inline;
}

/* style the text links for the top level */
.menu a, .menu a:visited
{
	display: block;
	float: left;
	text-decoration: none;
	line-height: 23px;
	/* IE6 Float Double Margin fix */
	display: inline;
	color: #2c2d31;
}

/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul
{
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 23px;
	left: 0;
	/* Safari needs this. Same width as .menu ul ul a. */
	width: 168px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table
{
	position: absolute;
	top: 0;
	left: 0;
	border-collapse: collapse;
	border-spacing: 0;
}

/* style the top and second level links */
.menu a, .menu a:visited, .menu ul ul a, .menu ul ul a:visited
{
	line-height: 23px;
	display: block;
	padding: 0 12px;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited
{
	background-color: #dfdfe0;
	background-image: url("../images/indicator-off.png");
	background-repeat: no-repeat;
	background-position: 8px center;
	height: 25px;
	line-height: 25px;
	width: 168px;
	padding: 0 12px 0 16px;
	border-top: 1px solid #fff;
}

/* style the top level hovers */
.menu a:hover
{
	color: #fff;
	background-color: #3F3F3F;
	text-decoration: none;
}

/* style the 2nd level hovers */
.menu ul ul a:hover
{
	color: #fff;
	background-color: #787878;
	background-image: url("../images/indicator-on.png");
	background-repeat: no-repeat;
	background-position: 8px center;
	text-decoration: none;
	border-top: 1px solid #fff;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul { visibility: visible; }
