/* Add here all your css styles (customizations) */


/*Font formatting*/
.foottext{
  color: white;
}

.leftsidetext {
  text-align: left;
}

.rightsidetext {
  text-align: right;
}

.fitehomename{
  color: white;
  font-size: large;
}

.navname{
  font-size: large;
}

/*Div display inline-block*/
.divline  {
	display: inline-block;
	margin-left: 10px;
	vertical-align: top;
	
}

/*End Div display inline-block*/


/* styled horizontal rule*/

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    margin: 3rem 3rem;
}

/*image overlay*/
* {box-sizing: border-box;}

.w3container {
  position: relative;
  width: 50%;
  max-width: 300px;
}

.w3image {
  display: block;
  width: 100%;
  height: auto;
}

.w3overlay {
  position: absolute; 
  bottom: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1; 
  width: 90%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

.w3container:hover .w3overlay {
  opacity: 1;
}



/*rounded corner hover*/
.hoverbox {
    display: inline-block;
    width: auto;
    height: auto;
 /*   padding-top: 2px;
    margin: 10px; */
    border: 1px solid #FFFFFF;
}

.hoverbox:hover {border: 1px solid #044990;} /* CSN - Blue */






/*  slider css */
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1980px;
  position: relative;
  margin: auto;
}

/* 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 {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 1.0s ease-out;
}

.active {
  background-color: #717171;
}

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

@-webkit-keyframes fade {
  from {opacity: .9} 
  to {opacity: 1}
}

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

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
/* end slider css */