@charset "utf-8";
/* CSS Document */

/* background setup */
.background {
    background-repeat:no-repeat;
    /* custom background-position */
    background-position:50% 50%;
    /* ie8- graceful degradation */
    background-position:50% 50%\9 !important;
}

/* fullscreen setup */
html, body {
    /* give this to all tags from html to .fullscreen */
    height:100%;
	background:url(../images/bodybg.jpg) 0px 0px;
}
.fullscreen,
.content-a {
    width:100%;
    height:100%;
    overflow:hidden;
}
.fullscreen.overflow,
.fullscreen.overflow .content-a {
    height:auto;
    min-height:100%;
}

/* content centering styles */
.content-a {
    display:table;
}
.content-a a{
	color:#FFF
}
.content-b {
	display:table-cell;
    position:relative;
	vertical-align:middle;
	text-align:center;
	padding:5% 0
}
.content-b h1{
	font-size: 48px;
    font-weight: 900;
    line-height: 57px;
	line-height:40px;
	text-rendering: optimizelegibility;
	color:#FFF
}
@media screen and (max-width:767px){
	.content-b h1{
		font-size: 18px;
	}
}
/* visual styles */
body{
    margin:0;
	font-family: Arial,"Helvetica Neue",Helvetica,sans-serif;
	font-size: 16px;
	line-height: 1.42857143;
}
section {
}
section .container {
	color:#000
}
.not-fullscreen {
	padding:40px 0;
}
.maybe-fullscreen {
	padding:40px 0 60px 0;
	margin:0
}