BODY, HTML {
	width:100%;
	height:100%;
}
BODY {
	position:relative;
	color:#000;
	background-color:#FFF;
	padding:0px;
	margin:0px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: min(4vw, 2.5vh); 
	-webkit-text-size-adjust:none;
}
BODY::before {
	content: ''; /* Required for pseudo-elements */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:#000 url(../images/grnd.jpg) no-repeat bottom center fixed;
	background-size: cover;
	z-index: -1;
}
BODY.screen:before {
	background: #000;
}
.body {
	padding-bottom:50px;
}
BODY.screen .body {
	padding-bottom:0px;
}
.fullscreen {
	position:absolute;
	top:0;
	left:0%;
	width:100%;
	height:100%;
	overflow:hidden;
}
.wrapper {
	position:relative;
	margin:0px auto;
	width:calc(100% - 300px);
}
.narrow {
	position:relative;
	margin:0px auto;
	width: 50%;
}
P {
	margin-top:0.5em;
	margin-bottom:0.5em;
}
A {
}
A:link, A:visited {
	color:#3ba246;
}
B {
	font-weight: bold;
}
I, EM {
	font-style:italic;
	font-size:smaller;
}
SMALL {
	font-size:60%;
}
H1 {
	font-size: 150%;
	font-weight: bold;
	margin:1em 0;
}
H2 {
	font-size: 120%;
	font-weight: bold;
	margin:1em 0;
}
.halfcolumn {
	float:left;
	width: calc((100% - 1 * 10px) / 2);
	margin-left:10px;
}
.halfcolumn:first-child {
	margin-left:0px;
}
.onethreecolumn {
	float:left;
	width: calc((100% - 2 * 10px) / 3);
	margin-left:10px;
}
.onethreecolumn:first-child {
	margin-left:0px;
}
.bigcolumn {
	float:left;
	width: calc(100% - 110px);
}
.smallcolumn {
	float:right;
	width: 100px;
}
.middle {
	position:absolute;
	width:100%;
	top:55%;
	-webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
         -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.bottom {
	position:absolute;
	width:100%;
	bottom:10%;
}
span.error {
	color:yellow;
	background-color:red;
	display:block;
	padding:5px;
	text-align:center;
	margin-top:5px;
	-webkit-border-radius:10px;
	   -moz-border-radius:10px;
	        border-radius:10px;
}
span.edit, span.download, span.check {
	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.check {
	background-image: url(../images/check.png);
}
span.download {
	background-image: url(../images/icon_download.png);
}
.grey {
	color:#999;
	font-style:italic;
}
.red {
	color:red;
}
.yellow {
	color:orange;
}
.blue {
	color:blue;
}
.required {
	display:inline-block;
	width:16px;
	height:16px;
	color:#F00;
	background: url(../images/required.png) no-repeat center center;
	background-size: 10px 10px;
	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='file'],
TEXTAREA, .textarea,
SELECT {
	display:block;
	color:#201621;
	border:none;
	background-color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	margin:1px 0;
	padding:10px;
	width: calc(100% - 20px);
	-webkit-border-radius:50px;
	   -moz-border-radius:50px;
	        border-radius:50px;
	-webkit-appearance: none;
	-webkit-box-shadow: 2px 4px 5px 0px rgba(0,0,0,0.5);
	   -moz-box-shadow: 2px 4px 5px 0px rgba(0,0,0,0.5);
	        box-shadow: 2px 4px 5px 0px rgba(0,0,0,0.5);
	outline: none;
}
INPUT[type='checkbox'],
INPUT[type='radio'] {
	width: 18px;
	height:18px;
	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,
SELECT {
	border-color:#6bb745;
}
INPUT[type='text']:disabled,
INPUT[type='password']:disabled,
INPUT[type='date']:disabled,
INPUT[type='number']:disabled,
SELECT {
	color:#999;
}
SELECT {
	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='text'].round {
	color:#2a6635;
	border: 2px solid #2a6635;
	background-color:#FFF;
	padding:40px 40px;
	width: calc(100% - 84px);
	font-weight:bold;
	font-size:150%;
	text-align:center;
	-webkit-border-radius:60px;
	   -moz-border-radius:60px;
	        border-radius:60px;
}

.bigbutton,
INPUT[type='reset'],
INPUT[type='button'],
INPUT[type='submit'] {
	display:inline-block;
	color:#201621;
	border:2px solid #FFF;
	margin:4px;
	padding:5px 20px;
	font-weight: bold;
	font-size: 100%;
	background-color:#999;
	-webkit-border-radius:50px;
	   -moz-border-radius:50px;
	        border-radius:50px;
	cursor: pointer;
	box-shadow: 0px 0px 0px 2px rgba(0,0,0,0.1),0px 0px 0px 4px rgba(255,255,255,0.5);
}
INPUT[type='submit'], INPUT[type='button'].submit {
	color:#FFF;
	border-color:#FFF;
	background-color:#e8c32d;
}
.logo {
	padding-top:30px;
	text-align:center;
}
.logo img {
	width:auto;
	height:40px;
}

.navigation {
	position:fixed;
	left:0;
	bottom:0;
	width:100%;
	z-index:1;
	background-color: rgba(255,255,255,0.9);
}
.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;
	vertical-align: top;
}
.ttable > tbody > tr > td,
.ttable > tfoot > tr > td {
	border-top:1px solid #201621;
}
.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;
}
.rounded {
	-webkit-border-radius:15px;
	   -moz-border-radius:15px;
	        border-radius:15px;
	overflow:hidden;
	margin-bottom:5px;
}
.textbold {
	color:#FFF;
	font-family: 'SVN-DIN Next', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 120%;
	line-height:1.2em;
}
#divScene {
	position:relative;
	width: 100%;
	padding-bottom: calc(100% * 1030 / 1920);
	background: url('../images/grnd_home.png') no-repeat center center;
	background-size: 100% 100%;
	z-index:1;
}
#divScene .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left:0;
	z-index:2;
	display:none;
}
#divScene .overlay.active {
	display:block;
}
#divScene .overlay.static {
	background: url('../images/cxcs.png') no-repeat center center;
	background-size: 100% 100%;
}
#divScene .overlay.pop {
	background: url('../images/cxcs_pop.png') repeat-x center left;
	background-size: 1400% 100%;
	-webkit-animation: introani 3s steps(13) forwards;
	   -moz-animation: introani 3s steps(13) forwards;
		-ms-animation: introani 3s steps(13) forwards;
		 -o-animation: introani 3s steps(13) forwards;
			animation: introani 3s steps(13) forwards;
}
#divScene .overlay.ani {
	background: url('../images/cxcs_ani.png') repeat-x center left;
	background-size: 1400% 100%;
	-webkit-animation: introani 2s steps(13) infinite;
	   -moz-animation: introani 2s steps(13) infinite;
		-ms-animation: introani 2s steps(13) infinite;
		 -o-animation: introani 2s steps(13) infinite;
			animation: introani 2s steps(13) infinite;
}
@-webkit-keyframes introani {
	from { background-position: 0px 0px; }
	to { background-position: -1300% 0px; }
}
@-moz-keyframes introani {
	from { background-position: 0px 0px; }
	to { background-position: -1300% 0px; }
}
@-ms-keyframes introani {
	from { background-position: 0px 0px; }
	to { background-position: -1300% 0px; }
}
@-o-keyframes introani {
	from { background-position: 0px 0px; }
	to { background-position: -1300% 0px; }
}
@keyframes introani {
	from { background-position: 0px 0px; }
	to { background-position: -1300% 0px; }
}
#divScene .wrap {
	position: absolute;
	width: 98%;
	height: 96.4%;
	top: 1.8%;
	left:1%;
}
#divScene div {
	position:absolute;
	width: calc(100% / 16);
	height: calc(100% / 7);
	perspective: 500px;
}
#divScene div span {
	position:absolute;
	display:block;
	top:2px;
	left:2px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	-webkit-transition: transform 1s;
	   -moz-transition: transform 1s;
	     -o-transition: transform 1s;
		    transition: transform 1s;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden; /* Safari */
	        backface-visibility: hidden;
}
#divScene div span:nth-child(1) {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: rotateY(180deg);
	z-index:2;
}
#divScene div span:nth-child(2) {
	background-color: rgba(200,115,140,0.1);
	transform: rotateY(0deg);
	z-index:1;
}
#divScene div span:nth-child(3) {
	z-index:0;
}
#divScene div.active span:nth-child(1),
#divScene div.force span:nth-child(1) {
	transform: rotateY(0deg);
}
#divScene div.active span:nth-child(2),
#divScene div.force span:nth-child(2) {
	background-color: rgba(200,115,140,1);
	transform: rotateY(180deg);
}
#divScene div.active span:nth-child(3),
#divScene div.force span:nth-child(3) {
	background-color:#000;
}
.row_0 {
	top:0;
}
.row_1 {
	top: calc(100% * 1 / 7);
}
.row_2 {
	top: calc(100% * 2 / 7);
}
.row_3 {
	top: calc(100% * 3 / 7);
}
.row_4 {
	top: calc(100% * 4 / 7);
}
.row_5 {
	top: calc(100% * 5 / 7);
}
.row_6 {
	top: calc(100% * 6 / 7);
}
.col_0 {
	left:0;
}
.col_1 {
	left: calc(100% * 1 / 16);
}
.col_2 {
	left: calc(100% * 2 / 16);
}
.col_3 {
	left: calc(100% * 3 / 16);
}
.col_4 {
	left: calc(100% * 4 / 16);
}
.col_5 {
	left: calc(100% * 5 / 16);
}
.col_6 {
	left: calc(100% * 6 / 16);
}
.col_7 {
	left: calc(100% * 7 / 16);
}
.col_8 {
	left: calc(100% * 8 / 16);
}
.col_9 {
	left: calc(100% * 9 / 16);
}
.col_10 {
	left: calc(100% * 10 / 16);
}
.col_11 {
	left: calc(100% * 11 / 16);
}
.col_12 {
	left: calc(100% * 12 / 16);
}
.col_13 {
	left: calc(100% * 13 / 16);
}
.col_14 {
	left: calc(100% * 14 / 16);
}
.col_15 {
	left: calc(100% * 15 / 16);
}
.portrait {
	display:inline-block;
	width:50%;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	   -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}
.portrait img {
	width: 100%;
}