@media only screen and (max-width: 759px){
	body{
		/*display: inline-block;*/
		font-size: 16pt;
		font-family: 'Arial' !important;
	}
	input{
		font-family: 'Arial' !important;
		font-size: 16pt !important;
		line-height: 18px;
	}
}
body{
	font-family: 'Calibri';
}
.pointer{
	cursor: pointer;
}
.shine{
	display: inline-block;
	background-repeat: no-repeat;
	background-image: -webkit-linear-gradient(
		top left,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(255, 255, 255, 0.2) 37%,
		rgba(255, 255, 255, 0.8) 45%,
		rgba(255, 255, 255, 0.0) 50%
	),
	-webkit-linear-gradient(
		#000000, #ffffff
	);
	background-image: -moz-linear-gradient(
		0 0,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(255, 255, 255, 0.2) 37%,
		rgba(255, 255, 255, 0.8) 45%,
		rgba(255, 255, 255, 0.0) 50%
	),
	-moz-linear-gradient(
		#000000, #ffffff
	);
	background-image: -o-linear-gradient(
		0 0,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(255, 255, 255, 0.2) 37%,
		rgba(255, 255, 255, 0.8) 45%,
		rgba(255, 255, 255, 0.0) 50%
	),
	-o-linear-gradient(
		#000000, #ffffff
	);
	background-image: linear-gradient(
		0 0,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(255, 255, 255, 0.2) 37%,
		rgba(255, 255, 255, 0.8) 45%,
		rgba(255, 255, 255, 0.0) 50%
	),
	linear-gradient(
		#000000, #ffffff
	);
	background-position: -100px -100px, 0 0;
	-moz-background-size: 250% 250%, 100% 100%;
	background-size: 250% 250%, 100% 100%;
	-webkit-transition: background-position 0s ease;
	-moz-transition: background-position 0s ease;
	-o-transition: background-position 0s ease;
	transition: background-position 0s ease;
}
.shine:hover,
.shine:focus{
	background-position: 0 0, 0 0;
	-webkit-transition-duration: 0.5s;
		-moz-transition-duration: 0.5s;
			transition-duration: 0.5s;
}
.shine:active{
	top: 1px;   
}
.bigButton{
	box-shadow: 8px 8px 4px #888;
	width: 548px;
	height: 100px;
	display: block;
	text-align: center;
	vertical-align: middle;
	position: relative;
	margin-top: 30px;
}
.bigButtonCover{
	opacity: 0.8;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
.bigCaption{
	position: absolute;
	top: 40%;
	left: 0px;
	width: 100%;
	cursor: pointer;
	font-size: 12pt;
}
.mediumButton{
	box-shadow: 8px 8px 4px #888;
	width: 250px;
	height: 70px;
	text-align: center;
	vertical-align: middle;
	position: relative;
	margin-top: 30px;
}
.mediumButtonCover{
	opacity: 0.8;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
.mediumCaption{
	position: absolute;
	top: 35%;
	left: 0px;
	width: 100%;
	cursor: pointer;
}
.mediumShine{
	background-position: -250px -100px, 0 0;
}
.giantShine{
	background-position: -548px -100px, 0 0;
}
.dontShow{
	visibility: none;
}
.origin{
	position: absolute;
	top: 0px;
	left: 0px;
}
.square{
	background-color: #a8d3ff;
	position: absolute;
	width: 102px;
	height: 102px;
}
.square:hover{
	background-color: #bbddff;
	position: absolute;
	width: 102px;
	height: 102px;
}
.square1{
	top: 8px;
	left: 0px;
}
.square2{
	top: 119px;
	left: 0px;
}
.square3{
	top: 119px;
	left: 111px;
}
.blinking {
  animation: blinker 1s linear infinite;
}
@keyframes blinker {  
  50% { opacity: 0.0; }
}