/* @group reset - eric myer reset v2.0 | 20110126
-----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Set tags and general classes
-----------------------------------------------------------------*/
body {
	background-color: #eee;
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	color: #000;
	line-height: 1.4;
	min-width: 320px;
}

a {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: underline;
}

h1 {
	font-weight: bold;
	font-size: 2.75rem;
}
h2 {
	font-family: 'Titillium Web', sans-serif;
	text-transform: uppercase;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

p {
	margin-bottom: 1rem;
}

img {
	display: block;
}

input, textarea {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	padding: 7px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-bottom: 7px;
	width: 300px;
}
input[type="file"] {
	border: 0;
	width: auto;
	padding: 3px;
}

div.required label:after {
	content: " *";
	color: red;
}

hr {
	border: 0;
	border-bottom: 1px solid #dee0e5;
	margin: 1.5rem 0;
}

sup {
		font-size: .75rem;
		vertical-align: super;
}

video {
	width: 100%;
	margin-bottom: 1.5rem;
	cursor: pointer;
}

.bold {
	font-weight: bold;
}
.italic {
	font-style: italic;
}

.has-error {
	color: #ff0000;
}

.left {
	float: left;
}
.right {
	float: right;
}
.clearing {
	clear: both;
}

/* Common (all pages)
-----------------------------------------------------------------*/
#mobile-nav-wrapper {
	position: fixed;
	top: 0;
	left: -300px;
	z-index: 10;
	width: 300px;
	height: 100%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	background-color: #3d414c;
	color: #fff;
}
#mobile-nav-wrapper.open {
	left: 0;
}
#mobile-nav-wrapper a {
	color: #fff;
}
#mobile-nav-wrapper a:hover {
	text-decoration: none;
}
#mobile-nav-wrapper p {
	padding: 1.75rem 0 0 12px;
}
#mobile-nav-wrapper > ul {
	margin-top: 25px;
	text-transform: uppercase;
}
#mobile-nav-wrapper ul ul {
	display: none;
	text-transform: none;
	background-color: #6f768a;
}
#mobile-nav-wrapper > ul > li {
	border-bottom: 1px solid #525766;
}
#mobile-nav-wrapper ul a {
	font-weight: 500;
	display: inline-block;
	padding: 12px;
}
#mobile-nav-wrapper ul li a:first-of-type {
	width: 238px;
	padding-right: 0;
}
#mobile-nav-wrapper .mobile-subnav-trigger {
	width: 46px;
	height: 46px;
	padding: 0;
	display: block;
	float: right;
	background: url('../images/arrow-down.png') center center no-repeat;
}
#mobile-nav-wrapper .mobile-subnav-trigger.opened {
	background: url('../images/arrow-up.png') center center no-repeat;
}
#mobile-nav-wrapper ul li ul li a {
	width: 288px !important;
}
#mobile-nav-wrapper ul a:hover {
	background-color: #2584d3;
}
#mobile-nav-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: block;
	min-width: 44px;
	height: 40px;
	text-align: center;
	background: url('../images/menu-close.png') top center no-repeat;
}

#viewport {
	position: relative;
	right: 0;
	top: 0;
	width: 100%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	overflow: hidden;
}
#viewport.open {
	right: -300px;
}

#page-wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: 1500px;
	background-color: #fff;
}

.content-wrapper {
	padding: 0 110px;
}

.banner {
	font-family: 'Titillium Web', sans-serif;
	background-color: #3d414c;
	color: #fff;
	padding: 10px 0;
}
.banner a {
	color: #fff;
}

header {
	background-image: url('../images/header-background.png');
	background-size: 100% 100%;
}
header .pad {
	padding: 10px 0;
}
header #logo {
	float: left;
	width: 253px;
	height: 63px;
	margin-top: 11px;
}
header #tagline {
	float: left;
	font-family: 'Titillium Web', sans-serif;
	line-height: 1.3;
	font-size: .875rem;
	font-style: italic;
	margin: 35px 0 0 12px;
}
header nav ul {
	float: right;
	font-family: 'Titillium Web', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	background-color: #72788d;
}
header nav > ul > li {
	display: inline-block;
	margin-left: 23px;
}
header nav ul li:first-of-type {
	margin-left: 0;
}
header nav > ul > li > a {
	display: inline-block;
	line-height: 5.25rem;
	min-height: 84px;
}
header nav a {
	color: #fefefe;
}
header nav a:hover {
	text-decoration: none;
}
header nav ul > li:hover > a {
	color: #00baf2;
}
header nav ul li ul {
	position: absolute;
	padding: 0 25px 10px 25px;
	margin-left: -25px;
	left: -9999rem;
	background-color: #72788d;
	z-index: 999;
	text-transform: none;
}
header nav ul li:hover ul {
	left: auto;
}
header nav ul li ul li a {
	display: block;
	padding: 10px 0;
}
header #mobile-nav-trigger {
	position: absolute;
	top: 20px;
	right: -9999rem; /* 20px */
	display: block;
	min-width: 39px;
	padding-top: 40px;
	text-align: center;
	background: url('../images/menu-trigger.png') top center no-repeat;
}
header #mobile-nav-trigger:hover {
	text-decoration: none;
}

header .banner .content-wrapper div:first-of-type {
	float: left;
	color: #72788d;
	/*text-transform: uppercase;*/
}
header .banner .content-wrapper div:last-of-type {
	float: right;
	font-size: .875rem;
}

.view-box-light, .view-box-dark, button {
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 25px;
	min-height: 25px;
	padding-right: 40px;
}
.view-box-light {
	color: #fff;
	background: url('../images/icon-right-arrow-light.png') right no-repeat;
}
.view-box-dark, button {
	color: #3d414c;
	background: url('../images/icon-right-arrow-dark.png') right no-repeat;
	float: right;
	margin-top: 1.25rem;
}
.view-box-light:hover, .view-box-dark:hover, button:hover {
	text-decoration: none;
	color: #00baf2;
	background-image: url('../images/icon-right-arrow-hover.png');
}
button {
	cursor: pointer;
	border: 0;
}

.main-content {
	margin: 45px 0;
}
.main-content ul {
	list-style-type: disc;
	margin-left: 1.125rem;
}
.main-content ol {
	list-style-type: decimal;
	margin-left: 1.125rem;
	line-height: 2rem;
}
.main-content .bold {
	font-weight: 500;
}

footer #accreditation-wrapper {
	border-top: 5px solid #dee0e5;
	padding-top: 20px;
}
footer #accreditation-wrapper img {
	display: inline-block;
	vertical-align: middle;
	margin: 0 45px 20px 0;
}
footer #accreditation-wrapper .view-box-dark {
	margin-top: 25px;
}
footer #connect-wrapper {
	background-color: #dee0e5;
	padding: 20px 0;
}
footer #connect-wrapper .view-box-dark {
	margin-top: 0;
}
footer #connect-wrapper > div > div {
	float: left;
	width: 33%;
}
footer #connect-wrapper > div > div:nth-of-type(2) p, #contact-details p {
	float: left;
}
footer #connect-wrapper input {
	border: 0;
}
footer #connect-wrapper textarea {
	border: 0;
	height: 11rem;
	margin-bottom: 1rem;
}
footer #connect-wrapper h3 {
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 1rem;
}
footer #social {
	margin-bottom: 0;
}
footer #social-mobile {
	margin-bottom: 10px;
}
footer #social img, footer #social-mobile img {
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
}
footer #social-mobile {
	display: none;
}
footer #connect-wrapper > div > div:nth-of-type(1) div {
	margin-bottom: 1rem;
}
footer #connect-wrapper > div > div:nth-of-type(2) > div > img, #contact-details img {
	float: left;
	margin: 0 15px 1rem 0;
}
footer .banner {
	line-height: 3.5rem;
}
footer .banner .content-wrapper img {
	float: left;
	width: 61px;
	height: 56px;
	margin-left: -80px;
}
footer .banner .content-wrapper ul {
	float: left;
	color: #dee0e5;
	text-transform: uppercase;
}
footer .banner .content-wrapper ul li {
	display: inline;
}
footer .banner .content-wrapper ul li a {
	color: #dee0e5;
}
footer .banner .content-wrapper ul li::after {
		content: ' | ';
}
footer .banner .content-wrapper ul li:last-of-type::after {
		content: '';
}
footer .banner .content-wrapper div {
	float: right;
	font-size: .875rem;
}
footer #connect-wrapper form {
	float: right;
	width: 315px;
}
footer #connect-wrapper #contact-wrapper {
	width: 280px;
	margin: 0 auto;
}
footer #connect-wrapper > div > div:nth-of-type(2) {
	position: relative;
}
footer #connect-wrapper .separator {
	position: absolute;
	width: 3px;
	top: 23%;
	bottom: 23%;
	background-color: #e8e9ed;
	overflow: hidden;
	right: 0;
}

/* Home page
-----------------------------------------------------------------*/
#home-slider {
	position: relative;
}
#home-slider img {
	width: 100%;
}
#home-slider .banner-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 532px;
}
#home-slider .banner-copy {
	position: absolute;
	bottom: 10px;
	left: 110px;
	font-family: 'Titillium Web', sans-serif;
	color: #fff;
	text-transform: uppercase;
	font-size: 2.5rem;
	font-weight: bold;
}
#home-slider .view-box-light {
	position: absolute;
	bottom: 22px;
	left: 410px;
}

#home video {
	margin-bottom: 0;
}

.grey-banner {
	font-family: 'Titillium Web', sans-serif;
	background-color: #72788d;
	color: #fff;
	padding: 22px 0;
	text-transform: uppercase;
	font-size: 1.375rem;
}
.blue-banner {
	font-family: 'Titillium Web', sans-serif;
	background-color: #2a52a4;
	color: #fff;
	padding: 22px 0;
}
.blue-banner div div {
	float: left;
	margin-right: 100px;
}

#home h2 {
	font-weight: 500;
	font-size: 1.125rem;
}

#home .main-content div:first-of-type {
	float: left;
	width: 50%;
	margin-right: 3%;
}
#home .main-content div:last-of-type {
	float: right;
	width: 47%;
}
#home .main-content div:last-of-type img {
	width: 100%;
}

/* Content pages
-----------------------------------------------------------------*/
.grey-bg {
	background-color: #dee0e5;
}

#image-banner {
	position: relative;
}
#image-banner img {
	width: 100%;
}
#image-banner .banner-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 352px;
}
#image-banner .banner-copy {
	position: absolute;
	bottom: 10px;
	left: 25px;
	font-family: 'Titillium Web', sans-serif;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.875rem;
	font-weight: 600;
}

#sub-nav {
	font-family: 'Titillium Web', sans-serif;
	text-transform: uppercase;
	background-color: #2a52a4;
	color: #fff;
	padding: 15px 0;
}
#sub-nav ul {
	float: right;
	margin-top: 1.375rem;
}
#sub-nav li {
	display: inline;
	margin-left: 8px;
	font-weight: 600;
}
#sub-nav a {
	color: #fff;
}

.attractor {
	clear: right;
	float: right;
	background-color: #2a52a4;
	border: 2px solid #fff; 
	outline: 2px solid #2a52a4;
	margin: 2px 2px 27px 32px;
	padding: 40px 0;
	width: 300px;
	color: #fff;
	font-size: 1.375rem;
	text-transform: uppercase;
	text-align: center;
}

#strategic-alliances-attractor {
	clear: right;
	float: right;
	border: 6px double #2a52a4; 
	padding: 30px 0;
	width: 296px;
	font-size: 1.375rem;
	text-transform: uppercase;
	text-align: center;
}
#strategic-alliances-attractor img {
	width: 264px;
	margin: 2rem auto;
}
#strategic-alliances-attractor .view-box-dark {
	float: none;
}

.content-full-image {
	width: 100%;
	margin: 2rem auto;
}
.content-limited-image {
	width: 100%;
	max-width: 550px;
	margin: 2rem auto;
}
.content-right-image {
	width: 50%;
	max-width: 300px;
	float: right;
	margin: 0 0 2rem 1rem;
}

.youtube-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin-bottom: 2rem;
}
.youtube-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Contact page
-----------------------------------------------------------------*/
#contact-form {
	width: 100%;
	max-width: 34rem;
}
#contact-form label {
	display: inline-block;
	width: 5rem;
}
#contact-form label#message-label {
	display: inline-block;
	width: auto;
	margin: .5rem 0 .5rem 0;
}
#contact-form textarea {
	width: 95%;
	height: 12rem;
}
#contact-form .form-group:last-of-type label {
	display: block;
	width: auto;
	margin: .5rem 0 .25rem 0;
}
#contact-form button {
	margin-right: 1rem;
}

#map-wrapper {
	position: relative;
}
#mapcanvas {
	width: 100%;
	height: 530px;
}
#get-directions {
	position: absolute;
	left: 15%;
	top: 50px;
	z-index: 9999;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	padding: .375rem 45px .375rem .75rem;
	line-height: 26px;
	min-height: 26px;
	border-radius: 8px;
	background: #2a52a4 url('../images/icon-world.png') right 10px center no-repeat;
}
#get-directions:hover {
	text-decoration: none;
}

#contact-details {
	margin: 2rem 0;
}
#contact-details div {
	float: left;
	margin-right: 40px;
}

/* Latest News pages
-----------------------------------------------------------------*/
#latest-news img {
	float: left;
	width: 250px;
	margin: 0 1.5rem 1.5rem 0;
}
#latest-news-article .main-content img {
	width: 100%;
	margin-bottom: 1.5rem;
}
#latest-news h2, #latest-news-article h2 {
	margin-bottom: 0;
}
#latest-news .date, #latest-news-article .date {
	color: #2a52a4;
	font-size: .875rem
}
#latest-news a, #latest-news-article a.back {
	color: #2a52a4;
	font-weight: bold;
}

/* Accreditations page, Strategic Alliances page
-----------------------------------------------------------------*/
.individual-item-wrapper {
	border-bottom: 1px solid #dee0e5;
	padding: 1.5rem 0;
}
.individual-item-wrapper br {
	display: block;
	margin: 0;
}
.individual-item-wrapper:last-of-type {
	border: 0;
}
.individual-item-wrapper div {
	float: left;
	margin-right: 1.25rem;
	width: 100px;
}
.individual-item-wrapper div img {
	margin: 0 auto;
	max-width: 100px;
}
.individual-item-wrapper p {
	display: table-cell;
}

/* Training page
-----------------------------------------------------------------*/
#training-image-banner {
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
}

/* Register page
-----------------------------------------------------------------*/
#register-form {
	width: 100%;
	max-width: 34rem;
}
#register-form label {
	display: inline-block;
	width: 5.5rem;
}
#register-form textarea {
	width: 100%;
	height: 12rem;
}
#register-form .form-group:last-of-type label {
	display: block;
	width: auto;
	margin-bottom: .25rem;
}

/* Error page
-----------------------------------------------------------------*/
.site-error {
	border-top: 1px solid #ccc;
	padding-top: 3.125rem;
	margin-bottom: 3.125rem;
}

/* Responsive Slides custom
-----------------------------------------------------------------*/
.rslides_nav {
	z-index: 3;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background: #fff; /* Fix for IE6-9 */
	opacity: 0;
	width: 20%;
	text-indent: -9999px;
	overflow: hidden;
	height: 100%;
}
.rslides_nav:hover {
	opacity: .60;
	background: url('../images/button-previous.png') no-repeat scroll left 50%;
}
.rslides_nav.next {
	left: auto;
	right: 0;
	background: url('../images/button-next.png') no-repeat scroll right 50%;
}

/* BookingBug widget
-----------------------------------------------------------------*/
#bookingbug-wrapper {
	margin: 30px 0 20px 0;
}
#bookingbug-wrapper iframe {
	width: 100% !important;
}

/* Media Queries
-----------------------------------------------------------------*/
@media screen and (max-width: 1410px) {
	.content-wrapper {
		padding: 0 50px;
	}
	footer .banner .content-wrapper img {
		display: none;
	}
	#home-slider .banner-copy {
		left: 50px;
	}
	#home-slider .view-box-light {
		left: 350px;
	}
	#home-slider .banner-overlay {
		left: -60px;
	}
}

@media screen and (max-width: 1230px) {
	header #tagline {
		display: none;
	}
	header nav > ul > li {
		margin-left: 18px;
	}
}

@media screen and (max-width: 1140px) {
	header {
		background: #fff;
	}
	header nav {
		display: none;
	}
	header #logo {
		margin: 1rem 0 2rem 0;
	}
	header #tagline {
		display: block;
		margin-top: 2.5rem;
	}
	header .banner .content-wrapper div:last-of-type {
		display: none;
	}
	header #mobile-nav-trigger {
		right: 20px;
	}
	#sub-nav ul {
		display: none;
	}
	.grey-bg {
		padding: 0;
	}
	#image-banner {
		overflow: hidden;
	}
	#image-banner .banner-copy {
		left: 50px;
		font-size: 1.75rem;
	}
	#image-banner img:first-of-type {
		width: 110%;
		margin-left: -5%;
	}
	
	footer #accreditation-wrapper .view-box-dark {
		float: none;
		margin: 1.25rem 0;
	}
	
	footer #connect-wrapper > div > div {
		width: 49%;
	}
	footer #connect-wrapper > div > div:first-of-type {
		display: none;
	}
	footer #connect-wrapper .separator:first-of-type {
		display: none;
	}
	footer #social-mobile {
		display: block;
	}
	
	footer .banner {
		line-height: 2.5rem;
	}
	footer .banner .content-wrapper {
		text-align: center;
	}
	footer .banner .content-wrapper ul {
		float: none;
	}
	footer .banner .content-wrapper div {
		float: none;
	}
	footer .banner .content-wrapper br {
		display: none;
	}
}

@media screen and (max-width: 1000px) {
	#image-banner img:first-of-type {
		width: 120%;
		margin-left: -10%;
	}
	#home-slider img:first-of-type {
		width: 130%;
		margin-left: -15%;
	}
	.attractor {
		width: 250px;
	}
	#strategic-alliances-attractor {
		display: none;
	}
}

@media screen and (max-width: 900px) {
	#image-banner img:first-of-type {
		width: 140%;
		margin-left: -20%;
	}
}

@media screen and (max-width: 790px) {
	header .banner {
		display: none;
	}
	
	.attractor {
		display: none;
	}
	
	#home .main-content div:first-of-type {
		width: 100%;
		margin: 0;
	}
	#home .main-content div:last-of-type {
		display: none;
	}
	
	.content-wrapper {
		padding: 0 25px;
	}
	.grey-bg {
		padding: 0;
	}
	#image-banner .banner-copy {
		left: 25px;
	}
	#image-banner img:first-of-type {
		width: 160%;
		margin-left: -30%;
	}
	
	#home-slider img:first-of-type {
		width: 150%;
		margin-left: -25%;
	}
	
	footer #connect-wrapper > div > div {
		float: none;
		width: 100%;
	}
	footer #connect-wrapper form {
		float: none;
		margin: 3rem auto 0 auto;
	}
	footer #connect-wrapper .separator {
		display: none;
	}
	footer .banner .content-wrapper ul {
		display: none;
	}
	
	footer #connect-wrapper form {
		width: 98%;
		margin: 3rem 0 0 0;
	}
	footer #connect-wrapper form input, footer #connect-wrapper form textarea {
		width: 98%;
	}
	footer #connect-wrapper #contact-wrapper {
		margin: 0;
	}
}

@media screen and (max-width: 630px) {
	#image-banner img:first-of-type {
		width: 200%;
		margin-left: -50%;
	}
	#home-slider img:first-of-type {
		width: 180%;
		margin-left: -40%;
	}
}

@media screen and (max-width: 520px) {
	#home-slider img:first-of-type {
		width: 200%;
		margin-left: -50%;
	}
	header #tagline {
		display: none;
	}
	#image-banner .banner-overlay {
		display: none;
	}
	#image-banner .banner-copy {
		background: #555;
		padding: 5px 10px;
		font-size: 1.625rem;
	}
	.content-right-image {
		float: none;
		width: 100%;
		margin: 2rem auto;
	}
}

@media screen and (max-width: 470px) {
	#home-slider .banner-overlay {
		display: none;
	}
	#home-slider .banner-copy {
		display: none;
	}
	#home-slider .view-box-light {
		display: none;
	}
	#image-banner img:first-of-type {
		width: 240%;
		margin-left: -70%;
	}
}

@media screen and (max-width: 420px) {
	header #logo {
		width: 200px;
		height: auto;
	}
}

@media screen and (max-width: 365px) {
	input, textarea {
		width: 95%;
	}
}