/* ######### Style for the MAIN MENU section ######### */

.chromestyle{
width: 99%;
/*font-weight: bold; */
font:bold 12px Arial;
}

.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(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
background-color: #FFFFFF;  /* This is the background colour of the main menu bar  - which was set to grey #B4AEAD  */
/*padding: 8px 0; /* this first value in padding affect the height of the menu */
padding: 8px 0; /* this first value in padding affect the height of the menu - the second value affects the left indent of each menu option */
margin: 0;
text-align: left; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
/*color: #494949;*/
color: #000000; /* this is the font colour */
/*padding: 8px 7px; /* this first value in padding affect the height of the menu */
padding: 8px 7px; /* this first value in padding affect the height of the menu * and the second value affects the spacing between each menu option from left to right */
margin: 0;
text-decoration: none;
/*border-right: 1px solid #DADADA;*/
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
color: #000000; /* this is the font colour */
/*background: url(chromebg1-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
/*background: url(chromebg1-over.gif) /*THEME CHANGE HERE*/
background-color: #808000;	/* Hover over background colour - currently a green olive type colour #808000 */
}

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

.dropmenudiv{
position:absolute;
top: 0;
border: 1px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
/*font-weight: bold; */
/*font:bold 14px Arial;*/
font:bold 12px Arial;
/*line-height:18px;*/
line-height:18px;
z-index:100;
/*background-color: white;*/
background-color: white;  /* this is the backgroud colour of the dropdown menu when NOT hovering*/
width: 200px;
visibility: hidden;
/*filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*/
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
padding: 6px 0;	/* This affects the height of each dropdown menu option */
text-decoration: none;
/*font-weight: bold; */
/*font:bold 14px Arial;*/
font:bold 12px Arial;
/*color: black;*/
color: black;
}

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

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #808000;	/* Hover over background colour - currently a green olive type colour #808000 */
color: white;
}