#menuBar{
  margin-bottom: 0px;
  line-height: 1em;
  background-color: #535353;
  list-style-type: none;
  width: 100%;
  padding: 0;
}

#dropmenu {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0px;
  line-height: 1em;
  list-style-type: none;
  width: 100%;
  padding: 0;
}
#dropmenu li {
  position: relative;
  z-index:2;
  width: 110px;
  float: left; 
  margin: 0;
  padding: 0;
  text-align: center;
}

#dropmenu li a {
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 0;
  padding-right: 0;
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  line-height: 1em;
  text-decoration: none;
}

#dropmenu li a:hover {
}

#dropmenu li ul {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}

#dropmenu li ul li{
  width: 110px;
  overflow: hidden;
  height: 0;
  color: #ffffff;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;    
}

#dropmenu li ul li a{
  color: white;
  display: block;
  padding-left: 10px;
  padding-right: 3px;
  background: black;
  text-align: left;
  font-size: 12px;
  font-weight: normal;
}

#dropmenu li:hover > a{
  background: #024e8a;
  color: #e9f3ff;
}

#dropmenu > li:hover > a{
	display: block;
}

#dropmenu li:hover ul li{
  height: auto;
  overflow: visible;
}

#dropmenu li:hover ul li:first-child{ 
  border-top-color: white;
}
#dropmenu li:hover ul li:last-child{ 
  border-bottom: 0;
}

#dropmenu li:hover ul li:last-child a{ 
}

