html, body{
	height: 100%;
	margin: 0;
}
body{
	background-color: #FFFF00;
	background: url(background.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
    overflow-y: scroll;
}

h1, h2, h3, h4, a.no-color{
	color: #000000;
	margin: 0;
}
h1{
	font-size:	4em;
	font-weight: 900;
	margin-bottom: 10px;
}
h2{
	font-size:	3.2em;
	font-weight: 700;
}
h3{
	font-size:	3em;
	font-weight: 500;
}
h4{
	font-size:	2.1em;
	font-weight: 500;
	margin-bottom: 20px;
}
a.no-color:hover, a.no-color:active, a.no-color:focus{
	color: #000000;
	text-decoration: none;
}
p, label{
	color: #000000;
	font-size:	1.5em;
}

.box{
	background-color: rgba(255,255,0,0.4);
	border-bottom: 1px solid #000000;
	padding: 20px;
}
.box.main{
	border-bottom: 2px solid #000000;
}
.box.last{
	border-bottom: none;
}

#background-mask .mask{
	background-color: #FFFFFF;
	height: 100%;
	opacity: 0.4;
	width: 100%;
	position: fixed;
}

#content{
	position: relative;
}
#content .space-killer{ /** Prevent margins from extending the page. */
	height: 0;
}

#header{
	background-color: rgba(255,255,0,1);
	box-sizing: border-box;
	-webkit-box-shadow: 0px 2px 5px 2px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 2px 5px 2px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 2px 5px 2px rgba(50, 50, 50, 0.75);
	height: 150px;
	margin: 0 auto 50px;
	position: fixed;
	width: 100%;
	-webkit-transition: height 0.2s;
    -moz-transition: height 0.2s;
    -ms-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s;
}
#header .inner{
	box-sizing: border-box;
	height: 140px;
	margin: 0 auto;
	max-width: 500px;
	padding: 15px 0;
	position: relative;
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
#header h1,
#header h2{
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

#header.smaller{
	height: 85px;
	text-align: left;
}
#header.smaller .inner{
	height: 85px;
	padding: 15px 20px;
}
#header.smaller .inner h1,
#header.smaller .inner h2{
	font-size: 2.3em;
	line-height: 30px;
	margin: 0;
}
#header.smaller .inner h2{
	font-size: 1.8em;
}

#form{
	margin: 180px auto 100px;
	max-width: 500px;
	width: 100%;
}
#form .form-group.compact{
	margin-bottom: 10px;
}
#form .form-group.compact label{
	width: 150px;
}
#form .form-group.compact input{
	width: 160px;
}
#form .form-group.compact .form-control{
	display: inline-block;
}
#form .checkbox label{
	font-weight: 700;
}
#form input:disabled{
	background-color: rgb(255,220,220);
}

#footer{
	background-color: rgb(255,255,0);
	bottom: 0;
	-webkit-box-shadow: 0px -2px 5px 2px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px -2px 5px 2px rgba(50, 50, 50, 0.75);
	box-shadow: 0px -2px 5px 2px rgba(50, 50, 50, 0.75);
	color: #000000;
	font-size: 2em;
	height: 80px;
	left: 0;
	line-height: 80px;
	position: fixed;
	right: 0;
	text-align: center;
}
#footer .copy,
#footer .contact{
	color: #333333;
	font-size: 0.5em;
	position: absolute;
	left: 0;
	margin: 0 30px;
}
#footer .contact{
	left: auto;
	right: 0;
}
@media screen and (max-width: 720px) {
    #footer{
        line-height: 50px;
    }
	#footer .copy,
	#footer .contact{
		bottom: 0;
		line-height: 40px;
	}
}
