﻿/* Navigation Styles */
.chromestyle {
	width: 900px;
	font-weight: normal;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
}

.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.chromestyle ul{
	width: 100%;
	background: url(../images/nav-bg-red-5.jpg) center center repeat-x;
/*THEME CHANGE HERE*/	
	padding: 0px 0px 0px 0px;
	margin: 0;
	text-align: center;
	font: normal 12px Verdana;
	height: 24px;
	line-height: 24px;
}

.chromestyle ul li{
	display: inline;
}

.chromestyle ul li a{
	color: #fff;
	padding: 7px 21px 7px 21px;
	margin: 0;
	text-decoration: none;
	border-right: 1px solid #330000;
}

.chromestyle ul li a.selected{
	/*script dynamically adds a class of "selected" to the current active menu item*/
/*THEME CHANGE HERE*/background-position: center center;
	background: url(../images/nav-bg-red-6.jpg) center center repeat-x;
	color: #12BDF1;
}

.chromestyle ul li a:hover{ /*script dynamically adds a class of "selected" to the current active menu item*/
background: url(../images/nav-bg-red-6.jpg) center center repeat-x; /*THEME CHANGE HERE*/
color: #12BDF1;
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	position:absolute;
	top: 0;
	border: 2px solid #cc0000; /*THEME CHANGE HERE*/
	border-bottom-width: 2px;
	font:normal 11px Verdana;
	line-height:18px;
	z-index:100;
	background-color: #fff;
	width: 210px;
	visibility: hidden;
}

.dropmenudiv a{
	width: auto;
	display: block;
	text-indent: 5px;
	padding: 3px 0;
	text-decoration: none;
	font-weight: normal;
	color: #000066;
}

* html .dropmenudiv a{ /*IE only hack*/
	width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
	background-color: #000066;
	text-decoration:none;
	color: #fff;
}

