@charset "utf-8";

@import url(https://fonts.googleapis.com/css?family=Lato);

@keyframes fade-in {
	from {
		opacity: 0;
		filter: alpha(opacity=0);
	}
	to {
		opacity: 1;
		filter: alpha(opacity=100);
	}
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%; /* needed for container min-height */
	background-color: rgba(70,79,86,1);
	font-family: 'Gill Sans MT', 'Lato', sans-serif;
	color: rgba(70,79,86,1);
	font-size: 90%;
}

a {
	color: inherit !important;
	text-decoration: none !important;
}
a:hover {
	text-decoration: underline !important;
}

div#container {
  position: relative; /* needed for footer positioning*/
  height: auto !important;
  min-height: 100%;
	background-color: rgba(223,223,223,1);
	background-image: url(octopus.jpg);
	background-repeat: no-repeat;
	background-size: auto;
	animation-name: fade-in;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	max-width: 1100px;
	margin: 0 auto;
}

div#content2 , a#pointer2 {
	display: none;
}

div.floatMiddle {
	margin-top: 2.6em !important;
}

div.content {
  padding: 1em;
	text-align: center;
	display: none;
}

div.content div.one {
	font-size: 4em;
	margin: 0.5em 0 0 0;
}
div.content div.two {
	font-size: 2.6em;
	margin: 1.7em 0 0 0;
}
div.content div.three {
	font-size: 2em;
	margin: 2.8em 0 0 0;
}
.no-top {
	margin-top: 1.7em !important;
}

div.content div.two ul {
	text-align: left;
	list-style: square;
	margin: 0 0 0 30px;
	display: inline-block;
}

div.content div.two ul li {
	margin-bottom: 0.2em;
}

@keyframes pointer1-animate {
	from {
		margin-right: 1em;
	}
	to {
		margin-right: 0;
	}
}

a#pointer1 {
  position: absolute;
	cursor: pointer;
  bottom: 0;
	right: 0;
	display: inline-block;
	border: none;
	text-decoration: none;
	width: 120px;
	height: 60px;
	background-image: url(pointer.png);
	padding: 0;
	margin: 0 1em 1em 0;
}

a#pointer1:hover {
	animation-name: pointer1-animate;
	animation-duration: 0.4s;
	animation-iteration-count: 2;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
}

@keyframes pointer2-animate {
	from {
		margin-left: 1em;
	}
	to {
		margin-left: 0;
	}
}

a#pointer2 {
  position: absolute;
	cursor: pointer;
  bottom: 0;
	left: 0;
	display: inline-block;
	border: none;
	text-decoration: none;
	width: 120px;
	height: 60px;
	background-image: url(pointer.png);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
	padding: 0;
	margin: 0 0 1em 1em;
	display: none;
}

a#pointer2:hover {
	animation-name: pointer2-animate;
	animation-duration: 0.4s;
	animation-iteration-count: 2;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
}
