body {
	height:100%;
	margin:0px;
	padding:0px;
	background:#fff;
	font-family:'robotoregular', Arial, Helvetica, sans-serif;
	font-size:16px;
	color:#555;
	line-height:20px;
}
a {
	color:#3cbddc;
	text-decoration: none;
	cursor:pointer;
}
a:hover {color:#000;}

a.moreInfo {
	color:#3cbddc;
	position: relative;
	text-decoration: none;
	display: inline-block;
}
a.moreInfo span {
	width: 0;
	height: 100%;
	position: absolute;
	display: block;
	border-bottom: 1px solid #3cbddc;
	left: 50%;
	top: 0;
		-moz-transition: 0.2s ease;
		-ms-transition: 0.2s ease;
		-o-transition: 0.2s ease;
		-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
a.moreInfo:hover span {
	text-decoration: none;
	display: inline-block;
	width: 100%;
	left:0;
}

strong, b {
	font-weight:normal;
	font-family:'robotobold', Arial, Helvetica, sans-serif;
}

p {
	margin:0 0 20px 0;
	padding:0;
}

hr {
  margin:24px 0px 25px 0px;
  border:0;
  border-top:1px solid #fff;
  border-bottom:1px solid #ccc;
  padding:0 0 0 0;
}


/**===== HEADING =*/
h1, h2, h3, h4, h5, h6 {
	font-family:'robotoregular', Arial, Helvetica, sans-serif;
	font-weight:normal;
	margin:0px;
	padding:0px;
}
h1 {
	font-size:25px;
	line-height:28px;
	color:#000;
	text-transform:uppercase;
	border-bottom:1px solid #3cbddc;
	margin:0px 0px 20px 0px;
	padding:0 0 2px 0;
}

h2 {
	font-family:'robotolight', Arial, Helvetica, sans-serif;
	font-size:20px;
	line-height:24px;
	color:#555;
	margin:0px 0px 30px 0px;
}


/**===== LIST STYLING =*/
ul {
	margin:10px 0 20px 30px;
	padding:0px;
}
ul li {
	margin:0px;
	padding:6px 0px 6px 26px;
	list-style:none;
	border-bottom:1px solid #ccc;
}
ul li:last-child { border:none;}

.fb-page, .fb-page iframe[style], .fb-page span {width: 100% !important;}

.img_border {
	border:4px solid #e68f24;
	background:#fff;
	padding:1px;
}

.img_left {float:left;margin:0px 20px 15px 0px;}
.img_right {float:right;margin:0px 0px 15px 20px;}

.left { float:left;}
.right { float:right;}

.AlignCenter { text-align:center;}
.AlignLeft { text-align:left;}
.AlignRight { text-align:right;}

.clear { clear:both;}
.clear_left {clear:left;}

.pad10 { padding:10px;}
.pad15 { padding:15px;}
.pad20 { padding:20px;}
.pad20_0 { padding:20px 0px;}
.pad25 { padding:25px;}
.pad30 { padding:30px;}
.pad35 { padding:35px;}
.pad40 { padding:40px;}


/**===== TEXT COLORS =*/
.TextBlack { color:#101010 !important;}
.TextGrey { color:#939496 !important;}
.TextWhite { color:#ffffff !important;}
.TextBrown { color:#835b38 !important;}
.TextPurple { color:#95337c !important;}
.TextViolet { color:#5e5398 !important;}
.TextOrange { color:#fba41f !important;}
.TextPink { color:#ee84aa !important;}
.TextGreen { color:#1cbb9f !important;}
.TextBlue { color:#3cbddc !important;}
.TextYellow { color:#fcd93d !important;}
.TextRed { color:#e74e3e !important;}
.text_red2 { color:#e74e3e !important;}

.Note { font-size:13px; font-style:italic;}


/**===== BACKGROUND COLORS =*/
.BgBlack {background:#101010;color:#fff;}
.BgDrkGray {background:#939496;color:#fff;}
.BgLitGrey {background:#ededed;}
.BgBrown  {background:#3980a4;color:#fff;}
.BgPurple { background:#95337c;color:#fff;}
.BgViolet { background:#5e5398;color:#fff;}
.BgOrange { background:#fba41f;color:#fff;}
.BgPink { background:#ee84aa;color:#fff;}
.BgGreen { background:#1cbb9f;color:#fff;}
.BgBlue { background:#3cbddc;color:#fff;}
.BgYellow { background:#fcd93d;color:#fff;}
.BgRed { background:#e74e3e;color:#fff;}



/**===== INPUT BUTTON =*/
.button {
	background:#1cbb9f;
	display: inline-block;
	padding: 10px 20px 10px 20px;
	margin:0;
	font-family:'robotolight', Arial, Helvetica, sans-serif;
	font-size: 20px;
	color:#fff;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	border:none;
		-moz-border-radius:4px;
		-ms-border-radius:4px;
		-o-border-radius:4px;
		-webkit-border-radius:4px;
	border-radius:4px;
}

.button.hvr-rectangle-out, .button.hvr-rectangle-out:before {
	border:none;
		-moz-border-radius:4px;
		-ms-border-radius:4px;
		-o-border-radius:4px;
		-webkit-border-radius:4px;
	border-radius:4px;
		-moz-transition-duration: 0.2s;
		-ms-transition-duration: 0.2s;
		-o-transition-duration: 0.2s;
		-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
}
.button.hvr-rectangle-out {background:#1cbb9f;}
.BtnBlue.hvr-rectangle-out {background:#3cbddc;}
.BtnOrange.hvr-rectangle-out {background:#fba41f;}
.BtnRed.hvr-rectangle-out {background:#e74e3e;}
.BtnGrey.hvr-rectangle-out {background:#b5b5b5;}

.button.hvr-rectangle-out:before,
.BtnBlue.hvr-rectangle-out:before,
.BtnOrange.hvr-rectangle-out:before,
.BtnRed.hvr-rectangle-out:before,
.BtnGrey.hvr-rectangle-out:before {background:#4b4b4d;}


/**===== INPUT FIELD =*/
.BtnFullWidth .button { width:100%;}

.text_field {
	border:1px solid #ccc;
	background:#fff;
	font-family:'robotoregular', Arial, Helvetica, sans-serif;
	color:#999;
	font-size:15px;
	padding:10px 12px;
	margin:0px 0px 0px 0px;
	width:100%;
		-moz-border-radius:4px;
		-ms-border-radius:4px;
		-o-border-radius:4px;
		-webkit-border-radius:4px;
	border-radius:4px;
	behavior:url(css/PIE.htc);
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position:relative;
	overflow-y: auto;
}
.text_field:focus {
	border-color:#3cbddc;
	color:#000;
		-ms-box-shadow:0 0 4px 4px rgba(60,190,220, .15);
		-webkit-box-shadow:0 0 4px 4px rgba(60,190,220, .15);
		-moz-box-shadow:0 0 4px 4px rgba(60,190,220, .15);
		-o-box-shadow:0 0 4px 4px rgba(60,190,220, .15);
	box-shadow:0 0 4px 4px rgba(60,190,220, .15);
}

.SmallField2 {
	position:relative;
	width:48.5%;
}
.FieldWrapper { position:relative;}
.FieldWrapper .fa {
	position:absolute;
	top:1px;
	left:1px;
}
.FieldWrapper .fa {
	background:#f0eeee;
	font-size:18px;
	line-height:40px;
	height:40px;
	width:40px;
	text-align:center;
	color:#999;
	border-right:1px solid #ccc;
		-moz-border-radius:4px 0 0 4px;
		-ms-border-radius:4px 0 0 4px;
		-o-border-radius:4px 0 0 4px;
		-webkit-border-radius:4px 0 0 4px;
	border-radius:4px 0 0 4px;
}
.FieldWrapper .text_field { text-indent:36px;}

.FieldBtnFixed {
	position:absolute;
	top:1px;
	right:1px;
}

.FormWrapper { width:65%;}
.FormWrapper .text_field { margin-top:2px;}

@media All and (max-width: 650px) {
	.FormWrapper { width:100%;}
}
@media All and (max-width: 480px) {
	.SmallField2 { width:100%;}
}

/**===== NOTIFICATIONS =*/
.red, .green, .yellow, .blueInfo {
	display: block;
	background:no-repeat 10px 11px;
	border:1px solid #ae4c4b;
	padding:10px 10px 10px 40px;
	color:#822223;
	margin:10px 0px 10px 0px;
	border-radius:4px;
		-moz-border-radius:4px;
		-ms-border-radius:4px;
		-o-border-radius:4px;
		-webkit-border-radius:4px;
	behavior:url(css/PIE.htc);
}
.red {
	background-image:url(../images/bullet_error.png);
	background-color:#ef8d8e; 
	border-color: #ae4c4b;
	color:#822223;
}
.green {
	background-image:url(../images/bullet_success.png);
	background-color:#a8da93; 
	border-color: #448d3e;
	color:#1d571c;
}
.yellow {
	background-image:url(../images/bullet_attention.png);
	background-color:#f7efa7; 
	border-color: #c5a46f;
	color:#8f5212;
}
.blueInfo {
	background-image:url(../images/bullet_info.png);
	background-color:#b0c1db; 
	border-color: #5581a4;
	color:#2a4b76;
}