/* Root = Horizontal, Secondary = Vertical - Menu modified from alistapart suckerfish dropdowns and qrayg.com */
ul#navmenu-h {
  margin: 0 auto; margin-left: 130px; /*margin distance from the left / right edge of the nav bar*/
  border: 0 none;
  padding: 0;
  width: 775px; /*For KHTML*/
  list-style: none;
  height: 44px;
}

ul#navmenu-h li {
  margin: 0;
  border: 0 none;
  padding: 0;
  float: left; /*For Gecko*/
  display: inline;
  list-style: none;
  position: relative;
  height: 31px;
  z-index:10;
}

ul#navmenu-h ul {
  margin: 0;
  border: 0 none;
  padding: 0;
  width: 160px;
  list-style: none;
  display: none;
  position: absolute;
  top: 44px; /*distance from main bar to submenu */
  left: 0;
   z-index:10;
}

ul#navmenu-h ul:after /*From IE 7 lack of compliance*/{
  clear: both;
  display: block;
  font: 1px/0px serif;
  content: ".";
  height: 0;
  visibility: hidden;
}

ul#navmenu-h ul li {
  width: 175px;
  float: left; /*For IE 7 lack of compliance*/
  display: block !important;
  display: inline; /*For IE*/
}

/* Root Menu */
ul#navmenu-h a {
  /*border: 1px solid #FFF;
  border-right-color: #CCC;
  border-bottom-color: #CCC; */
  padding: 0 22px; /*this is the horizontal distance from text to button sides*/
  float: none !important; /*For Opera*/
  float: left; /*For IE*/
  display: block;
  /* background: #EEE; */ 
  color: #fff;
  font: 21px/44px Libertine, Georgia, Garamond, "Times New Roman", Times, serif;
  font-variant:small-caps;
  text-decoration: none;
  height: auto !important;
  height: 1%; /*For IE*/
}

/* Root Menu Hover Persistence */
ul#navmenu-h a:hover,
ul#navmenu-h li:hover a,
ul#navmenu-h li.iehover a {
  background-image: url(http://smick.net/images/new/nav-bg-hover.png); background-repeat:no-repeat;
  color: #fff;
}

/* 2nd Menu */
ul#navmenu-h li:hover li a,
ul#navmenu-h li.iehover li a {
  float: none;
  background: #0d2435;
  color: #fff;
  font: 13px/32px "Helvetica Neue", Arial, sans-serif;
}

/* 2nd Menu Hover Persistence */
ul#navmenu-h li:hover li a:hover,
ul#navmenu-h li:hover li:hover a,
ul#navmenu-h li.iehover li a:hover,
ul#navmenu-h li.iehover li.iehover a {
  background: #081823; /*background color hover of submenu*/
  color: #fff;
  font: 13px/32px "Helvetica Neue", Arial, sans-serif;
}

/* 3rd Menu */
ul#navmenu-h li:hover li:hover li a,
ul#navmenu-h li.iehover li.iehover li a {
  background: #BFBE9B;
  color: #fff;
}

/* 3rd Menu Hover Persistence */
ul#navmenu-h li:hover li:hover li a:hover,
ul#navmenu-h li:hover li:hover li:hover a,
ul#navmenu-h li.iehover li.iehover li a:hover,
ul#navmenu-h li.iehover li.iehover li.iehover a {
  background: #8F8E74;
  color: #fff;
  font: 13px/32px Georgia, sans-serif;
}

/* 4th Menu */
ul#navmenu-h li:hover li:hover li:hover li a,
ul#navmenu-h li.iehover li.iehover li.iehover li a {
  background: #BFBE9B;
  color: #fff;
  font: 13px/32px Georgia, sans-serif;
}

/* 4th Menu Hover */
ul#navmenu-h li:hover li:hover li:hover li a:hover,
ul#navmenu-h li.iehover li.iehover li.iehover li a:hover {
  background: #BFBE9B;
  color: #fff;
  font: 13px/32px Georgia, sans-serif;
}

ul#navmenu-h ul ul,
ul#navmenu-h ul ul ul {
  display: none;
  position: absolute;
  top: 0;
  left: 175px;
}

/* Do Not Move - Must Come Before display:block for Gecko */
ul#navmenu-h li:hover ul ul,
ul#navmenu-h li:hover ul ul ul,
ul#navmenu-h li.iehover ul ul,
ul#navmenu-h li.iehover ul ul ul {
  display: none;
}

ul#navmenu-h li:hover ul,
ul#navmenu-h ul li:hover ul,
ul#navmenu-h ul ul li:hover ul,
ul#navmenu-h li.iehover ul,
ul#navmenu-h ul li.iehover ul,
ul#navmenu-h ul ul li.iehover ul {
  display: block;
}

