.line, /* line - Groups units on one horizontal line. Note: for mobile layout units may be stacked to avoid horizontal scrolling. */
.lastUnit {
	*overflow:visible;
	*zoom:1;
	padding:0 10px;
}
.unit { /* unit - Base class which divides a line into sections (columns). */
	float:left;
	padding:0 10px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box; /* box-sizing:border-box; creates a box-model where
	padding and border are NOT added onto the width - they are included in the width,
	so a 200px wide element with 20px padding will be 200px, NOT 240px wide */

}
.unitRightv { /* Use this class if you want to offset a column eg: |--content(.unit)--|--content(.unit)--|--no-content--|--no-content--|--content(.unitRighttv)--| */
	float:right;
}

/* sizeXofY - Extends unit. Indicates the fractional width of the unit, for example size3of4 would take up three quarters, or 75%, of the horizontal space.
The following fractions are supported: 1, 1/2, 1/3, 2/3, 1/4, 3/4, 1/5, 2/5, 3/5, 4/5 */
/* It is possible to add more columns if you wish you will just have to add the fractions that are missing eg: .size1of6 {width:16.66666%;} */

.size1of1 {
	float:none;
}
.size1of2 {
	width:50%;
}
.size1of3 {
	width:33.33333%;
}
.size2of3 {
	width:66.66666%;
}
.size1of4 {
	width:25%;
}
.size3of4 {
	width:75%;
}
.size1of5 {
	width:20%;
}
.size2of5 {
	width:40%;
}
.size3of5 {
	width:60%;
}
.size4of5 {
	width:80%;
}
.lastUnit { /* lastUnit - Extends unit. Applied to the last child of every line. */
	float:none;
	width:auto;
	_position:relative; /* Bug fix for IE6 - Internet Explorer 6 and below wouldn't fail on properties that were prefixed with non-alphanumeric characters.
	meaning that anything prefixed with _ wouldn't be picked up by any other browsers */
	_left:-3px;
	_margin-right:-3px;
}

/* MAIN LAYOUT */
body {
    margin: 0;
    background: #017BBE;
    min-width: 240px;
	-webkit-text-size-adjust: none; /* The text size is not adjusted for Safari on iPhone */
}
	.ie7 body,
	.ie8 body {
	    min-width: 860px; /* media queries are not supported in ie7/8 without a polyfill */
	}
	.main {
	    background: #fff;
	    padding: 20px 0 60px;
	    min-height: 300px;
        overflow: hidden;
	}
	.inner {
	    max-width: 1200px;
	    margin: 0 auto;
	}
	.ie6 .inner {
	    width: 960px;
	}
	.no-sidebar .content-container {
	    float: left;
	    width:100%; /* makes content container full width when there is no sidebar */
	}
	.sidebar { /* this is the sidebar element */
	    margin-top: 12px;
	}
	.no-sidebar .sidebar {
		display: none;
	}


/* HEADER */
.header {
    background: #FFF;
}
.menu{
	margin-top: 17px;
	margin-left: 10px;
}
.toplinks {
	position: absolute;
	top: 0;
	right: 0;
}

.nav-holder .toplinks,
.HomePage .nav-holder .toplinks  {
	top: 0;
}
.toplinks a {
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 40px;
	display: block;
	text-align: right;
}

.nav-holder .toplinks a {
	color: white;
}
.hero{
	border: none!important;
	float: left;
	margin-right: 400px;
	position: relative;
	top: 10px;
}

.menulink span {
	display: inline-block;
	width: 32px;
	height: 32px;
	position: relative;
    user-select: none;
	cursor: pointer;
	vertical-align: middle;
	margin-top: -4px;
	margin-left: 5px;
}
	.menulink span:before,
	.menulink span:after {
		content: "";
		width: 32px;
		height: 2px;
		background: currentcolor;
		position: absolute;
		left: 0;
		top:11px;
		transition: all 0.4s ease-in-out;
	}
	.menulink span:after {
		top:19px;
	}
	.menuon .menulink span:before {
		top:16px;
		transform: rotate(135deg);
	}
	.menuon .menulink span:after {
		top:16px;
		transform: rotate(-135deg);
	}



.callink span {
	top: 5px;
	margin-left: 5px;
	width: 32px;
	height: 20px;
	border: 2px solid currentColor;
	border-top-width: 4px;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}
.callink span:before,
.callink span:after {
	content: "";
    display: block;
    position: absolute;
    height: 4px;
    width: 1px;
    border: 1px solid currentColor;
    top: -7px;
	right: 12px;
	left: 4px;
	background: #fff;

}
.callink span:after {
    left: 21px;
}
.nav-holder .callink span:before,
.nav-holder .callink span:after {
	background-color: #017BBE;
}
.nav-holder{
	height: 100vh;
	background-color: #017BBE;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 500;
	display: none;
	overflow: auto;

}

body.menuon {
	overflow: hidden;
}

.menulink{
	font-size: 36px;
	font-weight: normal;
}

	.header .inner {
	    padding: 10px 0;
	    position: relative;
	}

	/* Brand */
	.header .brand {
	    display: block;
		width: 174px;
		height: 64px;
		background: url(../images/logo-sprite.png) 0 -200px no-repeat;
	}
	.header .nav-holder .brand {
		background: url(../images/logo-sprite.png) 0 -300px no-repeat;
	}

	/* Search form */

	.search-bar {
		position: absolute;
		right: 13px;
		top: 12px;
	}
		.search-bar .field {
			margin: 0;
			padding: 0;
		}
		.search-bar form input.text {
		    width: 155px;
		    padding: 5px 34px 5px 15px;
		    color: #888;
		    margin: 0;
		    border: none;
		    -moz-border-radius: 14px;
		    border-radius: 14px;
		    background: #fff;
		}

		.search-bar form input.action { /* positions the search button icon over the top of the search input */
		    font-size: 14px;
		    position: absolute;
		    right: 5px;
		    top: 0;
		    cursor: pointer;
		    border: none;
		    padding: 5px;
		    background: none;
		    font-family: 'WebSymbolsRegular';
		    color: #848484;
			border-radius: 0;
			margin: 0;
		}
		.search-bar form input.active,
		.search-bar form input.action:hover {
		    color: #000;
		}
		.search-bar form input:focus,
		.header textarea:focus {
		    outline: none; /* removes default browser outlining on focus */
		}
		.search-dropdown-icon {
		    display: none; /* hides search-dropdown-icon when site is at full width - media queries set it to display:block when at mobile/tablet width */
		}



/* NAVIGATION */

	/* Primary navigation */
	.header .inner .unit {
		position: relative; /* used to position the main navigation */
	}

	.header .primary {
		padding-top: 60px;
	}

	.header .primary ul {
		position: relative;
		display: inline-block;
	}
	.header .primary li {
		display: inline-block;
	    padding-bottom: 14px;
	    margin: 0;
	    position: relative;
		white-space: nowrap; /* forces text to never wrap onto a second line */
		width: 220px
	}
	.header .primary li a {
		color: rgb(255, 204, 41);
	    font-size: 18px;
	    padding: 10px 0;
		font-weight: bold;
		display: block;
		text-transform: uppercase;
		font-weight: 600;
		margin-top: 20px;
	}
	.header .primary ul li ul{

	}
	.header .primary ul li ul li{
		display: block;
		padding: 0px;
		margin: 0px;
	}
	.nav-base {
		clear: both;
		border-top: 1px solid #fff;
		position: relative;
		width: 100%;
		margin-top: 20px;
		padding-top: 10px;
	}

	.facebook-link{
		color: #fff;
		float: right;
		font-size: 36px;
	}

	.header .primary > ul {
		width: 100%;
	}

	.header .primary > ul > li {
		width: 24%;
		vertical-align: top;
		min-width: 240px;
	}

	.header .primary li.solo{
		display: block;
		padding-bottom: 0;
	}
	.header .primary ul li ul li a, .header .primary ul li.solo a{
		margin-top: 0;
		color: rgb(255, 255, 255);
		padding: 8px 0;
		font-size: 24px;
		text-transform: none;
	}
	.header .primary a:hover{
		color: rgb(255, 204, 41) !important;
	}
	.header .primary li a:hover {
	    color: #fff;
	}
	.header .primary li.current > a {
	    text-decoration: underline;
	}

	/* Secondary navigation */
	.main .secondary h3 {
	    font-size: 20px;
	    color: #FFF;
	    margin: 0 0 8px 0;
	    font-weight: normal;
	}
	.main .secondary {
	    border-bottom: 1px solid #e5e5e5;
	}
		.main .secondary ul {
		    padding: 0;
		    margin: 0;
		}
		.main .secondary li {
		    border-top: 1px solid #e5e5e5;
		    position: relative;
		    list-style-type: none;
		    margin-bottom: 0;
		}
			.main .secondary li .arrow {
			    color: #b80000;
			    padding-right: 5px;
			    display: block;
			    font-size: 15px;
			    line-height: 20px;
			    position: absolute;
			    left: 2px;
			    top: 7px;
			    -moz-transition: 0.2s; /* this transition moves the arrow from left:2px to left:6px */
			    -webkit-transition: 0.2s;
			    transition: 0.2s;
			}
		.main .secondary li a:hover .arrow {
		    left: 6px; /* this sets the final position for the arrow transition */
		}
		.main .secondary li a { /* side nav link styling */
		    padding: 10px 0;
		    display: block;
		    text-transform: uppercase;
		    letter-spacing: 2px;
		    font-size: 11px;
		    color: #333;
		    line-height: 17px;
		    border-bottom: none;
		    font-family: 'Lucida Sans', 'Lucida Grande', Arial, Helvetica, sans-serif;
		}
		.main .secondary li .text {
		    padding-left: 28px;
		    display: block;
		}
		.main .secondary li.current a.current {
			color: #b80000;
			background-color: #EDEDED;
		}
		.main .secondary li.section,
		.main .secondary li.current {
		    background-color: #F3F3F3;
		}
			.main .secondary li.section a,
			.main .secondary li.current a {
			    color: #000;
			}


		/* Secondary navigation 2-5 levels deep */
		.main .secondary ul ul {
			display: none;
		}
		.secondary ul li.current ul,
		.secondary ul li.section ul { /* Only show child pages from selected parent */
			display: block;
		}
		.secondary li.current ul ul {
			display: none;
		}
		.main .secondary ul ul li a { padding-left: 10px; } /* Indent all sidebar navigation levels*/
			.main .secondary ul ul li a .arrow { left: 12px; }
			.main .secondary ul ul li a:hover .arrow { left: 16px; }

		.main .secondary ul ul ul li a { padding-left: 20px; }
			.main .secondary ul ul ul li a .arrow { left: 22px; }
			.main .secondary ul ul ul li a:hover .arrow { left: 26px; }

		.main .secondary ul ul ul ul li a { padding-left: 30px; }
			.main .secondary ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul li a:hover .arrow { left: 36px; }

		.main .secondary ul ul ul ul ul li a { padding-left: 40px; }
			.main .secondary ul ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul ul li a:hover .arrow { left: 36px; }

		.main .secondary li a:hover,
		.main .secondary li.section a:hover,
		.main .secondary li.current a:hover {
			color: #b80000;
		}








/* MIXED */
header:after,
.main:after,
#Root:after,
.search-bar:after,
header .inner:after,
footer:after { /* clearfix */
    height: 0;
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
}
.search-bar form input.action,
.header .primary li a,
.footer a { /* adds color transition when links/inputs on hover */
    -moz-transition: color 0.2s;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.footer a.brand { color: white; margin-left: 0; }
.footer a.brand:hover { color: #B80000; }


/* FOOTER */
.footer {
    color: #999;
    background: #017BBE;
    padding: 20px 0;
    font-size: 11px;
	line-height: 22px;
	font-family: "Titillium";
}
	.footer p {
		font-weight: 300;
	}

	.footer h5 {
		text-transform: uppercase;
		font-size: 16px;
		font-weight: 600;
		color: rgb(255, 204, 41);
	}

	.footer a {
	    color: white;
	}
	.footer .left {
	    float: left;
	    color: white;
	    display: block;
	    margin-bottom: 10px;
	}
	.footer a {
		text-decoration: underline;
	}
	.footer .right {
	    float: right;
	    display: block;
		margin-bottom: 10px;
	}
	.footer span {
	    padding: 0 3px;
	    color: #bbb;
	}
	.footer .primary,
	.footer .primary ul {
	    display: inline;
	    margin: 0;
	    padding: 0;
	}
		.footer .primary li {
		    display: inline;
		}
	.ie6 .footer .primary li,
	.ie7 .footer .primary li { /* this is a bugfix for ie6/7 */
	    display: inline;
	    zoom: 1;
	    margin-right: 10px;
	}
	.footer .primary li:after { /* adds '/' to separate the footer navigation items */
	    padding: 0 3px 0 5px;
	    content: '/';
	    color: #999;
	}
	.footer .primary li:last-child:after {
	    content: ''; /* makes sure last nav item doesn't have a '/' following it */
	}
	.footer .arrow {
	    padding: 0 8px 0 5px;
	    color: #b80000;
	    font-size: 13px;
	}
	.footer .primary .nav-open-button {
	    display: none; /* the footer includes the primary nav include - this makes sure the nav open close button doesn't show up */
	}
	.footer .inner .unit {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.footerMailForm {
		width: 200px;
	}
	.footerMailForm p {
		font-size: 16px;
		color: white;
	}
	.footerMailForm form {
		width: 100%;
	}
	.footerMailForm input {
		width: 100%;
		border: 1px solid transparent;
		border-radius: 4px;
		height: 30px;
	}
	.footerMailForm input::placeholder {

		color: rgb(68, 68, 68);
	}
	#roundMailButton {
		color: #017BBE;
		background-color: rgb(255,204,41);
		margin-top: 4px;
	}
	.footer .right p {
		text-align: right;
		color: white;
		font-size: 18px;
	}
	.footer .right h5 {
		text-align: right;
		font-size: 16px;
	}
	.lineGap {
		float: right;
	}
	.site-info{
		line-height: 17px;
	}

/* PAGE SPECIFIC LAYOUT */
	a.s-link{
		transition: all ease 0.2s;

	}
	a.s-link:hover{
		text-decoration: none;
		border-bottom: none;
		opacity: 0.8;

	}
	.date{
		font-size: 16px
	}
	.sponsor-slider-top {
		min-height: 150px;
	}
	.sponsor-slider-slide{
		display: table-cell;
		float: left;
		width: auto;
		line-height: 125px;
		max-height: 125px;
		margin: 15px 15px;
		vertical-align: middle;
		width: 205px;
		height: 175px;
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center center;
	}
	.bronze{
		width: 110px;
		height: 100px;
	}



	.HomePage h4 {
		font-weight: 300;
		color: white;
		line-height: 67px;
		max-height: 67px;
		font-size: 36px;
		position: relative;
		z-index: 2;
	}

	.comingSoon {
		width: calc(100% - 425px);
		float: left;
		margin-top: 55px;
	}
	.announcement{
		font-size: 24px;
		padding: 20px;
		border: 2px solid #ffcc29;
		background: #ffe;
		border-left-width: 12px;
		max-width: 700px;
		margin: 0 auto 50px;
	}
	.announcement > :last-child { margin-bottom: 0; }
	.comingSoon h4 {
		color: #017BBE;
	}

	.cal-event {
		width: 100%;
		display: block;
	}

	.cal-date {
		width: 72px;
		height: 60px;
		float: left;
		font-size: 12px;
		border-radius: 4px;
		border: 3px solid #017BBE;
		box-sizing: border-box;
		text-align: center;
		box-shadow: 0 0 7px rgba(0,0,0,0.2);
	}

	.cal-date-month {
		width: 100%;
		background-color: #017BBE;
		color: #fff;
		font-size: 12px;
		text-transform: uppercase;
		height: 17px;
		line-height: 17px;
	}

	.cal-date-day {
		color: #017BBE;
		font-size: 36px;
		line-height: 1em;
		font-weight: bold;
	}

	.cal-event {
		margin-bottom: 20px;
	}

	.cal-info {
		margin-left: 20px;
		float: left;
		font-size: 16px;
		line-height: 1.5em;
	}

	.cal-event a.read-more {
		text-decoration: underline;
	}

	.cal-event a.read-more:hover {
		border-bottom: none;
	}

	#facebookFrame {
		margin-top: 30px;
		float: right;
		width: 425px;
		height: 600px;
		padding-bottom: 80px;
	}

	.news {
		margin: 0 !important;
		max-width: 1200px;
		max-height: 300px;
		position: relative;
	}

	.news p {
		padding: 10px;
	}


	.news-slider-top {
		max-height: 400px;
		overflow: hidden;
	}
	.news-holder{
		margin: 60px 0 20px 0;
		float: 	left;
        max-width: 100%;
	}
	.news-holder h2{
		color: white;
		font-size: 35px;
		padding-top: 10px;
		line-height: 40px;
	}
	.news-bit{
		max-width: 	100%;
		margin: 20px;
		float: 	left;
        box-sizing: border-box;
	}
	.bookings{
		height: 1640px;
		max-width: 100%;
		width: 100%;
	}
	.cover-image{
		width: 	100%;
		background-size: cover;
		background-position: top center;
		height: 175px;
	}
	.news-preview{
		width: 	100%;
		height: max-content;
		background-color: 	#fff;
        padding-bottom: 35px;
	}
	.NewsPage .news-preview{
		background-color: #ececec;
	}
	a .news-preview p{
		color:  #777984;
	}
	.date{
		color: #777984;
	}
	.news-preview h3{
		font-size: 22px;
		line-height: 	25px;
		padding: 20px 20px 0px 20px;
	}
	.news-preview .date{
		padding: 0 20px;
	}
	.news-preview p{
		padding: 5px 20px;
		font-size: 16px;
		line-height: 20px;
	}
	a.news-read{
		display: 	block;
		text-align:  center;
		padding: 	10px 0;
		background-color: 	#017BBE;
		transition: all ease 0.2s;
		text-decoration: none;
		color: #fff;
        position: absolute;
        bottom: 0;
        width: 100%;
	}
	a.news-read:hover{
		font-size: 17px;
		background-color: #3457a9;
		color: #fff;
	}
	a.news-all{
		display: block;
		float:  right;
		font-weight: bold;
		text-decoration: underline;
	}
	.singlenews{
		max-width: 900px;
	}

	#greyBar {
		position: relative;
		background-color: #017bbe17;
		left: 0;
		right: 0;
		width: 100%;
	}
	#greyBar:before {right: 100%;}
	#greyBar:after {left: 100%;}
	#greyBar:before, #greyBar:after {
		content: "";
		position: absolute;
		background-color: #017bbe17;
		width: 9999px;
		top: 0;
		bottom: 0;
	}

	.news-bit {
		width: 350px;
		height: 100%;
		display: inline-block;
		position: relative;
		vertical-align: middle;
		background-repeat: no-repeat;
		background-size: cover;
		color: white;
        min-height: 525px;
	}

	.news-image {
		margin: 0 auto;
		display: block;
		float: left;
		margin-bottom: 20px;
	}

	a.btn {
		color: #017BBE;
		background-color: rgb(255,204,41);
		margin-top: 4px;
		margin-top: 20px;
	}

	a.btn:after {
		content: none;
	}

	a.btn:hover {
		border-bottom: none;
		color: #017BBE;
		background-color: rgb(255,204,41);
	}

	.typography .news-bit p {
		font-size: 16px;
		line-height: 1.5em;
	}

	.typography .news-bit a.news-read {
		text-decoration: underline;
		font-size: 16px;
	}

	p.event-details{
		font-size: 15px;
		margin-bottom: 0px;
		font-weight: bold;
	}

	.typography .news-bit a.news-read:hover {
		border-bottom: none;
	}

	.news-bit .cover-image {
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center top;
		height: 260px;
		width: 100%;
	}

	.news-layer {
		background-color: rgba(0,0,0,0.6);
		box-shadow: 0 0 7px rgba(0,0,0,0.2);
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: 100%;
		text-align: center;
		transition: all 0.1s ease-in-out;
		position: absolute;
		overflow: hidden;
	}

	.featured {
		width: 80px;
		height: 22px;
		border-radius: 5px;
		background-color: #ffcc29;
		position: absolute;
	}

	.news-layer:hover {
		background-color: rgba(0,0,0,0.9);
	}

	.news-box-content {

		display: block;
	}

	.news-box-content p,
	.news-box-content a {
		position: absolute;
		left: 0;
		right: 0;
		padding: 0;
		margin: 0;
		color: #FFFAFA;
		font-weight: 300;
	}

	.news-box-content h5 {
		color: white;
		font-size: 24px;
		font-weight: 600;
		line-height: 28px;
		position: relative;
		left: 0;
		right: 0;
		top: 110px;
		margin: 0;
		padding: 0px 12px;
	}

	.news-box-content p.date {
		font-size: 14px;
		text-transform: uppercase;
		top: 180px;
	}

	.news-box-content p.intro {
		top: 300px;
		font-size: 18px;
		line-height: 18px;
		padding: 10px;
		box-sizing: border-box
	}
	.news-box-content p.intro {
		top: 300px;
		font-size: 18px;
	}
	.news-box-content p.featured {
		text-align: center;
		margin: 0 auto;
		top: 66px;
		font-size: 12px;
		color: black;
		line-height: 20px;
		text-transform: uppercase;
		font-weight: bold;
	}

	.news-box-content h5,
	.news-box-content p,
	.news-box-content a {
		transition: all 0.1s ease-in-out;
	}
	.news-box-content a {
		top: 355px;
		font-size: 18px;
		text-align: right;
		text-transform: uppercase;
		right: 20px;
		width: auto;
		display: block;
		border: none !important;
		text-decoration: underline;
		font-weight: bold;
	}
	.news-layer:hover .news-box-content h5 {
		top: 20px;
	}
	.news-layer:hover .news-box-content p.date {
		top: 90px;
	}
	.news-layer:hover .news-box-content p.intro {
		top: 130px;
	}
	.news-layer:hover .news-box-content p.featured {
		top: -25px;
	}
	.news-layer:hover .news-box-content a {
		top: 265px;
	}

	.slick-slide {
		margin: 0 2px;
	}

	.slick-next, .slick-prev {
		width: 50px;
		height: 100px;
		color: rgb(204,204,204);
		cursor: pointer;
		font-family: 'FontAwesome' !important;
		background-color: transparent;
		z-index: 1;
	}
	.slick-next:focus, .slick-prev:focus {
		outline: 0 !important;
	}

	.slick-next:before {
		font-size: 160px;
		content: '\f105';
		display: block;
	}

	.slick-prev:before {
		font-size: 160px;
		content: '\f104';
		display: block;
	}

	.slick-prev {
		position: absolute;
		margin-top: 67px;
		margin-left: -118px;
	}

	.slick-next {
		position: absolute;
		margin-top: -238px;
		right: -93px;
	}

	.blueBar {
		position: relative;
		height: 67px;
		background-color: #017BBE;
	}
	.blueBar:before {right: 100%;}
	.blueBar:after {left: 100%;}
	.blueBar:before, .blueBar:after {
		content: "";
		position: absolute;
		background-color: #017BBE;
		width: 9999px;
		top: 0;
		bottom: 0;
	}



	/* Homepage */
		/* currently no Hompage specific styles - feel free to add your own */

	/* Search Results */
	.typography .searchResults h1 {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.searchResults p.searchQuery {
	    margin-bottom: 10px;
	    font-size: 15px;
	    font-weight: bold;
	}
	.searchResults ul#SearchResults {
	    padding: 0;
	    border-bottom: 1px solid #e5e5e5;
	    margin:0;
	}
		.searchResults ul#SearchResults li {
		    border-top: 1px solid #e5e5e5;
		    padding: 20px 0;
		    list-style-type: none;
		}
		.searchResults ul#SearchResults p {
		    margin-bottom: 10px;
		}
		.searchResults #PageNumbers a {
		    padding: 0 5px;
		}
		.searchResults #PageNumbers .pagination {
		   	border-bottom: 1px solid #e5e5e5;
		    padding: 20px 0;
		    display:table; /* displays the pagination as a table so that elements stay inline and the middle column adjusts its size to accomodate and the right arrow stays to the right */
		    width:100%;
		}
		.searchResults #PageNumbers .pagination span{
			display:table-cell; /* each element in the pagination div displays as a table cell */
		}
		.searchResults #PageNumbers p {
		    text-align: center;
		    padding:20px 0;
		}
		.searchResults #PageNumbers .next,
		.searchResults #PageNumbers .prev {
		    font-size: 14px;
		    padding: 0 20px;
		    display:table-cell; /* each element in the pagination div displays as a table cell */
		    vertical-align: middle;
		    border-bottom:0 !important;
		}
		.searchResults #PageNumbers .next {
		    margin-left: 15px;
		}
		.searchResults #PageNumbers .prev {
		    margin-right: 15px;
		}

/* DEVICE & RESPONSIVE LAYOUT */
.header .nav-open-button {
    display: none; /* removes the nav toggle button for desktop site */
}
#media-query-trigger {
    /* instead of detecting the width of the window in simple/javascript/script.js it detects the visibility of this element (which is set using media queries)
    instead to trigger the hiding/showing of nav and search in mobile mode */
    display: none;
    visibility: hidden;
}

.blockHeader {
	position: relative;
	width: 100%;
	min-height: 450px;
	height: 450px;
	background-color: #017BBE;
    display:flex;
    align-items: center;
    justify-content: center;
}

.blockHeader:before {right: 100%;}
.blockHeader:after {left: 100%;}
.blockHeader:before, .blockHeader:after {
	content: "";
	position: absolute;
	background-color: #017BBE;
	width: 9999px;
	top: 0;
	bottom: 0;
}

.blockHeader h1 {
	font-weight: 600;
	position: absolute;
	width: 490px;
	right: 0;
	font-size: 5.5em;
	line-height: 86px;
	text-align: right;
	border: none;
	color: white;
}

.side {
	width: 330px;
	padding-right: 30px;
	float: left;
}

.side img{
	border: none;
}

.sidebarcontent {
	margin-left: 360px;
}

.sidebarcontent p {
	color: rgb(68, 68, 68);
}

img, iframe {
	max-width: 100%;
}


/* BREAKPOINT 960px */


@media only screen and (min-width: 720px) {
	.HomePage .header .mainbrand {
		width: 400px;
		height: 147px;
		background: url(../images/logo-sprite.png) 0 0 no-repeat;
	}
	.HomePage .toplinks {
		top: -20px;
	}

	.HomePage .header .inner {
	    padding: 30px 0;
	}

	.HomePage .header .nav-holder .inner {
	    padding: 10px 0;
	}

}

@media only screen and (max-width: 720px) {
    .HomePage .header {
        height: 150px;
    }
}

@media only screen and (max-width: 1020px) {
	.content img {
	    max-width: 97%;
	    height: auto;
	}
	.header .primary > ul > li {
		width: 49%;
	}

	.side {
		padding-right: 0;
		float: none;
		max-width: 100%;
	}

	.sidebarcontent {
		margin: 30px 0 0 0;
		clear: both;
	}
}

@media (max-width: 1050px) {
	.news-box-content p.date {
		bottom: 30px;
		top: auto;
	}

	.comingSoon {
		width: 100%;
		margin-bottom: 40px;
	}

	#facebookFrame {
		float: none;
		margin: 0 auto;
		display: block;
	}

}

/* BREAKPOINT 640px */

/* when changing the breakpoint below, change it ito the same value in the script.js file as well */
@media only screen and (max-width: 640px) {
	#media-query-trigger {
	    visibility: visible;
	}

	.bronze-sponsors .bronze{
		width: 40%;
	}

	.cal-info{
		width:70%;
	}
	.cal-info h3{
		line-height: 24px;
		margin-bottom: 10px;
	}

	.sponsor-slider-slide{
		width: 100%;
	}
	.bronze{
		width: 75%;
	}

	.typography h3{
		font-size: 20px;
	}


	/* Navigation*/


	/* Main Content */

	.main {
	    padding: 20px 0 45px; /* decrease padding so that more content can fit on screen */
	}

	.content-container,
	.sidebar {
	    width: 100%; /* sidenav is now shown above the page content */
	    margin-bottom: 30px;
	}
		.typography h1 { /* decrease size of page heading due to smaller screen */
		    font-size: 30px;
			line-height:35px;
		    margin-bottom: 15px;
		    padding-bottom: 10px;
		}
		.typography p {
		    font-size: 14px;
		    line-height: 23px;
		}
	p.intro {
	    font-size: 19px;
	    line-height: 27px;
	}
	.toplinks {
		right: 10px;
	}
	/* Secondry Nav */
	.secondary li a {
	    line-height: 24px;
	}
	.secondary li .arrow {
	    line-height: 26px;
	}
	/* Footer */
	.footer .right {
	    float: left;
	    width: 100%;
	}

	.blockHeader h1 {
		font-size: 55px;
		line-height: 55px;
	}
}

/* Print Styles */

/* Based on HTML5 boilerplate print styles */
@media print {
	* {
	    background: transparent !important;
	    color: black !important;
	    box-shadow: none !important;
	    text-shadow: none !important;
	    filter: none !important;
	    -ms-filter: none !important;
	}
	a,
	a:visited {
	    text-decoration: underline
	}
	a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

	thead {
	    display: table-header-group
	}
	tr,
	img {
	    page-break-inside: avoid
	}
	img {
	    max-width: 100% !important
	}
	pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    /* Simple theme custom print styles */
	.header,
	.footer,
    .nav-open-button,
    .search-bar,
    .search-dropdown-icon,
    nav.primary {
	    display: none;
	}
}


@media (max-width: 1410px) {

	.slick-prev:before, .slick-next:before {
		display: none;
	}
}

@media (max-width: 1250px) {
	.typography .hero{

		margin: 0 auto;
		position: absolute;
		bottom: -72px;
		top: auto;
		height: 90%;
	}

	.blockHeader h1 {
		text-align: center;
		font-size: 3.5em;
		line-height: 50px;
		top: 0;
		width: 100%;
		height: 30%;
	}
}

@media(max-width: 900px) {
    .blockHeader:before, .blockHeader:after {
        width: 20px;
    }
}

@media(max-width: 819px) {
    .news-holder {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 360px;
        margin: 0 auto;
        float: unset;
    }

    #greyBar {
        height: 100%;
    }

    a.news-all{
        margin-bottom: 20px;
    }
}

@media (max-width: 800px) {
	.typography .hero {
		height: auto;
	}
}

@media (max-width: 650px) {
	.blockHeader {

		min-height: 400px;
		height: 400px;
	}
}

@media (max-width: 600px) {
	.blockHeader {
		min-height: 320px;
		height: 380px;
	}

	.typography .hero {
		bottom: -65px;
	}
}

@media (max-width: 540px) {
	.unit .right p, .unit .right h5 {
		text-align: left;
	}
}

@media (max-width: 500px) {

	.comingSoon h4, iFrame {
		max-width: 100%;
		width: 100%;
	}

	.blockHeader h1 {
		font-size: 3em;
    	line-height: 42px;
	}

	.blockHeader {
		min-height: 300px;
		height: 320px;
	}

	.typography .hero {
		bottom: -44px;
	}
}


@media (max-width: 463px) {
	.HomePage h4 {
		font-size: 26px;
	}



	.comingSoon h4 {
		border: none;
		padding: 0;
	}

	.sponsors-top {
		margin-left: -30px !important;
	}

}

@media (max-width: 400px) {
	.blockHeader {
		min-height: 290px;
		height: 310px;
	}

	.typography .hero {
		bottom: -40px;
	}
}

@media(max-width: 370px) {
    .comingSoon .cal-date {
        float: unset;
    }

    .comingSoon .cal-info {
        width: 100%;
        float: unset;
        margin-left: 0;
        margin-top: 16px;
    }
}

@media (max-width: 350px) {
	.HomePage h4 {
		font-size: 22px;
	}

	.blockHeader {
		min-height: 270px;
		height: 270px;
	}

	.blockHeader h1 {
		font-size: 2.5em;
		line-height: 38px;
	}

	.typography .hero {
		bottom: -35px;
	}
}

.content {
	padding-bottom: 60px;
}

.HomePage .content{
	padding-top: 85px;
	max-width: 1000px;
	margin: 10px auto;
}

.HomePage .typography img.shop-image {
    margin-top: 75px;
    margin-bottom: 70px;
}
