/* Common Styling */
.webflow {
	position: relative;
}

.webflow-field-container, .webflow-prompt-container, .webflow-input-container, .webflow-prompt-container label, .webflow-input-hint-button {
	position: relative;
}

.webflow-input-hint {
	display: table-cell;
	vertical-align: middle;
}

.webflow-input-hint .webflow-input-hint-button {
	border: 1px solid lightgray;
    padding: 2px;
    margin: -2px;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    cursor: pointer;
	font-size: 9px;
	margin-left: 0;
}

.webflow-prompt-container, .webflow-input-container {
	display: table-cell;
	vertical-align: middle;
}

.webflow-field-container {
	/* for 2-column webflows */
	/* display: inline-block; */
	display: block;
	width: 100%;
	overflow-y: visible;
	margin: 4px 0px;
	border-radius: 5px;
}

.webflow-prompt-container {
	text-align: right;
	padding-right: 5px;
}

.webflow-prompt-container label {
	top: 2px;
	font-size: 12px;
	font-weight: bold;
}

.section {
	padding: 10px;
	margin: 10px -10px;
	border-radius: 5px;
	box-shadow: 0px 10px 10px -10px #888, 0px -5px 15px -10px #888;
	/*box-shadow: 0px 10px 10px -10px #888, 0px -10px 10px -10px #888;*/
}

.group {
	border-radius: 5px;
}

.group > .webflow-field-container {
	display: inline-block;
	width: auto;
	margin-right: 2px;
}

.group .webflow-prompt-container, .group .webflow-input-container {
	width: auto !important;
}

.group .webflow-input-container table {
	padding-right: 5px;
}

form#webflowFormID input {
	margin-right: 4px;
	margin-top: 6px;
}

.webflow_control {
	text-align: right;
}

.webflow-form canvas {
	background-color:#FFFFCC;
	border: 2px groove #999999;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
}

.charsleft {
	position: absolute;
	bottom: -6px;
	left: 0px;
	font-size: .8em;
	font-style: italic;
	font-weight: normal;
}

.webflowRadioDiv {
	font-size: 12px;
}

.webflowRadioDiv table tr td label {
	position: relative;
	top: 2px;
}

.webflowValidationError img {
	margin: 0 5px 0 0;
}

.loading-indicator {
	position: absolute;
	width: 100%;
	height: 100%;
	/*top: -20px;
	left: -20px;*/
	display: block;
	z-index: 1400000;
	padding: 20px;
	cursor: wait;
}

.loading-indicator .greyCover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: #000000;
	border-radius: 10px;
	opacity: .3;
	z-index: 3;
}

.loading-indicator .innerLoad {
	padding: 10px;
	text-align: center;
	min-width: 6em;
	min-height: 6em;
	background-color: #000000;
	border-radius: 10px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -3.8em;
	margin-left: -3.8em;
	z-index: 4;
}

.loading-indicator .innerLoad h2 {
	color: #FFFFFF !important;
	font-size: 1.3em;
	font-weight: normal;
}

.loading-indicator .innerLoad .spinner {
	height: 48px;
}

.fullWidth {
	width: 100% !important;
}

/* Specific Mobile styling to hide radio buttons */
.ui-radio input[type='radio'] {
	display: none;
}

/* jQuery Dialog Styling */
.ui-widget.webflow-dialog {

}

.ui-widget-content.webflow-dialog {
	background: #F9F9F9;
	border: 1px solid #163955;
}

.ui-dialog.webflow-dialog {
	left: 0;
	outline: 0 none;
	padding: 0 !important;
	position: absolute;
	top: 0;
}

.ui-dialog.webflow-dialog .ui-dialog-content {
	background: none repeat scroll 0 0 transparent;
	border: 0 none;
	overflow: auto;
	position: relative;
	margin: 0;
}

.ui-dialog.webflow-dialog .ui-widget-header {
	background: #466985;
	border: 0;
	color: #FFFFFF;
	font-weight: normal;
	padding: .2em !important;
}

.ui-dialog.webflow-dialog .ui-dialog-titlebar {
	position: relative;
	border-radius: 0px;
}

.ui-dialog.webflow-dialog .ui-dialog-titlebar button {
	background: #466985;
	height: 16px;
	border: 1px solid #264965;
	padding: 0 !important;
}

table.display.dataTable thead td {
	font-weight: bold;
	text-align: center;
}

/* Combobox Styling changes */
.ui-autocomplete {
	max-height: 400px;
	overflow-y: auto;
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
}
/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete {
	height: 400px;
}

.ui-autocomplete .ui-state-focus:first-child {
	margin: -1px 0 -1px !important;
	border-left: none !important;
	border-right: none !important;
}

.ui-autocomplete .ui-state-focus:last-child {
	margin: -1px 0 0 !important;
	border-left: none !important;
	border-right: none !important;
	border-bottom: none !important;
}