/*  
Theme Name: MTW
Theme URI: 
Description: 
Version: 
Author: 
Author URI: 
License:
License URI: 
*/

/* Reset Styles */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, font, img, ins, kbd, q, s, samp, small, strike, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; }
:focus { outline: 0; }
body { line-height: 1; color: black; background: white; }
ol, ul { list-style: none; }
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }
div, nav, header, footer, aside { display: block; }


/* General Structure */

body {
	background: url(./images/bg-small.jpg) no-repeat center top #FFFFFF;
	background-size: 100% auto;
	text-align: center;
	font-size: 14px;
	line-height: 18px;
	color: #354d63;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    padding: 50px 0 0 0;
    position: relative;
    min-height: 100%;
}
body.home {
	background: url(./images/bg.jpg) no-repeat center top fixed #FFFFFF;
}

	* {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	a {
		transition: all 200ms ease-out;
		-webkit-transition: all 200ms ease-out;
		-moz-transition: all 200ms ease-out;
		-o-transition: all 200ms ease-out;
	}

	input,
	textarea {
		-webkit-appearance: none;
		-webkit-border-radius: 0px;
	    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	}

	.container {
		display: block;
		margin: auto;
		text-align: left;
		max-width: 1140px;
		position: relative;
	}
	
	a { color: #499bc6; text-decoration: none; }
	a:hover { color: #333; }
	
	.clearfix { display: block; clear: both; }

	.box {
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border: 1px solid #D8DEE2;
		-webkit-box-shadow: 0px 4px 0px 0px rgba(0,0,0,0.05);
		-moz-box-shadow: 0px 4px 0px 0px rgba(0,0,0,0.05);
		box-shadow: 0px 4px 0px 0px rgba(0,0,0,0.05);
		overflow: hidden;
		background: #FFF;
	}

	.btn, 
	input[type="submit"] {
		background: transparent;
		padding: 8px;
		border: solid 2px #92bc7b;
		border-radius: 5px;
		text-align: center;
		color: #92bc7b;
		text-decoration: none;
		font-size: 14px;
		line-height: 18px;
		display: inline-block;
		cursor: pointer;
	}
	.btn:hover, 
	input[type="submit"]:hover {
		background-color: #92bc7b;
		color: #FFF;
	}
	.btn-download {
		background: url(./images/download.svg) no-repeat 12px center;
		background-size: 17px auto;
		padding: 8px 20px 8px 40px;
		border-color: #499bc6;
		color: #499bc6;
	}
	.btn-download:hover {
		background-color: #f0f5f8;
		color: #499bc6;
	}
	#content .btn { margin-right: 10px; }


	/* Site Nav */

	#site-nav {
		width: 100%;
		background: #499bc6;
		margin: -50px 0 0 0;
		position: fixed;
		z-index: 9999;
	}
		.toggle-mobile-nav {
			display: none;
		}
		#site-nav .container:after { display: block; height: 1px; clear: both; content: ' '; }
		#site-nav .menu-left {
			float: left;
			margin: 0 0 0 -9px;
		}
		#site-nav .menu-right {
			float: right;
			margin: 0 -9px 0 0;
		}
		#site-nav li { display: block; float: left; }
			#site-nav li a {
				display: block;
				float: left;
				padding: 0 9px;
				line-height: 50px;
				color: #FFF;
			}
			#site-nav li a:hover {
				background: #388fbd;
			}
			#site-nav li.nav-home a {
				text-indent: -9999px;
				background: url(./images/nav-home.svg) no-repeat center 5px;
				background-size: 18px 30px;
				width: 36px;
			}


	/* Alerts */

	#alert {
		background: #FFF;
		border-bottom: 1px solid #d8dee2;
		padding: 27px 0;
	}
		#alert .close-alert {
			position: absolute;
			bottom: 0px;
			right: 0px;
			color: #354d63;
			z-index: 10;
		}
		#alert .alert-holder { padding: 0 60px 0 0; }
		#alert .alert {
			position: relative;
			display: block;
			color: #354d63;
			padding: 3px 0 5px 65px;
		}
			#alert .alert .icon {
				position: absolute;
				top: 0px;
				left: 0px;
				width: 45px;
				height: 45px;
				border-radius: 100%;
				-moz-border-radius: 100%;
				-webkit-border-radius: 100%;
				display: block;
				background: url(./images/warning.svg) no-repeat center center;
			}
			#alert .alert-red .icon { background-color: #e17072; }
			#alert .alert-green .icon { background-color: #64c08c; }
			#alert .alert-yellow .icon { background-color: #ecab7d; }
			#alert .alert h3 {
				font-size: 18px;
				font-weight: 500;
				font-weight: bold;
				margin: 0 0 5px 0;
			}


	/* Site Header */

	#site-header {
		padding: 30px 0;
	}
		#site-header .search-form { float: left; }
		.search-form {
			position: relative; 
		}
			.search-form input#s {
				padding: 15px 60px 15px 15px;
				height: 49px;
				font-size: 14px;
				width: 428px;
			}
			.search-form input[type="submit"] {
				position: absolute;
				top: 0px;
				right: 0px;
				width: 60px;
				height: 49px;
				background: url(./images/search.svg) no-repeat center center;
				background-size: 20px auto;
				border: none;
				cursor: pointer;
				text-indent: -9999px;
			}
		#site-header .logo {
			width: 303px;
			height: 38px;
			background: url(./images/mtw-logo.png) no-repeat center center;
			background-size: auto 38px;
			text-indent: -9999px;
			display: block;
			float: right;
			margin: 10px 0 0 0;

			height: 78px;
			width: 134px;
			margin: -10px 0;
			background-size: auto 78px;
		}


	/* Home Banner */

	#home-banner {
		margin: 0 0 40px 0;
	}
		#home-slider {
			float: left;
			width: 75%;
		}
			#home-slider .slides {
				height: 345px;
				overflow: hidden;
			}
				#home-slider .slide {
					position: relative;
					width: 100%;
					height: 345px;
					overflow: hidden;
				}
					#home-slider .slide-image {
						float: left;
						width: 66.6%;
						height: 100%;
						overflow: hidden;
						background: none no-repeat center center;
						background-size: cover;
						-moz-background-size: cover;
						-webkit-background-size: cover;
					}
						#home-slider .slide-image img { height: 100%; width: auto; }
					#home-slider .slide-text {
						float: left;
						width: 33.3%;
						padding: 20px;
						position: relative;
						height: 100%;
					}
						#home-slider .slide-text h2 {
							font-size: 18px;
							line-height: 22px;
							margin: 0 0 10px 0;
							font-weight: 500;
						}
						#home-slider .slide-text p {
							line-height: 18px;
						}
						#home-slider .slide-text .btn {
							width: 83%;
							position: absolute;
							bottom: 20px;
							right: 20px;
						}
			#home-slider .slide-tabs {
				background: #f0f5f8;
				overflow: hidden;
				clear: both;
				border-top: 5px solid #499bc6;
			}
				#home-slider .slide-tabs li {
					display: block;
					float: left;
					width: 33.3333%;
					border-right: 1px solid #dbe0e4;
				}
				#home-slider .slide-tabs li:last-child { border: none; }
				#home-slider .slide-tabs li a {
					height: 79px;
					display: block;
					margin: 0 0 0 -1px;
					padding: 20px;
				}
				#home-slider .slide-tabs li.active a,
				#home-slider .slide-tabs li a:hover {
					color: #FFF;
					background: #499bc6;
				}

		#popular-links {
			float: right;
			width: 25%;
			padding: 0 0 0 20px;
		}
			#popular-links .box {
				padding: 25px 20px;
			}
			#popular-links h4 {
				font-size: 18px;
				margin: 0 0 23px 0;
				font-weight: 500;
			}
			#popular-links a {
				display: block;
				color: #2a3d4f;
				border-radius: 5px;
				-moz-border-radius: 5px;
				-webkit-border-radius: 5px;
				padding: 15px 10px 15px 50px;
				margin: 10px 0 0 0;
				background: none no-repeat 5px center #cce2ee;
				background-size: 40px auto;
			}
			#popular-links a:hover {
				background-color: #227DAE;
				color: #FFF;
				padding-left: 55px;
			}
			#popular-links a.popular-contact { background-image: url(./images/popular-contact.svg); }
			#popular-links a.popular-directions { background-image: url(./images/popular-directions.svg); }
			#popular-links a.popular-parking { background-image: url(./images/popular-parking.svg); }
			#popular-links a.popular-hours { background-image: url(./images/popular-hours.svg); }
			#popular-links a.popular-foi { background-image: url(./images/popular-foi.svg); }
			#popular-links a.popular-involved { background-image: url(./images/popular-involved.svg); }


	/* Home CTAs */

	#home-ctas {
		margin: 0 0 40px 0;
	}
		#home-ctas .home-ctas { margin: 0 -10px; }
		#home-ctas .home-cta {
			float: left;
			width: 33.3%;
			padding: 0 10px;
		}
			#home-ctas .home-cta a {
				display: block;
				padding: 22px 10px 22px 70px;
				font-size: 16px;
				color: #354d63;
				background: none no-repeat 15px center #FFF;
				background-size: 40px 40px;
			}
			#home-ctas .home-cta a:hover { padding-left: 75px; }
			#home-ctas .home-cta a.home-cta-wards { background-image: url(./images/home-cta-wards.svg); }
			#home-ctas .home-cta a.home-cta-consultants { background-image: url(./images/home-cta-consultants.svg); }
			#home-ctas .home-cta a.home-cta-services { background-image: url(./images/home-cta-services.svg); }


	/* Home Boxes */

	#home-boxes {
		margin: 0 0 40px 0;
	}
		.home-boxes {
			margin: 0 -10px;
		}
			.home-box {
				width: 25%;
				float: left;
				padding: 0 10px;
			}
			.home-box .box-image {
				height: 160px;
				background: none no-repeat center center;
				background-size: cover;
				-moz-background-size: cover;
				-webkit-background-size: cover;
			}
			.home-box .box-content {
				padding: 20px;
			}
				.home-box .box-content h3 {
					font-size: 18px;
					font-weight: 500;
					margin: 0 0 10px 0;
				}
				.home-box .box-content p {
					margin: 0 0 20px 0;
					min-height: 54px;
				}
				.home-box .box-content .btn {
					width: 100%;
				}

	/* Bottom Notices */

	.bottom-notices {
		padding: 40px 0 0 0;
		margin-bottom: -40px;
	}
		.bottom-notices .home-box p { min-height: 0px; }
		.bottom-notices.bottom-notices-3 .home-box {
			width: 33.3%
		}
		.bottom-notices.bottom-notices-2 .home-box {
			width: 50%;
		}
		.bottom-notices.bottom-notices-1 .home-box {
			width: auto; float: none;
		}
		.bottom-notices.bottom-notices-1 .home-box .btn,
		.bottom-notices.bottom-notices-2 .home-box .btn { width: auto; }


	/* Home Bottom */

	#home-bottom {
		margin: 0 0 40px 0;
	}
		#waiting-times {
			width: 50%;
			float: left;
			padding: 0 10px 0 0;
		}
		#content .on-page-waiting-times {
			width: auto;
			float: none;
			padding: 0px;
			clear: both;
		}
			#waiting-times h3 {
				padding: 17px 0 10px 60px;
				font-size: 18px;
				line-height: 24px;
				margin: 0 0 10px 0;
			    font-weight: 500;
			    background: url(./images/hospital.svg) no-repeat 20px 18px;
			    background-size: 25px 25px;
			}
			#waiting-times ul,
			#content #waiting-times ul { list-style: none; margin: 0px; padding: 0px; }
				#waiting-times ul li {
				    border-top: 1px solid #d8dee2;
				    padding: 12px 20px;
				}
					#waiting-times ul li .waiting-time {
						float: right;
					}
						#waiting-times ul li .waiting-time div {
							float: left;
							width: 50px;
							position: relative;
							background: rgba(69,150,194,1);
							background: -moz-linear-gradient(top, rgba(69,150,194,1) 0%, rgba(69,150,194,1) 51%, rgba(77,156,196,1) 51%, rgba(77,156,196,1) 100%);
							background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(69,150,194,1)), color-stop(51%, rgba(69,150,194,1)), color-stop(51%, rgba(77,156,196,1)), color-stop(100%, rgba(77,156,196,1)));
							background: -webkit-linear-gradient(top, rgba(69,150,194,1) 0%, rgba(69,150,194,1) 51%, rgba(77,156,196,1) 51%, rgba(77,156,196,1) 100%);
							background: -o-linear-gradient(top, rgba(69,150,194,1) 0%, rgba(69,150,194,1) 51%, rgba(77,156,196,1) 51%, rgba(77,156,196,1) 100%);
							background: -ms-linear-gradient(top, rgba(69,150,194,1) 0%, rgba(69,150,194,1) 51%, rgba(77,156,196,1) 51%, rgba(77,156,196,1) 100%);
							background: linear-gradient(to bottom, rgba(69,150,194,1) 0%, rgba(69,150,194,1) 51%, rgba(77,156,196,1) 51%, rgba(77,156,196,1) 100%);
							filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4596c2', endColorstr='#4d9cc4', GradientType=0 );
							border-radius: 5px;
							text-align: center;
							color: #FFF;
							font-size: 16px;
							margin: 0 0 0 10px;
							height: 52px;
							line-height: 52px;
							height: 42px;
							line-height: 42px;
						}
							#waiting-times ul li .waiting-time div span.label {
								position: absolute;
								top: 100%;
								left: 0px;
								width: 100%;
								font-size: 12px;
								line-height: 30px;
								color: #354d63;
							}
							#waiting-times ul li .waiting-time div span.label { line-height: 20px; }
					#waiting-times ul li h4 {
						font-weight: bold;
						margin: 0 0 6px 0;
						margin: 0 0 2px 0;
					}
						#waiting-times ul li h4 span { color: #eea667; }
					#waiting-times ul li h5 {
						font-style: italic;
						color: #AAA;
						margin: 0 0 6px 0;
						margin: 0 0 2px 0;
					}

		#home-advs {
			width: 50%;
			float: right;
			padding: 0 0 0 10px;
		}
			#home-advs a {
				display: block;
				margin: 0 0 15px 0;
			    padding: 20px 50% 20px 20px;
			    padding: 33px 50% 32px 20px;
			    min-height: 126px;
			    position: relative;
				color: #354d63;
			}
				#home-advs a .advs-image {
					position: absolute;
					top: 0px;
					right: 0px;
					width: 50%;
					background: none no-repeat center center #e7ebee;
					background-size: cover;
					-moz-background-size: cover;
					-webkit-background-size: cover;
					display: block;
					height: 100%;
				}
				#home-advs a h4 {
					font-size: 18px;
					margin: 0 20px 10px 0;
					font-weight: 500;
				}
				#home-advs a p {
					font-size: 12px;
					line-height: 18px;
					margin: 0 20px 0 0;
				}


	/* Landing Banner */

	#landing-banner {
		margin: 0 0 40px 0;
	}
		#landing-banner p { margin: 0 0 20px 0; }
  		#landing-banner .banner-image {
			background: none no-repeat center center #f0f5f8;
			background-size: cover;
			-moz-background-size: cover;
			-webkit-background-size: cover;
			height: 400px;
			border-radius: 5px;
			-moz-border-radius: 5px;
			-webkit-border-radius: 5px;
			position: relative;
		}
		#landing-banner h1 {
			position: absolute;
			top: 60px;
			padding: 10px 20px 20px 20px;
			font-size: 50px;
			line-height: 60px;
			display: block;
			border-radius: 0 5px 5px 0;
			font-weight: 500;
			background-color: #499bc6;
			color: #FFF;
			left: 0px;
			float: left;
		}


	/* Page Header */

	#page-header { padding: 50px 0 0 0; }
		#page-header p { margin: 0 0 20px 0; clear: both; }
		#page-header h1 {
			font-size: 35px;
			line-height: 40px;
			margin: 0 0 50px 0;

			position: relative;
			padding: 10px 20px 20px 20px;
			font-size: 50px;
			line-height: 60px;
			display: block;
			border-radius: 5px;
			font-weight: 500;
			background-color: #499bc6;
			color: #FFF;
			float: left;
			clear: both;
		}
		#page-header h1:after {
			display: block;
			clear: both;
		}


	/* Main */

	#main { clear: both; }

		#content {
			float: left;
			width: 75%;
			padding: 0 20px 0 0;
		}
		#content.full-width { float: none; width: auto; padding: 0px; }
			#content h1 { 
				font-size: 20px;
				line-height: 26px;
				margin: 0 0 20px 0;
				font-weight: 500;
			}
			#content h2 { 
				font-size: 18px;
				line-height: 24px;
				margin: 0 0 20px 0;
				font-weight: 500;
			}
			#content h3 { 
				font-size: 16px;
				line-height: 22px;
				margin: 0 0 20px 0;
				font-weight: 500;
			}
			#content h4 { 
				font-size: 14px;
				line-height: 18px;
				margin: 0 0 20px 0;
				font-weight: 500;
			}
			#content p {
				margin: 0 0 20px 0;
			}
			#content ul {
				list-style: disc outside;
				margin: 0 0 20px 30px;
			}
			#content ol {
				list-style: decimal outside;
				margin: 0 0 20px 30px;
			}
			#content ol ol,
			#content ol ul { margin-bottom: 0px; }
			#content img { max-width: 100%; height: auto; }
			#content .alignleft {
				float: left;
				display: block;
				margin: 0 20px 20px 0;
			}
			#content .alignright {
				float: right;
				display: block;
				margin: 0 0 20px 20px;
			}
			#content .aligncenter {
				display: block;
				margin: 0 auto 20px auto;
			}

			.section-boxes {
				margin: 0 -10px;
			}
				.section-box {
					width: 33.33%;
					float: left;
					padding: 0 10px 25px 10px;
				}
				.section-box .box {
					display: block;
					color: #354d63;
				}
				.section-box .box:hover {
					background: #f0f5f8;
				}
				.section-box .box-image {
					height: 120px;
					background: none no-repeat center center;
					background-size: cover;
					-moz-background-size: cover;
					-webkit-background-size: cover;
				}
				.section-box .box-content {
					padding: 20px;
					min-height: 94px;
				}
					#content .section-box .box-content h3 {
						font-size: 14px;
						font-weight: 500;
						margin: 0 0 0px 0;
						line-height: 18px;
					}

			#content .header-image { margin: 0 0 40px 0; }
			#content .header-image img {
				display: block;
				border-radius: 5px;
				-moz-border-radius: 5px;
				-webkit-border-radius: 5px;
			}

			#content .slideshow { margin: 0 0 40px 0; }
			#content .flexslider { border: none; padding: 0px; margin: 0px; }
			#content .slideshow #slider { margin: 0 0 20px 0; }
			#content .slideshow ul,
			#content .slideshow ol { display: block; list-style: none; margin: 0px; }
			#content .slideshow #carousel ul li { width: 97px; padding: 0 5px 0 0; }
			.flex-direction-nav a { overflow: visible; margin-top: -10px; }

			#content .accordion { margin: 0 0 20px 0; }
			#content .accordion-panel {
				margin: 0 0 10px 0;
			}
				#content .accordion-panel h3.accordion-panel-heading {
					padding: 10px 20px;
					font-weight: 700;
					margin: 0px;
					position: relative;
					cursor: pointer;
				}
					#content .accordion-panel h3.accordion-panel-heading a { color: #354d63; }
				#content .accordion-panel h3.accordion-panel-heading:after {
					position: absolute;
					background: url(./images/arrow-dark.svg) no-repeat center center;
					width: 30px;
					height: 45px;
					background-size: 20px auto;
					right: 20px;
					content: ' ';
					top: 0px;
				}
				#content .accordion-panel-active h3.accordion-panel-heading:after {
					background-image: url(./images/arrow-up-dark.svg);
				}
				#content .accordion-panel .accordion-panel-content {
					border-top: 1px solid #D8DEE2;
					padding: 20px 20px 1px 20px;
					display: none;
				}

			#content .foi-category { display: none; }

			#content form { max-width: 400px; margin: 0 0 20px 0; }
				#content label {
					font-size: 12px;
					display: block;
					margin: 0 0 6px 0;
				}
				#content input[type="text"],
				#content input[type="email"],
				#content input[type="password"],
				#content input[type="url"],
				#content textarea {
					border: 1px solid #CCC;
					border-radius: 5px;
					-moz-border-radius: 5px;
					-webkit-border-radius: 5px;
					max-width: 100%;
					display: block;
					padding: 10px;
					height: 40px;
					width: 100%;
					font-size: 14px;
				}
				#content textarea { height: 100px; }
				#content select, 
				#sidebar select {
					border: 1px solid #CCC;
					border-radius: 5px;
					-moz-border-radius: 5px;
					-webkit-border-radius: 5px;
					max-width: 100%;
					display: block;
					padding: 10px;
					width: 100%;
					font-size: 14px;
					background: #FFF;
					height: 40px;
				}

		.google-maps-builder-wrap { max-width: 100%; display: block; overflow: hidden; margin: 0 0 20px 0; }

		#sidebar {
			float: right;
			width: 25%;
		}
			#sidebar nav { margin: 0 0 40px 0; }
			#sidebar nav ul li {
				padding: 10px;
				border-bottom: 1px solid #D8DEE2;
			}
			#sidebar nav ul li:hover { background: #f0f5f8; }
			#sidebar nav ul li:last-child { border: none; }
				#sidebar nav ul li a {
					display: block;
					font-size: 16px; 
					color: #354d63;
					position: relative;
				}
				#sidebar nav ul li ul { padding: 8px 0 0 0; }
				#sidebar nav ul li ul li ul { padding: 0 0 0 12px; margin-top: -3px; }
				#sidebar nav ul li ul li ul li a { font-size: 14px; }
				#sidebar nav ul li.current_page_item ul, 
				#sidebar nav ul li.current_page_parent ul { display: block; }
				#sidebar nav ul li ul li { border: none; padding: 0px; }
				#sidebar nav ul li ul li.current_page_item:before {
					content: '';
					width: 14px;
					height: 14px;
					background: url(./images/arrow-left.svg) no-repeat center center;
					background-size: 100% auto;
					position: absolute;
					margin: 8px 0 0 0px;
				}
					#sidebar nav ul li ul li a {
						font-size: 14px;
						color: #676f71;
						padding: 6px 0 6px 20px;
					}
					#sidebar nav ul li ul li a:hover {
						font-weight: bold;
					}
			#sidebar aside { margin: 0 0 40px 0; }
				#sidebar aside h5 {
					font-size: 18px;
					font-weight: 500;
					margin: 0px;
				}
				#sidebar aside .btn { margin-top: 20px; }
				#sidebar aside ul { margin-top: 20px; }


		/* Search */

		.filter {
			overflow: hidden;
			display: block;
			margin: 0 0 40px 0;
		}
		#content .filter { margin: 0 0 40px 0; }
		#content .filter ul {
			list-style: none;
			margin: 0px;
			overflow: hidden; 
		}
		.search-filter {
			margin: -20px 0 40px 0;
			clear: both;
		}
			.filter a, 
			.filter .current {
				float: left;
				padding: 0 10px 0 10px;
				min-width: 35px;
				height: 35px;
				line-height: 35px;
				text-align: center;
				margin: 0 5px 5px 0;
				border-radius: 5px;
				-moz-border-radius: 5px;
				-webkit-border-radius: 5px;
				color: #4c6e8c;
				background: #cde2ee;
				font-size: 16px;
			}
			.filter a:hover {
				background: #dea145;
				color: #fff;
			}
			.filter .unavailable a, 
			.filter .current {
				border: 1px solid #cbcbcb;
				color: #cbcbcb;
				pointer-events: none;
				cursor: default;
				background: #FFF;
			}

		#content ul.results { list-style: none; margin: -20px 0 60px 0; }
		#sidebar aside ul.results li,
		#content ul.results li {
			border-bottom: 1px solid #cbcbcb;
		}
			#sidebar aside ul li a, 
			#content ul.results li a {
				display: block;
				padding: 18px 0 18px 60px;
				position: relative;
				color: #354d63;
				min-height: 45px;
			}
			#content ul.results li a { min-height: 90px; }
			#content ul.results li a { padding: 20px 0 20px 70px; }
				#sidebar aside ul li a .icon,
				#content ul.results li a .icon {
					background: none no-repeat center center #cbcbcb;
					background-size: cover;
					-moz-background-size: cover;
					-webkit-background-size: cover;
					position: absolute;
					top: 20px;
					left: 0px;
					border-radius: 100%;
					-moz-border-radius: 100%;
					-webkit-border-radius: 100%;
					display: block;
					width: 40px;
					height: 40px;
				}
				#content ul.results li a .icon { top: 22px; width: 50px; height: 50px; }
				#sidebar aside ul li a span {
					font-size: 12px;
					color: #AAA;
					display: block;
					font-style: italic;
					padding: 2px 0 0 0;
				}
				#content ul.results li a h3 {
					font-size: 18px;
					margin: 0px;
					padding: 5px 0 0 0;
				}
				#content ul.results li a span.supporting-info {
					display: block;
					padding: 3px 0 0 0;
				}

		#content .az-letter {
			width: 50px;
			height: 50px;
			font-size: 18px;
			padding: 12px 0;
			text-align: center;
			background: #499bc6;
			color: #fff;
			border-radius: 50%;
			-moz-border-radius: 50%;
			-webkit-border-radius: 50%;
			margin-bottom: 40px;
		}

		#sidebar.az-fixed {
			position: fixed;
			transition: none;
			-webkit-transition: none;
			top: 140px;
		}
		#sidebar .az-letters {
			overflow: hidden;
		}
			#sidebar .az-letters a {
				float: left;
				padding: 0 10px 0 10px;
				min-width: 35px;
				height: 35px;
				line-height: 35px;
				text-align: center;
				margin: 0 5px 5px 0;
				border-radius: 5px;
				-moz-border-radius: 5px;
				-webkit-border-radius: 5px;
				color: #4c6e8c;
				background: #cde2ee;
				font-size: 16px;
			}
			#sidebar .az-letters a:hover {
				background: #dea145;
				color: #fff;
			}
			#sidebar .az-letters a.unavailable {
				border: 1px solid #cbcbcb;
				color: #cbcbcb;
				pointer-events: none;
				cursor: default;
				background: #FFF;
			}


	/* News */

	#content.full { width: auto; float: none; padding: 0px; }
	.news-archive {
		margin: 0 -10px 30px -10px;
	}
		.news-box {
			width: 25%;
			width: 33.3%;
			float: left;
			margin: 0 0 20px 0;
			padding: 0 10px;
		}
		.news-box .box-image {
			height: 160px;
			background: none no-repeat center center;
			background-size: cover;
			-moz-background-size: cover;
			-webkit-background-size: cover;
		}
		.news-box .box-image-consultant { height: 300px; background-size: 100% auto; background-color: #EEE; }
		.news-box .box-content {
			margin: 20px 20px 20px 20px;
			padding: 0 0 40px 0;
			position: relative;
			min-height: 170px;
		}
			#content .news-box .box-content h3 {
				font-size: 18px;
				font-weight: 500;
				margin: 0 0 5px 0;
			}
			#content .news-box .box-content span.news-date {
				font-style: italic;
				color: #AAA;
				display: block;
				margin: 0 0 8px 0;
			}
			#content .news-box .box-content p {
				margin: 0 0 20px 0;
			}
			.news-box .box-content .btn {
				width: 100%;
				position: absolute;
				bottom: 0px;
				left: 0px;
			}

		.pagination { text-align: center; }
			.pagination a, 
			.pagination span.current { display: inline-block; float: none; }


	/* Consultant */

	h4.job-title { margin: -40px 0 40px 0; clear: both; }
	.consultant-image {
		float: left;
		width: 30%;
		padding: 0 40px 0 0;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}
		.consultant-image img { max-width: 100%; height: auto; }
	.consultant-details {
		float: right;
		width: 70%;
	}
		.consultant-details table {

		}
			.consultant-details table th {
				font-weight: bold;
				width: 160px;
			}
			.consultant-details table td { padding: 0 0 20px 0; }
		#main .consultant-details h3 { font-weight: bold; margin-bottom: 15px; }


	/* Sub Footer */

	#sub-footer {

	}
		.sub-footer-widgets { margin: 0 -10px; }
		#sub-footer aside {
			float: left;
			width: 33.3%;
			padding: 0 10px;
		}
			#sub-footer aside h5 {
				padding: 15px 0 15px 60px;
				font-size: 18px;
			    font-weight: 500;
			    background: none no-repeat 20px 18px;
			    background-size: 25px 25px;
			    line-height: 28px;
			}
			#sub-footer aside ul li {
			    border-top: 1px solid #d8dee2;
			}
			#sub-footer aside.widget-news h5 { background-image: url(./images/main-news.svg); }
			#sub-footer aside.widget-tweets h5 { background-image: url(./images/twitter.svg); }
			#sub-footer aside.widget-cqc h5 { padding: 15px 20px; }
				#sub-footer aside.widget-cqc h5 img { display: block; margin: 0px; }

			#sub-footer aside.widget-news ul li a {
				min-height: 80px;
				padding: 20px;
				display: block;
				color: #354d63;
			}
			#sub-footer aside.widget-news ul li a:hover {
				background: #f0f5f8;
			}

			#sub-footer aside.widget-tweets { position: relative; }
			#sub-footer aside.widget-tweets .tweets-prev {
				position: absolute;
				top: 15px;
				right: 60px;
				width: 20px;
				height: 30px;
				text-indent: -9999px;
				background: url(./images/arrow-left.svg) no-repeat center center;
				background-size: 100% auto;
			}
			#sub-footer aside.widget-tweets .tweets-next {
				position: absolute;
				top: 15px;
				right: 30px;
				width: 20px;
				height: 30px;
				text-indent: -9999px;
				background: url(./images/arrow-right.svg) no-repeat center center;
				background-size: 100% auto;
			}
			#sub-footer aside.widget-tweets ul li {
				padding: 20px;
			    min-height: 162px;
				transition: all 200ms ease-out;
				-webkit-transition: all 200ms ease-out;
				-moz-transition: all 200ms ease-out;
				-o-transition: all 200ms ease-out;
			}
			#sub-footer aside.widget-tweets ul li:hover {
				background: #f0f5f8;
			}
				#sub-footer aside.widget-tweets ul li span.tweet-name {
					display: block;
					font-size: 18px;
					margin: 0 0 5px 0;
				}
				#sub-footer aside.widget-tweets ul li span.tweet-meta {
					font-style: italic;
					color: #AAA;
					margin: 0 0 10px 0;
					display: block;
					font-size: 12px;
				}
				#sub-footer aside.widget-tweets ul li p {
					font-size: 12px;
					line-height: 20px;
				}

			#sub-footer aside.widget-cqc ul li {
			    padding: 20px 20px 20px 100px;
			    position: relative;
			    cursor: pointer;
			    min-height: 108px;
				transition: all 200ms ease-out;
				-webkit-transition: all 200ms ease-out;
				-moz-transition: all 200ms ease-out;
				-o-transition: all 200ms ease-out;
			}
			#sub-footer aside.widget-cqc ul li:hover {
				background: #f0f5f8;
			}
			#sub-footer aside.widget-cqc ul li:before {
				position: absolute;
				top: 50%;
				left: 30px;
				width: 40px;
				height: 40px;
				content: ' ';
				margin: -20px 0 0 0;
				border-radius: 100%;
				-moz-border-radius: 100%;
				-webkit-border-radius: 100%;
			}
			#sub-footer aside.widget-cqc ul li.cqc-good:before { background: #60c18a; }
			#sub-footer aside.widget-cqc ul li.cqc-improvement:before { background: #edab79; }
			#sub-footer aside.widget-cqc ul li.cqc-inadequate:before { background: #e36f70; }
				#sub-footer aside.widget-cqc ul li a {
					display: block;
					font-weight: bold;
					color: #354d63;
					margin: 0 0 8px 0;
				}
				#sub-footer aside.widget-cqc ul li span {
					text-transform: uppercase;
				    font-weight: 700;
					display: block;
					font-size: 12px;
				}
				#sub-footer aside.widget-cqc ul li.cqc-good span { color: #5cc288; }
				#sub-footer aside.widget-cqc ul li.cqc-improvement span { color: #eea667; }
				#sub-footer aside.widget-cqc ul li.cqc-inadequate span { color: #E56E6E; }


body div.cqc-widget {
	border: none!important;
	background: none transparent!important;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif!important;
	padding: 30px 20px 8px 100px!important;
	position: relative!important;
	cursor: pointer!important;
	min-height: 68px!important;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-top: 1px solid #d8dee2!important;
	transition: all 200ms ease-out;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	box-shadow: none !important;
	border-radius: 0px !important;
	overflow: hidden!important;
}
body div.cqc-widget:hover { background: #f0f5f8!important; }
body div.cqc-widget .cqc-container { background: none transparent!important; font-family: 'Open Sans', Helvetica, Arial, sans-serif!important; padding: 0px!important; }
body div.cqc-widget .cqc-widget-inner {
	padding: 0px!important; 
	margin-top: 0px!important;
	font-weight: bold!important;
	color: #354d63!important; 
}
body div.cqc-widget .cqc-widget-inner .cqc-widget-new-style-margin-2 { display: none!important; }
body div.cqc-widget .cqc-widget-overall {
	background: none transparent!important;
	padding: 5px 0 0 0!important;
	color: #000!important;
	text-transform: uppercase!important;
	display: block!important;
	font-size: 12px!important;
	float: none!important;
	font-weight: bold!important;
	letter-spacing: 0px!important;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif!important;
}
body div.cqc-widget .cqc-widget-overall.good { background: none transparent!important; color: #5cc288!important; }
body div.cqc-widget .cqc-widget-overall.requires-improvement { background: none transparent!important; color: #eea667!important; }
body div.cqc-widget .cqc-widget-overall.inadequate { background: none transparent!important; color: #E56E6E!important; }
body div.cqc-widget .cqc-widget-overall:before {
	position: absolute;
	top: 50%;
	left: 30px;
	width: 40px;
	height: 40px;
	content: ' ';
	margin: -20px 0 0 0;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
}
body div.cqc-widget .cqc-widget-overall.good:before { background: #60c18a; }
body div.cqc-widget .cqc-widget-overall.requires-improvement:before { background: #edab79; }
body div.cqc-widget .cqc-widget-overall.inadequate:before { background: #e36f70; }
body .cqc-container .cqc-widget-date { display: none!important; } 
body .cqc-container .cqc-widget-header a img { display: none!important; } 
body .cqc-container .cqc-widget-header a.widget-button-new-style {
	position: absolute!important;
	top: 0px!important;
	left: 0px!important;
	width: 100%!important;
	height: 100%!important;
	border: none!important;
	text-indent: -9999px!important;
	background: none transparent!important;
	z-index: 10!important;
	box-shadow: none !important;
	border-radius: 0px !important;
	padding: 0px!important;
}


	/* Site Footer */

	#site-footer {
		padding: 100px 0 40px 0;
	}
		#site-footer .footer-left {
			float: left;
			width: 50%;
		}
			#site-footer .footer-left .footer-logo { width: 130px; margin: 0 0 10px 0; }
			#site-footer .footer-left p {
				font-size: 12px;
				margin: 0 0 10px 0;
			}
			#site-footer .footer-left .social {
				float: left;
			}
			#site-footer .footer-left .social a {
				display: inline-block;
				width: 45px;
				height: 45px;
				border-radius: 100%;
				-moz-border-radius: 100%;
				-webkit-border-radius: 100%;
				margin: 0 5px 0 0;
				background: none no-repeat center center #cde2ee;
				background-size: 20px 20px;
				text-indent: -9999px;
			}
			#site-footer .footer-left .social a.social-twitter { background-image: url(./images/social-twitter.png); }
			#site-footer .footer-left .social a.social-facebook { background-image: url(./images/social-facebook.png); }
			#site-footer .footer-left .social a.social-youtube { background-image: url(./images/social-youtube.png); }
			#site-footer .footer-left .social a.social-linkedin { background-image: url(./images/social-linkedin.png); }
			#site-footer .footer-left .social a:hover {
				background-color: #499bc6;
			}
			#site-footer .footer-left .social a.social-twitter:hover { background-color: #00aced; }
			#site-footer .footer-left .social a.social-facebook:hover { background-color: #3b5998; }
			#site-footer .footer-left .social a.social-youtube:hover { background-color: #bb0000; }
			#site-footer .footer-left .social a.social-linkedin:hover { background-color: #007bb6; }
			#site-footer .footer-left .translate {
				float: left;
				padding: 3px 0 0 10px;
			}

		#site-footer .footer-right {
			float: right;
			width: 50%;
		}
			#site-footer .footer-right address {
				float: left;
				width: 50%;
			}
				#site-footer .footer-right address p {
					font-size: 12px; 
					line-height: 18px;
				}




@media all and (max-width: 1160px) and (min-width: 0px) {
	.container { margin: 0 30px; }
}


@media all and (max-width: 1160px) and (min-width: 1025px) {

	#popular-links a { padding-left: 15px; background-image: none!important; }
	#popular-links a:hover { padding-left: 20px; }
	
}


@media all and (max-width: 1024px) and (min-width: 0px) {
	
	#site-nav { min-height: 50px; }
	.toggle-mobile-nav {
		display: block;
		color: #FFF;
		line-height: 50px;
		padding: 0 30px 0 55px;
		font-size: 16px;
		background: url(./images/toggle-nav.png) no-repeat 30px center;
		background-size: 15px auto;
	}
	.toggle-mobile-nav:hover { color: #FFF; }
	#site-nav .container { margin: 0px; }
	#site-nav .menu-holder { display: none; padding: 0 0 30px 0; }
	#site-nav .menu-left,
	#site-nav .menu-right { float: none; margin: 0px; }
		#site-nav ul li { float: none; margin: 0px; }
			#site-nav ul li.nav-home a { text-indent: 0px; background-image: none; width: auto; }
			#site-nav ul li a { float: none; line-height: 18px; padding: 10px 30px; font-size: 16px; }

	#site-header .search-form { float: none; margin: 0 0 40px 0; }
		#site-header .search-form input#s { width: 100%; }
	#site-header .logo { float: none; margin: 0 auto 0 auto; /*width: 100%; background-size: auto 100%; height: 38px;*/ }

	#home-slider { width: auto; float: none; }
	#popular-links { width: auto; float: none; padding: 20px 0 0 0; }
	.home-box, 
	.news-box { width: 50%; margin-bottom: 20px; }
	.bottom-notices { margin-bottom: 0px; }
	.news-archive .clearfix { display: none; }

	#home-ctas .home-cta { width: auto; float: none; }
	#home-ctas .home-cta a { margin-bottom: 15px; }

	#waiting-times { float: none; width: auto; padding: 0px; }
	#home-advs { float: none; width: auto; padding: 20px 0 0 0; }
		#home-advs a { min-height: 120px; }
	#sub-footer aside { float: none; width: auto; margin: 0 0 20px 0; }
		#sub-footer aside.widget-news ul li a, 
		#sub-footer aside.widget-tweets ul li, 
		#sub-footer aside.widget-cqc ul li { min-height: 10px; }
	#site-footer { padding: 50px 0; }
		#site-footer .footer-left,
		#site-footer .footer-right { float: none; width: auto; clear: both; }
			#site-footer .footer-right address { width: auto; float: none; padding: 30px 0 0 0; }

	#content { float: none; width: auto; padding: 0px; }
		.section-box { width: 50%; margin-bottom: 20px; }
		.section-box .box-image { height: 220px; }
	#sidebar { clear: left; float: none; width: auto; padding: 20px 0 0 0; }
	#sidebar.az { position: static!important; width: 100%!important; left: auto!important; }

	.consultant-image,
	.consultant-details { float: none; width: auto; padding-right: 0px; }
	.consultant-image img { margin: 0 0 20px 0; }

}


@media all and (max-width: 768px) and (min-width: 0px) {

	#site-header .logo { margin-bottom: 0px; }
	#home-slider { display: none; }
	.home-box, .section-box, .news-box, 
	.bottom-notices .home-box { width: auto!important; float: none!important; }

	#landing-banner .banner-image { height: 260px; }
	#landing-banner h1 {
		float: none; 
		position: static; 
		margin-top: -5px; 
		padding: 20px; 
		font-size: 24px; 
		line-height: 30px;
		border-radius: 0 0 5px 5px;
		-moz-border-radius: 0 0 5px 5px;
		-webkit-border-radius: 0 0 5px 5px;
	}

	#waiting-times ul li h4 span { display: block; }

	.directions-link { margin-top: 20px; display: block; }

	#alert .alert p { max-height: 73px; overflow: hidden; }
	#alert .alert p:after {
		display: block;
		content: 'Read more';
		color: #499bc6;
		position: absolute;
		bottom: 5px;
		right: 0px;
		line-height: 20px;
		background: #FFF;
		padding: 0 0 0 5px;
	}
	#alert .remove-after p:after { display: none; }

}


@media all and (max-width: 480px) and (min-width: 0px) {

	/*#site-header .logo { width: 280px; background-size: 100% auto; }*/

	#home-advs a .advs-image { display: none; }
	#home-advs a { padding-right: 0px; }

	#site-footer .footer-left .translate,
	#site-footer .footer-left .social {
		float: none; padding: 20px 0 0 0;
	}

	.consultant-details table th, 
	.consultant-details table td { display: block; }

}
