@charset "utf-8";

/* Temp start /
div {
	border: 1px;
	border-color: red;
	border-style: solid;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Temp end */
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	/*background: url(../img/body.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
	padding: 10px;*/
	background-color: black;
}

.flex-container {
	display: flex;
	flex-flow: column;
	height: 100%;
	min-width: 1100px;
	max-width: 80%;
	margin: auto;
}

.flex-container::after {
	content: "";
	display: table;
	clear: both;
}

.flex-container .filler {
	flex: 0 1 auto;
	padding: 10px 0px 0px 0px;
}

.flex-container .header {
	flex: 0 1 auto;
	background-color: #666666;
	text-align: center;
	padding: 9px 0px 4px 0px;
	margin: 0;
}

.flex-container .header img {
	margin: 0 auto;
	border-radius: 10px 10px 10px 10px;
}

/* hide content scrollbar */
.flex-container .content::-webkit-scrollbar {
	display: none;
}

.flex-container .content {
	flex: 1 1 auto;
	background: #dbdfe7;
	padding: 10px;
	overflow-y: scroll;
	z-index: 1;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.flex-container .logcontent {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-container .footer {
	flex: 0 1 auto;
	background-color: #666666;
	text-align: center;
	padding: 5px;
}

.roundtop5 {
	border-radius: 5px 5px 0px 0px;
}

.roundbot5 {
  border-radius: 0px 0px 5px 5px;
}

.roundtop10 {
	border-radius: 10px 10px 0px 0px;
}

.roundbot10 {
  border-radius: 0px 0px 10px 10px;
}

.error {
	margin-top: 30px;
	color: #af0c0c;
	line-height: 26px;
}
 
.success {
	margin-top: 30px;
	color: green;
}

/*
html {
    overflow: -moz-scrollbars-vertical; /* For FF /
    -ms-overflow-y: scroll; /* For IE /
    overflow-y: scroll; /* For others & old IE /
}

.container {
	padding: 10px;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.contentleft {
	float: left;
	width: 200px;
	min-height: 500px;
	padding: 20px;
	background: darkgray;
}

.contentright {
	padding: 20px 20px 30px 20px; /*30 ivm admininfobar... /
	position: relative;
}


.divTable{
	display: table;
	width: 800px;
}

.divTableRow {
	display: table-row;
}

.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}

.divTableCell, .divTableHead {
	border: 1px solid #999999;
	display: table-cell;
	padding: 3px 5px;
}

.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}

.divTableBody {
	display: table-row-group;
}

.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
/* Responsive layout - makes the content columns stack on top of each other instead of next to each other /
@media screen and (max-width: 600px) {
  .contents.side, .contents.middle {
    width: 100%;
  }
}

*/
