#menu {
              height: 41px;
              background-image:url(grafika/menup.jpg);
              background-repeat:no-repeat;
              background-position:right;
			  font-family:"Comic Sans MS", cursive;
		      font-size: 0.8em;
			  
}     
.clear {clear:both}    
/* remove the list style */   
#nav {   
    margin:0;    
    padding:0;    
    list-style:none;   
}      
       
    /* make the LI display inline */   
    /* it's position relative so that position absolute */   
    /* can be used in submenu */   
    #nav li {   
        float:left;    
        display:block;    
        background:#eaeaea;  
		background-image:url(grafika/przycisktlo.jpg);
        position:relative;   
        z-index:500;    
		height:41px;   
        margin:0;   
    }   
           
    /* this is the parent menu */   
    #nav li a {   
        display:block;    
        padding:10px 15px 0 15px;    
		margin: 0px 0px 0px 0px;   
        height:31px;    
        text-decoration:none;    
        color:#fff;    
        text-align:center;    
        color:#333;   
		border-right: 1px solid #d4d4d4;
    }   
  
    #nav li a:hover {   
        color:#fff;   
		background-image:url(grafika/przycisktloakt.jpg);
    }   
       
    /* you can make a different style for default selected value */   
    #nav a.selected {   
        color:#fff;   
		background-image:url(grafika/przycisktloakt.jpg);
    }   
       
        /* submenu, it's hidden by default */   
        #nav ul {   
            position:absolute;    
            left:0;    
            display:none;    
            margin:0px 0 0 -1px;    
            padding:0;    
            list-style:none; 
			border: 1px solid #666;
			font-family:Verdana, Geneva, sans-serif;
        }   
		#nav ul.submenuWLewo {
			margin: 0px 0px 0px -98px;
		}
           
        #nav ul li {   
            width:165px;    
            float:left;    
			background-image:none;
			height:25px;  
        }   
           
        /* display block will make the link fill the whole area of LI */   
        #nav ul a {   
            display:block;     
            height:21px;   
			padding:3px 15px 0px 15px ;
			margin: 0;
            color:#666;  
			background-image:none;
			text-align: left;
			border:none;
        }   
           
        #nav ul a:hover {   
			background:#1279be;
        }   
		#nav ul a.selected {
			background:#1279be;
		}
  
/* fix ie6 small issue */   
/* we should always avoid using hack like this */   
/* should put it into separate file : ) */   
*html #nav ul {   
    margin:0 0 0 -2px;   
}   
