@charset "UTF-8";

/*===================================*/
/* Reset 2.0 by Eric Meyer
/*===================================*/

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; }

/*=================================*/
/* Webfonts
/*=================================*/

@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400;
  src: local('Bitter-Regular'), url(Bitter-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url(SourceSansPro-Regular.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(SourceSansPro-Bold.ttf) format('truetype');
}

/*===================================*/
/* Hacks
/*===================================*/

*, *::before, *::after {
  box-sizing: border-box;
}

/*
 * Clear Fix:
 * http://stackoverflow.com/questions/211383/which-method-of-clearfix-is-best
 * http://www.cssmojo.com/latest_new_clearfix_so_far/
 */
.clear::before,
.clear::after {
    content: "";
    display: table;
    clear: both;
}

/*=================================*/
/* Main Styles
/*=================================*/

body {
	background: #FFFFFF;
	color: #696969;
	font-family: Source Sans Pro, sans-serif;
	font-size: 17px;
	line-height: 1.8;
	text-align: center;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
}

a {
	color: #B1CA64;
	cursor: pointer;
	text-decoration: none;
}

a:hover, a:active {
	color: #696969;
}

h1, h2, h3, h4, h5, h6 {
	color: #222222;
	font-family: Bitter, sans-serif;
}

h1 { font-size: 30px; }

h2 { font-size: 24px; padding-top:30px }

h3 { font-size: 20px; }

h4 { font-size: 16px; }

h5 { font-size: 14px; }

h6 { font-size: 12px; }

p { margin-bottom: 5px; }

/*=================================*/
/* Site Title
/*=================================*/

#site-title {
	font-family: Bitter, sans-serif;
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 20px;
	color: #222222;
}

#site-title:hover { color: #FF6666; }

#site-slogan {
	margin: 0 auto 20px;
	max-width: 620px;
	width: 100%;
}

/*=================================*/
/* Structure
/*=================================*/

/*
	Sticky Footer:
	.content-wrapper und #footer als table-row sowie body als table
*/

html {
	height: 100%;
	margin: 0;
}

body {
	display: table;
	height: 100%;
	width: 100%;
}

.content-wrapper {
	display: table-row;
	height: 100%;
}

.wrap {
	margin: 0 auto;
	max-width: 700px;
	width: 95%;
}

header { margin-top: 50px; }

#content {
	padding-bottom: 50px;
}

#footer { display: table-row; }

#footer .wrap {
	padding-bottom: 10px;
	padding-top: 40px;
}

/*=================================*/
/* Navigation Styles
/*=================================*/

nav {
	margin-bottom: 10px;
	margin-top: 25px;
	text-align: center;
	position: relative;
}

nav ul { width: 100%; }

nav li { display: inline; }

nav li::before {
	color: #696969;
	content: '·';
	font-size: 16px;
}

nav li:first-child::before {
	content: '';
	margin: 0;
}

nav a,
nav a:visited {
	color: #696969;
	display: inline-block;
	font-family: Source Sans Pro, sans-serif;
	font-size: 16px;
	padding: 0 10px;
}

nav a:hover { color: #B1CA64; }

.line {
	border-bottom: 1px solid #E3E3E3;
	width: 200px;
	margin: 58px auto 58px;
}

#content {
	margin: 62px 62px 0px 62px;
}

/*=================================*/
/* Footer Styles
/*=================================*/

#footer {
	background: #FFFFFF;
	padding: 40px 0 20px;
}

.footer-text {
	color: #BBBBBB;
	font-family: Source Sans Pro, sans-serif;
	font-size: 14px;
}

#footer a,
#footer a:visited { color: #696969 }

#footer a:hover,
#footer a:focus {
	color: #FF6666;
}

/*=================================*/
/* Columnes
/*=================================*/

.col {
	float: left;
	width: 50%;
	text-align: left;

}

.col.left {
	padding: 0 15px 0 0;
}

.col.right {
	padding: 0 0 0 15px;
}

/*=================================*/
/* Call to Action
/*=================================*/

.call-to-action a {
	display: inline-block;
	color: #55555A;
	white-space: nowrap;
	text-align: center;
	font-size: 20px;
	height: 51px;
	line-height: 47px;
	letter-spacing: 0px;
	border-radius: 3px;
	border: 2px solid #55555A;
	width: 45%;
	background-color: #FFF;
	transition: border-color 0.1s ease-in-out 0s, color 0.1s ease-in-out 0s;
	margin: 10px 0 10px 0;
}

.call-to-action a:hover,
.call-to-action a:focus {
	color: #B1CA64;
	border-color: #B1CA64;
}

.call-to-action a + a {
	margin-left: 10px;
}

noscript {
	color: #D3304D;
}

/*=================================*/
/* Small Screen Styles
/*=================================*/

@media (max-width: 510px) {
	.col {
		float: none;
		width: auto;
		text-align: center;
	}
	
	.call-to-action a {
		width: 100%;
		display: block;
	}
	
	.call-to-action a + a {
		margin-left: 0;
	}
}