/*
 * Quark 2 — user customizations
 *
 * This file is safe to edit. It is loaded last so anything here overrides
 * theme.css without having to mark rules !important.
 */
/* Core Stuff */
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* Utility Classes */
.wrapper {
    margin: 0 3rem;
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/**********/
/* LAYOUT */
/**********/
html {height:100%;}

.body {
	height: 100%;
    margin: 0;
	background: #e8e8e8 url(../images/white_noise_80x80.png) repeat;
}

#page-wrapper {
	width: 960px;
	height: 100%;
	margin: 0 auto;
	background: #e8e8e8 url(../images/white_noise_80x80.png) repeat;
	-webkit-box-shadow: 0 0 15px 1px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 0 15px 1px rgba(0,0,0,0.5);
	box-shadow: 0 0 15px 1px rgba(0,0,0,0.5);
}

#header {
	background: #e8e8e8 url(../images/white_noise_80x80.png) repeat;
}

.header {
	border-bottom: 16px solid #0268a0;
	height: 400px;/*238px;*/
	padding:0;
	background: #e8e8e8 url(../images/white_noise_80x80.png) repeat;
}

#banner {
	width: 860px;
	margin-inline: auto;
	background: #e8e8e8 url(../images/white_noise_80x80.png) repeat;
}

#main {
	height: 100%;	/* for sticky footer*/
	display: table-row;
	box-sizing: border-box;
}

#body-wrapper {
	width: 960px;
	background: #e8e8e8 url(../images/white_noise_80x80.png) repeat;
}

.section {
	width: 960px;
	padding: 20px 20px;
	box-sizing: border-box;
	background: #e8e8e8 url(../images/white_noise_80x80.png) repeat;
}

#footer {
	/* margin-top: 0;
	margin-bottom: 10;
	margin-left: 0 auto;
	margin-right: 0 auto; */
	margin: 0 auto 10px;
	padding: 0;
    width:960px;
	border-top: 4px solid #0268a0;
	background: #e8e8e8 url(../images/white_noise_80x80.png) repeat;
	display: table-cell;
	-webkit-box-shadow: 0 0 15px 1px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 0 15px 1px rgba(0,0,0,0.5);
	box-shadow: 0 0 15px 1px rgba(0,0,0,0.5);}

.navbar img {
	width: 80px;
	margin: 10px;
}

.navbar {
	float: center;
	width: 860px;
}

.navbar-section {
	background: #e8e8e8;
}


@media (max-width: 960px) {
    #page-wrapper,
    .section {
        width: 100% !important;
        max-width: 100% !important;
    }

    .container,
    #banner {
        width: auto !important;
        max-width: 100% !important;
        margin-left: 20px;
        margin-right: 20px;
    }

    #banner img {
        width: 100% !important;
        height: auto !important;
        display: block;
    }
}
