body { 
    color:#000000;
	background-color:#F4F4F4;
	font-family:  verdana, helvetica, arial, sans-serif ;
	font-size:1.0em;
 }
 
 #banner {
	 display:flex;
	 background-color:#A7C7E7;
	 align-items: center;
 }

button.banneritem,
 a.banneritem { 
	display: inline-block;
	font-size: 16px;
	margin-left: 40px;
	padding:6px 12px;
	background-color: #4682B4;
	color: #E5E4E2;
	font-family: tahoma, helvetica,sans-serif;
	text-decoration: none;
	border:2px solid #333029;
	border-radius: 12px;
	-webkit-border-radius: 12px;
 }
 @media screen and (max-width: 800px) {
button.banneritem,
a.banneritem { 
	font-size: 13px;
	margin-left: 30px;
	padding:4px 8px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
}}

@media screen and (max-width: 580px) {
button.banneritem,
a.banneritem { 
	font-size: 10px;
	margin-left: 20px;
	padding:2px 5px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
}}


/* The dropdown container a span*/
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  float: none;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown:hover .dropdown-content {
  display: block;
}

#manage:hover,
#more:hover,
 a:hover { text-decoration:underline; color:black; background-color:pink; }
 
 /* These are for all the regular forms*/
  label {
  display: inline-block;
  vertical-align: middle;
  width: 150px;
  }
  @media screen and (max-width: 800px) {
  label {
  display: block;
  margin-top: 10px;
 }}
 
  textarea {
  display: inline-block;
  margin-top: 10px;
 }
 @media screen and (max-width: 800px) {
 textarea {
  display: block;
  margin-top: 10px;
 }}
 
 input.submitbtn, 
 input[type="submit"]
 {
 background:#E8FFE8; 
 border-radius: 7px;
 border:2px solid #333029;
 padding:4px;
 color:#000000;
 margin-left:20px;
 }
 
 input.submitbtn:hover, 
 input[type="submit"]:hover {
 text-decoration:underline;
 background-color:pink;
 color:black;
 }
  
 fieldset {
	display:inline-block; 
	margin-left:30px;
 	border-radius: 10px;
	-webkit-border-radius: 10px;
 }
 
 div.showitm {
  margin-right: 5%;
  margin-left: 10px;
  margin-bottom: 10px;
  border-style:solid;
  border-width: thin;
  border-color:gray;
  border-radius:8px;
  -webkit-border-radius: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
 }
 

p.fancytext { font-style: italic; }
p.tinytext { font-size:8px; }
.smalltext { font-size:9px; }
.undln {text-decoration: underline;}
.bold {font-weight: bold;}
.ibold {font-weight: bold; font-style: italic; }

p.indent {
 margin-left:60px;
 margin-right:30px;
}

.rbutton {position:absolute; top:0; right:0;}
.lbutton{position:absolute; top:0; left:0; }

/* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color:#4CAF50;
    color: white;
}


/* The Modal (background) div, container  for image*/
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 70%; /* Full width */
  height: 80%; /* Full height */
  margin-left: 50px;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
div.myCaption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 100px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}