/* Special Purpose Drop Down Menu- Author: eXiLe (http://guardianhost.com) */

.chromestyle{
width: 100%;
font-weight: bold;
font-size: 11px;
white-space: nowrap;
}

.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.chromestyle ul{
border-bottom: 1px solid #d8b470;
width: 100%;

padding: 4px 0;
margin: 0;
text-align: left; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
color: #9f9f9f;
padding: 4px 7px;
margin: 0;
text-decoration: none;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
color: #d8b470;
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: 0;
border-bottom-width: 0;
font-size: 10px;
line-height: 12px;
white-space: nowrap;
z-index:100;
background: #000 url(left_dropdown_styler.jpg) top left no-repeat;
width: 178px;
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: 25px;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
color: #9f9f9f;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{
color: #d8b470;
}
