@charset "UTF-8";
/* CSS NAV1 */

#navigation{
	width:100%;
	height:25px; 
/* This is the background color for the main nav bar */
	background: #0000ff;
}

#navigation ul{
	margin:0px;
	padding:3px;
	text-align:center;
}

#navigation ul li{
	display:inline;
	list-style:none;
	margin-left:15px;
	margin-right:15px;
	position:relative;
	height:20px;
	font-family: Verdana, Geneva, sans-serif;
	font-size:14px;
	font-weight:bold;
/* This is the font color for the main nav bar for text without a link */
	color:#fff;
}

#navigation li a{
/* This is the font color for the main nav bar for text with a link */
	color:#fff;
	text-decoration:none;
}

#navigation li a:hover{
/* This is the font color for the main nav bar when you mouseover */
	color:#e0001f;
	text-decoration:block;
}

#navigation li:hover ul{
	display:table;
	width:190px;
}

#navigation li ul{
	margin:0px;
	padding:5px;
	display:none;
	position:absolute;
	left:0px;
	top:15px;
/* This is the background color for the drop down menus */
	background-color:#0000ff;
}

#navigation li li{
	display:block;
	font-family: Verdana, Geneva, sans-serif;
	font-size:12px;
	font-weight:normal;
	text-align:left;
}

#navigation li li a{
/* This is the font color for the drop down menus */
	color:#fff;
	text-decoration:none;
}

#navigation li li a:hover{
/* This is the font color for the drop down menus when you mouseover */
	color:#e0001f;
	text-decoration:none;
}

