#ddmenu {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 5px;
  border-radius: 0px;
  cursor: pointer;
  outline: none;
}

#ddmenu li { 
  display: block; 
  position: relative; 
  float: left; 
  font-size: 12px; 

}

#ddmenu li a {
  font-family: OpenSansRegular;
  display: block;
  float: left;
  padding: 0 2px;
  text-decoration: none;

}

#ddmenu ul {
  position: absolute;
  top: 33px;
  width: 170px;
  background: #fff;
  display: none;
  margin: 0;
  padding: 4px 9px 4px 5px;
  list-style: none;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#ddmenu ul:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  left: 8px;
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: #fff transparent; 
}

#ddmenu ul:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  left: 4px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1) transparent;  
}

#ddmenu ul li { 
  display: block; 
  width: 100%; 
  font-size: 0.9em; 
  text-shadow: 1px 1px 0 #fff;
}

#ddmenu ul li a {
  font-family: OpenSansRegular;
  display: block;
  width: 100%;
  padding: 5px 3px;
  line-height: 1.4em;
  text-decoration:underline;

}
#ddmenu ul li a:hover {
  background: #f4f4f4;
  color: #005ea1;
  text-decoration:none;
}