
/*
  I'm using the .layer-is-topnav class in these calls to make sure
  that these styles are not applied to the mobile menu
*/

.layer-is-topnav ul.topnav li,
.layer-is-topnav ul.topnav a {
    display: inline-block;
    vertical-align: top;

    /*Dirty IE Hack*/
    zoom: 1;
    *display: inline;
}

.layer-is-topnav ul.topnav a {
    height: 100%;
    width: 100%;
    line-height: 48px;
    margin: 0;
	text-decoration: none;
}

.layer-is-topnav ul.topnav a:hover {
color: white;
}

.layer-is-topnav ul.topnav li {
    position: relative;
    padding-top: 0;
}

.layer-is-topnav ul.topnav li:hover {
background-color: #37C36A;
border-radius: 3px 3px 0 0;
}

.layer-is-topnav ul.topnav ul li:hover {
    background-color: #37C36A;
}

.layer-is-topnav ul.topnav ul {
    position: absolute;
    width: 250px;
    background-color: #37C36A;
    margin: 0;
    z-index: 1000;
    overflow: hidden;

    /* close all dropdowns */
    max-height: 0;
}

/* on hover the parent li, open the dropdown */
.layer-is-topnav ul.topnav > li:hover ul {
    max-height: 1000px;

    /* animate the dropdown, remove for no animation */
    -webkit-transition: max-height .5s ease-in-out;
       -moz-transition: max-height .5s ease-in-out;
         -o-transition: max-height .5s ease-in-out;
            transition: max-height .5s ease-in-out;
			
	border-bottom-right-radius:3px;
	border-bottom-left-radius:3px;	
	padding-top:15px;
	padding-left:0;
			
			
}

.layer-is-topnav ul.topnav ul > li {
    width: 100%;
    margin: 0;
	padding: 7px 0;
}

.layer-is-topnav ul.topnav ul li:last-child {

border-bottom: 0;
}




.layer-is-topnav ul.topnav ul > li a {
    line-height: 30px;
    font-size: smaller;
	color:#FFFFFF;
}


/*
  correct small querquinesses with the mobile menu
*/

nav.mean-nav li {
    padding-top: 0;
}

.mean-bar {
    margin-bottom: 0;
}
