@charset "utf-8";
/* CSS Document */

#nav li:hover, #nav li.hover {
    position:static;
    }

#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav a {
	display: block;
	width: 141px;
	color:#FFF;
	text-decoration: none;
}

#nav a:hover {
	display: block;
	color:#000;
	text-decoration: none;
	background-color:#bfe3ea;
}

#nav li {
	float: left;
	width: 141px;
	background-color:#099fc4;
	color:#000;
	line-height: 25px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;

	border-left-width: 1px;

	border-left-style: solid;
	border-right-color: #06C;
	border-left-color: #06C;
}

#nav li ul {
	position: absolute;
	width: 10em;
	left: -999em;	
}

#nav li ul li {
	text-align: left;
	background-color:#007f9e;
	color:#FFF;
	text-indent: 3px;
}

#nav li:hover ul {
	left: auto;
}

#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}


