/*
For Maalika...
Lavalamp menu implemented by Sreenu Vattipally (sreenu.cdfd {@} gmail.com)
*/

ul#menu { 
list-style:none; 
font-size:12px;
margin:5px; 
border:0;
padding:10px; 
overflow:auto; /* makes sure the container fits the floated list-items below */ 
} 
ul#menu li{ 
position:relative; /* allows us to set the z-index */ 
z-index:5; /* raises the z-index of the line item 5 levels all other elements */ 
margin:3px 5px; 
padding:5px 5px 3px; 
float:right; /* floats list items to the left, creating a horizontal menu */ 
} 

ul#menu li.backLava {
background-color:#eee; 
border:1px solid #eee;
}

ul#menu a:link, ul#menu a:hover, ul#menu a:active, ul#menu a:visited { 
text-decoration:none;
color:#000;
}

