html, body {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: 'Dosis', serif;
	overflow: scroll;
}

::-webkit-scrollbar {
	width: 0px;
	height: 0px;
	background: transparent;
}

.container {
	height: 100%;
	width: 100%;
	background-image: url(images/background.png);
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	padding: 0;
	margin: 0;
}

.iframecontainer {
	height: 100%;
	width: 100%;
}

.header {
	height: 100px;
	width: 100%;
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	background-position: center;
	float: left;
}

.menubar {
	height: 50px;
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menuleft {
	height: 50px;
	width: 200px;
	background-image: url(images/menuleft.png);
	background-repeat: no-repeat;
	background-position: center;
	float: left;
}

.menuright {
	height: 50px;
	width: 200px;
	background-image: url(images/menuright.png);
	background-repeat: no-repeat;
	background-position: center;
	float: left;
}

.menuoption {
	height: 50px;
	width: 200px;
	background-image: url(images/menuoption.png);
	background-repeat: repeat-x;
	background-position: center;
	float: left;
	text-align: center;
}

.menuoption a:link, a:visited {
	text-decoration: none;
	line-height: 50px;
	font-size: 20px;
	color: white;
}

.menuoption a:hover {
	font-size: 30px;
	color: black;
}

.menuoption p {
	padding: 0;
	margin: 0;
	text-decoration: none;
	line-height: 50px;
	font-size: 20px;
	color: white;
}

.menuoption p:hover {
	font-size: 30px;
	color: black;
}

.menudrop {
	display: none;
	position: absolute;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
	width: 200px;
	background-color: rgba(192,192,192,0.4);
}

.menuoption:hover .menudrop {
	display: block;
}

.content {
	height: calc(100% - 150px);
	width: 100%;
	float: left;
	display: block;
}

iframe {
	min-height: 100%;
	width: 100%;
	float: left;
}

table {
	width: 500px;
	text-align: center;
	border-collapse: collapse;
	border: 2px solid white;
	color: white;
}

th {
	margin-top: 30px;
	font-size: 20px;
	border: 2px solid white;
}

td {
	border: 2px solid white;	
}


.map {
	background-image: url("images/background.png");
	background-position: center;
	color: white;
	cursor: pointer;
	padding: 18px;
	width: 500px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: 2px solid white;
	outline: none;
	margin-top: 25px;
	font-size: 25px;
	text-align: center;
}

.active, .map:hover {
	background-image: url("images/background.png");
	background-position: center;
	opacity: 0.5;
}

.codstats {
	width: 500px;
	margin-left: auto;
	margin-right: auto;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.wins {
	font-size: 40px;
}