* {
	box-sizing: border-box;
}
.Display_None_Important {
	display: none !important;
}

/*----------------------------------------------------- Form Containers --------------------------------------------*/
.FormContainer {
	display: flex;
	flex-wrap: wrap;
}
.InfoContainer {
	width: 100%;
	font-size: 14px;
	padding: 20px 30px 20px 60px;
	background-color: #f5f5f5;
	margin-bottom: 30px;
	background-image: url("../../images/forms/icon_info.png");
	background-repeat: no-repeat;
	background-position: left 20px center;
}
.InstructionContainer {
	width: 100%;
	font-size: 14px;
	padding: 20px 30px 20px 30px;
	background-color: #f5f5f5;
	margin-bottom: 30px;
}
.FormTile {
	float: left;
	margin-bottom: 30px;
	padding-bottom: 5px;
	margin-right: 50px;
	min-width: 290px;
}
.ActiveFormTile {
	outline: none;
	border-color: #3ba9e8;
	box-shadow: 0 0 5px #3ba9e8;
}
.FormSectionContainer {
	padding: 5px 0px 0px;
	float: left;
	clear: both;
}
.FieldComboBox {
	position: relative;
	float: left;
	margin-right: 10px;
	margin-bottom: 5px;
}
.DisclaimerContainer {
	width: 100%;
	font-size: 14px;
	padding: 0px 30px;
	background-color: #f5f5f5;
	margin-bottom: 30px;
}
/*----------------------------------------------------- Application Fields --------------------------------------------*/
.FieldLabel {
	font-size: 12px;
	margin-bottom: 5px;
}
.NoLabel {
	height: 1px;
}
.FullSizeFieldLabel {
	font-size: 14px;
	margin-bottom: 5px;
}
.FormSectionContainer input[type=text], .FormTile input[type=password] {
	height: 30px;
	font-size: 14px;
	border: 1px solid #c2c2c2;
	padding: 0px 10px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	line-height: 30px;
}
.FormSectionContainer input[type=radio] {
	height: 13px;
	width: 13px;
}
.FormSectionContainer select {
	height: 30px;
	font-size: 14px;
	border: 1px solid #c2c2c2;
	padding: 0px 0px 0px 10px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	line-height: 30px;
	vertical-align: middle;
	-webkit-border-radius: 0px;
	-webkit-background-color: #ffffff;
	border-radius: 0px;
}
.FormSectionContainer textarea {
	border: 1px solid #c2c2c2;
	padding: 10px;
	font-size: 14px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	resize: none;
}
.Field_RightAlign .FieldLabel, .Field_RightAlign input[type=text], .Field_RightAlign .PsuedoLabel {
	text-align: right;
}
.FormTile input[type=text]:disabled, .FormTile select:disabled, .FormTile textarea:disabled {
	background-color: #f5f5f5;
}
.FormTile .PsuedoLabel input[type=text], .FormTile .PsuedoLabel input[type=text]:disabled {
	border: 1px solid transparent;
	padding: 0px;
}
.StandAloneField input[type=text] {
	height: 30px;
	font-size: 14px;
	border: 1px solid #c2c2c2;
	padding: 0px 10px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	line-height: 30px;
}
/*----------------------------------------------------- Checkmarks --------------------------------------------*/
.Field_Checkbox {
	display: block;
	position: relative;
	padding-left: 40px;
	margin-top: 5px;
	margin-bottom: 5px;
	cursor: pointer;
	font-size: 12px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.Field_Checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.Checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 15px;
	width: 15px;
	background-color: #ffffff;
	border: 1px solid #c2c2c2;
}
.Field_Checkbox:hover input ~ .Checkmark {
	background-color: #f5f5f5;
}
.Field_Checkbox input:checked ~ .Checkmark {
	background-color: #ffffff;
}
.Checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.Field_Checkbox input:checked ~ .Checkmark:after {
	display: block;
}
.Field_Checkbox .Checkmark:after {
	left: 3px;
	top: 1px;
	width: 4px;
	height: 8px;
	border: solid #000000;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*----------------------------------------------------- Radio Buttons --------------------------------------------*/
.RadioContainer {
	height: 30px;
	border: 1px solid #c2c2c2;
	float: left;
	margin-right: 10px;
	line-height: 30px;
	padding-left: 5px;
	padding-right: 10px;
	font-size: 14px;
	background-color: #ffffff;
}
.RadioContainer:hover {
	cursor: pointer;
}
.MinimalRadioContainer {
	float: left;
}
.MinimalRadioContainer label {
	height: 30px;
	border: 1px solid #c2c2c2;
	float: left;
	margin-right: 10px;
	line-height: 30px;
	padding-left: 15px;
	padding-right: 15px;
	font-size: 14px;
	background-color: #ffffff;
}
.MinimalRadioContainer label:hover {
	cursor: pointer;
}
.MinimalRadioContainer input {
	display: none;
}
.MinimalRadioContainer input:checked + label {
	border: 1px solid #81a20f !important;
	-moz-box-shadow: 0 0 5px #81a20f;
	-webkit-box-shadow: 0 0 5px #81a20f;
	box-shadow: 0 0 5px #81a20f;
}
.CheckboxContainer {
	height: 25px;
	border: 1px solid #c2c2c2;
	float: left;
	margin-right: 10px;
	line-height: 25px;
	padding-left: 7px;
	padding-right: 12px;
	width: 90px;
}
/*----------------------------------------------------- Circle Radio Buttons --------------------------------------------*/
.CircleRadioContainer {
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: none;
}
.CircleRadioContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.CircleRadioCheckmark {
	position: absolute;
	margin-top: 3px;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #ffffff;
	border: 2px solid #c2c2c2;
	border-radius: 50%;
}
.CircleRadioContainer:hover input ~ .CircleRadioCheckmark {
	background-color: #f5f5f5;
}
.CircleRadioContainer input:checked ~ .CircleRadioCheckmark {
	border: 2px solid #9cad3c;
}
.CircleRadioCheckmark:after {
	content: "";
	position: absolute;
	display: none;
}
.CircleRadioContainer input:checked ~ .CircleRadioCheckmark:after {
	position: absolute;
	content: '';
	display: block;
	width: 5px;
	height: 10px;
	border: solid #9cad3c;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	left: 50%;
	margin-left: -3px;
	top: 50%;
	margin-top: -7px;
}
.CircleRadioContainer .CircleRadioCheckmark:after {
}
/*----------------------------------------------------- Toggle Switches --------------------------------------------*/
.ToggleSwitch {
	position: relative;
	display: inline-block;
	width: 34px;
	height: 20px;
	margin-top: 5px;
}
.ToggleSwitch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.ToggleSlider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}
.ToggleSlider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .ToggleSlider {
	background-color: #7ca233;
}
input:focus + .ToggleSlider {
	box-shadow: 0 0 1px #7ca233;
}
input:checked + .ToggleSlider:before {
	-webkit-transform: translateX(14px);
	-ms-transform: translateX(14px);
	transform: translateX(14px);
}
.ToggleSlider.Round {
	border-radius: 20px;
}
.ToggleSlider.Round:before {
	border-radius: 50%;
}
/*----------------------------------------------------- Help Prompts --------------------------------------------*/
.InlineFieldHelpPrompt {
	clear: both;
	font-size: 12px;
	padding-left: 30px;
	position: relative;
	width: 280px;
	padding-top: 5px;
	padding-bottom: 10px;
}
.InlineFieldHelpPrompt::before {
	content: '';
	width: 18px;
	height: 18px;
	position: absolute;
	background-image: url("../../images/forms/icon_help.png");
	background-repeat: no-repeat;
	background-position: center;
	left: 0;
	margin-top: -9px;
	top: 50%;
}
.PopupHelpPrompt {
	position: relative;
}
.PopupHelpPromptIcon {
	width: 20px;
	height: 20px;
	position: absolute;
	background-image: url("../../images/forms/icon_help.png");
	background-repeat: no-repeat;
	background-position: center;
	right: -30px;
	top: 50%;
	margin-top: -10px;
	cursor: pointer;
}
.PopupHelpPromptMessage {
	color: #ffffff;
	border-radius: 5px;
	z-index: 1000;
	position: absolute;
	padding: 15px;
	right: -30px;
	top: 30px;
	background-color: rgba(0,0,0,.8);
	font-size: 12px;
	width: calc(100% + 30px);
	display: none;
}
.PopupHelpPromptIcon:hover + .PopupHelpPromptMessage {
	display: block;
}
.PopupHelpPromptIcon.hover {
	background-image: url("../../images/forms/icon_remove.png");
}
.PopupHelpPromptIcon.hover + .PopupHelpPromptMessage {
	display: block;
}
.HeaderPopupHelpPrompt .PopupHelpPromptIcon {
	top: auto;
	bottom: 3px;
}
.PopupHelpPromptIcon:hover ~ .ValidationPromptContainer {
	display: none !important;
}
/*----------------------------------------------------- Validation --------------------------------------------*/
.error {
	background-color: #ffcccc;
	position: relative;
}
input.error[type=text] {
	background-image: url("../../images/forms/icon_error.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	cursor: pointer;
}
.error + label {
	color: #ffffff;
	border-radius: 5px;
	z-index: 1000;
	position: absolute;
	padding: 15px;
	right: 0px;
	top: 100%;
	background-color: rgba(191,49,26,.9);
	font-size: 12px;
	min-width: 125px;
	width: 100%;
	display: none !important;
}
.error:hover + label {
	display: block !important;
}
/*----------------------------------------------------- Application Field Sizes --------------------------------------------*/
.Field_Standard input[type=text], .Field_Standard input[type=password], .Field_Standard .PsuedoLabel {
	width: 280px;
}
.Field_Standard select {
	width: 280px;
}
.Field_Standard textarea {
	width: 280px;
}
.Field_Large input[type=text], .Field_Large input[type=password], .Field_Large .PsuedoLabel {
	width: 220px;
}
.Field_Large select {
	width: 220px;
}
.Field_Large textarea {
	width: 220px;
}
.Field_Medium input[type=text], .Field_Medium input[type=password], .Field_Medium .PsuedoLabel {
	width: 160px;
}
.Field_Medium select {
	width: 160px;
}
.Field_Half input[type=text], .Field_Half input[type=password], Field_Half .PsuedoLabel {
	width: 135px;
}
.Field_Half select {
	width: 135px;
}
.Field_Small input[type=text], .Field_Small input[type=password], .Field_Small .PsuedoLabel {
	width: 110px;
}
.Field_Small select {
	width: 110px;
}
.Field_Tiny input[type=text], .Field_Tiny input[type=password], .Field_Tiny .PsuedoLabel {
	width: 70px;
}
.Field_Tiny select {
	width: 70px;
}
/*----------------------------------------------------- Buttons --------------------------------------------*/
.PageNavigationContainer {
	border-top: 1px solid #c2c2c2;
	clear: both;
	margin-top: 30px;
	margin-bottom: 30px;
}
.PanelNavigationContainer {
	clear: both;
	margin-top: 30px;
	margin-bottom: 50px;
}
.Button {
	font-size: 14px;
	float: left;
	background-color: #5d5d5d;
	color: #ffffff;
	height: 40px;
	line-height: 40px;
	padding-left: 20px;
	padding-right: 20px;
	position: relative;
	margin-right: 10px;
	margin-bottom: 10px;
}
.Button:hover {
	background-color: #4c4c4c;
	cursor: pointer;
}
.Button.AltButton {
	background-color: #ffffff;
	border: 1px solid #c2c2c2;
	color: #1f92c2;
}
.Button.AltButton.HasLeftIcon {
	padding-left: 50px;
}
.Button.AltButton:hover {
	background-color: #f5f5f5;
}
.Button.HasRightIcon {
	padding-right: 40px;
}
.Button.HasLeftIcon {
	padding-left: 40px;
}
.Link.HasLeftIcon {
	padding-left: 30px
}
.Button.HasCenterIcon {
	padding-left: 22px;
	padding-right: 22px;
}
.Button.HasRightIcon {
	padding-right: 40px;
}
.Button.ArrowIcon::before {
	border-style: solid;
	border-width: 2px 2px 0 0;
	content: '';
	display: inline-block;
	height: 7px;
	position: absolute;
	transform: rotate(-45deg);
	width: 7px;
	top: 50%;
	margin-top: -5px;
}
.Button.ArrowIcon.RightArrow:before {
	right: 20px;
	transform: rotate(45deg);
}
.Button.ArrowIcon.LeftArrow:before {
	left: 20px;
	transform: rotate(-135deg);
}
.Button.CheckmarkIcon::after {
	position: absolute;
	content: '';
	display: block;
	width: 5px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	right: 17px;
	top: 50%;
	margin-top: -7px;
}
.Button.HasRightIcon.EmailIcon {
	background-image: url("../../images/forms/buttonicon_email.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
}
.Button.HasRightIcon.TextIcon {
	background-image: url("../../images/forms/buttonicon_text.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
}
.Button.HasLeftIcon.LinkIcon {
	background-image: url("../../images/forms/icon_link.png");
	background-repeat: no-repeat;
	background-position: left 15px center;
}
.Button.HasLeftIcon.AddIcon {
	background-image: url("../../images/forms/icon_add.png");
	background-repeat: no-repeat;
	background-position: left 15px center;
}
.Button.Disabled {
	color: #888888;
}
.Link.HasLeftIcon.AddIcon {
	background-image: url("../../images/forms/icon_add.png");
	background-repeat: no-repeat;
	background-position: left 0px center;
}
.Link.HasLeftIcon.PrintIcon {
	background-image: url("../../images/forms/icon_print.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
}
.ButtonContainer {
	position: relative;
}
.ButtonContainer.Success::after {
	content: 'Everything looks good';
	position: absolute;
	height: 20px;
	width: 300px;
	padding-left: 35px;
	left: 0px;
	bottom: -20px;
	background-image: url("../../images/forms/icon_success_circle.png");
	background-repeat: no-repeat;
	background-position: left center;
	color: #000000;
	line-height: 20px;
}
.ButtonContainer.Failure::after {
	content: 'Please fix errors above in red';
	position: absolute;
	height: 20px;
	width: 300px;
	padding-left: 35px;
	left: 0px;
	bottom: -20px;
	background-image: url("../../images/forms/icon_failure_circle.png");
	background-repeat: no-repeat;
	background-position: left 0 center;
	color: #dd0000;
	line-height: 20px;
}
/*----------------------------------------------------- Misc --------------------------------------------*/
.Clear {
	clear: both;
}
.ClearLeft {
	clear: left;
}
.FormSubHeader {
	width: 100%;
	clear: both;
	margin-bottom: 15px;
}
.FormSubHeader h2 {
	display: inline-block;
}
.AltFormSubHeader {
	visibility: hidden;
}
.FieldColumnBreak {
	margin-right: 91px;
}
.InlineField {
	float: left;
	margin-right: 10px;
}
.PermanentFieldLabel {
	position: relative;
}
.PermanentFieldLabel::after {
	content: attr(data-permanent-field-label);
	position: absolute;
	right: 10px;
	top: 0px;
	height: 30px;
	line-height: 30px;
	color: #777777;
}
.AddSectionLink {
	height: 30px;
	font-size: 14px;
	padding: 0px 10px 0px 30px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	line-height: 30px;
	background-image: url("../../images/forms/icon_add.png");
	background-repeat: no-repeat;
	background-position: left center;
	color: #1f92c2;
}
.AddSectionLink:hover, .RemoveSectionLink:hover {
	cursor: pointer;
}
.RemoveSectionLink {
	float: right;
	height: 30px;
	font-size: 14px;
	margin-right: 10px;
	padding: 0px 30px 0px 10px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	line-height: 30px;
	background-image: url("../../images/forms/icon_remove.png");
	background-repeat: no-repeat;
	background-position: right center;
	color: #1f92c2;
}
.PsuedoLabel {
	height: 30px;
	font-size: 14px;
	border: 1px solid transparent;
	padding: 0px 10px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	line-height: 30px;
	padding-left: 0px;
}
.GroupFields {
	float: left;
}
.DisableInput input[type=text], .DisableInput select, .DisableInput textarea {
	pointer-events: none;
	background-color: #f5f5f5;
}
.DisableLink {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	color: #aaaaaa;
}

.NotInterestedPopup .MinimalRadioContainer {
	margin-bottom: 10px;
}

	.NotInterestedPopup .MinimalRadioContainer label {
		width: 290px;
	}

/*----------------------------------------------------- Popup --------------------------------------------*/
.GeneralPopup_Maskdiv {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	height: 2000px;
	filter: alpha(opacity=60);
	opacity: 0.6;
	z-index: 4950;
	background-color: Black;
}
.ScreenMask {
	width: 100%;
	height: 100%;
	z-index: 10000 !important;
	position: fixed;
	zoom: 1;
	background-image: url('../../images/global/tile_screen-mask.png');
	background-repeat: repeat;
	left: 50%;
	margin-left: -50%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.PopupContainer {
	background-color: #ffffff;
	filter: alpha(opacity=100);
	opacity: 1;
	width: 500px;
	margin: auto;
	top: 100px;
	z-index: 310 !important;
	color: #2d2d2d;
	position: relative;
}
