/* Styles for the entire LavaLamp menu */
.lavaLamp {
	position: relative;
	height: 20px;
	width: 260px;
	background: url("images/bg.png") no-repeat top;
	opacity:0.7;
	filter:alpha(opacity=70);
	-moz-opacity:0.7;
	-moz-border-radius: 15px 15px 15px 15px;
	-moz-box-shadow:0 0 1px;
	padding: 8px 8px 8px 8px;
	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.png") no-repeat right -30px;
		-moz-border-radius: 15px 15px 15px 15px;
		-moz-box-shadow:0 0 1px;
		width: 9px; height: 20px;
		z-index: 9;
		position: absolute;
	}
		
	.lavaLamp li.back .left {
		background: url("images/lava.png") no-repeat top;
		height: 20px;
		margin-right: 9px; /* 7px is the width of the rounded shape */
	}
	
	/* Styles for each menu-item. */
	.lavaLamp li a {
		font: bold 12px arial;
		text-decoration: none;
		color: #fff;
		outline: none;
		text-align: center;
		top: 3px;
		text-transform: uppercase;
		letter-spacing: 0;
		z-index: 10;
		display: block;
		float: left;
		height: 15px;
		position: relative;
		overflow: hidden;
		margin:0px 5px 5px 5px;    
	}
	
	.lavaLamp li a:hover, .lavaLamp li a:active, .lavaLamp li a:visited {
		border: none;
	}
