/* Styles for the entire LavaLamp menu */
.lavaLamp {
	position: relative;
	height: 31px;
	width: 811px;
	padding: 14px;
	margin: 0;
	overflow:visible;
}
    /* Force the list to flow horizontally */
    .lavaLamp li {
        float: left;
        list-style: none;
    }
	
	.lavaLamp li ul{
		position: absolute;
		left: 208px;
		top: 42px;
		width: 150px;
		display: none;
		z-index: 10;
	}
	
	.lavaLamp li ul a{
		display:block;
		float:none;
		width: 120px;
		text-decoration: none;
		color: #FFF;
		text-transform:none;
		font-size: 12px;
		text-align:left;
		background: #1f1f1f;
		padding: 7px;
		height: 15px;
		border: 1px solid #515151;}
	.lavaLamp li ul a:hover{
		background:#515151;}
		
	.lavaLamp li:hover ul{display:block;}

        /* Represents the background of the highlighted menu-item. */
        .lavaLamp li.back {
            background: url("../images/lava.png") no-repeat right -30px;
            width: 21px; height: 31px;
            z-index: 8;
            position: absolute;
        }
            .lavaLamp li.back .left {
                background: url("../images/lava.png") no-repeat top left;
                height: 33px;
                margin-right: 14px;
            }
        /* Styles for each menu-item. */
        .lavaLamp li a {
            position: relative; 
			overflow: hidden;
            text-decoration: none;
            font: bold 13px arial;
            color: #fff; 
			outline: none;
            text-align: center;
            height: 31px; 
			top: 7px;
            z-index: 10; 
			letter-spacing: 0;
            float: left; 
			display: block;
            margin: auto 13px auto 12px;
        }
        
