/* =========================================================
 This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, 
 would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, 
 the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. 
 ==========================================================*/
* {
  /* So 100% means 100% */
  -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-size: 100%;
}
a {
	outline: 0;
}
/* ======================================================
 The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of 
 the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the 
 page and create a centered container for the page content to display. 
 =======================================================*/
body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	padding: 0px 0px 0px 0px;
	background-color: #FFFFFF;
	line-height: 1.2em;
	font-size: 1em;
	color: #2d2e2e;
	font-family: Arial, Helvetica, sans-serif;
	margin: 20px 0px 0px 0px;
	'background-image: url('../images/eoswb1.gif');
}
body img {
	border: 0px;
	text-decoration: none;
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}
/* =====================================
Commonly used to style page titles. 
========================================*/
h1, h2, h3 {
	color: #1C140E;
	margin: 5px 0px 5px 10px;
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
}
h1 {
	font-size: 1.7em;
}
h2 {
	font-size: 1.3em;
}
h3 {
	font-size: 1.1em;
}
/*================================
Link Styles unless specified separately
=================================*/
a, a:link {
	color: #009999;
	text-decoration: underline;
}
a:visited {
	color: #003300;
	text-decoration: none;
}
a:hover {
	color: #996633;
	text-decoration: underline;
}
a:focus {
	color: #2170bd;
}
a:active {
	color: #2170bd;
}

/* =============================================
 This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for 
 horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the 
 use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. 
 ===============================================*/
#outerWrapper {
	/*background-color: #000000;*/
	width: 98%;
	min-width:1024px;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0px auto 20px auto;
	/*border: 1px solid #3B595E;*/
	border-radius: 10px 0px 0px 10px;
	-webkit-border-radius: 10px 0px 0px 10px;
	-moz-border-radius: 10px 0px 0px 10px;
	-moz-box-shadow: 0 0 20px #453823;
	-webkit-box-shadow: 0 0 20px #453823;
	box-shadow: 0 0 20px #453823;
}
/*===================================
Masthaead Styles
====================================*/
/*========================================
Top Navigation
=========================================*/
#outerWrapper #topNavigation {
	background-color: #264989;
	min-height: 80px;
	min-width:1024px;
	padding: 10px 10px 10px 10px;
/*	border-bottom: solid 1px #1C140E; */
	border-bottom-color: #264989;
/*	border-top-color: #264989; */
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-radius: 10px 0px 0px 0px;
	-webkit-border-radius: 10px 0px 0px 0px;
	-moz-border-radius: 10px 0px 0px 0px;
}
#outerWrapper #topNavigation ul {
	list-style-type: none;
	width: 100%;
	margin: 0px;
	padding: 0px 20px;
}
#outerWrapper #topNavigation li {
	float: left;
}
#outerWrapper #topNavigation a {
	color: #FFFFFF;
	text-decoration: none;
	margin: 0px 1px;
	padding: 5px;
	display: block;
}
#outerWrapper #topNavigation a:hover {
	/*background-color: #9DA8AA;*/
	background-color: #BEE6FF
	color: #000000;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
/*=======================================
Wrapper for the content columns
========================================*/
#contentWrapper {
	clear: both;
	background: #FFFFFF;
	overflow: hidden;
	/*background-image: url('../images/content-bg3.jpg');*/	
	background-color: #264989;
	min-width:960px;
}
/*==================================
Left sidebar
===================================*/
#leftColumn1 {
	float: left;
	width: 180px;
	max-width: 180px;
	padding: 0px 10px 10px 10px;
	background-color: #264989;
}
/*================================
Left sidebar navigation menu
==================================*/
#leftColumn1 .menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 4px;
}
#leftColumn1 .menu li {
	list-style: none;
	padding: 2px 0;
}
#leftColumn1 .menu ul li a {
	margin-top: 3px;
	display: block;
	color: #000000;
	background-color: #ACD2FF;'background-color: #264989;
	border: 2px solid #FFFFFF;
	transition-duration: 0.4s;
	text-decoration: none;
	text-align: center;
	padding: 8px;
	font-size: .9em;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	/*-webkit-box-shadow: 0px 0px 15px #5D574C;*/
	/*box-shadow: 0px 0px 15px #5D574C;*/
}
#leftColumn1 .menu a:hover {
	color: #000000;
	background-color: #FFFFFF;
	'background-color: #264989;
	border: 1px solid #475F63;
	font-weight: bold;
}
#leftColumn1 .menu a:active, #leftColumn1 .menu a.active {
	color: #000000;
	background-color: #FFFFFF;
	'background-color: #264989;
	border: 1px solid #475F63;
	font-weight: bold;
}
#ArchiveLink {
	width: 120px;
}
#ArchiveLink .menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 4px;
}
#ArchiveLink .menu li {
	list-style: none;
	padding: 2px 0;
}
#ArchiveLink .menu ul li a {
	margin-top: 3px;
	display: block;
	color: #FFFFFF;
	background-color: #264989;'background-color: #264989;
	border: 2px solid #FFFFFF;
	transition-duration: 0.4s;
	text-decoration: none;
	text-align: center;
	padding: 8px;
	font-size: .9em;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	/*-webkit-box-shadow: 0px 0px 15px #5D574C;*/
	/*box-shadow: 0px 0px 15px #5D574C;*/
}
#ArchiveLink .menu a:hover {
	color: #FFFFFF;
	'background-color: #ACD2FF;
	'background-color: #264989;
	border: 1px solid #475F63;
	font-weight: bold;
}

#interactive .effectscale {
  border: none;
  margin: 0 auto;
}
#interactive .effectscale:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
}

/*===================================================
Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. 
=====================================================*/
#content {
	padding: 10px 20px 10px 20px;
	margin: 0px 0px 0px 180px;
	background-color: #FFFFFF;
	min-width:800px;
}
.archiveLink_w{width: auto!important;}
.nav_linline ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
}
.nav_linline ul li{margin-right: 15px;}
.nav_linline ul li:last-child{margin-right: 0;}
.nav_linline ul li a{padding: 8px 15px!important;}
.camera { widows: 352px; max-width:none; height:240px;}
.cameralink {min-width: 50px;}
/* ===============================================
Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being 
cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the 
close of the container with floated elements. 
==================================================*/
.clearFloat {
	display: block;
	clear: left;
}
/*=================================================
Footer Styles 
==================================================*/
#outerWrapper #footer {
	background-color: #264989;'background-color: #264989;
	padding: 10px 10px 10px 10px;
	border-radius: 0px 0px 0px 8px;
	-webkit-border-radius: 0px 0px 0px 8px;
	-moz-border-radius: 0px 0px 0px 8px;
	color: #ffffff;
	min-height: 60px;
	min-width:1024px;
}
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	line-height: 60px;
	font-size: .85em;
}
#outerWrapper #footer a:link {
	color: #ffffff;
}
#outerWrapper #footer a:visited {
	color: #CCCCCC;
}
#outerWrapper #footer a:hover, #outerWrapper #footer a:focus {
	color: #FFFFFF;
}
#outerWrapper #footer a:active {
	color: #999999;
}
/*============================================
Floating images left, right or centered on page
=============================================*/
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
.imgctr {
	display: block;
	margin: 0px auto;
}
/*=====================================
Misc Typographic styles
======================================*/
.ctr {
	text-align: center;
}
.smltxt {
	font-size: small;
}
/*=============
form styles 
==============*/
form fieldset {
	padding: 1em;
	font: 80%/1 sans-serif;
	border: 2px solid #000000;
	width: 300px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	box-shadow: 3px 3px 6px #dddddd;
	-moz-box-shadow: 3px 3px 6px #dddddd;
	-webkit-box-shadow: 3px 3px 6px #dddddd;
}
form fieldset label {
	width: 15%;
	margin-right: 0.5em;
	padding-top: 0.2em;
	text-align: right;
	font-weight: bold;
}
form fieldset legend {
	padding: 0.2em 0.5em;
	color: #000000;
	font-size: 90%;
	text-align: right;
	font-variant: small-caps;
}
.cf {
	border: 1px #353c48 solid;
	background-image: url('../images/form-bg.jpg');
	background-repeat: repeat;
}
.button {
	font: normal 90% Verdana, serif;
	height: 22px;
	border: 1px solid #CDBB99;
	background-color: #4A3527;
	color: #ffffff;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
input:focus {
	border: 2px solid #993300;
}

.top_head_block{
	display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.page_date{
	font-size: 22px;
	color: #ffffff;
	font-family: Verdana;
}
.year_nav_list{
	display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.year_nav_list{padding-left: 0;margin-bottom: 24px;}
.year_nav_list li {list-style: none;margin-right: 10px;}
.year_nav_list li:last-child {margin-right: 0;}
.year_nav_list li a{
	color: #ffffff;
	background-color: rgb(38, 73, 137);
	font-size: 14px;
	padding: 5px 15px;
	text-decoration: unset;
	border: 2px solid transparent;
}
.year_nav_list li.active a, .year_nav_list li a:hover{border: 2px solid #264989;color: #264989;background-color: transparent;}
.justifyEnd{-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end;}

#outerWrapper #topNavigation a.navIcon,
#outerWrapper #topNavigation .apps_sidenav{display: none;}
#outerWrapper #topNavigation a.navIcon{width: 15%!important;text-align: start;}
#outerWrapper #topNavigation .apps_sidenav{
	  height: 100%;
	  width:250px;
	  position: fixed;
	  z-index: 1;
	  top: 0;
	  left: -250px;
	  background-color: #264989;
	  overflow-x: hidden;
	  transition: 0.5s;
	  padding-top: 60px;
	  border-right: 2px solid #ffffff;
}
#outerWrapper #topNavigation .apps_sidenav_list li {
	width: 100%;
	text-align: start;
	margin-bottom: 15px;
}
#outerWrapper #topNavigation .apps_sidenav_list li a {
  padding: 8px;
  text-decoration: none;
  font-size: 15px;
  color: #4a4a4a!important;
  background-color: #ACD2FF;
  display: block;
  transition: 0.3s;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	text-align: center;
}
#outerWrapper #topNavigation .apps_sidenav_list li a.active,
#outerWrapper #topNavigation .apps_sidenav_list li a:hover {color: #000000!important;background-color: #ffffff;font-weight: 700;}
#outerWrapper #topNavigation .apps_sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px!important;
  color: #ffffff!important;
  margin-left: 50px;
}
#leftColumn1 .page_date{display: none;}


.modal-overlay{
    background:rgba(0,0,0,.7);
    height:100%;
    position:fixed;
    top:0;
    left:0;
    right:0;
    overflow:auto;
    padding:1em;
    transition:opacity .2s;
    width:auto;
    z-index:-1;
    display:-webkit-box;    
    display:-ms-flexbox;    
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
}
.modal_header{text-align: right;}
.modal-content,.modal_header{
    position:relative
}
.modal-overlay[aria-hidden=true]{
    opacity:0;
    visibility:hidden
}
.modal-overlay[aria-hidden=false]{
    opacity:1;
    visibility:visible;
    z-index:99999
}
.modal-content{
    background:#fff;
    margin:auto;
    max-width:100%;
    overflow:auto;
    overflow-x:hidden;
    padding:1em;
    transform:scale(.8);
    transition:transform .3s;
    width:100%;
    height: 100%;
}
.modal-overlay[aria-hidden=false] .modal-content{
    transform:scale(1)
}
.btn-close:before,.btn-close:hover:before,.modalBtn:before,.modalBtn:hover:before{
    display:none!important
}
.md_interactive{
	width: 65%!important;
	margin: 0 auto;
	display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;

}
.search_body .gsc-resultsHeader{display: none;}
.search_body .gsc-webResult:after{display: none;}
.search_body .gs-title{text-align: start;}




@media only screen and (max-width: 1060px){
#topNavigation img{width: 35%!important;float: none!important;}
#outerWrapper #topNavigation{min-width: unset;text-align: right;}
#outerWrapper{width: 100%!important;min-width: unset;}
#contentWrapper{min-width: unset;}
table{width: 100%!important;}
#outerWrapper #footer{min-width: unset;	display: -webkit-box;  display: -ms-flexbox; display: flex;	-webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;-webkit-box-align: center; -ms-flex-align: center; align-items: center;}
#outerWrapper #footer p{font-size: 14px;line-height: 22px;padding: 10px;}

}
@media only screen and (max-width:991px){

.year_nav_list li{margin-bottom: 20px;}
#leftColumn1{width: calc(20% - 10px)!important;max-width: 100%;}
#content{width: calc(80% - 10px)!important;max-width: 100%;min-width: unset;margin: 0;display: inline-block;}
}

@media only screen and (max-width: 767px){
#leftColumn1{width: calc(25% - 10px)!important;}
#content{width: calc(75% - 10px)!important;}
}
@media only screen and (max-width: 650px){
#leftColumn1, #content {width: calc(100% - 0px) !important;}
#leftColumn1 .menu ul li a{padding: 10px 20px;}
#leftColumn1 .menu ul, #interactive{display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-orient: horizontal;-webkit-box-direction: normal;    -ms-flex-flow: row wrap;        flex-flow: row wrap;}
#interactive{width: 30%;margin: 0 0 0;}
#topNavigation img{width: 70%!important;}
#outerWrapper #footer p{font-size: 14}
.auto-style2{width: 100%!important;height: auto!important;margin: 0 auto;margin-bottom: 30px;}
.top_head_block .page_date{display: none;}
#outerWrapper #topNavigation a.navIcon,
#outerWrapper #topNavigation .apps_sidenav{display: block;}
#leftColumn1 .menu{display: none;}
.justifyEnd{-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;}
#leftColumn1 .page_date{display: block;padding: 20px 0;margin: 0;}
#interactive {display: none;}
.md_interactive a{display: block!important;}
#topNavigation .md_interactive img{width: auto!important;}


}
@media only screen and (max-width: 493px){
.camera { max-width:100%; height:auto;}
}
@media only screen and (max-width: 480px){a, p{word-break: break-word;}.page_date{margin: 20px 0;} #outerWrapper #topNavigation{height: auto!important;}}
@media only screen and (max-width: 450px){ 
#interactive{width: 50%;padding: 0 0 0;margin: 0;}
}







