.chromestyle {
  width: 99%;
  font-weight: normal;
}

.chromestyle:after { /*Add margin between menu and rest of content in Firefox*/
  content: "."; 
  display: block; 
  height: 0px; 
  clear: both; 
  visibility: hidden;
}

.chromestyle ul {
  border: 0px;
  width: 100%;
  padding: 5px 0px;
  margin: 0px;
  text-align: left; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li {
  display: inline;
  background: 0px;
  margin: 0px;
  padding: 0px;
}

.chromestyle ul li a {
	color: #333333;
	font-family: Arial, Tahoma, Verdana, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
  padding: 7px 20px 5px 8px;
  margin: 0px;
  background: #fff url('../images/icon_chrome1.gif') 0px 5px no-repeat;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected { /*script dynamically adds a class of "selected" to the current active menu item*/
  color: #6d98ac;
	font-size: 13px;
	text-decoration: none;
  background: #fff url('../images/icon_chrome2.gif') 0px 5px no-repeat; /*THEME CHANGE HERE*/
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv {
  position:absolute;
  top: 0px;
  border: 5px solid #a1bbcd; /*THEME CHANGE HERE*/
  font: normal 12px Verdana;
  z-index:100;
  background: #a1bbcd;
  width: 300px;
  visibility: hidden;
  margin: -1px 0px 0px 0px;
  padding: 0px;
  text-align: left;
}


.dropmenudiv a {
  width: auto;
  display: block;
  border-bottom: 0px; /*THEME CHANGE HERE*/
  padding: 2px 0px 2px 2px;
  text-decoration: none;
  background: url('../images/arrow_menu2.gif') 10px 7px no-repeat;
}
.dropmenudiv a:link, .dropmenudiv a:active, .dropmenudiv a:visited {
	color: #fff;
	font-family: Arial, Tahoma, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	text-decoration: none;
	text-transform: uppercase;
}
.dropmenudiv a:hover {
	color: #e0e7ef;
	font-family: Arial, Tahoma, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	text-transform: uppercase;
}

* html .dropmenudiv a { /*IE only hack*/
  width: 100%;
}

