﻿/* Dropdown Button */
.hide {
  display: none;
}
    
.myDIV:hover + .hide {
  display: block;
  color: red;
}
.dropbtn {
  background-color: maroon;
  color: white;
  padding-top: 15px ;
  padding-right: 10px ;
  padding-bottom: 15px ;
  padding-left: 10px ;
  font-size: 16px;
  border: none;
	margin: 5px;
	transition-duration: 0.2s;
	border-radius: 10px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: lightgray;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: darkgray;}

a:link    {color: maroon}
a:visited {color: green}
a:active  {color: red}
a:hover   {color: blue}

.bgcolor	{
	color: whitesmoke;
}
.caption {
	text-align: center;
	font-size: 10pt;
	font-family: "TimesNewRoman", Times, serif;
	}

a{
	color: white;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.navbar{
	min-height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #eeeeee;
	padding: 0 30px;
}
.nav-menu{
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
}
.nav-branding{
	font-size: large;
}
.nav-link{
	transition: 0.7s ease;
	font-size: large;
}
.nav-link:hover{
	color: dodgerblue;
}
.hamburger{
	display: none;
	cursor: pointer;
}
.bar{
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: black;
}
@media(max-width:768px){
	.hamburger{
		display: block;
	}
	.hamburger.active .bar:nth-child(2){
		opacity: 0;
	}
	.hamburger.active .bar:nth-child(1){
		transform: translateY(8px) rotate(45deg);
	}
	.hamburger.active .bar:nth-child(3){
		transform: translateY(-8px) rotate(-45deg);
	}
	.nav-menu{
	position: fixed;
	left: -100%;
	top: 70px;
	gap: 0;
	flex-direction: row;
	background-color: #dddddd;
	width: 100%;
	text-align: center;
	transition: 0.3s;
	}
	.nav-item{
	margin: 16px 0;
	color: #eeeeee;
	}
	.nav-menu.active{
	left: 0;
	flex-direction: column;
	}
}

.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}
/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}


.border		{
	border: 3px solid DarkRed;
}
.border:hover	{
	border-color: khaki;
}
.border:visited {
	color: dark darkgreen;
}
.border:active	{
	border-color: darkblue;
}
.border1		{
	border: 5px solid #eeeeee;
	border-radius: 20px;
}
.border1:hover	{
	border-color:  DarkKhaki;
}
.border1:active	{
	border-color: DarkRed;
}
* {
  box-sizing: border-box;
}


.bgcolor	{
	background-color: #f8f8f8;
}
.border		{
	border: 3px solid DarkRed;
}
.border:hover	{
	border-color: khaki;
}
.border:visited {
	color: dark darkgreen;
}
.border:active	{
	border-color: darkblue;
}
* {
  box-sizing: border-box;
}

.button {
 	padding: 10px;
 	font-size: 14px;
	margin: 5px;
    transition-duration: 0.3s;
    border: 2px solid maroon;
	border-radius: 10px;
}
.button1 {
    background-color: #330033; 
    color: white; 
}
.button2 {
    background-color: maroon; 
    color: white; 
}
.button2:hover {
    background-color: white;
    color: maroon;
    border: 2px solid maroon;
}
.button3 {
    background-color: #003366; 
    color: white; 
}
.button3:hover {
    background-color: white;
    color: #003366;
    border: 2px solid #003366;
}
.credits {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 12px;
	text-align: center;
	background-color: #eeeeee;
	padding: 5px 0px;
	border:none;
	width: 100%;
	vertical-align: middle;
	}
h1 	{
	font-size: 14pt;
	font-weight: bold;
	text-indent: 0px;
}
h2 	{
	font-size: 12pt;
	font-weight: normal;
	text-indent: 20px;
	}
						 
h3	{
	text-align: center;
	font-size: 20pt;
	font-style:italic;
	color: maroon;
	}
h4 {
	font-size: 11pt;
	font-weight: normal;
	text-indent: 60px;
	}
h5	{
	text-align: center;
	font-size: 12pt;
	}
.header {
	width: 100%;
	font-family: "Times New Roman", Arial, Sans-serif;
	font-size: 30px;
	color: white;
	font-weight: bold;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	}
.header1 {
	background-color:#391023;
	}
.header2 {
	background-color: #333366;
	}
.header3 {
	background-color: #eeeeee;
	}
.header4 {
	background-color: #dddddd;
	font-size: 14px;
	font-weight:normal;
	}

img {
  width: 100%;
  height: auto;
}
.myDIV:hover + .hide {
  display: block;
  color: red;
}
.menu {
  	float: left;
	width: 18%;
	font-family: 'Verdana', 'Geneva', 'Tahoma', 'sans-serif';
	font-size: 14px;
	color: #660033;
	text-align: center;
	vertical-align: top;
	background-color: #eeeeee;
	padding-left:1%;
	padding-right:1%;
}
.main {
  	width: 100%;
  	padding: 1% 2%;
	font-size: 14px;
	font-family: 'Verdana', 'Geneva', 'Tahoma', 'sans-serif';
	text-align: left;
	color: #000000;
	background-color: #ffffff;
	vertical-align: top;
}
.padding	{
	padding:5px;
	}
.pageoutline { /* page outline */
	vertical-align: top;
	background-color: white;
	padding: 5px;
	border: none;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	}
.style1 {
	color: lightgray;
  	padding: 12px 16px;
  	text-decoration: none;
  	display: block;
}
.style2 { /* content text */
	text-align: left;
	width:50%;
	vertical-align:middle;
  	}
.style3 {
	width:100%;
	}

.style4 {  /*content with 50% width */
	width:50%;
	font-size: 14px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	color: #000000;
	background-color: white;
	vertical-align: top;
	text-align: left;
	padding: 5px;
	}
.style5 { /* content text for fire department */
	text-align: center;
    padding: 0px;
	width:20%;
	vertical-align:top;
  	}
.style7 { /* content image */
	padding-bottom: 10px
	}
.style8 { /* content image */
	padding-left: 20px
	}
.style9 {  /*content with 50% width */
	width:50%;
	border: 2px solid #83334e;
	font-size: 14px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	color: #000000;
	background-color: white;
	vertical-align: top;
	text-align: left;
	padding: 5px;
	}
.style10 { /* content text for fire department */
	text-align: center;
    font-weight: bold;
}
.style12 {  /*content columns with different widths */
	font-size: 14px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	color: #000000;
	background-color: white;
	padding: 5px;
}
.style19 {  /*content with 33% width */
	width:50%;
	border: 1px solid black;
	font-size: 14px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	color: #000000;
	background-color: white;
	vertical-align: top;
	text-align: left;
	padding: 5px;
	}
.style20 {
	border: 2px solid black;
	border-collapse: collapse;
	width:100%;
	text-align: center;
	}
.style21 {
	height: 30px;
	}
.style22 {
	border: 1px solid black;
	width: 35%;
	padding: 10px;
}
.style23 {
	border: 1px solid black;
	width: 65%;
	text-align: left;
	padding: 10px;
}
.style24 {
	border: 1px solid black;
	width: 20%;
}
table#t01fd { /* page outline for the fire department */
	vertical-align: top;
	background-color: white;
	border: 2px solid black;
	max-width: 900px;
	min-width: 300px;
	margin-left: auto;
	margin-right: auto;
	}
table#t02 { /* content */
	border: none;
	width: 100%;
	}
table#t04 { /* bottom links */
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 12px;
	text-align: center;
	border:none;
	width: 100%;
	vertical-align: middle;
	}
td#td02c { /* content with undefined width */
	width:100%;
	font-size: 14px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	color: #000000;
	background-color: white;
	vertical-align: top;
	text-align: left;
	padding: 5px;
	}
td#td02fd { /* centered content text for fire department*/
	text-align: center;
	width:100%;
	background-color: white;
	vertical-align: top;
	padding: 5px;
 	}
td#td04t { /* content text */
	text-align: left;
	width:100%;
	vertical-align:top;
	padding: 5px;
  	}
.title {
	font-family: "Times New Roman", Arial, Sans-serif;
	font-size: 24px;
	color:navy;
	font-weight: bold;
	font-style: italic;
	text-align: center;
}
.title1 {
}
.title2 {
	font-size: 20px;
}
.title2a {
	font-size: 20px;
	text-align: center;
	color:red;
}
.title3 {
	font-size: 18px;
	text-align: left;
}
.title3a {
	font-size: 18px;
	text-align: left;
	color:red;
}
.title4 {
	font-size: 16px;
}
.title5 {
	text-align: left;
	color: #FF3300;
}
.title6 {
	color:#237986;
}
