/*DROP DOWN MENU*/
    .selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
    }

    /* ######### Default class for drop down menus ######### */

    .anylinkcss{
        position: absolute;
        left: 0;
        top: 0;
        visibility: hidden;
        z-index: 7; /* zIndex should be greater than that of shadow's below */
        background:#1A1A1A;
        font-size:small;
        line-height:1.5em;
        white-space:nowrap;
        width:110px;
        margin:4px 0px 0px -25px;
        padding-bottom: 5px;
		
        /*border:1px solid #555555;
        -moz-border-radius:8px;
        -webkit-border-radius:8px;*/
    }
    .anylinkcss ul{
        margin: 0;
        list-style-type: none;
        padding:0;
    }
    .anylinkcss ul li a{
		color:#666666;
        width: 100%;
        display: block;
        text-align:center;
        text-decoration:none;
        text-transform:lowercase;
    }
    .anylinkcss a:hover {
    }
    .anylinkcss a:hover{ 
        color: #B9B9B9;
    }
    .anylinkshadow{ display:none; }

/*LAVA LAMP MENU*/

    .lavaLampMenu {
        position: relative;
        height: 1.5em;
        margin:0;
        font-size:1em;
        text-transform:lowercase;
        width:100%;
		padding-left:0;
    }
    .lavaLampMenu li {
        float: left;
        list-style: none;
    }
    .lavaLampMenu li.back {
        border-bottom: 4px dotted #9C0058;
        margin-top:-.05em;
		margin-left:-2px;
        height: 1.4em;
        z-index: 8;
        position: absolute;
        /*background-color: #0D0D0D;
        -moz-border-radius:8px;
        -webkit-border-radius:8px;*/
    }
    .lavaLampMenu li a {
        text-decoration: none;
        outline: none;
        text-align: center;
        z-index: 10;
        display: block;
        float: left;
        margin-top:-.1em;
        height: 1.5em;
        position: relative;
        overflow: hidden;
        margin: auto 10px;
    }
    .lavaLampMenu li a:hover {
        color: #B9B9B9 !important;
    }
    .lavaLampMenu li a:hover, .lavaLampMenu li a:active, .lavaLampMenu li a:visited {
        border: none;
    }
    .menuItemSelected a {
        /*color:#9C0058 !important;*/
    }