@charset "utf-8";

body {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 18px;
    background-color: #1f2e44;
    color: #000000;
    line-height: 24px;
}

/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}


/* IE 6 does not support max-width so default to width 100% */


/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	15;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/


@-webkit-keyframes spin {
	0%  {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}	
}

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}



.imgfade {
	opacity: 1.0;
	transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
}
.imgfade:hover {
	opacity: 0.8;
	transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border: 1px none #9FCB3F;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.red {
	background-color: #F42941;
}
.beige {
	background-color: #E9E0D6;
}


.white {
	background-color: #FFF;
}



.grey {
	background-color: #3D3D3F;
}

.greylt {
	background-color: #f6f7f8;
}
.greylt2 {
	background-color: #edeff0;
}
.greylt3 {
	background-color: #e4e6e8;
}
.greylt4 {
    background-color: #f0f2f4;
}


.blue {
	background-color: #1F2E44;
}
.blue2 {
	background-color: #364357;
}
.blue3 {
	background-color: #8f96a1;
}





.text-white {
	color: #FFF;
}
.text-blue {
	color: #1F2E44;
}


.text-center {
	text-align: center;
}
.link-white {
	color: #FFF;
	text-decoration: none;
}
.link-button-green {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #29ABA4;
	display: inline-block;
	font-weight: bold;
	font-size: 14px;
	padding-top: 8px;
	padding-right: 12px;
	padding-bottom: 8px;
	padding-left: 12px;
	margin-top: 5px;
	z-index: 100;
}
.link-button-green:hover {
    color: #FFFFFF;
    text-decoration: none;
    background-color: #354458;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    padding-top: 8px;
    padding-right: 12px;
    padding-bottom: 8px;
    padding-left: 12px;
    margin-top: 5px;
    line-height: normal;
}

.link-button-white {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #ffffff;
    font-size: 20px;
    line-height: 19px;
    font-weight: 600;
    padding: 14px;
}

.link-button-white:hover {
	color: #FFF;
	background-color: #1F2E44;
	border-top-color: #1F2E44;
	border-right-color: #1F2E44;
	border-bottom-color: #1F2E44;
	border-left-color: #1F2E44;
}

.link-button-grey {
    color: #FFF;
    text-decoration: none;
    background-color: #333333;
    display: inline-block;
    padding-top: 8px;
    padding-right: 12px;
    padding-bottom: 8px;
    padding-left: 12px;
    line-height: normal;
}

.link-button-grey:hover {
	background-color: #1f2e44;
	color: #FFF;
}
.link-button-red {
    color: #F42941;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #F42941;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    padding: 14px;
}
.link-button-red:hover {
	color: #364357;
	text-decoration: none;
	border: 1px solid #364357;
}

.link-button-red2 {
    color: #F42941;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #F42941;
    font-size: 20px;
    line-height: 19px;
    font-weight: 600;
    padding: 14px;
}
.link-button-red2:hover {
	color: #ffffff;
	text-decoration: none;
	border: 1px solid #ffffff;
}



.link-white:hover {
	color: #333;
	text-decoration: none;
}


*::-webkit-input-placeholder {
    color: #000000;
}
*:-moz-placeholder {
    /* FF 4-18 */
    color: #000000;
}
*::-moz-placeholder {
    /* FF 19+ */
    color: #000000;
}
*:-ms-input-placeholder {
    /* IE 10+ */
    color: #000000;
}


input:required {
  background-color: #ffffff;
}



.link-rotate {
	-webkit-transition: -webkit-transform .8s ease-out;
    -ms-transition: -ms-transform .8s ease-out;
    transition: transform .8s ease-out;
}
.link-green {
	-webkit-transition: -webkit-transform .8s ease-out;
	-ms-transition: -ms-transform .8s ease-out;
	transition: transform .8s ease-out;
	color: #9fcb3f;
	text-decoration: none;
}


.link-rotate:hover {
	 transform:rotate(360deg);
    -ms-transform:rotate(360deg);
    -webkit-transform:rotate(360deg);
}

.link-translate {
	-webkit-transition: -webkit-transform .8s ease-out;
    -ms-transition: -ms-transform .8s ease-out;
    transition: transform .8s ease-out;
}

.link-translate:hover {
	-ms-transform: translate(20px,0px); /* IE 9 */
   	-webkit-transform: translate(20px,0px); /* Chrome, Safari, Opera */
    transform: translate(20px,0px);
}

.link-scale {
	-webkit-transition: -webkit-transform .8s ease-out;
    -ms-transition: -ms-transform .8s ease-out;
    transition: transform .8s ease-out;
}

.link-scale:hover {
	-ms-transform: scale(1.1,1.1); /* IE 9 */
    -webkit-transform: scale(1.1,1.1); /* Chrome, Safari, Opera */
    transform: scale(1.1,1.1);
}

.link-opacity {
	opacity: 1;
   transition: opacity .25s ease-in-out;
   -moz-transition: opacity .25s ease-in-out;
   -webkit-transition: opacity .25s ease-in-out;
}

.link-opacity:hover {
	opacity: 0.5;

}

.img-left {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}

.img-right {
	float: right;
	margin-bottom: 15px;
	margin-left: 15px;
}
.highlight {
	padding: 4%;
	width: 92%;
	background-color: #005cb9;
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	color: #FFF;
}



#cookie-law {
	background:#333;
	margin:0px;
	width: 100%;
	text-align: center;
}
#event td {
	background-color: #F42941;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #F6F7F8;
	color: #FFF;
}

 
#cookie-law p {
	padding: 10px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: #FFFFFF;
	margin: 0;
}


#enquiry td {
	padding-bottom: 10px;
	font-size: 18px;
	line-height: 21px;
	font-weight: 400;
}



#enquiry input {
	width: 96%;
	padding: 2%;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	font-size: 18px;
	line-height: 21px;
}

#enquiry select {
	width: 100%;
	padding-top: 2%;
	padding-bottom: 2%;
	padding-left: 2%;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}

#enquiry table {
	width: 80%;
}

#enquiry textarea {
	width: 96%;
	padding: 2%;
	height: 120px;
	border: 1px solid #CCC;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}

 
#cookie-law a {
	color: #F42941;
	text-decoration: none;
}


.test {
    font-weight: normal;
    position: relative;
    background-image: url(/images/events/bgd_glimpse.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    list-style-image: url(/images/bullet_tick-green.png);
    padding: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    height: 100%;
    width: 100%;
	
}
.text-center {
    text-align: center;
	
}


.back-to-top {
	background: none;
	margin-bottom: 20px;
	margin-right: 20px;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 70px;
	padding-top: 15px;
	padding-bottom: 15px;
	z-index: 100;
	display: none;
	text-decoration: none;
	text-align: center;
	color: #FFF;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	background-color: rgba(244,41,65,0.5);
}
.back-to-top:hover {
	background-color: rgba(31,46,68,1);
	-webkit-transition: background 0.2s linear;
	-moz-transition: background 0.2s linear;
	-ms-transition: background 0.2s linear;
	-o-transition: background 0.2s linear;
	transition: background 0.2s linear;
}








/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .container-banner {
	margin-top: 56px;
	z-index: 999;
}




DESKTOP {
}
h1 {
	font-size: 48px;
	color: #1f2e44;
	font-weight: 600;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
	padding: 0px;
	line-height: 51px;
	letter-spacing: -1px;
}
h2, h3 {
    font-size: 32px;
    color: #1f2e44;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 2%;
    margin-left: 0px;
    padding: 0px;
    line-height: 36px;
    letter-spacing: -1px;
}



h4 {
	font-size: 24px;
	font-weight: 600;
	color: #1f2e44;
	margin-bottom: 20px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	line-height: 27px;
}
h5 {
	font-size: 22px;
	padding: 0px;
	line-height: 25px;
	font-weight: 400;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	color: #1f2e44;
}
h6 {
	font-size: 20px;
	font-weight: 600;
	color: #1f2e44;
	padding: 0px;
	line-height: 23px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 4px;
	margin-left: 0px;
}


.gridContainer {
	width: 100%;
	max-width: 1100px;
	margin: auto;
	clear: none;
	float: none;
	padding: 0%;
}
.gridContainerMobile {
	width: 100%;
	max-width: 1100px;
	margin: auto;
	clear: none;
	float: none;
	padding: 0%;
}

.container_header {
	width: 100%;
	margin: 0px;
	padding: 0px;
	color: #FFF;
	z-index: 100;
	background-color: #FFF;
}
.container_header_campaign {
	width: 100%;
	margin: 0px;
	padding: 0px;
	color: #FFF;
	z-index: 100;
	background-color: #F42941;
}

.container_pagetitles {
	width: 100%;
	margin: 0px;
	background-color: #98a9c7;
	padding-top: 25px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#navbar {
	width: 100%;
	margin: 0px;
	padding: 0px;
	background-color: #f42941;
}


.container_banner {
	width: 100%;
	color: #FFF;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	z-index: 0;
}




.container_banner_sub {
	width: 100%;
	color: #FFF;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0%;
	margin-left: 0px;
	background-color: #364357;
}
.container_banner_joinus {
    width: 100%;
    color: #FFF;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0%;
    margin-left: 0px;
    height: 400px;
    background-image: url(/images/joinus/banner-joinus.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


.container_banner_sub_land {
    width: 100%;
    color: #FFF;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0%;
    margin-left: 0px;
    padding-top: 20px;
    padding-bottom: 10px;
    background-color: #1F2E44;
}



.navigation {
	z-index: 100;
}


.container {
    font-size: 18px;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    line-height: 24px;
    font-weight: 300;
}
.container_blog {
	font-size: 18px;
	width: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
	line-height: 24px;
	font-weight: 300;
}
.container_blog img {
	width: 100%;
	height: auto;
}


.container_trustpilot {
	font-size: 18px;
	width: 100%;
	padding-top: 40px;
	padding-bottom: 180px;
	line-height: 22px;
	font-weight: 300;
	color: #323232;
	background-image: url(/images/bgd-reviews.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-color: #E4E4E6;
}

.container-bgdsplit {
	font-size: 18px;
	width: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
	line-height: 24px;
	font-weight: 300;
	color: #323232;
	background-image: url(/images/bgd-split.jpg);
	background-repeat: repeat-y;
	background-position: center top;
}

.container-tabmenu {
	width: 100%;
}




.container_footer {
	width: 100%;
}
.header {
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}

.header-logo {
	float: left;
	width: 28%;
}

.header-content {
	display: block;
	width: 55%;
	float: right;
	color: #1f2e44;
	padding-top: 1%;
}

.header-tagline1 {
	visibility: visible;
	text-align: right;
	width: 100%;
	font-size: 36px;
	font-weight: 600;
	letter-spacing: -1px;
	display: block;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	line-height: 36px;
	margin-top: 5px;
}
.header-tagline1 img {
	visibility: visible;
	padding-bottom: 0px;
}



.header-tagline2 {
	visibility: visible;
	text-align: right;
	width: 100%;
	margin-top: 0%;
	font-size: 22px;
	line-height: 24px;
	font-weight: 400;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	display: block;
	padding-top: 0px;
	padding-right: 0%;
	padding-bottom: 0px;
	padding-left: 0px;
	color: #1f2e44;
}
.header-tagline2 img {
	visibility: visible;
	padding-bottom: 5px;
}
.header-tagline3 {
	text-align: right;
	width: 100%;
	padding: 0px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 20px;
}



.header-nav {
	z-index: 100;
}

.topbar_buttons {
	width: 100%;
}

.topbar-button1 {
	color: #1f2e44;
	text-align: left;
	padding-right: 0px;
	padding-left: 0px;
	height: 30px;
	padding-top: 6px;
	font-size: 14px;
	text-decoration: none;
	float: left;
	font-weight: bold;
}
.topbar-button1:hover {
	color: #1f2e44;
}


.topbar-button2 {
	color: #FFF;
	background-color: #29ABA4;
	text-align: left;
	display: block;
	padding-right: 12px;
	padding-left: 12px;
	height: 30px;
	padding-top: 6px;
	font-size: 14px;
	text-decoration: none;
	float: right;
}
.topbar-button2:hover {
	background-color: #1f2e44;
	color: #FFF;
}

.header-navicon {
	display:none;
}
.icon {
	display: block;
	width: 20px;
	height: 18px;
	/*background-image: url(/images/nav-icon.png);*/
	background-repeat: no-repeat;
	border: 0;
	margin-left: auto;
	margin-right: auto;
	oveflow: hidden;
}


.icon:hover
{
	background-position: 0 -18px;
}



.banner-wrap {
	width: 100%;
	margin-top: 0%;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: left;
	background-image: url(/images/banner-hero.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.banner-content {
	width: 90%;
	padding-top: 5%;
	padding-right: 5%;
	padding-bottom: 10%;
	padding-left: 5%;
	float: left;
}





.banner-content h1 {
    font-size: 58px;
    letter-spacing: -1px;
    padding: 0px;
    line-height: 58px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 2%;
    margin-left: 0px;
    color: #FFFFFF;
    font-weight: 700;
}

.banner-content h5 {
	font-size: 24px;
	padding: 0px;
	line-height: 27px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5%;
	margin-left: 0px;
	color: #FFFFFF;
	font-weight: 400;
	letter-spacing: 0px;
}
.banner-content h4 {
	font-size: 22px;
	padding: 0px;
	line-height: 25px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #FFFFFF;
	font-weight: 600;
}



/*.banner-content a {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #FFFFFF;
    font-size: 18px;
    line-height: 21px;
    font-weight: 600;
    padding: 15px;
    background-color: #F42941;
}
.banner-content a:hover {
    color: #FFFFFF;
    text-decoration: none;
    border: 1px solid #1F2E44;
    background-color: #1F2E44;
}*/




.banner-content-sub {
	width: 90%;
	text-align: center;
	padding-top: 5%;
	padding-right: 5%;
	padding-bottom: 5%;
	padding-left: 5%;
}
.banner-content-joinus {
    width: 100%;
    text-align: center;
    padding-top: 100px;
}


.banner-content-joinus h4 {
    font-size: 48px;
    padding: 0px;
    line-height: 50px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0px;
}
.banner-content-joinus h5 {
    font-size: 24px;
    padding: 0px;
    line-height: 27px;
    margin-bottom: 30px;
    color: #FFFFFF;
    font-weight: 400;
}











.content {
	width: 100%;
	float: left;
}
.content-tabs-wrapper {
	width: 100%;
	color: #333;
	float: left;
}
.content-tabs {
	width: 100%;
	background-image: url(/images/bg_content.jpg);
	background-repeat: repeat-x;
	color: #333;
	float: left;
}





.columns-wrap {
	margin-bottom: 2%;
	padding: 0px;
	float: left;
	width: 100%;
}



.columns1 {
	width: 100%;
	float: left;
}

.columns1 li {
	clear: none;
	margin-left: -20px;
	list-style-image: url(/images/bullet.png);
}

.columns2 {
	width: 48%;
	margin-right: 4%;
	clear: none;
	padding: 0%;
	margin-bottom: 0px;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
}
.columns2.last {
	margin-right: 0%;
	display: block;
	margin-bottom: 0px;
}

.columns2 li {
	clear: none;
	margin-left: -20px;
	list-style-image: url(/images/bullet.png);
}
.columns2 ul {
	clear: none;
	list-style-image: url(/images/bullet.png);
	margin-top: 0px;
	margin-bottom: 0px;
}


.columns2-pad {
	width: 40%;
	margin-right: 4%;
	clear: none;
	padding: 4%;
	margin-bottom: 4%;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
	text-align: left;
}
.columns2-form {
	width: 40%;
	margin-right: 0%;
	clear: none;
	padding: 4%;
	margin-bottom: 0%;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
	text-align: left;
}
.columns2-pad img {
	float: left;
	display: block;
	margin-right: 15px;
	clear: left;
}

.columns2-pad.last {
	margin-right: 0%;
	display: block;
}


.columns2 li {
	clear: none;
	margin-left: -20px;
	list-style-image: url(/images/bullet.png);
}
.columns2 ul {
	clear: none;
	list-style-image: url(/images/bullet.png);
	margin-top: 0px;
	margin-bottom: 0px;
}


.columns2-wide {
	width: 65%;
	clear: none;
	padding: 0%;
	float: left;
	margin-right: 4%;
}
.columns2-wide-blog {
	width: 65%;
	clear: none;
	padding: 0%;
	float: left;
	margin-right: 4%;
}
.columns2-wide-blog img {
	width: 100%;
	padding: 0%;
	float: left;
	height: auto;
	margin-bottom: 15px;
}


.columns2-form-left {
	width: 70%;
	clear: none;
	padding: 0%;
	float: left;
	margin-right: 4%;
}


.columns2-form-right {
	width: 26%;
	clear: none;
	float: left;
	margin-right: 0%;
}


.columns2-form-right li {
	clear: none;
	margin-left: -20px;
	list-style-image: url(/images/bullet.png);
}






.columns2-wide-sidebar {
	width: 31%;
	clear: none;
	position: relative;
	float: left;
}





.columns2-table {
	display: table;
	width: 100%;
	margin: 0px;
	float: left;
	padding: 0%;
}

.columns2-table-cell {
	display: table-cell;
	width: 50%;
	text-align: left;
	vertical-align: top;
}




.columns3 {
    width: 30.666%;
    clear: none;
    margin-right: 4%;
    float: left;
}

.columns3.last {
	margin-right: 0%;
}
.columns3-benefits {
	width: 29.333%;
	clear: none;
	float: left;
	padding-right: 2%;
	padding-left: 2%;
}

.columns3 img {
    display: inline-block;
}



.columns3-table {
	display: table;
	width: 100%;
	color: #333;
	margin: 0px;
}



.columns3-table-cell {
	display: table-cell;
	position: relative;
	width: 29.333%;
	padding: 2%;
}


.columns4{
	clear: none;
	z-index: 200;
	position: relative;
	width: 24%;
	margin-right: 1.3%;
	float: left;
	margin-bottom: 1.5%;
}
.columns4.last {
	z-index: 200;
	position: relative;
	margin-right: 0%;
}


.columns4-center {
	clear: none;
	z-index: 200;
	position: relative;
	width: 24%;
	margin-right: 1.3%;
	text-align: center;
}
.columns5 {
	clear: none;
	z-index: 200;
	position: relative;
	width: 20%;
	float: left;
	text-align: center;
	margin: 0px;
	padding: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.teasers {
	width: 90%;
	clear: none;
	float: left;
	padding: 5%;
}



.teasers h4 {
	font-size: 20px;
	font-weight: 600;
	display: block;
	line-height: 23px;
	margin-bottom: 5%;
}
.teasers a {
	color: #F42941;
}
.teasers a:hover {
	color: #FFFFFF;
	border: 1px solid #FFF;
}

.rightMenu {
}
.rightMenu p {
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.rightMenu a {
	display: block;
	color: #FFFFFF;
	font-weight: normal;
	margin: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	/*border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;*/
	font-size: 14px;
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	text-decoration: none;
}

.rightMenu a:hover {
	text-decoration: none;
	background-color: #333333;
	color: #FFF;
}

.footer {
	width: 100%;
	padding-top: 0px;
	padding-right: 0%;
	padding-bottom: 0px;
	padding-left: 0%;
	color: #FFF;
	float: left;
}


.footer h3 {
	color: #FFFFFF;
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: 0em;
}
.footer h4 {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
}
.footer h5 {
	color: #FFFFFF;
	font-size: 22px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 0px;
}




.footer a {
	color: #F42941;
	text-decoration: none;
}
.footer a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
.footer-left {
	width: 35%;
	clear: none;
	margin-right: 2%;
	float: left;
}

.footer-middle {
	width: 29%;
	clear: none;
	margin-right: 2%;
	float: left;
}




.footer-right {
	width: 32%;
	clear: none;
	margin-right: 0%;
	float: left;
}
.footer-disclaimer {
	width: 100%;
	padding-top: 20px;
	padding-right: 0%;
	padding-bottom: 20px;
	padding-left: 0%;
	color: #FFF;
	font-size: 18px;
	line-height: 19px;
	font-weight: 600;
	background-color: #364357;
	text-align: center;
}

.view {
	width: 100%;
	float: left;
	overflow: hidden;
	position: relative;
	text-align: center;
	cursor: default;
	margin-bottom: 7%;
}
.view .mask,.view .content {
	width: 100%;
	min-height: 230px;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	text-decoration: none;
}
.view img {
   display: block;
   position: relative;
}
.view h6 {
	color: #fff;
	text-align: center;
	position: relative;
	font-size: 17px;
	padding: 10px;
	margin: 20px 0 0 0;
	background-color: #333;
}
.view p {
	font-size: 14px;
	position: relative;
	color: #fff;
	text-align: center;
	line-height: 14px;
	padding-right: 20px;
	padding-left: 20px;
	margin-bottom: 0px;
}
.view a.info {
   display: inline-block;
   text-decoration: none;
   padding: 7px 14px;
   background: #333;
   color: #fff;
}
.view-link {
	display: inline-block;
	text-decoration: none;
	padding: 7px 14px;
	color: #fff;
	background-color: #333;
}
.hide-mobile {
	display: block;
}
.hide-tablet {
	display: block;
}

.hide-desktop {
	display: none;
}

.hide-desktop-tablet {
	display: none;
}

.hide-desktop-tablet-tabletsm {
	display: none;
}

.hide-tablet-mobile {
	display: inline-block;
}

.iframe-newsletter {
	height: 320px;
	width: 100%;
	margin: 0px;
	padding: 0px;
	float: left;
}

.iframe-bestbuys {
	height: 900px;
	width: 100%;
	margin: 0px;
	padding: 0px;
	float: left;
}

.iframe-contact {
	width: 100%;
	margin: 0px;
	padding: 0px;
	float: left;
	height: 400px;
}


#contactform td {
	padding-bottom: 18px;
}
.event-title {
	font-size: 42px;
	line-height: 45px;
	font-weight: 700;
	display: block;
	margin-top: 0px;
	color: #1f2e44;
	margin-bottom: 15px;
	letter-spacing: -1px;
	text-align: center;
}

#contactform a {
	font-size: 14px;
	font-weight: 400;
	color: #F42941;
	text-decoration: none;
}



#contactform input {
	width: 94%;
	color: #FFFFFF;
	font-size: 16px;
	line-height: 16px;
	text-align: left;
	border: 1px solid #1F2E44;
	padding-top: 4%;
	padding-right: 3%;
	padding-bottom: 4%;
	padding-left: 3%;
	background-color: #1F2E44;
	background-color: #1F2E44;
	font-weight: 300;
}
#contactform textarea {
	width: 94%;
	color: #FFFFFF;
	font-size: 16px;
	line-height: 16px;
	text-align: left;
	border: 1px solid #1F2E44;
	padding-top: 4%;
	padding-right: 3%;
	padding-bottom: 4%;
	padding-left: 3%;
	background-color: #1F2E44;
	background-color: #1F2E44;
	font-weight: 300;
	height: 100px;
}





#contactform select {
	width: 100%;
	border: 1px solid #1F2E44;
	color: #8f96a1;
	font-size: 16px;
	padding-top: 4%;
	padding-right: 3%;
	padding-bottom: 4%;
	padding-left: 3%;
	background-color: #1F2E44;
	line-height: 30px;
	font-weight: 300;
}


.submit-wrap {
	margin: 0px;
	padding: 0px;
	width: 100%;

}

.submit-wrap #button {
	color: #F42941;
	font-size: 18px;
	line-height: 20px;
	font-weight: 400;
	text-align: center;
	width: 100%;
	border: 1px solid #F42941;
	background-color: #364357;
}
.submit-wrap #button:hover {
	color: #FFF;
	width: 100%;
	background-color: #F43250;
}


.mc_results_content {
	background-color: #F42941;
	width: 94%;
	display: block;
	padding-top: 2%;
	padding-right: 3%;
	padding-bottom: 5%;
	padding-left: 3%;
}
.mc_results_content a {
	color: #1F2E44;
}

.mc_results_content h5 {
	font-size: 48px;
	line-height: 51px;
	font-weight: 700;
	color: #FFF;
	letter-spacing: -1px;
	text-align: center;
	margin-bottom: 0px;
}
.mc_results_content h6 {
	font-size: 18px;
	line-height: 19px;
	font-weight: 400;
	color: #FFF;
	text-align: center;
	margin-top: 0px;
	padding-bottom: 10px;
}




#borrowcalc td {
	font-size: 18px;
	line-height: 18px;
	font-weight: 600;
	padding-bottom: 12px;
	color: #FFF;
	text-align: left;
}


#borrowcalc input {
	width: 96%;
	color: #FFFFFF;
	font-size: 18px;
	line-height: 19px;
	text-align: left;
	margin-bottom: 4px;
	border: 1px solid #8f96a1;
	font-weight: 400;
	padding-top: 3%;
	padding-right: 2%;
	padding-bottom: 3%;
	padding-left: 2%;
	background-color: #364357;
		
}
#borrowcalc select {
	width: 96%;
	color: #8f96a1;
	font-size: 18px;
	line-height: 19px;
	text-align: left;
	margin-bottom: 4px;
	border: 1px solid #8f96a1;
	font-weight: 300;
	padding-top: 3%;
	padding-right: 2%;
	padding-bottom: 3%;
	padding-left: 2%;
	background-color: #364357;
}


#borrowcalc #submit {
	color: #F42941;
	font-size: 18px;
	line-height: 19px;
	font-weight: 600;
	text-align: center;
	border: 1px solid #F42941;
	letter-spacing: -1px;
	display: block;
	width: 28%;
	margin-left: 35%;
	padding-top: 1.2%;
	padding-right: 1%;
	padding-bottom: 1.2%;
	padding-left: 1%;
}

#borrowcalc #submit:hover {
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
}






.container_commission {
	font-size: 18px;
	width: 100%;
	padding-top: 30px;
	line-height: 24px;
	font-weight: 300;
	background-color: #364357;
}

#commissioncalc td {
	font-size: 18px;
	line-height: 18px;
	font-weight: 400;
	padding-bottom: 30px;
	color: #FFF;
	text-align: center;
}


#commissioncalc input {
	width: 20%;
	color: #FFFFFF;
	font-size: 36px;
	line-height: 36px;
	text-align: center;
	margin-bottom: 0px;
	border: 1px solid #8f96a1;
	font-weight: 700;
	background-color: #364357;
	padding-top: 1%;
	padding-right: 2%;
	padding-bottom: 1%;
	padding-left: 2%;
}

#commissioncalc #submit {
	color: #F42941;
	font-size: 18px;
	line-height: 19px;
	font-weight: 600;
	text-align: center;
	border: 1px solid #F42941;
	letter-spacing: -1px;
	display: block;
	width: 28%;
	margin-left: 35%;
	padding-top: 1.2%;
	padding-right: 1%;
	padding-bottom: 1.2%;
	padding-left: 1%;
}

#commissioncalc #submit:hover {
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
}


.commission_results_content {
	background-color: #F42941;
	display: block;
	padding-top: 20px;
	padding-right: 3%;
	padding-bottom: 10px;
	padding-left: 3%;
	width: 94%;
}
.commission_results_content a {
	color: #1F2E44;
}
.commission_results_content h4 {
	font-size: 20px;
	line-height: 23px;
	font-weight: 700;
	color: #FFF;
	letter-spacing: 0px;
	text-align: center;
	margin-bottom: 10px;
}

.commission_results_content h5 {
	font-size: 40px;
	line-height: 40px;
	font-weight: 700;
	color: #FFF;
	letter-spacing: -1px;
	text-align: center;
	margin-bottom: 5px;
}

.commission_results_content h6 {
	font-size: 32px;
	line-height: 35px;
	font-weight: 700;
	color: #1f2e44;
	text-align: center;
	margin-top: 0px;
	padding-bottom: 10px;
	margin-bottom: 10px;
}


#pricing td {
    font-size: 16px;
    line-height: 18px;
    border-right: 1px solid #FFFFFF;
    color: #000000;
}

#pricing h4{
    color: #FFFFFF;
    font-size: 26px;
    line-height: 27px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-weight: 700;
}

#pricing h5{
    color: #FFFFFF;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

#pricing h6{
    color: #FFFFFF;
    font-size: 16px;
    line-height: 18px;
}


.iframe-introducer {
    width: 100%;
    height: 800px;

}


.land_container_header {
    width: 100%;
    padding: 0px;
    color: #FFF;
    z-index: 100;
    margin-top: 25px;
    margin-bottom: 55px;
}
.land_container_banner {
    width: 100%;
    color: #FFF;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    z-index: 0;
    min-height: 650px;
    background-image: url(/images/land/ban_hero.jpg);
    background-position: right center;
    background-repeat: no-repeat;
}
.land_banner-content {
    width: 100%;
    float: left;
}
.land_banner-left {
    width: 50%;
    float: left;
    margin-top: 0px;
}
.land_banner-left h1 {
    color: #FFFFFF;
    font-size: 80px;
    line-height: 78px;
    margin-bottom: 30px;
    font-weight: 700;
    
}
.land_banner-left h2 {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 30px;
    line-height: 34px;
    letter-spacing: normal;
}
.land_container {
    font-size: 20px;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    line-height: 28px;
    font-weight: 300;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.land_container_numbers {
    font-size: 18px;
    width: 100%;
    padding-top: 150px;
    padding-bottom: 150px;
    line-height: 24px;
    font-weight: 300;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/images/land/ban_numbers.jpg);
    background-attachment: fixed;
}
.land_columns3-numbers {
    width: 24.666%;
    clear: none;
    margin-right: 4%;
    float: left;
    padding-left: 3%;
    padding-top: 8%;
    padding-right: 3%;
    padding-bottom: 3%;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    background-color: #1F2E4490;
    position: relative;
    font-size: 24px;
    line-height: 32px;
    min-height: 250px;
    font-weight: 500;
}
.land_columns3-numbers.last {
	margin-right: 0%;
}

.land_numbers {
    margin-right: 0%;
    width: 40%;
    height: 40%;
    position: absolute;
    top: -65px;
    left: 30%;
    right: 30%;
}


.land_columns2 {
	width: 48%;
	margin-right: 4%;
	clear: none;
	padding: 0%;
	margin-bottom: 0px;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
}
.land_columns2.last {
	margin-right: 0%;
	display: block;
	margin-bottom: 0px;
}

.land_columns2 li {
    clear: none;
    margin-left: -20px;
    list-style-image: url(../images/bullet_tick.png);
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
}
.land_columns2 ul {
	clear: none;
	list-style-image: url(/images/bullet.png);
	margin-top: 0px;
	margin-bottom: 0px;
}


.form_text {
    font-family: 'Source Sans Pro', sans-serif;
    width: 92%;
    padding-right: 4%;
    padding-left: 4%;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0px;
    border: 0px solid #49A2DB;
    background-color: #f2f2f2;
    height: 60px;
}
.form_textarea {
    font-family: 'Source Sans Pro', sans-serif;
    width: 94%;
    border: 0px solid #49A2DB;
    padding-top: 2%;
    padding-right: 4%;
    padding-bottom: 4%;
    padding-left: 2%;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0px;
    background-color: #f2f2f2;
}

.form_select {
    font-family: 'Source Sans Pro', sans-serif;
    width: 100%;
    padding-right: 4%;
    padding-left: 4%;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: px;
    border: 0px solid #49A2DB;
    background-color: #f2f2f2;
    height: 60px;
}

.columns1_form {
	width: 100%;
	float: left;
	margin-bottom: 15px;
}

.columns2_form {
    width: 48.5%;
    margin-right: 3%;
    clear: none;
    padding: 0%;
    margin-top: 0px;
    margin-left: 0px;
    display: block;
    float: left;
    margin-bottom: 15px;
}

.columns2_form.last {
    margin-right: 0%;
    position: relative;
    width: 48.5%;
}





/* Tablet Layout: 1100px to 481px. Inherits styles from: Desktop Layout. */

@media only screen and (max-width: 1100px) {




TABLET {
}

h1 {
	font-size: 44px;
	line-height: 47px;
}
h2, h3 {

}

h4 {

}
h5 {

}
h6 {

}

.gridContainer {
	width: 94%;
	clear: none;
	float: none;
	padding-right: 3%;
	padding-left: 3%;
	padding-top: 0px;
	padding-bottom: 0px;
}

.gridContainerMobile {
	width: 100%;
}

.zeroMargin_tablet {
margin-left: 0;
}

.container_header {
	width: 100%;
	margin: 0px;
	padding: 0px;
	color: #FFF;
	z-index: 100;
}

.container {

}

.container_footer {

}



.header-logo {
	clear: none;
	width: 35%;
}

.header-tagline1 {
}

.header-tagline2 {

}
.header-tagline2 img {
}
.header-tagline3 {

}

.banner-content h1 {
	font-size: 44px;
	line-height: 47px;
}

.banner-content-sub {
	width: 92%;
	padding: 4%;
}


.content-tabs-wrapper {

}

.content-wrap {
	padding: 2%;
	width: 96%;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}



.content {
	margin-top: 1%;
}


.columns2 {
}


.columns2-wide {

}

.columns2-wide-sidebar {

}



.columns4{

}
.columns4-center {

}

.rightMenu a {
	font-size: 14px;
}



.view p {
	display: none;
}

.hide-tablet {
	display: none;
}

.hide-tablet-mobile {
	display: none;
}

.hide-desktop-tablet-tabletsm {
	display: none;
}	




.iframe-contact {
	height: 500px;
	width: 100%;
}




#contactform select {
	font-size: 14px;
	line-height: 28px;
}


*::-webkit-input-placeholder {
    color: #8f96a1;
	font-size: 14px;
}
*:-moz-placeholder {
    /* FF 4-18 */
    color: #8f96a1;
	font-size: 14px;
}
*::-moz-placeholder {
    /* FF 19+ */
    color: #8f96a1;
	font-size: 14px;
}
*:-ms-input-placeholder {
    /* IE 10+ */
    color: #8f96a1;
	font-size: 14px;
}


}





@media only screen and (max-width: 700px) {

TABLET SMALL {
}


h1 {
	font-size: 40px;
	line-height: 43px;
}
h2, h3 {
	font-size: 26px;
	line-height: 29px;
	display: block;
}

h4 {
	font-size: 22px;
	line-height: 25px;

}
h5 {
	font-size: 18px;
	line-height: 21px;

}
h6 {
	font-size: 18px;
	line-height: 19px;

}
	
	
.gridContainer {
	width: 88%;
	padding-right: 6%;
	padding-left: 6%;
}

.gridContainerMobile {
	width: 100%;
}
	
	
input::placeholder {
    font-size: 18px;
	color: #000000
  }		

.container_banner {
}

.banner-wrap {
	background-position: center;
}

.banner-content {
	width: 90%;
	padding-top: 5%;
	padding-right: 5%;
	padding-bottom: 5%;
	padding-left: 5%;
}

.banner-content h1 {
	font-size: 34px;
	line-height: 37px;
}

.banner-content-sub {
	width: 90%;
	text-align: center;
	padding-top: 9%;
	padding-right: 5%;
	padding-bottom: 9%;
	padding-left: 5%;
}

#video-container {
	
}

.header-unit {
	
}


.columns2 {
	width: 100%;
	margin-bottom: 15px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}

.columns2-form {
	width: 90%;
	margin-bottom: 20px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding: 5%;
}



.columns2-form-right {
	width: 100%;
	margin-right: 0px;
	margin-bottom: 20px;
}

.columns2-form-left {
	width: 100%;
	margin: 0px;
}








.columns2-table {
	display: table;
	width: 100%;
	margin-top: 0px;
}

.columns2-table-cell {
	width: 100%;
	display: block;
	margin-bottom: 0px;
	padding: 0%;
}
	
.columns3 {
    clear: none;
    margin-bottom: 25px;
    width: 100%;
    margin-right: 0%;
    text-align: center;
}
	

.columns3-table-cell {
	position: relative;
	width: 25.333%;
	padding: 4%;
}

.columns4 {
	clear: none;
	margin-bottom: 2%;
	width: 48%;
	margin-right: 2%;
}

.columns4.last {
	clear: none;
	margin-bottom: 2%;
	width: 48%;
	margin-right: 2%;
}


.teasers {
	width: 90%;
	clear: none;
	float: left;
	padding: 5%;
	text-align: center;
	min-height: 90px;
}



.teasers h4 {
	font-size: 18px;
	font-weight: 600;
	color: #FFF;
	display: block;
	text-align: center;
	line-height: 21px;
	margin-bottom: 3%;
	
}
.teasers a {
	font-size: 14px;
}

.event-title {
	font-size: 30px;
	line-height: 33px;
	margin-top: 0px;
	margin-bottom: 10px;
}


.footer-left {
	width: 100%;
	clear: none;
	margin-right: 0%;
	float: left;
	margin-bottom: 5%;
	text-align: center;
}

.footer-middle {
	width: 100%;
	clear: none;
	margin-right: 0%;
	float: left;
	margin-bottom: 5%;
	text-align: center;
}




.footer-right {
	width: 100%;
	clear: none;
	margin-right: 0%;
	float: left;
	text-align: center;
	margin-bottom: 0px;
}

.footer-disclaimer {
	font-size: 14px;
	line-height: 17px;
}


.iframe-bestbuys {
	height: 950px;
	width: 100%;
	margin: 0px;
	padding: 0px;
	float: left;
}
	
	
#pricing td {
    font-size: 15px;
    line-height: 17px;
}
	
	

#pricing h5{
    color: #FFFFFF;
    font-size: 18px;
    line-height: 20px;
}

#pricing h6{
    color: #FFFFFF;
    font-size: 15px;
	line-height: 17px;
}	
	
	
.hide-desktop-tablet-tabletsm {
	display: none;
}


.land_container_header {
    margin-bottom: 40px;
}
	
		

.land_container_banner {
    min-height: 0px;
    background-image: url(/images/land/ban_hero_mob.jpg);
    background-position: center top;
    background-repeat: no-repeat;
}	
	
.land_banner-content {
    width: 100%;
    float: left;
	margin-bottom: 50px;
}
.land_banner-left {
    width: 100%;
    float: left;
    margin-top: 0px;
}
.land_banner-left h1 {
    color: #FFFFFF;
    font-size: 60px;
    line-height: 58px;
    margin-bottom: 30px;
    font-weight: 700;
    
}
.land_banner-left h2 {
    font-size: 28px;
    line-height: 34px;
	margin-bottom: 0px;
}	
	
	
	
.land_columns3-numbers {
    width: 88%;
    margin-right: 4%;
    padding-left: 6%;
    padding-top: 12%;
    padding-right: 6%;
    padding-bottom: 6%;
    font-size: 22px;
    line-height: 30px;
    min-height: 0px;
    margin-bottom: 100px;
}
.land_columns3-numbers.last {
	margin-right: 0%;
	margin-bottom: 0px;
}

.land_numbers {
    margin-right: 0%;
    width: 40%;
    height: 40%;
    position: absolute;
    top: -65px;
    left: 30%;
    right: 30%;
}	
	
	
.land_columns2 {
	width: 100%;
	margin-right: 0%;
	margin-bottom: 30px;
}
.land_columns2.last {
	margin-right: 0%;
	display: block;
	margin-bottom: 0px;
}
	
	
.columns2_form {
    width: 100%;
    margin-right: 0%;
	margin-bottom: 15px;
}

.columns2_form.last {
    width: 100%;
}	
	
	
.form_text {
    font-size: 18px;
}
.form_textarea {
    width: 92%;
    padding-left: 4%;
    font-size: 18px;
}

.form_select {
    font-size: 18px;
}		
	


}









@media only screen and (max-width: 481px) {


MOBILE {
}


/* Mobile Layout: 480px and below. */
  


.gridContainer {
	width: 86%;
	clear: none;
	float: none;
	padding-top: 0%;
	padding-right: 7%;
	padding-bottom: 0%;
	padding-left: 7%;
}
.gridContainerMobile {
	width: 100%;
}


.zeroMargin_mobile {
margin-left: 0;
}

.container_topbar {
	width: 100%;
}

.container_header {
	width: 100%;
	position: relative;
}


.container {
	padding-top: 25px;
	padding-bottom: 25px;
}
.container_blog {
	padding-top: 25px;
	padding-bottom: 25px;
}

.container-bgdsplit {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
	background-image: none;
	background-color: #F6F6F8;
}

.container_footer {
}


.topbar_buttons {
	width: 50%;
}

.topbar-button1 {
	font-size: 18px;
	text-align: center;
	width: 100%;
	line-height: 19px;
	display: block;
	clear: none;
	float: left;
	font-weight: 300;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}

.topbar-button2 {
	font-size: 18px;
	text-align: right;
	width: 50%;
	line-height: 20px;
	padding: 0px;
	display: block;
	clear: none;
	float: left;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.header {
	width: 100%;
	padding-bottom: 0px;
}

.header-logo {
	width: 100%;
	text-align: center;

}
.header-navicon {
	float: none;
	width: 100%;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #CCCCCC;
}
.header-tagline2 {
	display: block;
	float: none;
	clear: both;U
	width: 100%;
	margin-bottom: 26px;
	text-align: center;
	font-size: 17px;
	font-weight: bold;
	color: #9fcb3f;
}


.banner-content {
	width: 84%;
	padding: 8%;
}
.banner-content h5 {
	font-size: 20px;
	line-height: 23px;
}
.banner-content h4 {
	font-size: 18px;
	line-height: 21px;
}





.content-tabs-wrapper {
	width: 100%;
	color: #333;
	float: left;
	position: relative;
	padding-top: 0px;
	padding-bottom: 20px;
	min-height: 0px;
}
.content-tabs {
	width: 100%;
	color: #333;
	top: 0px;
	position: relative;
}

.content-wrap {
	padding: 0%;
	width: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}

.content {
	width: 100%;
}



.columns2 {
	width: 100%;
	margin-bottom: 15px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}



.columns2-pad {
	width: 88%;
	margin-right: 0%;
	clear: none;
	padding: 6%;
	margin-bottom: 4%;
	margin-top: 0px;
	margin-left: 0px;
	display: block;
	float: left;
	text-align: center;
}
.columns2-pad img {
	display: block;
	margin-bottom: 10px;
	padding-bottom: 0px;
	clear: both;
	height: auto;
	width: 20%;
	margin-left: 40%;
	margin-right: 40%;
}



.columns2 h5 {
	font-size: 18px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}
.columns2 h6 {
	font-size: 14px;
	font-weight: bold;
	color: #333;
}





.columns2-center {
	text- align: center;
	width: 100%;
	padding: 0px;
	margin: 0px;
}


.columns2-wide {
	width: 100%;
	margin-right: 0px;
	margin-bottom: 20px;
}
.columns2-wide-blog {
	width: 100%;
	margin-right: 0px;
	margin-bottom: 20px;
}


.columns2-wide-sidebar {
	width: 100%;
	margin: 0px;
}


.columns2-wide-data {
	width: 100%;
	margin-right: 0%;
	margin-bottom: 20px;
}

.columns2-wide-data-sidebar {
	width: 100%;
}







.columns3 {
	clear: none;
	margin-bottom: 15px;
	width: 100%;
	text-align: center;
}


.columns3-table {
display: table;
width: 100%;
}

.columns3-table-cell {
	display: block;
	width: 90%;
	padding-top: 5%;
	padding-right: 5%;
	padding-bottom: 5%;
	padding-left: 5%;
}

.columns4 {
	margin-bottom: 6%;
	width: 100%;
	margin-right: 0%;
	text-align: center;
}

.columns4.last {
	margin-bottom: 0%;
	width: 100%;
	margin-right: 0%;
}


.columns5 {
	clear: none;
	margin-bottom: 0px;
	width: 100%;
	margin-right: 0px;
}


.columns4-table-cell {
	display: block;
	width: 100%;
	font-size: 14px;
	border-bottom-width: 8px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	padding: 0%;
}

.teasers {
	width: 90%;
	clear: none;
	float: left;
	text-align: center;
	padding-top: 7%;
	padding-right: 5%;
	padding-bottom: 7%;
	padding-left: 5%;
	min-height: 0px;
}



.teasers h4 {
	font-size: 20px;
	font-weight: 600;
	color: #FFF;
	display: block;
	text-align: center;
	line-height: 23px;
}
.teasers a {
	color: #F42941;
}
.teasers a:hover {
	color: #FFFFFF;
}

.event-title {
	font-size: 42px;
	line-height: 45px;
	font-weight: 700;
	display: block;
	margin-top: 0px;
	color: #1f2e44;
	margin-bottom: 15px;
	letter-spacing: -1px;
	text-align: center;
}


.hide-mobile {
	display: none;
}
.hide-tablet {
	display: block;
}

.hide-desktop {
	display: block;
}

.hide-desktop-tablet {
	display: block;
}

.hide-tablet-mobile {
	display: none;
}

.iframe-newsletter {
	height: 560px;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
.iframe-contact {
	height: 700px;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

.mc_results_content {
	background-color: #F42941;
	width: 92%;
	display: block;
	padding: 4%;
}

#borrowcalc #submit {
	width: 44%;
	margin-left: 25%;
	padding-top: 3%;
	padding-right: 3%;
	padding-bottom: 3%;
	padding-left: 3%;
}
	
#pricing.hide {
    display: none;
}
	
.pricing-hide {
	display: none;
}	
	
.hide-desktop-tablet-tabletsm {
	display: block;
}	


}
