BODY, HTML {
	width:100%;
	height:100%;
}
BODY {
	position:relative;
	color:#000;
	background:#FFF;
	padding:0px;
	margin:0px;
	font-family: 'Fz Univers', Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: min(4vw, 2.5vh);
	-webkit-text-size-adjust:none;
}
BODY.home:before,
BODY.game:before,
BODY.win:before,
BODY.form:before {
	position: fixed;
	content:"";
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-image: url('../images/grnd.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index:0;
}
BODY.game:before {
	background-image: url('../images/grnd_game.jpg');
}
BODY.win:before {
	background-image: url('../images/grnd_win.jpg');
}
BODY.qrcode {
	background-color:#606060;
}

.body {
	padding-bottom:75px;
}
.fullscreen {
	position:absolute;
	top:0;
	left:0%;
	width:100%;
	height:100%;
	overflow:hidden;
}
.wrapper, .wrapperwide {
	position:relative;
	width:700px;
	margin:0px auto;
}
.narrow {
	position:relative;
	margin:0px auto;
	width: 90%;
}
P {
	margin-top:0.25em;
	margin-bottom:0.25em;
}
A {
}
A:link, A:visited {
	color:#3ba246;
}
B {
	font-weight: bold;
}
I, EM {
	font-style:italic;
	font-size:smaller;
}
SMALL {
	font-size:70%;
}
BIG {
	font-size:125%;
}
H1 {
	color:#0f1b63;
	font-size: 130%;
	margin:0.5em 0;
}
H2 {
	font-size: 120%;
	font-weight: bold;
	margin:1em 0;
}
.halfcolumn {
	float:left;
	width: calc((100% - 1 * 10px) / 2);
}
.halfcolumn:nth-child(2n + 2) {
	float:right;
}
.onethreecolumn {
	float:left;
	width: calc((100% - 2 * 10px) / 3);
}
.onethreecolumn:nth-child(3n + 2) {
	margin-left:10px;
}
.onethreecolumn:nth-child(3n + 3) {
	float:right;
}
.twothreecolumn {
	float:left;
	width: calc((100% * 2 - 10px) / 3);
}
.bigcolumn {
	float:left;
	width: calc(100% - 110px);
}
.smallcolumn {
	float:right;
	width: 100px;
}
._middle {
	position:absolute;
	width:100%;
	top:46%;
	-webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
         -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
._top {
	position: absolute;
	width:100%;
	top:7%;
	left:0;
}
._bottom {
	position: fixed;
	width:100%;
	bottom:0;
	left:0;
}
BODY.hasnavigation ._bottom {
	bottom:56px;
}
._fullwidth {
	width: 100%;
}
._halfwidth {
	width: 50%;
}
span.error {
	display:block;
	color:yellow;
	background-color: #cf2031;
	padding:5px;
	font-weight: normal;
	font-size: 75%;
	text-align:center;
	margin-top:5px;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
}
span.edit, span.list {
	display:inline-block;
	width:20px;
	height:20px;
	margin:0 1px;
	background: url(../images/icon_pin.png) no-repeat center center;
	background-size: 100% 100%;
	cursor: pointer;
}
span.edit {
	background-image: url(../images/icon_edit.png);
}
span.list {
	background-image: url(../images/icon_view.png);
}
.grey {
	color:#999;
}
.red {
	color:red;
}
.yellow {
	color:orange;
}
.blue {
	color:#0072ec;
}
.green {
	color:green;
}
.white {
	color:#FFF;
}
.required {
	display:inline-block;
	width:12px;
	height:12px;
	color:#F00;
	background: url(../images/required.png) no-repeat center center;
	background-size: 8px 8px;
	text-indent: -999px;
	overflow:hidden;
}
.nowrap {
	white-space:nowrap;
}
.message {
	display:block;
	margin:10px 0px;
	padding:10px;
	color:#FFF;
	background-color:red;
	text-align:center;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
}
.inputtext,
INPUT[type='text'],
INPUT[type='password'],
INPUT[type='date'],
INPUT[type='number'],
INPUT[type='file'],
TEXTAREA, .textarea,
SELECT {
	display:block;
	color:#999;
	border:1px solid #CCC;
	background-color: #FFF;
	font-family: inherit;
	font-weight: normal;
	font-size: 80%;
	text-transform: uppercase;
	margin:1px 0;
	padding:6px 20px;
	width: calc(100% - 42px);
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	outline: none;
	line-height:1.8em;
}
INPUT[type='text'].username, INPUT[type='number'].telephone, INPUT[type='password'].password {
	padding-left:50px;
	width: calc(100% - 42px - 30px);
	background-repeat: no-repeat;
	background-position: left 10px center;
	background-size: 20px 20px;
}
INPUT[type='text'].username {
	background-image: url('../images/ico_user.png');
}
INPUT[type='number'].telephone {
	background-image: url('../images/ico_tel.png');
}
INPUT[type='password'].password {
	background-image: url('../images/ico_tel.png');
}
INPUT[type='image'] {
	width:250px;
}
INPUT[type='date'] {
	min-height: 28px;
}
INPUT[type='date']::-webkit-datetime-edit {
	line-height: 1;
	padding: 0;
	margin-bottom: -2px;
}
INPUT[type='checkbox'],
INPUT[type='radio'] {
	border:1px solid #cf2031;
	background-color:#FFF;
	width: 22px;
	height:22px;
	margin:0;
	display: inline-grid;
	place-content: center;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
	-webkit-appearance: none;
	appearance: none;
}
INPUT[type='checkbox']::before,
INPUT[type='radio']::before {
	content: "";
	width:16px;
	height:16px;
	background-color:#cf2031;
	-webkit-border-radius:2px;
	   -moz-border-radius:2px;
	        border-radius:2px;
	opacity:0;
}
INPUT[type="checkbox"]:checked::before,
INPUT[type="radio"]:checked::before {
	opacity:1;
}
INPUT[type='number'].hidearrow::-webkit-outer-spin-button,
INPUT[type='number'].hidearrow::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.inputtext {
	white-space:nowrap;
	overflow:hidden;
	text-overflow: ellipsis;
}

TEXTAREA {
	height: calc(200px - 40px);
}
INPUT[type='text']:focus,
INPUT[type='password']:focus,
INPUT[type='date']:focus,
INPUT[type='number']:focus {
	border-color:#6bb745;
}
INPUT[type='text']:disabled,
INPUT[type='password']:disabled,
INPUT[type='date']:disabled,
INPUT[type='number']:disabled {
	color:#999;
}
SELECT {
	text-align: left;
	width: 100%;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	font-size: 100%;
	font-style:italic;
	color: #CCC;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	font-size: 100%;
	font-style:italic;
	color: #CCC;
	opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	font-size: 100%;
	font-style:italic;
	color: #CCC;
	opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
	font-size: 100%;
	font-style:italic;
	color: #CCC;
}
::-ms-input-placeholder { /* Microsoft Edge */
	font-size: 100%;
	font-style:italic;
	color: #CCC;
}

INPUT[type='reset'],
INPUT[type='button'],
INPUT[type='submit'] {
	display:inline-block;
	color:#FFF;
	border:none;
	background-color:#cf2031;
	padding:8px 30px;
	text-align:center;
	white-space : nowrap;
	font-family: inherit;
	font-weight: bold;
	font-size: 80%;
	-webkit-border-radius:50px;
	   -moz-border-radius:50px;
	        border-radius:50px;
	cursor: pointer;
	line-height:1.8em;
}
INPUT[type='button'].disabled,
INPUT[type='submit'].disabled {
	background-color:#b7b7b7;
	box-shadow: 1px 1px 5px inset #b7b7b7, 1px 1px 5px #b7b7b7;
	cursor:default;
}
INPUT[type='button'].solid,
INPUT[type='submit'].solid {
	padding-left: 20px;
	padding-right: 20px;
}

INPUT[type='submit'], INPUT[type='button'].submit {
}

.logo {
	padding-top:20px;
	text-align:center;
}

.navigation {
	position:fixed;
	left:0;
	bottom:0;
	width:100%;
	background-color: rgba(255,255,255,0.9);
	z-index:99;
}
.navigation ul {
	list-style-type:none;
	margin:0;
	padding:10px 0px;
	text-align:center;
	display:flex;
}
.navigation ul li {
	flex:1;
	flex-grow: 1;
	display:inline-block;
	margin:0;
	text-align:center;
}
.navigation ul li img {
	display:inline-block;
	width:20px;
	height:20px;
}
.navigation ul li span {
	display:inline-block;
	white-space:nowrap;
	margin-top:3px;
}
.navigation ul li a {
	text-decoration:none;
	font-size:small;
}
.navigation ul li a:link, .navigation ul li a:visited {
	color:#333;
}
.scrolling {
	margin:0px auto;
	width: 100%;
	overflow-x:auto;
}
.ttable {
	font-size: 16px;
	color:#333;
	background-color:#FFF;
	border-collapse: collapse;
}
.ttable > thead {
	background-color:#EEE;
}
.ttable > thead > tr,
.ttable > tbody > tr {
}
.ttable > thead > tr > th,
.ttable > tbody > tr > td,
.ttable > tfoot > tr > td {
	padding:10px;
	text-align:left;
	border-left: 1px dotted rgba(128,128,128,0.25);
	vertical-align: top;
}
.ttable > tbody > tr > td,
.ttable > tfoot > tr > td {
	border-top:1px solid #4f4f4f;
}
.ttable > tfoot {
	background-color:#EEE;
	font-weight:bold;
}

a.pagenav {
	display:inline-block;
	padding:5px 10px;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
	text-decoration:none;
	font-weight:bold;
}
a.pagenav:link, a.pagenav:visited {
	color:#3ba246;
	background-color:#FFF;
}
a.pagenav:hover,
a.pagenav.active {
	color:#003c49;
	background-color:#3ba246;
}
.textbold {
	font-family: inherit;
	font-weight: normal;
	margin-top:0.5em;
	line-height:1.2em;
}
.textbold b {
	font-weight: bold;
}
.larger {
	font-size: larger;
}
.bigger {
	margin:0;
	font-size: 350%;
	text-shadow: -2px -2px 0 #FFF, 2px -2px 0 #FFF, -2px  2px 0 #FFF, 2px  2px 0 #FFF;
}
.frame {
	display:block;
	position:relative;
	background-color: #FFF;
	box-shadow: 1px 1px 5px rgba(128,128,128,0.5);
	padding:10px 20px;
	padding-top:40px;
	margin:5px;
	margin-bottom:75px;
	-webkit-border-radius:20px;
	   -moz-border-radius:20px;
	        border-radius:20px;
}
.frame.hasicon {
	margin-top:60px;
}
.frame .icon {
	position:absolute;
	left: calc(50% - 50px);
	top: -50px;
	width:100px;
	heightL:100px;
	background-color: #FFF;
	box-shadow: 0px -1px 2px rgba(128,128,128,0.5);
	-webkit-border-radius:50%;
	   -moz-border-radius:50%;
	        border-radius:50%;
	overflow:hidden;
	z-index:0;
}
.frame .content {
	position:relative;
	z-index:1;
}

.topnavigation {
	position:fixed;
	left:0;
	top:0;
	width:100%;
	z-index:1;
	color:#FFF;
	background-color: #cf2031;
}
.topnavigation img {
	position: absolute;
	top:5px;
	left:5px;
}
.title {
	overflow:hidden;
	-webkit-border-top-left-radius:30px;
	    -moz-border-radius-topleft:30px;
		    border-top-left-radius:30px;
	-webkit-border-top-right-radius:30px;
	    -moz-border-radius-topright:30px;
		    border-top-right-radius:30px;
}
.board {
	position:relative;
	width:100%;
	padding-bottom:100%;
}
.circle {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:1;
}
.centerdot {
	position:absolute;
	top:42%;
	left:42%;
	width:16%;
	height:16%;
	z-index:2;
}
.arrow {
	position:absolute;
	bottom:0;
	left:45%;
	width:10%;
	height:10%;
	z-index:3;
}
.centerdot span,
.circle span,
.arrow span {
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	width:100%;
	height:100%;
	background-position:center center;
	background-repeat: no-repeat;
	background-size:100% 100%;
	-webkit-transform: translate(-50%,-50%);
       -moz-transform: translate(-50%,-50%);
         -o-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}
.centerdot span {
	background-image: url(../images/center.png);
}
.centerdot.start span {
	background-image: url(../images/center_start.png);
}
.circle span {
	background-image: url(../images/circle.png);
}
.arrow span {
	background-image: url(../images/pin.png);
}

.question {
	margin-top:20px;
	margin-bottom:10px;
	padding-top:10px;
	border-top: 1px dotted #999;
	font-weight:bold;
}
.question.first {
	margin-top:0;
	padding-top:0;
	border-top:none;
}
.answer {
	overflow:hidden;
	margin-top:5px;
}
.answer input[type='radio'] {
	float:left;
}
.answer p {
	float:right;
	margin-top:0;
	width: calc(100% - 30px);
}

.bigbutton {
	display:block;
	color:#999;
	border:1px solid #d3d3d3;
	background: #EEE;
	background: linear-gradient(0deg,rgba(238, 238, 238, 1) 0%, rgba(255, 255, 255, 1) 100%);
	margin:20px 5px;
	padding:12px 30px;
	text-align:center;
	white-space : nowrap;
	font-weight: bold;
	font-size:80%;
	text-decoration: none;
	-webkit-border-radius:50px;
	   -moz-border-radius:50px;
	        border-radius:50px;
	box-shadow: 0px 1px 5px rgba(128,128,128,0.5);
	cursor: pointer;
}
.bigbutton:link, .bigbutton:visited {
	color:#999;
}
.bigbutton span {
	color:#cf2031;
	font-size:120%;
}
.bigbutton.selected {
	border-color:#cf2031;
}
.bigbutton.selected:link, .bigbutton.selected:visited {
	color:#cf2031;
}
.qrbox {
	padding:30px;
	background: url('../images/qrbox.png') no-repeat center center;
	background-size: 100% 100%;
}
.qrcode {
	image-rendering: auto;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
}
