html,
body {
	font-family: sans-serif;
	margin:0;
	padding:0;
	height:100%;
}

.container {
	min-height:100%;
	position:relative;
}

* {
	box-sizing: border-box;
}

.title {
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 1.6em;
	padding-right: 125px;
	padding-left: 20px;
}

.nav ul {
	list-style: none;
	background-color: #030;
	padding: 0;
	margin: 0;
}
.nav li {
	line-height: 40px;
	height: 40px;
	border-bottom: 1px solid #888;
}

.nav a {
	text-decoration: none;
	text-align: center;
	color: #fff;
	display: block;
}

.nav a:hover {
	background-color: #005f5f;
}

.nav a.active {
	background-color: #fff;
	color: #444;
}

.nav li {
	width: 75px;
	border-bottom: none;
	height: 50px;
	line-height: 50px;
	display: inline-block;
}

.nav .logout {
	padding-right: 20px;
	height: 40px;
}

.search {
	display:inline-block;
	margin-right: 10px;
	margin-top: 15px;
}

.active {
	background-color:#005f5f;
}

.right {
	float: right;
}

.left {
	float: left;
}

h1 {
	font-family: Verdana, Helvetica, sans-serif;
	padding-left: 10px;
}

img {
    width: 100%;
    height: auto;
}

.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

.map {
	width:100%;
	height:600px;
	padding-top: 50px;
}

label {
	font-family: "Andale Mono", monospace;
	margin-left: 10%;
	font-weight: bold;
}

select {
	width: 15%;
	padding: 5px;
	font-size: 16px;
	height: 34px;
}

.viewParkBtn {
	margin-top: 10px;
	margin-left: 17%;
	margin-bottom: 50px;
}

button {
	background-color:#238031;
	display:inline-block;
	cursor:pointer;
	color:#fff;
	font-family:Arial;
	font-size:18px;
	padding:14px 25px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}

button:hover {
	background-color:#5cbf2a;
}

button:active {
	position:relative;
	top:1px;
}

.footer {
	padding: 22px 60px 20px;
	background: #333;
	color: #ccc;
	width: 100%;
	clear: both;
	overflow: hidden;
	display: inline-block;
}

.footer a {
	text-decoration: none;
	color: #ccc;
}

.footer ul {
	float: right;
	padding-right: 20px;
}

.footer li {
	border-bottom: none;
	display: inline-block;
	text-align: center;
}

.footer li + li:before {
    content: " | ";
}

.footer p {
	display: inline-block;
}

.col-1 {
	width: 8.33%;
}

.col-2 {
	width: 16.66%;
}

.col-3 {
	width: 25%;
}

.col-4 {
	width: 33.33%;
}

.col-5 {
	width: 41.66%;
}

.col-6 {
	width: 50%;
}

.col-7 {
	width: 58.33%;
}

.col-8 {
	width: 66.66%;
}

.col-9 {
	width: 75%;
}

.col-10 {
	width: 83.33%;
}

.col-11 {
	width: 91.66%;
}

.col-12 {
	width: 100%;
}

[class*="col-"] {
	float: left;
	padding: 15px;
}

.row:after {
	content: "";
	clear: both;
	display: block;
}

/* Responsive design for when on mobile or small screen */
@media only screen and (max-width: 800px) {
	.col { 
		margin: 1% 0 1% 0%;
	}

	.col-6 { 
		width: 100%; 
	}

	/* Select boxes responsiveness to prevent boxes getting to small when view on small device or mobile */
	select {
		width: 50%;
	}

	/* Navbar responsiveness */
	.title {
		text-align: center;
	}
	.nav { 
		background-color: #030;
		height: auto;
	}
	.nav ul {
		width: 100%;
		display: block;
		height: auto;
	}
	.nav li {
		background-color: #030;
		width: 100%;
		float: left;
		position: relative;
	}
	.nav li a {
		border-bottom: 1px;
		border-right: 1px;
	}
	.nav a {
		background-color: #030;
		text-align: left;
		width: 100%;
		text-indent: 25px;
	}

	/* Prevent the map taking up too much space on mobile or small device */
	.map {
		height: 300px;
	}

	/* Search box responsiveness */
	.search {
		position:absolute;
		left:25%;
	}
}

/* Responsive design for links on footer when on mobile or small screen */
@media screen and (max-width: 490px) {
	.footer li {
		padding-bottom: 15px;
	}
}