@charset "utf-8";
/* CSS Document */

#menu{
	width: 1005px;
	margin: 0;
	padding: 5px 0px 0px 75px;
	list-style: none;
	background: #8ec73f;
}

#menu li{
	float: left;
	padding: 0 0 5px 0;
	position: relative;
}

#menu a{
	float: left;
	height: 25px;
	padding: 5px 44px 0px 44px;
	color: #FFF;
	font-weight:900;
	text-transform: uppercase;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	text-decoration: none;
	text-shadow: 0 0px 0 #000;
	}

#menu li:hover > a{
	color: #000;
}

*html #menu li a:hover{ /* IE6 */
	color: #000;
}

#menu li:hover > ul{
	display: block;
}

/* Sub-menu */

#menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 35px;
    left: 0px;
    z-index: 99999;
    background:#8ec73f;
    -moz-border-radius: 15px;
    border-radius: 15px;
	-webkit-border-radius: 15px;
}

#menu ul li{
    float: none;
    margin: 0;
    padding: 0px 10px;
    display: block;
    
}


#menu ul li:last-child{
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#menu ul a{
    padding: 5px 10px; 
    height: auto;
    line-height: 1;
	display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
}



*html #menu ul a{ /* IE6 */
	height: 10px;
	width: 150px;
}

*:first-child+html #menu ul a{ /* IE7 */
	height: 10px;
	width: 150px;
}

#menu ul a:hover{
    background: #8ec73f;
	}

#menu ul li:first-child a{
    -moz-border-radius: 15px 15px 0 0;
    -webkit-border-radius: 15px 15px 0 0;
    border-radius: 15px 15px 0 0;
}

#menu ul li:first-child a:after{
    content: '';
    position: absolute;
    left: 105px;
    top: -8px;
    width: 0;
    height: 0;
   }

#menu ul li:first-child a:hover:after{
    border-bottom-color: #000;
}

#menu ul li:last-child a{
    -moz-border-radius: 0 0 15px 15px;
    -webkit-border-radius: 0 0 15px 15px;
    border-radius: 0 0 15px 15px;
}

/* Clear floated elements */
#menu:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */