@media print {
	@page {
		margin: 0;
	}
	body {
		margin: 1px;
	}
	#printbutton, .dontprint {
		display: none;
	}
}

body {
	width: 100%;
	height: 100%;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	background: whitesmoke;
	padding: 0;
	margin: 0;
	overflow: auto;
}

h1{font-size:24px;}
h2{font-size:19px;}
h3{font-size:16px;}
h4{font-size:14px;}
h5{font-size:12px;}
h6{font-size:11px;}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: whitesmoke;
}
::-webkit-scrollbar {
	width: 5px;
	background-color: whitesmoke;
}
::-webkit-scrollbar-thumb {
	background-color: #333333;
}

a {
	text-decoration: none;
	color: crimson;
	cursor: pointer;
	-webkit-transition:  color 0.1s ease-in-out;
	-moz-transition:  color 0.1s ease-in-out;
	-ms-transition:  color 0.1s ease-in-out;
	-o-transition:  color 0.1s ease-in-out;
	transition:  color 0.1s ease-in-out;
}
a:hover {
	color: #333333;
}
a.light:hover {
	color: whitesmoke;
}

strike {
	color: red;
}
.green {
	color: green;
}
.red {
	color: red;
}
.strikethrough {
	position: relative;
}
.strikethrough:before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	right: 0;
	border-top: 1px solid;
	border-color: inherit;

	-webkit-transform:rotate(-5deg);
	-moz-transform:rotate(-5deg);
	-ms-transform:rotate(-5deg);
	-o-transform:rotate(-5deg);
	transform:rotate(-5deg);
}

label, input, select {
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 1.5em;
	vertical-align: middle;
}

input[type=text] {
	width: 16em;
}
input[type=number] {
	width: 4em;
}
input[type=button], input[type=submit] {
	border-color: crimson;
	background-color: crimson;
	color: white;
	cursor: pointer;
}
input[type=button]:hover, input[type=submit]:hover {
	background-color: #333333;
	cursor: pointer;
}
input[type=button]:disabled, input[type=submit]:disabled {
	border-color: #888888;
	background-color: #888888;
	cursor: default;
}

content table {
	border-spacing: 0;
	border-collapse: separate;
	border: 1px solid black;
	width: 100%;
}
content table th, content table td {
	padding: 10px;
}
content table th {
	border-bottom: 1px solid black;
}

.sortable th, .sortable thead td {
	cursor: pointer;
}

/* The Modal (background) */
.modal {
	color: #333333;
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
	background-color: whitesmoke;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 80%; /* Could be more or less, depending on screen size */
}
/* The Close Button */
.modal-close {
	color: crimson;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
.modal-close:hover,
.modal-close:focus {
	color: #333333;
	text-decoration: none;
	cursor: pointer;
}

/* Tooltip container */
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
/* Tooltip text */
.tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;
	/* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 1;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
	visibility: visible;
}