﻿<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />

<link rel="icon" href="CMSbyCW_favicon_black.png" style="border-radius: 20px;">


/* ==== CW Simple Site - Sitewide Styles ==== */

body {
  font-size: 1em;
  font-family: "Raleway", "Verdana", sans-serif;
  margin: 0em;
  padding-left: 0px;
  padding-right: 0px;
  padding: 0px;
  background: #fdfdfd;
  color: black;
}

.top-header {
  background-color: whitesmoke;
  padding: 1em;
  text-align: center;
}


/* ==== CW Simple Site - 2025 Rebuilt Sticky Menu  Design ==== */

#cmsstickynavbar {
  position: sticky;
  top: 0;
  overflow: hidden;
  background-color: whitesmoke;
  float: center;
}

#cmsstickynavbar a {
  float: center;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

#cmsstickynavbar a:hover {
  background-color: #ddd;
  color: black;
}

#cmsstickynavbar a.active {
  background-color: darkblue;
  color: white;
}

.container {
  padding: 1em;
}



/* ==== CW Simple Site - 2025 Rebuilt Overlay Design ==== */


.cmsoverlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-y: hidden;
  transition: 0.5s;
}

.cmsoverlay-content {
  position: column;
  top: 10%;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.cmsoverlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 1.5em;
  color: #818181;
  display: block;
  transition: 0.4s;
}

.cmsoverlay a:hover, 
.cmsoverlay a:focus {
  color: #f1f1f1;
  text-decoration: underline;
}

.cmsoverlay .closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: #818181;
  align-items: right;
}

@media screen and (max-height: 450px) {
  .cmsoverlay {overflow-y: auto;}
  .cmsoverlay a {font-size: 20px}
  .cmsoverlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

a.one:link {color:lightgray; text-decoration:none;}
a.one:visited {color:lightgray;text-decoration:none;}
a.one:hover {color:white; text-decoration:underline;}

header {
  background-color: whitesmoke;
  color: #1E4C91;
  padding: 1em 0;
}


div#header {
  background-color: whitesmoke;
  color: #1E4C91;
}

.logo {
  font-size: 1.5em;
  margin: 0;
}

nav {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}

nav a {
  color: #1E4C91;
  text-decoration: none;
  font-weight: bolder;
}

nav a:hover {
  text-decoration: underline;
}


/* ==== CW Simple Site - Responsive Menu ==== */

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8em;
  color: #1E4C91;
  cursor: pointer;
  transition: 0.5s;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    transition: 0.5s;
    }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: transparent;
    color: #1E4C91 !important;
    position: absolute;
    top: 30px;
    left: 0;
    text-align: center !important;
    padding-left: 0px;
    padding-right: 0px;
    padding: 0em 0;
    z-index: 100;
    transition: 0.5s;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    }

  .nav-links.show {
    display: flex;
    transition: 0.5s;
    }

  nav ul li {
    padding: 0.7em 0;
    }

  nav ul li a {
    font-size: 1.1em;
    text-align: center !important;
    font-weight: bolder;
    }
}



/* ==== CW Simple Site - Active Link Styling ==== */

nav a.active {
  text-decoration: underline;
  color: #1E4C91; /* highlight */
  background: whitesmoke;
  background-color: transparent;
  text-align: center !important;
  border-radius: 2px;
  font-weight: bolder;
  text-decoration: underline;
}

@media (max-width: 768px) {
  nav a.active {
  background: whitesmoke;
  background-color: transparent;
  text-decoration: underline;
  text-decoration-color: #1E4C91;
  display: block;
  padding: 0.5em 0;
  text-align: center !important;
  font-weight: bolder;
  }
}


/* ==== CW Simple Site - Sticky Menu + Content ==== */

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: white;
  }
    
.sticky + .main {
  padding-top: 40px;
  }


/* ==== CW Simple Site - Sticky Menu + Content Main renamed to .container ==== */

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: white;
  }
    
.sticky + .container {
  padding-top: 40px;
  }

/* ==== CW Simple Site - Main Content 1 ==== */

main {
  width: 90%;
  margin: 0em auto;
  min-height: 60vh;
}

/* ==== CW Simple Site - Main Content 2 Renamed to Container so it matches CMSbyCW ==== */

container {
  width: 90%;
  margin: 0em auto;
  min-height: 60vh;
}

/* ==== CW Simple Site - Widget Share Buttons  ==== */

widget {
  font-family: "Raleway", "Verdana", sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
  text-align: left;
  padding:0px; 
  font-size:1em;
  }

/* ==== CW Simple Site - #CW Style the "footer" links ==== */

footer {
  text-align: center;
  padding-left: 0px;
  padding-right: 0px;
  padding: 1em 0;
  background: whitesmoke;
  color: #fff;
  margin-top: 1em;
}

.footer {
    background-color: transparent;
    color: #1E4C91;
    padding: 0;
}

a:link, a:visited {
    background-color: transparent;
    color: #1E4C91;
    padding: 0;
    text-align: left;
    text-decoration: none;
    display: inline-block;
}

a:hover, a:active {
    background-color: transparent;
    color: #1E4C91;
	font-weight: bolder;
	text-decoration: underline;
}
	
/* ==== CW Simple Site - Smileys==== */

#cwsmileblue,
cwsmileblue,
cwsmileyblue {
  font-size:24px;
}
	
#cwsmilewhite,
cwsmilewhite,
cwsmileywhite {
  font-size:24px;
}	


/* ==== CW Simple Site - Modal - GDPR==== */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.5s
}

/* Modal Content */
.modal-content {
  font-size:0.75em;
  position: fixed;
  bottom: 0;
  background-color: #fefefe;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

/* The Close Button */
.close,
close {
  color: darkgray;
  float: right;
  font-size: 26px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 0.5em 0.5em;
  background-color: #1E4C91;
  color: white;
}

.modal-body {padding: 0px 0.7em;}
.modal-footer {
  padding: 0.5em 0.5em;
  background-color: #1E4C91;
  color: white;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}


