/*							*/
/*   Copyright 2022 © Allwebco Design Corporation	*/
/*							*/
/*							*/
/*   COLORS THAT CAN BE USED (all lowercase):		*/
/*   black | blue | green | gray | teal | white		*/
/*------------------------------------------------------*/
/*   EDIT COLOR ON NEXT 2 LINES				*/
/*   1ST LINE IS FOR PAGES, 2ND LINE IS FOR THE MENU	*/



@import url("colors/green.css");

@import url("colors/green-menu.css");



/* MEDIA QUERIES FOR MOBILE - DO NOT EDIT */

@import url("colors/media-queries.css");


/* COMPACT CAPTCHA BLACK */

/* CAPTCHA - DO NOT EDIT */

.capbox {
	background-color: #000000;
	background-image: linear-gradient(#666666, #000000);
	border: #CC0000 0px solid;
	border-width: 2px 2px 2px 20px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	display: inline-block;
	padding: 5px 3px 5px 8px;
	border-radius: 4px 4px 4px 4px;
	}

.capbox-inner {
	font: bold 12px arial, sans-serif;
	color: #FFFFFF;
	background-color: transparent;
	margin: 0px auto 0px auto;
	padding: 3px 10px 5px 6px;
	border-radius: 4px;
	display: inline-block;
	vertical-align: middle;
	}

#CaptchaDiv {
	color: #FFFFFF;
	font: normal 25px Impact, Charcoal, arial, sans-serif;
	font-style: italic;
	text-align: center;
	vertical-align: middle;
	background-color: #000000;
	user-select: none;
	display: inline-block;
	padding: 3px 10px 3px 5px;
	margin-right: 4px;
	border-radius: 4px;
	}

#CaptchaInput {
	border: #CC0000 2px solid;
	margin: 3px 0px 1px 0px;
	width: 105px;
	}


#Matt Scripts

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {

  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 {

}

/* 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 {

}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

