/* ######### Default class for drop down menus ######### */

.anylinkcss
{
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    border: 0px solid #bdd63c;
    font: normal 12px;
    line-height: 18px;
    z-index: 100; /* zIndex should be greater than that of shadow's below */
    background: #458bc8;
    width: 200px; /* default width for menu */
    color: black;
}

.anylinkcss ul
{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.anylinkcss ul li a
{
    width: 100%;
    display: block;
    text-indent: 3px;
    border-bottom: 0px solid #bdd63c;
    padding: 1px 0;
    text-decoration: none;
    color: white;
    text-indent: 5px;
    background-color:#458bc8;
}

.anylinkcss a:hover
{
    /*hover background color*/
    background: #86b5dd;
    color: white;
    font-weight:bold;
}


/* ######### class for shadow DIV ######### */


.anylinkshadow
{
    /*CSS for shadow. Keep this as is */
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99; /*zIndex for shadow*/
    background: black;
    visibility: hidden;
}

.topmenuitem
{
    color: white;
    cursor: pointer;
    font-weight:normal;   
    text-align: center;
    text-decoration: none;
    font-size: 16px;
}

.defaulttopmenuitem
{
    height: 27px;
    color:white;
}

.selectedtopmenuitem
{
    color:white;
    height: 27px;
}


.footer
{
    color: White;
    font-size: 12px;
    text-decoration: none;
    padding-top: 0px;
}

.footer ul
{
    list-style-type: none;
    display: inline;
    padding: 0px 0px 0px 0px;
}

.footer ul li
{
    display: inline;
    float: left;
    margin-right: 3px;
    text-align: center;
}

.footer ul li a
{
    display: block;
    height: 26px;
    line-height: 26px;
    color: #FCFCFC;
    text-decoration: none;
    padding-left:10px;
}

.footer ul li a.current
{
    color: #FFFFFF;
    font-weight: bold;
}

.footer ul li a:hover
{
    color: #FFFFFF;
    font-weight: normal;
    text-decoration:underline;
}

