.left
{
    float: left;
    vertical-align: bottom;
}
.dropstyle
{
    width: 900px;
    font-weight: bold;
    float: left;
}

.dropstyle:after
{
    /*Add margin between menu and rest of content in Firefox*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.dropstyle ul
{
    width: 100%;
    padding: 4px 0;
    margin: 0;
    text-align: right; /*set value to "left", "center", or "right"*/
    height: 23px;
    padding-bottom: 2px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 6px;
}


.dropstyle ul li{
display: inline;
}

.dropstyle ul li a
{
    color: #ffffff;
    margin: 0;
    text-decoration: none;
    border-right: 1px solid #ffffff;
    padding-left: 10px;
    padding-right: 10px;
}

.dropstyle ul li a:hover, .dropstyle ul li a.selected
{
	/*script dynamically adds a class of "selected" to the current active menu item*/
	color: #CC0066;
}


/* ######### Style for Drop Down Menu ######### */

.dropmenudiv
{
    position: absolute;
    top: 0;
    font: 10pt Arial, Tahoma, Verdana;
    line-height: 20px;
    z-index: 100;
    background-color: #2576ab;
    width: 200px;
    visibility: hidden;
    text-align: left;
    margin-top: 5px;
}
.dropmenudiv a
{
    width: auto;
    display: block;
    text-indent: 3px;
    border-bottom: 1px dotted #e6e6fa; /*THEME CHANGE HERE*/
    padding: 4px 0;
    text-decoration: none;
    color: #ffffff;
}


* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    color:#CC0066;
}

