@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #990033;
	background-image: url(graphics/volcano%20background%20ORG.jpg);
}
.oneColLiqCtrHdr #container {
	width: 90%; /* the auto margins (in conjunction with a width) center the page */
	border: 5px ridge #CCFF00;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #990033;
	background-image: none;
	background-repeat: no-repeat;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.oneColLiqCtrHdr #header {
	background-color: #990033;
	float: left;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
}
.oneColLiqCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColLiqCtrHdr #mainContent {
	padding: 0 20px;
	background-color: #990033;
	border-top-color: #FFCC00;
	border-right-color: #FFCC00;
	border-bottom-color: #FFCC00;
	border-left-color: #FFCC00;
}
.oneColLiqCtrHdr #footer {
	padding: 0 10px;
} 
.oneColLiqCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}



/* Navbar container */
.navbar {
	overflow: auto;















  background-color: ;
	font-family: Arial;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-style: oblique;
	width: 100%;
	clear: both;
	float: left;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
	float: none;
	overflow: hidden;
	clear: none;
}

/* Dropdown button */
.dropdown .dropbtn {
	font-size: 16px;
	color: white;
	border: none;
	outline: none;
	padding: 14px 16px;

  background-color: #990033;
	font-family: inherit; /* Important for vertical align on mobile phones */
	margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #FFCC00;
}

/* Dropdown content (hidden by default) */
 .dropdown-content {
  display: none;
  position: absolute;
  background-color: ;
  min-width: 167px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: ;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #FFCC00;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  background-color: #990033;
}

a.nav-link:link
{
	color: #FFFFFF;
	text-decoration: underline;
}
a.nav-link:visited
{
	color: #FFFFFF;
	text-decoration: underline;
}
a.nav-link:hover
{
	color: #CCFF00;
	text-decoration: none;
	background-color: #8C001A;
}
