@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%;
}
.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-b {
	display:table-cell;
    position:relative;
	vertical-align:middle;
	text-align:center;
}
.fullscreen50 {
    height:50%;
}
.fullscreen75 {
	height:75%;
}
@media all and (max-width: 1000px){
	/*.fullscreen50{
		min-height:50%;
	}*/
	.fullscreen50#s2{
		height:auto;
	/*}
	.fullscreen75{
		min-height:75%;
	}
	.fullscreen{
		min-height:100%;
	}*/
}