body {
	margin-left: 0px;
	margin-right: 0px;
}

div.fadeback {
	width: 100%;
	float: none;
	padding: 5px 5px 5px 5px;
	margin: 0px;
	border-style: none;
/* below line makes background colour cover the whole div */
	overflow: hidden;
	background-color: white;
	background-image: url(../graphics/redfade.png);
	background-repeat: no-repeat;
	box-sizing: border-box;
}

div.hometblogo {
	padding: 5px 5px 0px 0px;
	border-style: none;
	float: right;
	width: 300px;
}
div.strapline {
	padding: 5px 0px 0px 5px;
	float: left;
	width: 330px;
	text-align: left;
	font-style: italic;
	font-size: large;
	color: white;
}
@media only screen and (max-width: 680px) {
	div.hometblogo {
		float: none;
		width: 80%;
		max-width: 300px;
		margin: 0px auto;
	}
	div.strapline {
		padding: 5px 0px 5px 0px;
		float: none;
		width: 100%;
		text-align: center;
		color: black;
	}
}

div.flexcontainer {
	display: flex;
	flex-direction: row;
}
div.introduction {
	margin-left: 10px;
	margin-bottom: 20px;
	margin-right: auto;
	font-size: smaller;
	width: 470px;
	padding: 10px;
	text-align: justify;
	background-color: #E0E0E0;
	border-radius: 12px;
}
div.tweetbox {
	display: none;
}
div.rhsbox {
	margin-left: auto;
	margin-right: 10px;
}
div.banner {
	float: right;
	margin-bottom: 20px;
}
div.testimbox {
	float: right;
	margin-bottom: 10px;
	padding: 10px;
	border-width: thin;
	border-color: red;
	border-style: solid solid solid solid;
	color: #800000;
	max-width: 500px;
	background-color: #FFEFD5;
}
@media only screen and (max-width: 1050px) {
/* narrow screen */
	div.flexcontainer {
		flex-direction: column;
	}
	div.introduction {
		margin-left: auto;
		width: 90%;
		max-width: 470px;
	}
	div.rhsbox {
		margin-right: auto;
	}
	div.banner {
		float: none;
		margin-left: auto;
		margin-right: auto;
		width: 90%;
		text-align: center;
	}
	div.testimbox {
		float: none;
		margin-left: auto;
		margin-right: auto;
		width: 75%;
	}
}
@media only screen and (min-width: 1400px) {
	div.tweetbox {
		margin-left: auto;
		margin-right: auto;
		width: 300px;
		display: block;
	}
}

p.telno {
	margin-top: 5px;
	font-size: medium;
	font-style: normal;
}

div.areacontainer {
	background-color: transparent;
	text-align: center;
	width: 90%;
	border-radius: 12px;
	border-style: none;
	border-width: 2px;
	border-color: red;
	margin: 0px auto;
}

/* main areas of site */
div.areatile {
	padding: 6px;
	margin: 3px 3px 6px 3px;
	border-style: solid;
	border-width: 1px;
	border-color: red;
	border-radius: 12px;
	background-color: #E0E0E0;
	width: 85px;
	height: 75px;
	text-align: center;
	overflow: hidden;
	display: inline-block;
	/* below line required by Safari only else go haphazard */
	vertical-align: top;
}

/* display: block ensures link works anywhere in button, not just over text */
a.areatiletxt {
	text-decoration: none;
/*	display: block; */
}

a.areatiletxt:link {
	color: #800000;
}

a.areatiletxt:visited {
	color: #806060;
}

a.areatiletxt:hover {
	color: #000000;
	background-color: #FF8888;
}

a.areatiletxt:active {
	color: #800000;
	background-color: #FF8888;
}

img.areaicon {
	margin-bottom: 2px;
	border-style: none;
}

p.squeezed {
	line-height: 0.9em;

	margin-top: 0px;
	margin-bottom: 0px;
}

/* infinite bus frieze */
div.frieze {
	background-image: url(../graphics/frieze6-084pxv.png);
	/* 2021-01-08 line below added. responsive image. not universal feature yet. css4. above line is fallback */
	background-image: -webkit-image-set(url(../graphics/frieze6-084pxv.png) 1x, url(../graphics/frieze6-168pxv.png) 2x, url(../graphics/frieze6-252pxv.png) 3x);
	background-image: image-set(url(../graphics/frieze6-084pxv.png) 1x, url(../graphics/frieze6-168pxv.png) 2x, url(../graphics/frieze6-252pxv.png) 3x);
	background-repeat: repeat-x;
	width: 100%;
	height: 84px;
	margin: 10px 0px;
}
