/* Basic code - don't modify */
 
 #navdrop { display: block; margin: 0; padding: 0; position: relative; }
  #navdrop li { display: block; list-style: none; margin: 0; padding: 0; float: left; position: relative; }
  #navdrop a { display: block; }
  #navdrop ul { display: none; position: absolute; left: 0; margin: 0; padding: 0; }
  * html #navdrop ul { line-height: 0; } /* IE6 "fix" */
  	#navdrop ul a { zoom: 1; } /* IE6/7 fix */
    #navdrop ul li { float: none; }
    #navdrop ul ul { top: 0; }
    
/* Essentials - configure this */

#navdrop ul { width: 130px; }
#navdrop ul ul { left: 131px; }

/* Everything else is theming */
 
#navdrop { background-color: #30A8C3; }
#navdrop *:hover { background-color: none; }
  #navdrop li.hover a { background-color: #883595; }
    #navdrop ul li a { background-color: #8a3797; }
      #navdrop ul a.hover { }
   #navdrop ul a { border-right: none; opacity: 0.9; filter: alpha(opacity=90); }
/* #navdrop ul a { border-bottom: none; } - I also needed this for IE6/7 */

