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: 25px 0 10px 25px;
}
     
ul#nav li { /* all list items */
   margin: 0;
   padding: 2px 2px 3px 2px;
   font-size: 1em;
}

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: #828f75;
   text-decoration: none;
   }

ul#nav a:hover { /* all links when HOVERING */
   color: #73598e;
   text-decoration: none;
   }	


/* C U R R E N T */

ul#nav li.current a { /* links in all CURRENT list items, either level */
   color: #523a2a;
   font-weight: bold;
   }   


