﻿* {
  margin: 0px;
  padding: 1px;
}

body {
  background: transparent;
}

nav {
  font-family: Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: -1px auto;
  width: 120px;
  -webkit-box-shadow: 0px 0px 0px #fff;
     -moz-box-shadow: 0px 0px 0px #fff;
          box-shadow: 0px 0px 0px #fff;
}

.menu-item {
  background: transparent;
  width: 120px; 
}

/*Menu Header Styles*/
.menu-item h4 {
  border-bottom: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  color: #fff;
  font-size: 14px;
  font-weight: 119;
  padding: 10px 15px;
  
  /*Gradient*/
  background: transparent; /* Old browsers */
}

.menu-item h4:hover {  
  background: transparent; /* Old browsers */
}

.menu-item h4 a {
  color: white;
  display: block;
  margin-left: 0px;
  text-decoration: none;
  width: 120px;
}

/*ul Styles*/
.menu-item ul {
  margin-left: 0px;
  background: transparent;
  font-size: 14px;
  line-height: 40px;
  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: 45px;
  
}

.menu-item ul a {
  margin-left: 0px;
  text-decoration: none;
  color: #fff;
  display: block;
  width: 120px;
}

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

.menu-item li:hover {
  background: transparent;
}

/*First Item Styles*/
.alpha p {
	padding: 1px 10px;
	color: #fff;
}

.alpha p a {
	color: #fff;
	font-style: italic
}

.alpha p a:hover {
	color: #fff;
}