@charset "utf-8";

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,address,cite,code,del,dfn,em,img,ins,q,small,strong,sub,sup,dl,dt,dd,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td { border:0;margin:0;padding:0;vertical-align:baseline; }
article,aside,figure,figure img,figcaption,hgroup,footer,header,nav,section,video,object { display:block; }
a img { border:0; }
* { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; outline:none; }

html, body {
	height:100%;
	width:100%;
	-webkit-text-size-adjust:100%;
}
body {
	background-color:#fff;
	font-family:"Roboto",sans-serif;
	font-weight:300;
	color:#333;
	font-size:16px;
	line-height:1.5em;
}

/* Grid Layout */

.container {
	position:relative;
	width:100%;
}
.row {
	position:relative;
	margin:0 auto;
	padding:0;
}
.group:before, .group:after {
	content:"";
	display:table;
}
.group:after {
	clear:both;
}
.group {
	zoom:1;
}
.width {
	max-width:1000px;
}
.span20, .span25, .span33, .span50, .span66, .span75 {
	float:left;
}
.span20 {
	width:20%;
}
.span25 {
	width:25%;
}
.span33 {
	width:33.33%;
}
.span50 {
	width:50%;
}
.span66 {
	width:66.66%; 
}
.span75 {
	width:75%; 
}
.span100 {
	width:100%;
}

/* Global Styles */

a:link, a:visited, a:hover, a:active {
	color:#528fcc;
	text-decoration:none;
}
b {
	font-weight:900;
}
.bgFadeWhite80 {
	background:url(../img/bgFadeWhite80.png);
	background:rgba(255,255,255,0.8);
}
.btn {
	display:inline-block;
	border:none;
	padding:8px 16px;
	background:none;
	text-decoration:none !important;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	cursor:pointer;
}
.btn:hover {
	text-decoration:none !important;
}
.btnDefault {
	border:1px solid #333;
	color:#333 !important;
	transition:background-color 250ms;
}
.btnDefault:hover {
	color:#fff !important;
	background-color:#808080;
	background-color:rgba(0,0,0,0.5);
}
.center {
	text-align:center;
}
h1, h2, h3. h4 {
	font-weight:300;
}
img {
	display:inline-block;
}
.padding {
	padding:24px;
}
.padding2 {
	padding:48px;
}
.padding3 {
	padding:72px;
}

/* Header */

header {
	line-height:1em;
}
header img {
	display:inline-block;
	width:122px;
	height:32px;
}

/* Footer */

footer {
	position:relative;
	background:url(../img/bgFadeBlack80.png);
	background:rgba(0,0,0,0.8);
	color:#fff;
	font-size:12px;
	line-height:18px;
}

/* Home */

.headline {
	padding:160px 24px;
	color:#fff;
	font-size:80px;
	font-weight:100;
	line-height:70px;
	background-image:url(../img/bg20160204_4.jpg);
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
}


/* Mobile Styles */

@media only screen and (max-width:767px) {
	
	body {
		font-size:14px;
		line-height:18px;
	}
	
	/* Grid Layout */
	
	.span20, .span25, .span33, .span50, .span66, .span75 {
		width:100%;
	}
	
	/* Global Styles */
	
.padding, .padding2, .padding3 {
	padding:18px;
}
	
	/* Home */
	
	.headline {
	padding:80px 18px;
	}
	
}