/* navigation (horizontal with dropdowns)
----------------------------------------------- */

/*  Top level */
ul.nav,
ul.nav * {
	margin: 0;
	padding: 0;
	background-image: url('../images/nav_background.jpg');
	background-repeat: no-repeat;
	background-position: center;
}

ul.nav {
	position: relative;
	max-width: 100%;
	height: 2.5em;
	margin-bottom: 2em;
	background-color: transparent;
	padding-left: 2.5em;
}

ul.nav li {
	cursor: pointer;
	float: left;
	text-align: center;
	list-style-type: none;
	font-weight: normal;
	position: relative;
	top: 0;
	left: 0;
    background: transparent;
}

ul.nav li a {
	background: transparent;
	font-weight: bold;
	text-decoration: none;
	display: block;
	float: left;
	padding: 0 2em 0 1em;
	height: 2.5em;
	line-height: 2.5em;
	color: #fff;
}

/* Top Level Current link */
ul.nav li.current a,
ul.nav li.section a {
	color: #f5c04c;
	cursor: default;
	font-weight: bold;
}

/* Top Level hover state */
ul.nav li:hover a,
ul.nav li a:hover,
ul.nav li a:focus {
    background-color: #ceaa53;
    color: #fff;
}

ul.nav li a:active { color: #fff;}






/* items in dropdown */
ul.nav li ul {
	cursor: default;
	width: 100%;
	max-width: 100%;
	position: absolute;
	height: auto;
	top: 2.5em;
	left: -9000px;
	background: transparent;
}

ul.nav li ul li {
	padding: 0;
	border: none;
	width: auto;
	max-width: none;
	float: left;
    float: none;  /*jks 8/26/09 */
}

ul.nav li ul li a {
	position: relative !important;
	/* ie Mac */
	cursor: pointer !important;
	line-height: 1.5em;
	height: auto;
    padding: 3px 1em 3px 1em;
	font-weight: normal;
	width: 12em;
	text-align: left;
	background-color: transparent;
}

ul.nav li ul li.first a { padding-top: 1em; }

ul.nav li:hover ul,
ul.nav li.sfhover ul {     /*jks 8/26/09 */
    left: 0;
    z-index: 10;
}






ul.nav li:hover ul li a,
ul.nav li.sfhover ul li a {     /*jks 8/26/09 */
    color: #a8c0db;
    font-weight: normal;
    background-color: #1d3041;
    /* Non-IE */
    opacity: .9;
    /* IE 8 */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    /* IE 5-7 */
    filter: alpha(opacity=90);
}

/* hovered items in dropdown */
ul.nav li:hover ul li a:hover,
ul.nav li.sfhover ul li a:hover {     /*jks 8/26/09 */
    color: #f5c04c;
    /* Non-IE */
    opacity: 1;
    /* IE 8 */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=100);
}

























/* vertical-menu
----------------------------------------------- */

div.vertical-menu {
    margin: 0 0 2em 0;
}

div.vertical-menu ul
{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

div.vertical-menu ul li
{
	margin: 0;
	padding: 0;
}

div.vertical-menu ul li ul { }
div.vertical-menu ul li ul li {  }

div.vertical-menu .label a
{
	display: block;
	text-decoration: none;
	padding: 0 10px 0 14px;
	line-height: 26px;
	font-weight: bold;
	font-size: 125%;
	text-transform: uppercase;
	letter-spacing: .5px;
	border: none;
	color: #fff;
	margin-top: 10px;
}
div.vertical-menu .label a:hover,
div.vertical-menu .label a:focus { background-color: #51191a; }


div.vertical-menu ul li a
{
	display: block;
	text-decoration: none;
	line-height: 23px;
	color: #fff;
	font-weight: bold;
}


/* indents */
div.vertical-menu ul li a { padding: 0 10px 0 14px; }
div.vertical-menu ul li ul li a { padding: 0 10px 0 28px; }
div.vertical-menu ul li ul li ul li a { padding: 0 10px 0 42px; }
div.vertical-menu ul li ul li ul li ul li a { padding: 0 10px 0 56px; }

/* hover */
div.vertical-menu ul li a:hover,
div.vertical-menu ul li a:focus { background-color: #51191a; }

/* current */
div.vertical-menu ul li a.current  { color: #f5c04c; }

/* section */
div.vertical-menu ul li.current,
div.vertical-menu ul li.section { border-left-width: 4px; }

div.vertical-menu ul li.current a,
div.vertical-menu ul li.section a { }

div.vertical-menu ul li li.current { border-left-width: 0; }










/* Bottom nav menu
----------------------------------------------- */

div#bottom-nav ul {
    float: left;
    margin-left: 331px;
    margin-top: 1em;
}

div#bottom-nav ul li {
	cursor: pointer;
	float: left;
	list-style-type: none;
}

div#bottom-nav ul li a {
    text-decoration: none;
    color: #595959;
    font-size: 88%;
    font-family: Arial, sans-serif;
}

div#bottom-nav ul li a:hover { color: #333; }











