@font-face {
	font-family: 'Open Sans';
	src: url('/fonts/opensans-regular-webfont.ttf');
}

@-webkit-keyframes slideRight { from { left:44px; } to { left:104px; } }
@-moz-keyframes slideRight { from { left:44px; } to { left:104px; } }
@keyframes slideRight { from { left:44px; } to { left:104px; } }
 
.slide-right {
	left: 34px;
	-webkit-animation:slideRight ease 1;
	-moz-animation:slideRight ease 1;
	animation:slideRight ease 1;

	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration: 0.6s;
	-moz-animation-duration: 0.6s;
	animation-duration: 0.6s;

	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.locked-right {
	left: 104px;
}

html {
	width: 100%;
	background-color: #9d9d9d;
	-webkit-font-smoothing: antialiased;
	font-family: 'Open Sans', Calibri, 'nimbus-sans', Helvetica, sans-serif;
	font-size: 1em;
}

body {
	width: 100%;
	min-width: 320px;
	margin: 0 auto;
	background-color: #e6e6e6;
	color: #363636;
}

a {
	color: #363636;
}

#header {
	min-height: 80px;
	position: fixed;
	width: 100%;
	background-color: white;
	box-shadow: 0px -5px 25px 0px #000000;
	z-index: 1;
}

#title-div {
	height: 28px;
	width: 320px;
	float:left;
}

#title-div img {
	position: absolute;
	margin-top: 22px;
	margin-left: 25px;
	background-color: white;
}

#header-links-container {
	float: right;
	margin-top: 37px;
}

#header-links-container a {
	text-decoration: none;
	margin: 20px;
}

#header-links-container a:last-child {
	margin-right: 40px;
}

.header-dummy {
	height: 80px;
}

#main-body {
	max-width: 1200px;
	margin: auto;
	border: 1px solid #d4d4d4;
	border-top: none;
	border-bottom: none;
}

.page-container {
	background-color: #eee;
	padding: 37px;
}

#footer {
	height: 220px;
	background-color: #9d9d9d;
	text-align: center;
}

.social-media-link {
	display: inline-block;
	margin: 45px 20px 25px 20px;
}

.social-media-link img{
	width: 40px;
	height: 40px;
}

#copyright {
	display: inline-block;
	color: white;
	text-decoration: none;
}

.title-photo-container {
	text-align: center;
	background-color: white;
	padding: 60px 0px 50px 0px;
}

.title-photo {
	display: inline-block;
	max-width: calc(100vw - 94px);
	max-height: 480px;
	margin: 10px;
	box-shadow: 0px 2px 10px -2px #222;
}

/* Mobile header media queries */

@media screen
and (max-width: 1200px) {

	#main-body {
		border: none;
	}
}

@media screen
and (max-width: 779px) {

	#header {
		position: relative;
		min-height: 100px;
	}

	#title-div img {
		margin-left: calc(50vw - 141px);
	}

	.header-dummy {
		height: 0px;
	}
	
	#header-links-container {
		float: left;
		clear: both;
		margin-top: 39px;
		margin-left: calc(50vw - 108px);
	}

	#header-links-container a:last-child {
		margin-right: 0px;
	}
}
