@charset "utf-8";
/* CSS Document */


.menu-item {
  background: #fff;
  width: 190px;
}

/*Menu Header Styles*/
.menu-item h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 7px 12px;
  background: #af1518;
}
.menu-item h4 a {
  color: white;
  display: block;
  text-decoration: none;
  width: 190px;
}
/*Menu Header Styles*/
.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: 15px;
  font-weight: 500;
  padding: 7px 12px;
   
  /*Gradient*/
  background: #af1518; /* Old browsers */
  background: -moz-linear-gradient(top, #ed2024 0%, #ed2024 44%, #720D14 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ed2024), color-stop(44%,#ed2024), color-stop(100%,#720D14)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #af1518 0%,#981215 44%,#981215 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #af1518 0%,#981215 44%,#981215 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #af1518 0%,#981215 44%,#981215 100%); /* IE10+ */
  background: linear-gradient(top, #af1518 0%,#981215 44%,#981215 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aaf1518', endColorstr='#981215',GradientType=0 ); /* IE6-9 */
}

.menu-item h4:hover { 
  background: #cc002c; /* Old browsers */
  background: -moz-linear-gradient(top,  #cc002c 0%, #981215 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cc002c), color-stop(100%,#981215)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #cc002c 0%,#981215 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #cc002c 0%,#981215 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #cc002c 0%,#981215 100%); /* IE10+ */
  background: linear-gradient(top,  #cc002c 0%,#981215 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc002c', endColorstr='#981215',GradientType=0 ); /* IE6-9 */
}
/*First Item Styles*/
.alpha p {
    font-size: 15px;
    padding: 8px 12px;
    color: #aaa;
}
/*ul Styles*/
.menu-item ul {
  background: #fff;
  font-size: 15px;
  line-height: 30px;
  list-style-type: none;
  overflow: hidden;
  padding: 0px;
}
 
.menu-item ul a {
  margin-left: 20px;
  text-decoration: none;
  color: #aaa;
  display: block;
  width: 190px;
}
 
/*li Styles*/
.menu-item li {
  border-bottom: 1px solid #eee;
}
 
.menu-item li:hover {
  background: #eee;
}
/*ul Styles*/
.menu-item ul {
  background: #fff;
  font-size: 15px;
  line-height: 30px;
  height: 0px; /*Collapses the menu*/
  list-style-type: none;
  overflow: hidden;
  padding: 0px;
}
/*ul Styles*/
.menu-item ul {
  background: #fff;
  font-size: 15px;
  line-height: 30px;
  height: 0px;
  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: 190px;
}