body {
    background-color: darkgreen;
}
h1 {
    font-family: calibri, sans-serif;
    color: white;
    padding-bottom: 2px;
}
h2 {
    font-family: calibri, sans-serif;
    color: floralwhite;
    font-size: 15px;
    padding-top: 2px;
}
h3 {
    font-family: calibri, sans-serif;
    color: white;
    font-size: 45px;
}
h4 {
    font-size: 15px;
    color: white;
    font-family:  sans-serif;
    color: black;
}
p  {
    font-family: calibri, sans-serif;
    color: white;
}
h1, h2, h3, h4, p {
    padding-left: 24px;
    padding-right: 24px;
}
.customImg1 {
    width: 400px;
    height: 200px;
}
.customImg2 {
    width: 40px;
    height: 40px;
}

img {
    width: 225px;
    height: 175px;
}
#wrapper {
	width: 80%;
	margin: 5px auto;
	padding: 5px 30px;
	border: solid 1px grey;
	border-collapse: collapse;
	color: #5B5B5B;
    border-color: black;
}
#header {
    width: 100%
}
#navigation {
	clear: both;
	padding: 5px 15px;
	margin: 0 -30px;
	list-style-type: none;
	background-color: black;
	color: white;
    border-top: solid 2px #4E0102;
    border-bottom: solid 2px #4E0102;
    font-family: calibri, sans-serif;
    border-bottom-color: black;
    border-top-color: black;
}
.primarynav {
    display: inline-block;
    padding: 2px 10px;
    text-align: center;
}
.primarynav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 4px;
}
.primarynav a:hover {
    text-decoration: underline;
    background-color: #5B5B5B;
}
.current {
    border-bottom: solid 3px white;
}
#main-content {
	width: 77%;
	float:left;
	margin: 0;
	padding: 0 1% 0 0;
}
#secondary-content {
	width: 20%;
	float: left;
	margin: 3.5em 0;
	padding: 0 1%;
	background-color: #D86836;
	color: white;
}
#secondary-content h4{
	color:white !important;
}
#footer{
	width:100%;
	clear:both;
	color:#D86836;
}
.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) 
  .column {
    width: 100%;
  }



input[type=text], select, textarea {
  width: 100%; 
  padding: 12px;  
  border: 1px solid #ccc; 
  border-radius: 4px; 
  box-sizing: border-box; 
  margin-top: 6px; 
  margin-bottom: 16px; 
  resize: vertical 
}
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: #45a049;
}
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  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: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  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: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}