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

/*sos menu only - START*/

/*sos - container for the menu bar*/

.navbarwrapper {
	display: block;
	padding: 0px;
	width: 780px;
	margin-right: auto;
	margin-left: auto;
	height: 61px;
}

/*sos - changing the width here will control whether dreamweaver will properly display the top level menu on 1 line or multiple lines, even though it will render inbrowser fine regardless anyway, making this just a design-level nitpick.*/
#nav, #nav ul {
	list-style: none;
	font: normal 9px/61px Geneva, Arial, Helvetica, sans-serif;
	text-transform: none;
	float: left;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: 61px;
}
.navBGleft {
	float: left;
	padding: 0px;
	margin-left: 0px;
	margin-top: 1px;
}
.navBGright {
	float: right;
	padding: 0px;
	margin-top: 1px;
	margin-right: 0px;
}

/*sos - set font styles + sizes for dropdowns & top level nav, set background colour for nav buttons & dropdown */
#nav a {
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	margin: 0px;
	font: bold normal 12px/61px Arial, Helvetica, sans-serif;
	height: 61px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.navpadding {
	display: inline;
	margin: 0px;
	padding: 0px 2px 0px 0px;
	text-decoration: none;
	height: 35px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 35px;
	color: #2F4B6B;
}
#nav a:hover {
	color: #003772;
	font-family: Arial, Helvetica, sans-serif;
}

/*sos - set position of arrow for multi-level menu items*/
#nav a.daddy {
	background: url(images/rightarrow2.gif) no-repeat right center;
	width: 154px;
	margin: 0px;
}
/*sos - set borders, bg colours for toplevel & dropdown menu items*/
#nav li {
	float: left;
	height: 61px;
	line-height: 61px;
	display: block;
	position: relative;
	width: 195px;
	border-bottom: 1px solid #FFFFFF;
}
/*sos - set width of dropdown here*/
#nav li ul {
	position: absolute;
	left: -1999em;
	height: 61px;
	width: 160px;
	w\idth: 160px;
	font-weight: normal;
	text-indent: 5px;
	margin: 0px -1px 0px 0px;
	text-align: left;
	z-index: 1;
}
/*sos - set padding of arrow (affects underlines though, so use cautiously if you notice underlines do not extend the full width of the dropdowns - mainly visible in Opera and Firefox), borders, width of dropdowns, width of highlight & bg colour for items without a submenu*/
#nav li li {
	margin: 0px 0px 0em;
	padding: 0px;
	background: url(images/hero_title_bg.png) repeat;
}
/*sos - set width of dropdown rollover highlighting state here. 
Original values were width: 13em(208px) and w\idth: 9em (144px)*/
#nav li ul a {
	width: 160px;
	w\idth: 160px;
	margin: 0px;
	padding: 0px;
	height: 61px;
}
/*sos - set width of first level dropdown and vertical position of second level dropdown*/
#nav li ul ul {
	margin: 0px 0 0 149px;
	padding: 0px;
	width: 160px;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -1999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left: auto;
	background: repeat;
}

/*sos - set rollover colour or image here*/

#nav li:hover, #nav li.sfhover {
	background: #D3D3D3;
	font-family: Arial, Helvetica, sans-serif;
	border-bottom: 1px solid #FFFFFF;
}

/*sos  - fix for probs in IE7 only*/

#menu li:hover, #menu li.hover {
	position: static;
}
/*sos menu only - END*/

