/******************************
 Global CSS for ALL menu types
******************************/
#menu-bar {
  display: block;
  clear: both;
  background-color: #62b92c;
  height: 50px;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 0;
}

/** TOP LEVEL CSS (WHICH CASCADES DOWN IF NOT OVERRIDDEN) **/
/* THE UL */
ul.nice-menu { 
  background-color: #62b92c;
  list-style: none;
  height: auto;
  margin-top: 0;
  padding-left: 25px;
  float: left; 
  border: 0;
  text-transform: uppercase;
}
/* THE LI */
ul.nice-menu li { 
  float: left; 
  height: auto;
  border-right: 1px solid #ffffff;
  background-color: #62b92c;
  font-family: 'Trade Gothic W01 Bold 2';
}
/* THE FIRST LI */
ul.nice-menu li.first {
  border-left: 1px solid #ffffff;
}
/* A's */
ul.nice-menu a {
  color: #ffffff;
  line-height:50px;
  padding-left:12px;
  padding-right:12px;
  padding-top: 10px;
}
ul.nice-menu a:link {}
ul.nice-menu a:visited {}
ul.nice-menu a:hover,
ul.nice-menu a:active,
ul.nice-menu li.active-trail a {
  background: #cbdb2a;
  color: #333333;
  text-decoration: none;
}

/** SECOND LEVEL OVERRIDES **/
/* 2nd level UL */
ul.nice-menu ul {
  background-color: #cbdb2a;
  list-style: none;
  height: auto;
  padding-left: 25px;
  top: 32px;
  left:0;
  border-right: 0;
  border-left: 0;
  margin-right: 0;
  padding: 0;
  width: 500px;
  color: #000000;
  background-color: #cbdb2a;
}
/* 2nd-level LI */
ul.nice-menu ul li {
  width: 249px;
  float: left;
  height: 3em;
  font-size: .75em;
  overflow: hidden;
  background: #cbdb2a;
  color: #333333;
  text-decoration: none;
  border-top: 1px dotted #333333;
  font-family: Verdana, sans-serif;
}
/* 2nd-level ODD (left) LI's */
ul.nice-menu ul li.odd {
  border-right: 1px dotted #333333;
}
/* 2nd-level EVEN (right) LI's */
ul.nice-menu ul li.even {
  border-right: 0;
}
/* 2nd-level FIRST LI */
ul.nice-menu li li.first {
  border-left: 0;
}
/* A's */
ul.nice-menu ul a {
  color: #333333;
  line-height: 1em;
  height: 2em;
  overflow: hidden;
  display: block;
  text-transform: none;
  padding: .5em;
}
ul.nice-menu ul a:link {}
ul.nice-menu ul a:visited {}
ul.nice-menu ul a:hover,
ul.nice-menu ul a:active,
ul.nice-menu ul a.active {
  color: #ffffff;
  background-color: #62b92c;
}
