/* CSS Document */

html, body {
	/*	height: 100%;*/
/*
	margin: 0;
	padding-top: 0;
	padding-right: 0;
	padding-left: 0;
*/
/*	padding-bottom: 70px;*/
	background-color: black;
	color: white;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	position: relative;
	min-height: 95vh;
}
div.center {
	position: absolute;
	height: 95%;
	width: 100%;
}
div img.centerImage {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin-top: auto;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: auto;
}
a {
	color: white;
}
a:visited {
	color: white;
	height: auto;
}
main {
	padding-bottom: 100px;
}
footer {
	position: absolute;
	bottom: 0px;
	text-align: center;
	width: 100%;
	height: 100px;
	background-color: black;
}
.accordion {
	background-color: #333;
	color: #fff;
	cursor: pointer;
	padding: 18px;
	/* margin-top: 10px; */
	width: 90%;
	border: 2px solid #666;
	border-radius: 10px;
	text-align: center;
	outline: none;
	font-size: 15px;
	font-weight: bold;
	transition: 0.4s;
}
.accordion:hover {
	background-color: #777;
	border: 2px solid #777;
}
.active {
	background-color: #555;
	border: 2px solid #777;
}
.panel {
/*	padding: 10px;*/
	text-align: center;
/*	display: none;*/
	width: 88%;
	margin: auto;
/*	overflow: hidden;*/
	border-left: #1F1F1F solid 1px;
	border-right: #1F1F1F solid 1px;
	border-bottom: #1F1F1F solid 1px;
/*	outline: #1F1F1F solid 1px;*/
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}
.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}
.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
