@charset "utf-8";
/* CSS Document */

/* Main Image */

body {
	background-color:#FFF;
	font-family:Arial, Helvetica, sans-serif;
}
	
.imgbanner {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	height: auto;
}

.imgbuild {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 70%;
	height: auto;
}

.centre {
	text-align:center;
}

.footer {
	width: 100%
	border: 0;
	background-color: #000;
	color: #FFF;
}
	
.frow {
	margin:auto;
}
	
.fcolumn {
	float: left;
	width: 25%;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .fcolumn {
    width: 50%;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

/* Clear floats after column */	
.frow:after {
	content: "";
	display: table;
	clear: both;
	}	