#mobileBanner {
	display: block;
	}

/*Do general nav bar setup*/
nav {
	display: block;
	font-size: 20px;
	overflow: hidden;
	}

nav li {
	display: block;
	margin: 5px;
	padding: 5px;
	}

#menuInd {
	background: initial;
	background-image: linear-gradient(to right, transparent 50%, #222 50%),
		linear-gradient(to bottom, #fff 20%, transparent 20%, transparent 40%, white 40%, white 60%, transparent 60%, transparent 80%, white 80%);
	color: white;
	cursor: pointer;
	display: block;
	height: 50px;
	font-size: 17px;
	font-family: sawasdee, serif;
	line-height: 50px;
	margin: 10px 0;
	margin-left: 10px;
	text-align: right;
	width: 100px;
	}

.JS nav.hide li {
	display: none;
	}

li.cur A {
	color: white;
	}
/***End nav bar setup*/

/*Setup JS navbar*/
@media only screen and (min-height: 450px) {
	nav.fixed {
		position: fixed;
		}

	.JS nav.fixed.hide li.cur {
		display: inline-block;
		}
	
	nav.fixed.show #menuInd {
		float: initial;
		}
	
	nav.fixed.hide #menuInd {
		float: left;
		}
	
	nav.fixed.hide {
		line-height: 60px;
		}

	#makeSpace {
		display: block;
		}
	}
/***End JS navbar setup*/

/*get our sections figured out*/
section {
	box-shadow: 5px 5px 5px #bbf;
	margin: 20px auto;
	padding: 10px;
	text-align: center;
	}
/***End figure out sections*/


#location p {
	text-indent: 0;
	}
