@charset "UTF-8";
/* CSS Document */


/*--------------- Reset -----------------------------*/

*, html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, 
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  vertical-align:baseline;
  box-sizing:border-box;
  -webkit-appearance:none; /* removes weird styling in ios */
  -moz-appearance: none; /* removes weird styling in other mobile browsers */
}



/*------------- Core Styles ---------------------------*/

* {
	font-family: Whitney SSm A, Whitney SSm B, Helvetica, Arial;
	font-display: swap;
	-ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased !important;
}

html{
	height:100%;
	}

body{
	color:#6B7984;
	font-size:14px;
	font-smooth:always;
	font-weight:400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height:100%;
	}

h1{
	font-size:40px;
	font-weight:700;
	color:#2e383d;
	letter-spacing:-2px;
	margin:15px 0 15px 0;
	text-align:center;
	}
	
h2{
	font-size:22px;
	color:#2e383d;
	font-weight:500;
	letter-spacing:-1px;
	margin:15px 0 15px 0;
	text-align:center;
	}
	
h3{
	font-size:20px;
	font-weight:500;
	color:#2e383d;
	letter-spacing:-1px;
	}
	
h4{
	font-size:18px;
	font-weight:500;
	color:#2e383d;
	display:block;
	letter-spacing:0px;
	}
	
h5{
	font-size:16px;
	font-weight:500;
	color:#2e383d;
	display:block;
	}
	
h6{
	font-size:14px;
	font-weight:500;
	color:#2e383d;
	display:block;
	}
	
h1.lineThrough, h2.lineThrough, h3.lineThrough, h4.lineThrough{
  display: table;
  white-space: nowrap;
}

h1.lineThrough:before, h2.lineThrough:before, h3.lineThrough:before, h4.lineThrough:before,
h1.lineThrough:after, h2.lineThrough:after, h3.lineThrough:after, h4.lineThrough:after{
  border-top: 1px solid #c9cacb;
  content: '';
  display: table-cell;
  position: relative;
  top: 0.6em;
  width: 45%;
}

h1.lineThrough:before, h2.lineThrough:before, h3.lineThrough:before, h4.lineThrough:before{
  right: 1.5%;
}

h1.lineThrough:after, h2.lineThrough:after, h3.lineThrough:after, h4.lineThrough:after{
  left: 1.5%;
}

p{
	margin-top:15px;
	margin-bottom:15px;
	line-height: 1.6em;
	}
	
p.topMargin{
	margin-top:40px;
	}
	
p.bottomMargin{
	margin-bottom:40px;
	}
	
img{
	max-width:100%;
	}
	
img.shadow{
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	}
	
a{
	color:#3297d3;
	font-weight:500;
	text-decoration:none;
	}
	
a:hover{
	color:#5d6164;
	}
	
ul, ol{
	margin-top:15px;
	margin-bottom:15px;
	}
	
ul li{
	margin-left:40px;
	margin-bottom:10px;
	list-style-type:circle;	
	line-height: 1.6em;
	text-align:left;
	}
	
ol li{
	margin-left:40px;
	margin-bottom:10px;
	list-style-type:decimal;
	line-height: 1.6em;
	text-align:left;
	}
	
hr{
	border:none;
	border-bottom:1px solid #c9cacb;
	}
	
b, strong{
	font-weight:700 !important;
	}
	
pre{
	padding:10px;
	color:#FFF;
	font-size: 90%;
	background-color:#2e383d;
	border-left:5px solid #27c4f1;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	box-sizing:border-box;
	margin:20px 0 20px 0px;
	overflow:scroll;
	}
	
pre code{
	font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
	}
	
	
	
/*------------- Grid Styles ----------------------*/

.col-row{
	clear:both;
	display:block;
	text-align:center;
	padding-top:5px;
	padding-bottom:5px;
	margin-top:15px;
	margin-bottom:15px;
	}

.col-2{
	display:inline-block;
	box-sizing:border-box;
	text-align:left;
	width:49.5%;
	padding-left:10px;
	padding-right:10px;
	text-align:left;
	vertical-align:top;
	}
	
.col-3{
	display:inline-block;
	box-sizing:border-box;
	text-align:left;
	width:33%;
	padding-left:10px;
	padding-right:10px;
	text-align:left;
	vertical-align:top;
	}
	
.col-4{
	display:inline-block;
	box-sizing:border-box;
	text-align:left;
	width:24.6%;
	padding-left:10px;
	padding-right:10px;
	text-align:left;
	vertical-align:top;
	}
	
.col-2:first-child,
.col-3:first-child,
.col-4:first-child{
	padding-left:0px;
	}
	
.col-2:last-child,
.col-3:last-child,
.col-4:last-child{
	padding-right:0px;
	}
	
	


/*------------- Text Colors ----------------------*/

.whiteText{
	color:#FFF !important;
	}
	
.greyText{
	color:#6B7984 !important;
	}
	
.lightGreyText{
	color:#f9f8f9 !important;
	}

.greenText{
	color:#27AE60 !important;
	}
	
.blueText{
	color:#3297d3 !important;
	}
	
.slickBlueText{
	color:#27c4f1 !important;
	}
	
.redText{
	color:#C4332D !important;
	}
	
.purpleText{
	color:#9B59B6 !important;
	}
	
.orangeText{
	color:#FB7339 !important;
	}
	
.yellowText{
	color:#F1C40F !important;
	}
	
	
/*------------- Border Colors ----------------------*/

.whiteBorder{
	border:#FFF solid 1px !important;
	}
	
.greyBorder{
	border:#6B7984 solid 1px !important;
	}
	
.darkGreyBorder{
	border:#2e383d solid 1px !important;
	}

.lightGreyBorder{
	border:#f9f8f9 solid 1px !important;
	}

.greenBorder{
	border:#27AE60 solid 1px !important;
	}
	
.blueBorder{
	border:#3297d3 solid 1px !important;
	}
	
.slickBlueBorder{
	border:#27c4f1 solid 1px !important;
	}
	
.redBorder{
	border:#C4332D solid 1px !important;
	}
	
.purpleBorder{
	border:#9B59B6 solid 1px !important;
	}
	
.orangeBorder{
	border:#FB7339 solid 1px !important;
	}
	
.yellowBorder{
	border:#F1C40F solid 1px !important;
	}

	
	
/*------------- Background Colors ----------------------*/

.whiteBackground{
	background-color:#FFF;
	}
	
.greyBackground{
	background-color:#6B7984;
	}
	
.darkGreyBackground{
	background-color:#2e383d;
	}

.lightGreyBackground{
	background-color:#f9f8f9;
	}

.greenBackground{
	background-color:#27AE60;
	}
	
.blueBackground{
	background-color:#3297d3;
	}
	
.slickBlueBackground{
	background-color:#27c4f1;
	}
	
.redBackground{
	background-color:#C4332D;
	}
	
.purpleBackground{
	background-color:#9B59B6;
	}
	
.orangeBackground{
	background-color:#FB7339;
	}
	
.yellowBackground{
	background-color:#F1C40F;
	}


/*-------------Button Styles---------------------------*/

.btn-xsmall{
	padding:5px 15px 5px 15px;
	text-align:center;
	letter-spacing: -0.5px;
	display:inline-block;
	border:1px solid #FFF;
	background:transparent;
	color:#FFF;
	text-decoration:none;
	cursor:pointer;
	font-size:13px;
	font-weight:600;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
	}
	
.btn-xsmall:hover{
	color:#FFF;
	opacity: .8;
	}
	

.btn-small{
	padding:8px 15px 8px 15px;
	text-align:center;
	letter-spacing: -0.5px;
	display:inline-block;
	border:1px solid #FFF;
	background:transparent;
	color:#FFF;
	text-decoration:none;
	cursor:pointer;
	font-size:15px;
	font-weight:600;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
	}
	
.btn-small:hover{
	color:#FFF;
	opacity: .8;
	}

	
.btn-medium{
	padding:10px 20px 10px 20px;
	text-align:center;
	letter-spacing: -0.5px;
	display:inline-block;
	border:1px solid #FFF;
	background:transparent;
	color:#FFF;
	text-decoration:none;
	cursor:pointer;
	font-size:16px;
	font-weight:600;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
	}
	
.btn-medium:hover{
	color:#FFF;
	opacity: .8;
	}
	

.btn-large{
	padding:10px 40px 10px 40px;
	text-align:center;
	letter-spacing: -0.5px;
	display:inline-block;
	border:1px solid #FFF;
	background:transparent;
	color:#FFF;
	text-decoration:none;
	cursor:pointer;
	font-size:16px;
	font-weight:600;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
	}
	
.btn-large:hover{
	color:#FFF;
	opacity: .8;
	}

	
/*------------- Button Shadow ---------------------------*/

.btn-xsmall.shadow, .btn-small.shadow,
.btn-medium.shadow, .btn-large.shadow{
	-webkit-box-shadow: 1px 1px 3px #1c1c1c;
	box-shadow: 1px 1px 3px #1c1c1c;
	}	
	
	
/*------------- Button Colors ---------------------------*/
	
	
.btn-xsmall.green, .btn-small.green,
.btn-medium.green, .btn-large.green{
	color:#FFF !important;
	border:none;
	background-color:#27AE60;
	}
	
.btn-xsmall.green.outline, .btn-small.green.outline,
.btn-medium.green.outline, .btn-large.green.outline{
	color:#27AE60 !important;
	border:none;
	background-color:transparent;
	border:1px solid #27AE60;
	}
	
.btn-xsmall.green:hover, .btn-small.green:hover,
.btn-medium.green:hover, .btn-large.green:hover{
	opacity: .8;
	color:#FFF !important;
	}
	
.btn-xsmall.blue, .btn-small.blue,
.btn-medium.blue, .btn-large.blue{
	color:#FFF !important;
	border:none;
	background-color:#3297d3;
	}
	
.btn-xsmall.blue:hover, .btn-small.blue:hover,
.btn-medium.blue:hover, .btn-large.blue:hover{
	opacity: .8;
	color:#FFF !important;
	}
	
.btn-xsmall.slickBlue, .btn-small.slickBlue,
.btn-medium.slickBlue, .btn-large.slickBlue{
	color:#FFF !important;
	border:none;
	background-color:#27c4f1;
	}
	
.btn-xsmall.slickBlue:hover, .btn-small.slickBlue:hover,
.btn-medium.slickBlue:hover, .btn-large.slickBlue:hover{
	opacity: .8;
	color:#FFF !important;
	}
	
.btn-xsmall.red, .btn-small.red,
.btn-medium.red, .btn-large.red{
	color:#FFF !important;
	border:none;
	background-color:#C4332D;
	}
	
.btn-xsmall.red:hover, .btn-small.red:hover,
.btn-medium.red:hover, .btn-large.red:hover{
	opacity: .8;
	color:#FFF !important;
	}
	
.btn-xsmall.purple, .btn-small.purple,
.btn-medium.purple, .btn-large.purple{
	color:#FFF !important;
	border:none;
	background-color:#9B59B6;
	}
	
.btn-xsmall.purple:hover, .btn-small.purple:hover,
.btn-medium.purple:hover, .btn-large.purple:hover{
	opacity: .8;
	color:#FFF !important;
	}
	
.btn-xsmall.orange, .btn-small.orange,
.btn-medium.orange, .btn-large.orange{
	color:#FFF !important;
	border:none;
	background-color:#FB7339;
	}
	
.btn-xsmall.orange:hover, .btn-small.orange:hover,
.btn-medium.orange:hover, .btn-large.orange:hover{
	opacity: .8;
	color:#FFF !important;
	}
	
.btn-xsmall.yellow, .btn-small.yellow,
.btn-medium.yellow, .btn-large.yellow{
	color:#FFF !important;
	border:none;
	background-color:#F1C40F;
	}
	
.btn-xsmall.yellow:hover, .btn-small.yellow:hover,
.btn-medium.yellow:hover, .btn-large.yellow:hover{
	opacity: .8;
	color:#FFF !important;
	}
	
.btn-xsmall.lightGrey, .btn-small.lightGrey,
.btn-medium.lightGrey, .btn-large.lightGrey{
	color:#FFF !important;
	border:none;
	background-color:#b4bbc1;
	}
	
.btn-xsmall.lightGrey:hover, .btn-small.lightGrey:hover,
.btn-medium.lightGrey:hover, .btn-large.lightGrey:hover{
	opacity: .8;
	color:#FFF !important;
	}
	
.btn-xsmall.grey, .btn-small.grey,
.btn-medium.grey, .btn-large.grey{
	color:#FFF !important;
	border:none;
	background-color:#6B7984;
	}
	
.btn-xsmall.grey.outline, .btn-small.grey.outline,
.btn-medium.grey.outline, .btn-large.grey.outline{
	color:#6B7984 !important;
	border:none;
	background-color:transparent;
	border:1px solid #6B7984;
	}
	
.btn-xsmall.grey:hover, .btn-small.grey:hover,
.btn-medium.grey:hover, .btn-large.grey:hover{
	opacity: .8;
	color:#FFF !important;
	}
	
.btn-xsmall.grey.outline:hover, .btn-small.grey.outline:hover,
.btn-medium.grey.outline:hover, .btn-large.grey.outline:hover{
	color:#6B7984 !important;
	}



	
	
/*-------------tables---------------------------*/	

table{
	width:100%;
	padding:0;
	border-spacing:0;
	border-collapse:separate;
	}
	
table thead{
	padding:0;
	}
	
table thead tr td{
	font-weight:700;
	text-transform:uppercase;
	text-align:left;
	background-color:#f9fafc;
	border-top:1px solid #ebecee;
	border-bottom:1px solid #ebecee;
	padding-top:10px;
	padding-bottom:10px;
	vertical-align:middle;
	overflow-wrap:break-word;
	}
	
table thead tr td.center{
	text-align:center;
	}
	
table thead tr td.noBorder{
	border:none;
	}
	
table thead tr td .fa{
	font-size:18px;
	}

	
table tbody tr:hover {
   background-color:#fcfdfe;
}

table tbody tr:last-child:hover {
   background-color:transparent;
}
	
table tbody tr td{
	border-bottom:1px solid #e9e8e9;
	padding-top:7px;
	padding-bottom:7px;
	text-align:left;
	vertical-align:middle;
	overflow-wrap:break-word;
	}
	
table tbody tr:last-child td{
	border:none;
	}
	
table.paddedRows tbody tr td{
	padding-top:15px;
	padding-bottom:15px;
	}
	
table tbody tr td.center{
	text-align:center;
	}
	
table tbody tr td.noBorder{
	border:none !important;
	}
	
table tr td:first-child{
	padding-left:10px;
	}
	
table tr td:last-child{
	padding-right:10px;
	text-align:right;
	}
	
table tr td:first-child ~ :not(.mobileHide){
	padding-left:10px;
	}
	
table tr td .emptyTableContainer img{
	max-width:210px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:20px;
	display:block;
	}
	
table tr td .emptyTableContainer{
	padding:30px 0px;
	text-align:center;
	}
	
	
/*-------------Form Styles----------------------*/

form{
	text-align:left;
	width:auto;
	}
	
form .form-group{
	display:block;
	clear:both;
	}
	
form .form-group.textRight{
	text-align:right;
	}
	
form .form-group.half{
	display:inline-block;
	width:48%;
	}
	
form .form-group.half.left{
	float:left;
	clear:none;
	}
	
form .form-group.half.right{
	float:right;
	clear:none;
	}

form .form-group input[type=text], input[type=text],
form .form-group input[type=tel], input[type=tel],
form .form-group input[type=date], input[type=date],
form .form-group input[type=password], input[type=password],
form .form-group input[type=checkbox], input[type=checkbox],
form .form-group textarea, textarea{
	-moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-image: none;
    -webkit-border-radius: 5px;
	border-radius: 5px;
    border: 1px solid #c8cdd1;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    font-size: 14px;
	font-weight:700;
    padding: 8px 10px;
    min-width: 100px;
	width:100%;
	color:#6B7984;
	margin-bottom:10px;
	box-sizing:border-box;
	background-color: #fbfbfb;
	}

/* Prevent Chrome from using their default datepicker */	
form .form-group input[type=date]::-webkit-calendar-picker-indicator, input[type=date]::-webkit-calendar-picker-indicator{
	 display: none;
	}
	
form .form-group input[type=date]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder{
	visibility: hidden !important;
	}


/* Set color of placeholder text */		
form .form-group input::-webkit-input-placeholder, input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #6b7984;
	opacity:.3;
	}

form .form-group input::-moz-placeholder, input::-moz-placeholder { /* Firefox 19+ */
	color: #6b7984;
	opacity:.3;
	}

form .form-group input:-ms-input-placeholder, input:-ms-input-placeholder { /* IE 10+ */
  	color: #6b7984;
	opacity:.3;
	}

form .form-group input:-moz-placeholder, input:-moz-placeholder { /* Firefox 18- */
  	color: #6b7984;
	opacity:.3;
	}
	
form .form-group input[type=text].threeQuarter, input[type=text].threeQuarter,
form .form-group input[type=tel].threeQuarter, input[type=tel].threeQuarter,
form .form-group input[type=date].threeQuarter, input[type=date].threeQuarter,
form .form-group input[type=password].threeQuarter, input[type=password].threeQuarter,
form .form-group input[type=checkbox].threeQuarter, input[type=checkbox].threeQuarter,
form .form-group textarea.threeQuarter, textarea.threeQuarter,
form .form-group select.threeQuarter, select.threeQuarter{
	width:75%;
	}
	
form .form-group input[type=text].half, input[type=text].half,
form .form-group input[type=tel].half, input[type=tel].half,
form .form-group input[type=date].half, input[type=date].half,
form .form-group input[type=password].half, input[type=password].half,
form .form-group input[type=checkbox].half, input[type=checkbox].half,
form .form-group textarea.half, textarea.half,
form .form-group select.half, select.half{
	width:50%;
	}
	
form .form-group input[type=text].quarter, input[type=text].quarter,
form .form-group input[type=tel].quarter, input[type=tel].quarter,
form .form-group input[type=date].quarter, input[type=date].quarter,
form .form-group input[type=password].quarter, input[type=password].quarter,
form .form-group input[type=checkbox].quarter, input[type=checkbox].quarter,
form .form-group textarea.quarter, textarea.quarter,
form .form-group select.quarter, select.quarter{
	width:25%;
	}
	
form .form-group input[type=text].fifth, input[type=text].fifth,
form .form-group input[type=tel].fifth, input[type=tel].fifth,
form .form-group input[type=date].fifth, input[type=date].fifth,
form .form-group input[type=password].fifth, input[type=password].fifth,
form .form-group input[type=checkbox].fifth, input[type=checkbox].fifth,
form .form-group textarea.fifth, textarea.fifth,
form .form-group select.fifth, select.fifth{
	width:15%;
	}
	
form .form-group textarea, textarea{
	min-height:125px;
	}
	
form .form-group select, select{
	-moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-image: none;
    -webkit-border-radius: 5px;
	border-radius: 5px;
    border: 1px solid #c8cdd1;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    font-size: 14px;
	font-weight:700;
    padding: 8px 25px 8px 10px;
    min-width:65px;
	max-width:100%;
	color:#6B7984;
	margin-bottom:10px;
	cursor:pointer;
	box-sizing:border-box;
	background-color: #f9f8f9;
	background-image:url(assets/select-arrow-down-grey.svg);
	background-position:center right 7px;
	background-repeat:no-repeat;
	background-size:10px;
	}
	
form .form-group select.small, select.small{
	padding: 3px 25px 3px 10px;
	}
	
form .form-group input[type=checkbox], input[type=checkbox]{
	width:auto;
	min-width:0px;
	margin-right:10px;
	cursor:pointer;
	-webkit-appearance:checkbox; /* removes weird styling in ios */
 	 -moz-appearance: checkbox; /* removes weird styling in other mobile browsers */
	}
	
form .form-group input[type=radio], input[type=radio]{
	width:auto;
	min-width:0px;
	margin-right:10px;
	cursor:pointer;
	-webkit-appearance:radio; /* removes weird styling in ios */
 	 -moz-appearance: radio; /* removes weird styling in other mobile browsers */
	}
	
form .form-group input[type=text]:focus, form .form-group input[type=tel]:focus, form .form-group input[type=password]:focus, form .form-group select:focus, form .form-group textarea:focus{
	border: 1px solid #80D3EF;
    box-shadow:  0 0 5px #80D3EF;
    outline: medium none;
	}
	
form .form-group label, label{
	text-align:left;
	font-size:14px;
	color:#6B7984;
	font-weight:500;
	display:inline-block;
	margin-bottom:2px;
	opacity:.6;
	}
	
form .form-group ul.errors{
	padding:10px 0 10px 0;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color:#c4332d;
	font-weight:500;
	}
	
form .form-group ul.errors li{
	color:#FFF;
	margin-left:20px;
	margin-bottom:0px;
	list-style-type:none;
	}
	
form.vertical .form-group{
	margin-bottom:10px;
	}

	
form.vertical .form-group label{
	display:block;
	margin-bottom:2px;
	}
	
	
form.horizontal .form-group label{
	text-align:right;
	font-weight:400;
	display:inline-block;
	margin-right:10px;
	width:25%;
	}

	
form.horizontal .form-group input[type=text], form.horizontal .form-group input[type=tel], form.horizontal .form-group input[type=password], form.horizontal .form-group select, form.horizontal .form-group textarea{
	width:70%;
	vertical-align:top;
	}
	
form.inline{
	
	}
	
form.inline .form-group{
	display:inline-block;
	vertical-align:top;
	}
	
form.inline .form-group label{
	margin-bottom:0;
	display:block;
	}
	
form.inline .form-group input[type=text], form.inline .form-group input[type=tel], form.inline .form-group input[type=password], form.inline .form-group input[type=checkbox], form.inline .form-group select, form.inline .form-group textarea{
	display:inline-block;
	vertical-align:middle;
	margin-bottom:0px;
	width:auto;
	}

	
/*------------- Header & Navigation ---------------------------*/

#navSpacer{
	height:90px;
	}
	
#nav{
	top:0px;
	position:fixed;
	z-index:999;
	padding:0 0 0 0;
	margin:0 0 0 0;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: top .3s ease, background .3s ease;
	-moz-transition: top .3s ease, background .3s ease;
	-ms-transition: top .3s ease, background .3s ease;
	-o-transition: top .3s ease, background .3s ease;
	transition: top .3s ease, background .3s ease;
	background:rgb(255, 255, 255);
	border-bottom:1px solid rgba(201, 202, 203, .5);
	}
	
#nav.fixed{
	top:-28px;
	background:rgb(255, 255, 255) !important; /* Fallback for older browsers without RGBA-support */
	background:rgba(255, 255, 255, .98) !important; /* In case we are overriding the color on other pages */
	-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1) !important;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1) !important;
	border-bottom:1px solid rgba(201, 202, 203, .5);
	}

#nav #utilityNav{
	padding:0 0 0 0;
	margin:0 0 0 0;
	background-color:#f9f8f9;
	}
	
#nav #utilityNav #utilityNavContent{
	padding:0 0 0 0;
	margin:0 auto;
	height:28px;
	}
	
#nav #utilityNav #utilityNavContent ul{
	padding:0 0 0 0;
	margin:0 0 0 0;
	text-align:right;
	}
	
#nav #utilityNav #utilityNavContent ul li{
	list-style-type:none;
	display:inline-block;
	padding:0 0 0 0;
	margin:0 0 0 0;
	}
	
#nav #utilityNav #utilityNavContent ul li a{
	display:inline-block;
	padding:3px 0 3px 15px;
	color:#6b7984;
	font-size:12px;
	font-weight:600;
	}
	
#nav #utilityNav #utilityNavContent ul li a:hover{
	color:#27c4f1;
	}
	
#nav #utilityNav #utilityNavContent ul li a.phone{
	background-image:url('/images/icon_phone_grey.svg');
	background-repeat:no-repeat;
	background-position:left 10px;
	}
	
	
	
	
	
#nav #navContent{
	padding:15px 0 15px 0;
	margin:0 auto;
	height:62px;
	overflow:visible;
	}
	
#nav #navContent a{
	position:relative;
	z-index:1;
	}
	
#nav #navContent a#navLogo{
	float:left;
	}
	
#nav #navContent a img#navLogoLight{
	height:30px;
	display:none;
	}
	
#nav #navContent a img#navLogoDark{
	height:30px;
	}
	
#nav.fixed #navContent a img#navLogoLight{
	display:none !important;
	}
	
#nav.fixed #navContent a img#navLogoDark{
	display:inline-block !important;
	}
	
#nav #navContent ul{
	padding:0 0 0 0;
	margin:0 0 0 0;
	text-align:right;
	}
	
#nav #navContent #navLinks{
	position:relative;
	}
	
#nav #navContent #navLinks #mobileMenuHeader{
	display:none;
	}
	
#nav #navContent #navLinks ul li{
	list-style-type:none;
	display:inline-block;
	padding:0 0 0 0;
	margin:0 0 0 0;
	}
	
#nav #navContent #navLinks ul li a{
	display:inline-block;
	padding:5px 0 5px 18px;
	color:#6b7984;
	font-size:15px;
	}
	
#nav #navContent #navLinks ul li a.mobileDropdownTrigger{
	display: inline-block;
	width: 9px;
	padding:0;
	margin-left:2px;
	}
	
#nav.fixed #navContent #navLinks ul li a{
	color:#6b7984 !important;
	text-shadow:none !important;
	}
	
#nav.fixed #navContent #navLinks ul li a.mobileDropdownTrigger img{
	filter:invert(1);
	opacity:.5;
	}
	
#nav.fixed #navContent #navLinks ul li a.btn-xsmall{
	color:#27c4f1 !important;
	}
	
#nav #navContent #navLinks ul li a.btn-xsmall{
	padding:5px 15px 5px 15px;
	margin-left:20px;
	
	text-shadow:none !important;
	border:1px solid #27c4f1;
	color:#27c4f1;
	}
	
#nav.fixed #navContent #navLinks ul li a.btn-xsmall{
	border:1px solid #27c4f1;
	color:#27c4f1;
	}
	
	
	
	
/*------------- Nav dropdowns ---------------------------*/
	
#nav #navContent #navLinks ul li .dropdownContainer{
	display:none;
	position:absolute;
	padding-top:20px;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer.megaSmall{
	width:100%;
	max-width:500px;
	right:0;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer.megaMedium{
	width:100%;
	max-width:700px;
	right:0;
	}
	
#nav #navContent #navLinks ul li:hover .dropdownContainer{
	display:block;
	
	animation: dropdownSlide .1s ease-in;
	-webkit-animation: dropdownSlide .1s ease-in;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	}
		
	@-webkit-keyframes dropdownSlide {
		0% {
			opacity:0;
			margin-top:100px;
		}
		100% {
			opacity:1;
			margin-top:0px;
		}
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown{
	position:relative;
	padding:20px;
	background-color:#FFF;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09) !important;
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09) !important;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul{
	display:inline-block;
	vertical-align:top;
	padding:0 0 0 0;
	margin:0 0 0 0;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul li{
	padding:0 0 0 0;
	margin:0 0 0 0;
	display:block;
	font-size:15px;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul li.header{
	font-weight:900;
	font-size:16px;
	letter-spacing:-1px;
	margin-bottom:10px;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul li a{
	padding:0;
	margin:0 0 3px 0;
	color:#3297d3 !important;
	text-shadow:none;
	}
	
	
/*------------- Specific Nav Dropdown Stuff ---------------------------*/	
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navFeatures{
	width:45%;
	padding-right:5%;
	border-right:1px solid #c9cacb;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navSolutions{
	margin-left:5%;
	width:45%;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navFeatures li a.btn-small{
	margin-top:20px;
	padding:8px 15px 8px 15px;
	color:#FFF !important;
	display:block;
	width:90%;
	}
	
	
	


#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navIndustries{
	width:35%;
	margin-right:5%;
	border-right:1px solid #c9cacb;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navIndustries li a.btn-small{
	margin-top:20px;
	padding:8px 15px 8px 15px;
	color:#FFF !important;
	display:block;
	width:90%;
	}
	
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navResources{
	width:60%;
	}

#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navResources li.resource{
	overflow:hidden;
	margin-bottom:30px;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navResources li.resource img.icon{
	float:left;
	max-width:40px;
	margin-right:15px;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navResources li.resource a{
	font-weight:900;
	line-height:23px;
	display:block;
	margin-top:-5px;
	margin-bottom:5px;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navResources li.resource p{
	margin:0 0 0 0;
	font-size:13px;
	line-height:15px;
	overflow:hidden;
	}
	
#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navResources li a.btn-small{
	padding:8px 15px 8px 15px;
	color:#FFF !important;
	margin-left:auto;
	margin-right:auto;
	display:block;
	width:80%;
	}
	

	

	
	
		
/*-------------Common Element Styles---------------------------*/
	
.container{
	max-width:1024px;
	padding:10px;
	margin-left:auto;
	margin-right:auto;
	overflow:hidden;
	}
	
.container-full{
	width:100%;
	padding:0px;
	margin-left:auto;
	margin-right:auto;
	}
	
.container.bottomBorder, .container-full.bottomBorder{
	border-bottom:1px solid #e1e1e1;
	}
	
.container.topBorder, .container-full.topBorder{
	border-top:1px solid #e1e1e1;
	}
	
.panel,
.pannel{
	padding:10px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	background-color:#FFF;
	overflow:hidden;
	}
	
.panel.doublePadding{
	padding:20px;
	}
	
.panel.tripplePadding{
	padding:30px;
	}
	
.panel.withHeader,
.panel.noPadding{
	padding:0px;
	}
	
.panel.noShadow{
	-webkit-box-shadow: none;
	box-shadow: none;
	}
	
.panel.withHeader .panelHeader{
	border-bottom:1px solid #ebecee;
	text-align:left;
	width:100%;
	font-size:16px;
	font-weight:500;
	padding:10px 0 10px 10px;
	margin:0 0 0 0;
	}
	
.panel.withHeader.reverseColors .panelHeader{
	background-color:#f9fafc;
	}
	
.panel.withHeader .panelHeader a{
	float:right;
	margin-right:10px;
	font-weight:500;
	font-size:14px;
	margin-top:2px;
	}
	
.panel.withHeader .panelHeader a span{
	margin-left:5px;
	}
	
.panel.withHeader .panelBody{
	padding:10px;
	background-color:#f9fafc;
	margin:0;
	}
	
.panel.withHeader.reverseColors .panelBody{
	background-color:#FFF;
	}
	
.mfp-content .panel{
	margin-top:50px;
	margin-bottom:30px;
	}
	
.textShadow{
	text-shadow: 1px 1px 3px #1c1c1c;
	}
	
.textMessage{
	width:100%;
	min-width:100px;
	max-width:350px;
	min-height:50px;
	text-align:left;
	line-height:1.2em;
	color:#FFF;
	display:inline-block;
	vertical-align:top;
	position:relative;
	padding:10px;
	font-size:15px;
	background-color:#3297d3;
	color:#FFF;
	font-weight:500;
	-webkit-border-radius: 10px 10px 0px 10px;
	border-radius: 10px 10px 0px 10px;
	margin-top:2px;
	white-space:pre-wrap;
	overflow-wrap:break-word;
	
}

.textMessage.fromLeft{
	-webkit-border-radius: 10px 10px 10px 0px;
	border-radius: 10px 10px 10px 0px;
	}

.textMessage img{
	float:right;
	max-width:150px;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	}
	
.textMessageOutbound{
	max-width:300px;
	color:#474b4f;
	display:inline-block;
	vertical-align:top;
	position:relative;
	padding:10px;
	font-size:14px;
	font-weight:500;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d2d2d2+0,b7b7b7+47,d2d2d2+100 */
	background: #d2d2d2; /* Old browsers */
	background: -moz-linear-gradient(top,  #d2d2d2 0%, #b7b7b7 47%, #d2d2d2 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #d2d2d2 0%,#b7b7b7 47%,#d2d2d2 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #d2d2d2 0%,#b7b7b7 47%,#d2d2d2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2d2d2', endColorstr='#d2d2d2',GradientType=0 ); /* IE6-9 */
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow:  0px 0px 2px 0px ;
	box-shadow:  0px 0px 2px 0px ;
	margin-top:5px;
	margin-right:33.5%;
}
.textMessageOutbound:after {
	content:'';
	position:absolute;
	bottom:-10px;
	right:10px;
	border-width:10px 10px 0;
	border-style:solid;
	border-color:#d2d2d2 transparent;
	display:block;
	width:0;
}

.badge{
	padding:2px 7px 2px 7px;
	margin:0 5px 0 5px;
	font-size:11px;
	font-weight:700;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:0px;
	line-height:inherit;
	vertical-align:middle;
	display:inline;
	-webkit-border-radius: 11px;
	border-radius: 11px;
	
	color:#FFF !important;
	border:none;
	background-color:#6b7984;
	}

	
.badge.green{
	background-color:#27AE60;
	}
	
.badge.slickBlue{
	background-color:#27c4f1;
	}
	
.badge.blue{
	background-color:#3297d3;
	}
	
.badge.red{
	background-color:#C4332D;
	}
	
.badge.purple{
	background-color:#9B59B6;
	}
		
.badge.orange{
	background-color:#FB7339;
	}
	
.badge.yellow{
	background-color:#F1C40F;
	}
		
.badge.grey{
	background-color:#6b7984;
	}
	
.hidden{
	display:none;
	}
	
.desktopHide,
.desktopHideInline,
.desktopHideInlineBlock{
	display:none !important;
	}
	
.mobileCollapse{
	max-height:1000px;
	}
	
.opaque{
	opacity:.3;
	}
	
.opaque:hover{
	opacity:.3 !important;
	}
	
.pulsate{
	-webkit-animation: pulsate 1.5s ease-out;
	-webkit-animation-iteration-count: infinite; 
	}
	
	
@-webkit-keyframes pulsate {
	0% {
		-webkit-transform: scale(0.9, 0.9);
		opacity: 0.4;
	}
	50% {
		-webkit-transform: scale(1.2, 1.2);
		opacity: 1.0;
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		opacity: 0.4;
	}
}

.pulsateFade{
	-webkit-animation: pulsateFade 1.5s ease-out;
	-webkit-animation-iteration-count: infinite; 
	}
	
	
@-webkit-keyframes pulsateFade {
	0% {
		opacity: 0.6;
	}
	50% {
		opacity: 1.0;
	}
	100% {
		opacity: 0.6;
	}
}

.fadeIn{
	-webkit-animation: fadeIn 1s ease-in;
	
	}
		
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0.0;
	}
	50% {
		opacity: .5;
	}
	100% {
		opacity: 1;
	}
}
	
.protip{
	opacity:.5;
	}
	
.demoElement,
.fa.demoElement, /* important */	
.demoElementContent,
#mobileDashboardGuideBlanket{
	display:none;
}

.clearBoth{
	clear:both;
	}
	
.opaque{
	opacity:.3;
	}
	
.opaque:hover{
	opacity:.3 !important;
	}
	
.pulsate{
	-webkit-animation: pulsate 1.5s ease-out;
	-webkit-animation-iteration-count: infinite; 
	}
	
	
@-webkit-keyframes pulsate {
	0% {
		-webkit-transform: scale(0.9, 0.9);
		opacity: 0.4;
	}
	50% {
		-webkit-transform: scale(1.2, 1.2);
		opacity: 1.0;
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		opacity: 0.4;
	}
}

.pulsateFade{
	-webkit-animation: pulsateFade 1.5s ease-out;
	-webkit-animation-iteration-count: infinite; 
	}
	
	
@-webkit-keyframes pulsateFade {
	0% {
		opacity: 0.6;
	}
	50% {
		opacity: 1.0;
	}
	100% {
		opacity: 0.6;
	}
}
	
.protip{
	opacity:.5;
	}
	
.demoElement,
.fa.demoElement, /* important */	
.demoElementContent,
#mobileDashboardGuideBlanket{
	display:none;
}

.heroBkgGraphic{
	background-image: url("../images/common/hero_bkg.svg");
	background-position:bottom;
	background-size:100%;
	background-repeat:no-repeat;
	background-color:#3297d3;
	padding-bottom:25px;	
}

.heroBkgGraphic h1,
.heroBkgGraphic h2,
.heroBkgGraphic h3,
.heroBkgGraphic p{
	color:#FFF;
	}



/*------------- FAQs -----------------*/

#faqsContainer .faq{
	padding:10px 20px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	background-color:#FFF;
	overflow:hidden;
	margin-bottom:15px;
	}

#faqsContainer .faq h3{
	font-size:16px;
	font-weight:900;
	letter-spacing:-.5px;
	cursor:pointer;
	padding:5px 0;
	}
	
#faqsContainer .faq h3 span{
	max-width:90%;
	display:inline-block;
	}
	
#faqsContainer .faq h3 .arrow{
	width:15px;
	margin-top:5px;
	float:right;
	}
	
#faqsContainer .faq .faqContent{
	display:none;
	}
	
#faqsContainer .faq .faqContent p{
	margin-top:10px;
	font-weight:500;
	}


/*------------- Stories Carousel -----------------*/

#storiesContainer{
	width:100%;
	padding:20px;
	height:300px;
	position:relative;	
}

#storiesContainer #stories{
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	background-color:#FFF;
	overflow:hidden;
	position:relative;
	height:100%;
	}
	
#storiesContainer #stories ul#storyLogos{
	width:40%;
	height:100%;
	display:inline-block;
	vertical-align:top;
	margin:0 0 0 0;
	padding:0 0 0 0;
	list-style-type:none;
	position:relative;
	background-color:#3e4042;
	z-index:1;
}

#storiesContainer #stories ul#storyLogos li:before{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #3e4042;
    opacity: .6;
	}

#storiesContainer #stories ul#storyLogos li{
	height:100%;
	width:100%;
	margin:0 0 0 0;
	padding:0 32px 0 0; /* matches half the width of the ::before item below */
	list-style-type:none;
	position:absolute;
	opacity:0;
	display: flex;
  	justify-content: center;
  	align-items: center;
	overflow:hidden;
	
	background-color:#3e4042;
	background-position: center center;
	background-repeat:no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	-webkit-transition: opacity .5s ease;
	-moz-transition: opacity .5s ease;
	-ms-transition: opacity .5s ease;
	-o-transition: opacity .5s ease;
	transition: opacity .5s ease;
}

#storiesContainer #stories ul#storyLogos li.active{
	opacity:1;
	}

#storiesContainer #stories ul#storyLogos li img{
	max-width:50%;
	max-height:50%;
	position:relative;
}

#storiesContainer #stories ul#storyContents::before{
	content:"";
	width: 64px;
	bottom:0;
	left:-63px; /* 1px to prevent against gap */
  	height: 105%;
	position:absolute;
  	clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
	background:#FFF;
	z-index:2;
}

#storiesContainer #stories ul#storyContents{
	width:60%;
	height:100%;
	display:inline-block;
	vertical-align:top;
	margin:0 0 0 0;
	padding:0 0 0 0;
	list-style-type:none;
	white-space:nowrap;
	position:relative;
}

#storiesContainer #stories ul#storyContents li{
	height:100%;
	margin:0 0 0 0;
	padding:20px 60px;
	list-style-type:none;
	display:inline-block;
	white-space:normal;
	
	transform: translateX(100%);
	
	-webkit-transition: transform .5s ease;
	-moz-transition: transform .5s ease;
	-ms-transition: transform .5s ease;
	-o-transition: transform .5s ease;
	transition: transform .5s ease;
}

#storiesContainer #stories ul#storyContents li .contentContainer{
	height:100%;
	display:table;
}

#storiesContainer #stories ul#storyContents li .contentContainer .content{
	display:table-cell;
	vertical-align:middle;
}

#storiesContainer #stories ul#storyContents li .contentContainer .content p{
	margin:0 0 10px 0;
}

#storiesContainer a.previous,
#storiesContainer a.next{
	max-width:80%;
	position:absolute;
	z-index:2;
	top:calc(50% - 20px);
	width:40px;
	height:40px;
	background:#FFF;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.09);
	text-align:center;
}

#storiesContainer a.previous{
	left:0px;
}

#storiesContainer a.next{
	right:0px;
}

#storiesContainer a.previous img
{
	height:20px;
	margin-top:10px;
	margin-left:-3px;
}

#storiesContainer a.next img{
	height:20px;
	margin-top:10px;
	margin-right:-3px;
}


/*-------------Engager---------------------------*/

#engager{
	background-color: #27c4f1;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%233297d3' fill-opacity='0.87' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
		
	padding-top:40px;
	padding-bottom:40px;
	}

#engager #engagerContent{
	text-align:center;
	margin-bottom:30px;
	}
	
#engager #engagerContent h4{
	font-weight:700;
	font-size:30px;
	letter-spacing:-1px;
	color:#FFF;
	margin-bottom:5px;
	}
	
#engager #engagerContent h5{
	color:#FFF;
	font-size:16px;
	}
	
#engager #engagerButtons{
	text-align:center;
	}
	
#engager #engagerButtons a{
	margin:5px;
	min-width:250px;
	}
	
	
/*-------------Excellent Hands---------------------------*/

#excellentHands{
	text-align:center;
	padding-top:30px;
	padding-bottom:30px;
	}
	
#excellentHands .container h4{
	color:#27AE60;
	letter-spacing:-1px;
	font-size:18px;
	font-weight:500;
	margin-bottom:0px;
	}
	
#excellentHands .container #footerLogos{
	padding-top:20px;
	}
		
#excellentHands .container #footerLogos img{
	vertical-align:middle;
	margin:0 40px 0 40px;
	}
	
#excellentHands .container #footerLogos img:first-of-type{
	margin-left:0px;	
	}
	
#excellentHands .container #footerLogos img:last-of-type{
	margin-right:0px;	
	}



/*------------- footer ---------------------------*/
	
#footer{
	background-color:#2e383d;
	color:#FFF;
	}
	
#footer a{
	color:#808689;
	}

#footerLinksIframe{
	width:100%;
	}



#footerLinks{
	
	}

#footerLinks #footerLinksContent{
	width:100%;
	text-align:center;
	padding-bottom:10px;
	}
	
#footerLinks #footerLinksContent > ul{
	display:flex;
	justify-content:space-between;
	width:100%;
	padding:0 0 0 0;
	margin:0 0 0 0;
	}
	
#footerLinks #footerLinksContent ul li{
	list-style-type:none;
	margin:0 0 10px 0;
	padding:0 0 0 0;
	}
	
#footerLinks #footerLinksContent ul li h3{
	color:#27c4f1;
	font-size:18px;
	font-weight:700;
	margin-bottom:10px;
	margin-top:0px;
	border:none;
	}
	
#footerLinks #footerLinksContent ul li.spacer{
	height:22px;
	}
	
#footerLinks #footerLinksContent ul li a{
	color:#FFF;
	font-weight:500;
	opacity:.8;
	}
	
#footerLinks #footerLinksContent ul li a:hover{
	opacity:.5;
	}
	

#footerBottomIframe{
	width:100%;
	margin-top:35px;
	margin-bottom:15px;
	border-top: 1px solid #4b5457;
	}

#footerBottom{
	margin-bottom:5px;
	padding-top:20px;
	border-top:1px solid #4b5457;
	}
	
#footerBottom #footerBottomContent{
	color:#808689;
	padding-bottom:20px;
	}
	
#footerBottom #footerBottomContent .col-row{
	margin:0 0 0 0;
	}
	
#footerBottom #footerBottomContent .col-row .col-2:first-child{
	display:inline-block;
	text-align:left;
	vertical-align:top;
	}
	
#footerBottom #footerBottomContent .col-row .col-2:first-child #footerSocialIcons{
	margin-bottom:15px;
	}
	
#footerBottom #footerBottomContent .col-row .col-2:first-child #footerSocialIcons img{
	margin-right:15px;
	}
		
#footerBottom #footerBottomContent .col-row .col-2:last-child{
	display:inline-block;
	text-align:right;
	vertical-align:top;
	}
	
#footerBottom #footerBottomContent .col-row .col-2:last-child #appStore,
#footerBottom #footerBottomContent .col-row .col-2:last-child #playStore{
	width:140px;
	vertical-align:top;
	}
	
#footerBottom #footerBottomContent .col-row .col-2:last-child #playStore{
	margin-left:15px;
	}
	
#footerBottom #footerBottomContent .col-row .col-2:last-child #copyright{
	font-size:12px;
	opacity:.7;
	margin-bottom:60px;
	}
		
#footerBottom #footerBottomContent .col-row .col-2:first-child .miniTerms{
	font-size:12px;
	opacity:.7;
	margin-bottom:15px;
	}
	
#footerBottom #footerBottomContent .col-row .col-2:first-child .miniTerms a{
	text-decoration:underline;
	}



/*------------- Lead Gen Popup ---------------------------*/

#contactModal{
	max-width:500px;
	margin-left:auto;
	margin-right:auto;
	margin-top:60px;
	margin-bottom:60px;
	padding:10px 35px 10px 35px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	text-align:center;
	}
	
#contactModal h3{
	font-size:26px;
	font-weight:700;
	color:#27AE60;
	text-align:center;
	padding:15px 0 15px 0;
	}
	
#contactModal p{
	text-align:left;
	}
	
#contactModal select{
	width:60%;
	display:block;
	}
	
#contactModal .error{
	color:#c4332d;
	text-align:left;
	font-weight:500;
	margin-top:15px;
	}
	
#contactModal .error:empty{
	display:none;
	}
	
#contactModal input[name=address]{
	display:none;
	}
	
#contactModal input[type=submit]{
	width:100%;
	}
	
#contactModal #contactModalFormThankYou{
	display:none;
	text-align:center;
	padding-bottom:20px;
	}
	
#contactModal #contactModalFormThankYou p{
	text-align:center;
	margin-top:0px;
	}
	
/*-------------Media Queries---------------------------*/


@media all and (max-width: 768px) {
	body{
		font-size:16px;	
	}
	
	body.fixed{
		overflow:hidden;
		height:100%;
		height:100vh;
	}
	
	h1.lineThrough, h2.lineThrough, h3.lineThrough, h4.lineThrough{
	  display: block;
	  white-space:normal;
	  text-align:center;
	}
	
	h1.lineThrough:before, h2.lineThrough:before, h3.lineThrough:before, h4.lineThrough:before{
	  display:none;
	}
	
	h1.lineThrough:after, h2.lineThrough:after, h3.lineThrough:after, h4.lineThrough:after{
	  display:none;
	}
	
	.container{
		padding-left:20px;
		padding-right:20px;	
	}
	
	.col-row{
		display:block;
		margin-left:auto;
		margin-right:auto;
		width:100%;
		max-width:500px;	
	}
	
	.col-2, .col-3, .col-4{
		width:100% !important;
		display:block;
		margin-bottom:50px !important;
		padding-left:0px;
		padding-right:0px;
		}
		
	.btn-xsmall, .btn-small,
	.btn-medium, .btn-large{
		padding:20px 40px;
		}
	
	.btn-large.responsive, .btn-medium.responsive,
	.btn-small.responsive, .btn-xsmall.responsive,
	form.responsive, table.responsive{
		width:100% !important;
		}
		
	form .form-group.half{
		width:100%;
		}
		
	form .form-group.half.left,
	form .form-group.half.right{
		float:none;
		}
		
	form .form-group input[type=text], input[type=text],
	form .form-group input[type=tel], input[type=tel],
	form .form-group input[type=date], input[type=date],
	form .form-group input[type=password], input[type=password],
	form .form-group select, select,
	form .form-group textarea, textarea{
		padding: 15px 10px;
		font-size:16px;
		
		/* Allow text selection on items in mobile */
		-webkit-user-select: auto;  /* Chrome all / Safari all */
		-moz-user-select: auto;     /* Firefox all */
		-ms-user-select: auto;      /* IE 10+ */
		user-select: auto; 
		}
		
	form.horizontal.responsive .form-group label{
		text-align:left;
		width:auto !important;
		}
	
	form.horizontal .form-group input[type=text],
	form.horizontal .form-group input[type=tel], 
	form.horizontal .form-group input[type=password],
	form.horizontal .form-group select,
	form.horizontal .form-group textarea{
		width:100% !important;
		vertical-align:top;
		}
	
	form.inline .form-group{
		display:block;
		margin-bottom:10px;
		vertical-align:middle;
		}
	
	form.inline .form-group label{
		margin-bottom:5px;
		margin-right:10px;
		}
	
	form.inline .form-group input[type=text],
	form.inline .form-group input[type=tel],
	form.inline .form-group input[type=password],
	form.inline .form-group select,
	form.inline .form-group textarea{
		display:inline-block;
		vertical-align:middle;
		margin-bottom:0px;
		width:100% !important;
		}
	
	form .form-group select{
	width:100% !important;	
	}
		
	form .form-group input[type=text].threeQuarter, input[type=text].threeQuarter,
	form .form-group input[type=tel].threeQuarter, input[type=tel].threeQuarter,
	form .form-group input[type=date].threeQuarter, input[type=date].threeQuarter,
	form .form-group input[type=password].threeQuarter, input[type=password].threeQuarter,
	form .form-group input[type=checkbox].threeQuarter, input[type=checkbox].threeQuarter,
	form .form-group textarea.threeQuarter, textarea.threeQuarter,
	form .form-group select.threeQuarter, select.threeQuarter{
	width:100% !important;
	}
		
	form .form-group input[type=text].half, input[type=text].half,
	form .form-group input[type=tel].half, input[type=tel].half,
	form .form-group input[type=date].half, input[type=date].half,
	form .form-group input[type=password].half, input[type=password].half,
	form .form-group input[type=checkbox].half, input[type=checkbox].half,
	form .form-group textarea.half, textarea.half,
	form .form-group select.half, select.half{
	width:100% !important;
	}
		
	form .form-group input[type=text].quarter, input[type=text].quarter,
	form .form-group input[type=tel].quarter, input[type=tel].quarter,
	form .form-group input[type=date].quarter, input[type=date].quarter,
	form .form-group input[type=password].quarter, input[type=password].quarter,
	form .form-group input[type=checkbox].quarter, input[type=checkbox].quarter,
	form .form-group textarea.quarter, textarea.quarter,
	form .form-group select.quarter, select.quarter{
	width:100% !important;
	}
		
	form .form-group input[type=text].fifth, input[type=text].fifth,
	form .form-group input[type=tel].fifth, input[type=tel].fifth,
	form .form-group input[type=date].fifth, input[type=date].fifth,
	form .form-group input[type=password].fifth, input[type=password].fifth,
	form .form-group input[type=checkbox].fifth, input[type=checkbox].fifth,
	form .form-group textarea.fifth, textarea.fifth,
	form .form-group select.fifth, select.fifth{
	width:100% !important;
	}
		
	form .form-group textarea, textarea{
	min-height:175px;
	}
	
	form .form-group select.small, select.small{
	padding: 8px 25px 8px 10px;
	}
		
	
	#navSpacer{
	height:62px;
	}
	
	#nav #utilityNav{
		display:none;	
	}
	
	#nav.fixed{
		top:0px;	
	}
	
	#nav #navContent{
		padding-left:20px;
		padding-right:20px;
		
	}
	
	#nav #navContent #mobileMenuBtnOpen{
	display:block;
	float:right;
	background-image: url("../images/icon_mobilemenu_grey.png");
	background-size:26px 21px;
	background-repeat:no-repeat;
	background-position:right;
	padding-left:100px;
	height:21px;
	width:26px;
	margin-top:5px;
	
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
	
	-webkit-touch-callout: none;
	
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	}
	
	#nav.fixed #navContent #mobileMenuBtnOpen{
	background-image: url("../images/icon_mobilemenu_grey.png");
	}
	
	#nav #navContent #navLinks{
		position:fixed;
		z-index:2;
		top:0;
		right:-110%;
		width:100%;
		height:100vh;
		height:100%;
		background-color: #27c4f1;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%233297d3' fill-opacity='0.87' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
		
		padding:20px;
		-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
		box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
		
		display:block;
		overflow:scroll;
		-webkit-transition: right .2s ease;
		-moz-transition: right .2s ease;
		-ms-transition: right .2s ease;
		-o-transition: right .2s ease;
		transition: right .2s ease;
	}
	
	#nav #navContent #navLinks.active{
		right:0;
		-webkit-overflow-scrolling: touch;
	}
	
	#nav #navContent #navLinks #mobileMenuHeader{
	display:block;
	padding-bottom:12px;
	margin-bottom:10px;
	border-bottom:1px solid rgba(255, 255, 255, .4);
	overflow:hidden;
	}
	
	#nav #navContent #navLinks #mobileMenuHeader #mobileMenuLinksLogo{
	display:block;
	background-image: url("../images/logo_main_mobile_links_menu.png");
	background-size:45px 41px;
	background-repeat:no-repeat;
	height:41px;
	width:45px;
	margin-top:0px;
	float:left;
	
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
	
	-webkit-touch-callout: none;
	}
	
	#nav #navContent #navLinks #mobileMenuHeader #mobileMenuBtnClose{
	display:block;
	float:right;
	background-image: url("../images/icon_mobilemenux.png");
	background-size:24px 24px;
	background-repeat:no-repeat;
	background-position:right;
	padding-left:100px;
	height:24px;
	width:24px;
	margin-top:5px;
	
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
	
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	
	-webkit-touch-callout: none;
	}
	
	#nav #navContent #navLinks ul{
		text-align:left;
	}
	
	#nav #navContent #navLinks ul li{
		display:block;
	}
	
	#nav #navContent #navLinks ul li.tabletHide{
		display:block !important;
	}
	
	#nav #navContent #navLinks ul li a,
	#nav.fixed #navContent #navLinks ul li a,
	#nav #navContent #navLinks ul li a:hover,
	#nav.fixed #navContent #navLinks ul li a:hover{
		color:#FFF !important;
		font-size:20px;
		text-shadow:none !important;
		padding:10px 0px;
		font-weight:700;
	}
	
	#nav #navContent #navLinks ul li a.mobileDropdownTrigger{
		display:inline-block;
		width:auto;
		padding-top:10px;
		padding-bottom:10px;
		padding-left:40px;
		float:right;
		
		-webkit-tap-highlight-color: rgba(0,0,0,0);
		-webkit-tap-highlight-color: transparent;
	}
	
	#nav #navContent #navLinks ul li a.mobileDropdownTrigger img{
		max-width:25px;
	}
	
	#nav.fixed #navContent #navLinks ul li a.mobileDropdownTrigger img{
		filter:none;
		opacity:1;
	}
	
	#nav #navContent #navLinks ul li a.mobileDropdownTrigger.active img{
		-webkit-transform: rotate(180deg);     /* Chrome and other webkit browsers */
		-moz-transform: rotate(180deg);        /* FF */
		-o-transform: rotate(180deg);          /* Opera */
		-ms-transform: rotate(180deg);         /* IE9 */
		transform: rotate(180deg); 
	}
	
	#nav #navContent #navLinks ul li a.btn-xsmall,
	#nav.fixed #navContent #navLinks ul li a.btn-xsmall{
	color:#FFF !important;
	border-color:#FFF !important;
	padding:15px 20px;
	margin:20px 0 0 0;	
	width:100%;
	}
	
	
	
	
	
	
	#nav #navContent #navLinks ul li .dropdownContainer,
	#nav.fixed #navContent #navLinks ul li .dropdownContainer,
	#nav #navContent #navLinks ul li:hover .dropdownContainer,
	#nav.fixed #navContent #navLinks ul li:hover .dropdownContainer{
		overflow:hidden;
		display:block;
		max-height:0px;
		max-width:100% !important;
		position:relative;
		padding:0 0 0 0;
		margin:0 0 0 0;
		animation: none;
		-webkit-animation: none;
		
		-webkit-transition: all .2s ease;
		-moz-transition: all .2s ease;
		-o-transition: all .2s ease;
		transition: all .2s ease;
	}
	
	#nav #navContent #navLinks ul li .dropdownContainer.active,
	#nav #navContent #navLinks ul li:hover .dropdownContainer.active,
	#nav.fixed #navContent #navLinks ul li .dropdownContainer.active,
	#nav.fixed #navContent #navLinks ul li:hover .dropdownContainer.active{
		max-height:1000px;
		overflow:scroll;
	}
	
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown,
	#nav.fixed #navContent #navLinks ul li .dropdownContainer .dropdown{
		border:none;
		box-shadow:none !important;
		-webkit-box-shadow:none !important;
		background-color:#FFF;
		background-image:none;
	}
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul{
		margin-bottom:30px;
	}
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul li.header,
	#nav.fixed #navContent #navLinks ul li .dropdownContainer .dropdown ul li.header{
		color:#6B7984 !important;
		font-size:20px;
		margin-bottom:0px;
	}
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul li a,
	#nav.fixed #navContent #navLinks ul li .dropdownContainer .dropdown ul li a{
		color:#27c4f1 !important;
		font-size:16px;
		padding:7px 0 7px 0px;
	}
	
	
	/*------------- Specific Nav Dropdown Stuff ---------------------------*/	
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navFeatures{
		width:100%;
		padding:0 0 20px 0;
		margin:0 0 0 0;
		border-right:none;
		border-bottom:1px solid #c9cacb;
		}
		
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navSolutions{
		padding:20px 0 0 0;
		margin:0 0 0 0;
		width:100%;
		}
		
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navFeatures li a.btn-small{
		margin-left:auto;
		margin-right:auto;
		width:90%;
		}
	
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navIndustries{
		width:100%;
		border-right:none;
		margin-right:0px;
		padding-bottom:30px;
		border-bottom:1px solid #c9cacb;
	}
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navIndustries li:not(.header){
		width:48%;
		display:inline-block;	
	}
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navIndustries li a.btn-small{
		margin-top:0px;
		background-color:#27c4f1 !important;	
	}
	
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navResources{
		width:100%;	
		margin-bottom:0px;
	}
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navResources li.header{
		margin-bottom:20px;
		line-height:19px;	
	}
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navResources li.resource img.icon{
		max-width:30px;
		margin-right:5px;	
	}
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navResources li.resource p{
		overflow:visible;	
	}
	
	#nav #navContent #navLinks ul li .dropdownContainer .dropdown ul#navResources li.resource a.btn-small{
		width:100%;	
	}
	

	#faqsContainer .col-2{
	margin-bottom:0px !important;
	}
	
	#faqsContainer .faq .faqContent p{
	font-size:14px;
	}
	
	#storiesContainer{
		height:auto;
		padding:10px;
	}
	
	#storiesContainer #stories ul#storyLogos{
		width:100%;
		height:125px;
		display:block;
	}
	
	#storiesContainer #stories ul#storyLogos li{
		padding:0;	
	}
	
	#storiesContainer #stories ul#storyLogos li img {
		max-width: 40%;
		max-height: 40%;
	}
	
	#storiesContainer #stories ul#storyContents{
		width:100%;
		height:60%;
		display:block;	
	}
	
	#storiesContainer #stories ul#storyContents::before{
		display:none;	
	}
	
	#storiesContainer #stories ul#storyContents li{
		padding:20px;
		font-size:14px;
		vertical-align:middle;
	}
	
	#storiesContainer a.previous,
	#storiesContainer a.next{
		top:52px;	
	}
	
	#storiesContainer a.previous{
		left:-10px;		
	}
	
	#storiesContainer a.next{
		right:-10px		
	}
	
	
	#engager #engagerContent h4{
		margin-bottom:15px;
		}
		
	#engager #engagerContent h4 br{
		display:none;
		}
		
	#engager #engagerButtons a{
		margin-bottom:15px;
		}
		
	
		
	#excellentHands .container h4{
		font-size:20px;
		margin-bottom:20px !important;
		}
	
	#excellentHands .container #footerLogos img{
		margin:0 15px 10px 15px !important;
		}
	
	
	#footer{
		text-align:center;
		}
	
	#footerLinks #footerLinksContent > ul{
		display:block;
		padding-top:10px;
		}
		
	#footerLinks #footerLinksContent ul li{
		text-align:center;
		margin-bottom:5px;
		}
		
	#footerLinks #footerLinksContent ul li.spacer{
		margin-top:-70px;
		}
		
	#footerLinks #footerLinksContent ul li h3{
		font-size:22px;
		margin-bottom:10px;
		text-align:center;
		}
		
	#footerLinks #footerLinksContent ul li ul{
		margin-bottom:50px;
		}
		
		
		
	#footerBottom #footerBottomContent{
	padding-bottom:10px;
	}
		
	#footerBottom #footerBottomContent .col-row{
	max-width:100%;
	}
		
	#footerBottom #footerBottomContent .col-row .col-2{
	margin-bottom:10px !important;
	text-align:center !important;
	}
		
	#footerBottom #footerBottomContent .col-row .col-2:first-child{
	margin-bottom:20px;
	}
	
	#footerBottom #footerBottomContent .col-row .col-2:first-child #footerSocialIcons img{
	margin-left:8px;
	margin-right:8px;
	}
	
	#footerBottom #footerBottomContent .col-row .col-2:last-child{
	text-align:center;	
	}
	
	#footerBottom #footerBottomContent .col-row .col-2:last-child #appStore{
	margin-bottom:15px;
	}
	
	#footerBottom #footerBottomContent .col-row .col-2:last-child #playStore{
	margin-left:0px;
	}
	
	#footerBottom #footerBottomContent .col-row .col-2:last-child #copyright{
	margin-top:10px;
	font-size:12px;
	}
	


	
	#leadGenPopup{
	padding:20px;
	}
	
	#contactModal{
	padding:10px 15px 10px 15px;
	}
	
	.mobileHide{
		display:none !important;
		}
		
	.desktopHide{
		display:block !important;
		}
		
	.desktopHideInline{
		display:inline !important;
		}
		
	.desktopHideInlineBlock{
		display:inline-block !important;
		}
}

@media all and (max-width: 992px) {
	
	#excellentHands .container #footerLogos img{
		margin:0 22px 0 22px;
		}
		
	.tabletHide{
		display:none !important;	
	}
}

@media all and (max-width: 1200px) {


}