/**
* TWD T2 Framework v4 
* last updated on 2.2.16
* -------------------
**/
.default-margin {
	margin:0;
}
.default-margin > :not(.articleBody-data) {
	margin-left: 4%;
	margin-right: 4%;
}
#twd_container {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: auto;
	font-family: 'Avenir Light', Arial, sans-serif;
	font-weight: normal;
	font-style: normal;
	color: #666;
	text-rendering: optimizeLegibility;
	font-size: 16px;
	word-wrap: break-word;
}
#twd_container a, #twd_container a:visited, #twd_container a:active {
	text-decoration: none;
}
#twd_container a img {
	border: 0;
}
#twd_container img {
	max-width: 100%;
	height: auto;
	-moz-width: 100%;
}
/* GRID SYSTEM */
.twd_row {
	display: -webkit-box;           /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;              /* OLD - Firefox 19- */
	display: -ms-flexbox;           /* IE 10 */
	display: -webkit-flex;          /* NEW - Chrome */
	display: flex;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.twd_ie .twd_row { /* IE 9 and below */
	display: table;
	table-layout: fixed;
	width: 100%;
}
.twd_one, .twd_two, .twd_three, .twd_four, .twd_five, .twd_six, .twd_seven, .twd_eight, .twd_twoThirds1, .twd_twoThirds2, .twd_oneQuarter1, .twd_oneQuarter2 {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	min-width: 0; /* to fix FF 36 responsive images bug: http://stackoverflow.com/questions/28710379/firefox-flexbox-image-width */
}
/* resposive images in flex containers */
.twd_one img, .twd_two img, .twd_three img, .twd_four img, .twd_five img, .twd_six img, .twd_seven img, .twd_eight img, .twd_twoThirds1 img, .twd_twoThirds2 img, .twd_oneQuarter1 img, .twd_oneQuarter2 img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	align-self: center;
	display: block;
}
/* the following is to fix FF 36 responsive images bug: http://stackoverflow.com/questions/28710379/firefox-flexbox-image-width */
@-moz-document url-prefix() {
.twd_one img, .twd_two img, .twd_three img, .twd_four img, .twd_five img, .twd_six img, .twd_seven img, .twd_eight img, .twd_twoThirds1 img, .twd_twoThirds2 img, .twd_oneQuarter1 img, .twd_oneQuarter2 img {
max-width:100%;
}
}
.twd_twoThirds2 {
	-webkit-box-flex: 2;
	-moz-box-flex: 2;
	-webkit-flex: 2;
	-ms-flex: 2;
	flex: 2;
}
.twd_oneQuarter2 {
	-webkit-box-flex: 3;
	-moz-box-flex: 3;
	-webkit-flex: 3;
	-ms-flex: 3;
	flex: 3;
}
.twd_flexItems {
	display: -webkit-box;           /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;              /* OLD - Firefox 19- */
	display: -ms-flexbox;           /* IE 10 */
	display: -webkit-flex;          /* NEW - Chrome */
	display: flex;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.twd_ie .twd_flexItems {
	display: table-cell;
}
.twd_blockItems {
	display: block;
	width:100%;
}
.twd_ie .twd_blockItems {
	display: inline-block;
}
/* change directions */
.twd_row.twd_direction_column {
	flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
}
.twd_ie .twd_row.twd_direction_column {
	width: 100%;
}
.twd_row.twd_direction_row {
	flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
}
/* graceful degradation */ 
/* for old browsers and IE 9 & below */
.twd_ie .twd_one {
	width: 100%;
}
.twd_ie .twd_two {
	width: 50%;
}
.twd_ie .twd_three {
	width: 33%;
}
.twd_ie .twd_four {
	width: 25%;
}
.twd_ie .twd_five {
	width: 20%;
}
.twd_ie .twd_six {
	width: 16.66%;
}
.twd_ie .twd_seven {
	width: 14%;
}
.twd_ie .twd_eight {
	width: 12.5%;
}
.twd_ie .twd_twoThirds1 {
	width: 33%;
}
.twd_ie .twd_twoThirds2 {
	width: 67%;
}
.twd_ie .twd_oneQuarter1 {
	width: 25%;
}
.twd_ie .twd_oneQuarter2 {
	width: 75%;
}
.twd_ie .twd_one, .twd_ie .twd_two, .twd_ie .twd_three, .twd_ie .twd_four, .twd_ie .twd_five, .twd_ie .twd_six, .twd_ie .twd_seven, .twd_ie .twd_eight, .twd_ie .twd_twoThirds1, .twd_ie .twd_twoThirds2, .twd_ie .twd_oneQuarter1, .twd_ie .twd_oneQuarter2 {
	display: table-cell;
	vertical-align: top;
}
/* ALIGNMENTS */
.twd_text_left {
	text-align: left!important;
}
.twd_text_right {
	text-align: right!important;
}
.twd_text_center {
	text-align: center!important;
}
.twd_text_justify {
	text-align: justify!important;
}
.twd_fullScreen {
	height: 100%;
	position: absolute;
	width: 100%;
}
.twd_horizontallyCentered {
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center!important;
}
.twd_verticallyCentered {
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.twd_centered {
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	text-align: center!important;
}
.twd_ie .twd_centered img, .twd_ie .twd_centered div {
	margin-left:auto!important;
	margin-right:auto!important;
}
.twd_left {
	-webkit-box-pack: flex-start;
	-moz-box-pack: flex-start;
	-ms-flex-pack: flex-start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	text-align: left!important;
}
.twd_right {
	-webkit-box-pack: flex-end;
	-moz-box-pack: flex-end;
	-ms-flex-pack: flex-end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	text-align: right!important;
}
/* IE 9 and below */
.twd_ie .twd_verticallyCentered {
	vertical-align: middle;
}
.twd_ie .twd_centered {
	vertical-align: middle;
	text-align: center!important;
}
/* COMMON STYLES */

/* vertical dividers for columns */
.twd_vr {
	box-shadow: inset -1px 0 0 #ccc;
	border-right: solid 1px #ccc\9; /* IE8 and below */
	padding-right: 15px\9; /* IE8 and below */
}
/* the following transform to horizontal dividers on mobile */
.twd_vr_right, .twd_vr_right_hideOnMobile {
	box-shadow: inset -1px 0 0 #ccc;
	border-right: solid 1px #ccc\9; /* IE8 and below */
	padding-right: 15px\9; /* IE8 and below */
}
.twd_vr_left, .twd_vr_left_hideOnMobile {
	box-shadow: inset 1px 0 0 #ccc;
	border-left: solid 1px #ccc\9; /* IE8 and below */
	padding-left: 15px\9; /* IE8 and below */
}
.twd_vr_both {
	box-shadow: 0 0px 0px 0px white, 0 0px 0px 0px white, 1px 0 0 #ccc, -1px 0 0 #ccc;
	border-left: solid 1px #ccc\9; /* IE8 and below */
	border-right: solid 1px #ccc\9; /* IE8 and below */
	padding-right: 15px\9; /* IE8 and below */
	padding-left: 150px\9; /* IE8 and below */
}
/* horizontal divider */
#twd_container hr, .twd_hr {
	border: 0;
	height: 0;
	border-bottom: 1px solid #ccc;
}
.twd_hr_dropShadow {
	height: 12px;
	border: 0px none;
	box-shadow: 0px 8px 8px -8px rgba(0, 0, 0, 0.35) inset;
}
/* floats */
.twd_float_left {
	float: left;
}
.twd_float_right {
	float: right;
}
.twd_clearfloat {
	width: 100%;
	clear: both;
}
/* BUTTONS */
.twd_button_blue {
	height: 45px; line-height:22px;
	background-color: #009DDB;
	font-family: 'Avenir Heavy';
	font-size: 18px;
	border: 3px solid #009DDB;
	cursor: pointer;
	color: #fff;
	display: table;
}
.twd_button_blue a {
  	color: inherit;	
	display:table-cell;
	vertical-align:middle;
	width:100%;
	height:100%;
	padding: 0px 29px 0 29px;
	text-align: center!important;
}

.twd_button_blue2 {
	height: 33px; line-height:18px;
	background-color: #009DDB;
	color: #fff;
	font-family: 'Avenir Heavy';
	font-size: 16px;
	border: 3px solid #009DDB;
	cursor: pointer;
	display: table;
}
.twd_button_blue2 a {
  	color: inherit;	
	display:table-cell;
	vertical-align:middle;
	text-align: center!important;
	width:100%;
	height:100%;
	padding: 0 20px 0 20px;
}

.twd_button_blue:hover, .twd_button_blue2:hover {
	color: #079ddb;
	background-color: #fff;
}
.twd_button_orange {
	height: 45px; line-height:22px;
	background-color: #EA7125;
	font-family: 'Avenir Heavy';
	font-size: 18px;
	border: 3px solid #EA7125;
	cursor: pointer;
	color: #fff;
	display: table;
}
.twd_button_orange a {
  	color: inherit;
	display:table-cell;
	vertical-align:middle;
	text-align: center!important;
	width:100%;
	height:100%;
	padding: 0 29px 0 29px;
}

.twd_button_orange2 {
	height: 33px;
	background-color: #EA7125;
	color: #fff;
	font-family: 'Avenir Heavy';
	font-size: 16px;
	border: 3px solid #EA7125;
	cursor: pointer;
	display: table;
}
.twd_button_orange2 a {
  	color: inherit;
	display:table-cell;
	vertical-align:middle;
	text-align: center!important;
	width:100%;
	height:100%;
	padding: 0 20px 0 20px;
}

.twd_button_orange:hover, .twd_button_orange2:hover {
	color: #EA7125;
	background-color: #fff;
}
.twd_button_purple {
	height: 45px; line-height:22px;
	background-color: #5E2D91;
	font-family: 'Avenir Heavy';
	font-size: 18px;
	border: 3px solid #5E2D91;
	cursor: pointer;
	color: #fff;
	display: table;
}
.twd_button_purple a {
  	color: inherit;
	display:table-cell;
	vertical-align:middle;
	text-align: center!important;
	width:100%;
	height:100%;
	padding: 0 29px 0 29px;
}

.twd_button_purple2 {
	height: 33px; line-height:18px;
	background-color: #5E2D91;
	color: #fff;
	font-family: 'Avenir Heavy';
	font-size: 16px;
	border: 3px solid #5E2D91;
	cursor: pointer;
	display: table;
}
.twd_button_purple2 a {
  	color: inherit;
	display:table-cell;
	vertical-align:middle;
	text-align: center!important;
	width:100%;
	height:100%;
	padding: 0 20px 0 20px;
}

.twd_button_purple:hover, .twd_button_purple2:hover {
	color: #5E2D91;
	background-color: #fff;
}

.twd_textLink {
	font-family: 'Avenir Heavy';
	font-size: 20px; padding-right:5px;
}
.twd_textLink:hover {
    color: #666!important;
}
.primary-text-image {
    padding-bottom: 5px;
}
/* TYPOGRAPHY */
#twd_container p, .twd_p {
	color: #666;
	font-family: 'Avenir Light', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.2; margin: 0 0 20px 0;
}
.twd_p_small {
	color: #666;
	font-family: 'Avenir Book', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.2;
}
.twd_p_caption {
	color: #666;
	font-family: 'Avenir Medium', Arial, sans-serif;
	font-size: 12px;
	line-height: 1.2;
}
.twd_seo {
	font-size: 1em;
}
.twd_legal {
	color: #666;
	font-family: 'Avenir Medium', Arial, sans-serif;
	font-size: 12px;
	line-height: 1.2;
}
#twd_container h1, .twd_h1, #twd_container h2, .twd_h2, #twd_container h3, .twd_h3, #twd_container h4, .twd_h4, #twd_container h5, .twd_h5, #twd_container h6, .twd_h6 {
	font-weight: normal;
	font-style: normal;
	padding: 0; margin: 0 0 20px 0;
	color: #666666;
}
#twd_container h1 a, .twd_h1 a, .twd_h2 a, .twd_h3 a, .twd_h4 a, .twd_h5 a, .twd_h6 a {
	font-weight: inherit;
}
#twd_container h1, .twd_h1 {
	font-size: 3em;
	font-family: 'Archer Medium', sans-serif;
}
#twd_container h2, .twd_h2 {
	font-size: 2em;
	font-family: 'Avenir Heavy', Arial, sans-serif;
}
#twd_container h3, .twd_h3 {
	font-size: 1.5em;
	font-family: 'Avenir Heavy', Arial, sans-serif;
}
#twd_container h4, .twd_h4 {
	font-size: 1.125em;
	font-family: 'Avenir Heavy', Arial, sans-serif;
}
#twd_container h5, .twd_h5 {
	font-size: .875em;
	font-family: 'Avenir Heavy', Arial, sans-serif;
}
#twd_container h6, .twd_h6 {
	font-size: .75em;
	font-family: 'Avenir Heavy', Arial, sans-serif;
}
.twd_archerLight {
	font-family: 'Archer Light', sans-serif!important;
}
.twd_archerMedium {
	font-family: 'Archer Medium', sans-serif!important;
}
.twd_avenirHeavy {
	font-family: 'Avenir Heavy', Arial, sans-serif!important;
}
.twd_avenirMedium {
	font-family: 'Avenir Medium', Arial, sans-serif!important;
}
.twd_avenirLight {
	font-family: 'Avenir Light', Arial, sans-serif!important;
}
/* COLORS */
.twd_blue {
	color: #004ebc!important;
}
.twd_purple {
	color: #7961AA!important
}
.twd_aqua {
	color: #009DDB!important
}
.twd_orange {
	color: #EA7125!important
}
.twd_green {
	color: #bfd730!important
}
.twd_pink {
	color: #f499b8!important
}
.twd_white {
	color: #fff!important
}
.twd_darkPurple {
	color: #5E2D91!important
}
.twd_red {
	color: #DC291e!important
}
.twd_lightGray {
	color: #D2D2D2!important
}
.twd_darkGray {
	color: #666!important
}
.twd_backgroundGray {
	color: #F3F3F3;
}
.twd_bg_blue {
	background-color: #004ebc
}
.twd_bg_purple {
	background-color: #7961AA
}
.twd_bg_aqua {
	background-color: #009DDB
}
.twd_bg_orange {
	background-color: #EA7125
}
.twd_bg_green {
	background-color: #bfd730
}
.twd_bg_pink {
	background-color: #f499b8
}
.twd_bg_darkPurple {
	background-color: #5E2D91
}
.twd_bg_red {
	background-color: #DC291e
}
.twd_bg_lightGray {
	background-color: #D2D2D2
}
.twd_bg_darkGray {
	background-color: #666
}
.twd_bg_backgroundGray {
	background-color: #F3F3F3;
}
/* HIDE & SHOW */
.twd_show, .twd_showOnDesktop {
	display: block;
}
.twd_showColumnOnDesktop, .twd_hideColumnOnMobile, .twd_hideColumnOnTablet {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.twd_ie .twd_showColumnOnDesktop, .twd_ie .twd_hideColumnOnMobile, .twd_ie .twd_hideColumnOnTablet {
	display: table-cell; /* IE 9 & below */
}
.twd_hide, .twd_hideColumnOnDesktop, {
	display: none;
}
/* RESPONSIVE 16x9 VIDEOS */
.twd_video16x9 {
	position: absolute;
	display: block;
	max-width: 100%;
	max-height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.twd_video16x9 > div {
	width:100%!important;
	height:100%!important;
}
.twd_videoContainer {
	position: relative;
	height: 0;
	padding: 56.25% 0 0 0;
}
.twd_videoContainer img {
	width: auto/9; /* IE 8 & below */
}

/* Forms */

#twd_container .twd_form_input_label {
	font-family: 'Avenir Heavy';
	font-size: 0.875em;
	margin-bottom: 5px;
}
.twd_form_input {
	border: 1px solid #DEDEDE;
	padding-left:10px;
	font-size: 16px;
	font-family: Helvetica;
	color: #ABABAB;
	height:35px;
}


.twd_form_dropDown select {	
	background: transparent;
   	width: 262px;
	overflow:hidden;
   	padding: 5px;
    font-size: 16px;
   	line-height: 1;
    border: 0;
   	border-radius: 0;
   	height: 35px;	
   	-webkit-appearance: none;
	-moz-appearance: none;
	appearance:none;
	padding-left:10px;	
}
.twd_form_dropDown select:focus::-ms-value {background-color: transparent; color:#000;}

.twd_form_dropDown {
	width: 240px;
   	height: 35px;
   	overflow: hidden;
   	background: url(http://webdevtestserver.com/test/na/forms/dropDownIcon.jpg) no-repeat right #ddd;
   	border: 1px solid #ccc;
	background-color:white;
}

.twd_form_checkBox_content label input {
	display: none;
}
.twd_form_checkBox_content label span.twd_form_checkBox {
	width: 24px;
	height: 25px;
	border: solid 1px #CCC;
	display:inline-block;
	background-color: #F3F3F3;
	position: relative;
}
.twd_form_checkBox_content {
	padding: 10px;
	height:135px;
	width:135px;	
}
.twd_form_checkBox_content [type=checkbox]:checked + span:before {/* <-- style its checked state..with a ticked icon */
  content: '\2714';
  position: absolute;
  top: 0;
  left: 1px;
  font-size:1.5em;
}
#twd_container .twd_form_checkBox_content p {
	margin:0;
	font-size: 14px;
	font-family:'Avenir Medium';
}
#twd_container .twd_form_checkBox_content h4 {
	margin-bottom:5px;;
}
#twd_container .twd_form_checkBox_content a {
	font-size: 14px;
}

.twd_form_submit {
	display: inline-block;
	height:35px;

	padding-left:16px;
	padding-right:16px;
}
.twd_form_input_submit {
	height:35px;
}
.twd_form_input_submit .twd_form_submit {
	position: relative;
	right:6px;
}
/* HERO IMAGES */
.twd_hero {
	height: 220px;
	width: 100%;
	position: relative;
	background: no-repeat top center; background-size: contain;
}
.twd_heroContent {
	position: absolute;
	padding: 0 4% 0 4%;
}
/* Responsive text */
#twd_container .twd_hero h1 {
	font-size: calc( 24px + (24) * ( (100vw - 480px) / ( 1120) ));
}
#twd_container .twd_hero h3 {
	font-size: calc( 16px + (8) * ( (100vw - 480px) / ( 1120) ));
}
#twd_container .twd_hero p {
	font-size: calc( 12px + (4) * ( (100vw - 480px) / ( 1120) ));
	
}
 @media screen and (min-width: 1600px) {
 	#twd_container .twd_hero h1 {
		font-size: 3em;
	}
	#twd_container .twd_hero h3 {
		font-size: 1.5em;
	}
	#twd_container .twd_hero p {
		font-size: 1em;		
	}
 }
.twd_heroContent h1 {
	font-family: 'Archer Medium';
	font-size: 48px;
	color: #666;
	font-weight: normal;
	margin: 0;
	padding: 30px 0 30px 0;
}
.twd_heroSubheader {
	font-family: 'Archer Medium';
	font-size: .5em;
	margin-left: 20px;
}
.twd_heroContent p {
	font-family: 'Avenir Medium', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.2;
}
/* TABLET & MEDIUM SCREENS */
@media screen and (max-width: 1024px) {
#CMSbabyChecklist { /* overwrite CMS styles */
	width: 100%;
	margin: 0 auto;
}
#bru_baby_checklist { /* overwrite CMS styles */
	width: 100%;
	margin: 0 auto;
}
#twd_container {
	max-width: 100%;
}
.twd_heroContent {
	width: 100%;
}

.twd_hero {
	width: 100%;
	position: relative;
	background-size: cover; height:140px;
}
/* change row direction to column on tablet and mobile */
.twd_row.twd_changeColumnDirection {
	flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
}
/* IE 9 and below */
.twd_ie .twd_two.twd_changeColumnDirection, .twd_ie .twd_three.twd_changeColumnDirection, .twd_ie .twd_four.twd_changeColumnDirection, .twd_ie .twd_five.twd_changeColumnDirection, .twd_ie .twd_six.twd_changeColumnDirection, .twd_ie .twd_seven.twd_changeColumnDirection, .twd_ie .twd_eight.twd_changeColumnDirection, .twd_ie .twd_twoThirds1.twd_changeColumnDirection, .twd_ie .twd_twoThirds2.twd_changeColumnDirection, .twd_ie .twd_oneQuarter1.twd_changeColumnDirection, .twd_ie .twd_oneQuarter2.twd_changeColumnDirection {
	width: 100%;
}
.twd_centeredOnTablet {
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center!important;
}
#twd_container p, .twd_p {
	font-size: 15px;
}

.twd_hideColumnOnMobile, .twd_hideColumnOnDesktop {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.twd_ie .twd_hideColumnOnMobile, .twd_ie .twd_hideColumnOnDesktop {
	display: table-cell; /* IE 9 & below */
}
.twd_showOnDesktop, .twd_showColumnOnDesktop, .twd_hideColumnOnTablet {
	display: none;
}
/* change row direction to column */
.twd_changeTabletDirection {
	flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
}
}

/* MOBILE & SMALL SCREENS */
@media all and (max-width: 480px) {
/* OVERWRITE CMS: hide the scroll to top button */
#scrollToTop {
	display: none;
}
.twd_hero {
	background-size:contain; height:220px;
}
.twd_heroContent {
	width: 100%;
}
.twd_heroContent h1 {
	padding: 10px 0 20px 0;
	font-size: 3em;
}
.twd_heroSubheader {
	margin-left: 0;
}
/* change row direction to column */
.twd_row {
	flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
}
/* IE 9 and below */
.twd_ie .twd_two, .twd_ie .twd_three, .twd_ie .twd_four, .twd_ie .twd_five, .twd_ie .twd_six, .twd_ie .twd_seven, .twd_ie .twd_eight, .twd_ie .twd_twoThirds1, .twd_ie .twd_twoThirds2, .twd_ie .twd_oneQuarter1, .twd_ie .twd_oneQuarter2 {
	width: 100%;
}
.twd_centeredOnMobile {
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	text-align: center!important;
}
#twd_container p, .twd_p {
	font-size: 15px;
}
.twd_float_noneOnMobile {
	float: none;
}
.twd_arrow_content {
	line-height: normal;
}
.twd_vr_right_hideOnMobile, .twd_vr_lef t_hideOnMobile {
	box-shadow: none;
}
.twd_vr_right {
	box-shadow: inset 0 -1px 0 #ccc;
	margin-bottom: 20px;
}
.twd_vr_left {
	box-shadow: inset 0 1px 0 #ccc;
	margin-bottom: 20px;
}

.twd_hideColumnOnTablet, .twd_hideColumnOnDesktop {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.twd_ie .twd_hideColumnOnTablet, .twd_ie .twd_hideColumnOnDesktop {
	display: table-cell; /* IE 9 & below */
}
.twd_showOnDesktop, .twd_showColumnOnDesktop, .twd_hideColumnOnMobile {
	display: none;
}
#twd_container .twd_hero h1 {
	font-size: 2em;
}
#twd_container .twd_hero h3 {
	font-size: 16px;
}
#twd_container .twd_hero p {
	font-size: 1em;
	
}
}


/* iPhone 4/5 */
@media all and (max-width: 320px) {
.twd_heroContent h1 {
	font-size: 2.65em;
}
}
/* HERO PROMO SPOTS */
.hero-promo-slots {
	position: absolute;
	bottom: 0px;
	background: rgba(255, 255, 255, 0.93);
	padding-left: 4%;
	padding-right: 4%;
	padding-top: 5px;
	padding-bottom: 5px;
	width: 100vw;
}
.hero-promo-slots h2 {
	font-size: 22px!important;
	color: #009DDB!important;
	margin: 0px!important;
	padding: 0px!important;
	font-family: "Archer Medium"!important;
}
.hero-promo-slots p {
	font-family: "Avenir Light"!important;
	font-size: 13px!important;
	margin: 0!important;
}
.hero-promo-slots .col-md-4:hover {
	cursor: pointer;
}
.hero-promo-slots .col-md-4:hover p {
	color: #009DDB;
	text-decoration: underline;
}
.right-border {
	border-right: 2px solid #ececec;
}
/* paddings and margins */
.twd_paddingStandard {
	padding: 0 4% 0 4%;
}
.twd_padding0 {
	padding: 0;
}
.twd_padding1 {
	padding: 0 1% 0 1%;
}
.twd_padding2 {
	padding: 0 2% 0 2%;
}
.twd_padding3 {
	padding: 0 3% 0 3%;
}
.twd_padding4 {
	padding: 0 4% 0 4%;
}
.twd_padding5 {
	padding: 0 5% 0 5%;
}
.twd_padding6 {
	padding: 0 6% 0 6%;
}
.twd_padding7 {
	padding: 0 7% 0 7%;
}
.twd_padding8 {
	padding: 0 8% 0 8%;
}
.twd_padding8 {
	padding: 0 9% 0 9%;
}
.twd_padding10 {
	padding: 0 10% 0 10%;
}
.twd_margin0 {
	margin: 0;
}
.twd_margin5 {
	margin-bottom: 5px!important;
}
.twd_margin10 {
	margin-bottom: 10px!important;
}
.twd_margin15 {
	margin-bottom: 15px!important;
}
.twd_margin20 {
	margin-bottom: 20px!important;
}
.twd_margin25 {
	margin-bottom: 25px!important;
}
.twd_margin30 {
	margin-bottom: 30px!important;
}
.twd_margin35 {
	margin-bottom: 35px!important;
}
.twd_margin40 {
	margin-bottom: 40px!important;
}
.twd_margin45 {
	margin-bottom: 45px!important;
}
.twd_margin50 {
	margin-bottom: 50px!important;
}
/* Rework of Hide styles */
@media all and (min-width: 1024px) {
	.twd_hideOnDesktop {
		display: none!important;
	}
}
@media all and (max-width:1023px) and (min-width: 480px) {
	.twd_hideOnTablet {
		display: none!important;
	}
}
@media all and (max-width:479px) {
	.twd_hideOnMobile {
		display:none!important;
	}
}