﻿/* Basic code - don't modify */
.button { cursor: pointer }

 #nav { display: block; margin: 0; padding: 0; position: relative; z-index: 1; }
  #nav li { display: block; list-style: none; margin: 0; padding: 0; float: left; position: relative; }
  #nav a, #nav span  { display: block; text-decoration: none; }
  #nav ul { display: none; position: absolute; left: 0; margin: 0; padding: 0; }
  * html #nav ul { line-height: 0; } /* IE6 "fix" */
  	#nav ul a { zoom: 1; } /* IE6/7 fix */
    #nav ul li { float: none; }
    #nav ul ul { top: 0; }

/* Essentials - configure this */

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

/* Everything else is theming */

#nav {
    background-color: #AFB0B1;
    background-repeat: repeat-x; /* Safari 4-5, Chrome 1-9 */
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#AFB0B1), to(#3F4042)); /* Safari 5.1, Chrome 10+ */
    background: -webkit-linear-gradient(top, #AFB0B1, #3F4042); /* Firefox 3.6+ */
    background: -moz-linear-gradient(top, #AFB0B1, #3F4042); /* IE 10 */
    background: -ms-linear-gradient(top, #AFB0B1, #3F4042); /* Opera 11.10+ */
    background: -o-linear-gradient(top, #AFB0B1, #3F4042);
    border: 1px solid #3F4042;
    border-radius: 5px 5px 5px 5px;

height: 30px; }
#nav *:hover { background-color: none; }
#nav a, #nav span { border-right: 1px solid #3f4042; color: white; font-size: 14px; padding: 8px 10px; line-height: 1; text-shadow: 1px 1px 1px #000000; }
  #nav li.hover a { background-color: #989da2; }
  #nav ul { top: 31px; }
    #nav ul li a { background-color: #989da2; }
      #nav ul li.hover > a { background-color: #888d92; text-decoration: underline; }
      #nav ul a.hover { background-color: #787d82; text-decoration: underline; }
   #nav ul a { border-bottom: 1px solid white; border-right: none; opacity: 0.9; filter: alpha(opacity=90); }
#nav ul li ul li a { padding: 6px; font-size: 12px; }
/* #nav ul a { border-bottom: none; } - I also needed this for IE6/7 */
