/* Mobile Menu */
@media only screen and (min-width: 1px) and (max-width: 599px) {

.mobile_logo { width: 80px; height: 40px; margin-top: 10px !important; display: inline-block }
.mobile_logo2 { width: auto; height: 40px; margin-top: 0; display: inline-block }

.nav_mobile * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .25s ease-in-out !important;
	-moz-transition: all .25s ease-in-out !important;
	-o-transition: all .25s ease-in-out !important;
	transition: all .25s ease-in-out !important;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: none;
}

.nav_mobile { display: block; z-index: 3000; position: relative }

/* Makes sure that everything is 100% height */

html,body {
}

/* gets the actual input out of the way; we're going to style the label instead */

#drawer-toggle {
	position: absolute;
	opacity: 0;
}

#drawer-toggle-label {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	left: 0px;
	height:50px;
	width: 50px;
	display: block;
	position: fixed;
	background: rgba(255,255,255,.0);
	z-index: 1001;
}

/* adds our "hamburger" menu icon */

#drawer-toggle-label:before {
	content: '';
	display: block;
	position: absolute;
	height: 3px;
	width: 24px;
	background: #aaa;
	left: 13px;
	top: 24px;
	box-shadow: 0 6px 0 #aaa, 0 12px 0 #aaa;
}

header {
	width: 100%;
	position: fixed;
	left: 0px;
	background: #fff;
	height: 61px;
	padding: 10px 10px 10px 50px;
	font-size: 30px;
	line-height: 30px;
	text-align: center;
	z-index: 1000;
	border-bottom: 1px solid #ccc;
}


/* drawer menu pane - note the 0px width */

#drawer {
	position: fixed;
	top: 0;
	left:-300px;
	height: 100%;
	width: 300px;
	background: #ce0000;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 20px;
	-webkit-overflow-scrolling: touch;
	z-index: 999;
}


/* checked styles (menu open state) */

#drawer-toggle:checked ~ #drawer-toggle-label {
	height: 100%;
	width: calc(100% - 300px);
	background: rgba(255,255,255,.8);
}

#drawer-toggle:checked ~ #drawer {
    left:0;
}

#drawer-toggle:checked ~ #drawer-toggle-label, #drawer-toggle:checked ~ header {
	left: 300px;
}

#drawer-toggle:checked ~ #page-content {
	margin-left: 300px;
}

/* Menu item styles */
#drawer ul {
    list-style-type:none;
}

#drawer ul a {
    display:block;
	font-family: 'Gotham SSm A', 'Gotham SSm B';
	font-size: 1.2em;
    padding:5px;
    font-weight: 700;
    color:#ffffff;
    text-decoration:none;
}

#drawer ul a:hover { color: #fff }


#drawer ul ul li a {
	font-family: 'Gotham SSm A', 'Gotham SSm B' !important;
	font-weight: 300 !important;
	padding-left: 25px !important;
	display: block
}


#drawer ul ul li:before {
	content: "-";
    display:block;
    float: left;
	font-family: 'Gotham SSm A', 'Gotham SSm B';
    font-weight: 300;
    padding: 5px 0 5px 15px !important;
    color:#ffffff;
    text-decoration:none;
}


#drawer ul li ul { display: none; opacity: 0 }
#drawer ul li ul:target { display: block; opacity: 1 }

.mobile_social a {
	overflow: auto;
	display: block;
	float: left
}

.mobile_social img {
	display: block;
	margin-right: 1em;
	height: 25px
}


/* Responsive MQ */

@media all and (max-width:350px) {

	#drawer-toggle:checked ~ #drawer-toggle-label {
		height: 100%;
		width: 50px;
	}
	
	#drawer-toggle:checked ~ #drawer-toggle-label, #drawer-toggle:checked ~ header {
		left: calc(100% - 50px);
	}
	
	#drawer {
	    width:calc(100% - 50px);
	    left: -100%;
	}
	
	#drawer-toggle:checked ~ #page-content {
		margin-left: calc(100% - 50px);
	}

}

}