*
{
	margin: 0;
	padding: 0;
}

body
{
	color: #ffffff;
	clear:both;
}

div#header
{
	width: 940px;
	margin: 0 auto;
	border-left: 1px #000000 solid;
	height: 16px;
}

/* all lists */
#header ul
{
	padding: 0;
	margin: 0;
	list-style: none;
	font-weight: bold;
	color: #ffffff;
}

/* all list items */
#header li
{
	float: left;
	position: relative;
	width: 155px;
}

#header li a
{
	text-decoration: none;
	color: #ffffff;
	display: block;
	text-align: center;
	border-right: 1px #000000 solid;
}

#header li a:hover
{
	color: #f00000;
}


/* second-level lists */
#header li ul
{
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}

/* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
#header li>ul
{
	top: auto;
	left: auto;
}

/* lists nested under hovered list items */
#header li:hover ul, #header li.over ul
{
	display: block;
	background: #000000;
	border-top: 1px #ccc solid;
}

#header li ul li a
{
	border-bottom: 1px #ccc solid;
	border-right: none;
}

#header li ul li a:hover
{
	background: #000000;
}


/*** important to wrap your content in a <div> with this id# ***/
#content
{
	clear: left;
}
