.chromestyle{
   width: 99%;
}

/*Add margin between menu and rest of content in Firefox*/
.chromestyle:after{ 
   content: "."; 
   display: block; 
   height: 0; 
   clear: both; 
   visibility: hidden;
}

.chromestyle ul{
   margin: 0;
   padding: 0;
   list-style: none;
   text-align: center; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
   display: inline;
   border-right: 1px solid #5D5D5D;
}

.chromestyle ul li a{
   color: white;
   padding: 4px 0px;
   margin: 0px 8px;
   text-decoration: none;
}

.chromestyle ul li a:visited{
   color: white;
}

.chromestyle ul li a:hover{
   color: red;
   text-decoration: underline;
}

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

.dropmenudiv{
   position:absolute;
   top: 0;
   border: 1px solid #AAAAAA; 
   border-bottom-width: 0;
   font:normal 12px Verdana;
   line-height:18px;
   z-index:100;
   background-color: black;
   width: 150px;
   visibility: hidden;
   margin-left: -0.75em;
}


.dropmenudiv a{
   text-align: left;
   width: auto;
   display: block;
   text-indent: 3px;
   border-bottom: 1px solid #AAAAAA; 
   padding: 2px 0;
   text-decoration: none;
   color: white;
}

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

.dropmenudiv a:visited{ 
   color: white;
}

.dropmenudiv a:hover{ 
   color: red;
   text-decoration: underline;
}