@charset "utf-8";
/* CSS Document */

html {
  max-width: 70ch;
  margin: auto;
  padding: 3em 1em;
}

h1,h2,h3,h4,h5,h6 {
  color: #8cc785;
  margin: 0 0 1.0em 0;
}



p,ul,li,ol {
  margin-bottom: 1.5em;
  color: #000;
  line-height: 1.75;
  font-size: 1.25em;
}

.fa-ul li a {
  margin-bottom: 1.5em;
  color: #3182c6;
  line-height: 1.75;
  font-size: 1.25em;
}

body	{
  background-color:#fff;
}

#container {
	border: 0.02em solid #000;
	border-radius: 0.3em;
  padding: 1.0em;
  background-color:#fff;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
text-align:center;
}


.announce	{
max-width: auto;
max-height:auto;
padding: 1.0em;
margin-bottom:2.0em;
background-color: #8cc785;
border: 0.2em solid #1ca51c;
}

.announce a:link	{
	color:#fff;
}

.announce a:visited	{
	color:#fff;
}



hr {
  padding: 0;
  border: none;
  border-top: thin dashed #8cc785;
  color: #651c32;
width:80%;
margin:0.7em auto 1.5em auto;
}


a	{
  font-size: 1.25em;	
}


a:link {
	color:#8cc785;
	text-decoration:none;
}

a:visited	{
	color:#8cc785;
			text-decoration:none;
}

a:hover	{
		color:purple;
			text-decoration:none;
}

a:active	{
		color:blue;
	text-decoration:none;
}


.img-align-right	{
display:block;
float:right;
margin:0 0 1.0em 1.0em;
border:1px solid #000;
padding:0;
}

.img-align-left	{
display:block;
float:left;
margin:0 1.0em 1.0em 0;
border:1px solid #000;
padding:0;
}


.button {
  display: inline-block;
  background-color: #8cc785;
  border: 0.2em solid #1ca51c;
  color: #fff;
  text-align: center;
  padding: 2em;
  width: auto;
  transition: all 0.5s;
  cursor: pointer;
  margin: 1.0em;
  	border-radius: 0.8em;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -1.0em;
  transition: 0.5s;
  font-size:4.0em;
  padding-left:1.0em;
  border:none;

}

.button:hover span {
  padding-right: 4.0em;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.button a {
color:#fff;	
font-size:2.2em;
}


* {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: 1.8em;
  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;
}

.prev	{
left:0 !important;
}

/* 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}
}


.mySlides img {
	border: 1px solid #000;
}