.chromestyle{
width: 100%;

}

.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: 6px 0 8px 0;
margin: 0;
text-align: right; /*set value to "left", "center", or "right"*/
}

.chromestyle li{
	display: inline;
	min-width: 150px;
}

.chromestyle ul li a{
font-size:12px;
font-weight:bolder;
color: #666666;
padding: 6px 10px 4px 10px;;
margin-right: 1px;
text-decoration: none;

}

.red{
border-bottom: 4px solid red;
}
a:hover.red{
background-color: red;
color: black;
}
.orange{
border-bottom: 4px solid orange;
}
a:hover.orange{
background-color:orange;
color: black;
}
.yellow{
border-bottom: 4px solid yellow; /*THEME CHANGE HERE*/
}
a:hover.yellow{
background-color:yellow;
color: black;
}
.green{
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #8EB063;
}
a:hover.green{
	background-color:#8EB063;
	color: black;
}
.blue{
border-bottom: 4px solid blue; /*THEME CHANGE HERE*/
}
a:hover.blue{
background-color:blue;
color: black;
}
.purple{
border-bottom: 4px solid purple; /*THEME CHANGE HERE*/
}
a:hover.purple{
background-color:purple;
color: black;
}
.indigo{
border-bottom: 4px solid indigo; /*THEME CHANGE HERE*/
}
a:hover.indigo{
background-color:indigo;
color: black;
}
/*.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item
border-bottom: hidden; /*THEME CHANGE HERE*/

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

.dropmenudiv{
position:absolute;
top: 0;
 /*THEME CHANGE HERE*/
border-bottom-width: 0;
font-size:11px;
font-weight:bold;
line-height:18px;
z-index:100;
background-color: yellow;
width: 180px;
visibility: hidden;
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #FFF; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
color: black;
}

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

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #F0F0F0;
color: black;
}

.dropmenudivgreen{
position:absolute;
top: 0;
 /*THEME CHANGE HERE*/
border-bottom-width: 0;
font-size:11px;
font-weight:bold;
line-height:18px;
z-index:100;
background-color: #8EB063;
width: 155px;
visibility: hidden;
}


.dropmenudivgreen a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #FFF; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
color: black;
}

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

.dropmenudivgreen a:hover{ /*THEME CHANGE HERE*/
background-color: #F0F0F0;
color: black;
}

