@charset "utf-8";
/* THIS IS THE MENU 
---------------------------------------------------------*/

/* Overall Box Properties */
#menu {
	margin: 0;
	float: left;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

/* Type of Menu (Vertical vs. Horizontal) */
#menu ul {
	display: block;
	list-style: none;
	margin: 0;
	float: left;
	padding:0px 0px 0px 0px
}

/* Position of menu elements */
#menu ul li {
	position: relative;
	color: #fff;
	display: inline;
	padding: 0;
	float: left;
	background-image: url(menu-sep.gif);
	background-repeat: no-repeat;
	background-position: right center;
}

/* Edit look of 1st level menu items */
#menu ul li a {
	display: block;
	float: left;
	color: #666666;
	text-decoration: none;
	font-size: 10px;
	text-transform: uppercase;
	padding: 5px 11px 5px 11px;
}

#menu ul li.last {background-image:none;}

/* Added specifically for Internet Explorer */
* html #menu ul li a {
	padding: 5px 11px 5px 11px;
	}

/* Sometimes Needed to Change Internet Explorer Hover */
#menu ul li a:hover {
}

/* Position of Drop Down Elements */
#menu ul li ul {
	position: absolute;
	display: none;
}

/* Hover of the Main Menu */
#menu ul li:hover {
	position: relative;
	color: #fff;
}

/* Added specifically for Internet Explorer Hover */
#menu ul li:hover > a,
#menu li a:hover,
* html #menu li a:hover {
	padding: 5px 11px 5px 11px;
	color: #1b1962;
	background-color: #d7ddee;
}



/* THIS IS THE MENU */
