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

.lavaLamp
{
    position: relative;
	margin:0;
	 
	width: 854px;
    height: 24px;
		
    overflow: hidden;
}

    /* Force the list to flow horizontally */
    .lavaLamp li 
	{
        float: left;
		margin-right:40px;
        list-style: none;
    }
        /* Represents the background of the highlighted menu-item. */
        .lavaLamp li.back
		{
            background: url("../img/menu_hover.gif") no-repeat right -24px;
            width: 8px;
			height: 24px;
			
            z-index: 8;
            position: absolute;
        }
            .lavaLamp li.back .left
			{
                background: url("../img/menu_hover.gif") no-repeat top left;
                height: 24px;
                margin-right: 8px;
            }
        /* Styles for each menu-item. */
        .lavaLamp li a:link, .lavaLamp li a:active, .lavaLamp li a:visited
		{
            display: block;
			float: left;			
			
			position: relative; 
			top: 6px;
			 z-index: 10;
			
            margin: auto ;
			
			height: 13px;
			
			overflow: hidden;
            text-decoration: none;
            text-transform: uppercase;
            font: bold 14px arial;
            color: #fff; 
			outline: none;
            text-align: center;            
            letter-spacing: 0;
			cursor:pointer;
			
			background-position:top;
			background-repeat:no-repeat;
        }
		.lavaLamp li a:hover
		{
			background-position:bottom;
			color:#444;
		}
		.lavaLamp li span
		{
			display:none;
		}
		
		#menu .lavaLamp .current a
		{
            display: block;
			float: left;			
			
			position: relative; 
			top: 6px;
			 z-index: 10;
			
            margin: auto ;			
			
			height: 13px;
			
			overflow: hidden;
            text-decoration: none;
            text-transform: uppercase;
            font: bold 14px arial;
            color:#444; 
			outline: none;
            text-align: center;            
            letter-spacing: 0;
			cursor:default;
			
			background-position:bottom;
			background-repeat:no-repeat;
        }
		
