/*stylesheet for gnb1 (DEQ, Divisions, Regions, Commission)*/
/*this style sheet controls GNB1: non-editable region, requires css & js*/

/*controls top bar*/
#gnb1, #gnb1 ul{
float: right;
padding: 0;
margin: auto 0em;
list-style: none;
}

/*controls list*/
#gnb1 li{
float: left;
position: relative;
}

/*controls all linked labels in static state, includes dropdowns (DEQ, Commission, submenus)*/
#gnb1 a, a:visited{
margin: auto 0em;
text-indent: 0em;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8pt;
text-decoration: none;
color: white;
}

/*controls all linked labels in hover,(DEQ, Commission, submenus)*/
#gnb1 a:hover{
margin: auto 0em;
text-indent: 0em;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8pt;
text-decoration: none;
color: #BFCA9F; /*lt green*/
}

/*controls non-linked labels in top bar and color/spacing of top bar (Divsions and Regions)*/
#gnb1mainitems {
margin: auto 0em;
background-color: #666666; /*dark charcol*/
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8pt;
font-weight: normal;
color: white;
text-indent: .25em;
}

/*controls dropdown box*/
.gnb1submenus{
display: none;
position: absolute;
top: 1.25em;
left: 1em;
background-color: #663300; /*brick red*/
}

.gnb1submenus li{
width: 100%;
}

/*for other browsers*/
html>body #submenus li a{ 
width: auto;
}

/*controls dropdown box hover*/
.gnb1submenus li a:hover{
display: block;
width: 100%;
/*background-color:  #666666;  /*dark charcoal*/ */
}

/*for other browsers*/
#gnb1 li>ul {
top: auto;
left: auto;
}

/*maintains dropdown*/
#gnb1 li:hover ul, li.over ul {
display: block;
color: white;
}

/*for other browsers*/
html>body #clearmenu{ 
height: 3px;
}

/* why is this needed here
body {
	background-color: #999999;
}
*/