@charset "UTF-8";
/* CSS Document */

/************* CSS RESET *************/

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {	margin: 0;	padding: 0;	border: 0;	font-size: 100%;	font: inherit;	vertical-align: baseline; list-style: none}  img  {border-style: none;} * {margin: 0; padding: 0;} html  {	width: 100%;}  table {border-collapse: collapse;border-spacing: 0;} a{color: inherit;text-decoration: none;}a:link {color:inherit;text-decoration:none;}
a {color:inherit; text-decoration:none;}
a:visited {color:inherit; text-decoration:none;}
a:hover {color: inherit; text-decoration:none;}
a:active {color:inherit; text-decoration:none;}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	display: block;}body {	line-height: 1;}ol, ul {	list-style: none;}blockquote, q {	quotes: none;}blockquote:before, blockquote:after,q:before, q:after {	content: '';	content: none;}table {	border-collapse: collapse;	border-spacing: 0;}

.clear  {clear: both;}

*, div  {
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}

:root {
  --black: #141414;
  --dark-grey: #565656;
  --light-grey: #eaeaea;
  --yellow: #f9d010;
  --blue: #2c66b0;
  --white: #ffffff;
  --red: #de2227;
}


/************* FONTS *************/


@font-face {
    font-family: 'Lora';
    src: url('./../fonts/lora-regular-webfont.woff2') format('woff2'),
         url('./../fonts/lora-regular-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./../fonts/montserrat-semibold-webfont.woff2') format('woff2'),
         url('./../fonts/montserrat-semibold-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}


/************* PAGE STYLING *************/


#page_container  {
	width: 100%;
	height: auto;
	color: var(--black);
}


/************* TITLE STYLING *************/


#title_container  {
	width: 100%;
	height: auto;
	font-family: 'Montserrat';
	font-size: 40px;
	text-align: left;
	padding: 44px 8%;
}

#title_inner  {}

span.red  {color: var(--red);}


/************* BANNER STYLING *************/


#banner_container  {
	width: 100%;
	height: auto;
	float: left;
	padding: 60px 8%;
	background-color: var(--light-grey);
}

#banner_left  {
	width: 25%;
	height: auto;
	float: left;
	padding-right: 4%;
}

#banner_right  {
	width: 75%;
	height: auto;
	float: left;
}


/************* LOGO STYLING *************/


.logo_container  {
	width: 100%;
	height: auto;
	float: left;
	margin-bottom: 40px;
}

.logo_frame  {
	width: 100%;
	height: auto;
	overflow: clip;
	border-radius: 0 5% 5% 0;
}

.logo_inner  {
	width: 100%;
	height: auto;
}

#colonial_logo  {
	border-left: 6px solid var(--yellow);
	padding-left: 5px;
}

#apm_logo  {
	border-left: 6px solid var(--blue);
	padding-left: 5px;
}


/************* CONTENT STYLING *************/


#content_container  {
	width: 100%;
	height: auto;
	float: left;
	font-family: 'Lora';
	font-size: 17px;
	line-height: 26px;
	text-align: left;
	padding: 4px 0;
}

#content_container p  {margin-bottom: 24px;}


/************* FOOTER STYLING *************/


#footer_container  {
	width: 100%;
	height: auto;
	padding: 20px 8%;
	background-color: var(--dark-grey);
}

#copyright  {
	width: 100%;
	height: auto;
	text-align: center;
	color: var(--white);
	font-size: 12px;
}



/************* MEDIA QUERIES *************/

@media (max-width: 1220px) {
	#banner_left  {width: 40%;}
	#banner_right  {width: 60%;}
}

@media (max-width: 900px) {
	#banner_left  {width: 100%; margin-bottom: 40px;}
	#banner_right  {width: 100%;}
	.logo_container  {width: 45%; margin-bottom: 0;}
	#banner_left .logo_container:nth-child(1)  {margin-right: 10%;}
}

@media (max-width: 767px) {
	#banner_left  {margin-bottom: 0;}
	.logo_container  {width: 100%; margin-bottom: 40px;}
}