/* Styles for the entire LavaLamp menu */
.lavaLamp {
    position: relative;
    height: 24px;
    /* width: 584px; */
    padding: 5px 1px 5px 0;
    margin: 0 0px 0 24px;
    overflow: hidden;
    float: left;/*NOT A DEFAULT DECLARATION, IF NEEDED - REMOVE*/
}
    /* 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/common/menu_hover_24.png") no-repeat right -24px;
            width: 5px;
            height: 24px;
            z-index: 8;
            position: absolute;
            top:5px;/***ADDED DECLARATION***/
        }
            .lavaLamp li.back .left {
                background: url("../images/common/menu_hover_24.png") no-repeat top left;
                height: 24px;
                margin-right: 5px;
            }
               
        /* Styles for each menu-item. */
        #lavaLamp li a {
            position: relative;
            overflow: hidden;
            text-decoration: none;
            font-family: Tahoma, Arial, Helvetica, Verdana, sans-serif;
            font-size: 12px;
            font-weight: bold;
            color: #fff;
            outline: none;
            text-align: center;
            height: 24px;/*24px*/
            /* top: 4px; */
            z-index: 10;
            float: left;
            display: block;
            margin: auto 0;
/*             border-right: 1px solid red; */
            padding: 4px 10px 0 10px;
        }
        
        #lavaLamp .current a, #lavaLamp li a:hover 
        {
        	color: #291f1d;
        }
        
/*
        #lavaLamp li a:hover
        {
        	color: #291f1d;
        }
*/

/*****************************************************************************/
/* Represents the background of the highlighted menu-item. */
        

