ul#nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav ul li ul.lev2 {
  display: none;
  margin: 0;
  left: 0;
  position: absolute;
  width: 100%;
  right: auto;
  left: 0;
  padding: 19px;
  padding-right: 0;
  z-index: 1000;
	background-color: #676767;
  -moz-transition: display 1s linear;
  -webkit-transition: display 1s linear;
  -webkit-box-shadow: 0 0 3px 0 rgba(0,0,0,0.5);
  box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
}

.nav ul li:hover ul.lev2 {
    display: block;
}

.nav ul.lev2 li {
    float: left;
    width: 25%;
    text-align: center;
}

/* GREEN */
.nav ul li.green ul.lev2 {
  background: #48AC35;
}

.nav ul li.green ul li:hover {
  background:#56bd3d;
}

/* GREY */

.nav ul li.grey ul.lev2 {
  background:#3C3C3B;
}

.nav ul li.grey ul li:hover {
  background:#4a4a4a;
}

/* PINK */

.nav ul li.pink ul.lev2 {
  background:#BF4390;
}

.nav ul li.pink ul li:hover {
  background:#da39a2;
}

/* RED */

.nav ul li.red ul.lev2 {
  background:#E73442;
}

.nav ul li.red ul li:hover {
  background:#f72c2c;
}

/* ORANGE */

.nav ul li.orange ul.lev2 {
  background:#F18425;
}

.nav ul li.orange ul li:hover {
  background:#ff8b1b;
}