/*----------------------------------------------------------------------------------*/
/*                                              Navigation Menus */
/*--------------------------------------------------------------------------------*/

/* Menu CSS items */
.chromestyle{
	width: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	word-spacing: 15px;
	}
	.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%;
		padding: 4px 0;
		margin: 0;
		text-align: center; /*set value to "left", "center", or "right"*/
		}
			.chromestyle ul li{
			display: inline;
			}
			.chromestyle ul li a{
				/*color: #494949;*/
				/* color is for about FSU, academics... links on homepage*/
				color: #000000;
				padding: 4px 4px;
				margin: 0;
				text-decoration: none;
				font-weight:bold;
				}
				.chromestyle ul li a:hover{
					background:#f9f6ea;
				}
				.chromestyle ul li a[rel]:after{ /*HTML to indicate drop down link*/
					content: "";
					/*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
				}

/* ######### Style for Drop Down Menu ######### */
.dropmenudiv{
	position:absolute;
	top: 0;
	border-bottom-width: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height:18px;
	z-index:100;
	background: #f9f6ea;
	width: 200px;
	visibility: hidden;
	z-index:100;
	border-left:  outset #a8a08e 1px;
	border-right:  outset #a8a08e 1px;
	border-bottom: solid  #a8a08e 1px;
	}
	@media print {
		.dropmenudiv { position: static; }
	} 	
	.dropmenudiv a{
		width: auto;
		display: block;
		text-indent: 3px;
		border-bottom: 1px solid #d5d0c0; /*THEME CHANGE HERE*/
		padding: 2px 0;
		text-decoration: none;
		color: black;
		z-index:101;
		/* border-top: solid 1px #a8a08e; */
		}
	* html .dropmenudiv a{ /*IE only hack*/
		width: 100%;
		}
		.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
			background: #A8A08C;
		}

/* ######### Widen a dropdown ########### */
div#dropmenu5 {
	width: 220px;
}

