@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-family: 'Halant', serif;
	font-size: 22px;
	padding:0 8px;
    border: none;
    cursor: pointer;
	clear: both;
	background: #424ba8;
}

.dropbtn-m:hover, .dropbtn-m:focus {
    outline: dotted thin #F9F5F6;
	background: #424ba8;
    border: none;
}

.dropdown-m {
    position: relative;
    display: inline-block;
	height:auto;
}

.dropdown-content-m {
    display: none;
    position: absolute;
    width: 300px;
    overflow:visible;
    box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-top:8px;
    margin-left:-96px;
    margin-right: auto;	
	border: 3px solid #d2af7a;
	background: #fff url(../images/Menu_ArrowIndicator.png) no-repeat top center;
	padding-top:15px;
}

.dropdown-content-m a {
    color: #006699;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
	border-bottom: solid thin #d2af7a;
	background: #fff
}

.dropdown-m a:hover { background-color: #EDF3FF; color: #19315c; }

.show {display:block;}


