

* {
	-moz-box-sizing : border-box;
	box-sizing : border-box;
}

html, body {
	min-height: 100%;
}

body {
	overflow-y: scroll;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: none;
	font-size: 1em;
	font: inherit;
	vertical-align: baseline;
	text-decoration: none;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
	display: block;
}

body {
	cursor: default;
	font-family: "Segoe UI", Arial, Sans-Serif;
}

ol, ul, dl {
	list-style: outside;
	margin-left: 20px;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a:focus,
input:focus,
button:focus {
	outline: 0;
}

a {
	text-decoration: none;
}

a:hover, a:focus {
	text-decoration: underline;
}

input[type=hidden] {
	display: none;
}

strong {
	font-weight: bold;
}

input,
select,
textarea {
	font: inherit;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	zoom: 1;
}


/*** MISC ***/

.center {
	max-width: 1100px;
	margin: 0px auto;
}

.left {
	float: left;
}

.right {
	float: right;
}

.block {
	display: block;
}

.inline {
	display: inline;
}

.inline-block {
	display: inline-block;
}

.relative {
	position: relative;
}

.transparent {
	opacity: 0;
}

.opaque {
	opacity: 1;
}

.vh {
	position: absolute;
	top: 0px;
	left: -9999px;
}

.hidden {
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
	visibility: hidden;
}

.visible {
	visibility: visible;
	position: relative !important;
	top: 0px !important;
	left: 0px !important;
}

.js .js-visible {
	visibility: visible;
	position: relative !important;
	top: 0px !important;
	left: 0px !important;
}

.js .js-hidden {
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
	visibility: hidden;
}

/* ####################################### */
/* ############# POSITIONING ############# */
/* ####################################### */

.fr,
.right {
	float: right;
}

.fl,
.left {
	float: left;
}

/* ####################################### */
/* ############### STACKING ############## */
/* ####################################### */

.h-stack > * {
	display: inline-block;
	margin-right: 0.5em;
}

.stack {
	margin-bottom: 2.5em;
}


/* ####################################### */
/* ################# LISTS ############### */
/* ####################################### */

ul.reset,
ol.reset,
dl.reset {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

ul.reset li,
ol.reset li,
dl.reset dl,
dl.reset.dt {
	padding: 0px;
}

.h-list,
.h-list-alt,
.v-list,
.slash-list,
.pipe-list,
.level-list  {
	margin: 0px;
	list-style: none;
}

.h-list > li,
.h-list-alt > li,
.slash-list > li,
.pipe-list > li,
.level-list > li {
	display: inline-block;
}

.h-list > li {
	margin-right: 1em;
}

.h-list-alt {
	text-align: right;
}

.h-list-alt > li {
	margin-left: 1em;
	margin-right: 0em;
}

.slash-list > li:after,
.pipe-list > li:after,
.level-list > li:after {
	content: '/';
	pointer-events: none;
	margin: 0px 0px 0px 0.3em;
}

.h-list.slash-list > li:after,
.h-list.pipe-list > li:after,
.h-list.level-list > li:after {
	margin-left: 1em;
}

.slash-list > li:last-child:after,
.pipe-list > li:last-child:after,
.level-list > li:last-child:after {
	content: '';
	margin: 0px;
}

.pipe-list > li:after {
	content: '|';
}

.level-list > li:after {
	content: '»';
}

/***/

.gm-style img {
	max-width: none;
}

/* ####################################### */
/* ################ Images ############### */
/* ####################################### */

.img-rounded {
	border-radius: 5px;
}

.img-circle,
.img-ellipse {
	border-radius: 50%;
}

.img-thumbnail {
	padding: 4px;
	border: 1px solid #DDD;
}

.img-greyscale,
.img-grayscale {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray; /* IE 6-9 */
}

.img-left,
.fig-left {
	float: left;
	margin: 0 1.5em 1.5em 0;
}

.img-right,
.fig-right {
	float: right;
	margin: 0 0 1.5em 1.5em;
}

figcaption {
	font-style: italic;
	margin-top: 5px;
}

.img-block {
	width: 100%;
	display: block;
}

/* ####################################### */
/* ############# Transitions ############# */
/* ####################################### */

.no-transition {
	-webkit-transition: 0ms !important;
	transition: 0ms !important;
}

.quick-transition {
	-webkit-transition: 100ms !important;
	transition: 100ms !important;
}

/* ####################################### */
/* ################ RULE ################# */
/* ####################################### */

.rt,
.rv,
.rule-top {
	border-top: 1px solid #DDD;
}

.rb,
.rv,
.rule-bottom {
	border-bottom: 1px solid #DDD;
}

.rl,
.rh,
.rule-left {
	border-left: 1px solid #DDD;
}

.rr,
.rh,
.rule-right {
	border-right: 1px solid #DDD;
}

/* ####################################### */
/* ########## VERTICAL ALIGN ############# */
/* ####################################### */

.valign {
	width: 100%;
	height: 100%;
	display: table;
}

.valign-inner {
	display: table-cell;
	vertical-align: middle;
}

/* ####################################### */
/* ############### =SPACING ############## */
/* ####################################### */
 
/* spacing helpers
p,m = padding,margin
a,t,r,b,l,h,v = all,top,right,bottom,left,horizontal,vertical
s,m,l,n = small(5px),medium(10px),large(20px),none(0px)
*/

.ptn,.pvn,.pan			{padding-top:0px !important}
.pts,.pvs,.pas			{padding-top:5px !important}
.ptm,.pvm,.pam			{padding-top:10px !important}
.ptl,.pvl,.pal			{padding-top:20px !important}
.ptxl,.pvxl,.paxl		{padding-top:30px !important}
.ptxxl,.pvxxl,.paxxl	{padding-top:40px !important}
.prn,.phn,.pan			{padding-right:0px !important}
.prs,.phs,.pas			{padding-right:5px !important}
.prm,.phm,.pam			{padding-right:10px !important}
.prl,.phl,.pal			{padding-right:20px !important}
.prxl,.phxl,.paxl		{padding-right:30px !important}
.prxxl,.phxxl,.paxxl	{padding-right:40px !important}
.pbn,.pvn,.pan			{padding-bottom:0px !important}  
.pbs,.pvs,.pas			{padding-bottom:5px !important}
.pbm,.pvm,.pam			{padding-bottom:10px !important}
.pbl,.pvl,.pal			{padding-bottom:20px !important}
.pbxl,.pvxl,.paxl		{padding-bottom:30px !important}
.pbxxl,.pvxxl,.paxxl	{padding-bottom:40px !important}
.pln,.phn,.pan			{padding-left:0px !important}
.pls,.phs,.pas			{padding-left:5px !important}
.plm,.phm,.pam			{padding-left:10px !important}
.pll,.phl,.pal			{padding-left:20px !important}
.plxl,.phxl,.paxl		{padding-left:30px !important}
.plxxl,.phxxl,.paxxl	{padding-left:40px !important}
.mtn,.mvn,.man			{margin-top:0px !important}
.mts,.mvs,.mas			{margin-top:5px !important}
.mtm,.mvm,.mam			{margin-top:10px !important}
.mtl,.mvl,.mal			{margin-top:20px !important}
.mtxl,.mvxl,.maxl		{margin-top:30px !important}
.mtxxl,.mvxxl,.maxxl	{margin-top:40px !important}
.mrn,.mhn,.man			{margin-right:0px !important}
.mrs,.mhs,.mas			{margin-right:5px !important}
.mrm,.mhm,.mam			{margin-right:10px !important}
.mrl,.mhl,.mal			{margin-right:20px !important}
.mrxl,.mhxl,.maxl		{margin-right:30px !important}
.mrxxl,.mhxxl,.maxxl	{margin-right:40px !important}
.mbn,.mvn,.man			{margin-bottom:0px !important}  
.mbs,.mvs,.mas			{margin-bottom:5px !important}
.mbm,.mvm,.mam			{margin-bottom:10px !important}
.mbl,.mvl,.mal			{margin-bottom:20px !important}
.mbxl,.mvxl,.maxl		{margin-bottom:30px !important}
.mbxxl,.mvxxl,.maxxl	{margin-bottom:40px !important}
.mln,.mhn,.man			{margin-left:0px !important}
.mls,.mhs,.mas			{margin-left:5px !important}
.mlm,.mhm,.mam			{margin-left:10px !important}
.mll,.mhl,.mal			{margin-left:20px !important}
.mlxl,.mhxl,.maxl		{margin-left:30px !important}
.mlxxl,.mhxxl,.maxxl	{margin-left:40px !important}

/**
 * Absolutes
 */

.at, .atr, .atl {
	position: absolute;
	top: 0px;
}

.ab, .abr, .abl {
	position: absolute;
	bottom: 0px;
}

.al, .atl, .abl {
	position: absolute;
	left: 0px;
}

.ar, .atr, .abr {
	position: absolute;
	right: 0px;
}

/* ####################################### */
/* ############# =RESPONSIVE ############# */
/* ####################################### */

.notouch-visible,
.no-touch-visible,
.touch-visible,
.landscape-visible,
.portrait-visible,
.large-visible,
.tablet-visible,
.mini-visible,
.mobile-visible {
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
	visibility: hidden;
}


/* LARGE
------------------------------------------------*/

@media screen and (min-width: 1200px) {

	.large-hidden {
		position: absolute !important;
		top: -9999px !important;
		left: -9999px !important;
		visibility: hidden;
	}

	.large-visible {
		visibility: visible;
		position: relative !important;
		top: 0px !important;
		left: 0px !important;
	}

	.large-block {
		display: block !important;
	}

}


/* TABLET
------------------------------------------------*/

@media screen and (max-width: 1024px) and (min-width: 769px) {

	.tablet-hidden {
		position: absolute !important;
		top: -9999px !important;
		left: -9999px !important;
		visibility: hidden;
	}

	.tablet-visible {
		visibility: visible;
		position: relative !important;
		top: 0px !important;
		left: 0px !important;
	}

	.tablet-block {
		display: block !important;
	}

}


/* MINI
------------------------------------------------*/

@media screen and (max-width: 768px) and (min-width: 481px) {

	.mini-hidden {
		position: absolute !important;
		top: -9999px !important;
		left: -9999px !important;
		visibility: hidden;
	}

	.mini-visible {
		visibility: visible;
		position: relative !important;
		top: 0px !important;
		left: 0px !important;
	}

	.mini-block {
		display: block !important;
	}

}


/* MOBILE
------------------------------------------------*/

@media screen and (max-width: 480px) {

	.mobile-hidden {
		position: absolute !important;
		top: -9999px !important;
		left: -9999px !important;
		visibility: hidden;
	}

	.mobile-visible {
		visibility: visible;
		position: relative !important;
		top: 0px !important;
		left: 0px !important;
	}

	.mobile-block {
		display: block !important;
	}

}

/* ####################################### */
/* ############ =ORIENTATION ############# */
/* ####################################### */

@media only screen and (orientation: landscape) {

	.landscape-hidden {
		position: absolute !important;
		top: -9999px !important;
		left: -9999px !important;
		visibility: hidden;
	}

	.landscape-visible {
		visibility: visible;
		position: relative !important;
		top: 0px !important;
		left: 0px !important;
	}

	.landscape-block {
		display: block !important;
	}

}

@media only screen and (orientation: portrait) {

	.portrait-hidden {
		position: absolute !important;
		top: -9999px !important;
		left: -9999px !important;
		visibility: hidden;
	}

	.portrait-visible {
		visibility: visible;
		position: relative !important;
		top: 0px !important;
		left: 0px !important;
	}

	.portrait-block {
		display: block !important;
	}

}

/* ####################################### */
/* ##### =TOUCH (REQUIRES MODERNIZR) ##### */
/* ####################################### */

/* Hidden when you have touch */
.touch .touch-hidden {
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
	visibility: hidden;
}

/* Visible when you have touch */
.touch .touch-visible {
	visibility: visible;
	position: relative !important;
	top: 0px !important;
	left: 0px !important;
}

/* Hidden when you do not have touch */
.no-touch .no-touch-hidden,
.no-touch .notouch-hidden {
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
	visibility: hidden;
}

/* Visible when you do not have touch */
.no-touch .no-touch-visible,
.no-touch .notouch-visible {
	visibility: visible;
	position: relative !important;
	top: 0px !important;
	left: 0px !important;
}

/* ####################################### */
/* ############# GRID LINES ############## */
/* ####################################### */

/* cleafix the grid lines */
.grid:before,
.grid:after {
	content: "";
	display: table;
}

.grid:after {
	clear: both;
}

.grid {
	zoom: 1;
	font-size: 0;
}

/* ####################################### */
/* ############## =GRID UNITS ############ */
/* ####################################### */

.grid .unit {
	display: inline-block;
	vertical-align: top;
}

.grid > .line {
	display: block;
}

.size1of1	{ width: 100%;}
.size1of2	{ width: 50%;}
.size2of2	{ width: 100%;}
.size1of3	{ width: 33.33%;}
.size2of3	{ width: 66.666%;}
.size3of3	{ width: 100%;}
.size1of4	{ width: 25%;}
.size2of4	{ width: 50%;}
.size3of4	{ width: 75%;}
.size4of4	{ width: 100%;}
.size1of5	{ width: 19.99%;}
.size2of5	{ width: 40%;}
.size3of5	{ width: 60%;}
.size4of5	{ width: 80%;}
.size5of5	{ width: 100%;}
.size1of6	{ width: 16.66%;}
.size2of6	{ width: 33.33%;}
.size3of6	{ width: 50%;}
.size4of6	{ width: 66.666%;}
.size5of6	{ width: 83.333%;}
.size6of6	{ width: 100%;}
.size1of7	{ width: 14.28%;}
.size2of7	{ width: 28.5705%;}
.size3of7	{ width: 42.857%;}
.size4of7	{ width: 57.142%;}
.size5of7	{ width: 71.428%;}
.size6of7	{ width: 85.714%;}
.size7of7	{ width: 100%;}
.size1of8	{ width: 12.5%;}
.size2of8	{ width: 25%;}
.size3of8	{ width: 37.5%;}
.size4of8	{ width: 50%;}
.size5of8	{ width: 62.5%;}
.size6of8	{ width: 75%;}
.size7of8	{ width: 87.5%;}
.size8of8	{ width: 100%;}
.size1of9	{ width: 11.105%;}
.size2of9	{ width: 22.2205%;}
.size3of9	{ width: 33.33%;}
.size4of9	{ width: 44.444%;}
.size5of9	{ width: 55.555%;}
.size6of9	{ width: 66.666%;}
.size7of9	{ width: 77.777%;}
.size8of9	{ width: 88.888%;}
.size9of9	{ width: 100%;}
.size1of10	{ width: 9.9973%;}
.size2of10	{ width: 19.99%;}
.size3of10	{ width: 29.99%;}
.size4of10	{ width: 40%;}
.size5of10	{ width: 50%;}
.size6of10	{ width: 60%;}
.size7of10	{ width: 70%;}
.size8of10	{ width: 80%;}
.size9of10	{ width: 90%;}
.size10of10	{ width: 100%;}
.size1of11	{ width: 9.088%;}
.size2of11	{ width: 18.175%;}
.size3of11	{ width: 27.272%;}
.size4of11	{ width: 36.362%;}
.size5of11	{ width: 45.454%;}
.size6of11	{ width: 54.545%;}
.size7of11	{ width: 63.636%;}
.size8of11	{ width: 72.727%;}
.size9of11	{ width: 81.818%;}
.size10of11	{ width: 90.909%;}
.size11of11	{ width: 100%;}
.size1of12	{ width: 8.3315%;}
.size2of12	{ width: 16.665%;}
.size3of12	{ width: 25%;}
.size4of12	{ width: 33.3315%;}
.size5of12	{ width: 41.666%;}
.size6of12	{ width: 50%;}
.size7of12	{ width: 58.333%;}
.size8of12	{ width: 66.666%;}
.size9of12	{ width: 75%;}
.size10of12	{ width: 83.333%;}
.size11of12	{ width: 91.666%;}
.size12of12	{ width: 100%;}

/* ####################################### */
/* ######## =HORIZONTAL SPACING ########## */
/* ####################################### */

.grid-spacing {
	margin-left: -3%;
}

.grid-spacing > .unit {
	padding-left: 3%;
}

.grid-spacing > *:not(.unit) {
	padding-left: 3%;
}

/***/

.grid-hxs {
	margin-left: -5px;
}

.grid-hxs > .unit {
	padding-left: 5px;
}

.grid-hxs > *:not(.unit) {
	margin-left: 5px;
}

/***/

.grid-hs {
	margin-left: -10px;
}

.grid-hs > .unit {
	padding-left: 10px;
}

.grid-hs > *:not(.unit) {
	margin-left: 10px;
}

/***/

.grid-h,
.grid-hm {
	margin-left: -20px;
}

.grid-h > .unit,
.grid-hm > .unit {
	padding-left: 20px;
}

.grid-h > *:not(.unit),
.grid-hm > *:not(.unit) {
	margin-left: 20px;
}

/***/

.grid-hl {
	margin-left: -30px;
}

.grid-hl > .unit {
	padding-left: 30px;
}

.grid-hl > *:not(.unit) {
	margin-left: 30px;
}

/***/

.grid-hxl {
	margin-left: -40px;
}

.grid-hxl > .unit {
	padding-left: 40px;
}

.grid-hxl > *:not(.unit) {
	margin-left: 40px;
}

/***/

.grid-hxxl {
	margin-left: -50px;
}

.grid-hxxl > .unit {
	padding-left: 50px;
}

.grid-hxxl > *:not(.unit) {
	margin-left: 50px;
}

/* ####################################### */
/* ########## =VERTICAL SPACING ########## */
/* ####################################### */

.grid-vxs > .unit {
	margin-bottom: 5px;
}

.grid-vs > .unit {
	margin-bottom: 10px;
}

.grid-v > .unit,
.grid-vm > .unit {
	margin-bottom: 20px;
}

.grid-vl > .unit {
	margin-bottom: 30px;
}

.grid-vxl > .unit {
	margin-bottom: 40px;
}

.grid-vxxl > .unit {
	margin-bottom: 50px;
}

/* ####################################### */
/* ############# =LAST UNIT ############## */
/* ####################################### */

.last-vn > .unit:last-child {
	margin-bottom: 0;
}

.last-vxs > .unit:last-child {
	margin-bottom: 5px;
}

.last-vs > .unit:last-child {
	margin-bottom: 10px;
}

.last-v > .unit:last-child,
.last-vm > .unit:last-child {
	margin-bottom: 20px;
}

.last-vl > .unit:last-child {
	margin-bottom: 30px;
}

.last-vxl > .unit:last-child {
	margin-bottom: 40px;
}

.last-vxxl > .unit:last-child {
	margin-bottom: 50px;
}

/* ####################################### */
/* ############### =DEBUG ################ */
/* ####################################### */

.show-unit {
	background: #DDF4FF;
	line-height: 30px;
	border-radius: 4px;
	text-align: center;
	border: 1px solid #B9DEF0;
	display: block;
}

/* ####################################### */
/* ############### =LARGE ################ */
/* ####################################### */

@media screen and (min-width: 1200px) {

	.large1of1		{ float: none; width: 100%}
	.large1of2		{ width: 50%;}
	.large2of2		{ width: 100%;}
	.large1of3		{ width: 33.33%;}
	.large2of3		{ width: 66.666%;}
	.large3of3		{ width: 100%;}
	.large1of4		{ width: 25%;}
	.large2of4		{ width: 50%;}
	.large3of4		{ width: 75%;}
	.large4of4		{ width: 100%;}
	.large1of5		{ width: 19.99%;}
	.large2of5		{ width: 40%;}
	.large3of5		{ width: 60%;}
	.large4of5		{ width: 80%;}
	.large5of5		{ width: 100%;}
	.large1of6		{ width: 16.66%;}
	.large2of6		{ width: 33.33%;}
	.large3of6		{ width: 50%;}
	.large4of6		{ width: 66.666%;}
	.large5of6		{ width: 83.333%;}
	.large6of6		{ width: 100%;}
	.large1of7		{ width: 14.28%;}
	.large2of7		{ width: 28.5705%;}
	.large3of7		{ width: 42.857%;}
	.large4of7		{ width: 57.142%;}
	.large5of7		{ width: 71.428%;}
	.large6of7		{ width: 85.714%;}
	.large7of7		{ width: 100%;}
	.large1of8		{ width: 12.5%;}
	.large2of8		{ width: 25%;}
	.large3of8		{ width: 37.5%;}
	.large4of8		{ width: 50%;}
	.large5of8		{ width: 62.5%;}
	.large6of8		{ width: 75%;}
	.large7of8		{ width: 87.5%;}
	.large8of8		{ width: 100%;}
	.large1of9		{ width: 11.105%;}
	.large2of9		{ width: 22.2205%;}
	.large3of9		{ width: 33.33%;}
	.large4of9		{ width: 44.444%;}
	.large5of9		{ width: 55.555%;}
	.large6of9		{ width: 66.666%;}
	.large7of9		{ width: 77.777%;}
	.large8of9		{ width: 88.888%;}
	.large9of9		{ width: 100%;}
	.large1of10		{ width: 9.9973%;}
	.large2of10		{ width: 19.99%;}
	.large3of10		{ width: 29.99%;}
	.large4of10		{ width: 40%;}
	.large5of10		{ width: 50%;}
	.large6of10		{ width: 60%;}
	.large7of10		{ width: 70%;}
	.large8of10		{ width: 80%;}
	.large9of10		{ width: 90%;}
	.large10of10	{ width: 100%;}
	.large1of11		{ width: 9.088%;}
	.large2of11		{ width: 18.175%;}
	.large3of11		{ width: 27.272%;}
	.large4of11		{ width: 36.362%;}
	.large5of11		{ width: 45.454%;}
	.large6of11		{ width: 54.545%;}
	.large7of11		{ width: 63.636%;}
	.large8of11		{ width: 72.727%;}
	.large9of11		{ width: 81.818%;}
	.large10of11	{ width: 90.909%;}
	.large11of11	{ width: 100%;}
	.large1of12		{ width: 8.3315%;}
	.large2of12		{ width: 16.665%;}
	.large3of12		{ width: 25%;}
	.large4of12		{ width: 33.3315%;}
	.large5of12		{ width: 41.666%;}
	.large6of12		{ width: 50%;}
	.large7of12		{ width: 58.333%;}
	.large8of12		{ width: 66.666%;}
	.large9of12		{ width: 75%;}
	.large10of12	{ width: 83.333%;}
	.large11of12	{ width: 91.666%;}
	.large12of12	{ width: 100%;}

	/* ####################################### */
	/* ########## =VERTICAL SPACING ########## */
	/* ####################################### */

	.large-vn > .unit {
		margin-bottom: 0;
	}

	.large-vxs > .unit {
		margin-bottom: 5px;
	}

	.large-vs > .unit {
		margin-bottom: 10px;
	}

	.large-v > .unit,
	.large-vm > .unit {
		margin-bottom: 20px;
	}

	.large-vl > .unit {
		margin-bottom: 30px;
	}

	.large-vxl > .unit {
		margin-bottom: 40px;
	}

	.large-vxxl > .unit {
		margin-bottom: 50px;
	}

	/* ####################################### */
	/* ######## =HORIZONTAL SPACING ########## */
	/* ####################################### */

	.large-hn {
		margin-left: 0;
	}

	.large-hn > .unit {
		padding-left: 0;
	}

	.large-hxs {
		margin-left: -5px;
	}

	.large-hxs > .unit {
		padding-left: 5px;
	}

	.large-hs {
		margin-left: -10px;
	}

	.large-hs > .unit {
		padding-left: 10px;
	}

	.large-h,
	.large-hm {
		margin-left: -20px;
	}

	.large-h > .unit,
	.large-hm > .unit {
		padding-left: 20px;
	}

	.large-hl {
		margin-left: -30px;
	}

	.large-hl > .unit {
		padding-left: 30px;
	}

	.large-hxl {
		margin-left: -40px;
	}

	.large-hxl > .unit {
		padding-left: 40px;
	}

	.large-hxxl {
		margin-left: -50px;
	}

	.large-hxxl > .unit {
		padding-left: 50px;
	}

}

/* ####################################### */
/* ############### =TABLET ############### */
/* ####################################### */

@media screen and (max-width: 1024px) and (min-width: 768px) {

	.tablet1of1		{ float: none; width: 100%}
	.tablet1of2		{ width: 50%;}
	.tablet2of2		{ width: 100%;}
	.tablet1of3		{ width: 33.33%;}
	.tablet2of3		{ width: 66.666%;}
	.tablet3of3		{ width: 100%;}
	.tablet1of4		{ width: 25%;}
	.tablet2of4		{ width: 50%;}
	.tablet3of4		{ width: 75%;}
	.tablet4of4		{ width: 100%;}
	.tablet1of5		{ width: 19.99%;}
	.tablet2of5		{ width: 40%;}
	.tablet3of5		{ width: 60%;}
	.tablet4of5		{ width: 80%;}
	.tablet5of5		{ width: 100%;}
	.tablet1of6		{ width: 16.66%;}
	.tablet2of6		{ width: 33.33%;}
	.tablet3of6		{ width: 50%;}
	.tablet4of6		{ width: 66.666%;}
	.tablet5of6		{ width: 83.333%;}
	.tablet6of6		{ width: 100%;}
	.tablet1of7		{ width: 14.28%;}
	.tablet2of7		{ width: 28.5705%;}
	.tablet3of7		{ width: 42.857%;}
	.tablet4of7		{ width: 57.142%;}
	.tablet5of7		{ width: 71.428%;}
	.tablet6of7		{ width: 85.714%;}
	.tablet7of7		{ width: 100%;}
	.tablet1of8		{ width: 12.5%;}
	.tablet2of8		{ width: 25%;}
	.tablet3of8		{ width: 37.5%;}
	.tablet4of8		{ width: 50%;}
	.tablet5of8		{ width: 62.5%;}
	.tablet6of8		{ width: 75%;}
	.tablet7of8		{ width: 87.5%;}
	.tablet8of8		{ width: 100%;}
	.tablet1of9		{ width: 11.105%;}
	.tablet2of9		{ width: 22.2205%;}
	.tablet3of9		{ width: 33.33%;}
	.tablet4of9		{ width: 44.444%;}
	.tablet5of9		{ width: 55.555%;}
	.tablet6of9		{ width: 66.666%;}
	.tablet7of9		{ width: 77.777%;}
	.tablet8of9		{ width: 88.888%;}
	.tablet9of9		{ width: 100%;}
	.tablet1of10	{ width: 9.9973%;}
	.tablet2of10	{ width: 19.99%;}
	.tablet3of10	{ width: 29.99%;}
	.tablet4of10	{ width: 40%;}
	.tablet5of10	{ width: 50%;}
	.tablet6of10	{ width: 60%;}
	.tablet7of10	{ width: 70%;}
	.tablet8of10	{ width: 80%;}
	.tablet9of10	{ width: 90%;}
	.tablet10of10	{ width: 100%;}
	.tablet1of11	{ width: 9.088%;}
	.tablet2of11	{ width: 18.175%;}
	.tablet3of11	{ width: 27.272%;}
	.tablet4of11	{ width: 36.362%;}
	.tablet5of11	{ width: 45.454%;}
	.tablet6of11	{ width: 54.545%;}
	.tablet7of11	{ width: 63.636%;}
	.tablet8of11	{ width: 72.727%;}
	.tablet9of11	{ width: 81.818%;}
	.tablet10of11	{ width: 90.909%;}
	.tablet11of11	{ width: 100%;}
	.tablet1of12	{ width: 8.3315%;}
	.tablet2of12	{ width: 16.665%;}
	.tablet3of12	{ width: 25%;}
	.tablet4of12	{ width: 33.3315%;}
	.tablet5of12	{ width: 41.666%;}
	.tablet6of12	{ width: 50%;}
	.tablet7of12	{ width: 58.333%;}
	.tablet8of12	{ width: 66.666%;}
	.tablet9of12	{ width: 75%;}
	.tablet10of12	{ width: 83.333%;}
	.tablet11of12	{ width: 91.666%;}
	.tablet12of12	{ width: 100%;}

	/* ####################################### */
	/* ########## =VERTICAL SPACING ########## */
	/* ####################################### */

	.tablet-vn > .unit{
		margin-bottom: 0;
	}

	.tablet-vxs > .unit {
		margin-bottom: 5px;
	}

	.tablet-vs > .unit {
		margin-bottom: 10px;
	}

	.tablet-v > .unit,
	.tablet-vm > .unit {
		margin-bottom: 20px;
	}

	.tablet-vl > .unit {
		margin-bottom: 30px;
	}

	.tablet-vxl > .unit {
		margin-bottom: 40px;
	}

	.tablet-vxxl > .unit {
		margin-bottom: 50px;
	}

	/* ####################################### */
	/* ######## =HORIZONTAL SPACING ########## */
	/* ####################################### */

	.tablet-hn {
		margin-left: 0;
	}

	.tablet-hn > .unit {
		padding-left: 0;
	}

	.tablet-hxs {
		margin-left: -5px;
	}

	.tablet-hxs > .unit {
		padding-left: 5px;
	}

	.tablet-hs {
		margin-left: -10px;
	}

	.tablet-hs > .unit {
		padding-left: 10px;
	}

	.tablet-h,
	.tablet-hm {
		margin-left: -20px;
	}

	.tablet-h > .unit,
	.tablet-hm > .unit {
		padding-left: 20px;
	}

	.tablet-hl {
		margin-left: -30px;
	}

	.tablet-hl > .unit {
		padding-left: 30px;
	}

	.tablet-hxl {
		margin-left: -40px;
	}

	.tablet-hxl > .unit {
		padding-left: 40px;
	}

	.tablet-hxxl {
		margin-left: -50px;
	}

	.tablet-hxxl > .unit {
		padding-left: 50px;
	}

}

/* ####################################### */
/* ############### =MINI ################# */
/* ####################################### */

@media screen and (max-width: 768px) and (min-width: 480px) {

	.mini1of1	{ float: none; width: 100%}
	.mini1of2	{ width: 50%;}
	.mini2of2	{ width: 100%;}
	.mini1of3	{ width: 33.33%;}
	.mini2of3	{ width: 66.666%;}
	.mini3of3	{ width: 100%;}
	.mini1of4	{ width: 25%;}
	.mini2of4	{ width: 50%;}
	.mini3of4	{ width: 75%;}
	.mini4of4	{ width: 100%;}
	.mini1of5	{ width: 19.99%;}
	.mini2of5	{ width: 40%;}
	.mini3of5	{ width: 60%;}
	.mini4of5	{ width: 80%;}
	.mini5of5	{ width: 100%;}
	.mini1of6	{ width: 16.66%;}
	.mini2of6	{ width: 33.33%;}
	.mini3of6	{ width: 50%;}
	.mini4of6	{ width: 66.666%;}
	.mini5of6	{ width: 83.333%;}
	.mini6of6	{ width: 100%;}
	.mini1of7	{ width: 14.28%;}
	.mini2of7	{ width: 28.5705%;}
	.mini3of7	{ width: 42.857%;}
	.mini4of7	{ width: 57.142%;}
	.mini5of7	{ width: 71.428%;}
	.mini6of7	{ width: 85.714%;}
	.mini7of7	{ width: 100%;}
	.mini1of8	{ width: 12.5%;}
	.mini2of8	{ width: 25%;}
	.mini3of8	{ width: 37.5%;}
	.mini4of8	{ width: 50%;}
	.mini5of8	{ width: 62.5%;}
	.mini6of8	{ width: 75%;}
	.mini7of8	{ width: 87.5%;}
	.mini8of8	{ width: 100%;}
	.mini1of9	{ width: 11.105%;}
	.mini2of9	{ width: 22.2205%;}
	.mini3of9	{ width: 33.33%;}
	.mini4of9	{ width: 44.444%;}
	.mini5of9	{ width: 55.555%;}
	.mini6of9	{ width: 66.666%;}
	.mini7of9	{ width: 77.777%;}
	.mini8of9	{ width: 88.888%;}
	.mini9of9	{ width: 100%;}
	.mini1of10	{ width: 9.9973%;}
	.mini2of10	{ width: 19.99%;}
	.mini3of10	{ width: 29.99%;}
	.mini4of10	{ width: 40%;}
	.mini5of10	{ width: 50%;}
	.mini6of10	{ width: 60%;}
	.mini7of10	{ width: 70%;}
	.mini8of10	{ width: 80%;}
	.mini9of10	{ width: 90%;}
	.mini10of10	{ width: 100%;}
	.mini1of11	{ width: 9.088%;}
	.mini2of11	{ width: 18.175%;}
	.mini3of11	{ width: 27.272%;}
	.mini4of11	{ width: 36.362%;}
	.mini5of11	{ width: 45.454%;}
	.mini6of11	{ width: 54.545%;}
	.mini7of11	{ width: 63.636%;}
	.mini8of11	{ width: 72.727%;}
	.mini9of11	{ width: 81.818%;}
	.mini10of11	{ width: 90.909%;}
	.mini11of11	{ width: 100%;}
	.mini1of12	{ width: 8.3315%;}
	.mini2of12	{ width: 16.665%;}
	.mini3of12	{ width: 25%;}
	.mini4of12	{ width: 33.3315%;}
	.mini5of12	{ width: 41.666%;}
	.mini6of12	{ width: 50%;}
	.mini7of12	{ width: 58.333%;}
	.mini8of12	{ width: 66.666%;}
	.mini9of12	{ width: 75%;}
	.mini10of12	{ width: 83.333%;}
	.mini11of12	{ width: 91.666%;}
	.mini12of12	{ width: 100%;}

	/* ####################################### */
	/* ########## =VERTICAL SPACING ########## */
	/* ####################################### */

	.mini-vn > .unit {
		margin-bottom: 0;
	}

	.mini-vxs > .unit {
		margin-bottom: 5px;
	}

	.mini-vs > .unit {
		margin-bottom: 10px;
	}

	.mini-v > .unit,
	.mini-vm > .unit {
		margin-bottom: 20px;
	}


	.mini-vl > .unit {
		margin-bottom: 30px;
	}

	.mini-vxl > .unit {
		margin-bottom: 40px;
	}

	.mini-vxxl > .unit {
		margin-bottom: 50px;
	}

	/* ####################################### */
	/* ######## =HORIZONTAL SPACING ########## */
	/* ####################################### */

	.mini-hn {
		margin-left: 0;
	}

	.mini-hn > .unit {
		padding-left: 0;
	}

	.mini-hxs {
		margin-left: -5px;
	}

	.mini-hxs > .unit {
		padding-left: 5px;
	}

	.mini-hs {
		margin-left: -10px;
	}

	.mini-hs > .unit {
		padding-left: 10px;
	}

	.mini-h,
	.mini-hm {
		margin-left: -20px;
	}

	.mini-h > .unit,
	.mini-hm > .unit {
		padding-left: 20px;
	}

	.mini-hl {
		margin-left: -30px;
	}

	.mini-hl > .unit {
		padding-left: 30px;
	}

	.mini-hxl {
		margin-left: -40px;
	}

	.mini-hxl > .unit {
		padding-left: 40px;
	}

	.mini-hxxl {
		margin-left: -50px;
	}

	.mini-hxxl > .unit {
		padding-left: 50px;
	}

}

/* ####################################### */
/* ############### =MOBILE ############### */
/* ####################################### */

@media screen and (max-width: 480px) {

	.mobile1of1		{ float: none; width: 100%}
	.mobile1of2		{ width: 50%;}
	.mobile2of2		{ width: 100%;}
	.mobile1of3		{ width: 33.33%;}
	.mobile2of3		{ width: 66.666%;}
	.mobile3of3		{ width: 100%;}
	.mobile1of4		{ width: 25%;}
	.mobile2of4		{ width: 50%;}
	.mobile3of4		{ width: 75%;}
	.mobile4of4		{ width: 100%;}
	.mobile1of5		{ width: 19.99%;}
	.mobile2of5		{ width: 40%;}
	.mobile3of5		{ width: 60%;}
	.mobile4of5		{ width: 80%;}
	.mobile5of5		{ width: 100%;}
	.mobile1of6		{ width: 16.66%;}
	.mobile2of6		{ width: 33.33%;}
	.mobile3of6		{ width: 50%;}
	.mobile4of6		{ width: 66.666%;}
	.mobile5of6		{ width: 83.333%;}
	.mobile6of6		{ width: 100%;}
	.mobile1of7		{ width: 14.28%;}
	.mobile2of7		{ width: 28.5705%;}
	.mobile3of7		{ width: 42.857%;}
	.mobile4of7		{ width: 57.142%;}
	.mobile5of7		{ width: 71.428%;}
	.mobile6of7		{ width: 85.714%;}
	.mobile7of7		{ width: 100%;}
	.mobile1of8		{ width: 12.5%;}
	.mobile2of8		{ width: 25%;}
	.mobile3of8		{ width: 37.5%;}
	.mobile4of8		{ width: 50%;}
	.mobile5of8		{ width: 62.5%;}
	.mobile6of8		{ width: 75%;}
	.mobile7of8		{ width: 87.5%;}
	.mobile8of8		{ width: 100%;}
	.mobile1of9		{ width: 11.105%;}
	.mobile2of9		{ width: 22.2205%;}
	.mobile3of9		{ width: 33.33%;}
	.mobile4of9		{ width: 44.444%;}
	.mobile5of9		{ width: 55.555%;}
	.mobile6of9		{ width: 66.666%;}
	.mobile7of9		{ width: 77.777%;}
	.mobile8of9		{ width: 88.888%;}
	.mobile9of9		{ width: 100%;}
	.mobile1of10	{ width: 9.9973%;}
	.mobile2of10	{ width: 19.99%;}
	.mobile3of10	{ width: 29.99%;}
	.mobile4of10	{ width: 40%;}
	.mobile5of10	{ width: 50%;}
	.mobile6of10	{ width: 60%;}
	.mobile7of10	{ width: 70%;}
	.mobile8of10	{ width: 80%;}
	.mobile9of10	{ width: 90%;}
	.mobile10of10	{ width: 100%;}
	.mobile1of11	{ width: 9.088%;}
	.mobile2of11	{ width: 18.175%;}
	.mobile3of11	{ width: 27.272%;}
	.mobile4of11	{ width: 36.362%;}
	.mobile5of11	{ width: 45.454%;}
	.mobile6of11	{ width: 54.545%;}
	.mobile7of11	{ width: 63.636%;}
	.mobile8of11	{ width: 72.727%;}
	.mobile9of11	{ width: 81.818%;}
	.mobile10of11	{ width: 90.909%;}
	.mobile11of11	{ width: 100%;}
	.mobile1of12	{ width: 8.3315%;}
	.mobile2of12	{ width: 16.665%;}
	.mobile3of12	{ width: 25%;}
	.mobile4of12	{ width: 33.3315%;}
	.mobile5of12	{ width: 41.666%;}
	.mobile6of12	{ width: 50%;}
	.mobile7of12	{ width: 58.333%;}
	.mobile8of12	{ width: 66.666%;}
	.mobile9of12	{ width: 75%;}
	.mobile10of12	{ width: 83.333%;}
	.mobile11of12	{ width: 91.666%;}
	.mobile12of12	{ width: 100%;}

	/* ####################################### */
	/* ########## =VERTICAL SPACING ########## */
	/* ####################################### */

	.mobile-vn > .unit {
		margin-bottom: 0;
	}

	.mobile-vxs > .unit {
		margin-bottom: 5px;
	}

	.mobile-vs > .unit {
		margin-bottom: 10px;
	}

	.mobile-v > .unit,
	.mobile-vm > .unit {
		margin-bottom: 20px;
	}

	.mobile-vl > .unit {
		margin-bottom: 30px;
	}

	.mobile-vxl > .unit {
		margin-bottom: 40px;
	}

	.mobile-vxxl > .unit {
		margin-bottom: 50px;
	}

	/* ####################################### */
	/* ######## =HORIZONTAL SPACING ########## */
	/* ####################################### */

	.mobile-hn {
		margin-left: 0;
	}

	.mobile-hn > .unit {
		padding-left: 0;
	}

	.mobile-hxs {
		margin-left: -5px;
	}

	.mobile-hxs > .unit {
		padding-left: 5px;
	}

	.mobile-hs {
		margin-left: -10px;
	}

	.mobile-hs > .unit {
		padding-left: 10px;
	}

	.mobile-h,
	.mobile-hm {
		margin-left: -20px;
	}

	.mobile-h > .unit,
	.mobile-hm > .unit {
		padding-left: 20px;
	}

	.mobile-hl {
		margin-left: -30px;
	}

	.mobile-hl > .unit {
		padding-left: 30px;
	}

	.mobile-hxl {
		margin-left: -40px;
	}

	.mobile-hxl > .unit {
		padding-left: 40px;
	}

	.mobile-hxxl {
		margin-left: -50px;
	}

	.mobile-hxxl > .unit {
		padding-left: 50px;
	}

}

.box {
	padding: 20px;
	border-width: 1px;
	border-style: solid;
	border-color: #DBDBDB;
	margin: 0 0 1.5em;
	border-radius: 5px;
}

.box-sharp {
	border-radius: 0;
}

.box-well {
	background-color: #F3F3F3;
	box-shadow: inset 0px 4px 0px 0px rgba(0,0,0,0.02),
				inset 0px -4px 0px 0px rgba(0,0,0,0.02);
}

.box-good,
.box-ok,
.box-green {
	background-color: #DFF0D8;
	color: #468847;
	border-color: #C5DDB2 !important;
}

.box-blue,
.box-info,
.box-notice {
	background-color: #DBF4FF;
	color: #3A87AD;
	border-color: #B8E5F8 !important;
}

.box-error,
.box-bad,
.box-red {
	background-color: #FF9999;
	border-color: #E6807E !important;
	color: #B94A48;
}

.box-warn,
.box-yellow {
	background-color: #FEEFB3;
	color: #A77836;
	border-color: #FFD942 !important;
}

.box-disabled {
	background-color: #E9E9E9;
}

.box-header {
	margin: -20px -20px 1.3em;
	border-radius: 5px 5px 0px 0px;
	padding: 10px 20px;
	border-bottom: 1px solid #EEEEEE;
}

.box-ok .box-header,
.box-good .box-header,
.box-good .box-header {
	background-color: #D2E9C8;
}

.box-bad .box-header,
.box-red .box-header,
.box-error .box-header  {
	background-color: #F08886;
}

.box-warn .box-header,
.box-yellow .box-header {
	background-color: #FFE991;
}

.box-blue .box-header,
.box-info .box-header,
.box-notice .box-header  {
	background-color: #C8EEFF;
}

.box-disabled .box-header {
	background-color: #E2E2E2;
}

.box-footer {
	margin: 1.3em -20px -20px;
	border-radius: 0px 0px 5px 5px;
	padding: 10px 20px;
	border-top: 1px solid #EEEEEE;
}

.box-ok .box-header,
.box-ok .box-footer,
.box-good .box-header,
.box-good .box-footer,
.box-green .box-header,
.box-green .box-footer {
	border-color: #C5DDB2;
}

.box-bad .box-header,
.box-bad .box-footer,
.box-red .box-header,
.box-red .box-footer,
.box-error .box-header,
.box-error .box-footer {
	border-color: #E6807E;
}

.box-warn .box-header,
.box-warn .box-footer,
.box-yellow .box-header,
.box-yellow .box-footer {
	border-color: #FFD942;
}

.box-info .box-header,
.box-info .box-footer,
.box-blue .box-header,
.box-blue .box-footer,
.box-notice .box-header,
.box-notice .box-footer {
	border-color: #B8E5F8;
}

.box-disabled .box-header,
.box-disabled .box-footer {
	border-color: #D6D6D6;
}

.box-sharp .box-header,
.box-sharp .box-footer {
	border-radius: 0;
}

.box-plain {
	border-color: transparent;
	padding-top: 0;
	padding-bottom: 0;
}

.boxless {
	border-color: transparent;
	padding: 0;
}

.boxless .box-header,
.boxless .box-footer {
	padding-left: 0;
	padding-right: 0;
}

.boxless .box-header {
	margin: 0px 0px 1.3em;
	padding-top: 0;
}

.boxless .box-footer {
	margin: 1.3em 0px 0px;
	padding-bottom: 0;
}

.box p:last-child,
.box ul:last-child,
.box ol:last-child,
.box dl:last-child,
.box blockquote:last-child,
.box pre:last-child,
.box td:last-child,
.box th:last-child,
.box table:last-child {
	margin-bottom: 0;
}

body {
	font-family: 'Segoe UI', 'Helvetica', Arial, sans-serif;
	font-size: 13px;
	color: #333;
	line-height: 20px;
	cursor: default;
	-webkit-text-size-adjust: 100%; 
	-ms-text-size-adjust: 100%; 
}

body, .grid > * {
	font-size: 13px;
}

a {
	color: #0088CC;
}

a:hover,
a:focus {
	text-decoration: underline;
}

p {
	margin: 0px 0px 1.5em;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	color: black;
	font-weight: normal;
	margin: 0px 0px 10px;
}

h1, .h1,
big {
	font-size: 2.2em;
	line-height: 1.2em;
}

h2, .h2 {
	font-size: 2em;
}

h3, .h3 {
	font-size: 1.6em;
}

h3, .h3 {
	font-size: 1.4em;
}

h4, .h4 {
	font-size: 1.2em;
	line-height: 1.2em;
}


abbr {
	cursor: help;
	border-bottom: 1px dotted #999999;
}

address {
	display: block;
	margin: 0px 0px 1.5em;
	font-style: normal;
}

blockquote {
	padding: 0px 0px 0px 15px;
	margin: 0px 0px 1.5em;
	border-left: 5px solid #EEEEEE;
}

blockquote p {
	margin-bottom: 0px;
}

blockquote small {
	display: block;
	color: #999999;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
	content: "";
}

cite {
	font-style: normal;
}

code,
kbd,
pre,
samp {
	font-family: Consolas, 'Courier New', monospace;
}

code,
pre {
	display: block;
}

p code {
	background: #EEE;
	padding: 0px 3px;
	border: 1px solid rgb(216, 216, 216);
	border-radius: 3px;
	display: inline;
}

del {
	text-decoration: line-through;
}

dd {
	margin-left: 10px;	
}

dl {
	margin: 0px 0px 1.5em;
}

dt {
	font-weight: bold;
}

em,
dfn,
var {
	font-style: italic;
}

ins {
	text-decoration: underline;
}

ol {
	list-style-type: decimal;
}

ol,
ul {
	margin: 0px 0px 1.5em 20px;
}

q {
	
}

small {
	font-size: 0.8em;	
}

strong {
	font-weight: bold;
}

sub {
	font-size: 0.8em;
	vertical-align: bottom;
}

sup {
	font-size: 0.8em;
	vertical-align: top;
}

.typo-left {
  text-align: left;
}

.typo-right {
  text-align: right;
}

.typo-center {
  text-align: center;
}

.typo-small {
	font-size: 0.9em;
}

.typo-xsmall {
	font-size: 0.8em;
}

.typo-lower {
	text-transform: lowercase;
}

.typo-upper {
	text-transform: uppercase;
}

.typo-capitalize,
.typo-capitalise {
	text-transform: capitalize;
}

.typo-weak {
	color: #999;
}

.typo-blue {
	color: #0088CC;
}

.typo-red {
	color: #DF0000;
}

.typo-green {
	color: #009C00;
}

.typo-yellow {
	color: #FFC600;
}

.typo-black {
	color: #000;
}

.typo-white {
	color: #FFF;
}

.typo-strong {
	font-weight: bold;
}

.no-underline,
.no-underline:hover,
.no-underline:focus {
	text-decoration: none;
}

textarea,
input[type="text"],
input[type="password"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
}

select,
input {
	border-radius: 0;
}

.f-item {
	clear: both;
	overflow: hidden;
	margin-bottom: 10px;
}

.f-text-input .f-faux,
.f-text-input input,
.f-select select,
.f-text-input textarea {
	background: #FFF;
	width: 280px;
	max-width: 100%;
	height: 30px;
	padding: 5px 10px;
	font-size: 1em;
	border: 1px solid #BBB;
	display: block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

input:focus,
textarea:focus,
select:focus {
	border-color: #888;
	outline: none;
}

form.f-hide,
.f-item.f-hide {
	display: none;
}

.f-item.f-inline {
	clear: none;
	float: left;
}

.f-item.f-no-label .f-label {
	display: none;
}

.f-required-indicator {
	font-weight: bold;
	color: #BA0000;
	padding-left: 4px;
}

.f-text-input .f-label,
.f-select .f-label {
	padding: 5px 0px;
}

.h-form .f-text-input .f-label,
.h-form .f-radio .f-label-primary,
.h-form .f-select .f-label {
	width: 180px;
	float: left;
	text-align: right;
	margin-right: 20px;
}

.v-form .f-text-input .f-label,
.v-form .f-select .f-label {
	float: none;
	display: block;
	text-align: left;
	padding: 0px 0px 4px;
}

.h-form  .f-text-input .f-faux,
.h-form .f-text-input input,
.h-form .f-select select,
.h-form .f-text-input textarea {
	float: left;
	margin-top: 0px;
}

.f-text-input textarea {
	height: 100px;
}

.f-text-input .f-faux:focus,
.f-text-input input:focus,
.f-text-input textarea:focus,
.f-select select:focus {
	border-color: #888;
	outline: none;
}

.f-text-input.f-error .f-faux,
.f-text-input.f-error input,
.f-text-input.f-error textarea,
.f-select.f-error select {
	border-color: #BA0000;
}

.f-text-input .f-hint-text {
	float: left;
	padding: 9px 0px;
	margin-left: 20px;
	color: #888;
	font-style: italic;
}

.v-form .f-text-input .f-hint-text {
	margin-left: 0;
}

.f-richselect .f-hint-text {
	float: none;
	padding: 0;
	margin-left: 0;
	color: inherit;
	font-style: normal;
}

.f-json pre {
	background: #F3F3F3;
	max-width: 100%;
	padding: 10px;
	font-size: 1em;
	border: 1px solid #DDD;
	display: block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	white-space: pre-wrap;
}

.h-form .f-checkbox {
	padding-left: 195px;
}

.f-bool .f-label {
	cursor: pointer;
}

.f-bool input {
	position: relative;
	top: 2px;
}

.f-bool.f-error .f-label {
	color: #BA0000;
}

.f-radio input {
	float: none;
}

.f-map-box {
	width: 300px;
	height: 200px;
	float: left;
	border: 1px solid #BBB;
}

.f-select .f-select-dd,
.f-select .f-select-mm,
.f-select .f-select-hh,
.f-select .f-select-mi,
.f-select .f-select-ss {
	width: 65px;
	display: inline-block;
}

.f-select .f-select-mm,
.f-select .f-select-hh,
.f-select .f-select-mi,
.f-select .f-select-ss {
	margin-left: 5px;
}

.f-select .f-select-yyyy {
	width: 80px;
	margin-left: 5px;
	display: inline-block;
}

.f-upload {

}

.f-upload-name {
	display: inline-block;
    max-width: 160px;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: top;
    white-space: nowrap;
}

.f-upload .f-upload-input {
	display: block;
}

.f-upload .f-upload-file {
	display: none;
}

.f-upload-attached .f-upload-input {
	display: none;
}

.f-upload-attached .f-upload-file {
	display: block;
}

.f-upload-file-controls {
	margin-top: 5px;
}

.h-form .f-upload-file-controls {
    padding-top: 10px;
    clear: both;
    margin-left: 200px;
}

.f-message {
	background: #CCC;
	padding: 10px;
	margin-bottom: 20px;
}

.f-message.f-message-error {
	background: #BA0000;
	color: white;
	margin-bottom: 20px;
}

.f-message.f-message-success {
	background: #D8F0A4;
	color: #3E8425;
}

.f-message.f-message-warning {
	background: #FFF3B3;
}

.system-ui .f-message {
	background-color: #F9F9F9;
	margin: 5px -20px 0;
	padding: 15px 20px;
	border: 1px solid #DDD;
	border-left-width: 0;
	border-right-width: 0;
}

.system-ui .system-form .f-message {
	position: relative;
	margin: -15px -20px 20px 10px;
}

.system-ui .system-form .f-message:after {
	content: '';
	background-color: inherit;
	border-top: inherit;
	border-bottom: inherit;
	position: absolute;
	top: -1px;
	right: -2000px;
	bottom: -1px;
	left: 100%;
}

.system-ui .f-message-standalone {
	border-right-width: 1px;
	border-left-width: 1px;
	border-radius: 5px;
	margin: 0 0 40px;
}

.system-ui .f-message h1 {
	font-size: 1.8em;
	margin-bottom: .5em;
	font-weight: bold;
	color: #1F2036;
}

.system-ui .f-message h2 {
	font-size: 1.4em;
	margin-bottom: .5em;
	font-weight: bold;
	color: #1F2036;
}

.system-ui .f-message p {
	margin-bottom: 1.5em;
}

.system-ui .f-message :last-child {
	margin-bottom: 0;
}

.system-ui .f-message-error {
	background: #BA0000;
	color: white;
}

.system-ui .f-message-success {
	background-image: url(/base/images/system/list_tick.png);
	background-color: #D8F0A4;
	background-repeat: no-repeat;
	background-position: 22px;
	padding-left: 42px;
	border-color: #C6D8A0;
	color: #3E8425;
}

.system-ui .f-message-warning {
	background: #FFF3B3;
	border-color: #F1E396;
}

.system-ui .f-message-info {
	background: #D6E9F8;
	border-color: #BCD9EF;
}

.system-ui .form-block {
	padding-top: 20px;
}

.f-note {
	margin: 20px 0px 10px;
}

.h-form .f-note {
	padding-left: 200px;
}

.h-form .f-submit {
	padding-left: 198px;
}

/*.f-submit button,
.submit-button {
	background-color: #e6e6e6;
	background-repeat: no-repeat;
	background-image: -webkit-linear-gradient(#5A95F7, #2E6BCD);
	background-image: linear-gradient(#5A95F7, #2E6BCD);
	cursor: pointer;
	display: inline-block;
	line-height: 2em;
	padding: 0.4em 1.5em;
	color: white;
	font-size: 13px;
	font-weight: bold;
	border: 1px solid #2762C2;
	font-family: "Segoe UI", Arial, Sans-Serif;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
				0 1px 2px rgba(0, 0, 0, 0.05);
	-webkit-transition: 0.05s linear all;
	transition: 0.5s linear all;
}

.f-submit button:hover,
.f-submit button:focus,
.submit-button:hover,
.submit-button:focus {
	background-image: -webkit-linear-gradient(#6DA2FA, #2D6ACA);
	background-image: linear-gradient(#6DA2FA, #2D6ACA);
	text-decoration: none;
	box-shadow: inset 0 1px 0px rgba(255, 255, 255, 0.2),
				0px 1px 0px rgba(0, 0, 0, 0.1);

	border-color: #2056AF !important;
	border-bottom-color: #184590 !important;
}

.f-submit button:active,
.submit-button:active {
	background-image: -webkit-linear-gradient(#5A95F7, #3B7BDF) !important;
	background-image: linear-gradient(#5A95F7, #3B7BDF) !important;
	border-color: #2056AF !important;
	box-shadow: inset 0px 1px 4px rgba(0, 0, 0, 0.2) !important;
}*/

.f-text-input .f-prepend input,
.f-select .f-prepend select {
	display: inline;
}

.f-addon {
	display: inline-block;
	width: 30px;
	font-weight: normal;
	text-align: center;
	background-color: #EEEEEE;
	margin-right: -31px;
	position: relative;
	z-index: 10;
	line-height: 29px;
	border-right: 1px solid #BBB;
}

.f-prepend input,
.f-prepend .f-faux {
	padding-left: 40px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.f-append input {
	padding-right: 40px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.f-prepend .f-addon {
	float: left;
}

.f-append .f-addon {
	margin: 0px;
	margin-left: -31px;
	border: 0;
	border-left: 1px solid #BBB;
	float: right;
}

.system-form {
	max-width: 900px;
}

.system-form input,
.system-form select,
.system-form textarea,
.system-form .f-faux {
	background: #F3F3F3;
	border: 0;
	border-bottom: 1px solid #DDD;
	width: 100%;
	box-sizing: border-box;
	font-family: 'Segoe UI', 'Helvetica', Arial, sans-serif;
}


.system-form input:disabled,
.system-form select:disabled,
.system-form textarea:disabled,
.system-form .f-faux:disabled,
.system-form input.disabled,
.system-form select.disabled,
.system-form textarea.disabled,
.system-form .f-faux.disabled {
	background-color: #FAFAFA;
	border-color: #E8E8E8;
	color: #999;
}

.system-form .f-faux {
	line-height: 20px;
	color: black;
	text-decoration: none;
}

.system-form textarea {
	padding: 10px;
}

.system-form input[type=checkbox] {
	width: auto;
	position: absolute;
	top: 6px;
	margin-left: 10px;
}

.system-form input[type=color] {
	position: absolute;
    top: 4px;
    margin-left: 7px;
    padding: 0;
    border: 0;
    height: 24px;
    width: 20px;
}

.system-form input[type=checkbox]:focus + label {
	border-bottom-color: #888;
}

.system-form input[type=radio]:focus {
	outline: 1px solid #0088DD;
}

.system-form .f-alias input {
	width: 100%;
}

.system-form .f-note {
	margin: -15px 0 20px 30px !important;
	font-style: italic;
	color: #9D97A5;
}

.system-form .f-message {
	margin-left: 20px;
}

.f-alias .f-addon {
	font-size: 10px;
}

.system-form .f-item {
	position: relative;
	margin-bottom: 30px;
}

.system-form label {
	padding-bottom: 8px;
	font-weight: normal;
	color: #828088;
}

.system-form .f-bool label {
	background: #F3F3F3;
	width: 100%;
	display: inline-block;
	border-bottom: 1px solid #DDD;
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 32px;
}

.system-form .f-hint-text {
	position: absolute;
	top: 0px;
	right: 0px;
	padding: 0;
	font-style: normal;
}

.system-form select,
.system-form .f-richselect .f-faux {
	background-image: url(/base/images/system/select_arrow.png);
	background-repeat: no-repeat;
	background-position: right center;
}

.f-image-container {
	background-color: #00AEFF;
	position: relative;
	display: inline-block;
}

.f-image menu {
	position: absolute;
	top: 0;
	right: 0;
	display: none;
}

.f-image-container:hover menu {
	display: block;
}

.f-image-container > img {
	cursor: pointer;
}

.f-image-container:hover > img {
	opacity: 0.9;
}

.system-form .f-image img {
	width: 200px;
}

.f-icon-button {
	background-position: center;
	background-repeat: no-repeat;
	background-color: #00AEFF;
	width: 31px;
	height: 31px;
	line-height: 31px;
	font-size: 13px;
	text-align: center;
	color: white;
	float: left;
	position: relative;
	z-index: 10;
}

.f-icon-button:hover {
	background-color: #019AE0;
}

.f-icon-delete {
	background-image: url(/base/images/system/modal_close.png);
	background-color: #C75050;
	text-indent: -100px;
	overflow: hidden;
}

.f-icon-delete:hover {
	background-color: #E55353;
}

.system-form .f-richselect {
	overflow: visible;
}

.system-form .f-richselect-value,
.system-form .f-richselect-key {
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
}

.system-form .f-richselect .dropdown-menu {
	width: auto;
	left: 0;
	right: 0;
	top: 29px;
	box-shadow: none;
	border-radius: 0;
	border: 1px solid #CCC;
	padding: 0;
}

.system-form .f-richselect .dropdown-menu:before,
.system-form .f-richselect .dropdown-menu:after {
	display: none;
}

.system-form .f-richselect .dropdown-menu a {
	line-height: 30px;
	border-bottom: 1px solid #F3F3F3;
	padding: 0 10px;
	font-size: 12px;
}

.system-form .f-richselect .dropdown-menu li:last-child a {
	border: 0;
}

.system-form .f-richselect .dropdown-menu a:hover,
.system-form .f-richselect .dropdown-menu a:focus {
	background: none;
}

.system-form .f-richselect .dropdown-options .active:focus,
.system-form .f-richselect .dropdown-options .active:focus a {
	text-decoration: none;
}

.system-form .f-richselect .dropdown-options .active a,
.system-form .f-richselect .dropdown-options .active a:hover,
.system-form .f-richselect .dropdown-options .active a:focus {
	background: #0088DD;
	color: white;
	text-decoration: none;
}

.f-richselect-filter,
.f-richselect-filter:focus {
	border: 0 !important;
}

.f-richselect .dropdown-options {
	max-height: 200px;
	overflow-y: scroll;
}

.f-richselect .dropdown-options a:hover,
.f-richselect .dropdown-options a:focus {
	text-decoration: none;
}

.system-form .cke_chrome {
	border: 1px solid #DDD;
}

.system-form .cke_top {
	background: #E4E4E4;
	padding-left: 15px;
	border-bottom: 1px solid #DDD;
}

.system-form .before-form {
	border-bottom: 1px solid #EEE;
	padding: 10px 0 20px;
	margin-bottom: 30px;
}

.system-form .after-form {
	border-top: 1px solid #EEE;
	padding: 20px 0 10px;
	margin-top: 0;
}


.btn,
.f-submit button,
.submit-button {
	background-color: #F5F5F5;
	background-image: -webkit-linear-gradient(#FFFFFF, #EEEEEE);
	background-image: linear-gradient(bottom, #FFFFFF, #EEEEEE);

    display: inline-block;
    border: 1px solid #CCC;
    color: #333333;
    cursor: pointer;
    padding: 5px 15px;
    text-decoration: none;
	border-radius: 4px;
	cursor: pointer;
}

.btn:hover,
.btn:focus,
.btn:active,
.f-submit button:hover,
.f-submit button:focus,
.f-submit button:active,
.submit-button:hover,
.submit-button:focus,
.submit-button:active {
	text-decoration: none;
	outline: 0;
}

.f-submit button:active,
.btn:active {
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* GOOD BUTTONS
------------------------------------------------*/

.btn-green,
.btn-good,
.btn-confirm {
	background: #5CB85C;
	background-image: -webkit-linear-gradient(#5CB85C, #46A246);
	background-image: linear-gradient(#5CB85C, #46A246);
	border-color: #279727;
	color: white;
}

.btn-green:hover,
.btn-good:hover,
.btn-confirm:hover,
.btn-green:focus,
.btn-good:focus,
.btn-confirm:focus {
	background-color: #43A843;
	background-image: -webkit-linear-gradient(#72CC72, #43A843);
	background-image: linear-gradient(#72CC72, #43A843);
}

.btn-green:active,
.btn-good:active,
.btn-confirm:active {
	background: #43A843;
}

.btn-green:disabled,
.btn-green.btn-disabled,
.btn-good:disabled,
.btn-good.btn-disabled,
.btn-confirm:disabled,
.btn-confirm.btn-disabled {
	background: #98C398;
	border-color: #7AB37A;
}

/* BAD BUTTONS
------------------------------------------------*/

.btn-red,
.btn-bad,
.btn-destroy,
.btn-danger {
	background: #E74343;
	background-image: -webkit-linear-gradient(#E74343, #E74343);
	background-image: linear-gradient(#E74343, #E74343);
	border-color: #B60E0E;
	color: white;
}

.btn-red:hover,
.btn-bad:hover,
.btn-danger:hover,
.btn-destroy:hover,
.btn-red:focus,
.btn-bad:focus,
.btn-destroy:focus,
.btn-danger:focus {
	background-color: #DF0404;
	background-image: -webkit-linear-gradient(#EE5F5F, #DA2D2D);
	background-image: linear-gradient(#EE5F5F, #DA2D2D);
}

.btn-red:active,
.btn-bad:active,
.btn-destroy:active,
.btn-danger:active {
	background: #DF0404;
}

.btn-red:disabled,
.btn-red.btn-disabled,
.btn-bad:disabled,
.btn-bad.btn-disabled,
.btn-destroy:disabled,
.btn-destroy.btn-disabled,
.btn-danger:disabled,
.btn-danger.btn-disabled {
	background: #DD8686;
	border-color: #C26262;
}

/* WARN BUTTONS
------------------------------------------------*/

.btn-yellow,
.btn-warn {
	background: #F8B918;
	background-image: -webkit-linear-gradient(#F3C44D, #EEAB00);
	background-image: linear-gradient(#F3C44D, #EEAB00);
	border-color: #DDA108;
	color: white;
}

.btn-warn:hover,
.btn-yellow:hover,
.btn-yellow:focus,
.btn-warn:focus {
	background-color: #E98900;
	background-image: -webkit-linear-gradient(#F3C44D, #EEAB00);
	background-image: linear-gradient(#F3C44D, #EEAB00);
}

.btn-yellow:active,
.btn-warn:active {
	background: #EEAB00;
}

.btn-yellow:disabled,
.btn-yellow.btn-disabled,
.btn-warn:disabled,
.btn-warn.btn-disabled {
	background: #ECC48B;
	border-color: #CFA160;
}

/* INFO BUTTONS
------------------------------------------------*/

.btn-blue,
.btn-info {
	background: #00AEFF;
	background-image: -webkit-linear-gradient(#00AEFF, #009BE4);
	background-image: linear-gradient(#00AEFF, #009BE4);
	border-color: #0087C5;
	color: white;
}

.btn-info:hover,
.btn-blue:hover,
.btn-blue:focus,
.btn-info:focus {
	background-color: #0098DF;
	background-image: -webkit-linear-gradient(#2DBCFF, #0093D8);
	background-image: linear-gradient(#2DBCFF, #0093D8);
}

.btn-blue:active,
.btn-info:active {
	background: #0098DF;
}

.btn-blue:disabled,
.btn-blue.btn-disabled,
.btn-info:disabled,
.btn-info.btn-disabled {
	background: #8DDAFD;
	border-color: #7EC6E7;
}

/* DISABLED BUTTONS
------------------------------------------------*/

btn:disabled,
.btn-disabled {
	background: #E6E6E6;
}

btn:disabled,
.btn-disabled,
btn:disabled:hover,
.btn-disabled:hover,
btn:disabled:focus,
.btn-disabled:focus,
btn:disabled:active,
.btn-disabled:active {
	cursor: default;
	box-shadow: none;
}

/* BUTTON SIZES
------------------------------------------------*/

.btn-s,
.btn-small {
	padding: 2px 10px;
}

.btn-l,
.btn-large {
	padding: 10px 20px;
}

.btn-xl,
.btn-huge {
	padding: 15px 30px;
}

.btn-xxl {
	padding: 25px 40px;
}

.btn-block {
	display: block;
	text-align: center;
}

button.btn-block {
	width: 100%;
}

/* BUTTON GROUPS
------------------------------------------------*/

.btn-group .btn {
	border-radius: 0;
	display: inline-block;
	margin-left: -4px;
}

.btn-group .btn:first-child {
	border-radius: 4px 0 0 4px;
	margin-left: 0;
}

.btn-group .btn:last-child {
	border-radius: 0 4px 4px 0;
}

.btn-group .btn:first-child:last-child {
	border-radius: 4px;
}

/* ####################################### */
/* ################ TABLES ############### */
/* ####################################### */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

th,
td {
    padding: 0;
    text-align: left;
    vertical-align: top;
}

table col.unit {
	position: static;
	float: none;
	display: table-column;
}

table.lined {
	table-layout: fixed;
	width: 100%;
}

table.lined td,
table.lined th {
	border-bottom: 1px solid #EEE;
	padding: 10px 0px;
}

table.lined tbody tr:last-child td,
table.lined tbody tr:last-child th {
	border-bottom-width: 0px;
}

.lined th {
	width: 120px;
	color: #AAA;
}

.lined thead th {
	width: auto;
}

/* ####################################### */
/* ############# BASIC TABLE ############# */
/* ####################################### */

.table {
	table-layout: fixed;
	width: 100%;
}


.table th {
	background-color: #F4F4F4;
}

.table td,
.table th {
	border-bottom: 1px solid #EEE;
	padding: 10px 10px;
}

.col-id {
	width: 40px;
}

/* ####################################### */
/* ############### =TABLES ############### */
/* ####################################### */

/* Based on getbootstrap.com tables * /

table {
	max-width: 100%;
	background-color: transparent;
}

th {
	text-align: left;
}

.table {
	width: 100%;
	margin-bottom: 20px;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
	padding: 8px;
	line-height: 1.428571429;
	vertical-align: top;
	border-top: 1px solid #dddddd;
}

.table > thead > tr > th {
	vertical-align: bottom;
	border-bottom: 2px solid #dddddd;
}

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
	border-top: 0;
}

.table > tbody + tbody {
	border-top: 2px solid #dddddd;
}

.table .table {
	background-color: #ffffff;
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
	padding: 5px;
}

.table-bordered {
	border: 1px solid #dddddd;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
	border: 1px solid #dddddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
	border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
	background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
	background-color: #f5f5f5;
}

table col[class*="col-"] {
	position: static;
	float: none;
	display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
	position: static;
	float: none;
	display: table-cell;
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
	background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th {
	background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
	background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th {
	background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
	background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr.info:hover > th {
	background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
	background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th {
	background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
	background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th {
	background-color: #ebcccc;
}

@media (max-width: 767px) {

	.table-responsive {
		width: 100%;
		margin-bottom: 15px;
		overflow-y: hidden;
		overflow-x: scroll;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		border: 1px solid #dddddd;
		-webkit-overflow-scrolling: touch;
	}

	.table-responsive > .table {
		margin-bottom: 0;
	}

	.table-responsive > .table > thead > tr > th,
	.table-responsive > .table > tbody > tr > th,
	.table-responsive > .table > tfoot > tr > th,
	.table-responsive > .table > thead > tr > td,
	.table-responsive > .table > tbody > tr > td,
	.table-responsive > .table > tfoot > tr > td {
		white-space: nowrap;
	}

	.table-responsive > .table-bordered {
		border: 0;
	}

	.table-responsive > .table-bordered > thead > tr > th:first-child,
	.table-responsive > .table-bordered > tbody > tr > th:first-child,
	.table-responsive > .table-bordered > tfoot > tr > th:first-child,
	.table-responsive > .table-bordered > thead > tr > td:first-child,
	.table-responsive > .table-bordered > tbody > tr > td:first-child,
	.table-responsive > .table-bordered > tfoot > tr > td:first-child {
		border-left: 0;
	}

	.table-responsive > .table-bordered > thead > tr > th:last-child,
	.table-responsive > .table-bordered > tbody > tr > th:last-child,
	.table-responsive > .table-bordered > tfoot > tr > th:last-child,
	.table-responsive > .table-bordered > thead > tr > td:last-child,
	.table-responsive > .table-bordered > tbody > tr > td:last-child,
	.table-responsive > .table-bordered > tfoot > tr > td:last-child {
		border-right: 0;
	}

	.table-responsive > .table-bordered > tbody > tr:last-child > th,
	.table-responsive > .table-bordered > tfoot > tr:last-child > th,
	.table-responsive > .table-bordered > tbody > tr:last-child > td,
	.table-responsive > .table-bordered > tfoot > tr:last-child > td {
		border-bottom: 0;
	}

}
*/

/*body {
	background: #CCC;
	font-size: 14px;
	color: #ABB3D2;
}
*/
#debug-email {
	background: white;
	margin: 100px auto;
	width: 600px;
	padding: 20px;
	position: relative;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3), 
				0px 0px 15px rgba(0,0,0,0.25);
}

#debug-panel {
	background-image: -webkit-linear-gradient(#FFF, rgba(255, 255, 255, 0.8));
	background-image: linear-gradient(#FFF, rgba(255, 255, 255, 0.8));
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	font-size: 11px;
	text-align: right;
	box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
	color: #999;
}

#debug-panel > div {
	display: inline-block;
	padding: 1px 15px;
	border-left: 1px solid rgba(0, 0, 0, 0.1);
	margin-left: -4px;
	text-align: left;
}

.performance {
	display: none;
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 1000;
	zoom: 0.7;
}

.performance-tile {
	background: #0090ff;
	float: right;
	width: 190px;
	height: 95px;
	position: relative;
	margin: 20px 20px 0px 0px;
}

.performance-tile h3 {
	font-family: "Segoe UI";
	font-weight: bold;
	font-size: 16px;
	color: #97d2ff;
	position: absolute;
	top: 20px;
	left: 20px;
	margin: 0px;
}

.performance-tile .value {
	font-family: "Segoe UI";
	font-size: 36px;
	color: white;
	position: absolute;
	top: 45px;
	left: 20px;
	line-height: 1em;
}

.performance-tile .performance-detail {
	background: white;
	width: 300px;
	position: absolute;
	bottom: 95px;
	right: 0px;
	padding: 20px;
	display: none;
}

.performance-tile:hover div {
	display: block;
}

.performance-tile li {
	padding: 10px 0px;
	border-bottom: 1px solid #EEE;
}

.performance-tile #debug {
	zoom: 1.3;
	margin: -20px;
}

#debug {
	background: #EEE;
	border: 1px solid #DDD;
	padding: 20px;
	max-height: 600px;
	overflow-y: scroll;
	font-family: Consolas;
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 20px;
	margin: 40px;
	line-height: 18px;
	color: black;
}

.system #debug {
	background: white;
}

#debug .debug-header {
	margin: -20px -20px 20px;
	padding: 5px 20px;
	background: #DDD;
}

#debug .indent {
	margin-left: 20px;
}

#debug .debug-key {
	color: #0090FF;
}

#debug .debug-key-private {
	color: #888;
}

#debug .debug-numeric {
	color: #35406E;
}

#debug .debug-null {
	color: #888;
}

#debug .debug-string {
	cursor: text;
}

#debug .debug-array {
	color: #888;
}

#debug .debug-object {
	
}

#debug .debug-array-block {
	background: rgba(0,0,0,0.1);
}

#debug .debug-array-block:nth-child(odd) {
	background: rgba(0,0,0,0.2);
}

.system-dialog-content #debug {
	width: 520px;
	max-height: 240px;
	margin: 0px;
	border: none;
}

.system-dialog-message #debug {
	margin: -40px -31px -30px -30px;
}

#debug .debug-block {
	border-left: 1px solid #CCC;
	padding-left: 40px;
	margin-left: 3px;
}

#debug > .debug-block {
	margin-left: 20px;
}

:root {
	--color-navy: #08213E;
	--color-navy-dark: #03172E;
	--color-yellow: #FFEFB8;
	--color-sky: #A5CFFF;
	--color-white: #FFFFFF;
	--color-navy-soft: #173351;
	--color-white-soft: #8FA5BE;
	--color-sky-soft: #A5CFFF55;


	--font-heading: 'Crimson Text', sans-serif;
	--font-regular: 'Open Sans', sans-serif;

	--spacing-body-hori: 50px;
	--spacing-body: 50px 50px;
	--spacing-stack: 50px;
	--spacing-stack-large: 100px;
	--spacing-inner: auto;

	--height-hero: 730px;
}

@media screen and (max-width: 767px) {


}

@media screen and (max-width: 640px) {

	:root {
		--spacing-body-hori: 0;
		--spacing-body: 50px 0;
		--spacing-inner: 20px;
		--height-hero: 40vh;
	}

}

@keyframes slide-up {
    
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in {
    
    0% {
        transform: translateX(-40px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

html, body {
	font-size: 18px;
}

body {
	font-family: var(--font-regular);
	color: var(--color-white);
	line-height: 1.6em;
}

a {
	color: inherit;
	font-weight: normal;
	text-decoration: underline;
	text-underline-position: under;
}

p a {
	color: var(--color-yellow);
}

a:hover,
a:focus {
	text-decoration: underline;
}

p {
	margin: 0px 0px 1.5em;
}

h1, .h1,
big {
	font-family: var(--font-heading);
	font-size: 52px;
	line-height: 1em;
	margin: 0 0 0.5em;
	color: var(--color-yellow);
}

h2, .h2 {
	font-family: var(--font-heading);
	font-size: 42px;
	line-height: 1em;
	margin: 0 0 0.5em;
	color: var(--color-yellow);
}

h3, .h3 {
	font-family: var(--font-heading);
	font-size: 32px;
	line-height: 1.2em;
	margin: 0 0 0.5em;
	color: var(--color-yellow);
}

.f-submit button,
.cta {
	font-family: var(--font-heading);
	font-size: 28px;
	color: var(--color-yellow);
	text-decoration: none;
	border: 2px solid;
	padding: 20px 20px 25px;
	display: inline-block;
}

.f-submit button {
	appearance: none;
	background: transparent;
	border-radius: 0;
}

.cta-secondary {
	font-family: var(--font-heading);
	font-size: 28px;
}

.cta-alt {
	border-color: var(--color-white);
	color: var(--color-white);
}

.cta-subtle {
	background-color: var(--color-navy);
	border-color: var(--color-navy);
}

.cta + .cta-secondary {
	margin-top: 20px;
}

.or {
	color: var(--color-sky);
	font-style: italic;
	padding-right: 5px;
}

.leader {
	font-family: 'Crimson Text';
    font-size: 32px;
    line-height: 1.2em;
	margin-bottom: 25px;
}

.sub-heading {
	font-family: 'Crimson Text';
    font-size: 26px;
    line-height: 1.2em;
    color: var(--color-yellow);
    margin-top: -10px;
    margin-bottom: .5em;
}

.content-main ol,
.content-main ul {
	padding-left: 20px;
}

.content-main li {
	margin-bottom: 1.1em;
}

.content-main p + ol,
.content-main p + ul {
    margin-top: -15px;
}

.align-center {
	text-align: center;
}

@media screen and (max-width: 768px) {

	h1, .h1,
	big {
		font-size: 42px;
	}

	h2, .h2 {
		font-size: 32px;
	}

	.leader {
		font-size: 28px;
	}

}

html,
body {

}

body {
	background-color: var(--color-navy);
	padding: var(--spacing-body);
	overflow-x: hidden;
}

main {

}

.primary-header {
	display: flex;
    flex-direction: column;
    align-items: center;
	position: relative;
	z-index: 50;
}

.logo {
	display: inline-block;
	margin-bottom: -65px;
	position: relative;
	z-index: 10;
}

.logo img {
	width: 190px;
	height: 108px;
	display: inline-block;
	margin: 0 auto;
}

.hero,
.primary-footer,
header .unit-video {
	max-width: 1600px;
	margin: 0 auto;
}

.inner {
	max-width: 1400px;
	margin: 0 var(--spacing-inner);
}

.content-grid {
	display: grid;
	grid-template-columns: 360px 1fr;
	grid-column-gap: 80px;
	grid-row-gap: 30px;
	margin-bottom: var(--spacing-stack);
}

.content-main {
	grid-column: 2;
	grid-row: 1;
}

.content-aside {
	grid-column: 1;
	grid-row: 1;
}

.content-single {
	max-width: 720px;
}

.content-single,
.content-home {
	margin-bottom: 100px;
}

hr {
	margin: 50px auto;
    max-width: 420px;
    border-color: rgba(255,255,255,0.2);
}

/* .content-aside :last-child,
.content-aside :last-child :last-child,
.content-main :last-child,
.content-main :last-child :last-child {
	margin-bottom: 0;
} */

.primary-footer {
	border-top: 2px solid var(--color-navy-soft);
	padding-top: var(--spacing-stack);
}

.primary-footer p {
	font-size: 16px;
	color: var(--color-white-soft);
	margin: 0 0 .5em;
	line-height: 1.6em;
}

.footer-navigation ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.footer-navigation li {
	display: inline-block;
	margin-right: 20px;
}

.footer-navigation a {
	display: block;
	font-family: var(--font-heading);
	text-transform: uppercase;
	color: var(--color-yellow);
}

.hero {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-bottom: var(--spacing-stack-large);
	height: var(--height-hero);
	position: relative;
}

.hero:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	animation: hero-reveal;
	animation-duration: 1000ms;
	z-index: 1;
	animation-timing-function: cubic-bezier(0.22, 0.01, 0, 1.01);
}

@keyframes hero-reveal {

	0% {
		z-index: 18;
		box-shadow: 0 0 0 50vw var(--color-navy) inset;
	}

	100% {
		z-index: 18;
		box-shadow: 0 0 0 0 var(--color-navy) inset;
	}

}

.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 15;
}

.hero > div {
	position: absolute;
    right: 0;
    bottom: -40px;
    left: 0;
    text-align: center;
	z-index: 20;
}

.hero-heading h1 {
	display: inline-block;
    background: var(--color-yellow);
    color: var(--color-navy);
    padding: 10px 50px;
	margin: 0;
}

.hero-home {
	margin-bottom: var(--spacing-stack);
}

.hero-home > div {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0px;
    left: 0;
    text-align: center;
	z-index: 20;
	display: flex;
	align-items: center;
}

.hero-home .hero-block {
	display: inline-block;
    background: var(--color-navy);
    color: var(--color-navy);
    padding: 30px 0 20px;
    margin: 0 auto;
	width: 100%;
	max-width: 410px;
	box-shadow: 0 0 0 0px var(--color-navy);
	transition: box-shadow 800ms;
}

.hero-home:hover .hero-block {
	box-shadow: 0 0 0 20px var(--color-navy);
}

.hero-home .hero-block h1,
.hero-home .hero-block p,
.hero-home .hero-block p a {
	font-size: 32px;
	margin-bottom: 20px;
}

.hero-home-video {
	display: grid;
    grid-template-columns: 1fr 400px;
    background: var(--color-navy-dark);
    height: auto;
	margin-bottom: var(--spacing-stack);
}

.hero-home-video:after {
	display: none;
}

.hero-home-video h1 {
	color: var(--color-white);
}

.hero-home-video > iframe {
	aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    display: block;
	margin: auto;
}

.hero-home-video > div {
	position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-home-video .hero-block {
	display: flex;
	flex-direction: column;
	padding: 20px 30px;
	height: 100%;
	justify-content: center;
}

.hero-home-video .cta {
	display: block;
}

.hero-home-video .cta + .cta {
	margin-top: 10px;
}

.hero-ticks {
	list-style: none;
	margin: 20px auto 0;
	text-align: left;
	width: 190px;
}

.hero-ticks li {
	margin-bottom: 5px;
}

.hero-ticks svg {
    position: relative;
    top: 3px;
    margin-right: 5px;
}

header .unit-video {
	margin-bottom: var(--spacing-stack);
}

.content-main > * {
	animation: slide-in forwards 800ms;
	animation-delay: 1400ms;
	opacity: 0;
}

.content-main > :nth-child(1) { animation-delay: 500ms; }
.content-main > :nth-child(2) { animation-delay: 600ms; }
.content-main > :nth-child(3) { animation-delay: 700ms; }
.content-main > :nth-child(4) { animation-delay: 800ms; }
.content-main > :nth-child(5) { animation-delay: 900ms; }
.content-main > :nth-child(6) { animation-delay: 1000ms; }
.content-main > :nth-child(7) { animation-delay: 1100ms; }
.content-main > :nth-child(8) { animation-delay: 1200ms; }
.content-main > :nth-child(9) { animation-delay: 1300ms; }
.content-main > :nth-child(10) { animation-delay: 1400ms; }

.legal-box {
    margin: 30px 0;
	font-size: 16px;
    color: var(--color-white-soft);
    margin: 0 0 .5em;
    line-height: 1.6em;
}

.legal-box *:last-child {
	margin-bottom: 0;
}

.legal-box small {
	font-size: 1em;
}

.legal-box strong {
	font-weight: normal;
}

.accordion-summary {
	cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    padding: 30px 0 30px 30px;
    font-size: 20px;
    list-style-type: none;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

.accordion {
	border-top: 2px solid var(--color-navy-soft);
	border-bottom: 2px solid var(--color-navy-soft);
}

.accordion-arrow {
    width: 12px;
    height: 8px;
    stroke: currentColor;
    fill: none;
    vertical-align: top;
    position: relative;
    top: 9px;
    transition: transform .2s;
    margin-left: -23px;
}

.accordion-arrow+span {
    padding-left: 11px;
    display: inline-block;
}

.accordion[open] .accordion-arrow {
    transform: rotate(180deg);
}

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

	.hero-home-video h1 {
		font-size: 40px;
	}

	.hero-home-video .cta {
		font-size: 22px;
		padding: 10px 15px 15px;
	}

}

@media screen and (max-width: 1024px) {
	
	.hero-home-video {
	    grid-template-columns: 1fr 300px;
	}

}

@media screen and (max-width: 1023px) {

	.hero-home-video {
	    grid-template-columns: 1fr;
	}

	.hero-home-video .hero-block {
		display: block;
	}

	.content-grid {
		grid-template-columns: 250px 1fr;
	}

	.hero-home-video .cta {
		display: inline-block;
	}

	.logo {
		margin-bottom: 20px;
	}

	.logo img {
		width: 155px;
		height: 88px;
	}

}

@media screen and (max-width: 767px) {

	.content-grid {
		grid-template-columns: 1fr;
	}

	.content-main {
		grid-column: 1;
		grid-row: 1;
	}

	.content-aside {
		grid-column: 1;
		grid-row: 2;
		border-top: 1px solid rgba(255,255,255,0.2);
		padding-top: 50px;
	}

}

@media screen and (max-width: 640px) {

	.logo img {
		width: 155px;
		height: 88px;
	}

	hr {
		max-width: 250px;
	}

	.hero-home > div {
		padding-left: var(--spacing-inner);
		padding-right: var(--spacing-inner);
	}
	
	.hero-home .hero-block h1,
	.hero-home .hero-block p,
	.hero-home .hero-block p a {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.hero-home-video .cta {
		width: 100%;
		text-align: center;
	}

}


.article-section {
    margin: 20px 0;
}

.unit-article-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
    background-color: var(--color-navy-dark);
    text-decoration: none;
}

.unit-article-link:hover,
.unit-article-link:focus {
    text-decoration: none;
}

.unit-article-link:hover h3,
.unit-article-link:focus h3 {
    text-decoration: underline;
}

.unit-article-link figure {
    overflow: hidden;
}

.unit-article-link .article-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms;
}

.unit-article-link:hover .article-img,
.unit-article-link:focus .article-img {
    transform: scale(1.05);
}

.article-card {
    padding: 30px;
}

.article-card .faux-link {
    color: var(--color-sky);
}

.faux-link:hover,
.faux-link:focus {
    text-decoration: underline;
}

.article-date {
    color: white;
    font-style: italic;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.hero-article {
    margin-bottom: 50px;
	aspect-ratio: 160/73;
	height: auto !important;
}

.content-article .article-date {
    margin-bottom: 30px;
}

.content-article .article-date:after {
    content: '';
    display: block;
    background-color: var(--color-yellow);
    width: 100px;
    height: 3px;
    margin-top: 15px;
}

.paging {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 50px;
    padding: 0 20px;
}

.paging-disabled {
    opacity: 0.3;
}

@media screen and (max-width: 767px) {

    .unit-article-link {
        grid-template-columns: 1fr;
    }

}

.primary-navigation {
    margin-bottom: 60px;
}

.primary-navigation > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.primary-navigation > ul > li {
    position: relative;
}

.primary-navigation a {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-sky);
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 4px solid var(--color-navy-soft);
    margin: 0 20px;
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 10;
}

.primary-navigation .active:hover > a,
.primary-navigation .active > a:hover,
.primary-navigation .active > a:focus,
.primary-navigation .active > a {
    border-bottom-color: var(--color-sky);
}

.primary-navigation > ul > li:hover > a,
.primary-navigation a:hover,
.primary-navigation a:focus {
    border-bottom-color: var(--color-sky-soft);
}

.primary-navigation > ul > li > a:after {
    content: '';
    display: none;
    position: absolute;
    bottom: -45px;
    right: -50px;
    left: -50px;
    height: 45px;
}

.nav-dropdown-active > a:after,
.nav-has-dropdown:hover > a:after {
    display: block;
}

.nav-has-dropdown > a:before {
    content: '';
    display: none;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    margin-left: -10px;
    left: 50%;
    top: 79px;
    position: absolute;
    background-color: var(--color-navy);
    border: 1px solid var(--color-navy-soft);
    border-bottom: 0;
    border-right: 0;
}

.nav-half + li {
    margin-left: 270px;
}

.nav-half + li a {
    margin-left: 0;
}

.nav-dropdown-active .secondary-navigation,
.primary-navigation li:hover .secondary-navigation,
.nav-dropdown-active > a:before,
.nav-has-dropdown:hover > a:before {
    display: block;
}

.secondary-navigation {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    width: 320px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-navy);
    top: 90px;
    display: none;
    padding: 15px;
    box-shadow: 0 0 20px rgb(0 0 0 / 30%);
    border: 1px solid var(--color-navy-soft);
}

/* .secondary-navigation:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    margin-left: -10px;
    left: 50%;
    top: -10px;
    position: absolute;
    background-color: var(--color-navy);
    border: 1px solid var(--color-navy-soft);
    border-bottom: 0;
    border-right: 0;
} */

.secondary-navigation a {
    display: block;
    color: var(--color-sky);
    padding: 15px 0;
    border-bottom: 1px solid var(--color-navy-soft);
}

.secondary-navigation .active > a,
.secondary-navigation .active > a:hover,
.secondary-navigation .active > a:focus,
.secondary-navigation a:hover,
.secondary-navigation a:focus {
    border-bottom-color: var(--color-navy-soft);
}

.secondary-navigation .active > a:hover,
.secondary-navigation .active > a:focus,
.secondary-navigation a:hover,
.secondary-navigation a:focus,
.aside-navigation a:hover,
.aside-navigation a:focus {
    color: #d3e8ff;
}

.secondary-navigation li:last-child a {
    border-bottom: 0;
}

.aside-navigation {
    margin-top: 40px;
}

.aside-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 2px solid rgba(255,255,255,0.1);
}

.aside-navigation li {
}

.aside-navigation a {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-sky);
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    text-decoration: none;
    display: block;
}

.aside-navigation .nav-section {

}

.aside-navigation .active {

}

@media screen and (max-width: 1023px) {

    .primary-navigation > ul > li {
        margin: 0;
        position: initial;
    }

    .primary-navigation > ul > li > a {
        margin: 0 10px;
    }

    .secondary-navigation {
        top: 180px;
        left: 10px;
        right: 10px;
        width: auto;
        transform: none;
    }

    .primary-navigation > ul > li > a:before {
        top: 62px;
    }

}

@media screen and (max-width: 640px) {

    .primary-navigation {
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 320px) {

    .primary-navigation a {
        font-size: 16px;
    }

}

.logo {
	text-decoration: none;
    text-transform: uppercase;
    font-size: 40px;
    color: var(--color-dark);
}

.icon-link,
.icon-link:hover,
.icon-link:focus {
	text-decoration: none;
}

.icon-link:focus .icon-link-label {
	text-decoration: underline;
}

.icon-link-img {
	vertical-align: middle;
}

.block-label {
    background: #4C585E;
    background-color: rgb(122, 155, 175);
    padding: 10px 20px;
    margin: 0;
    color: white;
    border-radius: 4px;
    font-size: 1.4em;
}


.form-contact .f-item {
    margin-bottom: 40px;
}

.form-contact .f-label {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: normal;
    padding-bottom: 10px !important;
}

.form-contact .f-text-input .f-faux,
.form-contact .f-text-input input,
.form-contact .f-select select,
.form-contact .f-text-input textarea {
    width: 100%;
    height: auto;
    max-width: 100%;
    padding: 15px;
    background-color: rgba(255,255,255,0.1);
    border: 0;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.form-contact .f-text-input textarea {
    height: 300px;
    width: 100%;
}

.form-contact .f-text-input .f-faux:focus,
.form-contact .f-text-input input:focus,
.form-contact .f-select select:focus,
.form-contact .f-text-input textarea:focus {
    background-color: rgba(255,255,255,0.2);
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 0;
    -webkit-text-fill-color: white;
    font-size: 16px;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    box-shadow: 0 0 1000px rgba(255,255,255,0.1) inset;
}

.form-contact .f-checkbox,
.form-contact .f-radio .secondary-label {
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-column-gap: 15px;
}

.form-contact .f-label-primary {
    display: block;
}

.form-contact .f-radio .secondary-label {
    margin-bottom: 10px;
}

.form-contact .f-bool input {
    transform: scale(1.5);
    top: 7px;
}

.form-contact .f-error .f-label {
    color: #ff5b5b;
}

.form-contact .f-required-indicator {
    color: #ff5b5b;
}

.form-contact .f-message {
    padding: 20px;
    margin-bottom: 40px;
    color: var(--color-navy);
}

.form-contact .f-message-success {
    background: #57b380;
}

.form-contact .f-message-error {
    background-color: #e08484;
}

@media screen and (max-width: 640px) {

    .form-contact .f-item {
        margin-bottom: 30px;
    }

    .form-contact .f-label {
        font-size: 22px;
    }

}

.card {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-column-gap: 0;
    margin-bottom: 30px;
}

.card-link {
	box-shadow: 0 0 0 0px #03172E;
	transition: box-shadow 800ms;
    display: block;
}

.card-link:hover {
	box-shadow: 0 0 0 10px #03172E;
}

.card-img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 250px;
}

.card-content {
    padding: 30px;
    background-color: #03172E;
}

.card-link,
.card-link:hover,
.card-link:focus {
    text-decoration: none;
}

@media screen and (max-width: 640px) {

    .card {
        grid-template-columns: 1fr;
    }

    .card-img {
        height: 180px;
    }

}

.inline-img {
    width: 100%;
    display: block;
}

.inline-figure {
    margin: 0px 0px 1.5em;
}

.inline-figure figcaption {
    font-style: italic;
    background-color: var(--color-navy-soft);
    padding: 10px 20px;
    margin-top: 0;
}

.inline-figure figcaption :last-child {
    margin: 0;
}

.section-lenders {
	margin-bottom: var(--spacing-stack-large);
}

.lender {
	background-color:white;
	border-radius: 6px;
	padding: 25px;
	color: var(--color-navy);
	color: #777;
	font-family: Arial, sans-serif;
}

.lender img {
	display: block;
	margin: auto;
	object-fit: contain;
	object-position: center;
	max-width: 100%;
	height: 80px;
}

.section-lenders .tns-controls button {
	top: 60px;
}

.person {
    display: grid;
    grid-template-columns: 225px 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    margin: 50px auto;
    max-width: 800px;
}

.person-img {
    display: block;
    width: 100%;
    height: auto;
}

.person :last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 640px) {

    .person {
        grid-template-columns: 1fr;
        margin: 30px 0;
    }

    .person-img {
        max-width: 150px;
    }

}

.proofs {
    padding-top: 40px;
    margin-bottom: 50px;
}

.proofs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 40px;
}

.proof {
    background-color: var(--color-navy);
    box-shadow: 0 0 0 2px rgba(165, 207, 255, 0.1);
    padding: 30px;
    text-align: center;
    transition: background-color 800ms;
}

a.proof {
    text-decoration: none;
}

a.proof:focus,
a.proof:hover {
    background-color: #03172E;
}

a.proof:focus h3,
a.proof:hover h3 {
    text-decoration: underline;
}

.proof:nth-child(2) {
    top: -40px;
}

.proof-icon-wrapper {
    background-color: var(--color-yellow);
    border-radius: 200px;
    width: 60px;
    height: 60px;
    display: flex;
    margin: 0 auto;
    position: relative;
    margin-top: -60px;
    margin-bottom: 20px;
}

.proof > :last-child {
    margin-bottom: 0;
}

.proof {
    animation: slide-up forwards 800ms;
    transform: translateY(40px);
    position: relative;
    opacity: 0;
    animation-delay: 400ms;
}

.proof:nth-child(2) {
    animation-delay: 600ms;
}

.proof:nth-child(3) {
    animation-delay: 800ms;
}

@media screen and (max-width: 768px) {

    .proofs {
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        margin-left: calc(var(--spacing-body-hori) * -1);
        margin-right: calc(var(--spacing-body-hori) * -1);
        padding-left: var(--spacing-body-hori);
        padding-right: var(--spacing-body-hori);
        overflow: auto;
        padding-bottom: 2px;
    }

    .proof:nth-child(2) {
        top: 0;
    }

    .proofs-inner {
        white-space: nowrap;
        display: inline-flex;
        grid-column-gap: 20px;
    }

    .proofs::-webkit-scrollbar {
        width: 0;
        height: 0;
        background: transparent;
    }

    .proof {
		scroll-snap-align: center;
        width: 240px;
        white-space: normal;
        padding: 15px;
    }

    .proof-icon-wrapper {
        margin-top: -45px;
    }

}

@media screen and (max-width: 640px) {

    .proofs {
        margin-left: calc(var(--spacing-inner) * -1);
        margin-right: calc(var(--spacing-inner) * -1);
        padding-left: var(--spacing-inner);
        padding-right: var(--spacing-inner);
    }

}



.slider {
	font-size: 0;
}

.slider .tns-item {
	font-size: 1rem;
	display: inline-block;
	vertical-align: top;
}

.review {
	background-color:white;
	border-radius: 6px;
	padding: 25px;
	color: var(--color-navy);
	color: #777;
	font-family: Arial, sans-serif;
}

.review-header {
	padding: 5px 0 15px 60px;
	position: relative;
}

.review-google {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 20px;
}

.review-icon {
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0;
	top: 0;
	background-color: blue;
	text-align: center;
	line-height: 50px;
	border-radius: 50px;
	color: white;
	font-size: 22px;
	font-weight: bold;
}

.review-date {
	font-size: 14px;
    margin-top: -5px;
    font-weight: bold;
}

.review-rating {
	overflow: hidden;
    display: block;
	position: relative;
	left: -3px;
}

.rating-1 { width: 30px; }
.rating-2 { width: 60px; }
.rating-3 { width: 90px; }
.rating-4 { width: 120px; }

.review-rating img {
	display: block;
}

.review-text {
	font-size: 16px;
	line-height: 1.8em;
	height: 250px;
	overflow-y: auto;
	padding-right: 5px;
}

.review-text p {
	margin-bottom: 10px;
}

.review-reviewer {
	font-weight: bold;
	font-size: 18px;
	color: #427FED;
	margin-bottom: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.review-text::-webkit-scrollbar {
    width: 6px !important;
}

.review-text::-webkit-scrollbar-thumb {
    border-radius: 10px !important;
    background: #ccc !important;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.5) !important;
}

.review-text::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3) !important;
    border-radius: 4px !important;
}

.tns-outer {
	position: relative;
}

.tns-ovh {
	overflow: hidden;
}

.tns-visually-hidden {
	position: absolute;
	left: -10000em;
}

.tns-controls button {
	appearance: none;
    color: transparent;
    background: transparent;
    border: 0;
	width: 59px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg width='59' height='20' viewBox='0 0 59 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.7616 20C46.5236 16.3533 48.172 13.6182 49.7066 11.7949H0V8.20513H49.7066C48.172 6.38177 46.5236 3.64672 44.7616 0H47.7457C51.3266 4.15954 55.078 7.23647 59 9.23077V10.7692C55.078 12.7066 51.3266 15.7835 47.7457 20H44.7616Z' fill='%23FFEFB8'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	position: absolute;
	top: 150px;
	cursor: pointer;
	opacity: 0.8;
}

.tns-controls button:hover {
	opacity: 1;
}

.tns-controls button:first-child {
	transform: rotate(180deg);
	left: -100px;
}

.tns-controls button:nth-child(2) {
	right: -100px;
}

@media screen and (max-width: 1023px) {

	.tns-outer {
		margin: 0;
		width: auto;
	}

}

@media screen and (max-width: 1350px) {

	.tns-controls {
		display: none;
	}

}

.unit-video {
	margin-bottom: 1.7rem;
}

.unit-video-inner {
	height: 0;
	position: relative;
	padding-bottom: 56.25%;
}

.unit-video iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
