.ddmenu {
  width: 100%;
  position: relative;
  z-index: 100;
}

.ddmenu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ddmenu ul li {
  float: left;
  position: relative;
}

.ddmenu ul li a,
.ddmenu ul li a:visited {
  display: block;
  text-decoration: none;
  font-size: 12px;
  width: 182px;
  height: 20px;
  text-align: center;
  color: #fff;
  border: none;               /* removed border */
  background: inherit;         /* same color as parent */
  line-height: 20px;
  overflow: hidden;
}

.ddmenu ul li ul {
  display: none;
}

/* Hover menus */
.ddmenu ul li:hover a {
  color: #fff;
  background-color: inherit;   /* same as parent box */
}

.ddmenu ul li:hover ul {
  display: block;
  position: absolute;
  top: 31px;
  left: 0;
  width: 182px;
}

.ddmenu ul li:hover ul li a.hides {
  background: inherit;
  color: #fff;
}

.ddmenu ul li:hover ul li:hover a.hides {
  background: inherit;
  color: #000;
}

.ddmenu ul li:hover ul li ul {
  display: none;
}

.ddmenu ul li:hover ul li a {
  display: block;
  background: inherit;
  color: #fff;
}

.ddmenu ul li:hover ul li a:hover {
  color: #fff;
  background-color: inherit;
}

.ddmenu ul li:hover ul li:hover ul {
  display: block;
  position: absolute;
  left: 182px;
  top: 0;
}

.ddmenu ul li:hover ul li:hover ul.left {
  left: -182px;
}

/* Link styling */
.ddmenu ul li a {
  border: none;               /* removed border */
  background-color: inherit;  /* inherit box color */
  border-radius: 5px;
  text-shadow: none;          /* removed black shadow */
  font-weight: normal;
  margin: 0px 10px;
  padding: 11px 6px;
  color: #FFFFFF;
  font-family: Verdana, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline;
}

/* Sidebar links */
.sidebar ul {
  list-style: none;
  margin-bottom: 15px;
}

.sidebar ul li {
  padding-bottom: 2px;
}

.sidebar a,
.sidebar a:visited {
  border: none;               /* removed border */
  background-color: inherit;  /* match parent */
  text-shadow: none;          /* removed glow */
  font-weight: normal;
  margin: 0px 1px;
  padding: 2px 2px;
  color: #FFFFFF;
  font-family: Arial, Verdana, sans-serif;
  font-size: 15px;
  width: 90%;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.sidebar a:hover,
.sidebar a:active,
.sidebar a:focus {
  border: none;               /* removed border */
  background-color: inherit;  /* match parent */
  text-shadow: none;          /* removed glow */
  font-weight: normal;
  margin: 0px 1px;
  padding: 2px 2px;
  color: #FFFFFF;
  font-family: Arial, Verdana, sans-serif;
  font-size: 15px;
  width: 90%;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
