html, body {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

.okZone {
	border: 1px green solid;
	color: green;
}

.errorZone {
	border: 1px red solid;
	color: red;
}

.standardPanel {
	background-color: rgba(225,225,225,0.9);
	border: 5px solid rgba(200,200,200,1);
	border-radius: 25px;
	padding: 25px;
}

.panelHide {
	background-color: white;
	border: 2px solid red;
	border-radius: 5px;
	color: red;
	font-weight: bold;
	padding: 0px 3px 0px 3px;
	position: absolute;
	right: 0px;
	top: 0px;
}

.clickable {
	cursor: pointer;
}

.hidden {
	display: none;
}