@charset "UTF-8";
/* CSS Document */

/* Reset CSS */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
    box-sizing: border-box;
}

/* Structure */

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background-color: #00aca1; /* Si */
}

#top {
	background-color: #fff;
	padding: 0 30px;
	width: 100%;
}

#top-content {
	height: 100px;
	margin: 0 auto;
	max-width: 1140px;
	overflow: hidden;
	padding: 30px 0;
}

#top-left {
	clear: none;
	float: left;
	width: 50%;
}

#top-right {
	clear: none;
	float: right;
	width: 50%;
}

#middle {
	background-color: #fff;
	padding: 0 30px;
	width: 100%;
}

#middle-content {
	margin: 0 auto;
	max-width: 1140px;
	padding: 30px 0 180px;
	position: relative;
}

#bottom {
	background-color: #00aca1; /* Si */
	padding: 0 30px;
	width: 100%;
}

#bottom-content {
	margin: 0 auto;
	max-width: 1140px;
	padding: 30px 0;
}

/* Typography */

h1, h2 {
    font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	letter-spacing: 0.01em;
}

h1 {
	color: #fff;
    font-size: 24px;
	line-height: 1.25em;
	text-align: center;
}

h2 {
	color: #000;
    font-size: 20px;
	line-height: 2em;
	text-align: right;
}

a, a:visited {
	background-color: transparent;
	color: #000;
	outline: none;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover, a:focus, a:active {
	color: #00aca1; /* Si */
}

/* Animation */

#ellipse  {
    border-radius: 50%;
    height: 300px;
	margin: 0 auto;
	position: relative;
	-webkit-transform: scaleX(2);
	-moz-transform: scaleX(2);
	-ms-transform: scaleX(2);
	-o-transform: scaleX(2);
	transform: scaleX(2);
    width: 300px;
}

#sue, #deirdre, #si, #dom, #foster {
 	-webkit-animation: orbit 15s infinite linear;
 	-moz-animation: orbit 15s infinite linear;
 	-ms-animation: orbit 15s infinite linear;
 	-o-animation: orbit 15s infinite linear;
 	animation: orbit 15s infinite linear;
	display: block;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 60px;
}

#si {
 	-webkit-animation-delay: 0s;
 	-moz-animation-delay: 0s;
 	-ms-animation-delay: 0s;
 	-o-animation-delay: 0s;
 	animation-delay: 0s;
	background: url(images/si.png) no-repeat center center;
	background-size: 60px 280px;
	z-index: 3;
}

#dom {
 	-webkit-animation-delay: -12s;
 	-moz-animation-delay: -12s;
 	-ms-animation-delay: -12s;
 	-o-animation-delay: -12s;
 	animation-delay: -12s;
	background: url(images/dom.png) no-repeat center center;
	background-size: 60px 280px;
	z-index: 2;
}

#foster {
 	-webkit-animation-delay: -9s;
 	-moz-animation-delay: -9s;
 	-ms-animation-delay: -9s;
 	-o-animation-delay: -9s;
 	animation-delay: -9s;
	background: url(images/foster.png) no-repeat center center;
	background-size: 60px 280px;
	z-index: 1;
}

#sue {
 	-webkit-animation-delay: -6s;
 	-moz-animation-delay: -6s;
 	-ms-animation-delay: -6s;
 	-o-animation-delay: -6s;
 	animation-delay: -6s;
	background: url(images/sue.png) no-repeat center center;
	background-size: 60px 280px;
	z-index: 5;
}

#deirdre {
 	-webkit-animation-delay: -3s;
 	-moz-animation-delay: -3s;
 	-ms-animation-delay: -3s;
 	-o-animation-delay: -3s;
 	animation-delay: -3s;
	background: url(images/deirdre.png) no-repeat center center;
	background-size: 60px 280px;
	z-index: 4;
}

@-webkit-keyframes orbit {
    0%  { transform: rotate(0deg) translateY(150px) rotate(0deg) scale(1.0); opacity: 1.0; }
    25%  { transform: rotate(90deg) translateY(150px) rotate(-90deg) scale(0.8); opacity: 1.0; }
    50%  { transform: rotate(180deg) translateY(150px) rotate(-180deg) scale(0.6); opacity: 0.5; }
    75%  { transform: rotate(270deg) translateY(150px) rotate(-270deg) scale(0.8); opacity: 1.0; }
    100%  { transform: rotate(360deg) translateY(150px) rotate(-360deg) scale(1.0); opacity: 1.0; }
}

@-moz-keyframes orbit {
    0%  { transform: rotate(0deg) translateY(150px) rotate(0deg) scale(1.0); opacity: 1.0; }
    25%  { transform: rotate(90deg) translateY(150px) rotate(-90deg) scale(0.8); opacity: 1.0; }
    50%  { transform: rotate(180deg) translateY(150px) rotate(-180deg) scale(0.6); opacity: 0.5; }
    75%  { transform: rotate(270deg) translateY(150px) rotate(-270deg) scale(0.8); opacity: 1.0; }
    100%  { transform: rotate(360deg) translateY(150px) rotate(-360deg) scale(1.0); opacity: 1.0; }
}

@-o-keyframes orbit {
    0%  { transform: rotate(0deg) translateY(150px) rotate(0deg) scale(1.0); opacity: 1.0; }
    25%  { transform: rotate(90deg) translateY(150px) rotate(-90deg) scale(0.8); opacity: 1.0; }
    50%  { transform: rotate(180deg) translateY(150px) rotate(-180deg) scale(0.6); opacity: 0.5; }
    75%  { transform: rotate(270deg) translateY(150px) rotate(-270deg) scale(0.8); opacity: 1.0; }
    100%  { transform: rotate(360deg) translateY(150px) rotate(-360deg) scale(1.0); opacity: 1.0; }
}

@keyframes orbit {
    0%  { transform: rotate(0deg) translateY(150px) rotate(0deg) scale(1.0); opacity: 1.0; }
    25%  { transform: rotate(90deg) translateY(150px) rotate(-90deg) scale(0.8); opacity: 1.0; }
    50%  { transform: rotate(180deg) translateY(150px) rotate(-180deg) scale(0.6); opacity: 0.5; }
    75%  { transform: rotate(270deg) translateY(150px) rotate(-270deg) scale(0.8); opacity: 1.0; }
    100%  { transform: rotate(360deg) translateY(150px) rotate(-360deg) scale(1.0); opacity: 1.0; }
}