@charset "UTF-8";

/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
	border-style: none;
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */

legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
	display: none;
}

.mm-menu.mm-top,.mm-menu.mm-bottom{width:100%;min-width:100%;max-width:100%}.mm-menu.mm-right{left:auto;right:0}.mm-menu.mm-bottom{top:auto;bottom:0}html.mm-right.mm-opening .mm-slideout{-webkit-transform:translate(-80%, 0);-moz-transform:translate(-80%, 0);-ms-transform:translate(-80%, 0);-o-transform:translate(-80%, 0);transform:translate(-80%, 0)}@media all and (max-width: 175px){html.mm-right.mm-opening .mm-slideout{-webkit-transform:translate(-140px, 0);-moz-transform:translate(-140px, 0);-ms-transform:translate(-140px, 0);-o-transform:translate(-140px, 0);transform:translate(-140px, 0)}}@media all and (min-width: 362.5px){html.mm-right.mm-opening .mm-slideout{-webkit-transform:translate(-80%, 0);-moz-transform:translate(-80%, 0);-ms-transform:translate(-80%, 0);-o-transform:translate(-80%, 0);transform:translate(-80%, 0)}}@media all and (min-width: 550px){html.mm-right.mm-opening .mm-slideout{-webkit-transform:translate(-440px, 0);-moz-transform:translate(-440px, 0);-ms-transform:translate(-440px, 0);-o-transform:translate(-440px, 0);transform:translate(-440px, 0)}}html.mm-front .mm-slideout{-webkit-transform:none !important;-moz-transform:none !important;-ms-transform:none !important;-o-transform:none !important;transform:none !important;z-index:0 !important}.mm-menu.mm-front{z-index:1}.mm-menu.mm-front,.mm-menu.mm-next{-webkit-transition:-webkit-transform .4s ease;-ms-transition:-ms-transform .4s ease;transition:transform .4s ease;-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);-o-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}.mm-menu.mm-front.mm-right,.mm-menu.mm-next.mm-right{-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);-o-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}.mm-menu.mm-top{-webkit-transform:translate3d(0, -100%, 0);-moz-transform:translate3d(0, -100%, 0);-ms-transform:translate3d(0, -100%, 0);-o-transform:translate3d(0, -100%, 0);transform:translate3d(0, -100%, 0)}.mm-menu.mm-bottom{-webkit-transform:translate3d(0, 100%, 0);-moz-transform:translate3d(0, 100%, 0);-ms-transform:translate3d(0, 100%, 0);-o-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0)}html.mm-opening .mm-menu.mm-front,html.mm-opening .mm-menu.mm-next{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.mm-menu.mm-top,.mm-menu.mm-bottom{height:80%;min-height:140px;max-height:880px}

/*!
 * jQuery mmenu v7.2.0
 * @requires jQuery 1.7.0 or later
*/.mm-hidden{display:none !important}.mm-wrapper{overflow-x:hidden;position:relative}.mm-menu,.mm-menu>.mm-panel{margin:0;position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.mm-menu{background:inherit;display:block;padding:0}.mm-panel{-webkit-transition:-webkit-transform .4s ease;-moz-transition:-moz-transform .4s ease;-ms-transition:-ms-transform .4s ease;-o-transition:-o-transform .4s ease;transition:transform .4s ease;-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);-o-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}.mm-panel.mm-opened{-webkit-transform:translate3d(0%, 0, 0);-moz-transform:translate3d(0%, 0, 0);-ms-transform:translate3d(0%, 0, 0);-o-transform:translate3d(0%, 0, 0);transform:translate3d(0%, 0, 0)}.mm-panel.mm-subopened{-webkit-transform:translate3d(-30%, 0, 0);-moz-transform:translate3d(-30%, 0, 0);-ms-transform:translate3d(-30%, 0, 0);-o-transform:translate3d(-30%, 0, 0);transform:translate3d(-30%, 0, 0)}.mm-panel.mm-highest{z-index:1}.mm-menu>.mm-panel{background:inherit;-webkit-overflow-scrolling:touch;overflow:scroll;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;padding:0 20px}.mm-menu>.mm-panel.mm-hasnavbar{padding-top:40px}.mm-menu>.mm-panel:before,.mm-menu>.mm-panel:after{content:'';display:block}.mm-vertical .mm-panel{-webkit-transform:none !important;-moz-transform:none !important;-ms-transform:none !important;-o-transform:none !important;transform:none !important}.mm-vertical .mm-listview .mm-panel,.mm-listview .mm-vertical .mm-panel{display:none;padding:10px 0 10px 10px}.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after,.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after{border-color:transparent}.mm-vertical li.mm-opened>.mm-panel,li.mm-vertical.mm-opened>.mm-panel{display:block}.mm-vertical .mm-listview>li>.mm-next,.mm-listview>li.mm-vertical>.mm-next{height:40px;bottom:auto}.mm-vertical .mm-listview>li>.mm-next:after,.mm-listview>li.mm-vertical>.mm-next:after{top:16px;bottom:auto}.mm-vertical .mm-listview>li.mm-opened>.mm-next:after,.mm-listview>li.mm-vertical.mm-opened>.mm-next:after{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.mm-navbar{background:rgba(0,0,0,0.15);border-bottom:1px solid rgba(255,255,255,0.2);text-align:center;line-height:20px;height:40px;padding:0 40px;margin:0;position:absolute;top:0;left:0;right:0}.mm-navbar>*{display:block;padding:10px 0}.mm-navbar a,.mm-navbar a:hover{text-decoration:none}.mm-navbar .mm-title{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-navbar .mm-btn{box-sizing:border-box;width:40px;height:40px;position:absolute;top:0;z-index:1}.mm-navbar .mm-btn:first-child{padding-left:20px;left:0}.mm-navbar .mm-btn:last-child{text-align:right;padding-right:20px;right:0}.mm-panel .mm-navbar{display:none}.mm-panel.mm-hasnavbar .mm-navbar{display:block}.mm-listview,.mm-listview>li{list-style:none;display:block;padding:0;margin:0}.mm-listview{font:inherit;font-size:14px;line-height:20px}.mm-listview a,.mm-listview a:hover{text-decoration:none}.mm-listview>li{position:relative}.mm-listview>li>a,.mm-listview>li>span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:inherit;display:block;padding:10px 10px 10px 20px;margin:0}.mm-listview>li>a.mm-arrow,.mm-listview>li>span.mm-arrow{padding-right:50px}.mm-listview>li:not(.mm-divider):after{content:'';border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;color:rgba(255,255,255,0.2);left:0;right:0;bottom:0}.mm-listview .mm-next{background:rgba(3,2,1,0);width:50px;padding:0;position:absolute;right:0;top:0;bottom:0;z-index:2}.mm-listview .mm-next:before{content:'';border-left-width:1px;border-left-style:solid;display:block;position:absolute;color:rgba(255,255,255,0.2);top:0;bottom:0;left:0}.mm-listview .mm-next+a,.mm-listview .mm-next+span{margin-right:50px}.mm-listview .mm-next.mm-fullsubopen{width:100%}.mm-listview .mm-next.mm-fullsubopen:before{border-left:none}.mm-listview .mm-next.mm-fullsubopen+a,.mm-listview .mm-next.mm-fullsubopen+span{padding-right:50px;margin-right:0}.mm-menu>.mm-panel>.mm-listview{margin:0 -20px}/*.mm-menu>.mm-panel>.mm-navbar+.mm-listview{margin-top:-20px}*/.mm-listview .mm-inset{list-style:inside disc;padding:0 10px 15px 40px;margin:0}.mm-listview .mm-inset>li{padding:5px 0}.mm-listview .mm-divider{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-size:10px;text-transform:uppercase;text-indent:20px;line-height:25px}.mm-listview .mm-spacer{padding-top:40px}.mm-listview .mm-spacer>.mm-next{top:40px}.mm-listview .mm-spacer.mm-divider{padding-top:25px}.mm-prev:before,.mm-next:after,.mm-arrow:after{content:'';border:2px solid transparent;display:inline-block;width:8px;height:8px;margin:auto;position:absolute;top:0;bottom:0;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.mm-prev:before{border-right:none;border-bottom:none;left:23px}.mm-next:after,.mm-arrow:after{border-top:none;border-left:none;right:23px}.mm-menu{background:#004990;border-color:rgba(255,255,255,0.2);color:#fff}.mm-menu .mm-navbar>*,.mm-menu .mm-navbar a{color:#fff200}.mm-menu .mm-navbar .mm-btn:before,.mm-menu .mm-navbar .mm-btn:after{border-color:rgba(255,255,255,0.15)}.mm-menu .mm-listview{border-color:rgba(255,255,255,0.2)}.mm-menu .mm-listview>li .mm-next:after,.mm-menu .mm-listview>li .mm-arrow:after{border-color:rgba(255,255,255,0.8)}.mm-menu .mm-listview>li a:not(.mm-next){-webkit-tap-highlight-color:rgba(255,255,255,0.5);tap-highlight-color:rgba(255,255,255,0.5)}.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu .mm-listview>li.mm-selected>span{background:rgba(255,255,255,0.5)}.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next,.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel{background:rgba(0,55,108,0.8)}.mm-menu .mm-divider{background:rgba(0,55,108,0.8)}.mm-page{box-sizing:border-box;position:relative}.mm-slideout{-webkit-transition:-webkit-transform .4s ease;-ms-transition:-ms-transform .4s ease;transition:transform .4s ease}html.mm-background .mm-page{background:#fff}#mm-blocker{background:rgba(3,2,1,0);display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999}html.mm-opened #mm-blocker,html.mm-blocking #mm-blocker{display:block}.mm-menu.mm-offcanvas{display:none}.mm-menu.mm-current{display:block}.mm-menu{width:80%;min-width:140px;max-width:440px}html.mm-opening .mm-slideout{-webkit-transform:translate(80%, 0);-moz-transform:translate(80%, 0);-ms-transform:translate(80%, 0);-o-transform:translate(80%, 0);transform:translate(80%, 0)}@media all and (max-width: 175px){html.mm-opening .mm-slideout{-webkit-transform:translate(140px, 0);-moz-transform:translate(140px, 0);-ms-transform:translate(140px, 0);-o-transform:translate(140px, 0);transform:translate(140px, 0)}}@media all and (min-width: 550px){html.mm-opening .mm-slideout{-webkit-transform:translate(440px, 0);-moz-transform:translate(440px, 0);-ms-transform:translate(440px, 0);-o-transform:translate(440px, 0);transform:translate(440px, 0)}}em.mm-counter{font:inherit;font-size:14px;font-style:normal;text-indent:0;line-height:20px;display:block;margin-top:-10px;position:absolute;right:45px;top:50%}em.mm-counter+a.mm-next{padding-left:40px}em.mm-counter+a.mm-next+a,em.mm-counter+a.mm-next+span{margin-right:90px}em.mm-counter+a.mm-fullsubopen{padding-left:0}.mm-vertical>.mm-counter{top:12px;margin-top:0}.mm-vertical.mm-spacer>.mm-counter{margin-top:40px}.mm-nosubresults>.mm-counter{display:none}.mm-menu em.mm-counter{color:rgba(255,255,255,0.15)}

.mm-page {
	box-sizing: border-box;
	position: relative;
}
.mm-slideout {
	-webkit-transition: -webkit-transform $mm_transitionDuration $mm_transitionFunction;
	-ms-transition: -ms-transform $mm_transitionDuration $mm_transitionFunction;
	transition: transform $mm_transitionDuration $mm_transitionFunction;
}
html.mm-background .mm-page {
	background: #fff;
}
#mm-blocker {
	background: rgba( 255, 255, 255, 0.2 );
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
}
html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
		display: block;
} 
.mm-menu.mm-offcanvas {
		display: none;
		position: fixed;
}
.mm-menu.mm-current {
		display: block;
		position: fixed;
}

/* CSS Document */

.afti-short-timeline li {
	border-bottom: 1px solid lightgrey;
	padding: 10px 0;
	color: #777;
}
.afti-short-timeline li p {
	border-top: 1px solid lightgrey;
	display: block;
	overflow: hidden;
	margin: 10px 0 0 0;
	width: 95%;
	padding: 2.5%;
	background: #d1d1d1;
}
.afti-short-timeline li p a {
	text-decoration: none;
	color: #666;
}
.afti-short-timeline li:first-child {
	padding-top: 0;
}
.afti-short-timeline li:last-child {
	border-bottom: none;
}
.footer-linkthroughs {
	text-align: center;
	display: block;
	width: 100%;
}
.footer-linkthroughs a {
	display: inline-block;
}
.footer-address {
	list-style: none;
	display: block;
	overflow: hidden;
	text-align: center;
	margin: 0 0 10px 0;
}
.footer-address li {
	display: inline;
	color: #777;
}
.atfi_timestamp {
	display: none !important;
}

#menu-main-navigation a {
	text-decoration: none;
}
.header-assets span {
	display: none;
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
}
.header-assets:hover>a span {
	display: block;
}


/*--------------------------------------------------------------
  Cookie Notice
--------------------------------------------------------------*/

#cookie-law {
	background-color: #004589;
	color: #fff;
	padding: 1em;
	text-align: center;
}
#cookie-law p {
	margin: 0;
	line-height: 1.3;
}
#cookie-law a {
	color: #fff200;
}

/*--------------------------------------------------------------
  
--------------------------------------------------------------*/

.site-stamp {
	margin-top: 10px;
}
a img {
	border: none;
	outline: none;
}
.fr {
	float: right;
}

.current-results-title {
	width: 100%;
	border-bottom: 1px solid #DFDFDF;
	padding: 0 0 6px 0;
}

.results-title,
.fixtures-title {
	margin-bottom: 40px;
}

.framework-content img {
	width: auto;
	max-width: 100%;
	height: auto;
}

a.child-categories-link {
	text-decoration: none !important;
}
a .child-categories p {
	color: #777;
}
.content-image {
	margin: 20px 20px 20px 0;
	overflow: hidden;
	float: left;
}
.hidden-page-id {
	display: none;
	visibility: hidden;
}

/*--------------------------------------------------------------
  Sidebar Navigation
--------------------------------------------------------------*/

#menu-framework-navigation a {
	text-decoration: none;
}
.child-categories {
	display: block;
	overflow: hidden;
	margin: 0 0 4% 0;
}
.child-categories h2 {
	margin-bottom: 2%;
}
.child-categories figure {
	float: left;
	padding: 4px;
	border: 1px solid #A9A9A9;
	height: auto;
	margin-right: 2%;
}
.parent-content {
	width: 100%;
	overflow: hidden;
	margin-bottom: 6%;
}
.parent-content img {
	float: left;
}
.parent-content p {
	margin: 4% 0 0 0;
}
.extra-extend-nav {
	overflow: hidden;
	list-style: none;
	width: 100%;
	display: block;
	position: relative;
}
.extra-extend-nav li {
	float: left;
	width: 12%;
	height: 100%;
}
.extra-extend-nav li a {
	color: #005bb5;
	margin-right: 1%;
	text-align: left;
}

/*--------------------------------------------------------------
  Global Styles
--------------------------------------------------------------*/

body {
	font-size: 16px;
	line-height: 1.5;
	font-family: 'Nunito', Arial, sans-serif;
	background-color: #fff200;
	color: #474747;
}
.site {
	background-color: #fff;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 15px; 
	padding-right: 15px;
}
.container:after {
	content: "";
	display: table;
	clear: both;
}
.container--flex  {
	display: flex;
	flex-direction: row;
}
.container--flex > .row {
	display: flex; 
	flex-direction: row;
	width: 100%;
}
.row {
	position: relative;
}
.group:after {
	content: "";
	display: table;
	clear: both;
}
hr {
	background-color: #d7d7d7;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

@media only screen and (min-width: 1024px) {
	.main-column,
	.sidebar--widgets {
		padding-top: 30px;
	}
	.page-template-page-singular-php .main-column,
	.page-template-page-singular-php .sidebar--widgets,
	.single .main-column,
	.single .sidebar--widgets {
		padding-top: 0;
	}
}

/*--------------------------------------------------------------
  WordPress Bits
--------------------------------------------------------------*/

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption	img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0; 
}
.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
  Grid
--------------------------------------------------------------*/

.row { 
	margin-left:-15px; 
	margin-right:-15px; 
	zoom:1; 
}
.row.columns{ 
	margin-left:auto; 
	margin-right:auto; 
}
.row:after{
	content:"";
	display:table;
	clear:both;
}
.row:before,
.row:after{ content:""; display:table; }
.row:after{ clear:both; }

.row .columns {
	float:left;
	box-sizing:border-box;
	padding-left:15px;
	padding-right:15px;
	min-height:1px;
	width:100%;
}

.row .columns[class*=push-],
.row .columns[class*=pull-]{ position:relative }

.row .columns.xsmall-1 { width:8.3333333333% }
.row .columns.xsmall-2 { width:16.6666666667% }
.row .columns.xsmall-3 { width:25% }
.row .columns.xsmall-4 { width:33.3333333333% }
.row .columns.xsmall-5 { width:41.6666666667% }
.row .columns.xsmall-6 { width:50% }
.row .columns.xsmall-7 { width:58.3333333333% }
.row .columns.xsmall-8 { width:66.6666666667% }
.row .columns.xsmall-9 { width:75% }
.row .columns.xsmall-10 { width:83.3333333333% }
.row .columns.xsmall-11 { width:91.6666666667% }
.row .columns.xsmall-12 { width:100% }
.row .columns.xsmall-push-1 { left:8.3333333333% }
.row .columns.xsmall-push-2 { left:16.6666666667% }
.row .columns.xsmall-push-3 { left:25% }
.row .columns.xsmall-push-4 { left:33.3333333333% }
.row .columns.xsmall-push-5 { left:41.6666666667% }
.row .columns.xsmall-push-6 { left:50% }
.row .columns.xsmall-push-7 { left:58.3333333333% }
.row .columns.xsmall-push-8 { left:66.6666666667% }
.row .columns.xsmall-push-9 { left:75% }
.row .columns.xsmall-push-10 { left:83.3333333333% }
.row .columns.xsmall-push-11 { left:91.6666666667% }
.row .columns.xsmall-push-12 { left:100% }
.row .columns.xsmall-pull-1 { right:8.3333333333% }
.row .columns.xsmall-pull-2 { right:16.6666666667% }
.row .columns.xsmall-pull-3 { right:25% }
.row .columns.xsmall-pull-4 { right:33.3333333333% }
.row .columns.xsmall-pull-5 { right:41.6666666667% }
.row .columns.xsmall-pull-6 { right:50% }
.row .columns.xsmall-pull-7 { right:58.3333333333% }
.row .columns.xsmall-pull-8 { right:66.6666666667% }
.row .columns.xsmall-pull-9 { right:75% }
.row .columns.xsmall-pull-10 { right:83.3333333333% }
.row .columns.xsmall-pull-11 { right:91.6666666667% }
.row .columns.xsmall-pull-12 { right:100% }
@media all and (min-width: 480px) {
	.row .columns.small-1 { width:8.3333333333% }
	.row .columns.small-2 { width:16.6666666667% }
	.row .columns.small-3 { width:25% }
	.row .columns.small-4 { width:33.3333333333% }
	.row .columns.small-5 { width:41.6666666667% }
	.row .columns.small-6 { width:50% }
	.row .columns.small-7 { width:58.3333333333% }
	.row .columns.small-8 { width:66.6666666667% }
	.row .columns.small-9 { width:75% }
	.row .columns.small-10 { width:83.3333333333% }
	.row .columns.small-11 { width:91.6666666667% }
	.row .columns.small-12 { width:100% }
	.row .columns.small-push-1 { left:8.3333333333% }
	.row .columns.small-push-2 { left:16.6666666667% }
	.row .columns.small-push-3 { left:25% }
	.row .columns.small-push-4 { left:33.3333333333% }
	.row .columns.small-push-5 { left:41.6666666667% }
	.row .columns.small-push-6 { left:50% }
	.row .columns.small-push-7 { left:58.3333333333% }
	.row .columns.small-push-8 { left:66.6666666667% }
	.row .columns.small-push-9 { left:75% }
	.row .columns.small-push-10 { left:83.3333333333% }
	.row .columns.small-push-11 { left:91.6666666667% }
	.row .columns.small-push-12 { left:100% }
	.row .columns.small-pull-1 { right:8.3333333333% }
	.row .columns.small-pull-2 { right:16.6666666667% }
	.row .columns.small-pull-3 { right:25% }
	.row .columns.small-pull-4 { right:33.3333333333% }
	.row .columns.small-pull-5 { right:41.6666666667% }
	.row .columns.small-pull-6 { right:50% }
	.row .columns.small-pull-7 { right:58.3333333333% }
	.row .columns.small-pull-8 { right:66.6666666667% }
	.row .columns.small-pull-9 { right:75% }
	.row .columns.small-pull-10 { right:83.3333333333% }
	.row .columns.small-pull-11 { right:91.6666666667% }
	.row .columns.small-pull-12 { right:100% }
}
@media all and (min-width: 768px) {
	.row .columns.medium-1 { width:8.3333333333% }
	.row .columns.medium-2 { width:16.6666666667% }
	.row .columns.medium-3 { width:25% }
	.row .columns.medium-4 { width:33.3333333333% }
	.row .columns.medium-5 { width:41.6666666667% }
	.row .columns.medium-6 { width:50% }
	.row .columns.medium-7 { width:58.3333333333% }
	.row .columns.medium-8 { width:66.6666666667% }
	.row .columns.medium-9 { width:75% }
	.row .columns.medium-10 { width:83.3333333333% }
	.row .columns.medium-11 { width:91.6666666667% }
	.row .columns.medium-12 { width:100% }
	.row .columns.medium-push-1 { left:8.3333333333% }
	.row .columns.medium-push-2 { left:16.6666666667% }
	.row .columns.medium-push-3 { left:25% }
	.row .columns.medium-push-4 { left:33.3333333333% }
	.row .columns.medium-push-5 { left:41.6666666667% }
	.row .columns.medium-push-6 { left:50% }
	.row .columns.medium-push-7 { left:58.3333333333% }
	.row .columns.medium-push-8 { left:66.6666666667% }
	.row .columns.medium-push-9 { left:75% }
	.row .columns.medium-push-10 { left:83.3333333333% }
	.row .columns.medium-push-11 { left:91.6666666667% }
	.row .columns.medium-push-12 { left:100% }
	.row .columns.medium-pull-1 { right:8.3333333333% }
	.row .columns.medium-pull-2 { right:16.6666666667% }
	.row .columns.medium-pull-3 { right:25% }
	.row .columns.medium-pull-4 { right:33.3333333333% }
	.row .columns.medium-pull-5 { right:41.6666666667% }
	.row .columns.medium-pull-6 { right:50% }
	.row .columns.medium-pull-7 { right:58.3333333333% }
	.row .columns.medium-pull-8 { right:66.6666666667% }
	.row .columns.medium-pull-9 { right:75% }
	.row .columns.medium-pull-10 { right:83.3333333333% }
	.row .columns.medium-pull-11 { right:91.6666666667% }
	.row .columns.medium-pull-12 { right:100% }
}
@media all and (min-width: 1024px) {
	.row .columns.large-1 { width:8.3333333333% }
	.row .columns.large-2 { width:16.6666666667% }
	.row .columns.large-3 { width:25% }
	.row .columns.large-4 { width:33.3333333333% }
	.row .columns.large-5 { width:41.6666666667% }
	.row .columns.large-6 { width:50% }
	.row .columns.large-7 { width:58.3333333333% }
	.row .columns.large-8 { width:66.6666666667% }
	.row .columns.large-9 { width:75% }
	.row .columns.large-10 { width:83.3333333333% }
	.row .columns.large-11 { width:91.6666666667% }
	.row .columns.large-12 { width:100% }
	.row .columns.large-push-1 { left:8.3333333333% }
	.row .columns.large-push-2 { left:16.6666666667% }
	.row .columns.large-push-3 { left:25% }
	.row .columns.large-push-4 { left:33.3333333333% }
	.row .columns.large-push-5 { left:41.6666666667% }
	.row .columns.large-push-6 { left:50% }
	.row .columns.large-push-7 { left:58.3333333333% }
	.row .columns.large-push-8 { left:66.6666666667% }
	.row .columns.large-push-9 { left:75% }
	.row .columns.large-push-10 { left:83.3333333333% }
	.row .columns.large-push-11 { left:91.6666666667% }
	.row .columns.large-push-12 { left:100% }
	.row .columns.large-pull-1 { right:8.3333333333% }
	.row .columns.large-pull-2 { right:16.6666666667% }
	.row .columns.large-pull-3 { right:25% }
	.row .columns.large-pull-4 { right:33.3333333333% }
	.row .columns.large-pull-5 { right:41.6666666667% }
	.row .columns.large-pull-6 { right:50% }
	.row .columns.large-pull-7 { right:58.3333333333% }
	.row .columns.large-pull-8 { right:66.6666666667% }
	.row .columns.large-pull-9 { right:75% }
	.row .columns.large-pull-10 { right:83.3333333333% }
	.row .columns.large-pull-11 { right:91.6666666667% }
	.row .columns.large-pull-12 { right:100% }
}
@media all and (min-width: 1210px) {
	.row .columns.xlarge-1 { width:8.3333333333% }
	.row .columns.xlarge-2 { width:16.6666666667% }
	.row .columns.xlarge-3 { width:25% }
	.row .columns.xlarge-4 { width:33.3333333333% }
	.row .columns.xlarge-5 { width:41.6666666667% }
	.row .columns.xlarge-6 { width:50% }
	.row .columns.xlarge-7 { width:58.3333333333% }
	.row .columns.xlarge-8 { width:66.6666666667% }
	.row .columns.xlarge-9 { width:75% }
	.row .columns.xlarge-10 { width:83.3333333333% }
	.row .columns.xlarge-11 { width:91.6666666667% }
	.row .columns.xlarge-12 { width:100% }
	.row .columns.xlarge-push-1 { left:8.3333333333% }
	.row .columns.xlarge-push-2 { left:16.6666666667% }
	.row .columns.xlarge-push-3 { left:25% }
	.row .columns.xlarge-push-4 { left:33.3333333333% }
	.row .columns.xlarge-push-5 { left:41.6666666667% }
	.row .columns.xlarge-push-6 { left:50% }
	.row .columns.xlarge-push-7 { left:58.3333333333% }
	.row .columns.xlarge-push-8 { left:66.6666666667% }
	.row .columns.xlarge-push-9 { left:75% }
	.row .columns.xlarge-push-10 { left:83.3333333333% }
	.row .columns.xlarge-push-11 { left:91.6666666667% }
	.row .columns.xlarge-push-12 { left:100% }
	.row .columns.xlarge-pull-1 { right:8.3333333333% }
	.row .columns.xlarge-pull-2 { right:16.6666666667% }
	.row .columns.xlarge-pull-3 { right:25% }
	.row .columns.xlarge-pull-4 { right:33.3333333333% }
	.row .columns.xlarge-pull-5 { right:41.6666666667% }
	.row .columns.xlarge-pull-6 { right:50% }
	.row .columns.xlarge-pull-7 { right:58.3333333333% }
	.row .columns.xlarge-pull-8 { right:66.6666666667% }
	.row .columns.xlarge-pull-9 { right:75% }
	.row .columns.xlarge-pull-10 { right:83.3333333333% }
	.row .columns.xlarge-pull-11 { right:91.6666666667% }
	.row .columns.xlarge-pull-12 { right:100% }
}

/*--------------------------------------------------------------
  Typography
--------------------------------------------------------------*/

p {
	margin-bottom: 1.5em;
	font-weight: normal;
}

/* Lists
--------------------------------------------------------------*/
ul, ol {
	margin: 1em 0 1.5em 1em;
	padding-left: 1em;
}
nav ul,
nav ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 0.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Headers
--------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	clear: both;
	color: #2a2a2a;
	font-weight: 700;
	margin: 0 0 0.5em;
	line-height: 1.3;
}
h1 small {
	color: #e6d301;
	margin-top: -5px;
}

/* Links
--------------------------------------------------------------*/

a {
	color: #005bb4;
	text-decoration: none;
}
a:visited {
	color: #0f75d9;
}
a:hover {
	cursor: pointer;
}
a:hover,
a:focus,
a:active {
	color: #00407f; 
}
a:focus {
	outline: thin dotted; 
}
a:hover,
a:active {
	outline: 0; 
}

p a {
	text-decoration: underline;
}
p a:hover {
	text-decoration: none;
}

/* Buttons
--------------------------------------------------------------*/
.button,
a.button,
input[type="reset"],
input[type="submit"] {
	display: inline-block;
	border: none;
	border-radius: 5px;
	font-family: 'Nunito', sans-serif;

	background: #fff200; 
	color: #000;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none; 
	text-align: center; 
	white-space: normal;

	padding: 0.8em 1em;

	-webkit-transition: all 0.2s;
	transition: all 0.2s; 
}
.button:hover ,
a.button:hover ,
input[type="reset"]:hover ,
input[type="submit"]:hover {
	background: #0053a5;
	color: #fff200;
	text-decoration: none;
}

.button--alt,
a.button--alt {
	background: #0053a5;
	color: #fff200;
}

.button--alt:hover,
a.button--alt:hover {
	background: #004283;
	color: #fff200;
}

.button + .button {
	margin-left: 2em;
}

/*--------------------------------------------------------------
  Masthead
--------------------------------------------------------------*/

.masthead {
	border-top: 6px solid #fff200;
}
.masthead img {
	display: block;
}

/* Logo
--------------------------------------------------------------*/

.masthead__logo {
	display: block; 
	margin: 10px auto; 
	float: left; 
	width: 130px;
}
.eveque-logo {
	padding: 8px 0;
	text-align: left;
	display: block;
}
.eveque-logo img {
	width: 65px;
}

@media all and (min-width: 768px) {
	.masthead__logo {
		width: 173px;
		margin: 20px 0;
	}
	.eveque-logo {
		padding: 10px 20px;
		float: left;
		background-color: #0053a5; 
		text-align: center;
		box-shadow: inset 0px 2px 1px 0px rgba(0, 0, 0, 0.24);
	}
	.eveque-logo img {
		width: 110px;
		margin: 0 auto;
	}
}
@media all and (min-width: 1024px) {
	.eveque-logo {
		float: none;
		margin-left: auto; 
	}
}


/* Top Navigation
--------------------------------------------------------------*/

.masthead__links {
	display: flex;
	font-size: 14px;
	font-size: .875rem;
}
.masthead__links .menu li {
	float: left;
}
.masthead__links .menu a {
	line-height: 2;
	color: #474747;
	-webkit-transition: all 0.2s;
	transition: all 0.2s; 
}
.masthead__links .menu--resources {
	border-left: 1px solid #d7d7d7;
	display: none;
}
.masthead__links .menu--resources li {
	border-right: 1px solid #d7d7d7;
}
.masthead__links .menu--resources li a {
	display: block;
	padding: 25px;
}
.masthead__links .menu--resources li a:hover {
	background-color: #f1f1f1;
}
.masthead__links .menu--social {
	border-right: 1px solid #d7d7d7;
	border-left: 1px solid #d7d7d7;
	padding: 10px 15px;
	margin-left: auto;
}
.masthead__links .menu--social a {
	color: #014b93;
}
.masthead__links .menu--social li {
	border: none;
	margin: 0 10px;
}

@media all and (max-width: 767px) {
	.masthead__links .menu--social {
		margin-right: 37px;
	}
}
@media all and (min-width: 768px) {
	.masthead__links .menu--social {
		padding: 25px 15px;
	}
	.masthead__links {
		float: right;
	} 
	.masthead__links .menu--resources {
		display: block;
	} 
	.masthead__links .menu--social {
		border-left: none;
	}
}

/* Main Navigation
--------------------------------------------------------------*/
.masthead__nav-bar {
	background-color: #005bb4; 
	box-shadow: inset 0px 2px 1px 0px rgba(0, 0, 0, 0.24);
}
	.masthead__nav-bar .container {
		display: flex;
		flex-flow: row wrap;
	}
#primary-nav {
	position: relative;
	display: none;
}
#primary-nav a {
	display: block;
	line-height: 1.4;
	color: #ffffff;
	-webkit-transition: all 0.2s;
	transition: all 0.2s; 
}
#primary-nav a:hover {
	text-decoration: none;
}
#primary-nav ul {
	list-style: none;
	padding: 0;
}
#primary-nav > .menu > li > a {
	line-height: 3.5;
	padding: 0 15px;
}
#primary-nav .menu > li {
	display: inline-block;
	position: relative;
	font-size: 14px;
	font-size: 0.875rem;
	-webkit-transition: all 0.2s;
	transition: all 0.2s; 
}

#primary-nav .menu > li:hover {
	background-color: #fff200;
}
#primary-nav .menu > li:hover > a {
	color: #474747;
}
#primary-nav .menu > li:hover > ul {
	display: block;
	opacity: 1;
}
#primary-nav .menu > li > ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	background-color: #fff;
	border-top: 6px solid #fff200;
	border-bottom: 6px solid #fff200; 
	box-shadow: 0px 2px 4px 0px rgba(28, 17, 9, 0.2);
	width: 280px;
	z-index: 100;
	opacity: 0;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s; 
}
#primary-nav .menu > li > ul > li {
	padding: 15px 20px;
	border-bottom: 1px solid #e5e5e5;
	font-size: 14px;
	font-size: 0.875rem;
}
#primary-nav .menu > li > ul > li.current-menu-item > a,
#primary-nav .menu > li > ul li.current-menu-item > a {
	color: #0053a5;
}
#primary-nav .menu > li ul li.current-menu-item > a:before {
    display: inline-block;
    font-family: 'FontAwesome';
    content:"\f105";
    margin-right: 5px;
    margin-left: -10px;
}
#primary-nav .menu > li > ul > li ul {
	margin-top: 0.5em;
	margin-left: 0;
}
#primary-nav .menu > li > ul > li > a {
	font-weight: 700;
}
#primary-nav .menu > li > ul a {
	color: #474747;
}
#primary-nav .menu > li > ul a:hover {
	text-decoration: underline;
	color: #000;
}
#primary-nav .menu > li > ul > li:last-child {
	border-bottom: none;
}
#primary-nav .menu > li > ul li:last-child a {
	border-bottom: none;
}
#primary-nav .menu > li > ul ul a {
	padding: 0.1875rem 0.9375rem;
	font-size: 0.8125rem;
}
#primary-nav .menu > li.menu-item-19518 > ul {
	width: 18.125rem;
}

.toggle-menu {
	display: block;
	width: 30px;
	text-align: center;
	-webkit-transition: all 0.4s; /* Safari */
	transition: all 0.4s;
	line-height: 1;
	float: right;
	padding: 10px 0;
	position: absolute;
	right: 10px;
	top: 6px;
}
.toggle-menu span {
	display: block;
}
.toggle-menu .line {
	height: 3px;
	margin-bottom: 3px;
	border-radius: 3px;
	background-color: #004589; 
}
.toggle-menu .text {
	line-height: 1.2; 
	text-transform: uppercase; 
	font-size: 8px;
	letter-spacing: 2px;
	margin-bottom: 0;
	font-weight: 700;
	color: #004589;
}
.toggle-menu .line:last-child {
	margin-bottom: 0 
}
.toggle-menu.hidden {
	display: none;
}

@media all and (min-width: 768px) {
	.toggle-menu {
		position: static;
		float: right;
		order: 3;
		margin-left: auto;
	}
	.toggle-menu .line {
		background-color: #fff200;
	}
	.toggle-menu .text {
		color: #fff200;
	}
}
@media all and (min-width: 1024px) {
	.toggle-menu {
		display: none;
	}
	#primary-nav {
		display: block;
		margin-left: -15px;
	}
	#primary-nav .menu--resources {
		display: none;
	}
	#primary-nav .menu > li.mmenu-only {
		display: none;
	}
}
@media all and (min-width: 1170px) {
	#primary-nav > .menu > li > a {
		padding: 0 20px;
	}
}


/* Breadcrumb
--------------------------------------------------------------*/

.breadcrumbs {
	font-size: 12px;
	font-size: 0.75rem;
	padding: 10px 0;
	line-height: 1;
	color: #4a4a4a; 
	background-color: #f1f1f1;
	margin-bottom: 20px;
}
.breadcrumbs a {
	color: #005bb4; 
	text-decoration: none;
}
.breadcrumbs a:hover {
	text-decoration: underline;
}
@media all and (min-width: 1024px) {
	.breadcrumbs {
		margin-bottom: 30px;
	}
}

/*--------------------------------------------------------------
  Hero Banner
--------------------------------------------------------------*/

.hero {
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.hero__slider {
	background: #004589 url('../images/hero-01.jpg') 0 center no-repeat;
	background-size: cover;
	position: relative;
	padding: 40px 1px;
}
.hero__slider h2 {
	color: #fff;
	font-size: 1.8em;
	margin: 0 0 0.5em;
	line-height: 1.2;
}
.hero__slider .button {
	margin-bottom: 20px;
	font-size: 14px;
	font-size: .875rem;
}
.hero__about {
	background-color: #004589;
	padding: 50px 0;
}
.hero__about p {
	margin: 0.5em 0 .75em;
	max-width: 38ch;
}
.hero__about a {
	color: #fff200;
	display: inline-block;
	border-bottom: 1px solid #fff200;
}
.slide {
	justify-content: center;
}
.slide__content {
	font-size: 16px;
	font-size: 1rem;
	color: #FFF;
	padding-left: 1px;
}
.slider-controls {
	position: absolute;
	bottom: 30px;
}
@media all and (min-width: 768px) {
	.hero__slider,
	.hero__about {
		padding: 60px 0;
	}
	.hero__slider h2 {
		font-size: 2.2em;
	}
}
@media all and (min-width: 1024px) {
	.slider-controls {
		bottom: 0;
	}
	.hero {
		background: #004589 url('../images/hero-01.jpg') 0 center no-repeat;
		background-size: cover;
	}
	.hero__slider {
		background: none;
		margin: 80px 0;
		padding: 0;
	}
	.slide__content {
		font-size: 18px;
		font-size: 1.125rem;
		max-width: 55ch;
	}
	.hero__slider .button {
		font-size: 18px;
		font-size: 1.125rem;
	}
	/*.hero .button {
		margin-top: 30px;
	}*/
	.hero .row {
		display: flex;
		flex-direction: row; 
		min-height: 480px;
	}
	.hero__about {
		display: flex;
		flex-direction: column;
		justify-content: center;
		position: relative;
		z-index: 1;
		background: url('../images/hero-curve.png') 0 center no-repeat; 
		background-size: auto 100%;
		padding: 80px 0;
		flex: 1;
	}
	.hero__about .text {
		max-width: 280px;
		margin-left: auto;
	}
	.hero__about:after {
		content:"";
		background-color:#004589;
		position: absolute;
		height: 100%;
		width: 4000px;
		left: 100%;
		z-index: -1;
	}
	.hero__about {
		font-size: 18px;
		font-size: 1.125rem;
	}
}

/*--------------------------------------------------------------
  
--------------------------------------------------------------*/

.messages {
	width: 100%;
	margin: 30px auto;
}
.title1,
.title2 {
	text-align: center;
	margin-bottom: 0;
	font-family: Nunito, arial, sans-serif;
}
.title1 {
	font-size: 48px;
	font-size: 3rem;
	color: #005bb5;
	line-height: 1.2;
}
.title2 {
	font-size: 36px;
	font-size: 2.25rem;
	color: #e6d301;
}

/*--------------------------------------------------------------
  Homepage
--------------------------------------------------------------*/

a.download-tab-link {
	text-decoration: none;
}
a .downloads-tab {
	width: 100%;
	background: #005bb5;
	padding: 6% 3%;
	margin-top: 3%;
	text-align: center;
	color: white;
	font-family: Nunito, arial, sans-serif;
	font-size: 1.8em;
}
.ll1 h2 {
	text-align: center;
}
p.title-wp a {
	font-size: 1.5em;
	background;
	padding: 0 0 1% 0;
}
p.cta-title {
	color: #005BB5;
	font-family: Nunito, arial, sans-serif;
	font-size: 1.7em;
	margin: -1% 0 0 0;
}
p.cta-title span {
	display: block;
	margin: -10% 5% 1% -13%;
	color: white;
	font-size: 1em;
	background: #005bb5;
	border: 4px solid rgb(223, 223, 223);
	text-align: center;
	float: left;
	border-radius: 109px;
	padding: 15px 5px;
	text-shadow: 1px 1px 2px rgb(1, 57, 112);
}

a.readmore,
span.readmore {
	display: block;
	width: 40%;
	float: left;
	background-color: #005bb5;
	background: -moz-linear-gradient( top, #005bb5 0%, #005bb5);
	background: -webkit-gradient( linear, left top, left bottom, from(#005bb5), to(rgb(6, 81, 155)));
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	border: 1px solid #005bb5;
	-moz-box-shadow: 0px 1px 3px rgba(000, 000, 000, 0.5), inset 0px 0px 2px rgba(255, 255, 255, 0.7);
	-webkit-box-shadow: 0px 1px 3px rgba(000, 000, 000, 0.5), inset 0px 0px 2px rgba(255, 255, 255, 0.7);
	box-shadow: 0px 1px 3px rgba(000, 000, 000, 0.5), inset 0px 0px 2px rgba(255, 255, 255, 0.7);
	text-shadow: 0px -1px 0px rgba(000, 000, 000, 0.4), 0px 1px 0px rgba(255, 255, 255, 0.3);
	text-decoration: none;
	text-align: center;
	padding: 5px;
	color: white;
}

.featured-content {
	background-color: #f1f1f1;
	padding: 30px 0;
}
@media only screen and (min-width: 768px) {
	.featured-content,
	.logos {
		padding: 40px 0;
	}
}
@media only screen and (min-width: 1024px) {
	.featured-content,
	.logos {
		padding: 60px 0;
	}
	.featured-content .row {
		display: flex;
	}
}

@media only screen and (min-width: 480px) and (max-width: 1023px) {
	.home .featured-content__sidebar .latest-news {
		order: 2;
		width: calc(50% - 20px);
		margin-bottom: 0;
	}
	.home .featured-content__sidebar .latest-news__list li:last-child {
		margin-bottom: 0;
	}
	.home .featured-content__sidebar .page-link {
		order: 1;
		margin-right: 20px;
		width: 50%;
	}
	.home .featured-content__sidebar {
		display: flex;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.home .featured-content__sidebar {
		margin: 30px 0 0;
	}
}

/*--------------------------------------------------------------
  Logos
--------------------------------------------------------------*/

.logos {
	padding: 30px 0;
	list-style: none;
	margin: 0;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}
.logos li:first-child {
	text-align: left;
}
.logos img {
	display: block;
	align-self: center;
}
.logos li {
	flex-grow: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 8px 16px;
}
@media only screen and (min-width: 960px) {
	.logos li {
		margin: 0;
	}
}

/*--------------------------------------------------------------
  Page Links (CTA)
--------------------------------------------------------------*/

.page-link {
	display: flex;
	flex-direction: column;
	margin: 0 auto 30px;
}
.page-link.catalogue-link {
	margin-bottom: 0;
}
.page-links .row {
	display: flex;
	flex-direction: column;
}
.page-links .row:before {
	content: none;
}
.page-link img {
	display: none;
}
.page-link img,
.page-link a {
	display: block;
}
.page-link a:hover {
	cursor: pointer;
}
.page-link a:hover .page-link__title {
	background-color: #004589;
	color: #fff200;
}
.page-link i {
	float: right;
	line-height: 1.5;
	font-weight: 700;
}
.page-link__title {
	display: block;
	background-color: #fff200;
	color: #222;
	font-size: 14px;
	font-size: .875rem;
	font-weight: 700;
	padding: 8px 10px;
	transition: all 0.2s;
}
.page-link--alt .page-link__title {
	background-color: #004589;
	color: #fff200;
}
.page-link--alt a:hover .page-link__title {
	background-color: #fff200;
	color: #222;
}
.page-link__intro {
	background-color: #fff;
	padding: 14px 10px;
	font-size: 14px;
	font-size: .875rem;	
	flex: 1;
}
.page-link__intro p {
	margin: 0;
}
@media all and (min-width: 480px) {
	.page-links .row {
		flex-flow: row wrap;
	}	
	.page-link img,
	.page-link a {
		display: block;
	}
}
@media all and (min-width: 480px) and (max-width: 767px) {
	.featured-content__blocks .page-link {
		flex-direction: row;
	}
	.featured-content__blocks .page-link a {
		width: 50%;
	}
	.featured-content__blocks .page-link__intro {
		width: 50%;
		display: flex;
		padding: 20px;
	}
}
@media only screen and (min-width: 768px) {
	.parent-page__intro {
		margin-bottom: 80px;
	}
	.home .page-link,
	.page-link.catalogue-link {
		margin-bottom: 0;
	}
}
@media only screen and (min-width: 960px) {
	.page-link__title {
		padding: 8px 14px;
		font-size: 16px;
		font-size: 1rem;
	}
	.page-link__intro {
		padding: 14px;
	}
}

/*--------------------------------------------------------------
  Parent Page (with page internal page links)
--------------------------------------------------------------*/

.parent-page__header,
.parent-page__intro {
	text-align: center;
}
.parent-page__intro {
	margin: 0 auto 50px;
	font-size: 16px;
	font-size: 1rem;
	max-width: 65ch;
}
@media only screen and (min-width: 768px) {
	.parent-page__intro {
		margin-bottom: 80px;
	}
}

/*--------------------------------------------------------------
  Latest News
--------------------------------------------------------------*/

.latest-news {
	font-size: 15px;
	font-size: .9375rem;
	line-height: 1.4;
	max-width: 440px;
	margin: 0 auto 20px;
}
.latest-news time {
	font-size: 75%;
}
.latest-news a {
	display: block;
}
.latest-news a:hover {
	text-decoration: underline;
}
.latest-news__header {
	font-weight: 700;
	display: block;
}
.latest-news__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.latest-news__list li {
	margin: 1em 0;
}
.latest-news__list li:after {
	display: block;
	content: "";
	width: 16px;
	height: 2px;
	background-color: #c7c7c7;
	margin-top: 15px;
}
.latest-news__list li:last-child:after {
	display: none;
}


/*--------------------------------------------------------------
  Latest Tweets
--------------------------------------------------------------*/

.latest-tweets {
	width: 29%;
	padding: 1%;
	background: #e9e9e9;
	border: 1px solid #d9d9d9;
	margin-top: 15px;
	overflow: hidden;
	float: left;
	clear: left;
}
.latest-tweets h2 {
	margin-bottom: 15px;
	text-align: center;
}
.tweet {
	float: left;
	width: 97%;
	margin: 2% 0;
	background: #fff;
	border: 1px solid #d9d9d9;
	padding: 1%;
}

/*--------------------------------------------------------------
  Website Footer
--------------------------------------------------------------*/

.footer-wrap {
	background: #fff200;
	padding: 20px 0;
	margin-top: 40px;
	color: #282828;
	font-size: 13px;
	font-size: 0.8125rem;
}
.home .footer-wrap {
	margin-top: 0;
}
.site-footer img {
	width: 140px;
	height: 30px;
	margin-bottom: 10px;
}
.site-footer p {
	margin: 0 0 0.5em;
}
.site-footer__copyright {
	color: #716d2c;
	margin-bottom: 20px;
}
.site-footer__nav {
	margin-bottom: 30px;
}
.site-footer__nav ul {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	line-height: 1.7;
}
.site-footer__nav li {
	margin-right: 20px;
	width: calc(50% - 20px);
	line-height: 2;
}
.site-footer__nav a {
	color: #484848;
	text-decoration: underline;
}
.site-footer__nav a:hover {
	color: #000;
	text-decoration: none;
}
@media only screen and (min-width: 480px) {
	.site-footer__nav li {
		width: calc(33.333% - 20px);
	}	
}
@media only screen and (min-width: 768px) {
	.footer-wrap {
		padding: 50px 0;
	}
}
@media only screen and (min-width: 1024px) {
	.site-footer__copyright {
		text-align: left;
		margin-bottom: 0;
	}
	.site-footer__company {
		text-align: right;
	}
	.site-footer__nav {
		margin-bottom: 0;
	}
	.site-footer__nav li {
		line-height: 1.5;
	}
}

/*--------------------------------------------------------------
  Blog
--------------------------------------------------------------*/

.blog ul {
	margin-bottom: 10px;
}
.blog ul li {
	font-size: 1.1em;
	color: #666;
	font-weight: bold;
	list-style-position: inside;
	padding-left: 10px;
}

.default-left-col ul {
	margin-bottom: 10px;
}
.default-left-col ul li {
	font-size: 1.1em;
	color: #666;
	font-weight: bold;
	list-style-position: inside;
	padding-left: 10px;
}
.slideshowlink {
	display: none;
}
.contact-cta {
	background: #005bb5;
	color: #fff;
	font-size: 1.2em;
	padding: 10px 15px;
	text-decoration: none;
	display: block;
	margin-top: 15px;
	width: 85%;
}
.post-list .news-post {
	border: 1px solid #d7d7d7;
	background: #f7f7f7;
	padding: 20px;
	margin-bottom: 20px;
	font-size: 16px;
	font-size: 1rem;
}
.post-list .news-post__content {
	max-width: 70ch;
}
.post-list .news-post h2 {
	font-size: 20px;
	font-size: 1.25rem;
	margin-bottom: 0;
}
.post-list .news-post time {
	font-size: 80%;
	color: #6a6a6a;
}
.post-list .news-post p {
	margin: 0.5em 0 0.25em;
}
.blog article h2 a {
	text-decoration: none;
}
.blog article h2 {
	padding-top: 0;
}
.blog article a {
	color: #005bb5;
}
.blog article time {
	margin-bottom: 10px;
}

/*--------------------------------------------------------------
  Single Post
--------------------------------------------------------------*/

.the-post__header {
	margin-bottom: 40px;
}
.the-post__header h1 {
	font-size: 38px;
	font-size: 2.375rem;
	line-height: 1.2;
}
.the-post__header time {
	color: #e6d301;
	font-size: 18px;
	font-size: 1.125rem;
}

/*--------------------------------------------------------------
  Contact Page
--------------------------------------------------------------*/

.contact-cta:hover {
	background: #333
}

ul.contact-numbers {
	margin: 0;
	padding: 0;
	list-style: none;
}
.contact-numbers li {
	list-style-type: none;
	margin: 25px 0;
}
.contact-numbers p {
	margin: 0 0 0.5em;
}

p.contact-bold {
	font-weight: bold;
	color: #005bb5;
}
.field-wrap {
	float: left;
	width: 100%;
	margin: 9px 0;
}
.field-title {
	float: left;
	min-width: 142px;
	font-size: 1.2em;
}
.cf-field {
	overflow: hidden;
}
.cf-field input {
	border: 1px solid rgb(182, 182, 182);
	padding: 5px 1%;
	width: 97%;
}
.cf-field textarea {
	border: 1px solid rgb(182, 182, 182);
	padding: 5px 1%;
	width: 97%;
}
.submit-button {
	float: left;
	margin-left: 22%;
	width: 77.5%;
}
.submit-button input {
	background: #005bb5;
	color: white;
	font-family: 'Nunito', sans-serif;
	font-size: 1.4em;
	font-weight: bold;
	border: none;
	padding: 10px 0;
	width: 100%;
	cursor: pointer;
}
.submit-button input:hover {
	background: #333;
}
.contact-form {
	margin: 40px 0;
	overflow: hidden;
}
.contact-right {
	margin-top: 30px;
}


/* Get Directions  
--------------------------------------------------------------*/

.get-directions {
	margin-bottom: 20px;
}
.searchform > div,
.get-directions .group {
	display: flex;
}
.searchform input[type="text"],
.get-directions input[type="text"] {
	border-radius: 4px 0 0 4px;
	border-right: none;
}
.searchform .button,
.get-directions .button {
	border-radius: 0 4px 4px 0;
	padding: 0 0.5em;
	background: #0053a5;
	color: #fff200;
	font-size: 14px;
	font-size: .875rem;
	width: 160px;
}


/* Find your local British Athletics Club  
--------------------------------------------------------------*/


/* Address  
--------------------------------------------------------------*/
.address li {
	list-style-type: none;
	font-size: 1.1em;
	color: rgb(126, 126, 126);
	line-height: 1.7em;
}
.address {
	margin-top: 37px;
}
.address h2 {
	margin-bottom: 10px;
}
.bgimage1 {
	background: url(../images/slider-bg-1.png) center no-repeat;
	opacity: 0.4;
	position: absolute;
	top: 14px;
	left: -166px;
	width: 256px;
	height: 274px;
	z-index: -1;
}
.bgimage2 {
	background: url(../images/slider-bg-2.png) center no-repeat;
	opacity: 0.3;
	position: absolute;
	top: 14px;
	right: -166px;
	width: 256px;
	height: 274px;
	z-index: -1;
}
.page-content {
	position: relative;
}


/*--------------------------------------------------------------
  Forms
--------------------------------------------------------------*/

input[type="text"],
input[type="search"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="file"],
textarea,
select {
	color: #4a4a4a;
	border: 1px solid #d7d7d7;
	background: #FFFFFF;
	line-height: normal;
	display: block;
	width: 100%;
	padding: 4px 14px;
	border-radius: 4px; 
	height: 44px;
	transition: all 0.2s;
	font-size: 14px;
	font-size: .875em;
}
input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="file"]:focus,
textarea:focus,
select:focus {
	border-color: #0053a5;
	background-color: #f1f1f1;
	outline: none;
}
textarea {
	height: 130px;
    line-height: 1.4;
    padding: 8px 10px;
    resize: vertical;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-position: right 50%;
	background-repeat: no-repeat;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDZFNDEwNjlGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDZFNDEwNkFGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0NkU0MTA2N0Y3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0NkU0MTA2OEY3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuGsgwQAAAA5SURBVHjaYvz//z8DOYCJgUxAf42MQIzTk0D/M+KzkRGPoQSdykiKJrBGpOhgJFYTWNEIiEeAAAMAzNENEOH+do8AAAAASUVORK5CYII=);
	padding: .5em;
	padding-right: 1.5em;
	border-radius: 4px;
}

/*--------------------------------------------------------------
  Footer Ads
--------------------------------------------------------------*/
.foot-adverts {
	position: relative;
	width: 100%;
	overflow: hidden;
	float: left;
	display: block;
	margin: 30px 0 30px 0;
	clear: both;
}
.foot-adverts .advert {
	float: left;
	display: block;
	width: 45%;
}
.foot-adverts .advert:first-child {
	margin-right: 10%;
}
.foot-adverts img {
	width: 100%;
	height: auto;
}


/*--------------------------------------------------------------
  Page Banners
--------------------------------------------------------------*/
.framework-content {
	overflow: hidden;
	margin-top: 20px;
	clear: left;
	float: left;
	width: 100%;
}
.framework-content figure {
	margin: 0;
}
.framework-content .banner-images {
	float: left;
	clear: left;
	width: 100%;
	margin: 0 0 20px 0;
}
.framework-content .banner-images img {
	width: auto;
	max-width: 100%;
}
.framework-content .banner-images.two-images .banner-image {
	width: 48%;
	float: left;
}
.framework-content .two-images .banner-image:first-child {
	margin-right: 4%;
}
.framework-content .banner-images.one-image .banner-image {
	width: 100%;
	float: left;
}


/*--------------------------------------------------------------
  Date Menu
--------------------------------------------------------------*/

.child-submenu {
	margin: 10px 0 0;
	padding: 0;
	font-size: 14px;
	font-size: .875rem;
}
.child-submenu li {
	float: left;
	list-style: none;
	margin: 0 1em 0.5em 0;
}
.child-submenu a:hover {
	text-decoration: none;
}
.child-submenu a {
	text-decoration: underline;
}
.parent-page-link {
	font-size: 14px;
	font-size: .875rem;
	margin: 10px 0;
	text-decoration: underline;
}

/*--------------------------------------------------------------
  Results + Fixtures
--------------------------------------------------------------*/

#results-table a,
#fixtures-table a {
	display: inline-block;
	height: 16px;
	width: 16px;
	text-decoration: none;
	background: url(../images/download.gif) right no-repeat;
}
#results-table a span,
#fixtures-table a span {
	display: none;
}

#results-table,
#fixtures-table {
	width: 100%;
}

#results-table tr td,
#fixtures-table tr td {
	text-align: right;
}

#results-table tr td:first-child,
#fixtures-table tr td:first-child {
	width: 90%;
	text-align: left;
}

#results-table tr>.result-title,
#fixtures-table tr>.fixtures-title {
	font-size: 1.4em;
	font-weight: bold;
	color: #005bb5;
	padding: 20px 0 0 0;
}

#results-table tr:first-child>.result-title,
#fixtures-table tr:first-child>.fixtures-title {
	padding: 0;
}

.listings {
	font-size: 13px;
	font-size: 0.8125rem;
	margin-bottom: 40px;
}
.listings__section {
	border-radius: 8px;
	border: 1px solid #d7d7d7;
	overflow: hidden;
	margin-bottom: 20px;
}
.listings__header {
	padding: 10px;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
}
.listings__item {
	display: flex;
	flex-direction: row;
	width: 100%;
}
.listings__item:nth-child(2n) {
	background-color: #eaeaea;
}
.listings__item:hover {
	background-color: #fffcbf;
}
.listing-item__header {
	flex-grow: 1;
}
.listing-item__header,
.listing-item__file {
	padding: 10px;
}
.listing-item__file a {
	text-decoration: underline;
}

.google-map-styles {
	width: 100%;
	height: 200px;
	border: 0;
	margin: 0;
	padding: 0;
}


/* Sidebar
--------------------------------------------------------------*/

.searchform > div {
	flex-flow: row wrap;
}
.searchform label {
	display: block;
	width: 100%;
}
.searchform input[type="text"],
.searchform input[type="search"] {
	width: calc(100% - 80px);
}
.searchform input[type="submit"] {
	width: 80px;
	border-radius: 0 4px 4px 0;
	padding: 0 0.5em;
	font-size: 14px;
	font-size: .875rem;
	width: 80px;
}
.searchform input[type="text"]:focus + input[type="submit"],
.searchform input[type="search"]:focus + input[type="submit"] {
	background: #0053a5;
	color: #fff200;
}

.sidebar--news .widget-title {
	font-weight: 700;
}
.sidebar--news .widget {
	margin-bottom: 20px;
}

.widget_archive {
	border: 1px solid #eaeaea;
	font-size: 14px;
	font-size: .875rem;
	margin-bottom: 20px;
}
.widget_archive li:before {
    display: inline-block;
    font-family: 'FontAwesome';
    content:"\f105";
    margin-right: 5px;
}
.widget_archive a,
.widget_archive a:visited {
	text-decoration: none;
	color: #4a4a4a;
	display: inline;
}
.widget_archive a:hover {
	color: #000;
	text-decoration: underline;
}
.widget_archive li:not(:last-child) {
	margin-bottom: 5px;
}
.widget_archive ul {
	list-style: none;
	margin: 0;
	padding: 13px 10px;
}
.widget_archive .widget-title {
	background-color: #eaeaea;
	display: block;
	padding: 8px 10px;
}


.widget_recent_entries .post-date {
	font-size: 75%;
}
.widget_recent_entries ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget_recent_entries li {
	margin: 1em 0;
}
.widget_recent_entries li a {
	display: block;
}
.widget_recent_entries li:after {
	display: block;
	content: "";
	width: 16px;
	height: 2px;
	background-color: #c7c7c7;
	margin-top: 15px;
}
.widget_recent_entries li:last-child:after {
	display: none;
}


/* Page Navigation
--------------------------------------------------------------*/

.sidebar__menu {
	margin: 0 0 30px;
	display: none;
}
.sidebar__menu a {
	display: block;
}
.sidebar__menu a:hover {
	cursor: pointer;
	text-decoration: none;
}
.sidebar__menu li {
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.75;
}
.button.show-sidebar {
	padding: .3em .7em;
	margin-bottom: 30px;
	background-color: #f1f1f1;
	border: 1px solid #d7d7d7;
	font-size: 14px;
	font-size: .875rem;
}
.button.show-sidebar:hover, 
.button.show-sidebar:focus {
	border-color: #003972;
}
.page-menu > li {
	display: none;
}
.page-menu > li.current-menu-item,
.page-menu > li.current-page-ancestor,
.page-menu > li.current-menu-ancestor {
	display: block;
}
.page-menu > li.current-menu-item > a,
.page-menu > li.current-menu-item > .sub-menu > li > a,
.page-menu > li.current-menu-ancestor > a,
.page-menu > li.current-menu-ancestor > .sub-menu > li > a,
.page-menu > li.current-page-ancestor > a,
.page-menu > li.current-page-ancestor > .sub-menu > li > a {
	font-weight: 700;	
	font-size: 16px;
	font-size: 1rem;
}
.page-menu > li.current-page-ancestor > .sub-menu > li.menu-item-has-children,
.page-menu > li.current-menu-item > .sub-menu > li.menu-item-has-children {
	margin-bottom: 20px;
}
.page-menu > li.current-menu-item > a {
	color: #3a3a3a;
}
.page-menu > li.current-menu-ancestor > a, 
.page-menu > li.current-page-ancestor > a {
	color: #005bb4;
}
.page-menu > li.current-menu-ancestor > a:before, 
.page-menu > li.current-page-ancestor > a:before {
	content: "<";
	display: inline-block;
	margin-right: 0.3em;
}
.page-menu > li ul {
	margin: 0;
}
.page-menu > li.current-menu-item > .sub-menu,
.page-menu > li.current-menu-ancestor > .sub-menu,
.page-menu > li.current-page-ancestor > .sub-menu {
	margin: 0.75em 0 0;
}
.page-menu > li.current-menu-item > .sub-menu a,
.page-menu > li.current-menu-ancestor > .sub-menu a,
.page-menu > li.current-page-ancestor > .sub-menu a {
	padding: 5px 10px;
	background-color: #eaeaea;
	color: #3a3a3a;
	margin-bottom: 2px;
}
.page-menu > li.current-menu-item > .sub-menu ul ul a,
.page-menu > li.current-menu-ancestor > .sub-menu ul ul a,
.page-menu > li.current-page-ancestor > .sub-menu ul ul a {
	padding-left: 15px;
	background-color: #f7f7f7;
}
.page-menu > li.current-menu-item > .sub-menu ul ul a:before,
.page-menu > li.current-menu-ancestor > .sub-menu ul ul a:before,
.page-menu > li.current-page-ancestor > .sub-menu ul ul a:before {
    display: inline-block;
    font-family: 'FontAwesome';
    content:"\f105";
    margin-right: 5px;
}
.page-menu > li.current-menu-item > .sub-menu a:hover,
.page-menu > li.current-page-item > .sub-menu a:hover,
.page-menu > li.current-page-ancestor > .sub-menu a:hover,
.page-menu > li.current-menu-ancestor > .sub-menu a:hover {
	background-color: #ddd;
}
.page-menu > li.current-menu-item > .sub-menu > li > a,
.page-menu > li.current-menu-item > .sub-menu > li.current-menu-item > a,
.page-menu > li.current-menu-ancestor > .sub-menu > li > a,
.page-menu > li.current-menu-ancestor > .sub-menu > li.current-menu-item > a,
.page-menu > li.current-page-ancestor > .sub-menu > li > a,
.page-menu > li.current-page-ancestor > .sub-menu > li.current-menu-item > a {
	background-color: #005bb4;
	color: #fff;
}
.page-menu > li.current-menu-item > .sub-menu > li > a:hover,
.page-menu > li.current-menu-item > .sub-menu > li.current-menu-item > a:hover,
.page-menu > li.current-menu-ancestor > .sub-menu > li > a:hover,
.page-menu > li.current-menu-ancestor > .sub-menu > li.current-menu-item > a:hover,
.page-menu > li.current-page-ancestor > .sub-menu > li > a:hover,
.page-menu > li.current-page-ancestor > .sub-menu > li.current-menu-item > a:hover {
	background-color: #044c92;
	color: #fff;
}

.page-menu > li.current-menu-item > .sub-menu .current-menu-item > a,
.page-menu > li.current-menu-item > .sub-menu .current-menu-item > a:hover,
.page-menu > li.current-menu-ancestor > .sub-menu .current-menu-item > a,
.page-menu > li.current-menu-ancestor > .sub-menu .current-menu-item > a:hover,
.page-menu > li.current-page-ancestor > .sub-menu .current-menu-item > a,
.page-menu > li.current-page-ancestor > .sub-menu .current-menu-item > a:hover {
	background-color: #fff200;
} 
@media all and (min-width: 768px) {
	.sidebar__menu {
		display: block;
	}
	.button.show-sidebar {
		display: none;
	}
}

/* External/Widget Navigation
--------------------------------------------------------------*/

.small-right-col {
	float: right;
	width: 20%;
	padding-top: 3%;
	overflow: hidden;
}
.small-right-col ul li {
	list-style: none;
}
.small-right-col ul li a {
	color: #fff;
	display: block;
	background: #005bb5;
	border-bottom: 1px solid rgb(2, 67, 131);
	height: 100%;
	font-size: 1.5em;
	line-height: 2.5em;
	text-align: left;
	padding-left: 5%;
}
.small-right-col ul li ul li a {
	background: #004185;
	border-bottom: 1px solid #0059b9;
}
.small-right-col .sidebar-title {
	background: #005BB5;
	line-height: 2.5em;
	display: block;
	width: 98%;
	margin: 20px 0 10px 0;
	color: #fff;
	padding-left: 2%;
}
.small-right-col ul li ul li ul li a {
	color: #fff;
	background: #003873;
	border-bottom: 1px solid #004185;
}
.small-right-col .current_page_item a {
	color: yellow;
}
.small-right-col .current_page_item>ul li a {
	color: #fff !important;
}

.responder {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background: #090;
}

.links-widget {
	border: 1px solid #eaeaea;
	font-size: 14px;
	font-size: .875rem;
	margin-bottom: 20px;
}
.links-widget i {
	font-weight: 700;
}
.links-widget a,
.links-widget a:visited {
	text-decoration: none;
	color: #4a4a4a;
	display: inline;
}
.links-widget a:hover {
	color: #000;
	text-decoration: underline;
}
.links-widget li:not(:last-child) {
	margin-bottom: 5px;
}
.links-widget ul {
	list-style: none;
	margin: 0;
	padding: 13px 10px;
}
.links-widget__header {
	background-color: #eaeaea;
	display: block;
	padding: 8px 10px;
}
.links-widget--downloads {
	background-color: #fffcbf;
	border: none;
}
.links-widget--downloads .links-widget__header {
	background-color: #fff200;
}
.links-widget--results {
	background-color: #e7f3ff;
	border: none;
}
.links-widget--results .links-widget__header {
	background-color: #d6ebff;
}
.links-widget--results a {
	display: block;
}


/*--------------------------------------------------------------
  Sitemap
--------------------------------------------------------------*/

.wsp-pages-list {
	font-size: 14px;
	font-size: .875rem;
}
.wsp-pages-list .children {
	border-bottom: 5px solid #FFFFFF;
}
.wsp-pages-list,
.wsp-pages-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.wsp-pages-list a {
	display: block;
	color: #4a4a4a;
}
.wsp-pages-list a:hover {
	display: block;
	background-color: #fffcbf;
	color: #000;
}
.wsp-pages-list > li {
	display: block;
	border-bottom: 1px solid #e1e1e1;
}
.wsp-pages-list > li > a {
	background-color: #d1d1d1;
	color: #1a1a1a;
	padding: 5px 10px;
	font-weight: 700;	
	font-size: 16px;
	font-size: 1rem;
}
.wsp-pages-list > li > a:hover {
	background-color: #fff200;
}
.wsp-pages-list > li ul {
	margin: 0;
}
.wsp-pages-list > li > ul {
	background-color: #e1e1e1;
}
.wsp-pages-list > li > ul > li {
	border-bottom: 1px solid #f2f2f2;
}
.wsp-pages-list > li.page_item_has_children,
.wsp-pages-list > li:last-child,
.wsp-pages-list > li > ul > li.page_item_has_children,
.wsp-pages-list > li > ul > li:last-child,
.wsp-pages-list > li > ul > li > ul > li.page_item_has_children,
.wsp-pages-list > li > ul > li > ul > li:last-child {
	border: none;
}
.wsp-pages-list > li > ul > li > ul > li {
	border-bottom: 1px solid #fbfbfb;
}
.wsp-pages-list > li > ul > li > a {
	padding: 5px 10px;
	color: #3a3a3a;
}
.wsp-pages-list > li > ul > li > a {
}

.wsp-pages-list > li > ul > li > ul {
	background-color: #f2f2f2;
}
.wsp-pages-list > li > ul > li > ul ul {
	background-color: #fbfbfb;
	line-height: 1.8;
}
.wsp-pages-list > li > ul ul a {
	padding: 5px 10px;
}
.wsp-pages-list > li > ul ul ul a {
	padding-left: 20px;
}
.wsp-pages-list > li > ul ul ul ul a {
	padding-left: 30px;
}
.wsp-pages-list > li > ul ul ul ul ul a {
	padding-left: 40px;
}
.wsp-pages-list > li > ul ul a:before {
    display: inline-block;
    font-family: 'FontAwesome';
    content:"\f105";
    margin-right: 5px;
}

/*--------------------------------------------------------------
  Slick Carousel
--------------------------------------------------------------*/

.slick-slider {
    position: relative;
    display: flex;
    height: 100%;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: flex;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: flex;
    flex-direction: column;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-loading .slick-list
{
    background: #fff url('../ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/slick.eot');
    src: url('../fonts/slick.eot?#iefix') format('embedded-opentype'), url('../fonts/slick.woff') format('woff'), url('../fonts/slick.ttf') format('truetype'), url('../fonts/slick.svg#slick') format('svg');
}

.carousel-button {
	display: none;
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}
[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}
.slick-prev:before {
    content: '←';
}
[dir='rtl'] .slick-prev:before {
    content: '→';
}

.slick-next {
    right: -25px;
}
[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}
.slick-next:before {
    content: '→';
}
[dir='rtl'] .slick-next:before {
    content: '←';
}

/* Dots */
/*.slick-dotted.slick-slider {
    margin-bottom: 30px;
}*/

.slick-dots {
    /*position: absolute;
    bottom: -25px;*/
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    /*text-align: center;*/
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 12px;
    height: 12px;
    margin: 0;
    padding: 0;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-size: 6px;
    line-height: 12px;

    position: absolute;
    top: 0;
    left: 0;

    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #fff;

    content: '';
    text-align: center;

    /*opacity: .25;*/
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    /*opacity: .75;*/
    color: black;
    background-color: #fff200;
}




/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}
.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
}
.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.fancybox-opened {
	z-index: 9999;
}
.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-outer,
.fancybox-inner {
	position: relative;
}
.fancybox-inner {
	overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}
.fancybox-error {
	color: #444;
	font: 14px/20px "Open Sans", Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}
.fancybox-image,
.fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}
.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
	background-image: url('../images/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('../images/fancybox_loading.gif') center center no-repeat;
}
.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}
.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('../images/blank.gif');
	/* helps IE */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	z-index: 8040;
}
.fancybox-prev {
	left: 0;
}
.fancybox-next {
	right: 0;
}
.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}
.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}
.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}
.fancybox-nav:hover span {
	visibility: visible;
}
.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}


/* Overlay helper */

.fancybox-lock {
	overflow: hidden !important;
	width: auto;
}
.fancybox-lock body {
	overflow: hidden !important;
}
.fancybox-lock-test {
	overflow-y: hidden !important;
}
.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 9999;
	background: url('../images/fancybox_overlay.png');
}
.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}
.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}


/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Open Sans", Helvetica, Arial, sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}
.fancybox-opened .fancybox-title {
	visibility: visible;
}
.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}
.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent;
	/* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}
.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}
.fancybox-title-inside-wrap {
	padding-top: 10px;
}
.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

#nav>ul>li.make-me-smaller {
	width: 12%;
	font-size: 1em;
	line-height: 2.5em;
}

.responsive-iframe {
    position: relative;
    overflow: hidden;
    padding-top: 30%;
    margin-bottom: 40px;
}
.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/*Retina graphics!*/

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	#fancybox-loading,
	.fancybox-close,
	.fancybox-prev span,
	.fancybox-next span {
		background-image: url('../images/fancybox_sprite@2x.png');
		background-size: 44px 152px;
		/*The size of the normal image, half the size of the hi-res image*/
	}
	#fancybox-loading div {
		background-image: url('../images/fancybox_loading@2x.gif');
		background-size: 24px 24px;
		/*The size of the normal image, half the size of the hi-res image*/
	}
}

@media only screen and ( max-width: 960px) {
	.bgimage1,
	.bgimage2 {
		display: none;
	}
	#nav>ul>li.resultsfixtureslink>a {
		font-size: 0.9em;
		line-height: 4.2em;
	}
	.slider-background {
		min-height: inherit;
	}
}

@media only screen and (min-width: 768px) {
	#nav ul#menu-main-navigation li:hover>ul {
		display: block;
	}
}

@media only screen and (max-width: 768px) {
	#dynamic-news-sidebar label {
		display: block;
	}
	#nav>ul>li.make-me-smaller {
		text-align: center;
		width: 100%;
		padding: 0;
		margin: 0;
	}
	#nav>ul>li>ul {
		position: relative;
		padding: 0;
		margin: 0;
		top: 0;
	}
	.hp-ctas .featuredhpimage {
		display: none;
	}
	.foot-adverts .advert {
		float: left;
		display: block;
		width: 48%;
	}
	.foot-adverts .advert:first-child {
		margin-right: 4%;
	}
	.bgimage1,
	.bgimage2 {
		display: none;
	}
	.messages {
		width: 100%;
		margin: 30px auto;
	}
	.title1 {
		font-size: 4.8em;
		color: #005bb5;
		text-align: center;
		font-family: Nunito, arial, sans-serif;
		margin-bottom: 0;
		line-height: 50px;
	}
	.title2 {
		font-size: 3.6em;
		color: #e6d301;
		text-align: center;
		font-family: Nunito, arial, sans-serif;
	}
	.hp-video {
		width: 30%;
		padding: 1%;
		overflow: hidden;
		float: right;
	}
	.hp-v1 {
		float: left;
		text-align: center;
		padding: 10px 0;
	}
	.hp-v1 h1,
	.hp-v1 h2 {
		font-size: 1.8em;
		color: #005bb5;
		text-align: center;
		font-family: Nunito, arial, sans-serif;
	}
	.resources-hp {
		float: right;
		width: 30%;
	}
	.hp-v1 p {}
	.hp-v2 {
		width: 97%;
		background: #005bb5;
		padding: 5% 3%;
		margin-top: 10px;
		color: white;
		text-align: center;
		min-height: 171px;
	}
	.hp-v2 i {
		font-size: 2em;
		display: block;
		margin-top: 10px;
	}
	.hp-v2 p {
		color: white;
		font-family: Nunito, arial, sans-serif;
		font-size: 1.87em;
		margin: 0;
	}
	.hp-v2 img {
		width: 97%;
		margin: 0 auto;
	}
	.downloads-tab {
		width: 100%;
		background: #005bb5;
		padding: 4% 3%;
		margin-top: 3%;
		text-align: center;
		color: white;
		font-family: Nunito, arial, sans-serif;
		font-size: 1.87em;
		transition: all .5s ease-in-out;
		-moz-transition: all .5s ease-in-out;
		-webkit-transition: all .5s ease-in-out;
	}
	.downloads-tab:hover {
		background: rgb(3, 69, 134);
	}
	.ll1 h2 {
		text-align: center;
	}
	.hp-news {
		width: 64%;
		padding: 1%;
		overflow: hidden;
		float: right;
	}
	.hp-news li {
		float: left;
		width: 100%;
		margin-bottom: 15px;
		list-style-type: none;
		padding: 2%;
		background: rgb(243, 243, 243);
		display: none;
	}
	.hp-news li img {
		display: none;
	}
	li.hp-posts1 {
		width: 100%;
		margin-bottom: 15px;
		border-bottom: 1px dashed grey;
		padding: 0 0 15px 0;
		background: none;
		display: block;
	}
	li.hp-posts1 .hppost-thumbnail {
		float: left;
		margin-right: 2%;
		border: 3px solid #005bb5;
	}
	li.hp-posts1 img {
		display: block;
	}
	li.hp-posts4 {
		margin-right: 0!important;
	}
	p.title-wp a {
		font-size: 1.5em;
		padding: 0 0 1% 0;
	}
	p.date {}
	.cta-content {
		color: #777 !important;
	}
	a.more-news {
		background-color: #005bb5;
		background: -moz-linear-gradient( top, #ee7803 0%, #d56b02);
		background: -webkit-gradient( linear, left top, left bottom, from(#ee7803), to(#d56b02));
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		border: 1px solid #b95d00;
		-moz-box-shadow: 0px 1px 3px rgba(000, 000, 000, 0.5), inset 0px 0px 2px rgba(255, 255, 255, 0.7);
		-webkit-box-shadow: 0px 1px 3px rgba(000, 000, 000, 0.5), inset 0px 0px 2px rgba(255, 255, 255, 0.7);
		box-shadow: 0px 1px 3px rgba(000, 000, 000, 0.5), inset 0px 0px 2px rgba(255, 255, 255, 0.7);
		text-shadow: 0px -1px 0px rgba(000, 000, 000, 0.4), 0px 1px 0px rgba(255, 255, 255, 0.3);
		text-decoration: none;
		text-align: center;
		padding: 1.3% 4% 0% 4%;
		color: white;
		float: left;
	}
	.hp-ctas p {
		clear: both;
		margin: 19px 0 19px 0;
		width: 100%;
	}
	.hp-ctas {
		margin: 10px 0;
		font-size: 1.4em;
	}
	.hp-ctas a.readmore {
		float: none;
		clear: both;
		margin: 0 auto;
	}
	.hp-ctas li {
		float: left;
		width: 26.8%;
		margin-right: 3%;
		list-style-type: none;
		min-height: 142px;
		background: rgb(241, 241, 241);
		padding: 2%;
		border: 1px solid rgb(223, 223, 223);
		margin-bottom: 20px;
	}
	li.last-cta {
		margin-right: 0!important;
	}
	p.cta-title {
		font-family: Nunito, arial, sans-serif;
		font-size: 1.6em;
		margin: 0 auto;
		text-align: center;
		color: #005BB5;
	}
	p.cta-title span {
		display: block;
		margin: -10% auto 10px auto;
		color: white;
		font-size: .8em;
		background: #005bb5;
		border: 4px solid rgb(223, 223, 223);
		text-align: center;
		float: none;
		border-radius: 109px;
		padding: 15px 0px;
		text-shadow: 1px 1px 2px rgb(1, 57, 112);
		width: 30%;
	}
	a.readmore {
		display: block;
		width: 40%;
		float: left;
		background: -moz-linear-gradient( top, #ee7803 0%, #d56b02);
		background: -webkit-gradient( linear, left top, left bottom, from(#ee7803), to(#d56b02));
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		border: 1px solid #b95d00;
		-moz-box-shadow: 0px 1px 3px rgba(000, 000, 000, 0.5), inset 0px 0px 2px rgba(255, 255, 255, 0.7);
		-webkit-box-shadow: 0px 1px 3px rgba(000, 000, 000, 0.5), inset 0px 0px 2px rgba(255, 255, 255, 0.7);
		box-shadow: 0px 1px 3px rgba(000, 000, 000, 0.5), inset 0px 0px 2px rgba(255, 255, 255, 0.7);
		text-shadow: 0px -1px 0px rgba(000, 000, 000, 0.4), 0px 1px 0px rgba(255, 255, 255, 0.3);
		text-decoration: none;
		text-align: center;
		padding: 5px;
		color: white;
	}
	.latest-tweets {
		width: 29%;
		padding: 1%;
		background: #e9e9e9;
		border: 1px solid #d9d9d9;
		margin-top: 15px;
		overflow: hidden;
	}
	.latest-tweets h2 {
		margin-bottom: 15px;
		text-align: center;
	}
	.tweet {
		float: left;
		width: 97%;
		margin: 2% 0;
		background: #fff;
		border: 1px solid #d9d9d9;
		padding: 1%;
	}
	.blog {
		width: 100%;
	}
	.blog h2 {
		text-align: left;
		margin-bottom: 10px;
		padding-top: 3%;
	}
	.blog ul {
		margin-bottom: 10px;
	}
	.blog ul li {
		font-size: 1.1em;
		color: #666;
		font-weight: bold;
		list-style-position: inside;
		padding-left: 10px;
	}
	.default-left-col ul {
		margin-bottom: 10px;
	}
	.default-left-col ul li {
		font-size: 1.1em;
		color: #666;
		font-weight: bold;
		list-style-position: inside;
		padding-left: 10px;
	}
	.default-right-col {
		float: right;
		width: 27%;
		padding-top: 3%;
	}
	.slideshowlink {
		display: none;
	}
	.contact-cta {
		background: #005bb5;
		color: #fff;
		font-size: 1.2em;
		padding: 10px 15px;
		text-decoration: none;
		display: block;
		margin-top: 15px;
		width: 85%;
	}
	.blog article {
		border: 1px solid #eee;
		background: #fcfcfc;
		padding: 3%;
		overflow: hidden;
		margin-bottom: 15px;
	}
	.blog article h2 a {
		text-decoration: none;
	}
	.blog article h2 {
		padding-top: 0;
	}
	.blog article a {
		color: #005bb5;
	}
	.blog article time {
		margin-bottom: 10px;
	}
	.contact-cta:hover {
		background: #333
	}
	ul.contact-numbers {}
	.contact-numbers li {
		list-style-type: none;
		margin: 25px 0;
	}
	.contact-numbers p {
		margin-bottom: 5px;
	}
	p.contact-bold {
		font-weight: bold;
		color: #005bb5;
	}
	.field-wrap {
		float: left;
		width: 100%;
		margin: 9px 0;
	}
	.field-title {
		float: left;
		min-width: 142px;
		font-size: 1.2em;
	}
	.cf-field {
		overflow: hidden;
	}
	.cf-field input {
		border: 1px solid rgb(182, 182, 182);
		padding: 5px 1%;
		width: 97%;
	}
	.cf-field textarea {
		border: 1px solid rgb(182, 182, 182);
		padding: 5px 1%;
		width: 97%;
	}
	.submit-button {
		float: left;
		margin-left: 22%;
		width: 77.5%;
	}
	.submit-button input {
		background: #005bb5;
		color: white;
		font-family: 'Nunito', sans-serif;
		font-size: 1.4em;
		font-weight: bold;
		border: none;
		padding: 10px 0;
		width: 100%;
		cursor: pointer;
	}
	.submit-button input:hover {
		background: #333;
	}
	.contact-form {
		margin: 40px 0;
		overflow: hidden;
	}
	.contact-right {
		margin-top: 30px;
	}
	.collapseSlider {
		display: none;
	}
	.sliderExpanded .collapseSlider {
		display: block;
		color: rgb(255, 255, 255);
		cursor: pointer;
	}
	.sliderExpanded .expandSlider {
		display: none;
		color: rgb(255, 255, 255);
		cursor: pointer;
	}
	.expandSlider {
		color: rgb(255, 255, 255);
		cursor: pointer;
	}
	p.toggler {
		text-align: center;
		margin-top: 12px;
	}
	.postcode-hp {
		width: 100%;
		overflow: hidden;
		float: right;
	}
	.postcode-hp .postcodebut {
		width: 99%;
		height: 30px;
	}
	.postcode-hp .form-field {
		float: left;
		padding: 10px;
		width: 90%;
		margin-top: -17px;
		margin-bottom: 12px;
	}
	.local-club {
		background: #005bb5;
		color: white;
		font-family: 'Nunito', sans-serif;
		font-size: 1.4em;
		font-weight: bold;
		padding: 19px 0%;
		margin-top: 24px;
		overflow: hidden;
		text-align: center;
	}
	.local-club a {
		text-decoration: none;
		color: white;
	}
}

@media only screen and ( max-width:480px) {
	#missing-content {
		text-align: center;
	}
	#missing-content h2 {
		text-align: center !important;
	}
	#dynamic-news-sidebar label {
		display: inline-block;
	}
	.default-right-col h2 {
		text-align: center;
	}
	.hp-ctas a.readmore {
		float: float;
		clear: both;
		margin: 0 0 4px 0;
	}
	p.cta-title {
		font-family: Nunito, arial, sans-serif;
		font-size: 1.7em;
		margin: 4% 0 0 0;
	}
	p.cta-title span {
		display: block;
		margin: -6% 0% 4% 0%;
		color: white;
		font-size: 1em;
		background: #005bb5;
		border: 4px solid rgb(223, 223, 223);
		text-align: center;
		float: left;
		border-radius: 109px;
		padding: 15px 5px;
		text-shadow: 1px 1px 2px rgb(1, 57, 112);
	}
	.hp-ctas .featuredhpimage {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 30%;
		display: block;
	}
	.hp-ctas p {
		width: 80%;
	}
	.foot-adverts .advert {
		float: none;
		display: block;
		width: 100%;
	}
	.foot-adverts .advert:first-child {
		margin-bottom: 20px;
	}
	.address {
		text-align: center;
	}
	.responder {
		background: #C36;
	}
	.ngg-gallery-thumbnail {
		width: auto;
	}
	.ngg-gallery-thumbnail img {
		width: auto;
		height: auto;
	}
	.ngg-gallery-thumbnail-box {
		width: auto;
		height: auto;
	}
	#nav-toggle {
		text-align: center;
		background: #fff;
		margin: 0 auto;
		padding: 3% 0;
		display: block;
		width: 90%;
		text-decoration: none;
		font-size: 1.4em;
		font-weight: bold;
		font-family: 'Nunito', sans-serif;
		color: #005bb5;
		width: 100%;
	}
	header nav li a {
		display: block;
		width: 100%;
		text-align: center;
	}
	.logo {
		float: none;
		width: 70%;
		margin: 20px auto;
	}
	.header-assets {
		float: none;
		width: 100%;
		margin: 0 auto;
	}
	.header-assets p {
		text-align: center;
	}
	.title1 {
		font-size: 2em;
		line-height: 20px;
	}
	.title2 {
		font-size: 1.8em;
	}
	.hp-v1 {
		float: none;
		margin-bottom: 10px;
		width: 100%;
	}
	.hp-v2 {
		float: none;
		width: 100%;
	}
	.hp-news {
		width: 96%;
		padding: 2%;
		margin-bottom: 20px;
	}
	.hp-n2 {
		padding-top: 0;
	}
	.hp-ctas li {
		width: 96%;
		margin-bottom: 10px;
	}
	.hp-n2-button {
		width: 90%;
		padding: 6% 5%;
		margin-right: 0;
	}
	.latest-tweets {
		background: none;
		border: none;
		width: 100%;
		float: left;
		clear: left;
	}
	.tweet {
		width: 94%;
		float: none;
		margin-bottom: 10px;
		border: none;
		text-align: center;
		font-size: 1.4em;
	}
	.ll1 {
		float: none;
		width: 100%;
	}
	.page-nav ul {
		overflow: hidden;
		width: 100%;
	}
	.page-nav ul li {
		float: left;
		width: 100%;
	}
	ul.contact-numbers {
		text-align: center;
	}
	.parent-content img {
		float: none;
		display: block;
		width: 100%;
		height: auto;
	}
	.parent-content p {
		float: none;
		display: block;
		width: 100%;
	}
	.child-submenu li {
		float: none;
		display: block;
		text-align: center;
		margin-right: 0;
		line-height: 25px;
	}
	.fr {
		display: none;
	}
	#dynamic-news-sidebar {
		margin-top: -20px;
	}
	#dynamic-news-sidebar li a {
		text-align: center;
	}
	#dynamic-news-sidebar form {
		text-align: center;
	}
}