@charset "iso-8859-15";
* {
  margin: 0px;
  padding: 0px;
}
 
body {
  background: #cccccc;
}
 
nav {
  font-family: Verdana;
  line-height: 1;
  margin: 50px auto; /*for display only*/
  width: 150px;
  -webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
     -moz-box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
          box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
 
/*First Item Styles*/
.alpha p {
    font-size: 12px;
    padding: 8px 12px;
    color: #aaa;
}

.menu-item {
  background: #ccc;
  width: 150px; 
}

.menu-item h4 {
	border-bottom: 1px solid rgba(0,0,0,0.3);
	border-top: 1px solid rgba(255,255,255,0.2);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	padding: 7px 12px;
	background-color: #707070; /* Old browsers */ /* background: -moz-linear-gradient(top, #183949 0%, #193D4D 44%, #132339 100%); /* FF3.6+ */
 /* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#183949), color-stop(44%,#193D4D), color-stop(100%,#6d0019)); /* Chrome,Safari4+ */
  /*background: -webkit-linear-gradient(top, #183949 0%,#193D4D 44%,#132339 100%); /* Chrome10+,Safari5.1+ */
  /*background: -o-linear-gradient(top, #183949 0%,#193D4D 44%,#132339 100%); /* Opera 11.10+ */
  /*background: -ms-linear-gradient(top, #183949 0%,#193D4D 44%,#132339 100%); /* IE10+ */
  /*background: linear-gradient(top, #183949 0%,#193D4D 44%,#132339 100%); /* W3C */
  /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#183949', endColorstr='#132339',GradientType=0 ); /* IE6-9 */
}

.menu-item h4:hover {
	background-color: #8B8D8E; /* Old browsers *//*  background: -moz-linear-gradient(top,   #286177 0%, #132339 100%); /* FF3.6+ */
/*  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#183949), color-stop(100%,#1323399)); /* Chrome,Safari4+ */
/*  background: -webkit-linear-gradient(top,  #286177 0%,#132339 100%); /* Chrome10+,Safari5.1+ */
/*  background: -o-linear-gradient(top, #286177 0%,#132339 100%); /* Opera 11.10+ */
/*  background: -ms-linear-gradient(top,  #286177 0%,#132339 100%); /* IE10+ */
/*  background: linear-gradient(top,  #286177 0%,#132339 100%); /* W3C */
/*  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#286177 ', endColorstr='#132339',GradientType=0 ); /* IE6-9 */
}

.menu-item h4 a {
  color: white;
  display: block;
  text-decoration: none;
  width: 150px;
}

/*ul Styles*/
.menu-item ul {
  background: #fff;
  font-size: 13px;
  line-height: 30px;
  height: 0px; /*Collapses the menu*/
  list-style-type: none;
  overflow: hidden;
  padding: 0px;
  
    /*Animation*/
  -webkit-transition: height 1s ease;
     -moz-transition: height 1s ease;
       -o-transition: height 1s ease;
      -ms-transition: height 1s ease;
          transition: height 1s ease;
}

.menu-item:hover ul {
  height: 62px;
}

.menu-item ul a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  display: block;
  width: 150px;
}

/*li Styles*/
.menu-item li {
  border-bottom: 1px solid #eee;
}
 
.menu-item li:hover {
  background: #eee;
}
