﻿/* ######### Default class for drop down menus ######### */

.anylinkcss
{
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    border: 1px solid #bdd63c;
    font: normal 12px Trebuchet MS;
    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: White;
}

.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;
    text-align: center;
    text-decoration: none;
    font-family: Trebuchet MS, Arial,Tahoma;
    font-size: 14px;
    
}

.topmenuitem:hover
{
    text-decoration:underline;
}
.defaulttopmenuitem
{
    height: 40px;
    background-color:White;
    background-image:url('Images/Menu/menuItem.png');
    background-repeat:repeat-x;
}

.selectedtopmenuitem
{
    height: 40px;
    font-weight:bold;
    background-image:url('Images/Menu/menuItemOver.png');
    background-repeat:repeat-x;
}
