@charset "utf-8";
/* CSS Document */
/* Online reference to styles http://htmldog.com/articles/suckerfish/dropdowns/ */


/* NAVIGATION STYLES from main CSS Sheet 
#navigation {
	position: absolute;
	top: 200px;
	left: 0px;
	width: 800px;
	z-index: 100;
	border-left: #00b2c3 2px solid;
	}*/


/* Basic Style */
#nav, #nav ul {
	font-family:Arial, Helvetica, sans-serif;
	float: left;
	/*width: 750px;*/
	list-style: none;
	line-height: 1;
	background: #555799;
	font-weight: bold;
	padding: 5px 0px 5px 0px;
	/*border: solid #00b2c3;*/
	/*border-width: 1px 0;*/
	margin: 0 0 1em 0;
	text-align:center;
	z-index: 2000;
}

/* Basic Style */
#nav a {
	display: block;
	/* width: 150px; */
	/*w\idth: 140px;*/
	color: #FFFFFF;
	text-decoration: none;
	padding: 3px 2px;
}
/* Not used in H2Max since there is no second level drop down */
#nav a.daddy {
	background: url(rightarrow2.gif) center right no-repeat;
}

/* Basic Style */
#nav li {
	float: left;
	padding: 0;
	width: 120px;
}

#nav li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 150px; 
	w\idth: 140px;
	font-weight: normal;
	border-width: 0.25em;
	margin: 0;
	padding-left: 5px;
	text-align:left; /* this controls the first level drop down text alignment */
}

#nav li li {
	padding-right: 1em;
	/* width: 140px */
}

#nav li ul a {
	width: 140px;
	w\idth: 130px;
}
/* This rule applies to all drop downs after the first one - ensures drop down to the side of the corresponding list item*/
#nav li ul ul {
	margin: -1.75em 0 0 14em;
}
/* THIRD LEVEL DROP DOWN STYLES */
/* All sfhover attributes are derived from the JavaScript function above */
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}
/* FOURTH LEVEL DROP DOWN STYLES */
#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: #00b2c3;
}
