@charset "UTF-8";
/* CSS Document */

/* -------------- START GENERAL DEFAULT FORMATTING -------------- */

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Gotham, Helvetica Neue, Helvetica, Arial," sans-serif";
}
body {
	margin: auto;
	background: #ffffff;
	color: #003b6f;
	max-width: 1200px;
}

a:link {
	color: #003b6f;
    text-decoration: none;
}
a:visited {
	color: #0088ff;
    text-decoration: none;
}


p {
	margin-bottom: 1em;
}
h1 {
	font-size: 40px;
	margin-bottom: 20px;
}
h2 {
	margin-bottom: 16px;
}
ul {
  padding-left: 30px;
}
.row:before, .row:after {
	content: "";
	display: table;
}
.row:after {
	clear: both;
}
header {
  padding: 10px;
  text-align: center;
}


.col {
	margin: auto;
	width: 100%;
	padding: 0px 5px 10px  ;
}


img {vertical-align: middle;}
.opt_img {                               /* SHOWS THESE IMAGES AT 200PX SIZE */
    height: 200px;
}
@media (max-width: 800px){               /* HIDES THIS ON SMALL SCREENS */
	.opt_img {
       display: none;
    }	
}


/* -------------- END GENERAL DEFAULT FORMATTING -------------- */









/* -------------- BEGIN TOP LINK BAR FORMAT AND CHANGE COLOR OF ACTIVE -------------- */

.navbar {
  overflow: hidden;
  position: fixed;
  z-index: +1;
  top: 0;
  padding: 4px;
  width: 100%; 
  background-color: #ffffff;
  max-width: 1200px;
}
.navbar a {
  float: left;
  display: block;
  width: 20%;                            /* five links of equal width visible */	
  border-radius: 0px;
  border: 3px solid #ffffff;
  background-color: #003B6F;
  color: white;
  text-align: center;
  padding: 2px;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
}
.navbar a.active {
  background-color: #ffffff;
  color: black;
}
.navbar a.sminvis {
    display: block;
  }	
.navbar a.lginvis {
    display: none;
  }	
.navbar a:hover {
  background-color: #8d2424;
  color: #ffffff;
}
.navbar .icon {
  display: none;
}          /* END DEFAULT TOP NAVIGATION BUTTON FORMAT FOR WIDE SCREENS */

@media screen and (max-width: 768px) {   /* START FOR SMALL PHONES */

  .navbar a:not(:first-child) {display: none;}
  .navbar a.icon {
    float: right;
    display: block;
	width: 15%;
  }	
  .navbar a {
    float: left;
    display: inline-block;
	border-radius: 0px;
    width: 85%;
	font-size: 40px;
	border-radius: 0px;
	background: #ffffff;
    border: 3px solid #ffffff; 
	color: #003B6F;
  }	
  .navbar.responsive {
	position: fixed;
	z-index: +1;
  }
  .navbar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;		
	width: 15%;
    z-index: +1; 
  }
  .navbar.responsive a {
    float: left;
    display: block;
	z-index: +1;  
  }	
  .navbar a.sminvis {
    display: none;
  }	
  .navbar a.lginvis {
    display: block
  }		
  .logo {
    display: none;  
    margin-top: 65px;
    position: fixed;	  
  }		
  .logo_buffer {
    margin-top: 80px;
  }
}                                        /* END FOR SMALL PHONES */


/* -------------- END HEADER AND NAVIGATION BUTTONS -------------- */


/* -------------- LOGO PARTS-------------- */

.logo {
  margin-top: 45px;
  overflow: hidden;
  position: fixed;
  z-index: +1;
  align-content: center;
  top: 0;
  padding: 4px;
  width: 100%; 
  background-color: #ffffff;
  max-width:1200px;
}
	
/* -------------- END LOGO -------------- */






/* -------------- START POSITIONING IMAGES WITHIN TEXT -------------- */

.figure {
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  padding: 5px;
  margin: 0;
}
.left {
  float: left;
  margin-right: 1em;
}
.right {
  float: right;
  margin-left: 1em;	
}

/* -------------- END POSITIONING IMAGES WITHIN TEXT -------------- */








/* -------------- START GRID DEFINITIONS WITH CONTAINER THAT GRAY WHEN HOVERED-------------- */

.container_hover {
       background-color: #ffffff;
	   color: #003B6F;
    }
.container_hover:hover {
       background-color: #dddddd;
	   color: white;
    }


.container_6 {/* -------------- Start 3X2 -> 2X3 -> 1X6 -------------- */
       display: grid;
       padding: 5px;
       vertical-align: middle;
	   text-align: left;
}
.container_6 > div {
       padding: 10px;
       vertical-align: middle;
	   text-align: left;
	   border: 3px solid #003B6F;
}	
@media (max-width: 768px){/* --- SINGLE COLUMN FOR CELL PHONES --- */
     .container_6 {
       display: grid;
       grid-template-columns: auto;
       grid-template-rows: auto auto auto auto auto auto;
       grid-gap: 1%; 
     }
}
@media (min-width: 768px) and (max-width: 1000px){/* --- TWO COLUMNS FOR TABLETS --- */
	.container_6 {
       display: grid;
       grid-template-columns: 48% 48%;
       grid-template-rows: auto auto auto;
	   grid-gap: 1%;
    }			
}
@media (min-width: 1000px){/* --- THREE COLUMNS FOR DESKTOPS --- */ 
	.container_6 {
       display: grid;
       grid-template-columns: 32% 32% 32%;
       grid-template-rows: auto auto;
	   grid-gap: 1%;
    }			
}/* -------------- End 3X2 -> 2X3 -> 1X6 -------------- */


.container_2 {/* -------------- Start 1X2 -> 2X1 -------------- */
       display: grid;
       padding: 5px;
       vertical-align: middle;
	   text-align: left;
}
.container_2 > div {
       padding: 10px;
       vertical-align: middle;
	   text-align: left;
	   border: 3px solid #003B6F;
}	
@media (max-width: 768px){/* --- SINGLE COLUMN FOR CELL PHONES --- */
     .container_2 {
       display: grid;
       grid-template-columns: auto;
       grid-template-rows: auto auto;
       grid-gap: 10px; 
     }
}
@media (min-width: 768px){/* --- TWO COLUMNS FOR TABLETS AND DESKTOPS --- */
	.container_2 {
       display: grid;
       grid-template-columns: 48% 48%;
       grid-template-rows: auto;
	   grid-gap: 2%;
    }			
}/* -------------- End 1X2 -> 2X1 -------------- */	


.container_1 {/* -------------- Start 1X2 -> 2X1 -------------- */
       padding: 5px;
       vertical-align: middle;
	   text-align: left;
       padding: 10px;
	   border: 3px solid #003B6F;
	   width: 96%;
}/* -------------- End 1X2 -> 2X1 -------------- */







/* -------------- END GRID DEFINITIONS -------------- */




/* -------------- START TABLET AND DESKTOP VIEW FORMATTING -------------- */

@media (min-width: 768px){               /* MOVES BUTTONS FOR CELL PHONES */
	.logo_buffer {
       margin-top: 110px;
    }	
}	
@media (min-width: 800px){               /* MOVES BUTTONS FOR TABLETS */
	.logo_buffer {
       margin-top: 120px;
    }
}
@media (min-width: 1000px){              /* MOVES BUTTONS FOR DESKTOPS */
	.logo_buffer {
       margin-top: 130px;
    }	
}
@media (min-width: 1200px){              /* MOVES BUTTONS FOR DESKTOPS */
	.logo_buffer {
       margin-top: 140px;
    }	
}

@media (min-width: 768px){
	body {
		max-width: 1200px;
	}
}
@media (min-width: 768px){
	.footbar a {
		font-size: 20px;
	}
}


/* -------------- END TABLET AND DESKTOP VIEW FORMATTING -------------- */


/* -------------- testing area -------------- */
/* -------------- testing area -------------- */
/* -------------- testing area -------------- */





/* -------------- end of testing area -------------- */
/* -------------- end of testing area -------------- */
/* -------------- end of testing area -------------- */




/* -------------- STYLING FOR MAIN SCREEN SLIDES -------------- */

* {box-sizing: border-box}
body {font-family: Verdana, sans-serif}
.mySlides {display: none}


/* Slideshow container */
.slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: auto;
}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  bottom: 0%;
  width: auto;
  padding: 16px;
  color: white;background-color: rgba(0,0,0,0.2);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.prev {
  left: 0%;
  border-radius: 3px 0 0 3px;
}		
/* Position the "next button" to the right */
.next {
  right: 0%;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.6);
}
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 20px;
  width: 20px;
  margin: 0 2px;
  background-color: #8d2424;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover {
  background-color: #003b67;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: 0.4} 
  to {opacity: 1}
}
/* On smaller screens, decrease text size */
@media (max-width: 600px) {
  .prev, .next,.text {
	  font-size: 0.8em;
	  padding: 4px;
	}
  .textL, .textR {
	  font-size: 1em;
	  padding: 6px;
	}
}

