body {
margin: 0px;
scrollbar-arrow-color: #DDDDDD;
scrollbar-base-color: #CCCCCC;
scrollbar-dark-shadow-color: #0000FF;
scrollbar-track-color: #CCCCCC;
scrollbar-face-color: #0000FF;
scrollbar-shadow-color: #CCCCCC;
scrollbar-highlight-color: #CCCCCC;
scrollbar-3d-light-color: #CCCCCC;
}

#nav{line-height: 20px;
	background:blue;
	height:20px;
	width:750px;
	font-family:Arial, Helvetica, sans-serif;}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	
	
}

#nav a {
	display: block;
	width: 125px;
	color:#fff;
	font-size:70%;
	font-weight:bold;
	text-decoration:none;
}

#nav li { /* all list items */
	float: left;
	width: 125px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #f00;
	width: 125px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#content {
	clear: left;
	color: #ccc;
}
