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


#menu, #menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu {
	background-color: #72CE9B;
}

#menu:before, #menu:after {
	content: "";
	display: table;
}

#menu:after {
	clear: both;
}

#menu {
	zoom:1;
}

#menu li {
	float: left;
	border-right: 1px solid #FFFFFF;
	position: relative;
}

#menu a {
	float: left;
	padding: 7px 0;
	color: #404040;
	text-transform: uppercase;
	text-decoration: none;
}

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

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

#menu ul {
	margin: 20px 0 0 0;
	_margin: 0; /*IE6 only*/
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 40px;
	left: 0;
	z-index: 1;
	background-color: #E5E5E5;
	-moz-box-shadow: 0 -1px rgba(255,255,255,.3);
	-webkit-box-shadow: 0 -1px 0 rgba(255,255,255,.3);
	box-shadow: 0 -1px 0 rgba(255,255,255,.3);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

#menu li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin: 0;
}

#menu ul ul {
	top: 0;
	left: 191px;
	margin: 0 0 0 20px;
	_margin: 0; /*IE6 only*/
}

#menu ul li {
	float: none;
	display: block;
	border: 0;
	_line-height: 0; /*IE6 only*/
}

#menu ul li:last-child {   
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;    
}
#menu ul li.blank {   
	color: #404040;
	padding: 15px 10px 5px 15px;
}


#menu ul a {    
	padding: 2px 15px;
	width: 250px;
	_height: 10px; /*IE6 only*/
	display: block;
	white-space: nowrap;
	float: none;
	text-transform: none;
}

#menu ul a:hover {
	background-color: #009AA6;
	background-image: -moz-linear-gradient(#009AA6,  #25828a);	
	background-image: -webkit-gradient(linear, left top, left bottom, from(#009AA6), to(#25828a));
	background-image: -webkit-linear-gradient(#009AA6, #25828a);
	background-image: -o-linear-gradient(#009AA6, #25828a);
	background-image: -ms-linear-gradient(#009AA6, #25828a);
	background-image: linear-gradient(#009AA6, #25828a);
}

#menu ul li a:hover {
	color:#FFFFFF;
}

#menu ul li:first-child > a {
	padding-top: 10px;
}

#menu ul li:first-child > a:hover {
	background: none;
	color: #404040;
}

#menu ul li:first-child > a:after {
	content: '';
	position: absolute;
	left: 100px;
	top: -6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid;
	color:#FFFFFF;
}

#menu ul ul li:first-child a:after {
	left: -6px;
	top: 50%;
	margin-top: -6px;
	border-left: 0;	
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-right: 6px solid #FFF;
}

#menu ul li:first-child a:hover:after {
}

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

#menu ul li:last-child > a {
}

#menu li a.top {
	color: #FFFFFF;
	font-size:20px;
	width:292px;
		text-align:center;
}

#menu li a:hover.top  {
	color: #E6E6E6;
}

<!--BUG FIX-->

#menu-trigger { /* Hide it initially */
    display: none;
}

@media screen and (max-width: 600px) {

    #menu-wrap {
        position: relative;
    }

    #menu-wrap * {
        box-sizing: border-box;
    }

    #menu-trigger {
        display: block; /* Show it now */
        height: 40px;
        line-height: 40px;
        cursor: pointer;        
        padding: 0 0 0 35px;
        border: 1px solid #222;
        color: #fafafa;
        font-weight: bold;
        background-color: #111;
        /* Multiple backgrounds here, the first is base64 encoded */
        background: url(data:image/png;base64,iVBOR...) no-repeat 10px center, linear-gradient(#444, #111);
        border-radius: 6px;
        box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
    }

    #menu {
        margin: 0; padding: 10px;
        position: absolute;
        top: 40px;
        width: 100%;
        z-index: 1;
        display: none;
        box-shadow: none;       
    }

    #menu:after {
        content: '';
        position: absolute;
        left: 25px;
        top: -8px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #444;
    }   

    #menu ul {
        position: static;
        visibility: visible;
        opacity: 1;
        margin: 0;
        background: none;
        box-shadow: none;               
    }

    #menu ul ul {
        margin: 0 0 0 20px !important;
        box-shadow: none;       
    }

    #menu li {
        position: static;
        display: block;
        float: none;
        border: 0;
        margin: 5px;
        box-shadow: none;           
    }

    #menu ul li{
        margin-left: 20px;
        box-shadow: none;       
    }

    #menu a{
        display: block;
        float: none;
        padding: 0;
        color: #999;
    }

    #menu a:hover{
        color: #fafafa;
    }   

    #menu ul a{
        padding: 0;
        width: auto;        
    }

    #menu ul a:hover{
        background: none;   
    }

    #menu ul li:first-child a:after,
    #menu ul ul li:first-child a:after {
        border: 0;
    }       

}

@media screen and (min-width: 600px) {
    #menu {
        display: block !important;
    }
}   

/* iPad */
.no-transition {
    transition: none;
    opacity: 1;
    visibility: visible;
    display: none;          
}

#menu li:hover > .no-transition {
    display: block;
}