 #navMenu {  
     margin:0;   
     padding:0;  
     list-style:none;      
     font-family:arial;  
     text-align:right;  
     line-height:25px;  
 }  
   
     #navMenu li {  
         float:right;   
           
         /* default background image */       
           
         /* width and height of the menu item */  
         width:330px;                              
         height:25px;  
           
           
         /* must set it as relative, because .hover class top and left with absolute position will be positioned according to li.    */  
         position:relative;            
     }  
   
     #navMenu li a {  
         /* z-index must be higher than .hover class */  
         z-index:20;               
           
         /* display as block and set the height according to the height of the menu to make the whole LI clickable   */  
         display:block;    
         height:25px;  
         position:relative;  
         color:#fff;  
		 text-decoration:none;
     }  
   
     #navMenu li .hover {  
         /* mouseover image  */  
         background:url('images/fade.png') no-repeat center center;         
   
         /* must be postion absolute     */  
         position:absolute;    
           
         /*  width, height, left and top to fill the whole LI item   */  
         width:330px;      
         height:25px;  
         left:0;   
         top:0;  
		 text-decoration:none;
           
         /* display under the Anchor tag */  
         z-index:0;        
         /* hide it by default   */  
         display:none;     
     }     
   
     #navMenu li.selected {  
         /* selected image   */  
         background:url('images/fade.png') no-repeat center center;     
     }  
