.chromestyle{
  width: 99%;
  font-weight: bold;
  font-size:13px;
}

.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
}

.chromestyle ul{
  /*border: 1px solid #BBB;*/
  width: 100%;
  background: url(../imagesEx/menu_bg.png) center center repeat-x; /*THEME CHANGE HERE*/
  padding: 4px 0;
  margin: 0;
  text-align: center; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
  display: inline;
  padding-left:13px;
  padding-right:13px;
}

.chromestyle ul li a{
  color: #e6e6f0;
  padding: 4px 4px;
  margin: 0;
  text-decoration: none;
  /*border-right: 1px solid #DADADA;*/
}

.chromestyle ul li a:hover {
  color:#ffffff;
  text-decoration:underline;
}
/*script dynamically adds a class of "selected" to the current active menu item*/
/*
.chromestyle ul li a:hover, .chromestyle ul li a.selected{
  background: url(../imagesEx/menu_bg.png) center center repeat-x;
}
*/

/*greyed menus*/
.chromestyle ul li a.notclickable {
  color:#999999;
  padding: 4px 7px;
  margin: 0;
  text-decoration: none;
}
.chromestyle ul li a.notclickable:hover {
  color:#999999;
  text-decoration:none;
}


/* ######### Style for Drop Down Menu ######### */
.dropmenudiv{
  position:absolute;
  top: 0;
  border: 1px solid #BBB; /*THEME CHANGE HERE*/
  border-bottom-width: 0;
  font:normal 12px Verdana;
  line-height:18px;
  z-index:100;
  background-color: #5b5a79/*white*/;
  width: 150px;
  visibility: hidden;
  box-shadow        : -8px 5px 5px #888;
  -moz-box-shadow   : -8px 5px 5px #888;
  -webkit-box-shadow: -8px 5px 5px #888;
  filter            : progid:DXImageTransform.Microsoft.dropShadow(color=#bbbbbb,offX=5,offY=5, positive=true);
}

.dropmenudiv a{
  width: auto;
  display: block;
  text-indent: 3px;
  border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
  padding: 2px 0;
  text-decoration: none;
  font-weight: bold;
  color: #e6e6f0/*black*/;
}

* html .dropmenudiv a{ /*IE only hack*/
  width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
  /*background-color: #F0F0F0;*/
  color:white;
  text-decoration:underline;
  /*background-color: rgb(73, 73, 101);*//*dark*/
  background-color: rgb(103, 103, 141); /*light*/
}

a#selected {
  color:#789472;
}

/*greyed drop downs*/
.dropmenudiv a.notclickable{
  color: #999999;
}

.dropmenudiv a.notclickable:hover{
  color: #999999;
  text-decoration:none;
  background-color: #5b5a79;
}

