/* CSS Document */

/*************** #MainNav styles **************/

#MainNav
{
	background-color:#00A3DC;
	height:28px;
	min-width:900px;
	border:none;
	margin:0 0 0 240px;
}

/* remove the bullets, padding and margins from the lists */
.menu ul
{
	list-style-type:none; 
	padding:0; 
	margin:0; 
	color:#fff;
}

/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li
{
	float:left; 
	position:relative;
}

/* style all the links */
.menu a, 
.menu a:visited 
{
	display:block;
	width:100px; /* 84  */
	padding:8px 2px; /*5 */
	color:#fff;
	border-right:1px #FFFFFF solid;
	background:#00A3DC;
	text-decoration:none;
	font-family:Verdana;
	text-transform:capitalize;
	font-size:9px;
	font-weight:bold;
	margin-right:1px;
	text-align:center;
	outline:none;
}

/* style the links hover */
.menu a:hover
{
	color:#fff;
	text-decoration:none;
	background:#0076BD;
}

/* style the current link */
#MainNav ul li.current a
{
	background:#0076BD;
}