/* 
 * Styles to approximate the UW nav menu appearance
 * 
 */
#mdrops { 
  background-color: #4B4B4B;
  border-bottom: 1px solid #FFFFFF;
  border-top: 1px solid #FFFFFF;
  box-shadow: 0 1px 4px #9C9C9C;
  height: 50px;
} 
#mdrops ul.nav-menu {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  box-shadow: none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 995px;
}
#mdrops li.nav-item > a { 
  color: #FFFFFF;
  float: left;
  font-size: 1.15em;
  padding: 9px 12px 17px;
}
#mdrops .sub-nav {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.98);
  border-color: #D7A900 -moz-use-text-color -moz-use-text-color;
  border-image: none;
  border-right: 0 none;
  border-style: solid none none;
  border-width: 4px 0 0;
  box-shadow: 1px 1px 5px #808080;
/*  left: 0; */
  margin: -1px 0 0;
/*
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 42px;
  transition: all 0.3s ease 0s;
*/  
}
#mdrops .sub-nav-group {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.01) 96%, #EDEDED 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
  float: left;
  padding: 20px 0 20px 20px;
}
#mdrops .sub-nav-group:last-child {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
}
#mdrops .sub-nav ul li {
  /* background: url("img/bullet-gold.png") no-repeat scroll left 7px rgba(0, 0, 0, 0); */
  list-style: none outside none;
  margin-bottom: 5px;
  margin-left: 0;
  padding-left: 12px;
}
#mdrops .sub-nav a {
  border-bottom: 1px solid #F1F1F1;
  color: #3C3C3C;
  display: block;
  font-size: 105%;
  margin: 0 30px 3px 0;
  min-width: 200px;
  padding: 0 10px 3px 7px;
  line-height: 21px;
}
#mdrops a { 
  text-decoration: none;
}
#mdrops li.nav-item > a:hover, 
#mdrops li.nav-item > a:focus, 
#mdrops li.nav-item > a.open  {  
  color: #f6c100; /* slightly lighter version of #D7A900 */
  background: transparent;
} 
#mdrops .sub-nav a:hover, 
#mdrops .sub-nav a:focus { 
  background-color: #0088cc;
  color: #FFFFFF;   
}
   /* mega menu list */
        .nav-menu {
            display: block;
            position: relative;
            list-style: none;
            margin: 0;
            padding: 0;
            z-index: 15;
        }

        /* a top level navigation item in the mega menu */
        .nav-item {
            list-style: none;
            display: inline-block;
            padding: 0;
            margin: 0;
        }

        /* first descendant link within a top level navigation item */
        .nav-item > a {
            position: relative;
            display: inline-block;
            padding: 0.5em 1em;
            margin: 0 0 -1px 0;
            border: 1px solid transparent;
        }

        /* focus/open states of first descendant link within a top level 
           navigation item */
        .nav-item > a:focus,
        .nav-item > a.open {
            border: 1px solid #dedede;
        }

        /* open state of first descendant link within a top level 
           navigation item */
        .nav-item > a.open {
            /* background-color: #fff; */
            border-bottom: none;
            z-index: 1;
        }

        /* sub-navigation panel */
        .sub-nav {
            position: absolute;
            display: none;
            top: 2.6em;
            margin-top: -1px;
            padding: 0.5em 1em;
            border: 1px solid #dedede;
            /* background-color: #fff; */
        }

        /* sub-navigation panel open state */
        .sub-nav.open {
            display: block;
        }

        /* list of items within sub-navigation panel */
        .sub-nav ul {
            display: inline-block;
            vertical-align: top;
            margin: 0 1em 0 0;
            padding: 0;
        }

        /* list item within sub-navigation panel */
        .sub-nav li {
            display: block;
            list-style-type: none;
            margin: 0;
            padding: 0;
        }