ul#nav, ul#nav li ul { /* all lists */
   padding: 0;
   margin: 0;
   list-style: none;
   text-align: left;
   font-family: trebuchet, arial, san-serif;
}

ul#nav  { /* top level list */
   text-transform: uppercase;
   font-weight: bold;
   width: 140px;
   z-index: 10;
   border: 0;
   margin: 0 0 0 10px;
}
     
ul#nav li { /* all list items */
   margin: 0;
   padding: 2px;
   font-size: 13px;
}

ul#nav li ul { /* second-level lists */
/*   display: none;  */
   text-transform: capitalize;
   font-weight: normal;
}

ul#nav li ul li { /* second level list items */
   margin: 0 0 0 20px;
   border: 0;
}

/* L I N K S */
ul#nav a { /* links in all list(s) (main or nested) */
   color: /*#9c634b*/ #9c624e;
   text-decoration: none;
   }
ul#nav li.current a { /* links in all CURRENT list items, either level */
   color: #3b9395;
   }   
ul#nav a:hover { /* all links when HOVERING */
   color: #fff;
   background-color: #77bccb;
   text-decoration: none;
   }	
ul#nav li.current a:hover { /* links in all CURRENT list items, either level */
   color: #fff;
   }   

