/*Collapsible Menu*/
html, body {
	/*Settings for the html and body of the page*/
	height:100%;
	margin: 0;
	padding: 0;
	background-color:#DCDCDC;
}
#wrapper {
	/*Settings for the entire page body, sometimes this is called container*/
	min-height: 100%;
	padding: 0 10px 0 10px;
	
}
#header  {
	/*Settings for the Header of the page*/
	text-align: center;
	text-shadow: 1px 1px 2px black, 0 0 25px white;
	font-family: Spectral, serif;
	font-size:150%;
	background-color:#000000;
	color:white;
}

#content {
	/*Settings for the content of the page*/
	background-color: #DCDCDC;
	overflow: auto;
	padding: 0 100px 60px 100px;
	min-height: 100vh;
}
#foot {
	/*Settings for the footer of the page*/
	background-color: #777;
	position: relative;
	height: 60px;
	margin-top: -60px;
	text-align: center;
}
.topnav {
  overflow: hidden;
  background-color: #777;
}
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 12px 10px 10px 5px;
  text-decoration: none;
  font-size: 20px;
}
.topnav a:hover {
  background-color: #777;
  color: black;
}
.topnav a.active {
  background-color: #333;
  color: white;
}
.topnav a:hover.active {
  background-color: #777;
  color: black;
}
.topnav .icon {
  display: none;
  padding: 0 0 0 0;
}
@media screen and (max-width: 500px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
	
  }
}
.all-browsers {
	margin: 0;
	margin-top: 5px;
	padding: 15px;
	background-color: #DCDCDC;
}
@media only screen and (min-width: 500px) {
.all-browsers {
	margin: 0;
	margin-top: 5px;
	margin-right:5px;
	padding: 15px;
	background-color: #DCDCDC;
	
}
}
.all-browsers > h1, .browser {
	margin: 10px;
	padding: 5px;
}

.browser {
	background: white;
}

.browser > h2, p {
	margin: 4px;
	font-size: 115%;
}
input[type=text], select, textarea {
  width: 75%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 6px 6px 6px 0;
  display: inline-block;
}
.formBox {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  margin-right:25%;
}
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 50%;
  margin-top: 6px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
th, td {
	padding: 5px;
}
.faqButton{
  border: none;
  outline:none;
  background-color: #DCDCDC;
  cursor: pointer;
  display: block;
  text-align:left;
}
.faqBrowser {
	background: white;
	display:none;
	text-align:left;
  padding:5px 0 5px 2px;
}

.faqBrowser > h2, p, li {
	margin: 4px;
	font-size: 115%;
	padding:5px 0 5px 0;
}
