/* Easier Than (www.easierthan.co.uk) Website Template CSS */
/* Last Modified: 16/06/2015 - DB */
@import url(https://fonts.googleapis.com/css?family=Noto+Serif:400,700);
@import url(https://fonts.googleapis.com/css?family=Nunito:400,700);
@import url(https://fonts.googleapis.com/css?family=Satisfy:400,700);

	/* START Basic HTML Tags */	
		html {
			scroll-behavior: smooth;
			height: 100%;
		}

		body {
			font-size: 1em;
			font-family: Verdana, Helvetica, Arial, sans-serif;
			margin: 0px;
			padding: 0px;
			background-color: #000;
			color: #000;
			height: 100%;
/*			background-image: url('/images/background-body.jpg');
			background-attachment: fixed;
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;*/
		}

		/* Code added because useless iPads and iPhones can't handle the background attachment being fixed on body. */
		body:after {
			content:"";
			position:fixed; /* stretch a fixed position to the whole screen */
			top:0;
			height:100vh; /* fix for mobile browser address bar appearing disappearing */
			left:0;
			right:0;
			z-index:-1; /* needed to keep in the background */
			background-image: url('/images/background-body.jpg');
			background-position: center center;
			background-repeat: no-repeat;
			-webkit-background-size: cover;
			-moz-background-size: cover;
			-o-background-size: cover;
			background-size: cover;
		}

		img {
			border: 0px;
		}

		h1 {
			font-family: 'Noto Serif', sans-serif;
			font-weight: 700;
			font-size: 1.6em;
			color: #888;
			padding: 8px 15px;
			margin: 5px 0px 50px 0px;
		}

		h2 {
			font-family: 'Noto Serif', sans-serif;
			font-weight: 700;
			font-size: 1.5em;
			color: #d2aa4c;
			margin: 20px 0px 10px 0px;
		}

		h3 {
			font-family: 'Noto Serif', sans-serif;
			font-weight: 700;
			font-size: 1.3em;
			color: #333333;
			margin: 10px 0px 10px 0px;
		}

		h4 {
			color: #555555;
			font-size: 1.1em;
			margin: 10px 0px 10px 0px;
		}

		ul {
			list-style-type: square;
		}
			
		li {
			padding: 2px 2px 4px 2px;
		}

		a {
			text-decoration: none;
			color: #d2aa4c;
			background-color: transparent;
		}
		
		a:hover, a:active, a:focus { 
			background-color: transparent;
			color: #555;
		}

		label {
			font-size: 1.1em;
			color: #bdbec0;
		}

		input[type="text"], input[type="date"], input[type="number"] {
			font-family: Verdana, Helvetica, Arial, sans-serif;
			font-size: 1.1em;
			color: #444;
			margin-top: 5px;
		}

		input[type="submit"] {
			background-color: #d2aa4c;
			color: #eee;
			font-family: Verdana, Helvetica, Arial, sans-serif;
			font-size: 1.1em;
			font-weight: bold;
			text-shadow: 0px 0px 2px rgba(50, 50, 50, 0.5);
			text-decoration: none;
			transition: .5s ease 0s;
			margin-top: 30px;
			padding: 10px 18px 10px 18px;
			border: 1px solid #d2aa4c;
		}

		input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
			background-color: #bdbec0;
			border: 1px solid #bdbec0;
		    cursor: pointer;
			transition: .5s ease 0s;
		}

		textarea {
			font-family: Verdana, Helvetica, Arial, sans-serif;
			font-size: 1.1em;
			color: #444;
			margin-top: 5px;
		}

		select {
			font-family: Verdana, Helvetica, Arial, sans-serif;
			font-size: 1.1em;
			color: #444;
			margin-top: 5px;
		}

		address {
			font-style: normal;
		}

		table {
			width: 70%;
			border-spacing: 20px 2px;
			margin-bottom: 20px;
		}

		th {
			font-family: 'Noto Serif', sans-serif;
			color: #555;
			font-size: 1.2em;
			border-bottom: 2px dotted #CCC;
			letter-spacing: 2px;
			text-align: left;
			padding: 6px 6px 6px 6px;
			background-color: transparent;
			vertical-align: top;
		}

		td {
			border-bottom: 2px dotted #CCC;
			background-color: transparent;
			padding: 6px 6px 6px 6px;
			vertical-align: top;
		}

	/* END Basic HTML Tags */	

	/* START Basic Layout Blocks */	

		.stripe {
			margin: 0px;
			padding-left: 0px;
			padding-right: 0px;
		}

		.holding {
			display: table;
			width: 90%;
			max-width: 1125px;
			margin: 0px;
			margin-left: auto;
			margin-right: auto;
			padding-left: 15px;
			padding-right: 15px;
			background-color: inherit;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
		}

		.row {
			clear: both;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
		}

		.col-12, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1, .col-2-4 {
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			float: left;
		}
		
		.col-12 { width: 100%; }
		.col-9 { width:75%; }
		.col-8 { width:66.66666667%; }
		.col-7 { width:58.33333333%; }
		.col-6 { width:50%; }
		.col-5 { width:41.66666667%; }
		.col-4 { width:33.33333333%; }
		.col-3 { width:25%; }
		.col-2 { width:16.66666667%; }
		.col-1 { width:8.33333333%; }

		.col-2-4 { width:20%; }

		.col-11-fixed, .col-10-fixed, .col-9-fixed, .col-8-fixed, .col-7-fixed, .col-6-fixed, .col-5-fixed, .col-4-fixed, .col-3-fixed, .col-2-fixed, .col-1-fixed, .col-2-4-fixed {
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			float: left;
		}
		
		.col-11-fixed { width:91.66666667%; }
		.col-10-fixed { width:83.33333333%; }
		.col-9-fixed { width:75%; }
		.col-8-fixed { width:66.66666667%; }
		.col-7-fixed { width:58.33333333%; }
		.col-6-fixed { width:50%; }
		.col-5-fixed { width:41.66666667%; }
		.col-4-fixed { width:33.33333333%; }
		.col-3-fixed { width:25%; }
		.col-2-fixed { width:16.66666667%; }
		.col-1-fixed { width:8.33333333%; }

		.col-2-4-fixed { width:20%; }

		.col-clear {
			clear: both;
		}

	/* END Basic Layout Blocks */	

	/* START Specific Stripe Blocks */

		.test-mode {
			background-color: #000;
		}

		.test-mode .holding {
			background-color: transparent;
			padding-top: 5px;
			padding-bottom: 5px;
			color: #fff;
			font-size: 0.8em;
		}

		.test-mode a {
			color: #76b83c;
		}

		.test-mode a:hover, .test-mode a:active, .test-mode a:focus {
			color: #fff;
		}

		.top-links {
			background-color: #000;
		}
		
		.top-links .holding {
			background-color: transparent;
			padding: 0px 0px 5px 0px;
		}

		.top-links ul {
			list-style: none;
			background-color: transparent;
			padding: 0px;
			margin: 0px;
		}

		.top-links .accessibility ul {
			float: right;
		}

		.top-links .accessibility li {
			padding: 0px 3px 0px 3px;
			display: inline-block;
		}

		.top-links .accessibility a {
			font-size: 0.6em;
			color: #fff;
		}

		.top-links .accessibility a:hover, .accessibility a:active, .accessibility a:focus { 
			color: #76b83c;
		}

		.header {
			padding-top: 10px;
			padding-bottom: 15px;
			background-color: transparent;
		}

		.header .holding {
			background-color: transparent;
			padding-left: 0px;
			padding-right: 0px;
		}

		.header .logo {
			text-align: center;
		}

		.header .logo img {
			padding: 0px 10px;
			width: 100%;
			max-width: 150px;
			height: auto;
			width: auto\9; /* ie8 */
		}

		.header .tag-line {
			font-family: 'Satisfy', sans-serif;
			padding: 20px 20px 0px 20px;
			text-align: center;
			font-size:
		}

		.header .contacts {
			padding-top: 20px;
		}

		.header .contacts p {
			font-family: 'Nunito', sans-serif;
			font-weight: 700;
			letter-spacing: 1.5px;
			margin-top: 5px;
			margin-bottom: 7px;
		}

		.header .contacts a {
			text-decoration: none;
			font-weight: normal;
		}

		.header .contacts span {
			color: #d2aa4c;
		}

		.header .social-icons {
			padding: 30px 0px 0px 0px;
		}
		
		.header .social-icons ul {
			float: left;
			list-style: none;
			padding: 4px 0px 0px 0px;
			margin: 0px;
		}

		.header .social-icons li {
			padding-left: 2px;
			display: inline-block;
		}

		.header .social-icons a:hover, .header .accreditations a:hover {
			opacity: 0.8;
			transition: .5s ease 0s;
		}

		.header .social-icons img {
			max-width: 35px;
			filter: grayscale(100%);
		}

		.announcement {
			background-color: #222;
		}

		.announcement .holding {
			background-color: transparent;
		}

		.announcement h2, .announcement p, .announcement a {
			color: #fff;
		}

		.announcement a:hover {
			color: #ddd;
		}

		.dropdown-menu {
			font-family: 'Nunito', sans-serif;
			font-weight: 400;
/*			background-color: #d2aa4c;*/
			background-color: #c29730;
			position: relative;
			z-index: 998;
			/*border-bottom: solid 3px #333;*/
			border-top: solid -1px #e9e9e9;
		}

		.dropdown-menu .holding {
			background-color: transparent;
			padding: 0px;
			text-align: left;
		}
		
		.dropdown-menu ul {
			list-style-type: none;
			margin: 0;
			padding: 0;
			overflow: hidden;
			background-color: transparent;
		}

		.dropdown-menu li {
			display: inline;
			padding: 0px;
		}

		.dropdown-menu li a, .dropdown-menu .dropdown-link {
			display: inline-block;
			color: #111;
			text-align: center;
			padding: 9px 14px;
			text-decoration: none;
			font-size: 1.25em;
			transition: .3s background-color;
		}

		.dropdown-menu li a:hover, .dropdown-menu .dropdown:hover .dropdown-link {
			color: #fff;
			background-color: #333;
		}

		.dropdown-menu li.dropdown {
			display: inline-block;
		}

		.dropdown-menu .dropdown-content {
			display: none;
			position: absolute;
			background-color: #f9f9f9;
			min-width: 160px;
			box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
			z-index: 998;
		}

		.dropdown-menu .dropdown-content a {
			color: #444;
			font-size: 1.2em;
			padding: 10px 16px;
			text-decoration: none;
			display: block;
			text-align: left;
			transition: .3s background-color;
		}

		.dropdown-menu .dropdown-content a:hover {
			color: #d2aa4c;
			background-color: #eaeaea;
		}

		.dropdown-menu .dropdown:hover .dropdown-content {
			display: block;
		}

		.dropdown-content-show {
			display: block !important;
		}

		.slideshow {
			background-image: url('/images/background-overlay-dotted-dark.png');
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			overflow: hidden;
		}

		.slideshow .holding {
			background-color: transparent;
			padding: 0px;
		}

		.slideshow .col-12 {
			background-color: #eee;
		}

		.slideshow .slides .slide {
			display:none;
		}

		.slideshow .slides, .slideshow .slides .slide {
			position: relative;
		}

		.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
			min-height: 300px;
			max-height: 550px;
		}

		.slideshow .slides .slide img {
			width: 100%;
			height: auto;
			object-fit: cover;
		}

		.slideshow .caption {
			position:absolute;
			bottom: 20px;
			right: 0px;
			padding: 10px;
			background-color: rgba(10, 10, 10, .6);
			text-align: left !important;
			width: 65%;
		}

		.slideshow .caption h2 {
			font-size: 50px;
			font-weight: 400;
			color: #fff;
			margin: 5px;
			line-height: initial;
			text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
		}

		.slideshow .caption p {
			font-size: 20px;
			color: #bbb;
			margin: 5px;
			line-height: initial;
		}

		.slideshow .caption:hover, .slideshow .caption:hover {
			background-color: rgba(60, 60, 60, .6);
			transition: .5s ease 0s;
		}

		.slideshow .button-left, .slideshow .button-right {
			position: absolute;
			font-size: 24px;
			top:30%;
			border:none;
			display: inline-block;
			outline:0;
			padding:8px 16px;
			vertical-align:middle;
			overflow:hidden;
			text-decoration:none;
			color: #eee;
			background-color: rgba(0, 0, 0, .6);
			text-align:center;
			cursor:pointer;
			white-space:nowrap
		}

		.slideshow .button-left {
			left: 0%;
		}

		.slideshow .button-right {
			right: 0%;
		}

		.slideshow .button-left:hover, .slideshow .button-right:hover {
			color: #333;
			background-color: rgba(175, 175, 175, .6);
			transition: .5s ease 0s;
		}

		.slideshow .animated-fade {
			animation: slideshow-fade 10s infinite;
		}
		
		@keyframes slideshow-fade {
			0% { opacity:0; }
			10% { opacity:1; }
			90% { opacity:1; }
			100%{ opacity:0; }
		}

		.banner-image {
/*			background-attachment: fixed;*/
			overflow: hidden;
			position: relative;
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			height: 60%;
			max-height:600px;
			box-shadow: inset 0 0 75px #222;
			opacity: 1;
			border-bottom: solid 1px #222;
		}

		.banner-image .holding {
			background-color: transparent;
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			overflow: hidden;
		}

		.banner-image .holding, .banner-image .row, .banner-image .col-12 {
			display: block;
			height: 100%;
		}

		.banner-image .col-12 {
			position: relative;
		}

		.banner-image .title {
			position:absolute;
			bottom: 40px;
			left: -15px;
			padding: 10px;
			background-color: #d2aa4c;
			background-color: rgba(10, 10, 10, .6);
			text-align: left !important;
			width: 70%;
		}

		.banner-image .title h1 {
			font-size: 3em;
			font-weight: 400;
			color: #fff;
			margin: 5px;
			padding: 0px;
			line-height: initial;
		}

		.banner-image .title p {
			font-size: 1.4em;
			font-family: 'Nunito', sans-serif;
			color: #ccc;
			margin: 5px;
			line-height: initial;
		}

		.message {
			background-color: transparent;
			width: 100%;
			height: 100%;
		}

		.message .message-div {
			display: inline-block;
			width: 50%;
			padding: 25px;
			z-index: 999;
			position: fixed;
			left: calc(25% - 25px);
		    top: 20%;
			background-color: #222;
			text-align: left;
			line-height: 1.3em;
			transition: .5s ease 0s;
		}

		.message .message-close {
			position: absolute;
			right: 10px;
			top: 10px;
			width: 25px;
			cursor:pointer;
		}

		.message .message-close:hover {
			transition: .5s ease 0s;
		}

		.message .message-close img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			display: block;
		}

		.message .message-div h2, .message .message-div p, .message .message-div a {
			color: #fff;
		}

		.message .message-div a:hover {
			transition: .5s ease 0s;
		}

		.content {
			background-color: transparent;
			font-size: 1.05em;
			line-height: 1.5em;
			color: #eee;
		}

		.content .holding {
			background-color: transparent;
			padding: 30px 15px;
		}

		.content h1 {
			background-color:#393939;
			color: #fff;
			margin: 5px 0px 50px -15px;
			width: 40%;
		}

		.content h2 {
			margin: 50px 0px 25px 0px;
		}

		.page-links {
			background-color: transparent;
		}

		.page-links .holding {
			background-color: transparent;
			padding: 0px 0px 0px 0px;
			width: 95%;
			max-width: 2000px;
		}

		.page-link {
			font-family: 'Noto Serif', sans-serif;
			font-weight: 400;
			text-align: center;
			padding: 20px 10px 10px 10px;
		}

		.page-link a {
			color: #888;
		}

		.page-link a:hover {
			transition: .5s ease 0s;
			color: #bbb;
		}

		.page-link .photo {
			padding: 0px 25px 0px 25px;
		}

		.page-link .photo img {
			width: 100%;
			max-width: 225px;
			height: auto;
			width: auto\9; /* ie8 */
			border: solid 1px #000;
			box-shadow: 8px 8px 16px 0px rgba(0,0,0,0.8);
			border-radius:50%;
			-webkit-border-radius:50%;
			-moz-border-radius:50%;
		}

		.page-link .photo img:hover {
			transition: .5s ease 0s;
			-moz-transform: scale(1.05);
			-webkit-transform: scale(1.05);
			transform: scale(1.05);
		 }

		.page-link p {
			margin: 15px 5px 10px 5px;
			font-size: 1.3em;
		}

		.details {
			background-color: transparent;
		}

		.details .holding {
			background-color: transparent;
		}

		.details .odd .photo {
			float: left;
		}

		.details .even .photo {
			float: right;
		}

		.details .photo {
			padding: 10px;
		}

		.details .photo img {
			width: 100%;
			max-width: 225px;
			height: auto;
			height: auto\9; /* ie8 */
			border-radius: 50%;
			border: solid 1px #000;
			box-shadow: 8px 8px 16px 0px rgba(0,0,0,0.8);
		}

		.details .text {
			margin-top: 30px;
			background-color: rgba(0,0,0,0.5);
			padding: 10px;
			box-shadow: 8px 8px 16px 0px rgba(0,0,0,0.8);
			line-height: 1.3em;
		}

		.details .odd .text {
			margin-left: 100px;
			margin-right: 250px;
		}

		.details .even .text {
			margin-left: 250px;
			margin-right: 100px;
		}

		.details .text h2 {
			margin: 0px 0px 25px 0px;
			font-size: 1.2em;
		}
		
		.details .text p {
			margin: 0px 0px 10px 0px;
			font-size: 1em;
			color: #eee;
		}
		
		.disclaimer {
			background-color: transparent;
			font-size: 0.9em;
			line-height: 1.3em;
			color: #bdbec0;
			margin-top: 50px;	
		}

		.disclaimer .holding {
			background-color: transparent;
		}

		.disclaimer hr {
			width: 40%;
			border-top: solid 1px #bdbec0;
			margin: 50px auto 20px auto;
		}

		.disclaimer h2 {
			color: #bdbec0;
			margin: 0px 0px 20px 0px;
		}

		.important {
			background-color: #fff;
		}

		.important .holding {
			background-color: transparent;
		}

		.enquiries input[type="text"], .enquiries textarea, .enquiries select {
			max-width: 75%;
			width: 75%;
		}

		.enquiries input[type="date"], .enquiries input[type="number"] {
			max-width: 35%;
			width: 35%;
		}

		.gallery-photos {
			background-color: rgba(0,0,0,0.2);
			padding: 0px;
			margin-top: 50px;
			margin-bottom: 50px;
		}

		.gallery-photos .holding {			
			background-color: transparent;
			padding-left: 5px;
			padding-right: 5px;
/*			padding: -15px;
			width: 100%;
			border: 0px;
			max-width: 2000px;*/
		}

		.gallery-photos .gallery-photo {
			position: relative;
			overflow: hidden;
			border: solid 10px transparent;
		}

		.gallery-photos .photo {
			position: relative;
		}

		.gallery-photos .photo img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			display: block;
		}

		.gallery-photos a {
			text-decoration: none;
		}

		.gallery-photos a:hover {
			opacity: 0.7;
			transition: .3s ease 0s;
		}

		.gallery-photos .label {
			font-family: 'Montserrat', sans-serif;
			font-weight: 400;
			padding: 7px 0px 7px 0px;
			background-color: rgba(10, 10, 10, 0.6);
			color: #fff;
			position: absolute;
			bottom: 0px;
			left: 0px;
			width: 100%;
			font-size: 1.5em;
			text-align: center;
		}

		.towns {
			position: relative;
			background: #fafafa;
			color: #555;
			background-image:url('/images/background-towns.jpg');
/*			background-attachment: fixed;*/
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			overflow: hidden;
			border-bottom: solid 1px #000;
			box-shadow: inset 0 0 75px #222;
		}

		.towns .holding {
			background-color: transparent;
		}

		.towns h2 {
			color: #eee;
			padding-bottom: 15px;
		}

		.towns .col-12 {
			color: #ddd;
			padding: 15px 0px;
			text-align: left;
			line-height: 1.5em;
		}

		.towns .town {
			color: #ddd;
			font-size: 1em;
			padding: 15px;
			text-align: center;
		}

		.towns .acknowledgement {
			position: absolute;
			bottom: 4px;
			right: 0px;
			font-size: 0.7em;
			color: #ddd;
			text-align: right;
		}

		.towns .acknowledgement span {
			background-color: #000;
			padding: 4px;
		}

		.towns .acknowledgement a {
			color: #eee;
		}

		.towns .acknowledgement a:hover {
			color: #ccc;
		}

		.testimonial {
			position: relative;
			font-family: 'Nunito', sans-serif;
			font-weight: 400;
			background-color: transparent;
		}

		.testimonial .holding {
			background-color: transparent;
		}

		.testimonial .quote {
			background-color: rgba(10,10,10,0.5);
			border-left: 20px solid #d2aa4c;
			color: #eee;
			margin: 50px 0px;
			padding: 10px 20px 10px 50px;
		}

		.testimonial .quote a {
			color: #eee;
		}

		.testimonial .quote blockquote {
			background-color: transparent;
			font-size: 1.5em;
			padding: 0.8em 10px 0.1em 10px;
			margin: 0px;
			quotes: "\201C""\201D""\2018""\2019";
		}

		.testimonial .quote blockquote:before {
			color: #bbb;
			content: "\201C";
			font-size: 4em;
			line-height: 0em;
			margin-right: 0.25em;
			vertical-align: -0.4em;
		}

		.testimonial .quote blockquote:after {
			color: #bbb;
			content: "\201D";
			font-size: 4em;
			line-height: 0.1em;
			margin-left: 0.25em;
			vertical-align: -0.6em;
		}

		.testimonial .quote p {
			margin: 0px;
			padding: 20px;
			text-align: right;
			font-size: 1.3em;
		}
		
		.testimonial .quote:hover {
		    cursor: pointer;
			opacity: 0.8;
			transition: .5s ease 0s;
		}

		.contact-details {
			background-color: #000;
			/*background-color: #d2aa4c;*/
		}

		.contact-details .holding {
			background-color: transparent;
			padding: 0px;
		}

		.contact-details .contact-links a {
			font-family: 'Nunito', sans-serif;
			font-weight: 700;
			display: block;
			padding: 15px 10px;
			color: #d2aa4c;
			text-decoration: none;
			letter-spacing: 1px;
			transition: .3s background-color;
			background-color: transparent;
			text-shadow: 0px 0px 1px #555;
		}

		.contact-details .contact-links a:hover, .contact-details .contact-links a:active, .contact-details .contact-links a:focus {
			transition: .5s background-color;
			background-color: #111;
		}

		.contact-details .col-first a {
			border-left: 1px solid #666;
			border-right: 1px solid #666;
		}

		.contact-details .col-middle a, .contact-details .col-last a {
			border-right: 1px solid #666;
		}

		.contact-details .contact-links i {
			padding: 0px 10px 0px 10px;
			font-size: 2.3em;
			font-weight: normal;
			vertical-align: middle;
		}

		.contact-details .contact-links b {
			font-size: 1.7em;
			font-weight: normal;
			vertical-align: middle;
		}

		.footer {
			color: #f3f3f3;
			background-color: rgba(0,0,0,0.9);
/*			background-image: url('/Images/Background_Footer.jpg');
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			overflow: hidden;*/
		}

		.footer a {
			text-decoration: none;
			color: #ddd;
		}

		.footer	a:hover, .footer a:active, .footer a:focus { 
			color: #d2aa4c;
		}

		.footer .holding {
			background-color: transparent;
			padding-top: 20px;
		}

		.footer .footer-menu, .footer .footer-contact-details {
			text-align: center;
		}

		.footer .footer-contact-details div {
			margin-top: 12px;
		}
		
		.footer .footer-contact-details address {
			line-height: 1.4em;
		}
		
		.footer .footer-menu ul {
			list-style: none;
			padding: 0px;
			margin: 0px;
		}

		.footer .footer-menu-sub {
			padding-left: 30px;
		}

		.footer .footer-menu a, .footer .footer-menu b {
			font-weight: normal;
		}

		.footer .accreditations {
			text-align: center;
			vertical-align: middle;
		}

		.footer .accreditations img {
			margin: 5px 10px 5px 0px;
			height: 90px;
			width: auto;
			width: auto\9; /* ie8 */
		}

		.footer .payment-logos {
			padding: 0px 0px 0px 0px;
			margin: 25px 0px 5px 0px;
			text-align: center;
		}
		
		.footer .payment-logos ul {
			list-style: none;
			padding: 0px;
			margin: 0px;
		}

		.footer .payment-logos li {
			padding-right: 10px;
			display: inline-block;
		}

		.footer .payment-logos a:hover, .footer .accreditations a:hover {
			opacity: 0.8;
			transition: .5s ease 0s;
		}

		.footer .payment-logos img {
			height: 45px;
			width: auto;
			width: auto\9; /* ie8 */
			filter: sepia(100%);
		}

		.footer .social-icons {
			padding: 0px 0px 0px 0px;
			margin: 40px 0px 15px 0px;
		}
		
		.footer .social-icons ul {
			float: left;
			list-style: none;
			padding: 0px;
			margin: 0px;
		}

		.footer .social-icons li {
			padding-right: 10px;
			display: inline-block;
		}

		.footer .social-icons a:hover, .footer .accreditations a:hover {
			opacity: 0.8;
			transition: .5s ease 0s;
		}

		.footer .social-icons img {
			width: 35px;
			height: auto;
			height: auto\9; /* ie8 */
			filter: grayscale(100%);
		}

		.footer .copyright {
			font-size: 0.8em;
			text-align: right;
			color: #bbb;
			margin: 40px 0px 15px 0px;
		}

		.footer .copyright p {
			margin: 10px 0px 0px 0px;
		}

		.footer .copyright a {
			color: #ccc;
		}

		.footer .copyright a:hover, .footer .copyright a:active, .footer .copyright a:focus { 
			color: #d2aa4c;
		}

	/* END Specific Stripe Blocks */

	/* START General Layout Elements */

		.align-left { 
			text-align: left;
		}

		.align-right { 
			text-align: right;
		}

		.align-center { 
			text-align: center;
		}

		.block-left, .block-left-space, .block-left-space-border, .block-left-space-border-label { 
			float: left;
		}

		.block-right, .block-right-space, .block-right-space-border, .block-right-space-border-label { 
			float: right;
		}

		.block-none-space, .block-none-space-border, .block-none-space-border-label,
		.block-right-space, .block-right-space-border, .block-right-space-border-label,
		.block-left-space, .block-left-space-border, .block-left-space-border-label {
			margin: 10px;
		}

		.block-none-space-border img, .block-none-space-border-label img,
		.block-right-space-border img, .block-right-space-border-label img,
		.block-left-space-border img, .block-left-space-border-label img {
			padding: 0px;
			/* border: solid 1px #555555;*/
			box-shadow: 2px 2px 6px #888888;
			-webkit-box-shadow: 2px 2px 6px #888888;
			-moz-box-shadow: 2px 2px 6px #888888;
		}

		.block-none-space-border img, .block-right-space-border img, .block-left-space-border img {
			margin: 0px 0px 0px 0px;
		}

		.block-none-space-border-label img, .block-right-space-border-label img, .block-left-space-border-label img {
			margin: 0px 0px 7px 0px;
		}

		.block-none-space-border-label, .block-right-space-border-label, .block-left-space-border-label {
			color: #555555;
			font-style:italic;
			font-size: 0.85em;
			padding: 0px 8px 9px 8px;
		}

		.block-none-space, .block-none-space-border, .block-none-space-border-label,
		.block-right-space, .block-right-space-border, .block-right-space-border-label,
		.block-left-space, .block-left-space-border, .block-left-space-border-label {
			width: 50%;
			max-width: 404px;
		}
		
		.block-none-space img, .block-none-space-border img, .block-none-space-border-label img,
		.block-right-space img, .block-right-space-border img, .block-right-space-border-label img,
		.block-left-space img, .block-left-space-border img, .block-left-space-border-label img {
			width: 100%;
			max-width: 400px;
			height: auto;
			width: auto\9; /* ie8 */
		}

		.block-diagram {
			width: 100%;
			max-width: 425px;
			height: auto;
			width: auto\9; /* ie8 */
		}

		.block-slider-align-right {
			float:right;
			margin: 10px;
			width:60%;
		}

		.video-clip {
			position:relative;
			padding-bottom:56.25%;
			padding-top:30px;
			margin: 35px 25px;
			height:0;
			overflow:hidden;
		}

		.video-clip iframe, .video-clip object, .video-clip embed {
			position:absolute;
			top:0;
			left:0;
			width:100%;
			height:100%;
		}

		.upper {
			text-transform: uppercase;
		}

		.bold {
			font-weight: bold;
		}

		.colour-white {
			color: white;
		}

		.colour-black {
			color: black;
		}

		.colour-red {
			color: red;
		}

		.colour-grey {
			color: #777777;
		}

		.colour-dark-grey {
			color: #333333;
		}

		.colour-site {
			color: #d2aa4c;
		}

		.colour-site-2 {
			color: #bdbec0;
		}

		.coloured-list {
			list-style: none;
			text-align: center;
			padding: 0px 10px;
		}

		.coloured-list ul {
			margin: 0px;
		}

		.coloured-list .odd {
			color: #d2aa4c;
		}

		.coloured-list .even {
			color: #bdbec0;
		}

		.map iframe {
			width:100%;
			height:450px;
			border:solid 1px #aaa;
			margin: 15px 0px;
			box-shadow: 1px 1px 4px #aaa;
			-webkit-box-shadow: 1px 1px 4px #aaa;
			-moz-box-shadow: 1px 1px 4px #aaa;
		}

		.font-70 {
			font-size: .7em;
		}

		.font-80 {
			font-size: .8em;
		}

		.font-90 {
			font-size: .9em;
		}

		.font-100 {
			font-size: 1em;
		}

		.font-110 {
			font-size: 1.1em;
		}
		
		.font-120 {
			font-size: 1.2em;
		}
		
		.font-130 {
			font-size: 1.3em;
		}

		.font-140 {
			font-size: 1.4em;
		}

		.font-150 {
			font-size: 1.5em;
		}

		.font-160 {
			font-size: 1.6em;
		}

		.font-170 {
			font-size: 1.7em;
		}

		.font-180 {
			font-size: 1.8em;
		}

		.font-190 {
			font-size: 1.9em;
		}

		.font-200 {
			font-size: 2em;
		}

		.font-250 {
			font-size: 2.5em;
		}

		.font-300 {
			font-size: 3em;
		}

		.indent-20 {
			margin-left: 20px;
		}

		.indent-30 {
			margin-left: 30px;
		}

		.indent-50 {
			margin-left: 30px;
		}

		.company-name {
			font-family: 'Noto Serif', sans-serif;
			font-weight: bold;
			font-size: 1.04em;
			color: #d2aa4c;
		}

		.no-screen {
			display: none;
		}

		.no-screen-print {
			display: none;
		}

		.overlay-dotted-dark {
			background-image: url('/images/background-overlay-dotted-dark.png');
		}

		.overlay-dotted-light {
			background-image: url('/images/background-overlay-dotted-light.png');
		}

		.overlay-sheen-light {
			background-image: url('/images/background-overlay-sheen-light.png');
		}

		.overlay-sheen-dark {
			background-color: rgba(0,0,0,0.85);
		}

		.overlay-dotted-dark, .overlay-dotted-light, .overlay-sheen-light {
			background-position: center center;
			background-repeat: repeat;
			background-color: transparent;
		}

		.spacer-40 {
			height: 40px;
		}

		.padding-top-0 {
			padding-top: 0px !important;
		}

		.margin-top-10 {
			margin-top: 10px !important;
		}

		.fade-in {
			animation: fadeIn ease 2s;
			-webkit-animation: fadeIn ease 2s;
		}
		
		@keyframes fadeIn {
			0% {opacity:0;}
			100% {opacity:1;}
		}

		@-webkit-keyframes fadeIn {
			0% {opacity:0;}
			100% {opacity:1;}
		}

		.fade-out {
			animation: fadeOut ease 2s;
			-webkit-animation: fadeOut ease 2s;
		}
		
		@keyframes fadeOut {
			0% {opacity:1;}
			100% {opacity:0;}
		}

		@-webkit-keyframes fadeOut {
			0% {opacity:1;}
			100% {opacity:0;}
		}

		.fade-in-out {
			animation: flickerAnimation 2s infinite;
			-webkit-animation: flickerAnimation 2s infinite;
		}

		@keyframes flickerAnimation {
			0%   { opacity: 1; }
			50%  { opacity: 0.8; }
			100% { opacity: 1; }
		}

		@-webkit-keyframes flickerAnimation{
			0%   { opacity: 1; }
			50%  { opacity: 0.8; }
			100% { opacity: 1; }
		}

	/* END General Layout Elements */

	/* START Screen Size Dependent Formatting */

		/* width >= 1440px */
		@media only screen and (min-width: 1440px) {

			.computer-only, .header .computer-only {
				display: initial;
			}

			.mobile-only, .header .mobile-only, .show-only-480, .show-only-768, .show-only-960 {
				display: none;
			}

			.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
				max-height: 625px;
			}

			.details .photo img {
				max-width: 250px;
			}

		}

		/* 1280px <= width < 1440px */
		@media only screen and (min-width: 1280px) and (max-width: 1439px) {

			.computer-only, .header .computer-only {
				display: initial;
			}

			.mobile-only, .header .mobile-only, .show-only-480, .show-only-768, .show-only-960 {
				display: none;
			}

			.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
				max-height: 600px;
			}

			.page-link .photo {
				padding: 0px 20px 0px 20px;
			}

		}

		/* 1024px <= width < 1280px */
		@media only screen and (min-width: 1024px) and (max-width: 1279px) {
			
			table {
				width: 80%;
			}
			
			.computer-only, .header .computer-only {
				display: initial;
			}

			.mobile-only, .header .mobile-only, .show-only-480, .show-only-768, .show-only-960, .hide-when-squashed {
				display: none;
			}

			.page-link .photo {
				padding: 0px 10px 0px 10px;
			}

			.detail {
				width: 100%;
			}

			.details .odd .text {
				margin-right: 150px;
			}

			.details .even .text {
				margin-left: 150px;
			}

			.logos-inline img {
				max-width: 170px;
				margin: 2px;
			}

			.contact-details .contact-links {
				font-size: 90%;
			}

		}

		/* 960px <= width < 1024px */
		@media only screen and (min-width: 960px) and (max-width: 1023px) {

			table {
				width: 90%;
			}
			
			.holding {
				background-color: green;
			}

			.computer-only, .header .computer-only {
				display: initial;
			}

			.mobile-only, .header .mobile-only, .show-only-480, .show-only-768, .show-only-960, .hide-when-squashed {
				display: none;
			}

			.header .logo img {
				max-width: 140px;
			}

			.header .tag-line, .header .contacts {
				font-size: 90%;
			}

			.header .social-icons img {
				width: 30px;
			}

			.slideshow .caption {
				width: 70%;
			}

			.message .message-div {
				width: 64%;
				left: calc(18% - 25px);
			}

			.page-links .holding {
				width: 100%;
			}

			.page-link .photo {
				padding: 0px 5px 0px 5px;
			}

			.detail {
				width: 100%;
			}

			.details .odd .text {
				margin-right: 100px;
			}

			.details .even .text {
				margin-left: 100px;
			}

			.case-study-category-link {
				width: 50%;
			}

			.logos-inline img {
				max-width: 160px;
				margin: 2px;
			}

			.contact-details .contact-links {
				font-size: 80%;
			}

		}

		/* 768px <= width < 960px */
		@media only screen and (min-width: 768px) and (max-width: 959px) {

			table {
				width: 100%;
			}
			
			.holding {
				width: 96%;
				background-color: yellow;
			}

			.computer-only, .header .computer-only {
				display: initial;
			}

			.mobile-only, .header .mobile-only, .hide-below-960, .show-only-480, .show-only-768, .hide-when-squashed {
				display: none;
			}

			.header .logo img {
				max-width: 140px;
			}

			.header .tag-line, .header .contacts {
				font-size: 90%;
			}

			.header .social-icons img {
				width: 30px;
			}

			.dropdown-menu li a, .dropdown-menu .dropdown-link {
				font-size: 1.2em;
			}

			.dropdown-menu .dropdown-content a {
				font-size: 1.1em;
			}

			.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
				max-height: 450px;
			}

			.slideshow .caption {
				width: 80%;
			}
			.slideshow .caption h2 {
				font-size: 36px;
			}
			.slideshow .caption p {
				font-size: 16px;
			}

			.banner-image {
				min-height:350px;
			}

			.message .message-div {
				width: 70%;
				left: calc(15% - 25px);
			}

			.page-links .holding {
				width: 100%;
			}

			.page-link {
				width: 33.33333333%;
			}

			.page-link .photo {
				padding: 0px 15px 0px 15px;
			}

			.detail {
				width: 100%;
			}

			.details .photo img {
				max-width: 200px;
			}

			.details .odd .text {
				margin-right: 50px;
			}

			.details .even .text {
				margin-left: 50px;
			}

			.details .text h2 {
				margin: 0px 0px 20px 0px;
				font-size: 1.1em;
			}

			.case-study-category-link {
				width: 50%;
			}

			.tab-gallery-photo, .kitchen-case-study-link, .case-study-kitchen-link {
				width: 50%;
			}

			.case-study-equipment-link {
				width: 33.33333333%;
			}

			.logos-inline img {
				max-width: 145px;
				margin: 2px;
			}
			
			.gallery-photos .label {
				font-size: 1.4em;
				padding: 5px 0px 5px 0px;
			}

			.enquiries input[type="text"], .enquiries textarea, .enquiries select {
				max-width: 80%;
				width: 80%;
			}

			.enquiries input[type="date"], .enquiries input[type="number"] {
				max-width: 36.5%;
				width: 36.5%;
			}

			.towns .town {
				width:33.33333333%;
			}

			.contact-details .contact-links {
				font-size: 65%;
			}

		}

		/* Changed to 540 on this website because works better, but didn't change all code, so 480 used elsewhere. */
		/* 540px <= width < 768px */
		@media only screen and (min-width: 540px) and (max-width: 767px) {

			table {
				width: 100%;
				border-spacing: 15px 2px;
			}
			
			th {
				font-size: 1.1em;
			}
			
			.holding {
				width: 94%;
				background-color: red;
			}

			.col-7 { width: 100%; }
			.col-6 { width: 100%; }
			.col-5 { width: 100%; }
			.col-3 { width: 50%; }
			.col-2 { width:33.33333333%; }
			.col-1 { width:16.66666667%; }

			.computer-only, .header .computer-only, .sub-menu .holding, .hide-below-768, .hide-below-960, .show-only-480, .show-only-960, .hide-only-768 {
				display: none;
			}

			.mobile-only, .header .mobile-only {
				display: initial;
			}

			.header {
/*				padding-bottom: 5px;*/
			}

			.header .logo {
				width: 24%;
			}

			.header .logo img {
				max-width: 110px;
			}

			.header .contacts {
				width: 40%;
				font-size: 80%;
			}

			.header .contacts p {
/*				margin-top: 5px;
				margin-bottom: 10px;*/
			}

			.header .social-icons {
				width: 36%;
			}

			.header .social-icons img {
				width: 30px;
			}

			.dropdown-menu .dropdown-content .sub-item {
				color: #888;
				padding-left: 40px;
				padding-right: 40px;
			}
			
			.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
				max-height: 325px;
			}

			.slideshow .caption {
				width: 85%;
			}
			.slideshow .caption h2 {
				font-size: 32px;
			}
			.slideshow .caption p {
				font-size: 14px;
			}
			
			.banner-image {
				min-height:350px;
			}

			.banner-image .title {
				width: 85%;
				font-size: 80%;
			}

			.message .message-div {
				width: 80%;
				left: calc(10% - 25px);
			}

			.page-links .holding {
				width: 100%;
			}

			.page-link .photo {
				padding: 0px 10px 0px 10px;
			}

			.details .photo img {
				max-width: 175px;
			}

			.details .text {
				margin-top: 20px;
				margin-bottom: 30px;
			}

			.details .odd .text {
				margin-right: 20px;
			}

			.details .even .text {
				margin-left: 20px;
			}
			
			.details .text h2 {
				margin: 0px 0px 10px 0px;
				font-size: 1.1em;
			}

			.case-study-category-link {
				width: 50%;
			}

			.tab-gallery-photo, .kitchen-case-study-link, .case-study-kitchen-link, .case-study-equipment-link {
				width: 50%;
			}

			.logos-inline img {
				max-width: 130px;
				margin: 2px;
			}

			.kitchen-link, .equipment-link {
				width: 50%;
			}

			.gallery-photos .gallery-photo {
				border: solid 5px #transparent;
				width: 50%;
			}

			.gallery-photos .label {
				font-size: 1.3em;
				padding: 5px 0px 5px 0px;
			}

			.request-brochure .request-form {
				width: 60%;
			}

			.request-brochure .request-image {
				width: 40%;
			}

			.towns {
				background-position: center center;
			}

			.towns .town {
				width:50%;
				padding: 10px;
			}

			.contact-details .contact-links {
				font-size: 80%;
			}

			.footer .accreditations img {
				height: 75px;
			}

			.footer .social-icons, .footer .copyright {
				width: 100%;
				margin: 20px 0px 15px 0px;
				text-align: center;
			}

			.footer .social-icons ul {
				float: none;
			}

			.footer .social-icons li {
				padding: 0px 10px;
			}

			.footer .copyright p {
				margin: 0px;
			}

			.block-slider-align-right {
				float:none;
				margin: 0px 0px 15px 0px;
				width:100%;
			}

		}

		/* width < 540px */
		@media only screen and (max-width: 539px) {

			table {
				width: 100%;
				font-size: 90%;
				border-spacing: 10px 2px;
			}
			
			.holding {
				width: 100%;
				background-color: blue;
			}

			.col-8 { width: 100%; }
			.col-7 { width: 100%; }
			.col-6 { width: 100%; }
			.col-5 { width: 100%; }
			.col-4 { width: 100%; }
			.col-3 { width: 100%; }
			.col-2 { width:33.33333333%; }
			.col-1 { width:33.33333333%; }

			.col-2-4 { width: 100%; }

			.computer-only, .header .computer-only, .sub-menu .holding, .hide-below-480, .hide-below-768, .hide-below-960, .show-only-768, .show-only-960, .hide-when-squashed {
				display: none;
			}

			.mobile-only, .header .mobile-only {
				display: initial;
			}

			.header {
				padding-bottom: 5px;
			}

			.header .logo {
				width: 100%;
				text-align:center;
			}

			.header .logo img {
				max-width: 130px;
			}

			.header .contacts {
				text-align: center;
				font-size: 90%;
				padding-top: 0px;
			}

			.header .contacts p {
				margin-top: 5px;
				margin-bottom: 10px;
			}

			.dropdown-menu .dropdown-content .sub-item {
				color: #888;
				padding-left: 40px;
				padding-right: 40px;
			}

			.slideshow .slides, .slideshow .slides .slide, .slideshow .slides .slide img {
				max-height: 300px;
			}

			.slideshow .caption {
				width: 90%;
			}

			.slideshow .caption h2 {
				font-size: 28px;
			}

			.slideshow .caption p {
				font-size: 12px;
			}

			.banner-image {
				min-height:350px;
			}

			.banner-image .title {
				width: 90%;
				font-size: 70%;
			}

			.message .message-div {
				width: 84%;
				left: calc(8% - 25px);
			}

			.page-link {
				width: 50%;
			}

			.page-link .photo {
				padding: 0px 10px 0px 10px;
			}

			.page-link p {
				font-size: 1.2em;
			}

			.details .photo img {
				max-width: 150px;
			}

			.details .text {
				margin-top: 20px;
				margin-bottom: 30px;
			}

			.details .odd .text {
				margin-left: 60px;
				margin-right: 20px;
			}

			.details .even .text {
				margin-left: 20px;
				margin-right: 60px;
			}

			.details .text h2 {
				margin: 0px 0px 10px 0px;
				font-size: 1.1em;
			}

			.content .testimonial-logo img {
				max-width: 125px;
			}

			.content .hearing-aid-types img {
				width: 100%;
			}

			.prev, .next {
				margin-right: 0px;
				margin-left: 0px;
			}

			.tab-gallery-photo, .kitchen-case-study-link, .case-study-kitchen-link, .case-study-equipment-link {
				padding: 5px 0px 0px 0px;
			}

			.about-link {
				width: 50%;
			}

			.logos-inline img {
				max-width: 110px;
				margin: 2px;
			}

			.gallery-photos .holding {
				padding: 6px;
			}

			.gallery-photos .gallery-photo {
				border: solid 3px #transparent;
			}

			.gallery-photos .label {
				font-size: 1.4em;
				padding: 5px 0px 5px 0px;
			}

			.request-brochure .request-image {
				min-height: 180px;
			}

			.bespoke-design blockquote {
				font-size: 1.3em;
				margin: 45px 0px 25px 0px;
			}

			.enquiries input[type="text"], .enquiries textarea, .enquiries select {
				max-width: 95%;
				width: 95%;
			}
		
			.enquiries input[type="date"], .enquiries input[type="number"] {
				max-width: 44.5%;
				width: 44.5%;
			}

			.towns {
				background-position: center center;
			}

			.towns .town {
				width:50%;
				padding: 5px;
			}	

			.testimonial .quote {
				padding: 10px 10px 10px 30px;
			}

			.contact-details .contact-links {
				font-size: 80%;
			}

			.footer .accreditations {
				text-align: left;
				width:100%;
			}

			.footer .accreditations img {
				height: 70px;
			}

			.footer .social-icons, .footer .copyright {
				width: 100%;
				margin: 20px 0px 15px 0px;
				text-align: center;
			}

			.footer .social-icons ul {
				float: none;
			}

			.footer .social-icons li {
				padding: 0px 10px;
			}

			.footer .copyright p {
				margin: 0px;
			}
			
			.indent-20, .indent-30, .indent-50 {
				margin-left: 0px;
			}

			.block-left, .block-left-space, .block-left-space-border, .block-left-space-border-label,
			.block-right, .block-right-space, .block-right-space-border, .block-right-space-border-label { 
				width: 100%;
				float: none;
			}

			.block-none-space, .block-none-space-border, .block-none-space-border-label,
			.block-right-space, .block-right-space-border, .block-right-space-border-label,
			.block-left-space, .block-left-space-border, .block-left-space-border-label {
				margin: 0px 0px 15px 0px;
			}
		
			.block-none-space-border-label, .block-right-space-border-label, .block-left-space-border-label {
				padding: 0px;
			}

			.block-slider-align-right {
				float:none;
				margin: 0px 0px 15px 0px;
				width:100%;
			}

		}

	/* END Screen Size Dependent Formatting */