.st-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.st-container > input,
.st-container > a {
	position: fixed;
	width: 60%;
	bottom: 0;
	cursor: pointer;
	font-size: 16px;
	height: 34px;
	line-height: 34px;
}

.mBottom > input,
.mBottom > a {
	cursor: pointer;
	font-size: 16px;
	height: 34px;
	line-height: 34px;
}

.st-container > input {
	opacity: 0;
	z-index: 10000;
}

.mBottom > input {
	opacity: 0;
	z-index: 10000;
}

.st-container > a {
	z-index: 10;
	font-weight: 700;
	color: #fff;
	text-align: left;
	text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
}


.st-container:before {
	content: '';
	position: fixed;
	width: 100%;
	height: 34px;
	z-index: 98;
	bottom: 0;
}


#st-control-1, #st-control-1 + a { left: 25px; text-transform:uppercase; bottom: 45px; }
#st-control-2, #st-control-2 + a { left: 25px; bottom: 15px; font-size: 90%; }
#st-control-3, #st-control-3 + a { left: 55px; bottom: 15px; font-size: 90%; }
#st-control-4, #st-control-4 + a { margin-left: -8px;}

.st-container > input:checked + a,
.st-container > input:checked:hover + a{}


.st-container > input:checked + a:after,
.st-container > input:checked:hover + a:after{}

.st-container > input:hover + a {text-decoration:underline; }
.st-container > input:hover + a:after {	border-bottom-color: #fff; }

.st-scroll,
.st-panel {
	position: relative;
	width: 100%;
	height: 100%;
	}
	
.st-scroll {
	top: 0;
	left: 0;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	
	/* Let's enforce some hardware acceleration */
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
}

.st-panel{ overflow: hidden; } 

#st-control-1:checked ~ .st-scroll {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-o-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
}
#st-control-2:checked ~ .st-scroll {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
#st-control-3:checked ~ .st-scroll {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-o-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
}
#st-control-4:checked ~ .st-scroll {
	-webkit-transform: translateY(-300%);
	-moz-transform: translateY(-300%);
	-o-transform: translateY(-300%);
	-ms-transform: translateY(-300%);
	transform: translateY(-300%);
}

/* Content elements */
.st-panel h1 {color: #fff;
	text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
	font-size: 16px;
	line-height: 20px;
	margin: 0; padding: 20px 0 0 0;
	}
.st-panel .mTop {
	position: absolute;
	text-align: left;
	line-height: 20px;
	width: 65%;
	left: 25%;
	margin: 0;
	padding: 0;
	bottom: 65%;
	z-index: 9999;
	-webkit-backface-visibility: hidden;
}

.st-panel .mBottom {
	position: absolute;
	text-align: left;
	line-height: 20px;
	width: 65%;
	left: 25%;
	margin: 0;
	padding: 0;
	top: 35%;
	z-index: 9999;
	-webkit-backface-visibility: hidden;
}

#st-control-1:checked ~ .st-scroll #st-panel-1 .mTop,
#st-control-2:checked ~ .st-scroll #st-panel-2 .mTop,
#st-control-3:checked ~ .st-scroll #st-panel-3 .mTop,
#st-control-4:checked ~ .st-scroll #st-panel-4 .mTop{
	-webkit-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	animation: moveDown 0.6s ease-in-out 0.2s backwards;
}
@-webkit-keyframes moveDown{ 0% { -webkit-transform: translateY(-40px); opacity: 0;}
	100% { -webkit-transform: translateY(0px); opacity: 1;}}
@-moz-keyframes moveDown{ 0% { -moz-transform: translateY(-40px); opacity: 0;	}
	100% { -moz-transform: translateY(0px);	opacity: 1;	}}
@-o-keyframes moveDown{	0% { -o-transform: translateY(-40px); opacity: 0; }
	100% { -o-transform: translateY(0px); opacity: 1; }}
@-ms-keyframes moveDown{ 0% { -ms-transform: translateY(-40px); opacity: 0; }
	100% { -ms-transform: translateY(0px); opacity: 1;}}
@keyframes moveDown{ 0% { transform: translateY(-40px);	opacity: 0;	}
	100% { transform: translateY(0px); 	opacity: 1;	}}

#st-control-1:checked ~ .st-scroll #st-panel-1 .mBottom,
#st-control-2:checked ~ .st-scroll #st-panel-2 .mBottom,
#st-control-3:checked ~ .st-scroll #st-panel-3 .mBottom,
#st-control-4:checked ~ .st-scroll #st-panel-4 .mBottom{
	-webkit-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	animation: moveUp 0.6s ease-in-out 0.2s backwards;
}

@-webkit-keyframes moveUp{
	0% { -webkit-transform: translateY(40px); opacity: 0; }
	100% { -webkit-transform: translateY(0px); opacity: 1; }
}

@-moz-keyframes moveUp{
	0% { -moz-transform: translateY(40px); opacity: 0; }
	100% { -moz-transform: translateY(0px); opacity: 1; }
}

@-o-keyframes moveUp{
	0% { -o-transform: translateY(40px); opacity: 0; }
	100% { -o-transform: translateY(0px);  opacity: 1; }
}

@-ms-keyframes moveUp{
	0% { -ms-transform: translateY(40px); opacity: 0; }
	100% { -ms-transform: translateY(0px);  opacity: 1; }
}

@keyframes moveUp{
	0% {transform: translateY(40px); opacity: 0; }
	100% {transform: translateY(0px); opacity: 1; }
}


/*=================================================	
 #Media Queries
==================================================*/
    
		/* Big Screens */
	@media (min-width: 1200px) {
	}
	
	/* Portrait tablet to landscape and desktop */
    @media (min-width: 980px) and (max-width: 1199px) {
	
	}	
	

	/* Portrait tablet to landscape and desktop */
    @media (min-width: 769px) and (max-width: 979px) {
	}
	

	/* Landscape phone to portrait tablet */
    @media (max-width: 768px) {
	.st-color {background: url(../img/marina-sm.png) no-repeat 50% 0%; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: 0;}
	}
	
	/* Landscape phones and down */
    @media (max-height: 480px) {
	
	.st-container > a {	font-size: 12px; width: 100%;}
	.st-panel h1 {
	font-size: 12px;
	margin: 0; padding: 5px 0 0 0;
	line-height: 16px;
	}
	.st-panel .mTop {
	position: absolute;
	font-size: 12px;
	width: 50%;
	left: 15px;
	text-align: left;
	line-height: 16px;
	margin: 0;
	padding: 0;
	top: 10px;
	-webkit-backface-visibility: hidden;
	}
	.st-panel .mBottom {
	position: absolute;
	text-align: left;
	font-size: 12px;
	line-height: 16px;
	color: #fff;
	z-index: 2;
	padding: 0;
	margin: 0;
	width: 45%;
	left: 50%;
	top: 10px;
	}
	
	.mBottom > a {
	cursor: pointer;
	font-size: 12px;
	height: 24px;
	line-height: 24px;
	}

	#st-control-1:checked ~ .st-scroll #st-panel-1 .mBottom,
	#st-control-2:checked ~ .st-scroll #st-panel-2 .mBottom,
	#st-control-3:checked ~ .st-scroll #st-panel-3 .mBottom{
	-webkit-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	animation: moveDown 0.6s ease-in-out 0.2s backwards;
	}
	
	#st-control-1, #st-control-1 + a { left: 15px; text-transform:uppercase; bottom: 25px; }
	#st-control-2, #st-control-2 + a { left: 15px; bottom: 5px; font-size: 11px; }
	#st-control-3, #st-control-3 + a { left: 45px; bottom: 5px; font-size: 11px; }

	.license {position:absolute; bottom: 10px; right: 2px; height: 45px; width: 50px; background: url(../img/AICILogoIT-sm.png) no-repeat; z-index: -1;}
	.overlay {outline-offset: -4px;}

	}
	
	/* Landscape phones and down */
    @media (max-width: 320px) {
	
	.st-container > a {	font-size: 12px; width: 100%;}
	.st-panel h1 {
	font-size: 12px;
	margin: 0; padding: 5px 0 0 0;
	line-height: 16px;
	}
	.st-panel .mTop {
	position: absolute;
	font-size: 12px;
	width: 80%;
	left: 15px;
	text-align: left;
	line-height: 16px;
	margin: 0;
	padding: 0;
	top: 10px;
	-webkit-backface-visibility: hidden;
	}
	.st-panel .mBottom {
	position: absolute;
	text-align: left;
	font-size: 12px;
	line-height: 16px;
	color: #fff;
	z-index: 2;
	padding: 0;
	margin: 0;
	width: 80%;
	left: 15px;
	top: 90px;
	}
	
	#st-control-1:checked ~ .st-scroll #st-panel-1 .mBottom,
	#st-control-2:checked ~ .st-scroll #st-panel-2 .mBottom,
	#st-control-3:checked ~ .st-scroll #st-panel-3 .mBottom{
	-webkit-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	animation: moveDown 0.6s ease-in-out 0.2s backwards;
}
	
	#st-control-1, #st-control-1 + a { left: 15px; text-transform:uppercase; bottom: 25px; }
	#st-control-2, #st-control-2 + a { left: 15px; bottom: 5px; font-size: 11px; }
	#st-control-3, #st-control-3 + a { left: 45px; bottom: 5px; font-size: 11px; }

	.license {position:absolute; bottom: 10px; right: 2px; height: 45px; width: 50px; background: url(../img/AICILogoIT-sm.png) no-repeat; z-index: -1;}
	.overlay {outline-offset: -4px;}

	}