@charset "utf-8";
/* CSS Document */

/* Styles for the entire LavaLamp menu */
.lavaLamp {
	position: relative;
	height: 29px;
	width: 700px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: top;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 30px;
	padding-top: 20px;
	padding-bottom: 10px;
	padding-left: 25px;
}
    /* Force the list to flow horizontally */
    .lavaLamp li {
        float: left;
        list-style: none;
    }
        /* Represents the background of the highlighted menu-item. */
        .lavaLamp li.back {
	width: 9px;
	height: 30px;
	z-index: 8;
	position: absolute;
	background-image: url(images/lava.gif);
	background-repeat: no-repeat;
	background-position: right -30px;
        }
            .lavaLamp li.back .left {
	background: url("../image/lava.gif") no-repeat top left;
	height: 30px;
	margin-right: 9px;
            }
        /* Styles for each menu-item. */
        .lavaLamp li a {
	position: relative;
	overflow: hidden;
	text-decoration: none;
	text-transform: capitalize;
	color: #FFFFFF;
	outline: none;
	text-align: center;
	height: 30px;
	top: 7px;
	z-index: 10;
	letter-spacing: 0;
	float: left;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	margin-top: auto;
	margin-right: 10px;
	margin-bottom: auto;
	margin-left: 10px;
        }
        
