@charset "utf-8";
/* CSS Document */

#nav { /* the main UL */
	position: absolute;
	top: 15px;
	right: 0px;
	color: #FFF;
	font-size: 108%;
	margin-right: 50px;
}

#nav li { /* aligning all the li's in a row */
	display: block;
	float: left;
	list-style: none;
	padding-bottom: 10px;
}

#nav .last { /*remove the border, margin, padding from the last LI */
	margin-right: 0px;
	padding-right: 0px;
	border-style: none;
}

#nav a { /* puts the 2 px border between all the links in the main UL */
	color: #FFF;
	text-decoration: none;
	border-right: 2px solid #496794;
	padding-right: 10px;
	margin-right: 10px;
}

#nav a:hover {
	text-decoration: underline;
}

#nav li ul { /* puts the submenu(s) off the left side of the screen, sets width, pushes them down a bit from the bottom of the main UL */
	margin: 5px 0 0 -3em;
	padding: 0;
	position: absolute;
	left: -999em;
	background: #45536E;
	color: #FFF;
	width: 10em;
	text-align: center;
}

#nav li:hover ul,
#nav li.sfhover ul { /* bring the submenu(s) back onto the screen */
	left: auto;
}

#nav li ul li { /* properties for the submenu items */
	font-size: 77%;
	padding: 4px;
	margin: 0 3px;
	border-top: solid 1px #496794;
	border-bottom: solid 1px #333E58;
	border-right: none;
	display: block;
	float: none;
}

#nav ul a { /* submenu items are stripped of border, margin, padding */
	border: none;
	margin: 0;
	padding: 0;
}