/*
 * Copyright 2020 MetLife Services and Solutions, LLC
 * 
 * Global Layout
 */
 
 /* HTML, BODY */
 
 html, body {
	 height: 100%;
	 overflow: hidden;
 }

/* BUTTON */

.ml-button-wrapper {
	margin: 20px; 0;
}

.ml-button-primary {
	box-sizing: content-box;
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	background-color: #007abc;
	text-decoration: none;
	font-weight: bold;
	border-radius: 2px;
	padding: 12px 14px;
	border: 0;
	display: inline-block;
	color: #fff;
}

.ml-button-primary:hover, .ml-button-primary.hover, .hover.ml-button-primary {
	color: #fff;
	text-decoration: underline;
	background-color: #0061a0;
}

.ml-button-primary:focus, .ml-button-primary.focus, .focus.ml-button-primary {
	color: #fff;
	outline-color: #333;
	text-decoration: underline;
	background-color: #0061a0;
	box-shadow: 0 0 3px #333, 0 0 7px #333;
}

.ml-button-primary-dark {
	box-sizing: content-box;
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	background-color: #a4ce4e;
	text-decoration: none;
	font-weight: bold;
	border-radius: 2px;
	padding: 12px 14px;
	border: 0;
	display: inline-block;
	color: #000;
}

.ml-button-primary-dark:hover, .ml-button-primary-dark.hover, .hover.ml-button-primary-dark {
	color: #000;
	text-decoration: underline;
	background-color: #B7DD58;
}

.ml-button-primary-dark:focus, .ml-button-primary-dark.focus, .focus.ml-button-primary-dark {
	color: #000;
	outline-color: #333;
	text-decoration: underline;
	background-color: #B7DD58;
	box-shadow: 0 0 3px #333, 0 0 7px #333;
}

.ml-button-secondary {
	box-sizing: content-box;
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	background-color: #fff;
	text-decoration: none;
	font-weight: bold;
	border: solid 2px #007abc;
	border-radius: 2px;
	padding: 10px 12px;
	display: inline-block;
	color: #007abc;
}

.ml-button-secondary:hover, .ml-button-secondary.hover, .hover.ml-button-secondary {
	color: #fff;
	text-decoration: underline;
	background-color: #007abc
}

.ml-button-secondary:focus, .ml-button-secondary.focus, .focus.ml-button-secondary {
	color: #fff;
	outline-color: #333;
	text-decoration: underline;
	background-color: #007abc;
	box-shadow: 0 0 3px #333, 0 0 7px #333;
}

.ml-button-secondary-dark {
	box-sizing: content-box;
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	background-color: transparent;
	text-decoration: none;
	font-weight: bold;
	border: 2px solid #fff;
	border-radius: 2px;
	padding: 10px 12px;
	display: inline-block;
	color: #007abc;
}

.ml-button-secondary-dark:hover, .ml-button-secondary-dark.hover, .hover.ml-button-secondary-dark {
	text-decoration: underline;
	background-color: #fff;
	color: #007abc;
}

.ml-button-secondary-dark:focus, .ml-button-secondary-dark.focus, .focus.ml-button-secondary-dark {
	color: #007abc;
	outline-color: #333;
	text-decoration: underline;
	background-color: #fff;
	box-shadow: 0 0 3px #333, 0 0 7px #333;
}

.ml-button-disabled {
	box-sizing: content-box;
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	background-color: transparent;
	text-decoration: none;
	font-weight: bold;
	border-radius: 2px;
	padding: 12px 14px;
	border: 0;
	display: inline-block;
}

.ml-button-disabled, .ml-button-disabled:hover, .ml-button-disabled:focus, .focus.ml-button-disabled {
	background-color: #D9D9D9;
	color: #333;
	cursor: not-allowed;
}

/* LINK */

.ml-link {
	text-decoration: underline;
	color: #007abc;
	font-weight: bold;
	display: inline-block;
}

.ml-link:hover, .ml-link:focus, .hover.ml-link {
	text-decoration: none;
}

.ml-link:focus {
	outline-color: #333;
	text-decoration: none;
}

.focus.ml-link {
	box-shadow: 0 0 4px #333, 0 0 10px #333;
}

/* UTILITY MENU */

.utility-container {
	padding-left: 20px;
	display: -webkit-inline-flex;
	display: inline-flex;
	background-color: #fff;
	float: right;
}

.util-item {
	display: block;
	margin-top: auto;
	margin-bottom: auto;
	padding: 0;
}

.util-item a {
	float: left;
}

.util-item img {
	height: 16px;
	padding-right: 5px;
	float: left;
	vertical-align: middle;
}

@media (min-width: 980px) {
	
	.util-item span {
		display: block;
		text-transform: uppercase;
		text-decoration: none;
		height: 11px;
		color: #333333;
		font-size: 11px;
		float: left;
		vertical-align: middle;
	}
	
	.util-item a:hover span {
		color: #0061a0;
		text-decoration: underline;
	}
	
	.util-item a:focus span {
		color: #0061a0;
		text-decoration: underline;
	}
}

@media (min-width: 421px) and (max-width: 979px) {
	
	.util-item span {
		display: none;
	}
}

@media (max-width: 420px) {
	
	.util-item span {
		display: none;
	}
}

/* PAGE ICON (W/O LABEL, WITH LABEL, MENU) */

.ml-icon-link {
	padding: 5px;
	display: inline-block;
	margin: 5px 0;
}

.ml-icon-link img {
	width: 20px;
	margin-right: 10px;
	vertical-align: middle;
}

.ml-icon-link span {
	display: none;
	text-transform: uppercase;
	text-decoration: none;
	color: #333333;
	font-size: 11px;
}

.ml-icon-link:hover, .ml-icon-link:focus, .hover.ml-icon-link {
}

.ml-icon-link:hover span, .ml-icon-link.hover span, .ml-icon-link:focus span, .ml-icon-link.focus span {
	display: inline;
}

.ml-icon-link.focus {
	outline: auto #13A8FF;
}

.ml-icon-link:active {
	outline: none;
	box-shadow: none;
}

.ml-icon-link-label {
	padding: 5px;
	display: inline-block;
	margin: 5px 0;
}

.ml-icon-link-label img {
	width: 20px;
	margin-right: 10px;
	vertical-align: middle;
}

.ml-icon-link-label span {
	text-transform: none;
	font-size: 12px;
	text-decoration: underline;
	color: #007abc;
	font-weight: bold;
}

.ml-icon-link-label:hover, .ml-icon-link-label:focus, .hover.ml-icon-link-label {
}

.ml-icon-link-label:hover span, .ml-icon-link-label.hover span, .ml-icon-link-label:focus span, .ml-icon-link-label.focus span {
	display: inline;
	text-decoration: none;
}

.ml-icon-link-label.focus {
	outline: auto #13A8FF;
}

.ml-icon-link-label:active {
	outline: none;
	box-shadow: none;
}

/* FORM & FORM FIELDS */

.ml-form {
	padding: 20px 0;
	position: relative;
}

.ml-form-field {
	margin-bottom: 20px;
	display: block;
	width: 100%;
	position: relative;
	border: 0;
	padding: 0;
}

.ml-form-field legend {
	font-weight: bold;
	margin-bottom: 5px;
    font-size: 13px;
	color: #333333;
}

.ml-form-field label {
	position: relative;
	display: block;
	text-align: left;
    font-size: 13px;
	color: #333333;
}

.ml-form-field label span {
	display: inline;
	padding: 5px 2px 2px 2px; 
}

.ml-form-field input {
	padding: 10px;
	font: inherit;
	outline: none;
	border: 1px solid #757575;
	font-size: 13px;
	color: #333333;
	width: 100%;
	border-radius: 2px;
}

.ml-form-field input:focus {
	border: solid 1px #007abc;
}

.ml-form-field input:focus + span {
	color: #666666;
}

.ml-form-field span {
	background: #fff;
	color: #333;
}

.ml-form-field-table {
	margin: 0 0 0 7px;
}

.ml-form-field-droplist-trigger {
	position: relative;
	border: solid 1px #757575;
	width: 100%;
	color: #333333;
	text-align: left;
	font-size: 13px;
	background-color: #fff;
	padding: 10px;
}

.ml-form-field-droplist-trigger:after {
	content: "";
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-color: #AAA9AA transparent transparent transparent;
	position: absolute;
	top: 16px;
	right: 10px;
}

.ml-form-field-droplist-trigger:focus {
	border: solid 1px #007abc;
	outline: 0;
}

.ml-form-field-droplist-trigger:focus:after {
	border-color: #007abc transparent transparent transparent;
}

.ml-form-field-droplist-trigger.active {
	border: solid 1px #007abc;
	border-bottom: 0;
}

.ml-form-field-droplist-trigger.active:after {
	border-color: #007abc transparent transparent transparent;
}

.ml-form-field-droplist-fields {
	display: none;
}

.ml-form-field-droplist-fields.active {
	display: block;
	border: solid 1px #007abc;
	border-top: 0;
	padding: 10px;
}

.ml-form-field-select .select-hidden {
	opacity: 0;
	padding-right: 10px;
	font-size: 13px;
}

.ml-form-field-select .select-hidden:focus {
	border: solid 1px red;
}

.ml-form-field-select .select {
	cursor: pointer;
	display: inline-block;
	position: relative;
	font-size: 13px;
	border: 1px solid #757575;
	color: #333333;
	width: 100%;
	height: 40px;
}

.ml-form-field-select .select-styled {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	line-height: 20px;
	font-size: 13px;
	background-color: #fff;
	padding: 10px;
}

.ml-form-field-select .select-styled:after {
	content: "";
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-color: #AAA9AA transparent transparent transparent;
	position: absolute;
	top: 16px;
	right: 10px;
}

.ml-form-field-select .select-styled:focus {
	border: solid 1px #007abc;
	outline: 0;
}

.ml-form-field-select .select-styled:focus:after {
	border-color: #007abc transparent transparent transparent;
}

.ml-form-field-select .select-options {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	font-size: 13px;
	left: 0;
	z-index: 99;
	margin: 0;
	padding: 0;
	border: solid 1px #007abc;
	border-top: 0px;
	list-style: none;
	background-color: #ffffff;
}

.ml-form-field-select .select-options li {
	margin: 0;
	padding: 12px 0;
	font-size: 13px;
	text-indent: 15px;
	border-top: 1px solid #e6e6e6;
}

.ml-form-field-select .select-options li:hover {
	color: #ffffff;
	background: #007abc;
}

.ml-form-field-select .select-options li[rel="hide"] {
	display: none;
}

.ml-form-field-select .select-options li:first-child {
	border-top: 0;
}

.ml-form-field-radio-group {
	width: auto;
	height: 18px;
	position: relative;
	margin: 15px auto;
	transition: all 250ms;
}

.ml-form-field-radio-group input {
	position: absolute;
	z-index: 5;
}

.ml-form-field-radio-group label {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 90%;
	height: 16px;
	cursor: pointer;
	position: absolute;
	padding: 0px 0 0 25px;
}

.ml-form-field-radio-group label:before {
	content: "";
	width: 19px;
	height: 19px;
	position: absolute;
	left: 2px;
	border: solid 1px #757575;
	border-radius: 50%;
}

.ml-form-field-radio-group label:after {
	content: "";
	width: 7px;
	height: 7px;
	position: absolute;
	top: 6px;
	left: 8px;
	background-color: #007abc;
	border: solid 1px #007abc;
	border-radius: 50%;
	opacity: 0;
}

.ml-form-field-radio-group input[type=radio] {
	opacity: 0;
}

.ml-form-field-radio-group input[type=radio]:checked + label:after {
	opacity: 1;
}

.ml-form-field-radio-group input[type=radio]:focus + label:before, .ml-form-field-radio-group input[type=radio]:checked + label:before {
	border: solid 1px #007abc;
}

.ml-form-field-table-radio-group {
	margin: auto;
	height: 13px;
}

.ml-form-field-checkboxes-group {
	width: auto;
	position: relative;
	margin: 15px auto;
	border-radius: 2px;
}

.ml-form-field-checkboxes-group input {
	position: absolute;
}

.ml-form-field-checkboxes-group label {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	min-height: 16px;
	cursor: pointer;
	position: relative;
	padding: 0 0 0 25px;
}

.ml-form-field-checkboxes-group label:before {
	content: "";
	width: 16px;
	height: 16px;
	position: absolute;
	left: 2px;
	border: solid 2px #757575;
}

.ml-form-field-checkboxes-group label:after {
	content: "";
	width: 9px;
	height: 4px;
	position: absolute;
	top: 5px;
	left: 6px;
	border-left: 2px solid #007abc;
	border-bottom: 2px solid #007abc;
	opacity: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.ml-form-field-checkboxes-group input[type=checkbox] {
	opacity: 0;
}

.ml-form-field-checkboxes-group input[type=checkbox]:checked + label:after {
	opacity: 1;
}

.ml-form-field-checkboxes-group input[type=checkbox]:focus + label:before, .ml-form-field-checkboxes-group input[type=checkbox]:checked + label:before {
	border-color: #007abc;
}

.ml-form-field-errortext {
	display: none;
	font-size: 12px;
	color: #DB1818;
	margin-top: 5px;
}

.ml-form-field.error input, .ml-form-field.error select {
	border: solid 1px #DB1818;
	background-color: #FDE8E8;
}

.ml-form-field.error input:focus, .ml-form-field.error select:focus {
	background-color: #fff;
}

.ml-form-field.error input:focus + span, .ml-form-field.error select:focus + span {
	background-color: #fff;
	color: #DB1818;
}

.ml-form-field.error span {
	background-color: #FDE8E8;
	color: #DB1818;
}

.ml-form-field.error .ml-form-field-errortext {
	display: block;
}

.ml-form[data-forms="floating-label"] input + span, .ml-form[data-forms="floating-label"] input[value=""] + span {
	transition: 0.3s ease;
	-webkit-transform: translateY(-0.5em);
	-ms-transform: translateY(-0.5em);
	transform: translateY(-0.5em);
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-top: 13px;
	font-size: 13px;
	width: 90%;
}

.ml-form[data-forms="floating-label"] input:focus + span, .ml-form[data-forms="floating-label"] input:not([value=""]) + span {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	font-weight: bold;
	font-size: 13px;
	visibility: visible;
	top: -5px;
	margin-top: 13px;
	width: auto;
	background-color: #fff;
	text-shadow: -4px 2px 0 0 #FFFFFF, 3px 0 1px 0 #FFFFFF, -2px 0 0 0 #FFFFFF, -3px 1px 2px 0 #FFFFFF, 6px 0 0 0 #FFFFFF, 4px 2px 0 0 #FFFFFF, 1px 1px 0 0 #FFFFFF;
}

.ml-form-field-togglevisible {
	width: 18px;
	height: 13px;
	background: url("ml-toggle-visibility-show.png") no-repeat;
	background-size: 100%;
	display: block;
	position: absolute;
	right: 15px;
	top: 12px;
}

.ml-form-field-togglevisible.hidden {
	background: url("ml-toggle-visibility-hide.png") no-repeat;
	background-size: 100%;
}

/* TOOL TIP */

.ml-tooltip-trigger.fa {
	padding: 0 5px;
	color: #007ABC;
	font-size: 16px;
}

.ml-tooltip-trigger.fa:after {
	content: "\f059";
}

.ml-tooltip-trigger.fa:hover:after {
	content: "\f059";
}

.alert.fa {
	color:red;
}

.alert.fa:after {
	content: "\f06a";
}
.alert.fa:hover:after {
	content: "\f06a";
}

.ml-ui-tooltip {
    background: #ffffff !important;
	border: 1px solid #007ABC !important;
}

.ml-ui-tooltip-alert {
    background: #FDE8E8 !important;
	border: 1px solid #DB1818 !important;
}

.ml-tooltip-arrow, .ml-tooltip-arrow-alert {
	width: 50px;
	height: 16px;
	overflow: hidden;
	position: absolute;
	left: 50%;
	margin-left: -35px;
	bottom: -16px;
}

.ml-tooltip-arrow.top, .ml-tooltip-arrow-alert.top {
	top: -16px;
	bottom: auto;
}

.ml-tooltip-arrow.left, .ml-tooltip-arrow-alert.left {
	left: 40%;
}

.ml-tooltip-arrow.right, .ml-tooltip-arrow-alert.right {
	right: auto;
}

.ml-tooltip-arrow:after, .ml-tooltip-arrow-alert:after {
	content: "";
	position: absolute;
	left: 20px;
	top: -20px;
	width: 25px;
	height: 25px;
	box-shadow: 6px 5px 9px -9px black;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.ml-tooltip-arrow.top:after, .ml-tooltip-arrow-alert:after {
	bottom: -20px;
	top: auto;
}

.ml-tooltip-arrow:after {
	background: #ffffff;
	border: 1px solid #007ABC;
}

.ml-tooltip-arrow-alert:after {
	background: #FDE8E8;
	border: 1px solid #DB1818;
}

/* HELP TEXT */

.ml-form-field-helptext {
 	font-size: 13px;
 	color: #333333;
 	margin-top: 5px;
}

.ml-form-field-helptext a {
     color: #007abc;
     font-size: 13px;
     text-decoration: underline;
}

.ml-form-field-helptext a:hover {
     text-decoration: none;
}

.ml-form-field-helptext .tooltip-content {
 	background-color: #F2F2F2;
 	font-size: 12px;
 	line-height: 16px;
 	color: #333333;
 	padding: 10px;
 	text-decoration: none;
 	display: none;
 	margin-top: 10px;
}

/* LOADER */

#ml-loader-container {
	display: none;
	vertical-align: middle;
	position: relative;
	z-index: 1029;
	height: 150px;
	width: 190px;
	background: transparent;
	padding: 5px 25px;
	text-align: center;
}

.ml-loader-label {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    justify-content: center;
	margin-top: -20px;
}

.ml-loader-label-dark {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    justify-content: center;
	margin-top: -20px;
}

.ml-loader, .ml-loader-dark {
    height:140px;
    width:140px;
	position:static;
    -webkit-transform:scale(0.5);
    -moz-transform:scale(0.5);
    -o-transform:scale(0.5);
}

.ml-loader > div {
    background-color: transparent;
    height: 25px;
	width: 25px;
	position: absolute;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
    -webkit-animation-name:ml-loader;
    -webkit-animation-duration:1.04s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-direction:linear;
    -moz-animation-name:ml-loader;
    -moz-animation-duration:1.04s;
    -moz-animation-iteration-count:infinite;
    -moz-animation-direction:linear;
    -o-animation-name:ml-loader;
    -o-animation-duration:1.04s;
    -o-animation-iteration-count:infinite;
    -o-animation-direction:linear;
}

.ml-loader-dark > div {
    background-color: transparent;
    height: 25px;
	width: 25px;
    position: absolute;
	-moz-border-radius: 15px;
	-webkit-border-radius:15px;
	border-radius:15px;
    -webkit-animation-name:ml-loader-dark;
    -webkit-animation-duration:1.04s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-direction:linear;
    -moz-animation-name:ml-loader-dark;
    -moz-animation-duration:1.04s;
    -moz-animation-iteration-count:infinite;
    -moz-animation-direction:linear;
    -o-animation-name:ml-loader-dark;
    -o-animation-duration:1.04s;
    -o-animation-iteration-count:infinite;
    -o-animation-direction:linear;
}

.ml-loader > div:nth-child(1), .ml-loader-dark > div:nth-child(1) {
    left:0;
    top:57px;
    -webkit-animation-delay:0.39s;
    -moz-animation-delay:0.39s;
    -o-animation-delay:0.39s;
}

.ml-loader > div:nth-child(2), .ml-loader-dark > div:nth-child(2) {
    left:17px;
    top:17px;
    -webkit-animation-delay:0.52s;
    -moz-animation-delay:0.52s;
    -o-animation-delay:0.52s;
}

.ml-loader > div:nth-child(3), .ml-loader-dark > div:nth-child(3) {
    left:57px;
    top:0;
    -webkit-animation-delay:0.65s;
    -moz-animation-delay:0.65s;
    -o-animation-delay:0.65s;
}

.ml-loader > div:nth-child(4), .ml-loader-dark > div:nth-child(4) {
    right:17px;
    top:17px;
    -webkit-animation-delay:0.78s;
    -moz-animation-delay:0.78s;
    -o-animation-delay:0.78s;
}

.ml-loader > div:nth-child(5), .ml-loader-dark > div:nth-child(5) {
    right:0;
    top:57px;
    -webkit-animation-delay:0.91s;
    -moz-animation-delay:0.91s;
    -o-animation-delay:0.91s;
}

.ml-loader > div:nth-child(6), .ml-loader-dark > div:nth-child(6) {
    right:17px;
    bottom:17px;
    -webkit-animation-delay:1.04s;
    -moz-animation-delay:1.04s;
    -o-animation-delay:1.04s;
}

.ml-loader > div:nth-child(7), .ml-loader-dark > div:nth-child(7) {
    left:57px;
    bottom:0;
    -webkit-animation-delay:1.17s;
    -moz-animation-delay:1.17s;
    -o-animation-delay:1.17s;
}

.ml-loader  > div:nth-child(8), .ml-loader-dark > div:nth-child(8) {
    left:17px;
    bottom:17px;
    -webkit-animation-delay:1.3s;
    -moz-animation-delay:1.3s;
    -o-animation-delay:1.3s;
}

@-webkit-keyframes ml-loader {
   0%{  -webkit-transform:scale(1.0);background-color: #0061a0}
   70%{ background-color:#0090da }
   100%{  -webkit-transform:scale(0.5);; background-color:#a3cd4d }
}

@-moz-keyframes ml-loader {
   0%{ -moz-transform:scale(1.0);background-color: #0061a0}
   70%{ background-color:#0090da }
   100%{ -moz-transform:scale(0.5);background-color:#a3cd4d }
}

@-o-keyframes ml-loader {
   0%{-o-transform:scale(1.0); background-color: #0061a0}
   70%{ background-color:#0090da }
   100%{-o-transform:scale(0.5); background-color:#a3cd4d }
}

@-webkit-keyframes ml-loader-dark {
   0%{  -webkit-transform:scale(1.0);background-color: #ffffff}
   100%{  -webkit-transform:scale(0.5);; background-color:#ffffff }
}

@-moz-keyframes ml-loader-dark {
   0%{ -moz-transform:scale(1.0);background-color: #ffffff}
   100%{ -moz-transform:scale(0.5);background-color:#ffffff }
}

@-o-keyframes ml-loader-dark {
   0%{-o-transform:scale(1.0); background-color: #ffffff}
   100%{-o-transform:scale(0.5); background-color:#ffffff }
}

/* ALERT & MESSAGE */

.ml-msg {
	line-height: 1.4;
	padding: 5px 0px;
	text-align: left;
	color: #333333;
	margin-bottom: 2px;
	font-weight: bold;
}

.ml-msg-left {
	line-height: 1.4;
	padding: 5px 0px;
	text-align: left;
	color: #333333;
	margin-bottom: 5px;
}

.ml-msg-error {
	background: #FDE8E8;
}

.ml-msg-error a {
	color: #0061A0;
	font-weight: bold;
	text-decoration: underline;
}

.ml-msg-error a:hover {
	text-decoration: none;
}

.ml-msg-info {
	background: #D8EEF9;
}

.ml-msg-info a {
	color: #0061A0;
	font-weight: bold;
	text-decoration: underline;
}

.ml-msg-info a:hover {
	text-decoration: none;
}

.ml-msg-success {
	background: #EDF5DC;
}

.ml-msg-success a {
	color: #0061A0;
	font-weight: bold;
	text-decoration: underline;
}

.ml-msg-success a:hover {
	text-decoration: none;
}

.ml-msg-txt {
	display: inline-block;
	margin-left: 15px;
	margin-right: 10px;
}

.ml-msg-error-text {
	color: #333333; /*#DB1818*/
	font-weight: 700;
}

.ml-msg-logo-error:before {
	content: "\f06a";
}

.ml-msg-logo-error {
	color: #DB1818;
	padding-right: 5px;
}

.ml-msg-logo-info:before {
	content: "\f05a";
}

.ml-msg-logo-info {
	color: #0061A0;
	padding-right: 5px;
}

.ml-msg-logo-success:before {
	content:"\f058";
}

.ml-msg-logo-success {
	color: #73982A; /*#A4CE4E*/
	padding-right: 5px;
}

.msg-indent {
	text-align: left;
	top: 0;
	margin-top: -15px;
	margin-bottom: 15px;
	padding: 0px 15px 0px 15px;
}

.ml-msg-close {
	float: right;
	padding: 2px 8px;
	margin-top: 2px;
	cursor: pointer;
	color: #0061A0;
}

.ml-msg-close:after {
	content: "";
	display: block;
	background-image: url("utility-2_close_16p.png");
	background-size: 10px 10px;
	width: 10px;
	height: 10px;
}

.ml-msg-close:hover:after {
	background-image: url("utility-2_close_16p_HVR.png");
}

/* TAB */

.ui-tabs {
	position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
}

.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: 0;
}

.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 15px;
	margin-left: 5px;
	border-bottom-width: 0;
	white-space: nowrap;
	background: #007ABC;
	border: 0px;
	border-radius: 0 5px 0 0;
	height: 35px;
	outline: 0;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: 0 25px 0 25px;
	line-height: 35px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 14px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	top: 10px;
	margin-bottom: 0px;
	background: #A4CE4E;
	height: 55px;
}

.ui-tabs .ui-tabs-nav img {
	width: 20px;
	height: auto;
	padding-top: 5px;
	margin-left: 10px;
	margin-right: 10px
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, 
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, 
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	line-height: 45px;
	cursor: text;
	font-weight: bold;
	color: #333333;
	text-decoration: underline;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
	margin-top: -10px;
}

.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	border-top: #A4CE4E 10px solid;
	padding: 1em 1.4em;
	background: none;
}

.ml-tab-dots {
	-moz-border-radius : 50%;
	-webkit-border-radius : 50%;
	-khtml-border-radius : 50%;
	border-radius : 50%;
    width: 10px;
    height: 10px;
    background: #999999;
    display: inline-block;
	cursor: pointer;
	margin: 0px 10px 15px 0px;
}

.ml-tab-dots-active {
    width: 13px;
    height: 13px;
    background: #A4CE4E;
}

/* BACKGROUND */

.bg-ml-light-blue {
	background-color: #0090da !important;
}

.bg-ml-semi-dark-blue {
	background-color: #007abc !important;
}

.bg-ml-dark-blue {
	background-color: #0061a0 !important;
}

.bg-ml-green {
	background-color: #a4ce4e !important;
}

.bg-ml-black {
	background-color: #000000 !important;
}

.bg-ml-white {
	background-color: #ffffff !important;
}

.bg-ml-darkest-gray {
	background-color: #333333 !important;
}

.bg-ml-dark-gray {
	background-color: #75787b !important;
}

.bg-ml-medium-gray {
	background-color: #a7a8aa !important;
}

.bg-ml-gray {
	background-color: #d9d9d6 !important;
}

.bg-ml-semi-light-gray {
	background-color: #f4f4f4 !important;
}

.bg-ml-light-gray {
	background-color: #f2f2f2 !important;
}

.bg-ml-berry {
	background-color: #db0a5b !important;
}

.bg-ml-purple {
	background-color: #5f259f !important;
}

.bg-ml-yellow {
	background-color: #ffc600 !important;
}

.bg-ml-teal {
	background-color: #00aca0 !important;
}

/* HERO FOOTER */

.hero-wrapper {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

#hero-wrapper-footer {
	margin-top: 30px;
	width: 100%;
}

.hero-individual-light-blue {
	width: 70%;
	-webkit-box-ordinal-group: 1;
	-moz-box-ordinal-group: 1;
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
	background-color: #0090da;
	height: 6px;
}

.hero-individual-dark-blue {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	width: 10%;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-ordinal-group: 2;
	-moz-box-ordinal-group: 2;
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
	background-color: #0061a0;
}

.hero-individual-green {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	width: 20%;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-ordinal-group: 3;
	-moz-box-ordinal-group: 3;
	-ms-flex-order: 3;
	-webkit-order: 3;
	order: 3;
	background-color: #a4ce4e;
}

/* HEADER, BODY, FOOTER */

.ml-header {
	margin: 0 !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1009;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	transition: 0.2s;
}

.ml-header-item {
	height: 70px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.ml-header-item-sticky {
	height: 50px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.ml-header-item img {
	max-height: 40px;
	max-width: 100%;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	transition: 0.2s;
}

.ml-header-item-sticky img {
	max-height: 26px;
	max-width: 100%;
}

#ml-header {
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}

#ml-menu {
	margin-top: 70px;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}

#ml-info {
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}

#ml-body-header {
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}

#ml-body-content {
	padding: 80px 0 0 0;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

#ml-footer {
	padding: 20px 0 10px 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}

/* TABLES */

table a:link {
	color: #0061A0;
	text-decoration: underline;
}

table a:visited {
	color: #0061A0;
}

table a:active, table a:hover {
	text-decoration: none;
}

.ml-table-container {
	padding-top: 5px;
}

.ml-table-alt-rows {
	width: 100%;
	color: #333333;
	background: #ffffff;
	margin: 0px;
	border-collapse: collapse;
}

.ml-table-title {
	font-family: 'Georgia','Times New Roman','Times','serif';
	height: 37px;
	line-height: 37px;
	font-weight: bold;
	color: #ffffff;
	background: #007ABC;
	padding: 0;
	text-align: center;
	caption-side: top;
}

.ml-table-alt-rows th {
}

.ml-table-alt-rows tr {
	text-align: center;
	height: 37px;
}

.ml-table-alt-rows tr.even {
	background-color: #FFFFFF;
}

.ml-table-alt-rows tr.odd {
	background-color: #E5F4FB;
}

.ml-table-alt-rows tr.selected {
	background-color: #a4ce4e !important;
}

/* PAGINATION */

.ml-table-container {
	padding: 10px 0;
}

.ml-pagination-numbers {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 9px;
    background: #D9D9D6;
    font-size: 13px;
    color: #333333;
    text-align: center;
	display: inline-block;
	cursor: pointer; 
}

.ml-pagination-numbers:hover {
	background: #0061A0;
	color: #fff;
}

.ml-current-page {
    background: #0061A0;
    color: #fff;
}

.pg-next {
	background: #ffffff url("chevron-next.png") no-repeat 16px;
	background-size: 16px 24px;
	border: 1px solid #0061A0;
	text-align: left;
	padding-left: 6px;
	color: #0061A0;
	font-weight: bold;
}

.pg-next:hover {
	background: #0061A0 url("chevron-next-hover.png") no-repeat 16px;
	background-size: 16px 24px;
}

.pg-back {
	background: #ffffff url("chevron-back.png") no-repeat 2px;
	background-size: 16px 24px;
	border: 1px solid #0061A0;
	text-align: right;
	padding-right: 6px;
	color: #0061A0;
	font-weight: bold;
}

.pg-back:hover {
	background: #0061A0 url("chevron-back-hover.png") no-repeat 2px;
	background-size: 16px 24px;
}

/* MISCELLANEOUS */

.clear {
	clear: both;
}

.ml-container-row {
	margin: 0 -15px;
}

.ml-container-col {
	padding: 0 15px;
}

.shadow-top-sm {
	box-shadow: 0 -.125rem .25rem rgba(0, 0, 0, .075) !important;
}

.shadow-top {
	box-shadow: 0 -.5rem 1rem rgba(0, 0, 0, .15) !important;
}

.shadow-top-lg {
	box-shadow: 0 -1rem 3rem rgba(0 ,0, 0, .175) !important;
}

.row-ml-initial-without-form {
	margin-top: 20px;
}

.row-ml-detail-area {
	margin: auto;
	padding-top: 13px;
}

.cursor-pointer {
	cursor: pointer;
}

.ml-hidden {
	display: none;
}

.vl {
	border-left: 3px solid #0061a0;
    height: 24px; 
}

.h-100IE11 {
  min-height: 100% !important;
}

.inline-items{
	display: inline-block !important;
}

.disclaimer-text{
	font-size: 11px;	
}

.ml-navigation-a-link{
	font-size: 13px;
    font-weight: 700;
	text-decoration: underline;
}

.footer-circle {
    width: 4px;
    height: 4px;
    background: #0061a0;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    margin: 0 10px;
}

.login-bg-container{max-width:1024px; margin: auto;}

.login-bg-container .required-txt{font-size:12px;font-weight:400;line-height:17px;font-family:Noto Sans,sans-serif;font-style:italic;width:370px}

.sign-in{font-size:26px;font-weight:700;line-height:normal;font-family:Georgia;text-align:center}

.sign-in-sub{font-size:13px;font-weight:400;line-height:17px;font-family:Noto Sans,sans-serif;margin:20px auto;text-align:center}

.select-language-label{margin-top:0.75em;}

.select-language-img{width:2.4em;height:2.4em;}

.rtl{text-align: right;}

.ml-form-field-togglevisible-rtl {
	width: 18px;
	height: 13px;
	background: url("ml-toggle-visibility-show.png") no-repeat;
	background-size: 100%;
	display: block;
	position: absolute;
	left: 15px;
	top: 12px;
}