@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/



.dropbtn-m {
	color: #fff;
	font-weight: 700;
	font-size: 24px;
    font-family: sweet-sans-pro, sans-serif;
	padding:2px;
    margin-left: 7%;
    cursor: pointer;
	clear: both;
	background: url(../images/MenuLines_White.png) no-repeat left top;
	background-position: left 0 top 15px;
	width:150px;
    height:40px;
    border: 0;
}

.dropbtn-m:focus {
    outline: dotted thin #464646;
}


.dropbtn-m:hover, .dropbtn-m:active {
    outline: none;
}

.dropdown-m {
    position: relative;
    display: inline-block;
	height:auto;
    border-radius: 10px 10px 10px 10px; text-align: center; margin-left: auto;
    margin-right: auto;	
    }

.dropdown-content-m {
    display: none;
    position: absolute;
    width: 200px;
    text-align: center;
    overflow:visible;
	background: #fff;
    z-index: 1000000;
    margin-top:10px;
    margin-left: auto;
    margin-right: auto;	
	padding-top:15px;
	padding-bottom:15px;
	border: 2px solid #ffc60b;
    border-radius: 0;
}

.dropdown-content-m a {
    color: #021d4c;
    font-family: sweet-sans-pro, sans-serif;
	font-weight: normal;
    font-size: 20px;
    padding: .1em;
    text-decoration: none;
    text-align: center;
    display: block;
    line-height:100%;
}

.dropdown-m a:hover { background-color: #fff7e5; font-weight: 800; color: #021d4c; }

.show {display:block;}


