* {
	box-sizing: border-box;
}

body {
	background: -webkit-linear-gradient(#f6f7c5,#99b3e6) no-repeat center center;
	background-size: cover;
	min-height: 1080px;
}

nav {
  		height: 40px;
		  width: 100%;
		  background: #2a4775;
		  font-size: 11pt;
		  font-family: 'PT Sans', Arial, sans-serif;
		  font-weight: bold;
		  position: relative;
		  border-bottom: 2px solid #283744;
		}
		nav ul {
		  padding: 0;
		  margin: 0 auto;
		  width: 1920px;
		  text-align: center;
		  height: 40px;
		}
		nav li {
		  display: inline;
		  float: left;
		}
		.clearfix:before,
		.clearfix:after {
		    content: " ";
		    display: table;
		}
		.clearfix:after {
		    clear: both;
		}
		.clearfix {
		    *zoom: 1;
		}
		nav a {
		  color: #fff;
		  display: inline-block;
		  width: 180px;
		  text-align: center;
		  text-decoration: none;
		  line-height: 40px;
		  text-shadow: 1px 1px 0px #283744;
		}
		nav li a {
		  border-right: 1px solid #576979;
		  box-sizing:border-box;
		  -moz-box-sizing:border-box;
		  -webkit-box-sizing:border-box;
		}

		nav#listitemhome {
		  float: center;
		}
		nav#listitemloginout {
		  float: right;
		}
		nav a:hover, nav a:active {
  		background-color: #9dadc6;
		}
		nav a#pull {
		  display: none;
		}
		@media screen and (max-width: 1920px) {
		  nav { 
		      height: auto;
		  }
	    nav ul {
	      width: 100%;
	      display: block;
	      height: auto;
	    }
	    nav li {
	      width: 10%;
	      float: left;
	      position: relative;
	    }
	    nav li a {
	    border-bottom: 1px solid #576979;
	    border-right: 1px solid #576979;
	  	}
	    nav a {
	      text-align: left;
	      width: 100%;
	      text-indent: 25px;
	    }
	    .googlemaps {
	    	width: 1000px;
	    	height: 500px;
	    }
		}
		@media screen and (max-width: 1800px) {
		  nav { 
		      height: auto;
		  }
	    nav ul {
	      width: 100%;
	      display: block;
	      height: auto;
	    }
	    nav li {
	      width: 16.66%;
	      float: left;
	      position: relative;
	    }
	    nav li a {
	    border-bottom: 1px solid #576979;
	    border-right: 1px solid #576979;
	  	}
	    nav a {
	      text-align: left;
	      width: 100%;
	      text-indent: 25px;
	    }
	    .googlemaps {
	    	width: 1000px;
	    	height: 500px;
	    }
		}
		@media screen and (max-width: 1080px) {
		  nav { 
		      height: auto;
		  }
	    nav ul {
	      width: 100%;
	      display: block;
	      height: auto;
	    }
	    nav li {
	      width: 50%;
	      float: left;
	      position: relative;
	    }
	    nav li a {
	    border-bottom: 1px solid #576979;
	    border-right: 1px solid #576979;
	  	}
	    nav a {
	      text-align: left;
	      width: 100%;
	      text-indent: 25px;
	    }
	    .googlemaps {
	    	width: 100%;
	    	height: 500px;
	    }
		}
		@media only screen and (max-width : 750px) {
		  nav {
		    border-bottom: 0;
		  }
		  nav ul {
		    display: none;
		    height: auto;
		  }
		  nav a#pull {
		    display: block;
		    background-color: #2a4775;
		    width: 100%;
		    position: relative;
		  }
		  nav a#pull:after {
		    content:"";
		    background: url('nav-icon.png') no-repeat;
		    width: 30px;
		    height: 30px;
		    display: inline-block;
		    position: absolute;
		    right: 15px;
		    top: 10px;
		  }
		  .googlemaps {
	    	width: 100%;
	    	height: 500px;
	    }
		}
		@media only screen and (max-width : 320px) {
		  nav li {
		    display: block;
		    float: none;
		    width: 100%;
		  }
		  nav li a {
		    border-bottom: 1px solid #576979;
		  }
		}

.login {
  width: 300px;
  margin: 16px auto;
  font-size: 16px;
}
/* Reset top and bottom margins from certain elements */
.login-header,
.login p {
  margin-top: 0;
  margin-bottom: 0;
}

/* The triangle form is achieved by a CSS hack */
.login-triangle {
  width: 0;
  margin-right: auto;
  margin-left: auto;
  border: 12px solid transparent;
  border-bottom-color: #2a4775;
}

.login-header {
  background: #2a4775;
  padding: 20px;
  font-size: 1.4em;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.login-container {
  background: #9fb1ce;
  padding: 12px;
}

/* Every row inside .login-container is defined with p tags */
.login p {
  padding: 12px;
}

.login input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  padding: 16px;
  outline: 0;
  font-family: inherit;
  font-size: 0.95em;
}

.login input[type="text"],
.login input[type="password"] {
  background: #fff;
  border-color: #bbb;
  color: #555;
}

/* Text fields' focus effect */
.login input[type="text"]:focus,
.login input[type="password"]:focus {
  border-color: #888;
}

.login input[type="submit"] {
  background: #2a4775;
  border-color: transparent;
  color: #fff;
  cursor: pointer;
}

.login input[type="submit"]:hover {
  background: #1b2d4b;
}

/* Buttons' focus effect */
.login input[type="submit"]:focus {
  border-color: #05a;
}

h2 {
	text-align: center;
	text-transform: uppercase;
}
h3 {
	text-align: center;
}
.spreuk {
	font-family: Lobster;
	text-align: center;
}
img {
	display: block;
	margin: auto;
	max-width: 100%;
}
h4 {
	text-align: center;
}
div {
	text-align: center;
}
table {
	max-width: 100%;
	font-size: 0.9em;
	margin: 0 auto;
	border: 1px solid black;
	border-collapse: collapse;
}
th {
  	border: 1px solid black;
  	background-color: darkgrey;
}
td {
  	border: 1px solid black;
  	background-color: lightgrey;
  	text-align: center;
}
@media screen and (max-width: 400px) {
	.HideColumn {
			display:none;
    	width:0;
    	height:0;
    	opacity:0;
    	visibility: collapse;
	}
	table {
		display: inline-block;
		overflow-x: auto;
	}
}
label {
	display: block;
}
label.messagelabel {
	display: inline;
	color: red;
}
input {
	margin-bottom: 10px;
}
select {
	margin-bottom: 10px;
}
.formdiv {
	width: 100%;
	margin: 0 auto;
}
.widediv {
	width: 100%;
	margin: 10px auto 0px auto;
	padding-top: 10px;
	border-top: 1px solid #000066;
	
}
.calendardiv {
	width: 100%;
}
.speciallabel {
	display: inline;
}
.specialselect {
	display: inline;
	margin-bottom: 0px;
	margin-right: 10px;
}
@media screen and (min-width: 600px) {
	.widediv form :first-child, .widediv form :nth-child(5) {
		margin-left: 100px;
	}
}
.widediv form {
	border-bottom: 1px solid #000066;
	margin-bottom: 10px;
}
.bierinfo {
	width: 100%;
	margin: 10px auto 10px auto;
	border-top: 1px solid #000066;
	border-bottom: 1px solid #000066;
	padding-top: 10px;
	padding-bottom: 10px;
}
.googlemaps {
	margin: 0 auto;
}