/*sos menu only - START*/

/*sos - container for the menu bar*/

.navbarwrapper {
	height: 35px;
	width: 550px;
	padding: 0px;
	float: right;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-top: 42px;
}

/*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;
	text-transform: uppercase;
	float: left;
	padding: 0px;
	margin: 0px;
	height: 35px;
	width: 550px;
	font-style: normal;
	line-height: 35px;
	font-variant: normal;
	text-decoration: none;
	display: block;
}
/*sos - set font styles for dropdowns*/
#nav a {
	display: block;
	text-decoration: none;
	margin: 0px;
	width: auto;
	padding-top: 0px;
	padding-right: 13px;
	padding-bottom: 0px;
	padding-left: 13px;
	font-size: 10px;
	color: #333333;
	font-family: Georgia, "Times New Roman", Times, serif;
	background-repeat: no-repeat;
	background-position: center top;
	font-weight: bold;
}
#nav .underline {
	background-image: url(images/nav-bg-0.gif);
	background-repeat: no-repeat;
	background-position: center top;
}


/*sos - set position of arrow for multi-level menu items*/
#nav a.daddy {
	width: 155px;
	margin: 0px;
	background-image: url(images/arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
	padding: 0px;
	height: 35px;
}
/*sos - set borders, bg colours for toplevel & dropdown menu items*/
#nav li {
	float: left;
	height: 35px;
	line-height: 35px;
	width: auto;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
/*sos - set width of dropdown here*/
#nav li ul {
	position: absolute;
	left: -1999em;
	height: 35px;
	width: 160px;
	w\idth: 160px;
	font-weight: normal;
	text-indent: 5px;
	margin-top: 0px;
	margin-right: -1px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 4px;
}
/*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-repeat: repeat;
	background-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #7C5524;
}
/*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;
}
/*sos - set width of first level dropdown and vertical position of second level dropdown*/
#nav li ul ul {
	padding: 1px;
	width: 155px;
	margin-top: -36px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 155px;
}

#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;
}

#nav li:hover, #nav li.sfhover {
	background-color: #bdb393;
}

/*sos  - fix for probs in IE7 only*/

#menu li:hover, #menu li.hover {
    position: static;
}

/*sos menu only - END*/
