@charset "UTF-8";
/* CSS Document */
#swipeNav{
	width: 300px;
	color: #000;
	background: #fff; /* Old browsers */
	-webkit-box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,0.1);
	box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,0.1);
	-webkit-overflow-scrolling: touch;
}

#swipeNav ul{
	margin: 100px auto 0 auto;
	width: 90%;
}
@media only screen and (max-width: 668px) {
	#swipeNav ul{
		margin: 25px auto 0 auto;
		width: 90%;
	}
}
#swipeNav li{
	list-style-position: inside;
	list-style-type: none;
	width: 100%;
	display: block;
	padding: 15px 0;
}
#swipeNav a{
	width: 100%;
	color: #000;
	text-decoration: none;
	-moz-transition: background 0.7s linear;
	-webkit-transition: background 0.7s linear;
	transition: background 0.7s linear;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 22px !important;
	border-bottom: 3px solid transparent;
}
#swipeNav a:hover{

	border-bottom: 3px solid #f9af18;
}

#swipeNav a:focus{
	border-bottom: 3px solid #f9af18;
}

#menuBtn{
	cursor: pointer;
	float: left;
	margin-top: 20px;
	margin-left: 20px;
}


#swipeNav img{
	width: 200px;
	margin-left: 40px;
	margin-top: 70px;
}