@CHARSET "UTF-8";

/* Styles for the entire LavaLamp menu */
.lavaLamp {
    position: relative;
    height: 35px; 
    width: 630px;
    margin: 10px 0 0 0;
    overflow: hidden;
    display: inline-block;
    float: left;
}
    /* Force the list to flow horizontally */
    .lavaLamp li {
        float: left;
        list-style: none;
    }
        /* Represents the background of the highlighted menu-item. */
        .lavaLamp li.back {
            background: url("/images/main/menu_hover.jpg") no-repeat right -28px;
            width: 6px; 
            height: 28px;
            z-index: 8;
            position: absolute;
        }
            .lavaLamp li.back .left {
                background: url("/images/main/menu_hover.jpg") no-repeat top left;
                height: 28px;
                margin-right: 9px;
            }
        /* Styles for each menu-item. */
        .lavaLamp li a {
            position: relative; 
            overflow: hidden;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            font-weight: bold;
            color: #000; 
            outline: none;
            text-align: center;
            height: 28px; 
            top: 7px;
            z-index: 10; 
            letter-spacing: 0;
            float: left; 
            display: block;
            margin: auto 20px;
        }