﻿  /* CSS layout */

body {
	text-align: center;
	background-color: #bcbfac;

}

#masthead {
	background-color: #bcbfac;
	width: 100%;
	margin: auto;
}

/*	top navigation bar	***************************/
#topnav {
	width: 100%;
	margin: auto;
	background-color: #bcbfac;
	font-size: 16pt;
	text-align: left;
}

#topnav a {
	font-weight: bold;
	text-decoration: none;
	margin-left:30px;
	color: #043945;
}
#topnav a:hover {
	font-weight: bold;
	text-decoration: none;
	color: #880000;
}
/*	end of top navigation bar	***************************/


#corners_top {
	width: 1000px;
	margin: 0 auto;
	height: 20px;

}


#container {
	width: 100%;
	font-size:12pt;
	margin: 0 auto;
	height: auto;
}




#page_content {
/*	width: 700px;*/
	width: 100%;
	margin: 0 auto;
	float: left;
	background-color: #ffffff;
	font-size:12pt;
	text-align: left;
	height: 100%;
}

#page_content a {
	font-weight: bold;
	text-decoration: none;
	color: #043945;
}
#page_content a:hover {
	font-weight: bold;
	text-decoration: none;
	color: #aa0000;
}


/*	styles for pages with mostly links in the main page content area	***************************/
#link_page_content {
	width: 688px;
	margin: 0 auto;
	float: left;
	background-color: #ffffff;
	font-size:12pt;
	text-align: left;
	height: 1000px;
}

#link_page_content a {
	font-weight: bold;
	text-decoration: none;
	color: #005a5a;
}
#link_page_content a:hover {
	font-weight: bold;
	text-decoration: none;
	color: #aa0000;
}

#link_page_content li {
	font-size: 1.0em;
	display: block;
	margin-left: 10px;
	height: 30px;
	padding: 0;
	vertical-align:middle;
	margin-top:5px;
}
/*	end of styles for pages with mostly links in the main page content area	***************************/

#footer {
	clear: both;
	background-color: #bcbfac;
	color: #ffffff;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
#footer a {
	font-weight: bold;
	text-decoration:underline;
	color: #ffffff;
}
#footer a:hover {
	color: #aa0000;
}
#footer_bot {
	background-color: #bcbfac;
	width: 100%;
	margin: 0 auto;
	height: 20px;

}

.video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 75%;
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}


/* image zoom css	*/

* {box-sizing: border-box;}

.img-zoom-container {
  position: relative;
}

.img-zoom-lens {
  position: absolute;
  border: 1px solid #d4d4d4;
  /*set the size of the lens:*/
  width: 40px;
  height: 40px;
}

.img-zoom-result {
  border: 1px solid #d4d4d4;
  /*set the size of the result div:*/
  width: 300px;
  height: 300px;
}


