@charset "utf-8";
/* CSS Document */
body {
	background-color: #0CAF05;
}
.menu-item ul {
  background: #fff;
  font-size: 9px;
  line-height: 15px;
  height:0; /*Collapses the menu*/
  list-style-type:none;
  overflow: hidden;
  padding: 0px;
  
   -webkit-transition: height 1.5s ease;
     -moz-transition: height 1.5s ease;
       -o-transition: height 1.5s ease;
      -ms-transition: height 1.5s ease;
          transition: height 1.5s ease;
 }
nav {
  font-family: Helvetica, Arial, "Lucida Grande", sans-serif;
  line-height: 1.5;
  margin: 10px auto; /*for display only*/
  float:left;
  width: 560px;
  -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);
}
.menu-item {margin:0;padding:0; float:left;}
/*.menu-item h4 {float:left; margin-right:10px; display:inline; } */
.menu-item h4 a:hover {
  background: orange; 
}
.menu-item h4 a {display:block; width:100px; text-align:center; text-decoration:none; padding:2px; margin:2px; color:#0CAF05; background-color:#ffda00; border-radius:15px;}
.menu-item:hover ul {
  height: 150px;
  overflow:scroll;
}
.menu-item h4 {display:inline;}
.menu-item ul a {
  margin-left: 5px;
  text-decoration: none;
  font-size: 10px;
  color: #333;
  display: block;
  width: 80px;
}
 
/*li Styles*/
.menu-item li {
  border-bottom: 1px solid #000;
}
 
.menu-item li:hover {
  background: #eee;
}

#title {display:inline; float:left; margin-right:5%;}