
#dropmenu {
  list-style-type: none;
  width: 810px;
  height: 40px;
  margin: 0px auto 0px;
  padding: 0;
  background: #fb680d;
 /* border-bottom: 5px solid #535d09; */
  border-radius: 10px 10px 0 0;
}
#dropmenu li {
  position: relative;
  width: 16.554%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
  border-right: 1px solid #c84700;
  cursor:pointer;
  
}

#dropmenu li a {
  display: block;
  margin: 0;
  padding: 15px 0 11px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  cursor:pointer; 
}
#dropmenu li ul {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  border-radius: 0 0 3px 3px;
}
#dropmenu li ul li{
  overflow: hidden;
  width: 100%;
  height: 0;
  color: #fff;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
  cursor:pointer;

  
}
#dropmenu li ul li a{
  padding: 13px 0 13px 15px;
  background: #ff6b42;
  text-align: left;
  font-size: 14px;
  font-weight: normal;
  white-space: nowrap;
  cursor:pointer;
}
#dropmenu li:hover > a{
  background: #98adc5;
  color: #ffffff;
}

#dropmenu > li:hover:first-child > a{
  border-radius: 10px 0 0 0;
}

#dropmenu > li:hover:last-child > a{
  border-radius: 0 10px 0 0;
}


#dropmenu li:hover ul li{
  overflow: visible;
  height: 38px;
  cursor:pointer;

}
#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;
}
