
/* ----------------------------Divs------------------------------ */
body {
    /* The outside background */
	/*background: #dcdcdc;*/
  background-color:rgb(177,176,164);
	margin: 0;
	padding-top: 10px;
    padding-bottom: 10px;
}

.container {
    /* The main inside container */
	width: 1300px;
	/*background: #FFF;*/
  background-color:rgb(137,141,124);
	margin: 0 auto; 
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Lora', serif;
    color: #5f5d53;
}

.header {
    /* The Title Bar  */

    padding-top: 20px;
		text-align:center;
    text-decoration: none;
    letter-spacing: 2px;



    

}

.topnav {
    /* Top Navigation Bar*/
	text-align:center;
    /*background-color:#FFF;*/
    padding-bottom: 15px;
    font-size: 18px;
    letter-spacing: 2px;
    font-family: 'Open Sans', sans-serif;
    


}

.PageTitle{
    /* Title of each Page*/
    text-align: center;

}

.IndexPageTitle{
  /* Title of each Page*/
  letter-spacing: 2px;
  padding-left: 130px;
  padding-top: 40px;
  font-weight: bold;
  margin-left: 50px;
  font-size: 14px;


}

.PageTitleLeft{
  /* Title of each Page*/
  letter-spacing: 2px;
  padding-left: 130px;
  font-weight: bold;
  margin-left: 50px;
  text-align: center;

}

.content {
    /* Main Inside Text Area */
	padding: 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: bold;

}

.IndexText{
  width: 300px;
  font-size: 40px;
  font-weight:normal;
  font-style: normal;
  background-color:rgb(177,176,164);
  border-radius: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 50px;
  text-align: center;
  font-family: 'Spectral', serif;
  width: 380px;
  letter-spacing: 2px;
  line-height: 100%;
}

.centeredText{

    text-align: center;
    padding-top: 150px;

  }

.footer {
    /* The footer */
	padding: 10px 0;
	/*background: #FFF;*/
    font-size: 12px;
    text-align: center;
}

.btn{   
    font-size: 20px;
    padding: 5;
    border: none;

}

.EmailForm{
  margin-top: 20px;

}


/* ----------------------------End Divs------------------------------ */

/* -------------------Element/tag selectors------------------------- */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 
	padding-right: 15px;
	padding-left: 15px;     
    font-family: 'Open Sans', sans-serif;
}

h1{
    font-family: 'Abhaya Libre', serif;
    font-size: 35px;
    font-weight: 300;
}

h3{
    text-align: left;
    letter-spacing: 2px;
}

h4{
    text-align: center;
    letter-spacing: 2px;
}

h5{
    text-align: center;

}

h6{
    font-size: 14px;
    line-height:200%;

}


li{
    display: inline;
    padding: 15px;
    font-weight: 50;

}
a img { 
	border: none;
}

a:link {
	color: #5f5d53;
    text-decoration: none;
 
}
a:visited {
    color: #5f5d53;
	text-decoration: none;
}
a:hover, a:active, a:focus { 
	text-decoration: none;
}

a{
    color: #42413C;
}

.column {
    float: left;
    width: 50%;

  }
  .columnQuarter {
    float: left;
    width: 25%;

  }

  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

 /* p{
 font-size: 12px;
 font-weight: bold;
  }*/


/* ----------------End Element/tag selectors---------------------- */






/* ~~ miscellaneous float/clear classes ~~ */
.fltrt { 
	float: right;
	margin-left: 8px;
}
.fltlft { 
	float: left;
	margin-right: 8px;
}
.clearfloat { 
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*----------------------Slide Show Stuff------------------------ */

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 500px;
  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: 2s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}