/* Style for Main Menu */

.chromestyle {
	position: relative;
	left:0px;
	font-weight: normal;
	z-index: 5;
	color: white;
	
}

.chromestyle:after { /*Add margin between menu and rest of content in Firefox*/
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}



/* Style for Drop Down Menu */

.dropmenudiv {
	position:absolute;
	top: 0;
	margin-top: -5px;
	margin-left: 50px;/*LEFT SIDE DISTANCE OF SUBMENU FROM MENU*/
	border: 1px solid #ccc; /*THEME CHANGE HERE*/
	border-bottom-width: 0;
	line-height:12px;
	z-index:100;
	background-color: white;
	width: 150px;
	visibility: hidden;
	/*filter: progid:DXImageTransform.Microsoft.Shadow(color=#cdcdcd,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*/
}


.dropmenudiv a {
	width: auto;
	display: block;
	text-indent: 0px;
	border-bottom: 1px solid #ccc; /*THEME CHANGE HERE*/
	padding: 4px 0px 4px 5px;
	text-decoration:none;
	

}


.dropmenudiv a:link { /*THEME CHANGE HERE*/
	font-weight: normal;
	color: darkBlue;
	v
	
}
.dropmenudiv a:visited { /*THEME CHANGE HERE*/
	font-weight: normal;
	color: darkBlue;
	text-decoration:none;
}
	

.dropmenudiv a:hover { /*THEME CHANGE HERE*/
	background-color: #ffffff;
	color: #597bc9;
	font-weight: normal;
}


* html .dropmenudiv a { /*IE only hack*/
	width: 100%;
}

