#dropmenu{
  list-style-type: none;
  width: auto;
  height: 28px;
  margin: 0 auto;
  padding: 0 ;
  background: #000;
  /*border-bottom: 5px solid #535d09;*/
  border-radius: 3px 3px 0 0;
  /*float: right;*/

}
/*#dropmenu:after {
  content: "";
  display: table;
  clear: both;
}*/
#dropmenu li{
  position: relative;
  width: 50%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
  z-index: 1000;

}
#dropmenu li a{
  display: block;
  margin: 0;
  padding: 6px 0 3px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;

}


#dropmenu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
	padding: 0;
  border-radius: 0 0 3px 3px;
  background-color: #000;
}
#dropmenu li:last-child ul{
  left: 0;
  width: 100%;

}
#dropmenu li ul li{
  overflow: hidden;
  width: 200%;
  height: 0;
  color: #fff;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
  /*background-color: #000;*/

}
#dropmenu li ul li a{
  padding: 5px 15px;
  /*background: #6e7c0c;*/
  text-align: left;
  font-size: 12px;
  font-weight: normal;
  background-color: #000;
}
#dropmenu li:hover > a{
  /*background: #000;*/
  /*color: #eff7b1;*/
  color: #fff;
}



#dropmenu > li:hover > a{
  border-radius: 3px 3px 0 0;
}
#dropmenu li:hover ul li{
  overflow: visible;
  height: 32px;
  background-color: #000;
  /*border-top: 1px solid #7c8c0e;
  border-bottom: 1px solid #616d0b;*/
}
#dropmenu li:hover ul li:first-child{
  border-top: 0;
}
#dropmenu li:hover ul li:last-child{
  border-bottom: 0;
}
#dropmenu li:hover ul li:last-child a{
  border-radius: 0 0 3px 3px;
}
