/***** content_about, content_email *****/
div.RHS_custom2 { /* about specific values */
	margin-top: 0; /* Remove any top margin so the div butts up against the previous div */
	Height: 265px; /* Set the height of the div (minimum height) */
	background:url(../images/building.jpg) top left no-repeat; /* Set the background image for the div. The image is placed at 
																the top left and does not repeat. The remained of the box 
																inherits it's backcolour from the Wrapper div */
}

p.RHS_name, p.RHS_address, p.Lower, p.email { /* Common p element styling */
	font-size: 75%; /* set the font size for p, scaled from the body declaration */
	font-weight:400; /* Make thge text bold for emphasis */
	margin: 10px 6px 10px 6px; /* set the margins for the p element... Top Right Bottom Left */
	padding: 0; /* zero off the padding */
}

p.RHS_name, p.RHS_address { /* more specific p element styling */
	margin-left: 285px; /* Move the list to the right so it starts after the background image */
}

p.RHS_name { /* RHS_name specific styling */
	margin-top: 25px; /* Move the text down to match the top of the header */
	font-size:16px; /*set the font size */
	font-weight:bolder; /* Make the font very bolded */
}

div.columns { /* Div class used for columns */
	float: left;  /* Float the div on the left to make a column. Multiple divs float after each after */
	margin: 10px 0 10px 0;  /* Set margins for the div... Top right bottom left */
	height: 60px;
	border: none;  /* Turn off any border */
	padding: 0;  /* Clear any padding */
	width: 194px;  /* Set the width of the div. Total width is 582 px.  We want 3 columns. */
	text-align:center; /* Centre the text in the columns */
}

p.columns_name {
	font-size:14px; /* Set font size */
	font-weight:bold; /* Make the text bold */
}

p.columns_email {
	font-size:11px; /* Set font size */
	font-weight:normal; /* Ensure the text is normal weight */
}