/* CSS Document */

/* Styles for the entire LavaLamp menu */
.lavaLamp {
    position: relative;
	background:url("images/menu_bg.png");
    height: 32px; width: 780px;
    /* background: url("images/bg.gif") no-repeat top;*/
    padding: 2px; margin: 14px 0;
    overflow: hidden;
}
    /* 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/lava.gif") no-repeat right -30px;
            width: 9px; height: 2px;
            z-index: 8;
            position: absolute;
        }
            .lavaLamp li.back .left {
                background: url("images/lava.gif") top left;
                height: 2px;
                margin-right: 0px;
            }
        /* Styles for each menu-item. */
        .lavaLamp li a {
            position: relative; overflow: hidden;
			
            text-decoration: none;
            text-transform: uppercase;
            font: bold 16px arial;
            color: #fff; outline: none;
            text-align: center;

            height: 32px; top: 5px;
            z-index: 10; letter-spacing:-0.06em;
            float: left; display: block;
            margin: auto 10px;
        }
		

