@import "fonts.css";
:root {
	--primary: #304f85;
	--primary_lighter: #016FCE;
	--primary_darker: #233b63;
	--secondary: #E5A72E;
	--secondary_lighter: #E5A72E;
	--secondary_darker: #E5A72E;
	--tertiary: #0f74ba;
	--tertiary_lighter: #0f74ba;
	--tertiary_darker: #0f74ba;
	--blue-dark: #0F5E90;
	--red: #bb662f;
	--blue: #0f74ba;
	--black: #000000;
	--offblack: #18191C;
	--teal_a: #15CDE6;
	--teal_desat: #A7DEE6;
	--white: #FFFFFF;
	--h1-color: var(--offblack);
	--h2-color: var(--offblack);
	--h3-color: var(--offblack);
	--h4-color: var(--offblack);
	--h1-font-size: 30px;
	--h2-font-size: 28px;
	--h3-font-size: 24px;
	--h4-font-size: 20px;
	--heading-weight: 700;
	--caption: var(--primary);
	--page_text_color: #282828;
	--page_text_color_alt: #ececec;
	--header_text_color: #dbb952;
	--url: var(--primary_lighter);
	--url_hover: var(--primary);
	--header: var(--offblack);
	--button: var(--teal_a);
	--button_disabled: #808080;
	--button_hover: var(--teal_a);
	--button_text: var(--offblack);
	--button_text_disabled: var(--offblack);
	--button_text_hover: var(--offblack);
	--content_bg: var(--white);
	--content_border: none;
	--table_form_background: #F2F4F8;
  	--placeholder_color: #9CA3AF;
	--paragraph-font-size: 16px;
	--paragraph-font-weight-regular: 400;
	--paragraph-font-weight-bold: 700;
	--banner-font-size: 24px;
	--banner-font-weight: 900;
	--primary-button-font-size: 16px;
	--primary-button-font-weight: 700;
	--primary-button-padding: 14px 20px;
	--primary-button-background-active: var(--blue-dark);
	--primary-button-color-active: var(--white);
	
}

body {
	display: flex;
	flex-direction: column;
	color: var(--offblack);
	background: var(--white);
	/*background-image: url('images/bg_upper.jpg?v=0');*/
	background-position: top;
	background-repeat: repeat-x;
	background-attachment: fixed;
	font-size: var(--paragraph-font-size);
	z-index: -4;
}

body, html {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
}

* html #layout { background: none; } /* For IE6 */

img { border: 0 } /* Fixes older IE border bug when not specified. */

#wrapper {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-width: 400px;
	/*max-width: 796px;*/
	/*width: 796px;*/
	width: 100%;
	margin: 0 auto;
}

#header_logo {
	height: 240px;
	width: 100%;
	background-image: url('images/dlc-logo.png?v=0');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-top: 1em;
	/* filter: drop-shadow(0px 0px 0px #000); */
}

#content_row {
	height: 100%;
	width: 80%;
	/*margin: 0 auto;*/
	margin-left: auto;
	margin-right: auto;
}

#footer_row {
	 flex: 1;
}

#header_text, #header_text_row, #header_left, #header_right {
	display: none;
	/*flex-direction: row;*/
}

#header_title_row, #header_title, #menu {
	width: 100%;
	height: 50px;
}

#content_cell {
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

#sidebar_cell {
	background-color: #c0c0c0;
	width: 20%;
}

#column {
	display: table;
	height: 100%;
	width: 200px;
	border-collapse: collapse;
	background: var(--white);
	margin: 0 auto;
}

#notifications {
	display: table-row;
	/* display: none; */
}

#navbar_cell, #content_cell, #footer_cell {
	/* background: var(--content_bg); */
	border-left: var(--content_border);
	border-right: var(--content_border);
}

#menu {
	border-top: var(--content_border);
}

#hzlines {
	background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: -1;
}

#bg_wrapper {
	/* display: none; */
	position: fixed;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(
	rgba(255,255,255,0.0),
	rgba(255,255,255,1.0)
	),
	url('images/background-hi.jpg?v=0');
	background-repeat: no-repeat;
	/* background-size: cover; */
	/* background-attachment: fixed; */
	background-size: cover;
	background-position: center;
	/* bottom: 0; */
	z-index: -2;
}

/* Basics
--------------------------------------------------*/
h1 {
	font-weight: var(--heading-weight);
	font-size: var(--h1-font-size);
	margin: 5px 0;
	padding: 0;
	/* border-bottom: 1px solid var(--white); */
	border-bottom: none;
	color: var(--h1-color);
}

h2 {
	font-weight: var(--heading-weight);
	font-size: var(--h2-font-size);
	margin: 0;
	padding: 0;
	color: var(--h2-color) !important;
}

h3 {
	font-weight: var(--heading-weight);
	font-size: var(--h3-font-size);
	margin: 0;
	padding: 0;
	color: var(--h3-color);
}

h4 {
	font-weight: var(--heading-weight);
	font-size: var(--h4-font-size);
	margin: 0;
	padding: 0;
	color: var(--h4-color);
}

hr, .hr {
	clear: both;
	margin: 20px 0;
	border-top: 1px solid #c6c6c6 !important;
}

.divider {
	height: 15px;
	margin: 5px 0;
}

.important {
	font-weight: var(--paragraph-font-weight-bold);
}

.centered {
	text-align: center !important;
}

.noteable {
	/*font-weight: normal !important;*/
	font-weight: var(--paragraph-font-weight-regular) !imporant;
	color: #EB8823;
}

.shadow {
	-moz-box-shadow: inset 0 0 10px var(--offblack);
	-webkit-box-shadow: inset 0 0 10px var(--offblack);
	box-shadow: inset 0 0 10px var(--offblack);
}

.word_wrap {
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

pre {
	font: 12px/16px Arial, Helvetica, sans-serif;
	white-space: pre-wrap;       /* css-3 */
	white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.right {
	float: right;
	text-align: right;
}

/* Banners
--------------------------------------------------*/
.banner {
	color: var(--white);
	background: var(--offblack);
	padding: 24px;
	text-align: center;
	max-width:40%;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	font-size: var(--banner-font-size);
	font-weight: var(--banner-font-weight);
}

#banner a {
	color: var(--white);
	font-size: var(--banner-font-size);
	font-weight: var(--banner-font-weight);
}

/* Content
--------------------------------------------------*/
#content_body {
	padding: 10px;
}

#inner {
	width: 100%;
	padding-bottom: 160px;
}

/* Menu
--------------------------------------------------*/
#navbar {
	background: #FFF;
	height: 35px;
	margin: 0px auto;
	width: 100%;
}

#menu_row {
	display: flex;
	padding: 0;
	margin: 0 auto;
	flex-direction: row;
	align-items: flex-end;
	justify-content: center;
}

#menu_row li {
	flex: 1;
	text-align: center;
	vertical-align: middle;
	align-items: center;
	list-style: none;
	position: relative;
}

#menu {
	/* display: none; */
}

#menu a {
	display: block;
	padding: 10px 10px;
	text-transform: uppercase;
	font-weight: var(--paragraph-font-weight-bold);
	text-decoration: none;
	vertical-align: bottom;
	position: relative;
}

#menu a:hover, #menu .menu_on a {
	color: var(--url);
}

/* Links
--------------------------------------------------*/
a {
	font-weight: var(--paragraph-font-weight-regular);
	word-wrap: break-word;
}

a, a:hover, a:visited {
	color: var(--url);
}

a:focus {
	outline: none;
}

/* Header
--------------------------------------------------*/
#header_cell {
	margin: 0 auto;
}

#header_row {
	display: table-row;
	/*! background: url('images/header.png?v=1'); */
	width: 100%;
}

#header_left {
	width: 50%;
	text-align: center;
	text-transform: uppercase;
	/* vertical-align: middle; */
}

#header_right {
	width: 50%;
	text-align: center;
	text-transform: uppercase;
	/* vertical-align: bottom; */
}

#header_title {
	display: none;
	width: 100%;
	height: 100px;
	/* background-image: url('images/I2O_Logo.png'); */
	/* background-position: center top; */
	/* background-repeat: no-repeat; */
	/* background-size: 200px; */
}

#header_program {
	/* display: flex; */
	display: none;
	align-items: center;
	justify-content: center;
	color: var(--header);
	font-size: 40pt;
	font-weight: 900;
	text-align: center;
	height: 100px;
	width: 100%;
	vertical-align: middle;
	text-shadow: 0 0 3px var(--primary);
}

#header_acronym {
	color: var(--header);
	font-size: 28pt;
	background: var(--button_disabled);
	background: var(--button_disabled);
	font-weight: 700;
}

#header_type {
	color: var(--white);
	font-size: 18pt;
	font-weight: 700;
	text-shadow: 0 0 5px var(--primary);
}

#header_dates {
	color: var(--white);
	font-size: 18pt;
	font-weight: 700;
	text-shadow: 0 0 5px var(--primary);
}

/*	Agenda style
--------------------------------------------------*/
.agenda_col_altrows {
	background: #dfdfdf !important;
}

.agenda_col_time {
	width: 20%;
	text-align: center;
	vertical-align: middle;
	padding: 10px;
}

.agenda_col_event {
	width: 60%;
	font-weight: 700;
	vertical-align: middle !important;
	padding: 10px;
	border-left: 1px solid #FFF;
}

.agenda_col_speaker {
	width: 20%;
	text-align: left;
	vertical-align: middle;
	padding: 10px;
	border-left: 1px solid #FFF;
}

.agenda_colspan {
	text-align: center;
	vertical-align: middle !important;
}

.agenda_spacer {
	height: 0px;
}

.agenda_title {
	color: #FFF;
	font-size: 20px;
	font-weight: var(--heading-weight);
	text-align: center;
	padding: 10px;
	height: 40px;
}

.agenda_header td {
	font-weight: var(--heading-weight);
	color: #FFF;
	border-top: 1px solid #FFF;
}

.agenda_banner {
	font-size: 16px;
	font-weight: var(--heading-weight);
	text-transform: unset;
	text-align: center;
	padding: 10px;
}

/*	Table styles
--------------------------------------------------*/
.table_col_altrows td {
	background: #d2d2d2 !important;
}

.table_col {
	vertical-align: middle !important;
	padding: 10px;
}

.table_col_left {
}

.table_col_mid {
	border-left: 1px solid #FFF;
}

.table_col_right {
	border-left: 1px solid #FFF;
}
.table_col_left_align {
	text-align: left;
}

.table_col_center_align {
	text-align: center;
}

.table_col_right_align {
	text-align: right;
}

.table_colspan {
	text-align: center;
	vertical-align: middle !important;
}

.table_spacer {
	height: 0px;
}

.table_title {
	color: #FFF;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	padding: 10px;
	height: 40px;
}

.table_header td {
	font-weight: var(--heading-weight);
	color: #FFF;
	border-top: 1px solid #FFF;
}

/* Calendar
--------------------------------------------------*/
#cal {
	float: left;
	margin-right: 5px;
	border: none;
}

/*#cal>.ui-datepicker {
	margin: 2px !important;
}*/

/* Link behavior override */
#cal a {
	font-weight: normal;
	color: #000;
}

/* Link behavior override */
#cal a:hover {
	text-decoration: none !important;
	color: #000;
}

/* Item due date */
#cal td.highlighted_due a, .ui-state-default.ui-state-active {
	background: var(--red) !important;
	color: var(--white) !important;
}

/* Meeting date */
#cal td.highlighted_conf a {
	background: var(--primary) !important;
	color: var(--white) !important;
}

/* Current day */
a.ui-state-default.ui-state-highlight {
	background: var(--primary);
	border: 1px solid var(--primary) !important;
	color: var(--offblack) !important;
}

a.ui-state-default.ui-state-hover {
	background: #CEEBFF;
	color: var(--offblack);
}

.ui-datepicker {
	background: var(--white) !important;
	width: 200px !important;
	padding: 0 !important;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
	display: table;
}

/* Fix width of indivdual cal */
/*.ui-datepicker-multi .ui-datepicker-group table {
	width: 250px !important;
}*/

/* Remove header shadow */
.ui-datepicker-title {
	text-shadow: none !important;
}

/* Width of calendar(s) container */
/*.ui-widget {
	width: 200px !important;
}*/

/* Border color */
.ui-widget-content {
	border: 2px solid var(--white) !important;
	background: var(--white) !important;
}

/* Header color */
.ui-widget-header {
	background: var(--primary) !important;
	border: var(--primary) !important;
	/* border-radius: 0 !important; */
}

.ui-widget-header .ui-icon {
	background-image: url('images/ui-icons-over.png') !important;
}

/* Each day */
.ui-state-default {
	border: 1px solid #DFDFDF !important;
	color: #666 !important;
}

/* Selected day */
.ui-state-default.ui-state-active {
	border: 1px solid #555555 !important;
	background: #DFDFDF !important;
}

/* Current day */
.ui-state-default.ui-state-highlight {
	border: 1px solid #555555 !important;
	background: #DFDFDF !important;
}

/* Hover over days */
.ui-state-default.ui-state-hover {
	border: 1px solid #8F8F8F !important;
	background: #DFDFDF !important;
	color: black !important;
}

.ui-datepicker-month {
	color: #FFF !important;
}

.ui-datepicker-year {
	color: #FFF !important;
}

/* Space around individual calendars */
.ui-datepicker-group {
	margin: 1px !important;
	width: 210px !important;
}

/* Minimize height of rows */
.ui-datepicker td span, .ui-datepicker td a {
	padding: 2px !important;
}
.ui-datepicker.ui-datepicker-multi {
	background: #555555 !important;
}

.ui-datepicker-prev.ui-datepicker-prev-hover, .ui-datepicker-next.ui-datepicker-next-hover {
	border: none !important;
	background: none !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	background: #e9e9e9 !important;
}

/* Tables
--------------------------------------------------*/
#dates_table, .agenda_table, #registration_table_container, #download_table, #location_table, #attendee_table, #cal, #mapbox {
	color: black;
	border-spacing: 2px !important;
	border-radius: 3px !important;
	/* background: var(--white); */
	/* border: 2px solid var(--offblack) !important; */
	/* border: 2px solid rgba(255,255,255,0.85) !important; */
	border: none !important;
}

.agenda_table, #registration_table_container, #download_table, #location_table, #attendee_table {
	margin: auto;
	color: black;
	width: 100%;
	margin: 0;
}

#location_table caption {
	display: none;
}

/* Table cells */
#dates_table td, .agenda_table tr, #location_table tr, #registration_table_container td, #download_table td, #attendee_table td {
	background: var(--table_form_background);
	opacity: 0.85;
}

/* Table Headers */
.agenda_header, #dates_table th, .agenda_table thead th, #download_table thead th, #location_table thead th, #attendee_table thead th {
	background: var(--primary);
	color: var(--white);
	font-size: var(--paragraph-font-size);
	font-weight: var(--paragraph-font-weight-bold);
	height: 27px;
	text-align: center;
}

/* Table Footers */
.agenda_table tfoot td, #download_table tfoot td, #location_table tfoot td, #attendee_table tfoot td {
	background: #999999;
	color: var(--offblack);
	padding: 2px;
	font-weight: var(--paragraph-font-weight-regular);
}

/* Table Captions */
.agenda_table caption, #registration_table caption, #download_table caption, #location_table caption, #attendee_table caption {
	color: #4781BE;
	font-size: var(--paragraph-font-size);
	font-weight: var(--paragraph-font-weight-regular);
	line-height: 150%;
	text-align: left;
}

/* Dates table
--------------------------------------------------*/
#dates_table {
	width: 546px;
	float: right;
}

#dates_table td {
	padding: 5px 10px;
}

#dates_table .highlighted_meeting {
	color: var(--primary);
}

#dates_table .highlighted_due {
	color: var(--red);
}

#dates_table a {
	color: var(--primary);
}

.dates_tablecell {
	padding: 5px 10px;
	width: 90px;
	background: #DFDFDF;
	font-weight: 700;
}

.events_col_left {
	width: 40%;
}

.events_col_right {
	width: 60%;
}

/* Registration
--------------------------------------------------*/
#registration_table {
	margin: 0 auto;
	/*width: 80%;*/
}

#registration_table input[type=text] {
	width: 220px !important;
	border: 1px solid var(--offblack) !important;
	margin: 2px !important;
	background: var(--table_form_background) !important;
}

#registration_table input[type=text]:focus {
	width: 222px !important;
	margin: 0 !important;
	border: 3px solid var(--blue) !important;
	background: var(--table_form_background) !important;
}

#registration_table select {
	width: 220px !important;
	border: 1px solid var(--offblack) !important;
	background: var(--table_form_background) !important;
}

#registration_table select:focus {
	width: 222px !important;
	margin: 0 !important;
	border: 3px solid var(--blue) !important;
	background: var(--table_form_background) !important;
}

#registration_table h2 {
	/*color: var(--primary);*/
}

#billing_online_table {
	width: 700px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid white;
	color: black;
	background: #CCCCCC;
}

#alt_info_fields {
	color: black;
}

.reg_left_column {
	width: 50%;
	font-weight: var(--paragraph-font-weight-bold);
	vertical-align: top;
	text-align: right;
}

.reg_right_column {
	width: 50%;
	word-wrap: break-word;
	/* word-break: break-all; */
}

.reg_left_column div {
	width: 50%;
	font-weight: var(--paragraph-font-weight-bold);
	vertical-align: top;
	text-align: right;
}

#attending_table {
	width: 50%;
}

.regemail {
	padding: 5px;
	width: 98% !important;
}

.regemail h2 {
	text-align: center;
}

.print {
	background: var(--white) !important;
	color: var(--offblack) !important;
}

#reg_receipt #registration_table_container {
	border: 0 !important;
}
/* Registration Placeholders */

::placeholder { /* Modern browsers */
  color: var(--placeholder_color);
  opacity: 1; /* Firefox applies a lower opacity by default, so setting to 1 ensures full opacity */
}

::-webkit-input-placeholder { /* Older Chrome, Safari, Opera */
  color: var(--placeholder_color);
}

:-moz-placeholder { /* Older Firefox */
  color: var(--placeholder_color);
  opacity: 1;
}

::-moz-placeholder { /* Older Firefox */
  color: var(--placeholder_color);
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--placeholder_color);
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--placeholder_color);
}

/* Location
--------------------------------------------------*/
#mapbox {
	position: relative;
	border-radius: 2px !important;
	border: 2px solid var(--primary) !important;
	outline: 2px solid var(--offblack);
	width: 99% !important;
}

.qr_container {
	width: 40%;
	height: 100%;
	padding: 5px !important;
	vertical-align: top;
	color: black;
}

.qr_container_empty {
	display: none;
}

.qr_container_banded {
	width: 250px;
	padding-right: 5px;
	float: left;
}

.qr_image {
	position: absolute; /*leave this and next 3 values alone*/
	z-index: 3;
	display: none;
}

.qr_left_tooltip {
	position: absolute;
	display: none;
	z-index: 5;
	width: 190px;
	height: 190px;
	margin-left: 250px;
	margin-top: -50px;
	padding: 2px;
	background: url('images/WhiteTooltipBG.png') no-repeat;
	background-size: 100% auto;
}

.qr_right_tooltip {
	position: absolute;
	display: none;
	z-index: 6;
	width: 190px;
	height: 190px;
	margin-left: 250px;
	margin-top: -50px;
	padding: 2px;
	background: url('images/WhiteTooltipBG.png') no-repeat;
	background-size: 100% auto;
}

.qr_bg {
	background: #CFDBE5;
}

/* Footer
--------------------------------------------------*/
#footer_cell {
	position: relative;
	/*width: 796px;*/
	width: 100%;
	text-align: center;
	padding: 10px;
	margin: 0 auto;
	background: var(--black);
}

#footer_cell .hr {
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	display: none;
}

#footer_cell .title {
	text-transform: uppercase;
	font-weight: var(--paragraph-font-weight-bold);
	color: var(--white);
}

#footer_cell p {
	text-align: center;
}

#footer_cell .pocs, #footer_cell .pocs a {
	color: var(--white);
}

#footer_cell .notice {
	font-size: 12px;
	font-weight: var(--paragraph-font-weight-bold);
	line-height: 150%;
	color: var(--white);
}

#footer_cell .disclaimer, #footer_cell .disclaimer a {
	font-size: 10px;
	line-height: 150%;
	color: var(--white);
}

/* Warning messages
--------------------------------------------------*/
.warning {
	color: red;
	font-size: var(--paragraph-font-size);
	font-weight: var(--paragraph-font-weight-bold);
	text-align: center;
}

/* Errors
--------------------------------------------------*/
.jquery_form_error_message {
	color: red;
	display: block;
	font-size: 10pt;
	margin-top: 2px;
	margin-left: 5px;
}

/* Buttons
--------------------------------------------------*/
.submit_button {
	background-color: var(--button);
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0 !important;
	border: none;
	display: inline-block;
	color: var(--button_text);
	font-family: "Inter", serif;
	font-size: var(--primary-button-font-size);
	font-weight: var(--primary-button-font-weight);
	padding: var(--primary-button-padding);
	text-decoration: none;
}

.submit_button:hover {
	background-color: var(--button_hover);
	color: var(--button_text_hover);
}

.submit_button:active {
	position: relative;
	top: 1px;
}

.submit_button_disabled {
	background-color: var(--button_disabled);
	color: var(--button_text_disabled);
	border: none;
	font-family: "Inter", serif;
	font-size: var(--primary-button-font-size);
	font-weight: var(--primary-button-font-weight);
	padding: var(--primary-button-padding);
	border-radius: 0 !important;
}

*:disabled {
	background-color: var(--button_disabled) !important;
	color: var(--button_text_disabled) !important;
	border: none;
	font-family: "Inter", serif;
	font-size: var(--primary-button-font-size);
	font-weight: var(--primary-button-font-weight);
	padding: var(--primary-button-padding);
	border-radius: 0 !important;
	opacity: 1;
}

.button {
	background-color: var(--button);
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0 !important;
	border: 1px solid #b8b8b8;
	display: inline-block;
	color: var(--button_text);
	font-family: "Inter", serif;
	font-size: var(--primary-button-font-size);
	font-weight: var(--primary-button-font-weight);
	padding: var(--primary-button-padding);
	text-decoration: none;
	border: none;
	transition: 250ms all ease;
}

.button:hover {
	background-color: var(--button_hover);
	color: var(--button_text_hover);
}

.button:active {
	background: var(--primary-button-background-active);
	color: var(--primary-button-color-active);
}

/* Timeout dialog
--------------------------------------------------*/
/* Add a drop shadow to the dialog */
div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-draggable.ui-resizable {
	-moz-box-shadow: 0 0 0 20px var(--offblack);
	-webkit-box-shadow: 0 0 0 20px var(--offblack);
	box-shadow: 0 0 20px var(--offblack);
	width: auto !important;
}

/* Remove borders from text boxes inside dialog */
div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-draggable.ui-resizable div {
	border: none !important;
	text-align: center;
}

/* Button alignment */
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: none !important;
}

/* Overlay */
.ui-widget-overlay {
	opacity: .80 !important;
}

