*{
	margin: 0;
	padding: 0;
	overflow: auto;
	font-family: sans-serif;
	text-align: center;
}

.allContentClass
{
	background-color: #ffffff;
}

p
{
	text-align: left;
	font-size: 18px;
}

body
{
	width: 1850px;
	padding: 40px;
	background-color: #ffffff;
	margin: 0px;
	text-align: center;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

img
{
	margin: auto;
	/*height: 100%;*/
	border: 5px solid #000000;
	border-radius: 40px;
}

canvas
{
	margin: auto;
	/*height: 100%;*/
	border: 5px solid #000000;
	border-radius: 40px;
}

.error
{
	color: #FF0040;
}

.line
{
	display: flex;
	justify-content: center;
	flex-direction: row wrap;
	padding: 0px;
	text-align: center;
}

.stack
{
	padding: 0px;
	margin: 0px 10px;
	text-align: center;
}

.collapsible
{
	background-color: #208000;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 20px;
	cursor: pointer;
	padding: 20px;
	width: 75%;
	border: none;
	text-align: center;
	outline: none;
	/*font-size: 15px;*/
}

.collapsible.answer
{
	width: 95%;
	text-align: center;
}

.collapsible:hover
{
	background-color: #90C080;
}

.content
{
	width: 70%;
	display: none;
	text-align: left;
	padding: 15px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	background-color: #C8E0C0;
}

.content.answer
{
	text-align: center;
	width: 90%;
}

.content.answer p
{
	text-align: center;
}

.collapsible:after
{
	content: '\02795'; /* Unicode character for "plus" sign (+) */
	/*font-size: 13px;*/
	color: white;
	float: right;
	margin-left: 5px;
}

.active:after
{
	content: "\2796"; /* Unicode character for "minus" sign (-) */
	color: white;
	float: right;
	margin-left: 5px;
}

.asblock
{
	display: block;
	margin: auto;
}

p.asblock
{
	text-align: center;
	margin: auto;
}

label, input, select
{
	display: block; /* 1. oh noes, my inputs are styled as block... */
	font-size: 16px;
	margin: auto;
 /* width: 100%; */
}

input[type=text]
{
	outline: 5px, black;
	border: 5px, black;
}

input[type=submit], .linkbutton
/* .linkbutton:link, .linkbutton:visited, .linkbutton:active*/
{
	display: inline-block;
	background-color: #800020;
	outline: 0px;
	border: 5px;
	border-radius: 10px;
	border-style: outset;
	border-color: #800020;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	line-height: normal;
	text-align: center;
	padding: 2px 5px;
	margin: 0px 10px;
}

input[type=submit]:hover, .linkbutton:hover
{
	background-color: #C08090;
	border-color: #C08090;
}

table
{
	width: 100%;
}

thead
{
	position: relative;
	width: 100%;
	top: 0;
	left: 0;
}

tbody
{
	max-height: 100%;
	overflow: auto;
}

th
{
	padding: 10px;
	font-size: 20px;
	color: #FFFFFF;
	line-height: 1.4;
	text-align: center;
	background-color: #002080;
	font-weight: bolder;
}

td
{
	padding: 10px;
	font-size: 18px;
	color: #000;
	line-height: 1.4;
	text-align: center;
	font-weight: bold;
}

.colName
{
	width: 18%;
 }

.colNumber
{
	width: 7%;
}

.colStatus
{
	width: 13%;
}

.colAnswer
{
	width: 25%;
}

table tbody tr:nth-child(odd)
{
	background-color: #C0C8E0;
}

table tbody tr:nth-child(even)
{
	background-color: #E0E4F0;
}

.toolboxClass
{
	overflow: none;
	background-image: url('toolbox.png');
	background-position: 0px 0px;
	background-repeat: no-repeat;
	/*position: -webkit-sticky; /* Safari */
	position: absolute;
	width: 140px;
	height: 820px;
	left: 40px;
	top: 40px;
	transform-origin: top left;
}

.toolClass
{
	width: 60px;
	height: 60px;
	position: absolute;
	clip-path: circle(30px);
	background: none;
}

.selected
{
	background-image: url('selected.png');
	background-position: 0px 0px;
}