/* Body and background */

body {
    font-family: Arial;
    margin: 0px;
    background: #dddddd;
}

body, html {
    /* height: 100%; */
}





/* Header and Navigation */

.header {
    padding: 30px;
    background: white;
    font-size: 50px;
	font-family: Gill Sans, sans-serif;
    font-weight: normal;
	/* color: #1e1e1e; */
	color: rgb(14, 58, 245);
}

.topnav {
    overflow: hidden;
    background-color: #333;

    /* Fixed Position */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1;
}

.topnav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.inactivenav a:hover {
    color: white;
    background-color: #1e1e1e;
}

.inactivenav a {
    color: white;
    background-color: #333;
}

.activenav a {
    color: white;
    background-color: rgb(14, 58, 245);
}

.activenav a:hover {
    color: white;
    background-color: rgb(14, 58, 245);
}





/* Colors */

.green {
    color: green;
}

.red {
    color: red;
}

.chapred {
    color: rgb(234, 51, 35);
    /* color: rgb(204, 40, 40); */
}

.chapblue {
    color: rgb(14, 58, 245);
    /* color: rgb(42, 92, 232); */
}





/* Main Page */

.page {
    padding: 20px;
    background: white;
}

.spacer {
    padding: 20px;
}

.whiteback {
    background: white;
}

.grayback {
    background: #f1f1f1;
}

.greenback {
    background: rgb(174, 229, 174);
}

.redback {
    background: rgb(255, 190, 190);
}

h1 {
    font-family: Rockwell, "Rockwell";
    font-weight: bold;
    font-size: 42px;
    color: rgb(234, 51, 35);

    margin-bottom: 0px;
}

h2 {
    font-family: Gill Sans, sans-serif;
    font-weight: normal;
    font-size: 28px;
    color: #333;

    margin-bottom: 0px;
}

h3, h5 {
    /* font-family: ; */
    font-weight: normal;
    font-size: 18px;
    color: #333;
    text-transform: uppercase;

    margin-bottom: 0px;
    margin-top: 30px;
}

h4 {
    /* font-family: ; */
    font-weight: bold;
    font-size: 28px;
    color: #333;
    text-transform: none;

    margin-top: 20px;
    margin-bottom: 0px;
}

h6 {
    /* font-family: ; */
    font-weight: bold;
    font-size: 16px;
    color: #333;
    text-transform: none;

    margin-bottom: 0px;
}

figcaption {
	font-style: italic;
	color: #333;
}

.mono {
    font-family: Courier;
}

.profimg {
    max-width: 40%;
}





/* Tables */

table {
	width: 100%;
}

th, td {
	text-align: left;
	border-bottom: 1px solid #333;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 10px;
	padding-right: 10px;
}

th {
	color: white;
	background-color: #333;
}





/* Links */

.standardlink a {
    color: rgb(14, 58, 245);
}

.standardlink a:hover {
    color: rgb(204, 40, 40);
}

.greenlink a {
    color: green;
}

.greenlink a:hover {
    color: limegreen;
}

.redlink a {
    color: red;
}

.redlink a:hover {
    color: rgb(234, 51, 35);
}



/* Buttons */

.btn {
	border: none; /* Remove borders */
	color: white; /* Add a text color */
	padding: 10px 16px; /* Add some padding */
	cursor: pointer; /* Add a pointer cursor on mouse-over */
	font-size: 16px;
}

.bluebtn {
	background-color: rgb(24, 68, 255); /* Deviates from Chap Blue */
}

.bluebtn:hover {
	background-color: rgb(4, 38, 205);
}

.graybtn {
	background-color: #333;
}

.graybtn:hover {
	background-color: #1e1e1e;
}

.redbtn {
	background-color: rgb(234, 51, 35);
}

.redbtn:hover {
	background-color: rgb(214, 21, 0);
}



/* Footer */

footer {
    padding: 20px;
    background: white;
    text-align: center;
}





/* Slide Show */

/* 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 0px;
    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 {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

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

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