/* There is a version of this file commented in great detail for educational purposes here:
 * http://users.tpg.com.au/j_birch/plugins/superfish/superfish.commented.css
 */

/*** ESSENTIAL STYLES ***/
.nav, .nav * {
	margin:0;
	padding:0;
	list-style:none;
}
.nav {
	line-height:1.0;
}
.nav ul {
	position:absolute;
	top:-999em;
	width: 145px; /* Can be adjusted */
}
.nav ul li,
.nav a {
	width: 100%;
	text-align: left;
}
.nav li {
	float:left;
	position:relative;
	z-index:99;
}
.nav a {
	display:block;
}
.nav li:hover ul,
ul.nav li.sfHover ul {
	left:-1px;
	top: 30px; /* Can be adjusted */
}
.nav li:hover li ul,
.nav li.sfHover li ul {
	top:-999em;
}
.nav li li:hover ul,
ul.nav li li.sfHover ul {
	left:145px; /* Can be adjusted */
	top:0;
}
.superfish li:hover ul,
.superfish li li:hover ul {
	top:-999em;
}

/*** SLIPSTREAM SKIN ***/
.nav {
	float:left;
	text-align: center;
	font-size: 12px;
	z-index:99; /* Remind Safari AGAIN */
	opacity:.90; 
	filter:alpha(opacity=90);
	/* margin-bottom:1.5em; IE 6 Doesn't like this */
}
.nav li {
	
	border-left:1px solid #666;
	height: 30px;
	width: 145px; /* Can be adjusted */
	
}
/* Skips the top element, since it is an image */
.nav ul a {
	font-size: 11px;
	padding: .75em 0;
	text-decoration:none;
	text-indent: 1em;
	color:#666;
}
/* Skips the top element, since it is an image */
.nav ul li:hover, .nav ul li.sfHover,
.nav ul a:focus, .nav ul a:hover, .nav ul a:active {
	background-color:#999;
	color:#fff;
}
.nav li li {
	border-bottom:1px solid #666;
	border-right:1px solid #666;
	background-color:#CCC;
}
/* THIRD LEVEL IS UNUSED
.nav li li li {
	color: #666;
	border-bottom:1px solid #666;
	border-right:1px solid #666;
	background-color:#CCC;
}
*/



