/* Atch menu */

#atchmenu {
    float:left;
    margin:10px 0 0 0;
    border-bottom:5px solid #000000;
    width: 100%;
    clear:both;
}

/* Styles for the entire LavaLamp menu */
.lavaLamp {
    position: relative;
    padding: 0 ;
    overflow: hidden;
    float: left;
}
    /* Force the list to flow horizontally */
    .lavaLamp li {
        float: left;
        list-style: none;
        height: 30px;
    }
    /* Represents the background of the highlighted menu-item. */
    .lavaLamp li.back {
             border-top: 5px solid #000;
             width: 9px;
             z-index: 8;
             position: absolute;
    }

    /* Styles for each menu-item. */
    .lavaLamp li a {
            position: relative;
            overflow: hidden;
            padding:0.1em 0.5em;
            text-decoration:none;
            top: 9px;
            z-index: 10;
            letter-spacing: 0;
            font-size: 1.1em;
            text-transform: uppercase;
            float: left;
            display: block;
            margin: auto 5px;
    }
    .lavaLamp li a:hover{color: #000; }
    .lavaLamp li.current {
        background-color: #000;
        z-index: 50; }
    .lavaLamp li.current  a{color: #fff; }


