﻿/* 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. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* 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 {
	background-color: #FADDA1;
	color: #663D1F;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	margin: 0 0 0 0;
	padding: 0px;
	background-image: url('images/bord_mini_country_002.gif');
	background-repeat: repeat-x;
}
body img {
	border: 0px;
}
/* Commonly used to style page titles. */
h1, h2, h3, h4 {
	color: #663D1F;
}
h1 {
  
  font-size: 1.5em;
}
/* Commonly used to style section titles. */
h2 {
  font-size: 1.3em;
}
h3 {
	font-size: 1em;
}


/* Sets the style for unvisited links. */
/*==============all site links==============*/
a:link {
	font-weight: bold;
	color: #636384;
	background: transparent;
	text-decoration: underline;
}
a:visited {
	font-weight: bold;
	color: #990000;
	background: transparent;
	padding: 0px;
	text-decoration: underline;
}
a:hover {
	font-weight: bold;
	text-decoration : none;
	background: #804000;
	color: #FADDA1;
}
a:active {
	font-weight: bold;
	text-decoration : underline;
	background: #D5D2D9;
	color: #000000;
}
/* 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: #FEF6E7;
	width: 80%;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 65px auto 0 auto; 
	border-right: double 1px #634231;
	border-bottom: double 1px #634231;
	border-left: double 1px #634231;
	
}
#outerWrapper #header {
	background-position: center center;
	background-color: #FEF6E7;
	padding: 10px 0px 10px 0px;
	background-image: url('images/welcome.gif');
	height: 75px;
	background-repeat: no-repeat;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

#outerWrapper .ubercolortabs{
padding: 0;
width: 100%;
overflow: hidden;
background: transparent;
}

#outerWrapper .ubercolortabs ul{
font: bold 12px Arial, Verdana, sans-serif;
margin: 0;
padding: 0;
list-style: none;
}

#outerWrapper .ubercolortabs li{
display: inline;
margin: 0 1px 1px 0;
padding: 0;
text-transform: uppercase;
}


#outerWrapper .ubercolortabs a{
float: left;
color: white;
background: #804000 url('images/roundleft.gif') no-repeat left top; /*default background color of tabs, left corner image*/
margin: 0 2px 0 0;
padding: 0 0 0px 0px;
text-decoration: none;
letter-spacing: 1px;
}

#outerWrapper .ubercolortabs a span{
float: left;
display: block;
background: url('images/roundright.gif') no-repeat right top; /*right corner image*/
padding: 7px 9px 3px 6px;
cursor: pointer;
}

#outerWrapper .ubercolortabs a span{
float: none;
}


#outerWrapper .ubercolortabs a:hover, .ubercolortabs li.selected a{
background-color: #AE5300; /*background color of tabs onMouseover*/
color: white;
}

.ubercolortabs a:hover span{
background-color: transparent;
}


#outerWrapper .ubercolordivider{ /*CSS for horizontal line.*/
clear: both;
padding: 0;
width: 100%;
height: 5px;
line-height: 5px;
background: #804000; /*background color of horizontal line*/
border-top: 1px solid #fff; /*Remove this to remove border between bar and tabs*/
}


/* Contains the main page content.  */
#outerWrapper #contentWrapper #content {
  padding: 10px 10px 10px 10px; 
  margin: 0 0 0 0; 
}


/*===========content area list items==============*/
#content ul li {
	list-style-image: url('images/bullet.gif');
	margin: 2px;
	padding: 2px;
}
#content li li {
	list-style-image: url('images/bullet.gif');
	padding: 2px 0;
}

#outerWrapper #footer {
	background-color: #FEF6E7;
	border-top: solid 1px #666;
	padding: 10px 10px 10px 10px;
	text-align: center;
	font-size: .9em;
}

#outerWrapper #footer p {
	margin: 0px;
}

/*================used to center anything==============*/
.center {
	text-align: center;
}
/* ============floats images to right or left ============*/
.imgrgt {
	float: right;
	padding: 7px;
}
.imglft {
	float: left;
	padding: 7px;
}
.smtxt {
	font-size: small;
}

/*======================grid code=====================*/
.grid-container {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  background-color: white;
  padding: 40px;
}

.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 15px;
  font-size: 18px;
  text-align: left;
}

.grid-container2 {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  background-color: white;
  padding: 10px;
}

.grid-item2 {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 15px;
  font-size: 15px;
  text-align: left;
}



.grid-container3 {
  display: inline-grid;
  height: 450px;
  grid-template-columns: auto auto auto;
  background-color: white;
  padding: 10px;
}

.grid-item3 {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 5px;
  font-size: 15px;
  text-align: left;
}

.grid-container4 {
  display: inline-grid;
  height: 300px;
  grid-template-columns: auto auto auto;
  background-color: white;
  padding: 10px;
}

.grid-item4 {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 5px;
  font-size: 15px;
  text-align: left;
}

.grid-container5 {
  display: inline-grid;
  height: 570px;
  grid-template-columns: auto auto auto;
  background-color: white;
  padding: 10px;
}

.grid-item5 {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 5px;
  font-size: 20px;
  text-align: left;
}

.grid-container6 {
  display: inline-grid;
  height: 650px;
  grid-template-columns: auto auto auto;
  background-color: white;
  padding: 10px;
}

.grid-item6 {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 5px;
  font-size: 15px;
  text-align: left;
}


/*=====================accordion dropdowns================*/

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #ecd2bf;
  color: #663D1F;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 18px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #FEF6E7;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: FEF6E7;
  display: none;
  overflow: hidden;
}

/*=================accordion toggle=================*/        
.accordion {
    display: flex;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    width: 100%;
}

.accordion-select {
    cursor: pointer;
    margin: 0;
    opacity: 0;
    z-index: 1;
}

.accordion-title {
    position: relative;
}

.accordion-title:not(:nth-last-child(2))::after {
    border: 1px solid transparent;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.accordion-title span {
    bottom: 0px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    white-space: nowrap;
    width: 100%;
}

.accordion-content {
    box-sizing: border-box;
    overflow: auto;
    position: relative;
    transition: margin 0.3s ease 0.1s;
}

.accordion-select:checked + .accordion-title + .accordion-content {
    margin-bottom: 0;
    margin-right: 0;
}

/* Generated styles starts here */

.accordion {
    border-color: #dedede;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    flex-direction: column;
    height: auto;
} 

.accordion-title,
.accordion-select  {
    background-color: #ecd2bf;
    color: #663D1F;
    width: 100%;
    height: 65px;
    font-size: 15px;
}

.accordion-select {
    margin-bottom: -65px;
    margin-right: 0;
}

.accordion-title:not(:nth-last-child(2))::after {
    border-bottom-color: rgb(234, 234, 234);
    border-right-color: transparent;
} 

.accordion-select:hover + .accordion-title,
.accordion-select:checked + .accordion-title {
    background-color: #ffffff;
} 

 .accordion-title span  {	
    transform: rotate(0deg);
    -ms-writing-mode: lr-tb;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
    padding-left: 33px;
    padding-right: 33px;
    line-height: 65px;
} 

.accordion-content {
    background-color: #f7f7f7;
    color: #7f8787;
    height: 550px;
    margin-bottom: -550px;
    margin-right: 0;
    padding: 30px;
    width: 100%;
}

/*=======================columns============*/

.newspaper {
  column-count: 3;
  column-gap: 40px;
}

/*=======================columns 2============*/

.newspaper2 {
  column-count: 2;
  column-gap: 25px;
}


/*=======================table Blue============*/
table.paleBlueRows {
  font-family: "Times New Roman", Times, serif;
  border: 1px solid #FADDA1;
  width: 75%;
  text-align: left;
  border-collapse: collapse;
}
table.paleBlueRows td, table.paleBlueRows th {
  border: 1px solid #663D1F;
  padding: 3px 2px;
}
table.paleBlueRows tbody td {
  font-size: 18px;
  color: #663D1F;
}
table.paleBlueRows tr:nth-child(even) {
  background: #D0E4F5;
}
table.paleBlueRows thead {
  background: #804000;
  border-bottom: 5px solid #663D1F;
}
table.paleBlueRows thead th {
  font-size: 17px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  border-left: 2px solid #663D1F;
}
table.paleBlueRows thead th:first-child {
  border-left: none;
}

table.paleBlueRows tfoot td {
  font-size: 14px;
  border-bottom: 5px solid #663D1F;
}

/*=======================table Blue 2============*/
table.paleBlueRows2 {
  font-family: "Times New Roman", Times, serif;
  border: 1px solid #010612;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.paleBlueRows2 td, table.paleBlueRows2 th {
  border: 1px solid #010612;
  padding: 3px 2px;
}
table.paleBlueRows2 tbody td {
  font-size: 18px;
  color: #663D1F;
}
table.paleBlueRows2 tr:nth-child(even) {
  background: #D0E4F5;
}
table.paleBlueRows2 thead {
  background: #a1befa;
  border-bottom: 5px solid #010612;
}
table.paleBlueRows2 thead th {
  font-size: 17px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  border-left: 2px solid #010612;
}
table.paleBlueRows2 thead th:first-child {
  border-left: none;
}

table.paleBlueRows2 tfoot td {
  font-size: 14px;
  border-bottom: 5px solid #010612;
}


/*=======================table Blue 3============*/
table.paleBlueRows3 {
  font-family: "Times New Roman", Times, serif;
  border: 1px solid #FADDA1;
  width: 60%;
  text-align: left;
  border-collapse: collapse;
}
table.paleBlueRows3 td, table.paleBlueRows th {
  border: 1px solid #663D1F;
  padding: 3px 2px;
}
table.paleBlueRows3 tbody td {
  font-size: 18px;
  color: #663D1F;
}
table.paleBlueRows3 tr:nth-child(even) {
  background: #D0E4F5;
}
table.paleBlueRows3 thead {
  background: #804000;
  border-bottom: 5px solid #663D1F;
}
table.paleBlueRows3 thead th {
  font-size: 17px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  border-left: 2px solid #663D1F;
}
table.paleBlueRows3 thead th:first-child {
  border-left: none;
}

table.paleBlueRows3 tfoot td {
  font-size: 14px;
  border-bottom: 5px solid #663D1F;
}

/*================Slidershow 1*/



/*==================greyscale Image Gallery-------------*/

<style>

ul.gallery{
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.gallery li{
  display: block;
  width: 200px; /* width of gallery */
  height: 50px; /* portion of each gallery image that's shown initially */
  position: relative;
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


ul.gallery li img{
  position: absolute;
  width: 100%;
  border: 10px solid #D8D2A2;
 -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
	filter: url(#grayscale); 
  filter: grayscale(1);
	-webkit-transition: all .5s ease-in-out; /* CSS3 transition setting */
	-moz-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}


ul.gallery li:focus{ /* when a LI receives focus (clicked on) */
  z-index: 100;
	outline: none;
	-webkit-transform: rotate(3deg); /* rotate enlarged LI by 3 degrees */
	-moz-transform: rotate(3deg);
	transform: rotate(3deg); 
	pointer-events: none; /* disable pointer events on enlarged LI so thumbnail(s) beneath it can receive those events */
}

ul.gallery li:nth-of-type(even):focus{ /* even LIs that received focus */
	-webkit-transform: rotate(-1deg); /* rotate enlarged LI by -1 degrees instead */
	-moz-transform: rotate(-1deg);
	transform: rotate(-1deg);
}

ul.gallery li:focus img{
  -webkit-transform: scale(2) translateX(30%); /* enlarge focused image and move horizontally */
  -moz-transform: scale(2) translateX(50%);
  transform: scale(2) translateX(50%);
  top: 10px; /* shift enlarged image downwards by 10px */
	outline: none;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4); 
  -webkit-filter: grayscale(0); /* nullify grayscale effect */
  filter: none;
}

ul.gallery li:first-of-type:focus img{ /* first image within list of thumbnails that receives focus */
  top: 20px; /* move image down by 80px so it's not obscured by top of window edge */
}

svg{
	position: absolute;
	visibility: hidden;
}

</style>

/*===============popup image gallery============*/

.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
position: fixed;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 230px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

/*================caption==========*/
figure {
    border: thin #c0c0c0 solid;
    display: flex;
    flex-flow: column;
    padding: 5px;
    max-width: 220px;
    margin: auto;
}

img {
    max-width: 500px;
    max-height: 800px;
}

figcaption {
    background-color: #222;
    color: #fff;
    font: italic smaller sans-serif;
    padding: 3px;
    text-align: center;
}

/*========================2 column grid==============*/

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/*========================3 column grid==============*/

/* Create three equal columns that floats next to each other */
.column3 {
  float: left;
  width: 33.33%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/*=======================Slideshow 2=================*/

<style>
      * {
        box-sizing: border-box
      }
      body {
        font-family: Verdana, sans-serif;
        margin: 0
      }
      .mySlides1 {
        display: none
      }
      img {
        vertical-align: middle;
      }
      .slideshow1-container {
        max-width: 1000px;
        position: relative;
        margin: auto;
      }
      /* Next & previous buttons */
      .prev,
      .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: white;
        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 */
      .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.8);
      }
      /* Caption text */
      .text {
        color: #ffffff;
        font-size: 15px;
        padding: 8px 12px;
        position: absolute;
        bottom: 8px;
        width: 100%;
        text-align: center;
      }
      /* Number text (1/3 etc) */
      .numbertext {
        color: #ffffff;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
      }
      /* The dots/bullets/indicators */
      .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #999999;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
      }
      .active,
      .dot:hover {
        background-color: #111111;
      }
      /* 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: .4
        }
        to {
          opacity: 1
        }
      }
      /* On smaller screens, decrease text size */
      @media only screen and (max-width: 300px) {
        .prev,
        .next,
        .text {
          font-size: 11px
        }
      }
    </style>
    
    <script>
      var slideIndex = 1;
      showSlides(slideIndex);
      function plusSlides(n) {
        showSlides(slideIndex += n);
      }
      function currentSlide(n) {
        showSlides(slideIndex = n);
      }
      function showSlides(n) {
        var i;
        var slides = document.getElementsByClassName("mySlides1S");
        var dots = document.getElementsByClassName("dot");
        if(n > slides.length) {
          slideIndex = 1
        }
        if(n < 1) {
          slideIndex = slides.length
        }
        for(i = 0; i < slides.length; i++) {
          slides[i].style.display = "none";
        }
        for(i = 0; i < dots.length; i++) {
          dots[i].className = dots[i].className.replace(" active", "");
        }
        slides[slideIndex - 1].style.display = "block";
        dots[slideIndex - 1].className += " active";
      }
    </script>
