html {
	width: 100%;
	height: 100%;
}
body {
	width: 100%;
	height: 100%;
	padding-top: 120px;
}
.container-fluid {
	min-height: 100%;
}
.row {
	min-height: 100%;
}

header {
	height: 120px;
	padding: 15px 15px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-align: center;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	background-color: #ffffff;
    box-shadow: 0px 2px 2px -1px rgba(0, 0, 0, .2);
}
.brand_logo {
	width: auto;
	float: left;
	margin-right: 15px;
}
.brand_logo > img, .brand_logo a > img {
	max-width: 300px;
}

footer {
	padding: 10px 15px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
	/*background-color: #f0f0f0;*/
        background-color: #ffffff;
}
footer > p {
	margin: 0;
	color: #6c757d !important;
	font-size: 12px;
}
footer > p > a {
	color: #007bff;
	font-size: 12px;
	display: inline-block;
	margin: 0 10px;
}
footer > p > a:hover {
	text-decoration:none;
}
footer > p > span {
	color: #007bff;
}


.main_content {
	display: flex;
	flex-direction: column;
	background-color: #f0f0f0;
	flex-grow: 1;
	padding: 15px 30px;
	min-height: 100%;
}
.main_content .page_title {
	font-size: 30px;
	text-align: center;
	margin: 30px 0 30px;
}
    .main_content p {
        margin-bottom:10px;
    }