/* adapted by Ben Roe from http://www.htmldog.com/articles/suckerfish/dropdowns/example/ */

body {
	font-family: Arial, Helvetica, sans-serif;
}

a:link {
	color: #ff0;
	text-decoration: none;
}

a:visited {
	color: #CCC;
	text-decoration: none;
}

a:hover {
	color: #ff0;
	text-decoration: underline;
}

a:active {
	color: #990000;
	text-decoration: none;
}

#nav-container {
	position: relative;
	font-size: 13px;
	font-weight: bold;
	text-align: left;
	vertical-align: text-top;
  top: auto; right: auto; bottom: auto; left:auto;
  margin: 0px;
	border: 0;
	}

#nav, #nav ul {  /* set basic nav properties, some overridden below */
  position: relative;
	float: left;
	width: auto;
	list-style: none;
	line-height: 1.0;
	background: #ccf;
	font-weight: bold;
	padding: 0;
	border: 0;
	margin: 0 0 0 0;
}

#nav a { /* sets width of background for dropdown arrow and clickable region */
	display: block;
	width: 80px;
	color: #06f;
	text-decoration: none;
	padding: 5px  5px;
}

#nav a.rarrow {
	background: url(images/rightarrow2.gif) center right no-repeat;
}

#nav a.darrow {
	background: url(images/downarrow.gif) center right no-repeat;
}

#nav li { /* top bar, width of sections */
	float: left;
	padding: 0;
	width: 104px;
}

#nav li ul { /* dropdown from top */
	position: absolute;
	left: -999em;
	background: #eef;
	line-height: 0.9;
	font-size: small;
	font-weight: normal;
	height: auto;
	width: 150px; /* width of dropdown box */
	border-width: 1px;
	margin: 0;
}

#nav li li { /* width of dropdown dynamic highlighting */
	width: 150px;
	font-size: small;
}

#nav li ul a { /* width of dropdown anchor space; sets arrow position */
	width: 130px;
	font-size: small;
}

#nav li ul ul { /* where side popout starts */
	margin: -21px 0 0 150px;
	font-size: small;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#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: #ccf;
}

