﻿.chromestyle{
    width: 100%;
}

.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.chromestyle ul{
    border: 0px solid #BBB;
    width: 100%;
    padding: 0px 0;
    margin: 0;
    text-align: left; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
    display: inline;
}

.chromestyle ul li a{
    color: #494949;
    padding: 2px 2px 2px 2px;
    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*/
}

/* ######### Style for Drop Down Menu ######### */
.dropmenudiv{
    position:absolute;
    top: 0;
    margin-top: 0px;
    margin-left: 3px;
    margin-right:3px;
    border-bottom-width: 0;
    line-height:0px;
    z-index:100;
    background-color: #000;
    width: 180px;
    visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=1); /*Add Shadow in IE. Remove if desired*/
}


.dropmenudiv a{
    width: 160px;
    display: block;
    border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
    padding: 0px 0;
    text-decoration: none;
    color: #fff;
    line-height:20px;
    margin-left:-32px;
    padding-right:5px;
}



* html .dropmenudiv a{ /*IE only hack*/
    width: 100%;
}


.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    /*background-color: #cc5c94;*/
    color:#AC0904;
}

