﻿@charset "UTF-8";

#dropmenu{
  list-style-type: none;
  width: 1000px;
  height: 45px;
  margin: 0px ;
  padding-bottom: 3px;
  background: #ffffff;
  border-radius: 3px 3px 0 0;
}
#dropmenu li{
  position: relative;
  width: 20%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
#dropmenu li a{
  display: block;
  margin: 0;
  padding: 15px 0 17px;
  color: #005638;
  font-size: 110%;
  *font-size:small;
  *font:x-small;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
}
#dropmenu li ul{
  list-style: none;
  position: absolute;
  z-index: 1000;
  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: #007b50;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
#dropmenu li ul li a{
  padding: 13px 15px;
  background: #b3ff66;
  text-align: left;
  font-size: 88%;
  font-weight: normal;
}
#dropmenu li:hover > a{
  background: #a3f5a3;
  color: #007b50;
  font-weight: bold;
}

#dropmenu > li:hover > a{
  border-radius: 3px 3px 0 0;
}
#dropmenu li:hover ul li{
  overflow: hidden;
  height: 38px;
}
#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;
}
@media all and (-ms-high-contrast: none) {
#dropmenu li ul li a{
  font-size: 88%;
}
}