@charset "utf-8";
/* CSS Document */

/* Iframe formatting for embedded Youtube videos */
[id*="inline_video"] .iframeWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0px;
	z-index: 100;
}
[id*="inline_video"] .iframeWrapper iframe {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
/* CSS Code for embedding modal videos */
.center_div {
	width: 80px;
	margin: 0px auto;
	padding: 10px;
}
.center_button, center_button_hover { 
	height: 80px;
	width: 80px;
}
.center_button_hover, #vid_button:hover .center_button {
	display:none
}
.center_button, #vid_button:hover .center_button_hover {
	display:block
}
.lightbox {
	display: none;
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0px;
	left: 0px;
	background-color: rgb(256,256,256); /* Fallback color */
	background-color: rgba(256,256,256,0.6); /* Black w/ opacity */
}
.lightbox:target {
	outline: none;
	display: block;
}
.modal_video, .reduced_video {
	max-width: 960px;
	height: auto;
	margin: 0px auto;	
}
.reduced_video_1 {
	max-width: 720px;
	height: auto;
	margin: 0px auto;	
}

.reduced_video_2 {
	max-width: 480px;
	height: auto;
	margin: 0px auto;	
}

#resize {  display: none; }
@media only screen and (min-width: 769px) {
#resize {
	display: block;
	background-color: #000;
	color: #FFF;
	text-align: right;
	padding: 5px 5px 0px 0px;
}
#resize img {
	padding: 0px;
	margin: 0px;
	border-width: 0px;
	float: right;
	font-size: 16px;
}
[id*="shrink"] { display: none; font-size: 20px; }
}
#animated_logo {
	clear: both;
	width: 370px;
	margin: 0px auto 0px;
	padding-top: 20px;
	display: block;
}

/* Formatting for email form */
[id*="email_form"] h1 { padding: 0px; margin: 0px; }
[id*="email_form"] h2 { margin-top: 0px; color: #FFF; font-size: 28px; text-align: left; font-family: RobotoThin, sans-serif; }
[id*="email_form"] p { color: #FFF; }
[id*="email_form"] p.disclaimer { padding: 0px 0px 0px 0px; font-size: 12px; text-align: left; }
[id*="email_form"] p.disclaimer a { font-size: 12px; color: #FFF; text-decoration: underline; }

[id*="email_form"] input, [id*="email_form"] textarea, [id*="email_form"] select {
	margin: 8px auto 8px;
	width: 100%;
	max-width: 500px;
	display: block;
	border: none;
	background-color: #FFF;
    font-family:'Calibri Light';
	color: #000;
	font-size: 16px;
}
@media only screen and (min-width: 550px) {
[id*="email_form"] input {
    display: inline-block;
	width: 48%;
	margin: 8px 0.6%;
}
}
[id*="email_form"] input[type=text], [id*="email_form"] select {
	padding: 4px 10px;
	box-sizing: border-box;	
	border-radius: 4px;
	cursor: text;
}
[id*="email_form"] textarea {
	height: 55px;
	padding: 5px 10px;
	box-sizing: border-box;
	border-radius: 4px;
	resize: none;
	cursor: text;	
    font-family:'Calibri Light';
    font-size: 16px;
	color: #000;
}
[id*="email_form"] input[type=submit] {
	display: block;
	margin: 8px auto 8px;
	background-color: #000;
    border: 2px #000 solid;
    color: #FFF;
    padding: 8px 8px 8px 8px;
	text-decoration: none;
	width: 250px;
	cursor: pointer;	
	border-radius: 5px;
}
[id*="email_form"] input[type=submit]:hover {
    color: #000; 
	background-color: #FFF; 
	border: 2px #000 solid;
}
#email_form input[type=submit] { margin-top: 20px; }

[id*="email_form"] .recaptcha {
	width: 303px;
	margin: 20px auto 20px;
}
div#refresh { margin: 20px auto 8px; width: 300px; text-align: center; }
div#refresh a { 
    background-color: #FFF;
    border: 2px #2F5597 solid;
    color: #2F5597;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 18px; 
}


/* Additional Formatting for Modal Email Form */

 /* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 300; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(256,256,256); /* Fallback color */
	background-color: rgba(256,256,256,0.6); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	background-color: #CCC;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 1.5%;
	width: 70%; /* Could be more or less, depending on screen size */
}
/* Modal Header */
.modal-header {
	padding: 0px;
	width: 100%;
	height: 20px;
}
/* The Close Button */
.close {
    font-family: Arial, Helvetica, sans-serif;
	color: #CCC;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
.modal-header .close {
	color: #333;
}
.close:hover,
.close:focus {
	color: #FFF;
	text-decoration: none;
	cursor: pointer;
}
/* Email response overlay formatting */
.email_response {
  display: none; 
  position: fixed; 
  z-index: 3000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(224,224,224); 
  background-color: rgba(128,128,128,0.6); 
}
/* Email response Content Box */
.email_response_content {
  background-color: #2F5597;
  border: 4px solid #FFF;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 1.5%;
  width: 40%; 
  min-width: 500px;
}
.email_response .close {
  font-family: Arial, Helvetica, sans-serif;
  color: #FFF;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.email_response .close:hover,
.email_response .close:focus {
    color: #CCC;
    text-decoration: none;
    cursor: pointer;
}
.email_response_content p { 
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px; 
  color: #FFF; 
  text-align: center;
  line-height: 150%;
}
@media screen and (max-width:580px) {
.email_response_content {
  width: 90%; 
  min-width: 280px;
}
}


#overlay_frame {
	display: none; /* Hidden by default */
    opacity: 0;
	background: #333;
	position: fixed;
    top: 100px;
	margin-left: 5%;
	width: 80%;
	max-width: 800px;
	height: auto;
	border: dotted 1px #333;
	z-index: 1000;
}