@charset "utf-8";
/* CSS Document */
.clear {clear:both}

 #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:right;   
         display:block;   
         width:auto;   
         position:relative;  
         z-index:500;   
         margin:0 7px;
		  background-image:url(../images/menu_arrow_down.png);
		 background-position: center right;
		 background-repeat:no-repeat;		
     }  
           
     /* this is the parent menu */  
     #nav li a {  
         display:block;   
         padding:5px 10px 0 3px;   
         font-weight:700;    
         height:19px;   
         text-decoration:none;   
         color:#fff;   
         text-align:center; 
		 font-size:12px;
		
     }  
	 #nav li:hover{
	 	 background-image:url(../images/menu_arrow_left.png);
		 background-position: center right;
		 background-repeat:no-repeat;
	 }
   
     #nav li a:hover {  
         color:#fff;
		
     }  
       
     /* you can make a different style for default selected value */  
     #nav a.selected {  
         color:#fff;  
     }  
       
         /* submenu, it's hidden by default */  
         #nav ul {  
             position:absolute;   
             left:0;   
             display:none;   
             margin:0 0 0 -1px;   
             padding:0;   
             list-style:none;
			 
         }  
           
         #nav ul li {  
             width:165px;   
             float:left;   
             /*border-top:1px solid #000;  */
			 background:#646464;
			 /*color:#fff;*/
			 
         }  
           
         /* display block will make the link fill the whole area of LI */  
         #nav ul a {  
             display:block;    
             height:15px;  
             padding: 3px 5px;   
             color:#fff;
			 background-image:none;
			 text-align:left;
         }  
           
         #nav ul a:hover {  
			 color:#fff;
			 text-decoration:none;
			 background-color:#000;             
			 background-image:none;    
         }  
   
 /* 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;  
 }  

