body, div {
	margin: 0;
	padding: 0;
}
img {
	border: none;
}
body {
	background: url('/images/bg4.jpg') fixed top center no-repeat;
	font-family: Arial, Helvetica, sans-serif;
}
p {
	font-family: Georgia, serif;
}
h1,h2,h3,h4,h5,h6 {
	font-family: Georgia, serif;
	text-decoration: underline;
}
table {
	text-align: left;
}

.page .middle {
	display: block;
	width: 1000px;
	background: #FFF;
	margin: 0 auto;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	-webkit-box-shadow: 0px 0px 50px -2px #000;
       -moz-box-shadow: 0px 0px 50px -2px #000;
            box-shadow: 0px 0px 50px -2px #000;
}
.header .header_content {
	background: #FFF;
	background: -moz-linear-gradient(top,  #FFF 0%, #EEE 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF), color-stop(100%,#EEE));
	background: -webkit-linear-gradient(top,  #FFF 0%,#EEE 100%);
	background: -o-linear-gradient(top,  #FFF 0%,#EEE 100%);
	background: -ms-linear-gradient(top,  #FFF 0%,#EEE 100%);
	background: linear-gradient(to bottom,  #FFF 0%,#EEE 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFF', endColorstr='#EEE',GradientType=0 );
}
.header .header_content .contact_wrap {
	float: right;
}
.header .header_content .contact_wrap p {
	margin: 5px 0;
	text-align: right;
}
.header .header_content {
	padding: 20px;
}

/* Menu */
.header .menu {
	background: #757575;
	background: -moz-linear-gradient(top,  #757575 0%, #242424 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#757575), color-stop(100%,#242424));
	background: -webkit-linear-gradient(top,  #757575 0%,#242424 100%);
	background: -o-linear-gradient(top,  #757575 0%,#242424 100%);
	background: -ms-linear-gradient(top,  #757575 0%,#242424 100%);
	background: linear-gradient(to bottom,  #757575 0%,#242424 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#757575', endColorstr='#242424',GradientType=0 );

	font-weight: bold;
	vertical-align: middle;
	text-align: center;

	border-top: solid thin #AAA;
	border-bottom: solid thin #666;
	-webkit-box-shadow: 0px 2px 10px 0px #000;
       -moz-box-shadow: 0px 2px 10px 0px #000;
            box-shadow: 0px 2px 10px 0px #000;
}
.header .menu .menu_item {
	display: inline-block;
}
.header .menu .menu_item {
	padding: 10px 20px;
	color: #DDD;
	text-decoration: none;
}

.header .menu .menu_item:hover, .header .menu .menu_item:active {
	background: linear-gradient(to bottom, #919191 0%,#3b3b3b 100%);
	color: #FFF;
}

.footer {
	margin: 30px auto;
	text-align: center;
}
.footer .footer_content {
	padding: 10px 15px;
	border-radius: 5px;
	display: inline-block;
	background-color: rgba(255,255,255,0.3);
	color: #000;
}

.padded_content {
	padding: 8px 20px;
}


.google_map {
	width: 100%;
	height: 400px;
	background-color: #CCC;
}
.google_map.enhanced {
	border-radius: 10px;
	border: solid thin #AAA;
}


.image_wrap {
	display: inline-block;
	padding: 0px;
	/*border-radius: 5px;
	border: solid thin #AAA;*/
}
.image_wrap img {
	border-radius: 4px;
}
.image_wrap.left {
	float: left;
	margin-right: 20px;
	margin-bottom: 10px;
}
.image_wrap.right {
	float: right;
	margin-left: 20px;
	margin-bottom: 10px;
}

.clearfix {
	clear: both;
	width: 0;
	height: 0;
}


.bordered_wrap {
	display: inline-block;
	background-color: #F5F5F5;
	border: solid thin #AAA;
	border-radius: 10px;
	padding: 0 15px;
}




input[type=text], textarea {
	border-radius: 5px;
	padding: 6px;
	background-color: #FFF;
	border: solid thin #AAA;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #000;
}
input[type=submit],
input[type=reset],
input[type=button],
button
{
	font-size: 18px;
  	padding: 5px 10px;
}

.contact_note {
	font-size: 14px;
	font-style: italic;
}
.contact_field_note {
	color: #999;
	font-size: 14px;
	font-style: italic;
}
.error {
	border: solid thin #F00 !important;
}



/***  MODAL  ***/
.modal {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
	text-align: center;
	vertical-align: middle;
}
.modal.hidden {
	display: none;
}
.modal_wrap {
	display: inline-block;
	position: absolute;
	width: 400px;
	height: 300px;
	top: 50%;
	left: 50%;
	margin-top: -160px;
	margin-left: -210px;
	background: #F5F5F5;
	border: solid 10px #AAA;
	border-radius: 	30px;
	vertical-align: middle;
	line-height: 300px;
}
.modal .modal_wrap .loading {
	display: inline-block;
	background: url('/images/loader.gif') center center no-repeat;
	background-size: 200px 200px;
	height: auto;
	width: 200px;
}
.modal .modal_wrap .content {
	line-height: normal;
	top: 37%;
	position: relative;
	font-weight: bold;
}
.modal .modal_wrap .content .close_button {
	margin-top: 20px;
}