/*Reset*/

body header,
body .page-header,
body footer {
    display: none !important;
}

body .content,
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, 
.col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, 
.col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, 
.col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, 
.col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, 
.col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, 
.col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, 
.col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, 
.col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, 
.col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, 
.col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, 
.col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
	padding: 0;
}

/*Common*/

a:hover,
a:focus {
    outline: none;
    border: none;
}

input[type=checkbox]:focus {
    outline: none;
}

body {
	font-size: 16px;
}

.text p, 
.text a
.text ul li a {
	line-height: 1;
}

.columncontrol .row {
	margin: 0;
}

.columncontrol .row .col {
	padding: 0 20px;
}

.columncontrol .row .col:first-child {
	padding-left: 0;
}

.columncontrol .row .col:last-child {
	padding-right: 0;
}

.title h1,
.content h1 {
	font-size: 2.5em;
}

.title h2,
.content h2 {
	font-size: 2em;
}

.title h3,
.content h3 {
	font-size: 1.5em;	
}

.title h4,
.content h4 {
	font-size: 1.25em;
}

.title h5,
.content h5 {
	font-size: 1.125em;
}

.title h6,
.content h6 {
	font-size: 1em;
}

.header > div,
.main-wrapper > div,
.footer > div {
	max-width: 1145px;
    margin: 0 auto;
}

/*Header*/

.header {
    height: 150px;
    border-top: 17px solid #2573ba;
    border-bottom: 2px solid #edeeef;
}

.header > div {
    display: flex;
    align-items: center;
    height: 100%;
}

.header .image a {
    text-decoration: none;
}

/*Footer*/
.footer {
	padding-top: 40px;
    border-top: 2px solid #edeeef;
    border-bottom: 30px solid #2573ba;
}

.footer ul {
 	display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer ul li {
	margin-top: 0;
    padding-right: 25px;
}

.footer ul li a {
    text-decoration: underline;
    color: #2573BA;
    font-size: 0.875em;
}

.footer ul li a:hover,
.footer ul li a:focus {
    text-decoration: none;
    color: #2573BA;
}

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

.footer .footnote {
	padding: 40px 0;
}

.footer .footnote p small {
    font-size: 10px;
}

.footer .footnote a {
    color: #2573BA;
    text-decoration: underline;
    outline: none;
    border: none;
}

@media all and (max-width: 1200px) {
	/*Common*/

	.header > div, 
    .main-wrapper > div, 
    .footer > div {
    	margin: 0 20px;
    }
}

@media all and (max-width: 1023px) {
	/*Header*/

	.header {
    	height: 100px;
        border-top: 0;
    }

    .header > div {
        justify-content: center;
    }
}

@media all and (max-width: 767px) {
	/*Common*/
    body {
        font-size: 12px;
    }

    .columncontrol .row .col {
        padding: 0;
    }

    .header .image img,
    .footer .image img{
    	width: 120px;
    }

    /*Footer*/

    .footer ul {
    	flex-direction: column;
    	justify-content: center;
    	align-items: center;
    }

    .footer ul li {
    	padding: 0 0 10px;
    }

    .footer .image {
   		padding-top: 20px;
		text-align: center;
    }

    .footer .footnote p {
		text-align: center;
    }
}