/* background setup */
.background {
    background-repeat:no-repeat;
    /* custom background-position */
    background-position:50% 50%;
    /* ie8- graceful degradation */
    background-position:50% 50%\9 !important;
    background-color: #ecf0f5;
    
    position: absolute;
    top: 0;
}

/* fullscreen setup */
html, body {
    /* give this to all tags from html to .fullscreen */
    height:100%;
}
.fullscreen,
.content-a {
    width:100%;
    min-height:100%;
}
.not-fullscreen,
.not-fullscreen .content-a,
.fullscreen.not-overflow,
.fullscreen.not-overflow .content-a {
    height:100%;
    overflow:hidden;
}

/* content centering styles */
.content-a {
	display:table;
}
.content-b {
	display:table-cell;
    position:relative;
	vertical-align:middle;
	text-align:center;
	padding-bottom: 64px;
}

/* visual styles */
body{
/*     margin:0; */
/*     font-family:sans-serif; */
/*     font-size:28px; */
/*     line-height:100px; */
	color:#dd4b39;
    text-align:center;
    min-height: 480px;
    overflow: auto;
}
section {
	background:#9ed100;
}
.not-fullscreen {
    height:50%;
}

.shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

#footer {
	position: absolute;
	width: 100%;
	bottom: 0;
	margin-bottom: 0;
}