@charset "utf-8";
/* CSS Document */

html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;

}
body {
	padding: 5%;
	margin-left: auto;
	margin-right: auto;
	background: #FDFDFD;
	font-family: Arial;
    font-style: normal;
    font-weight: normal;
    font-size: default;
    color: #000000;
	link: #000CF7; 
	vlink: #03FB37;
}
.auto-style1 {
	font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
	font-size: x-large;
}
.auto-style2 {
	text-align: center;
}
.header {
    /*Header */
	overflow: auto;
	padding-bottom: 5px;
	font-family: "Arial Narrow";
    font-weight: 400;
}

img {
	width: 100%;
	max-width: 100%;
	max-height: 250px;
	height: auto;
	vertical-align: middle;
}

footer {
	padding: 20px 30px;
	background-color: #dbecf1;
}
.footer p {
	font-size: small;
}
.style-logo{
/* Company Logo text */
	float: left;
	color: #000000;
	font-family: "Arial Narrow";
	font-size: x-large;
	font-weight: bold;
	padding-bottom: 6px;
}
.style-nav a {
	/*Nav bar containing links in header */
	float: right;
	display: inline-flex;
	flex-wrap: nowrap;
	padding-right: 1%;
	color: #003366;
	font-family: "Arial Narrow";
	text-decoration: none;
	font-size: medium;
	font-weight: bold;
	padding-bottom: 6px;
}
.info-box-grey {
	background-color: #E1E1E1;
	padding: 10px 15px 30px;
	text-align: left;
}
h4 {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: #000000;
	font-size: large;
	font-weight: 800;
	margin-top: 5px;
	margin-bottom: 5px;
}
p {
    color: #000000;
    font-family: Arial;
    font-style: normal;
    font-weight: normal;
    text-align: justify;
    font-size: default;
}

.col {
	width: 100%;
	padding-bottom: 10px;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}
/*Tablet View*/

@media screen and (min-width: 768px){
	.body {
		max-width: 1200px;
	}	
	.col-md-one-half {
		width: 50%;
		padding: 5px 5px 5px;
	}	
	.col {
		float: left;
		padding: 5px 7px 14px;
	}
	.info-box-grey {
		align-content: end;
	}
	h4 {
		font-size: 14px;
	}
	p {
		text-align: left;
		font-size: 11px;
	}
}

/*Desktop View*/

@media screen and (min-width: 1201px){
	.body {max-width: 1800px;
	}
	.col-md-one-half {
		width: 45%;
		padding: 10px 10px 20px;
	}	
	.col {
		float: left;
		padding: 5px 10px 14px;
	}
	h4 {
		font-size: 16px;
	}
	p {
		text-align: justify;
		font-size: medium;
	}
}


