/* Easier Than (www.easierthan.co.uk) Website Template CSS */
/* Last Modified: 16/06/2015 - DB */

@import url(https://fonts.googleapis.com/css?family=Kaushan+Script:400);
@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,600);
@import url(https://fonts.googleapis.com/css?family=Muli: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: #111;
			color: #000;
			height: 100%;
		}

		/* 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/banner-home.jpg');
			background-position: center center;
			background-repeat: no-repeat;
			-webkit-background-size: cover;
			-moz-background-size: cover;
			-o-background-size: cover;
			background-size: cover;
			opacity: 0.3;
		}

		img {
			border: 0px;
		}

		h1 {
			font-family: 'Kaushan Script', sans-serif;
			font-weight: 400;
			font-size: 2em;
			color: #888;
			padding: 8px 15px;
			margin: 5px 0px 50px 0px;
		}

		h2 {
			font-family: 'Kaushan Script', sans-serif;
			font-weight: 700;
			font-size: 1.7em;
			color: #2f317f;
			margin: 20px 0px 10px 0px;
			line-height: 1.3em;
			letter-spacing: 1.1px;
			text-transform: uppercase;
		}

		h3 {
			font-family: 'Kaushan Script', sans-serif;
			font-weight: 700;
			font-size: 1.4em;
			letter-spacing: 1.1px;
			color: #111;
			margin: 10px 0px 10px 0px;
			text-transform: uppercase;
		}

		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: #c10917;
			background-color: transparent;
		}
		
		a:hover, a:active, a:focus { 
			background-color: transparent;
			color: #2f317f;
		}
		
		b {
			font-weight: 600;
		}

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

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

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

		input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
			background-color: rgba(193, 9, 23, 1);
		    cursor: pointer;
			opacity: 0.8;
			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: 'Montserrat', 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: 1150px;
			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: #c10917;
		}

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

		.top-links {
			background-color: transparent;
		}
		
		.top-links .holding {
			background-color: transparent;
			padding: 0px 5px 0px 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 5px 3px;
			display: inline-block;
		}

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

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

		.header {
			position: relative;
			padding-top: 5px;
			padding-bottom: 5px;
			background-color: transparent;
		}

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

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

		.header .logo img {
			padding: 0px;
			width: 100%;
			max-width: 600px;
			height: auto;
			width: auto\9; /* ie8 */
			vertical-align:bottom;
		}

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

		.header .contacts {
			padding: 10px;
		}

		.header .contacts p {
			font-family: 'Muli', sans-serif;
			font-weight: 400;
			letter-spacing: 1.5px;
		}

		.header .contacts p span {
			color: #c0c0c0;
		}

		.header .contacts p b {
			font-weight: normal;
		}

		.header .contacts a {
			text-decoration: none;
			color: #fff;
			font-size: 1.3em;
		}
		
		.header .contacts a:hover {
			color: #fcaa00;
		}

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

		.header .social-icons li {
			padding: 0px 0px 0px 4px;
			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: 30px;
		}

		.announcement {
			background-color: #222;
		}

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

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

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

		.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 {
			position: relative;
		}

		.banner-image .holding {
			position: relative;
			background-color: #fff;
			padding: 15px;
		}

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

		.banner-image .polaroid {
			position: relative;
			background: #fff;
			width: 100%;
			padding: 0px;
			margin: 0px;
			display: inline-block;
			/*box-shadow: 1px 1px 3px #222;
			-moz-box-shadow: 1px 1px 3px #222;
			-webkit-box-shadow: 1px 1px 3px #222;
			transform: rotate(-2deg);
			-moz-transform: rotate(-2deg);
			-webkit-transform: rotate(-2deg);
			-o-transform: rotate(-2deg);*/
			z-index: 100;
		}

		.banner-image .polaroid img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
		}

		.banner-image .title {
			position:absolute;
			bottom: 25px;
			right: 15px;
			padding: 10px;
			background-color: rgba(33, 122, 153, .9);
			text-align: left !important;
			width: 70%;
			z-index: 200;
		}

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

		.banner-image .logo {
			position:absolute;
			top: 40px;
			left: 25px;
			width: 90%;
			z-index: 998;
		}
		
		.banner-image .logo img {
			width: 60%;
			max-width: 600px;
			height: auto;
		}
		
		.banner-image .dropdown-menu {
			position:absolute;
			bottom: 50px;
			right: -15px;
			font-family: 'Lato', sans-serif;
			font-weight: 400;
			/* background-color: rgba(193, 9, 23, .9);*/
			width: 70%;
			z-index: 998;
			background-image: url('/images/background-menu.png');
			background-position: left center;
			background-repeat: no-repeat;
			/* clip-path: polygon(0 0, 100% 0%, 100% 100%, 30px 100%);*/
		}

		.banner-image .dropdown-menu ul {
			list-style-type: none;
			margin: 0px;
			padding: 0px 0px 0px 45px;
			overflow: hidden;
			background-color: transparent;
		}

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

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

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

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

		.banner-image .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;
		}

		.banner-image .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;
		}

		.banner-image .dropdown-menu .dropdown-content a:hover {
			color: #fff;
			background-color: #333;
		}

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

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

		.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: 1em;
			line-height: 1.5em;
		}

		.content .holding {
			background-color: #fff;
			padding: 20px 25px 20px 25px;
		}

		.content .holding.off-white {
			background-color: #f5f5f5;
			padding: 0px 25px 30px 25px;
		}

		.content h1 {
			margin: 0px 25px 50px -40px;
			line-height: 1.1em;
			color: #fff;
			width: 275px;
			/*background-color:#2f317f;*/
			background-image: url('/images/background-page-heading.png');
			background-position: right center;
			background-repeat: no-repeat;
			padding-left: 40px;
			text-transform: uppercase;
			/*clip-path: polygon(0px 0px, 350px 0%, 150px 350px, 0px 100%);*/
		}
		
		.content h2 {
			margin: 60px 0px 30px 0px;
		}
		
		.content h2.sub-heading {
			margin: -20px 0px 30px 0px;
			font-size: 1.4em;
			text-transform:uppercase;
			color:#222;
		}

		.content p {
			font-family: 'Montserrat', sans-serif;
			font-weight: 300;
			font-size: 1.2em;
			margin: 30px 0px 30px 0px;
		}
		
		.content ul {
			font-family: 'Montserrat', sans-serif;
			font-size: 1.1em;
			margin: 30px 0px 30px 0px;
		}
		
		.content .icon-list {
			text-align: center;
		}
		
		.content .icon-list p {
			font-size: 1.4em;
			width: 70%;
			margin-left: auto;
			margin-right: auto;
			text-align: left;
		}

		.content .icon-list ul {
			font-size: 1.4em;
			text-align: left;
			line-height: 1.6em;
			padding-left: 10px;
		}

		.content .icon-list li {
			list-style: none;
			padding: 15px 20px 15px 50px;
			background-image: url('/images/icon-list.png');
			background-repeat: no-repeat;
			background-position: left center;
			background-size: 40px;
        }
		
		.content .icon-list img {
			width: 50px;
			height: auto;
			padding: 0px 15px;
			vertical-align:middle;
		}

		.content .highlights, .shout-out .highlights {
			margin-left:-15px;
			margin-right:-15px;
			margin-bottom: 20px;
			text-align: center;
		}
		
		.content .highlight, .shout-out .highlight {
			padding: 10px;
		}

		.content .highlight img, .shout-out .highlight img {
			width: 120px;
			height: auto;
		}
		
		.content .highlight .title, .shout-out .highlight .title {
			margin: 0px 0px 10px 0px;
			font-family: 'Montserrat', sans-serif;
			font-size: 1.5em;
			font-weight: 300;
			line-height: 1.2em;
			color: #c10917;
		}

		.content .highlight .text, .shout-out .highlight .text {
			margin: 0px 0px 20px 0px;
			font-size: 1.1em;
			line-height: 1.1em;
			color: #444;
		}
		
		.content .accreditations {
			text-align: center;
			vertical-align: middle;
			padding: 5px 10px;
		}

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

		.content .diagram {
			text-align: center;
			padding: 5px;
		}

		.content .diagram img {
			width: 100%;
			max-width: 900px;
			height: auto;
			width: auto\9; /* ie8 */
		}

		.shout-out {
			background-color: transparent;
			color: #fff;
		}
		
		.shout-out .holding {
			background-color: transparent;
			padding: 20px 25px 20px 25px;
		}

		.shout-out .black {
			background-color: rgba(0, 0, 0, 0.7);
		}

		.shout-out .red {
			background-color: rgba(193, 9, 23, 0.7);
		}
		
		.shout-out .blue {
			background-color: rgba(47, 49, 127, 0.7);
		}

		.shout-out h2 {
			margin: 20px 0px 30px 0px;
			color: #eee;
		}
		
		.shout-out p, .shout-out ul {
			font-family: 'Montserrat', sans-serif;
			font-weight: 300;
			font-size: 1.2em;
		}

		.shout-out li {
			padding: 5px 0px 5px 0px;
		}
		
		.page-links {
			background-color: transparent;
		}

		.page-links .holding {
			background-color: #fff;
			padding: 0px 25px 0px 25px;
		}

		.page-links .col-4, .page-links .col-6 {
			padding: 0px 10px;
		}
		
		.page-link {
			position: relative;
			font-family: 'Muli', sans-serif;
			text-align: left;
			background-position: center center;
			background-repeat: no-repeat;
			-webkit-background-size: cover;
			-moz-background-size: cover;
			-o-background-size: cover;
			background-size: cover;
		}

		.page-link .title.red, .page-link .overlay.red {
			background-color: rgba(193, 9, 23, 0.7);
		}
		
		.page-link .title.blue, .page-link .overlay.blue {
			background-color: rgba(47, 49, 127, 0.7);
		}
		
		.page-link img {
			display: block;
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			webkit-filter: grayscale(95%);
			filter: grayscale(95%);
			opacity: 0.2;
		}

		.page-link .title {
			color: #fff;
			/*top: 50%;
			left: 50%;
			-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);*/
			font-size: 1.05em;
		}

		.page-link .title h2 {
			color: #fff;
			text-transform: uppercase;
		}		

		.page-link .title p {
			margin: 0px;
			padding: 16px;
		}
		
		.page-link .title ul {
			margin: 5px;
			padding-left:50px;
		}
		
		.page-link .title .psuedo-button {
			display: inline-block;
			padding: 7px 10px;
			color: #222;
			background-color: #fff;
			text-align: right;
			position: absolute;
			font-size: 1.1em;
			right: 15px;
			bottom: 15px;
		}
		
		.page-link .overlay {
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			height: 100%;
			width: 100%;
			opacity: 0;
			transition: .5s ease;
			/*background-color: rgba(0,0,0,0.8);*/
		}

		.page-link:hover .overlay {
			opacity: 0.6;
		}
		
		.page-link .overlay .title {
			color: #eee;
		}		

/*		SLIDE FROM RIGHT .page-link .overlay {
			position: absolute;
			bottom: 0;
			left: 0;
			right: 100%;
			background-color: rgba(9,41,35,0.9);
			overflow: hidden;
			width: 0;
			height: 100%;
			transition: .5s ease;
		}
		
		.page-link:hover .overlay {
			width: 100%;
			right: 0;
		}*/
		
		.important {
			background-color: #fff;
		}

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

		.gallery-photos {
			background-color: rgba(50,50,50,0.9);
			padding: 0px;
		}

		.gallery-photos .holding {			
			background-color: transparent;
			padding: 15px;
			width: 100%;
			border: 0px;
			max-width: 1600px;
		}

		.gallery-photos .gallery-photo {
			position: relative;
			overflow: hidden;
			border: solid 15px 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 {
			filter: brightness(0.9);
			/*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;
		}

		.gallery-photos .different-sizes {
			margin: 0px 30px 0px 30px;
			line-height: 0;
			-webkit-column-count: 3;
			-moz-column-count:    3;
			column-count:         3;
			-webkit-column-gap:   30px;
			-moz-column-gap:      30px;
			column-gap:           30px;
		}

		.gallery-photos .different-sizes img {
			width: 100% !important;
			height: auto !important;
			padding: 15px 0px 15px 0px;
		}

		.gallery-links {
			background-color: rgba(255,255,255,0.9);
		}

		.gallery-links .holding {
			background-color: transparent;
			padding: 15px;
			width: 100%;
			border: 0px;
			max-width: 1500px;
		}

		.gallery-link {
			font-family: 'Montserrat', sans-serif;
			font-weight: 400;
			text-align: center;
			padding: 20px 25px 10px 25px;
		}

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

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

		.gallery-link img {
			width: 100%;
			max-width: 220px;
			height: auto;
			width: auto\9; /* ie8 */
			border-radius:50%;
			-webkit-border-radius:50%;
			-moz-border-radius:50%;
		}

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

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

		.gallery-facebook-link {
			padding-top: 20px;
		}

		.gallery-facebook-link a {
			width:90%;
			display:block;
			margin: 10px auto;
			padding:5px;
			background-color:#2E447A;
			color:#fff;
			font-weight:bold;
			text-align:center;
			text-decoration:none;
			box-shadow: 0px 0px 6px #888888;
			-webkit-box-shadow: 0px 0px 6px #888888;
			-moz-box-shadow: 0px 0px 6px #888888;
		}

		.gallery-facebook-link a:hover {
			opacity: 0.9;
		}

		.gallery-facebook-link img {
			vertical-align:middle;
			margin-right:10px;
		}

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

		.carousel-links {
			background-color: #000;
			background: linear-gradient(to left, #a3d9eb 0%, #000 30%, #000 70%, #a3d9eb 100%);
			background: -webkit-linear-gradient(to left, #a3d9eb 0%, #000 30%, #000 70%, #a3d9eb 100%);
			background: -moz-linear-gradient(to left, #a3d9eb 0%, #000 30%, #000 70%, #a3d9eb 100%);
			background: -ms-linear-gradient(to left, #a3d9eb 0%, #000 30%, #000 70%, #a3d9eb 100%);
		}

		.carousel-links .holding {			
			background-color: transparent;
			padding: 20px 0px;
			width: 100%;
			max-width: 1700px;
			height: 230px;
		}

		.carousel-links .carousel-link {
			margin: 5px;
			width: 180px;
			opacity: 0.2;
			border-radius: 50%;
			-webkit-border-radius: 50%;
			-moz-border-radius: 50%;
			box-shadow: 0 0 2px rgba(50, 50, 50, .8);
			-webkit-box-shadow: 0 0 2px rgba(50, 50, 50, .8);
			-moz-box-shadow: 0 0 2px rgba(50, 50, 50, .8);
		}
		
		.carousel-links .carousel-link.is-selected {
			opacity: 1.0;
		}

		.carousel-links .carousel-link.is-previous, .carousel-links .carousel-link.is-next {
			opacity: 0.8;
		}

		.carousel-links .carousel-link.is-previous-before, .carousel-links .carousel-link.is-next-after {
			opacity: 0.5;
		}

		.carousel-links .carousel-link img {
			border-radius: 50%;
			-webkit-border-radius: 50%;
			-moz-border-radius: 50%;
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			display: block;
		}

		.carousel-links .carousel-link a {
			text-decoration: none;
		}

		.carousel-links .carousel-link:hover {
			box-shadow: 0 0 8px rgba(250, 250, 250, .8);
			-webkit-box-shadow: 0 0 8px rgba(250, 250, 250, .8);
			-moz-box-shadow: 0 0 8px rgba(250, 250, 250, .8);
			transition: .5s ease 0s;
		}

		.carousel-links .carousel-link-caption {
			font-size: 1.2em;
			color: #fff;
			margin: 0px;
			padding: 10px 10px 0px 10px;
			text-align: center;
		}

		.carousel-links .carousel .flickity-page-dots {
			bottom: -60px;
		}
		
		.brands {
			background-color:#fff;
			text-align: center;
		}

		.brands .holding {
			background-color: transparent;
			padding: 30px 15px;
			max-width: 1500px;
		}

		.brands h2 {
			margin: 10px 0px 20px 0px;
		}

		.brands ul {
			display: block;
			list-style: none;
			margin: 0px;
			padding: 0px;
		}

		.brands li {
			display: inline-block;
			padding: 10px 30px;
		}

		.brands img {
			max-width: 225px;
			height: auto;
			width: auto\9; /* ie8 */
		}

		.brands a {
			color: #fcb117;
		}

		.brands img:hover {
			transition: .5s ease 0s;
			webkit-filter: grayscale(95%);
			filter: grayscale(95%);
		}		

		.faqs {
			background-color:#fff;
		}

		.faqs .holding {
			background-color: transparent;
			padding: 20px 15px 60px 15px;
		}

		.faqs h2 {
			margin: 0px 0px 40px 0px;
		}
		
		.faqs .question {
			background-color: #eee;
			font-size: 1.2em;
			color: #444;
			cursor: pointer;
			padding: 18px 48px 18px 18px;
			width: 100%;
			text-align: left;
			border: none;
			outline: none;
			transition: 0.4s;
		}

		.faqs .question:after {
			content: '\02795'; /* Unicode character for "plus" sign (+) */
			font-size: 0.5em;
			color: #777;
			float: right;
			margin-right: -30px;
			padding-top:5px;
		}

		.faqs .question.active, .faqs .question:hover {
			background-color: #ccc;
		}

		.faqs .question.active:after {
			content: "\2796"; /* Unicode character for "minus" sign (-) */
		}

		.faqs .answer {
			padding: 0 18px;
			color: #222;
			background-color: white;
			line-height: 1.4em;
			max-height: 0;
			overflow: hidden;
			transition: max-height 0.2s ease-out;
		}

		.faqs .answer .highlighted {
			/*color:#ce0002;*/
			color: #444;
			font-style: italic;
		}

		.towns {
			position: relative;
			background: transparent;
			color: #eee;
			/*background-image:url('/images/background-towns.jpg');
			background-attachment: fixed;
			background-position: center right;
			background-repeat: no-repeat;
			background-size: cover;*/
			overflow: hidden;
		}

		.towns .holding {
			background-color: rgba(0, 0, 0, 0.7);
			padding: 20px 25px 0px 25px;
		}

		.towns h2 {
			color: #eee;
		}

		.towns p {
			font-family: 'Montserrat', sans-serif;
			font-weight: 300;
			font-size: 1.1em;
		}

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

		.towns .town {
			font-family: 'Montserrat', sans-serif;
			font-weight: 300;
			font-size: 1.1em;
			padding: 15px 0px;
			text-align: center;
		}
		
		.towns .company-name {
			color: #fff;
		}

		.towns a {
			color: #fff;
			font-weight:bold;
		}

		.towns a:hover {
			color: #c10917;
		}

		.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;
		}

		.features {
			background-color: rgba(255,255,255,1);
			font-size: 1em;
			line-height: 1.5em;
		}

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

		.features .polaroid {
			position: relative;
			background: #fff;
			display: inline-block;
			width: 50%;
			max-width: 250px;
			padding: 15px;
			margin: 5px 20px;
			text-align: center;	
			box-shadow: 1px 1px 3px #222;
			-moz-box-shadow: 1px 1px 3px #222;
			-webkit-box-shadow: 1px 1px 3px #222;
			transform: rotate(5deg);
			-moz-transform: rotate(5deg);
			-webkit-transform: rotate(5deg);
			-o-transform: rotate(5deg);
			z-index: 990;
		}

		.features .polaroid img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			margin-bottom: 10px;
		}

		.features .polaroid span {
			color: #222;
		}

		.features .polaroid.left {
			float: left;
			margin-right: 50px;
		}

		.features .polaroid.right {
			float: right;
			margin-left: 50px;
		}

		.features h3 {
			color: #000;
			padding: 50px 5px 15px 5px;
		}

		.feature p {
			padding-left: 5px;
			padding-right: 5px;
		}

		.testimonial .quote {
			padding: 0.8em 0px 0.1em 0px;
			margin: 0px;
			quotes: "\201C""\201D""\2018""\2019";
		}

		.testimonial .quote.start:before {
			color: #666;
			content: "\201C";
			font-family: 'Muli', sans-serif;
			font-size: 4em;
			line-height: 0em;
			margin-right: 0.25em;
			vertical-align: -0.4em;
		}

		.testimonial .quote.end:after {
			color: #666;
			content: "\201D";
			font-family: 'Muli', sans-serif;
			font-size: 4em;
			line-height: 0.1em;
			margin-left: 0.25em;
			vertical-align: -0.6em;
		}

		.testimonial .stars {
			font-size: 2em;
		}

		.testimonial .customer {
			font-family: 'Satisfy', sans-serif;
			font-size: 1.4em;
			color: #444;
			font-style: normal;
		}

		.testimonial b {
			color: #222;
			font-weight: 600;
		}

		.testimonial-link {
			position: relative;
			font-family: 'Muli', sans-serif;
			font-weight: 400;
			background-color: rgba(50,50,50,0.2);
/*			background-color: #c10917;*/
		}

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

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

		.testimonial-link .quote a {
			color: #c0c0c0;
		}

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

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

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

		.testimonial-link .quote p {
			color: #c10917;
			margin: 0px;
			padding: 0px 20px 20px 20px;
			text-align: right;
			font-size: 1.3em;
		}
		
		.testimonial-link .quote p span {
			font-size: 1.8em;
			color: #c0c0c0;
		}

		.testimonial-link .quote:hover {
		    cursor: pointer;
			filter: brightness(1.2);
			transition: .5s ease 0s;
		}

		.testimonial-link .polaroid {
			position: relative;
			background: #fff;
			display: inline-block;
			float:right;
			width: 50%;
			max-width: 250px;
			padding: 15px;
			margin: 25px;
			text-align: center;	
			box-shadow: 1px 1px 3px #222;
			-moz-box-shadow: 1px 1px 3px #222;
			-webkit-box-shadow: 1px 1px 3px #222;
			transform: rotate(5deg);
			-moz-transform: rotate(5deg);
			-webkit-transform: rotate(5deg);
			-o-transform: rotate(5deg);
			z-index: 999;
		}

		.testimonial-link .polaroid img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			margin-bottom: 10px;
		}

		.testimonial-link .polaroid span {
			color: #222;
		}

		.contact-intro {
			background-color: transparent;
		}

		.contact-intro .holding {
			background-color: #fff;
			padding: 0px 25px 20px 25px;
		}
		
		.contact-intro h2 {
			padding: 8px 15px;
			margin: 0px 25px 30px -40px;
			line-height: 1.1em;
			color: #fff;
			width: 225px;
			/*background-color:#2f317f;*/
			background-image: url('/images/background-page-heading.png');
			background-position: right center;
			background-repeat: no-repeat;
			padding-left: 40px;
		}

		.contact-intro h3 {
			margin: 0px 0px 10px 0px;
		}

		.contact-intro p {
			font-family: 'Montserrat', sans-serif;
			font-weight: 300;
			font-size: 1.2em;
		}

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

		.contact-details .holding {
			background-color: #fff;
			padding: 20px 0px 40px 0px;
		}
		
		.contact-details .contact-links a {
			font-family: 'Muli', sans-serif;
			font-weight: 700;
			display: block;
			color: #c10917;
			text-decoration: none;
			letter-spacing: 1px;
			transition: .3s background-color;
			background-color: transparent;
		}
		
		.contact-details .contact-links a:hover, .contact-details .contact-links a:active, .contact-details .contact-links a:focus {
			color: #2f317f;
			text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.75);
			transition: .5s ease 0s;
		}

		.contact-details .contact-links p {
			margin-top: 1px;
			margin-bottom: 1px;
			padding: 0px 10px;
		}

		.contact-details .contact-links .contact-icon {
			padding: 0px 10px 20px 10px;
			font-size: 3.5em;
			font-weight: normal;
		}

		.contact-details .contact-links .contact-icon div {
			background-color: rgba(255, 255, 255, 0.1);
			background-color: rgba(193, 9, 23, 0.9);
			color: #fff;
			display: inline-block;
			padding: 10px 17px;
			border-radius: 50%;
			-webkit-border-radius: 50%;
			-moz-border-radius: 50%;
			box-shadow: 0px 0px 1px 1px rgba(200,200,200,0.7);
		}
		
		.contact-details .contact-links .contact-icon div:hover {
			background-color: rgba(47, 49, 127, 0.9);
			transition: .5s ease 0s;
		}

		.contact-details .contact-links .contact-for {
			font-family: 'Raleway', sans-serif;
			font-size: 1.3em;
			font-weight: 400;
			color: #666;
			display: none;
		}

		.contact-details .contact-links .contact-link {
			font-family: 'Muli', sans-serif;
			font-size: 1.5em;
			font-weight: normal;
			letter-spacing: 1.5px;
			color: #222;
		}
		
		.footer {
			color: #f3f3f3;
			background-color: transparent;
/*			background-color: #5E171D;*/
/*			background-image: url('/Images/Background_Footer.jpg');
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			overflow: hidden;*/
		}

		.footer .holding {
			background-color: rgba(0, 0, 0, 0.7);
			padding: 0px 25px 0px 25px;
		}

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

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

		.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-contact-details div, .footer .footer-menu div {
			margin-top: 12px;
		}
		
		.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;
			padding: 45px 10px;
		}

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

		.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 */
		}
		
		.footer .social-icons .large-icon {
			width: 150px;
		}

		.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: #c0c0c0;
		}

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

	/* 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 { 
			float: left;
		}

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

		.block-none-space, .block-none-space-border,
		.block-right-space, .block-right-space-border,
		.block-left-space, .block-left-space-border {
			background-color: #000;
			width: 50%;
			max-width: 400px;
			margin: 0px 0px 25px 25px;
			padding: 5px;
		}

		.block-none-space a:hover, .block-none-space-border a:hover,
		.block-right-space a:hover, .block-right-space-border a:hover,
		.block-left-space a:hover, .block-left-space-border a:hover {
			filter: brightness(0.9);
			transition: .3s ease 0s;
		}

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

		.block-none-space .photo img, .block-none-space-border .photo img,
		.block-right-space .photo img, .block-right-space-border .photo img,
		.block-left-space .photo img, .block-left-space-border .photo img {
			width: 100%;
			height: auto;
			width: auto\9; /* ie8 */
			vertical-align: bottom;
		}

		.block-none-space-border .label, .block-right-space-border .label, .block-left-space-border .label {
			color: #fff;
			text-align: left;
			font-size: 0.85em;
			padding: 5px 0px 0px 0px;
		}

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

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

		.block-circle-right {
			float: right;
		}

		.block-circle-right img {
			margin: -30px 0px 25px 25px;
			width: 180px;
			height: auto;
			border-radius:50%;
			-webkit-border-radius:50%;
			-moz-border-radius:50%;			
		}

		.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: #c10917;
		}

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

		.coloured-list {
			color: #2f317f;
		}

		.coloured-list span {
			color: #444;
		}

		.coloured-list li {
			padding: 3px 0px 3px 0px;
		}

		.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-weight: bold;
			font-style:italic;
			color: #000;
		}

		.call-to-action {
			margin: 40px 10px 20px 25px;
		}

		.call-to-action a {
			color: #fff;
			background-color: #c10917;
			text-align: center;
			padding: 9px 20px;
			text-decoration: none;
			font-family: Verdana, Helvetica, Arial, sans-serif;
			font-size: 1em;
			transition: .3s background-color;
		}

		.call-to-action a:hover {
			background-color: #2f317f;
			color: #fff;
			transition: .5s ease 0s;
		}

		.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(10,10,10,0.5);
		}
		
		.overlay-dotted-dark, .overlay-dotted-light, .overlay-sheen-light {
			background-position: center center;
			background-repeat: repeat;
			background-color: transparent;
		}

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

		.margin-bottom-5 {
			margin-bottom: 5px !important;
		}

		.spacer-20 {
			height: 20px;
		}

		.spacer-30 {
			height: 30px;
		}

		.spacer-40 {
			height: 40px;
		}

		.spacer-50 {
			height: 50px;
		}

		.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;
			}

		}

		/* 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;
			}

		}

		/* 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, .hide-below-1280, .show-only-480, .show-only-768, .show-only-960 {
				display: none;
			}

			.page-link .title {
				font-size: 1em;
			}
		
			.gallery-link {
				padding: 20px 20px 10px 20px;
			}

			.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, .hide-below-1280, .hide-below-1024, .show-only-480, .show-only-768, .show-only-960 {
				display: none;
			}

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

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

			.header .social-icons {
				padding: 0px 0px 0px 0px;
			}

			.slideshow .caption {
				width: 70%;
			}

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

			.page-links .col-4, .page-links .col-4 {
				padding: 10px;
			}
			
			.page-link .title {
				font-size: 1em;
			}

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

			.logos-inline img {
				max-width: 160px;
				margin: 2px;
			}
			
			.towns .town {
				width:25%;
			}	

			.contact-details .contact-links {
				font-size: 80%;
			}
			
			.brands img {
				max-width: 200px;
			}			

		}

		/* 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, .hide-below-1280, .hide-below-1024, .show-only-480, .show-only-768 {
				display: none;
			}

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

			.header .contacts {
				font-size: 85%;
			}

			.header .social-icons {
				padding: 0px 0px 0px 0px;
			}

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

			.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:300px;
			}

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

			.page-links .col-4 {
				width: 50%;
			}

			.page-link .title {
				font-size: 0.9em;
			}
			
			.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;
			}

			.gallery-photos .different-sizes {
				margin: 0px 20px 0px 20px;
				line-height: 0;
				-webkit-column-gap:   20px;
				-moz-column-gap:      20px;
				column-gap:           20px;
			}

			.gallery-photos .different-sizes img {
				width: 100% !important;
				height: auto !important;
				padding: 10px 0px 10px 0px;
			}

			.gallery-link {
				padding: 20px 15px 10px 15px;
			}
			
			.enquiries input[type="text"], .enquiries textarea, .enquiries select {
				max-width: 75%;
				width: 75%;
			}

			.carousel-links .holding {
				height: 220px;
			}

			.carousel-links .carousel-link {
				width: 170px;
			}

			.towns .town {
				width:33.33333333%;
			}

			.features h3 {
				padding-top: 30px;
			}

			.features p {
				font-size: 95%;
			}

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

			.brands li {
				padding: 10px 15px;
			}

			.brands img {
				max-width: 200px;
			}			

		}

		/* 480px <= width < 768px */
		@media only screen and (min-width: 480px) 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, .hide-below-1280, .hide-below-1024, .show-only-480, .show-only-960, .hide-only-768 {
				display: none;
			}

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

			.header .logo {
				width: 70%;
			}

			.header .logo img {
				width: 80%;
			}

			.header .contacts {
				padding: 20px 10px;
				width: 15%;
			}
			
			.header .contacts p span {
				color: #000;
			}
			
			.header .contacts a {
				background-color: rgba(250,250,250,0.8);
				padding: 8px 10px;
				background-color: #c0c0c0;
				border-radius:50%;
				-webkit-border-radius:50%;
				-moz-border-radius:50%;
			}
			
			.header .contacts a:hover {
				background-color: #c10917;
				transition: .5s ease 0s;
			}

			.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 {
				margin-top: 10px;
			}
			
			.banner-image .logo {
				top: 35px;
			}
			
			.banner-image .logo img {
				width: 70%;
			}
			
			.banner-image .dropdown-menu {
				right: -10px;
				bottom: 45px;
			}
			
			.banner-image .title {
				width: 85%;
				font-size: 80%;
			}

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

			.content h1 {
				margin: 0px 25px 50px -35px;
				padding-left: 35px;
			}

			.content .icon-list.right {
				margin-top: -40px;
			}

			.content .icon-list ul {
				font-size: 1.2em;
			}
			
			.content .highlight, .shout-out .highlight {
				width: 50%;
			}

			.content .highlight.last, .shout-out .highlight.last {
				width: 100%;
			}

			.shout-out ul {
				padding-left: 20px;
			}
			
			.page-links .holding {
				padding: 0px 10px 0px 10px;
			}
			
			.page-links .col-4 {
				width: 50%;
			}
			
			.page-links .col-4, .page-links .col-6 {
				padding: 10px;
			}

			.page-link .title {
				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 .holding {
				padding: 0px;
			}

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

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

			.gallery-photos .different-sizes {
				margin: 10px 20px 10px 20px;
				line-height: 0;
				-webkit-column-count: 2;
				-moz-column-count:    2;
				column-count:         2;
				-webkit-column-gap:   20px;
				-moz-column-gap:      20px;
				column-gap:           20px;
			}

			.gallery-photos .different-sizes img {
				width: 100% !important;
				height: auto !important;
				padding: 10px 0px 10px 0px;
			}

			.gallery-link {
				padding: 20px 15px 10px 15px;
			}

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

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

			.enquiries input[type="text"], .enquiries textarea, .enquiries select {
				max-width: 85%;
				width: 85%;
			}
		
			.carousel-links .holding {
				height: 210px;
			}

			.carousel-links .carousel-link {
				width: 160px;
			}

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

			.features .polaroid {
				width: 40%;
				max-width: 225px;
				margin: 20px 25px;
			}

			.features h3 {
				padding-top: 10px;
				padding-bottom: 10px;
			}

			.testimonial-link .quote {
				padding: 20px 20px 20px 25px;
				font-size: 80%;
			}
	
			.testimonial-link .quote p {
				text-align: left;
				padding: 0.8em 10px 0.1em 10px;
			}

			.testimonial-link .polaroid {
				width: 40%;
				/*max-width: 500px;*/
			}

			.contact-details h2 {
				margin: 0px 25px 30px -35px;
				padding-left: 35px;
			}			
			
			.contact-details .contact-links {
				font-size: 80%;
			}

			.brands li {
				padding: 10px 15px;
			}
			
			.brands img {
				max-width: 175px;
			}
			
			.footer .footer-contact-details, .footer .accreditations {
				width: 100%;
			}

			.footer .accreditations {
				padding: 0px 10px;
			}

			.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-none-space, .block-none-space-border,
			.block-right-space, .block-right-space-border,
			.block-left-space, .block-left-space-border {
				width: 60%;
			}
			
			.block-slider-align-right {
				float:none;
				margin: 0px 0px 15px 0px;
				width:100%;
			}

		}

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

			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, .hide-below-1280, .hide-below-1024, .show-only-768, .show-only-960 {
				display: none;
			}

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

			.top-links {
				display: none;
			}

			.header .logo {
				width: 100%;
			}

			.header .logo img {
				width: 80%;
			}

			.header .contacts {
				text-align: center;
				padding: 0px 10px 15px 10px;
			}

			.header .contacts p {
				margin: 10px;
			}

			.header .contacts p span {
				color: #000;
			}

			.header .contacts a {
				background-color: rgba(250,250,250,0.8);
				margin: 0px 20px;
				padding: 8px 10px;
				background-color: #c0c0c0;
				border-radius:50%;
				-webkit-border-radius:50%;
				-moz-border-radius:50%;
			}
			
			.header .contacts a:hover {
				background-color: #c10917;
				transition: .5s ease 0s;
			}

			.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 .logo {
				top: 25px;
			}
			
			.banner-image .logo img {
				width: 80%;
			}
			
			.banner-image .dropdown-menu {
				bottom: 35px;
				right: 0px;
			}
			
			.banner-image .title {
				width: 90%;
				font-size: 70%;
				right: 0px;
			}

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

			.content h1 {
				margin: 0px 25px 50px -25px;
				padding-left: 25px;
			}

			.content .icon-list.right {
				margin-top: -40px;
			}

			.content .icon-list ul {
				font-size: 1.2em;
			}
			
			.content .highlight .title, .shout-out .highlight .title {
				font-size: 1.7em;
			}

			.content .highlight .text, .shout-out .highlight .text {
				margin: 0px 0px 5px 0px;
				font-size: 1.1em;
			}

			.shout-out ul {
				padding-left: 20px;
			}
			
			.page-links .holding {
				padding: 0px 10px 0px 10px;
			}

			.page-links .col-4, .page-links .col-6 {
				padding: 10px;
			}

			.page-link .title {
				font-size: 1em;
			}
			
			.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;
			}

			.gallery-photos .different-sizes {
				margin: 4px 14px 4px 14px;
				line-height: 0;
				-webkit-column-count: 1;
				-moz-column-count:    1;
				column-count:         1;
				-webkit-column-gap:   20px;
				-moz-column-gap:      20px;
				column-gap:           20px;
			}

			.gallery-photos .different-sizes img {
				width: 100% !important;
				height: auto !important;
				padding: 10px 0px 10px 0px;
			}

			.gallery-link {
				width: 50%;
				padding: 20px 12px 10px 12px;
			}

			.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%;
			}
		
			.carousel-links .holding {			
				height: 200px;
			}

			.carousel-links .carousel-link {
				width: 150px;
			}

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

			.features .polaroid {
				width: 40%;
				max-width: 200px;
				margin: 20px 15px;
			}

			.features .polaroid.left {
				margin-right:25px;
			}

			.features .polaroid.right {
				margin-left:25px;
			}

			.features h3 {
				padding-top: 10px;
				padding-bottom: 10px;
			}

			.features p {
				font-size: 90%;
			}

			.testimonial-link .quote {
				font-size: 85%;
				padding: 10px 10px 10px 15px;
			}

			.testimonial-link .polaroid {
				width: 70%;
				max-width: 500px;
			}

			.contact-details h2 {
				margin: 0px 25px 30px -25px;
				padding-left: 25px;
			}

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

			.contact-details .contact-links .contact-for {
				display: none;
			}
			
			.brands li {
				padding: 10px 15px;
			}

			.brands img {
				max-width: 150px;
			}

			.footer .accreditations {
				padding: 0px 10px;
			}

			.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-right, .block-right-space, .block-right-space-border { 
				width: 95%;
				float: none;
			}

			.block-none-space, .block-none-space-border,
			.block-right-space, .block-right-space-border,
			.block-left-space, .block-left-space-border {
				max-width: 350px;
				margin: 0px 0px 0px 0px;
			}
		
			.block-slider-align-right {
				float:none;
				margin: 0px 0px 15px 0px;
				width:100%;
			}

			.block-circle-right img {
				margin: 0px 0px 25px 25px;
			}

		}

	/* END Screen Size Dependent Formatting */