body, table, td, th, div, span, h1, option, select {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
}

input.short {
	width: 3em;
}

input.number {
	text-align: right;
}

div#content {
	max-width: 1200px;
	margin: auto;
}

div.flex-main {
	margin-top: 15px;
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
}

div.flex-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

div.flex-wrap {
	flex-wrap: wrap;
	display: -webkit-flex; /* Safari */
	-webkit-flex-wrap: wrap; /* Safari 6.1+ */
}
	
div.flex-col {
	display: flex;
	flex-direction: column;
}

div.flex-twocol {
	width: 48%;
	min-width: 550px;
}

div.border {
	border: 1px solid #BBBBBB;
	border-radius: 5px;
	margin: 3px;
	padding: 8px;
}

div.flexitem {
	padding: 3px;
	margin: 2px;
	display: inline-block;
	white-space: nowrap;
}

div.nowrap {
	display: inline-block;
	white-space: nowrap;
}

div.spacer {
	margin-left: 2px;
	margin-right: 2px;
	vertical-align: bottom;
}

div.noborder {
	margin: 3px;
	padding: 8px;
}

div.tooltip {
	display: inline-block;
    position: absolute;
    z-index: 99999999;
	opacity: 0;
	visibility: hidden;
	border: 2px dashed black;
	border-radius: 5px;
	padding: 10px;
	margin: 10px;
	background-color: white;
}

div.tooltipdiv:hover .tooltip {
    visibility: visible;
	opacity: 1;
}

button {
	font-size: 1.2em;
	border-radius: 3px;
}

select.longselect {
	width: 125px;
}

select.midselect {
	width: 90px;
}

select.shortselect {
	width: 70px;
}

input#eventname {
	width: 120px;
}

label.checkboxlabel {
	white-space: nowrap;
	color: black;
	background-color: white;
	border: 1px solid #5F5F5F;
	display: inline-block;
	box-shadow: #CECECE;
	border-radius: 4px;
	padding: 2px 10px 2px 10px;
	margin-top: 5px;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-o-user-select: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	cursor: pointer;
}

label.checkboxlabel::before {
	content: '';
	background: #fff;
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	border: 2px solid #3F3F3F;
	margin-right: 7px;
}

input[type="checkbox"]:checked + label.checkboxlabel::before {
	background-color: green;
}

input[type="checkbox"]:checked + label.checkboxlabel {
	color: white;
	background-color: #5F5F5F;
	border: 1px solid #5F5F5F;
}

input[type="checkbox"] {
	position: absolute;
    left: -9999px;
	display: inline-block;
}

.dt-body-right {
	text-align: right;
}

footer {
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
	font-size: 0.8em;
	background-color: white;
	padding: 5px;
	margin-top: 30px;
}

img.imgborder {
	box-shadow: 0 0 50px rgba(0, 0, 0, .5);
}

div.plain {
	margin: 50px;
}