/*
Client Name:
Last Modified by:
Last Modified:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 ticktock is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1.0 General
	1.1 Sidebar
2.0 Header
	2.1 Navigation
3.0 Standard Page
4.0 Photo Gallery
5.0 Blog / Posts / Categories
6.0 Page Builder
7.0 Home Page
8.0 Page-specific
10.0 Forms
11.0 Footer



/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/

	*,
	*:before,
	*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
		-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
		-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
		box-sizing:         border-box;
	}
	
	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, em, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td,
	article, aside, canvas, details, embed, 
	figure, figcaption, footer, header, hgroup, 
	menu, nav, output, ruby, section, summary,
	time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}
	/* HTML5 display-role reset for older browsers */
	article, aside, details, figcaption, figure, 
	footer, header, hgroup, menu, nav, section {
		display: block;
	}
	
	ol, ul {
		list-style: none;
	}
	blockquote, q {
		quotes: none;
	}
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none;
	}
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
		
	caption, th, td {
		font-weight: normal;
		text-align: left;
	}
	
	hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
	}
	
	ul, ol {
		margin: 0 0 1.5em 3em;
	}
	
	ul {
		list-style: disc;
	}
	
	ol {
		list-style: decimal;
	}
	
	li > ul,
	li > ol {
		margin-bottom: 0;
		margin-left: 1.5em;
	}
	
	dt {
		font-weight: bold;
	}
	
	dd {
		margin: 0 1.5em 1.5em;
	}
	
	figure {
		margin: 0;
	}
	
	table {
		margin: 0 0 1.5em;
		width: 100%;
	}
	
	th {
		font-weight: bold;
	}


/*--------------------------------------------------------------
1.0 General
--------------------------------------------------------------*/
	
	body {
		background: #ffffff url(../images/common/body-bg.jpg) center top no-repeat;	
		-webkit-font-smoothing: antialiased;
		background-attachment:fixed;
	}

	body,
	button,
	input,
	select,
	textarea {
		font-size: 0.9em;
		color: #333333;
		font-family: 'Open Sans', sans-serif;
	}
	
	h1, h2, h3, h4, h5, h6 {
		font-family:'Agency FB W00 Bold904414';
		font-weight: normal;
		margin-bottom: 0.5em;
		text-transform: uppercase;
	}

	h1 { 
		font-size: 2em;
	}
	
	h2 { 
		font-size: 1.8em; 
		color: #1e76a5;
	}
	
	h3 {
		font-size: 1.6em;
		color: #1e76a5;
	}
	
	h4 {
		font-size: 1.4em;	
	}
	
	h5 {
		font-size: 1.2em;	
	}
	
	h6 {
		font-size: 1em;	
	}
	
	p {
		font-size: 1em;
		margin-bottom: 1.5em;	
		line-height: 1.6em;
	}

	a {
		color: #1e76a5;	
		text-decoration: none;
	}
	
	a:hover,
	a:focus,
	a:active {
		color: #14a2ee;
	}
	
	a:focus {
	/*outline: thin dotted;*/
	outline: 0;
	}

	a:hover,
	a:active {
		outline: 0;
	}

	img {
		height: auto;
		max-width: 100%;
		vertical-align: middle;
	}

	a img {
		border: 0;
	}
	
	b, strong {
		font-weight: 700;
	}
	
	dfn, cite, em, i {
		font-style: italic;
	}


	
	.btn, 
	.button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		display: inline-block;
		width: auto;
		padding: 18px 30px 15px 30px;
		margin: 0 0 20px 0;
		text-decoration: none;
		font-family:'Agency FB W00 Bold904414';
		text-transform: uppercase;
		font-size: 1em;
		letter-spacing: 2px;
		cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
		-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
		border: 2px solid #333333;
		background: #ffffff;
	}

	.btn:hover, .button:hover,
	button:hover,
	input[type="button"]:hover,
	input[type="reset"]:hover,
	input[type="submit"]:hover {
		background: #ffffff;
	}

	.desktop-only {
		display: none !important;	
	}
	
	.mobile-only {
		display: block !important;	
	}
	
	.container {
		position: relative;
		max-width: 960px;
		margin: 0 auto;	
		padding: 0;
	}
	
	
	
	@media all and ( min-width : 768px ) {
		
		h1 {
			font-size: 2.5em;	
		}
		
		.desktop-only {
			display: block !important;	
		}
		
		.mobile-only {
			display: none !important;	
		}
		
		.container {
			padding: 0;
		}
		
		.alignleft {
			display: inline;
			float: left;
			margin-right: 1.5em;
		}
		
		.alignright {
			display: inline;
			float: right;
			margin-left: 1.5em;
		}
		
		.aligncenter {
			clear: both;
			display: block;
			margin: 0 auto;
		}
	}

	
	/*---- 1.1 - Sidebar ----*/
	.sidebar-widget {
		margin: 0 0 20px 0;
	}
	
	.sidebar h2 {
		color: #ffffff;
		padding: 8px;
		text-transform: uppercase;
		font-size: 1.2em;
		background: url(../images/common/h2-bg.jpg)
	}
	
	ul.side-menu {
		padding: 0;
		margin: 0;	
	}
	
	ul.side-menu li {
		list-style: none;	
		border-bottom: 1px solid #eeeeee;
	}
	
	ul.side-menu li a {
		display: block;
		padding: 10px 0;
		text-decoration: none;	
	}
	
	ul.side-menu li.current_page_item a {
		color: #373446;
	}


/*--------------------------------------------------------------
2.0 - Header
--------------------------------------------------------------*/
	
	header.site-header {
		
		width: 100%;
		margin: 0;
		padding:  0 20px;
		z-index: 2;
		transition: all 0.4s ease;
		/*background: url(../images/common/transparent-white.png) repeat;*/
		z-index: 5000;
		top: 0;	
		background: url(../images/common/header-bg.jpg) repeat;
			-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	
	header.show-header {

	}
	
	header.hide-header {
			top: -100px !important;
		}
		
	body.admin-bar .site-header {
			top: 46px;	
		}
	
	.logo-main {
		float: left;	
		width: 150px;
		padding: 10px 0;
		transition: all 0.4s ease;
	}
	
	.logo-main img {
		width: 100%;	
	}

	.site-header .phone-mobile {
		position: absolute;
		right: 90px;
		top: 12px;
	}

	.site-header .phone-mobile a {
		color: #fff;
		display: block;
		font-size: 2em;
		padding: 5px;
	}


	@media all and ( min-width : 768px ) {
		
		header.site-header {
			padding: 0;	
			height: 195px;	
		}
		
		body.admin-bar .site-header {
			top: 30px;	
		}
		
		.logo-main {
			padding: 10px 0 0 10px;
			width: 350px;
		}
		
		header.hide-header .logo-main {
			opacity: 0;	
		}

		.site-header .phone {
			position: absolute;
			right: 15px;
			top: 0;
		}
		
		.site-header .social-icons {
			position: absolute;
			right: 20px;
			top: 60px;	
		}

		.site-header .phone h2 {
			color: #fff;
			float: right;
			font-weight: 600;
			margin: 8px 0 0 0;
		}

	}
	
/*---- 2.1 - Navigation ----*/
	
	.main-navigation {
		font-family:'Agency FB W00 Bold904414';
		text-transform: uppercase;
		
		font-size: 1.3em;
	}
	
	.main-navigation ul {
		margin: 0;
		padding-left: 0;	
	}
	
	.main-navigation a {
		color: #ffffff;
		display: block;
		padding: 15px;	
		text-decoration: none;
		/*background: red;*/
	}
	
	/* Hover */
	.main-navigation li.menu-item-has-children:hover a,
	.main-navigation a:hover {
		
		background: #1c2940;
	}

	/* Current */
	.main-navigation li.current-menu-item a,
	.main-navigation li.current-menu-ancestor a {
		background: #1e76a5;
		/*background: #66666c;*/
	}

	/* Current hover */
	.main-navigation li.current-menu-item a:hover,
	.main-navigation li.current-menu-ancestor a:hover {
		/*background: #88888c;*/
		/*color: #ffffff;*/
	}
	
	/* Dropdown */
	.main-navigation ul.sub-menu {
		left: 20px;
		top: 50px; 
	}
	
	.main-navigation ul ul a {
		width: 260px;
		padding: 15px;
	}

	.main-navigation li.menu-item-has-children:hover ul.sub-menu li a {
		background: #000000;
		padding: 10px 15px;
	}

	.main-navigation li.menu-item-has-children:hover ul.sub-menu li a:hover {
		background: #222222;
	}

	/* Dropdown - Active */
	.main-navigation li.menu-item-has-children:hover ul.sub-menu li.current-menu-item a {
		color: #cccccc;
	}

	/* Dropdown - Active hover */
	.main-navigation li.menu-item-has-children:hover ul.sub-menu li.current-menu-item a:hover {
		
	}
	
	@media all and ( min-width: 768px ) {
		
		.main-navigation {	
			clear: both;
			float: left;
			width: 100%;
			padding: 0;
			margin: 15px 0 0 0;
			background: #000;
			
		}

		.main-navigation li {
			padding: 0 0 0 0;
		}
		
		/*
			
		*** IF TABS ***
		.main-navigation li a {
			-webkit-border-top-left-radius: 3px;
			-webkit-border-top-right-radius: 3px;
			-moz-border-radius-topleft: 3px;
			-moz-border-radius-topright: 3px;
			border-top-left-radius: 3px;
			border-top-right-radius: 3px;
		}
	
		.main-navigation li li a {

			-webkit-border-top-left-radius: 0;
			-webkit-border-top-right-radius: 0;
			-moz-border-radius-topleft: 0;
			-moz-border-radius-topright: 0;
			border-top-left-radius: 0;
			border-top-right-radius: 0;	
		}
		
		*/
	}
	
	/*----------------------------------- 
	* Mobile-only 
	----------------------------------- */
	
		@media all and ( max-width : 767px ) {
			.menu-toggle,
			.main-navigation.toggled .nav-menu {
				display: block;
				z-index: 10000;
			}
	
			.menu-toggle {
				float: right;
				vertical-align: top;
				color: #fff;	
				line-height: 1.4em;
				font-size: 1.1em;
				margin: 18px 0 0 0;
				padding: 0 0 0 0;
				text-transform: uppercase;
			}
			
			.menu-toggle .label {
				display: inline-block;
				vertical-align: top;
				margin: 3px 0 0 0;
				font-size: 0.9em;
				padding: 0;
			}
	
			.menu-toggle .fa {
				padding-left: 5px;
				font-size: 1.6em;
			}
	
			.main-navigation ul {
				display: block;
				position: absolute;
				left: 0; 
				opacity: 0;
				top: -1000%;
				width: 100%;
				z-index: 10;
				/*transition: top 1s ease-in;*/ /* Slide down */
				border-top: 1px solid #222222;
				background: #000000;
			}
			
			.main-navigation.toggled .nav-menu {
				opacity: 1;
				top: 70px;
				transition: opacity 0.25s ease; /* Fade in. */
			}
			
			.main-navigation li {
				float: none;
				text-align: center;
				border-bottom: 1px solid #222222;
			}
			
			.main-navigation a { 
				padding: 20px 0;
			}
			
			.main-navigation ul ul {
				display: none; /* Hide sub-pages from nav */
			}
			
			.main-navigation ul li:hover > ul {
				display: none;
			}
		}


/*--------------------------------------------------------------
3.0 Standard Page
--------------------------------------------------------------*/

	.site-content {
		background: #ffffff;	
	}
	
	.main-content-container {
		padding: 20px;	
	}
	
	.generic-content,
	.block-content-container {
		padding: 0 40px;	
	}
	
	.page-header {
		
		padding: 20px 20px 20px 20px;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		background-color: #1e76a5;
	}
	
	.page-header h1 {
		color: #ffffff;
		margin-bottom: 0;
		text-transform: uppercase;
	}
	
	@media all and ( min-width : 768px ) {
		
		.main-content-container {
			padding: 10px;	
		}
		
		.main-content-container #main {
			padding: 20px;	
		}
		
		.page-header {
			padding: 40px 20px;
		}
		
		.page-content {
			padding-top: 20px;	
		}
	}
	
	@media all and ( min-width : 990px ) {
		
		.generic-content,
		.block-content-container {
			padding: 1;	
		}
		
		.site-content {
			padding: 0;	
		}

	}



/*--------------------------------------------------------------
8.0 - Page-specific
--------------------------------------------------------------*/
	
	.home-galleries {
		clear: both;	
	}
	
	h3.latest-galleries {
		clear: both;
		padding: 10px 0 0 0;
		color: #ffffff;
		padding: 8px;
		text-transform: uppercase;
		font-size: 1.2em;
		background: url(../images/common/h2-bg.jpg)
	}
	
	.slider-bg h2 {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		font-size: 2.7em;
		text-align: left;
		padding: 20px;
		z-index: 5000;
		color: #ffffff;
		margin: 0;
		background: url(../images/common/transparent-black.png) repeat;
	}
	
	
	.fixture-row {
		float: left;
		width: 100%;
		font-size: 0.9em;
		padding: 5px 0;
		margin: 0 0 25px 0;	
		border-bottom: 3px solid #ccc;
	}
	
	.fixture-date {
		float: left;
		width: 100%;	
		font-size: 0.9em;
		text-align: center;
	}
	
	.home-team, .away-team {
		float: left;
		width: 30%;
	}
	
	.result {
		float: left;
		width: 40%;
		text-align: center;	
	
	}
	
	.home-team, .away-team {
		padding-top: 10px;
	}
	
	.away-team { 
	text-align: right;
		float: right;
	}
	
	
	.fixture-row .score {
		font-size: 1.5em;
		font-weight: 700;
		padding: 6px;
		display: inline-block;	
	}
	
	.ladder {
		float: left;
		width: 100%;
		margin: 0 0 15px 0;	
	}
	
	.position-row {
		float: left;
		width: 100%;
		padding: 4px 10px;
		font-size: 0.8em;
		background: #f3f3f3;
		margin: 0 0 1px 0;
	}
	
	.position, .team, .pts {
		float: left;	
	}
	
	.pts {
		float: right;	
	}
	
	.position {
		font-weighT: 700;
		padding: 0 5px 0 0;	
	}
	
	
	.sponsor-row {
		float: left;
		width: 100%;
		border-bottom: 1px solid #cccccc;
		padding-bottom: 10px;
		margin: 0 0 30px 0;	
	}
	
.block, .block2 {
	border: 1px solid #ccc;
  text-align: center;
	height: 160px;
	padding: 30px;
	margin: 0 0 30px 0;
  /* May want to do this if there is risk the container may be narrower than the element inside */
  white-space: nowrap;
}
 
/* The ghost, nudged to maintain perfect centering */
.block:before, .block2:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; /* Adjusts for spacing */
}

.block2 {
	border: none;
	height: 150px;
}

.footer-sponsors .block {
	height: 100px;	
	padding: 0;
	bordeR: none;
}
 
.footer-sponsors h3 {
	font-size: 1.2em;
	color: #333333;
	padding-bottom: 5px;
	margin: 0 0 15px 0;
	border-bottom: 1px solid #cccccc;	
}


/* The element to be centered, can also be of any width and height */ 
.centered {
  display: inline-block;
  vertical-align: middle;
}

.centered img {
	max-height: 100px !important;
	width: auto;	
}
	
	/* Gallery */
	
	.gallery-content {
		padding-top: 20px;	
	}
	
		.gallery .gutters .col {
		margin-bottom: 2.5%;	
	}
	
	/* Project */
	
	.project-listing img {
		margin: 0 0 10px 0;	
	}
	
	.project-listing img:hover {
		opacity: 0.8;
   		filter: alpha(opacity=80);
	}
	
	.project-listing h2 {
		padding-left: 20px;
		text-transform: uppercase;
		font-size: 1em;	
	}
	
	.single-projects .bx-wrapper {
		display: none;	
	}
	
	.project-content {
		
		padding-top: 20px;	
	}
	
	.project-content {
		clear: both;
			padding: 20px;	
	}
	
	
	/* Contact */
	
		.contact-content {
			padding-top: 20px;	
		}
		
		#map-canvas-1, 
		#map-canvas-2, 
		#map-canvas-3, 
		#map-canvas-4 { width: 100%; height: 300px; margin: 0 0 20px 0; }
	
	@media all and ( min-width : 768px ) {
		.project-listing h2 {
			padding-left: 0;	
		}
		
		.single-projects .bx-wrapper {
			display: block;	
		}
		
		.project-content {
			padding: 20px 0 0 0;	
		}
		
	body.home .col {
		margin: 0 1.5% 0 0 !important;
		padding: 0;
	}
	
	body.home .span_8 {
		width: 66.83% !important;	
	}
	
	body.home .span_4 {
		float: right;
		margin: 0 !important;
	}
	
	body.home .home-blocks {
		float: left;
		width: 100%;
		margin: 0 0 16px 0;	
	}
	
	body.home .home-blocks .col {
		margin: 0 0 0 2.5% !important;
	}
	
	body.home .home-blocks .col:first-child {
		margin: 0 !important;	
	}
	
	body.home .home-galleries .span_4 {
		float: left;	
		
	}
	
	body.home .home-galleries .col {
		margin: 0 0 0 2.5% !important;
	}
	
	body.home .home-galleries .col:first-child {
		margin: 0 !important;
	}
		
	}


/*--------------------------------------------------------------
5.0 - Blog / Posts / Categories
--------------------------------------------------------------*/
	
	.blog .post h2, .blog .post .posted-on {

	}
	
	.blog .post h2 {
		font-size: 2em;
		
	}
	
	.blog .post time {
		font-size: 0.8em;
		text-transform: uppercase;
	}
	
	

	/* Single Blog post */
	.single .entry-meta,
	.single .entry-meta .posted-on {
		font-size: 0.9em;
	}

	.single .entry-meta a {
		color: #e5eaf2;
	}

	.single .entry-content {
		margin-top: 0;
	}

	/* Comments */
	.single .comments-area {
		margin-top: 2em;
	}

	#comments ol {
		list-style-type: none;
		margin-left: 0;
	}

	.comment {
		padding: 1.5em 0 0 0;
	}

	.comment p {
		margin: 1em 0;
	}

	.comment-metadata {
		font-size: 1em;
	}

	#comments .comment-author .avatar {
		float: left;
		margin-right: 24px;
		height: auto;
		width: 50px;
	}

	#comments .comment-content {
		padding-left: 70px;
	}

	#comments .reply {
		display: none;
	}

	#comments .comment-form-comment {
		margin-bottom: 0.5em;
	}

	.comment-form-comment label {
		display: none;
	}

	.comment-form .form-allowed-tags {
		display: none;
	}

	@media all and ( min-width : 768px ) {
		.blog .post {
			padding: 20px 20px 0 20px;
			margin: 0 0 10px 0;
		}
		
		.blog .entry-content {
			/*padding: 0 100px;	*/
		}

		.single .entry-content {
			margin-top: 25px;
		}
	}


/*--------------------------------------------------------------
6.0 - Page Builder
--------------------------------------------------------------*/
	

	/* Slider */
	.slider-bg {
		position: relative;
		width: 100%;
		margin: 0;;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		background-position: center center;
	}
	
	
		
		.bx-wrapper {
			position: relative;
			*zoom: 1;
		}
		
		.bx-wrapper div.slide {
			width: 100%;
			height: 640px;
			text-align: center;
			background: #ffffff;
		}	
		
		.bx-wrapper img {
			max-height: 640px;
			width: auto !important;	
		}
		
	
		/* PAGER */
		
			body.home #bx-pager {
				float: left;
				width: 100%;
			}
			
			#bx-pager .col {
				width: 25%;
				padding: 0 !important;
				margin: 0 0 20px 0 !important;
				border-left: 1px solid #000;
			}
			
			body.home #bx-pager .col a {
				display: block;
				background: #06204d;	
				padding: 10px;
				font-size: 0.8em;
				height: 53px;
				overflow: hidden;
				text-align: center;
				color: #ffffff;
					
			}
	
			.single-projects .bx-wrapper {
				border: 1px solid #eeeeee;
			}	
			
			.bx-wrapper .bx-pager {
				position: absolute;
				bottom: 20px;
				z-index: 100000;
				text-align: center;
				font-size: .85em;
				font-family: Arial;
				font-weight: bold;
				color: #666;
				padding-top: 20px;
				width: 100%;
			}
			
			.bx-wrapper .bx-pager .bx-pager-item,
			.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
				display: inline-block;
				*zoom: 1;
				*display: inline;
			}
			
			.bx-wrapper .bx-pager.bx-default-pager a {
				background: #ffffff;
				text-indent: -9999px;
				display: block;
				width: 10px;
				height: 10px;
				margin: 0 5px;
				outline: 0;
				-moz-border-radius: 5px;
				-webkit-border-radius: 5px;
				border-radius: 5px;
			}
			
			.bx-wrapper .bx-pager.bx-default-pager a:hover,
			.bx-wrapper .bx-pager.bx-default-pager a.active {
				background: #000;
			}
			
			.sponsors-slider {
				border: 1px solid #cccccc;	
			}
			
			.sponsors-slider .bx-pager {
				display: none;
			}
			
			
		/* DIRECTION CONTROLS (NEXT / PREV) */

			.sponsors-slider .bx-wrapper .bx-prev,
			.sponsors-slider .bx-wrapper .bx-next {
				display: none;	
			}

			.bx-wrapper .bx-prev {
				left: 10px;
				/*background: url(../images/controls.png) no-repeat 0 -32px;*/
			}
			
			.bx-wrapper .bx-next {
				right: 0;
				/*background: url(../images/controls.png) no-repeat -43px -32px;*/
			}
			
			.bx-wrapper .bx-prev:hover {
				background-position: 0 0;
			}
			
			.bx-wrapper .bx-next:hover {
				background-position: -43px 0;
			}
			
			.bx-wrapper .bx-controls-direction a {
				position: absolute;
				top: 50%;
				margin-top: -16px;
				outline: 0;
				width: 32px;
				height: 32px;
				font-size: 2em;
				z-index: 9999;
				color: #cccccc;
			}
			
			.bx-wrapper .bx-controls-direction a.disabled {
				display: none;
			}
			
			/* AUTO CONTROLS (START / STOP) */
			
			.bx-wrapper .bx-controls-auto {
				text-align: center;
			}
			
			.bx-wrapper .bx-controls-auto .bx-start {
				display: block;
				text-indent: -9999px;
				width: 10px;
				height: 11px;
				outline: 0;
				background: url(../images/controls.png) -86px -11px no-repeat;
				margin: 0 3px;
			}
			
			.bx-wrapper .bx-controls-auto .bx-start:hover,
			.bx-wrapper .bx-controls-auto .bx-start.active {
				background-position: -86px 0;
			}
			
			.bx-wrapper .bx-controls-auto .bx-stop {
				display: block;
				text-indent: -9999px;
				width: 9px;
				height: 11px;
				outline: 0;
				background: url(../images/controls.png) -86px -44px no-repeat;
				margin: 0 3px;
			}
			
			.bx-wrapper .bx-controls-auto .bx-stop:hover,
			.bx-wrapper .bx-controls-auto .bx-stop.active {
				background-position: -86px -33px;
			}	

	

	
	/* Block content */
	
	.block-content {
		float: left;
		width: 100%;
		margin: 0 0 50px 0;
	}
	
	

	/* Image (full width). */
	.image-full-width img {
		height: auto;
		max-width: 100%;
	}

	/* Image (left and right) */
	.image-aligned-left .image img, .image-aligned-right .image img {
		height: auto;
		max-width: 100%;
	}

	/* Pull out quote */
	.pull-out-quote {
		border-left: 10px solid #444;
		margin: 0 50px;
		font-size: 1.4em;
		font-weight: bold;
	}

	.pull-out-quote p {
		margin-bottom: 0;
		padding: 0 20px;
	}

	/* Call to action */
	.call-to-action {
		padding: 0 40px;
		text-align: center;
	}
	
	.call-to-action .btn {
		width: 240px;
		margin: 0 10px 20px 10px;
	}
	
	@media all and ( min-width : 320px ) {
		
		.slider-bg {
			height: 400px;	
		}
		
		.slider-body {
		  max-width: 280px;
		}
		
		
	}
	
	
	@media all and ( min-width : 480px ) {
		.slider-body {
		  max-width: 460px;
		}
	}

	
	@media all and ( min-width : 640px ) {
		
		.slider-bg {
			height: 400px;	
		}
		
		.slider-body {
			margin: -100px auto 0 auto;
		  	max-width: 620px;
		}
		
		
	}
	
	
	@media all and ( min-width : 768px ) {
		.slider-body {
		  max-width: 748px;
		}
	}
	
	@media all and ( min-width : 960px ) {
		.slider-body {
		  max-width: 940px;
		}
		
		.call-to-action {
			padding: 0;	
		}
	}




/*--------------------------------------------------------------
10.0 -  Forms
--------------------------------------------------------------*/		
	
	.validation_message {
		display: none !important;	
	}	
	
	.gform_wrapper {
		max-width: 100%	 !important;
	}
	
	.gform_wrapper label {
		font-weight: normal !important;
	}

	.gform_wrapper .top_label li.gfield.gfield_error.gf_left_half,
	.gform_wrapper .top_label li.gfield.gfield_error.gf_right_half {
		width: 49% !important;
	}
	
	.validation_error, .gfield_error label {
		color: #d32552;	
	}	
	
	.validation_error {
		padding: 0 0 10px 0;
	}
	
	.sidebar-enquiry {
		padding: 20px;
		border: none !important;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		border: 1px solid #cccccc !important;
		background: #eeeeee;
	}
	
	.sidebar-enquiry h3 {
		color: #333333;	
	}
	
	.sidebar-enquiry label {
		color: #ffffff !important;	
	}
	
	.sidebar-enquiry 	.validation_message {
		display: block !important;
		color: #d32552;
		margin: 0 !important;
		padding: 0 !important;
	}	
	
	.sidebar-enquiry .gfield_error input {
		border: 1px solid #d32552;	
	}
	
	.gplaceholder li {
		padding: 3px 0;	
	}
	
	input#input_3_7, input#input_1_7 {
		border: 1px solid #cccccc;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
	
	.gform_confirmation_message {
		font-size: 1.4em;
	}
	
	.sidebar-enquiry .gform_confirmation_message {
		padding: 15px 0;	
	}
	
/*--------------------------------------------------------------
11.0 - Social
--------------------------------------------------------------*/

	
	.social {
		display: inline-block;
		margin: 0 1px 3px 1px;	
	}

	.social a {
		display: block;
		font-size: 1.6em;
		
		padding: 0 5px;
		color: #fff;
		text-align: center;
		
	}

	footer .social a {
		color: #06204d;
	}



/*--------------------------------------------------------------
11.0 - Footer
--------------------------------------------------------------*/
	
	footer.site-footer {
		background: #e0e0e0;
		color: #333333;
		min-height: 100px;
		padding: 30px 20px;
	}
	
	.footer-layout-a {
			text-align: left;	
		}
	
	.logo-footer img {
		width: 40px;
		height: 40px;
		margin: 0 0 10px 0;
	}
	
	footer.site-footer .menu ul,
	footer.site-footer .menu li {
		list-style: none;
		text-align: center;	
		margin: 0;
		padding: 0
	}
	
	footer.site-footer .menu li {
		padding: 3px 0;	
	}
	
	footer.site-footer .menu ul {
		margin: 0 0 20px 0;	
	}
	
	footer.site-footer .menu .children {
		display: none;	
	}

	.site-footer .ticktock {
		text-align: center;
		padding-top: 4%;
	}
	
	.footer-layout-a .social-icons {
	
		margin: 0 0 15px 0;	
	}
	
	@media all and ( min-width : 768px ) {
		
		.logo-footer {
			width: 100px;
			margin: 0 10px 0 0;	
		}
		
		.footer-layout-b {
			text-align: left;	
		}
		
		.footer-layout-b .social-icons {
			float: right;
		}

	}