@charset "UTF-8";
/* CSS Document */


/* ================================================================ 
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/dd_valid.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */


/* common styling */
.menu {
	font-family: "Lucinda Grande", Verdana, Helvetica, Arial, sans-serif;
	width:817px;
	height:87px;
	position:absolute;
	z-index:100;
	background: url(images/UpperNavBar.png) no-repeat;
	float: left;
	clear: both;
	left: 0px;
	top: 0px;
	}

a.logo {
	width:290px;
	height:87px;
	float: left;
	}
	
/* style the links for the top level */
.menu ul li a, .menu ul li a:visited {
	display:block;
	text-decoration:none;
	width:100px;
	height:47px;
	text-align:center;
	color:#f09b4a;
	line-height:65px;
	font-size:12px;
	margin-top: 9px;
	}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style: none;
	}
	
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu ul li {
	float:left;
	position:relative;
	}
	
.menu ul li ul {
	display: none;
	}


/* specific to non IE browsers */

/* title menu bar rollovers */
.menu ul li:hover a {
	color:#FFF;
	background:#323b4b;
	border-bottom: 1px outset #FFF;
	text-decoration: underline;
	}
	
/* defines sub levels, hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul li:hover ul {
	display:block;
	position:absolute;
	left:0;
	text-decoration: none;
	}
	
/* hover drop down */
.menu ul li:hover ul li a.hide {
	background:#E9E9E9;
	color:#333;
	}
	
/* hover rolls in drop downs */
.menu ul li:hover ul li:hover a.hide {
	background:#666;
	color:#FFF;
	}
	
/* hides hover menus until roll */
.menu ul li:hover ul li ul {
	display: none;
	}
	
/* defines drop downs */
.menu ul li:hover ul li a {
	display:block;
	background:#CCC;
	color:#333;
	font-size: 10px;
	line-height: 12px;
	height: auto;
	text-align: left;
	padding: 5px 3px;
	width: 94px;
	border-bottom: 1px outset #666;
	margin-bottom: 0px;
	margin-top: 0px;
	text-decoration: none;
	}
	
/* defines rolls in drop downs */	
.menu ul li:hover ul li a:hover {
	background:#666;
	color:#FFF;
	text-decoration: none;
	}

/* defines hover drop downs areas */	
.menu ul li:hover ul li:hover ul {
	display:block;
	position:absolute;
	left:100px;
	top:12px;
	background: #CC0099;
	text-decoration: none;
	}
	

.menu ul li:hover ul li:hover ul.left {
	left:-100px;
	}