html, body { 
	height: auto; 
	width: 100%; 
	margin: 0;
	padding: 0;
}

div { 
	height: 100%; 
	width: 100%; 
}

#bod {	
	/* Location of the image */
	background-image: url(bg.jpg);

	/* Image is centered vertically and horizontally at all times */
	background-position: center center;

	/* Image doesn't repeat */
	background-repeat: no-repeat;

	/* Makes the image fixed in the viewport so that it doesn't move when 
	 the content height is greater than the image height */
	background-attachment: fixed;

	/* This is what makes the background image rescale based on its container's size */
	background-size: cover;

	/* Pick a solid background color that will be displayed while the background image is loading */
	background-color:#f2f2ee;

	/* SHORTHAND CSS NOTATION
	* background: url(background-photo.jpg) center center cover no-repeat fixed;
	*/
}

@media only screen and (max-width: 767px) {
  body {
    /* The file size of this background image is 93% smaller
       to improve page load speed on mobile internet connections */
    background-image: url("bg.jpg");
  }
}

#container {
	width: 1080px;
	margin: 0 auto;
	padding: 25px;
	height: auto;
	background-color: #dadada;
}

#clearme {
	clear: both;
}

.wide { 
	float: left; 
	margin: 0 20px 0 15px; 
}

.twentyfive {
	width: 30%; 
}

.fifty {
	width: 46%; 
}

.onehundred { 
	width: 95%;
}

span { 
	display: block; 
	margin: 0 0 3px; 
	font-size: 1.2em; 
	font-weight: bold; 
}

input { 
	width: 100%; 
	height: 50px;
	border: 1px	solid #000; 
	padding: 5px 10px 10px;
	font-size: 1.7em;
	color: #000;
}

textarea {
	width: 100%; 
	height: 100px;
	border: 1px	solid #000; 
	padding: 5px 10px 10px;
	font-size: 1.7em;
	color: #000;
}

::-webkit-input-placeholder {
 font-size: 18px;
 color: #4c4c4c;
 text-transform: none;
 font-weight: bold;
}
:-moz-placeholder { /* older Firefox*/
 font-size:18px;
 color: #4c4c4c;
 text-transform: none;
 font-weight: bold;
}
::-moz-placeholder { /* Firefox 19+ */ 
 font-size: 18px;
 color: #4c4c4c; 
 text-transform: none;
 font-weight: bold;
} 
:-ms-input-placeholder { 
 font-size: 18px; 
 color: #4c4c4c;
 text-transform: none;
 font-weight: bold;
}

#header {
	width: 94%;
	height: 13%;
	background-color: #000;
	padding: 15px;
	margin: 0 auto 50px;
}

#logo {
	background: url("logo.png") no-repeat;
	float: right;
	width: 325px;
	height: 85px;
	display: block;
}

.map {
	float: right;
	margin-right: 10%;
	margin-top: 2%;
}

#maps {
	padding-left: 15px;
	width: 50px;
	height: 50px;
}

.titles {
	padding-left: 15px;
	color: #000;
}

.bigtitle {
	font-size: 2em;
	font-weight: bold;
	text-transform: uppercase;
	color: #F6C972;
}

.subtitle {
	font-size: 0.9em;
	color: #fff;
	width: 50%;
}

.custom-dropdown--large {
	font-size: 1.5em;
}

.custom-dropdown--small {
	font-size: .7em;
}

.custom-dropdown__select{
	font-size: inherit; /* inherit size from .custom-dropdown */
	padding: .5em; /* add some space*/
	margin: 0; /* remove default margins */
}

.custom-dropdown__select--white {
	background-color: #fff;
	color: #444;    
}

@supports (pointer-events: none) and
	  ((-webkit-appearance: none) or
	  (-moz-appearance: none) or
	  (appearance: none)) {

	.custom-dropdown {
		position: relative;
		display: inline-block;
		vertical-align: middle;
	}

	.custom-dropdown__select {
		padding-right: 2.5em; /* accommodate with the pseudo elements for the dropdown arrow */
		border: 0;
		border-radius: 3px;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;    
	}

	.custom-dropdown::before,
	.custom-dropdown::after {
		content: "";
		position: absolute;
		pointer-events: none;
	}

	.custom-dropdown::after { /*  Custom dropdown arrow */
		content: "\25BC";
		height: 1em;
		font-size: .625em;
		line-height: 1;
		right: 1.2em;
		top: 50%; margin-top: -.5em;
	}

	.custom-dropdown::before { /*  Custom dropdown arrow cover */
		width: 2em;
		right: 0; top: 0; bottom: 0;
		border-radius: 0 3px 3px 0;
	}

	.custom-dropdown__select[disabled] {
		color: rgba(0,0,0,.3);
	}

	.custom-dropdown.custom-dropdown--disabled::after {
		color: rgba(0,0,0,.1);
	}

	/* White dropdown style */
	.custom-dropdown--white::before {
		background-color: #fff;
		border-left: 1px solid rgba(0,0,0,.1);
	}

	.custom-dropdown--white::after {
		color: rgba(0,0,0,.9);
	}

	/* FF only temp fix */
	@-moz-document url-prefix() {
		.custom-dropdown__select 			 { padding-right: 60px }
		.custom-dropdown--large .custom-dropdown__select { padding-right: 1.3em }
		.custom-dropdown--small .custom-dropdown__select { padding-right: .5em }
	}
}

/* BUTTON */
#submits {
	margin-left: 15px;
}

.myButton {
	-moz-box-shadow:inset 0px 1px 0px 0px #1c1b18;
	-webkit-box-shadow:inset 0px 1px 0px 0px #1c1b18;
	box-shadow:inset 0px 1px 0px 0px #1c1b18;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #eae0c2), color-stop(1, #ccc2a6));
	background:-moz-linear-gradient(top, #eae0c2 5%, #ccc2a6 100%);
	background:-webkit-linear-gradient(top, #eae0c2 5%, #ccc2a6 100%);
	background:-o-linear-gradient(top, #eae0c2 5%, #ccc2a6 100%);
	background:-ms-linear-gradient(top, #eae0c2 5%, #ccc2a6 100%);
	background:linear-gradient(to bottom, #eae0c2 5%, #ccc2a6 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eae0c2', endColorstr='#ccc2a6',GradientType=0);
	background-color:#eae0c2;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	border:1px solid #333029;
	display:inline-block;
	cursor:pointer;
	color:#505739;
	font-family:Verdana;
	font-size:20px;
	font-weight:bold;
	padding:16px 58px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
	height: 10%;
	text-transform: uppercase;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ccc2a6), color-stop(1, #eae0c2));
	background:-moz-linear-gradient(top, #ccc2a6 5%, #eae0c2 100%);
	background:-webkit-linear-gradient(top, #ccc2a6 5%, #eae0c2 100%);
	background:-o-linear-gradient(top, #ccc2a6 5%, #eae0c2 100%);
	background:-ms-linear-gradient(top, #ccc2a6 5%, #eae0c2 100%);
	background:linear-gradient(to bottom, #ccc2a6 5%, #eae0c2 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ccc2a6', endColorstr='#eae0c2',GradientType=0);
	background-color:#ccc2a6;
}
.myButton:active {
	position:relative;
	top:1px;
}


/* Lightbox */

#fade{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index:1001;
    -moz-opacity: 0.7;
    opacity:.70;
    filter: alpha(opacity=70);
}
#light{
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 200px;
    margin-left: -150px;
    margin-top: -100px;                 
    padding: 10px;
    border: 2px solid #FFF;
    background: #CCC;
    z-index:1002;
    overflow:visible;
}

/** LIGHTBOX MARKUP **/

.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}

.lightbox img {
	/** Pad the lightbox image */
	max-width: 90%;
	max-height: 80%;
	margin-top: 2%;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}
