/*

Colors:

Darker color			#C3D2E5
Even lighter color		#F6FFFF Used only for even/odd highlighting in ListView

*/
#DialogLayer {
  z-index: 1000000;
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
}
/* DialogSystem.Dialog */
.DialogSystemModalMask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.25;
  cursor: not-allowed;
}
/* IE6 only */
.DialogSystemModalMaskIE {
  position: absolute;
  left: 0;
  top: 0;
  width: 2000px;
  height: 2000px;
}
.DialogSystemShadow {
  position: absolute;
}
.DialogSystemShadowEx {
  position: absolute;
  box-shadow: 0 2.5px 5px #888;
}
.DialogSystemShadow0 {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-image: url(img/Shadow0.png);
}
.DialogSystemShadow1 {
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  height: 8px;
  background-image: url(img/Shadow1.png);
}
.DialogSystemShadow2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background-image: url(img/Shadow2.png);
}
.DialogSystemShadow3 {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 8px;
  background-image: url(img/Shadow3.png);
}
.DialogSystemShadow5 {
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 8px;
  right: 0;
  background-image: url(img/Shadow5.png);
}
.DialogSystemShadow6 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  background-image: url(img/Shadow6.png);
}
.DialogSystemShadow7 {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 8px;
  background-image: url(img/Shadow7.png);
}
.DialogSystemShadow8 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  background-image: url(img/Shadow8.png);
}
.DialogSystemShimIFrame {
  position: absolute;
}
.DialogSystemContainer {
  background-color: hsl(200, 30%, 90%);
  border: 1px solid #000000;
  font-size: 10pt;
  position: absolute;
}
.DialogSystemContainer_Borderless {
  border: 0;
}
.DialogSystemCaptionBar {
  position: relative;
  background-color: hsl(200, 30%, 80%);
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
}
.DialogSystemContainer_Borderless .DialogSystemCaptionBar {
  display: none;
}
.DialogSystemCaptionBarText {
  margin: 0;
  padding: 4px;
  display: block;
}
.DialogSystemCloseButton {
  float: right;
  width: 16px;
  height: 16px;
  margin: 4px;
  padding: 0;
}
.DialogSystemCloseButton:active {
  background-color: transparent;
}
.DialogSystemCloseButton:focus {
  background-color: transparent;
}
.DialogSystemDialogIcon {
  float: left;
  width: 16px;
  height: 16px;
  margin: 4px;
  padding: 0;
}
.DialogSystemDialogIcon:hover {
  cursor: default;
}
.DialogSystemDialogIcon:active {
  background-color: transparent;
}
.DialogSystemDialogIcon:focus {
  background-color: transparent;
}
.DialogSystemForm {
  position: relative;
  padding: 8px;
  border-spacing: 0;
}
.DialogSystemForm table td {
  vertical-align: top;
  padding: 2.5px;
}
/* DialogSystem.Controls.Control */
.DialogSystem_Control {
  margin: 0;
  padding: 4px;
  color: #000000;
  font-size: 8pt;
}
/* DialogSystem.Controls.Label */
.DialogSystem_Label {
  color: #000000;
  cursor: default;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.DialogSystem_Label:hover {
  color: #000000;
}
/* DialogSystem.Controls.Image */
.DialogSystem_Image {
  background: transparent;
  border: 0;
  display: block;
  padding: 0;
  cursor: default;
}
.DialogSystem_Image:hover,
.DialogSystem_Image:active,
.DialogSystem_Image:focus {
  background: transparent;
  cursor: default;
}
/* DialogSystem.Controls.Button */
.DialogSystem_Button {
  padding: 0;
  margin: 4px;
}
/* DialogSystem.Controls.ImageButton */
.DialogSystem_ImageButton {
  padding: 0;
  margin: 0;
}
.DialogSystem_ImageButton img {
  transition: background-color 0.2s, box-shadow 0.2s;
}
.DialogSystem_ImageButton img:hover:not(:disabled):not(.DialogSystem_ImageButton_Disabled) {
  box-shadow: 0 1.25px 5px #888;
  background-color: hsl(0, 0%, 100%);
}
.DialogSystem_ImageButton img:active:not(:disabled):not(.DialogSystem_ImageButton_Disabled) {
  position: relative;
  top: 1px;
}
.DialogSystem_Button_Disabled,
.DialogSystem_ImageButton:disabled {
  background-color: hsl(0, 0%, 90%);
  color: #000000;
}
/* DialogSystem.Controls.TextBox */
/*
.DialogSystem_TextBox {
	background-color : #ffffff;
	border : 1px solid #C3D2E5;
	color : #000000;
	font-size : 8pt;
	padding : 0;
}

.DialogSystem_TextBox:hover {
	background-color : #ffffff;
}

.DialogSystem_TextBox_Disabled {
	background-color : #F0F3F4;
	color:#808080;
}
*/
.DialogSystem_TextBox_InvalidInput {
  background-color: #ffa500;
}
.DialogSystem_TextBox_InlineEditor {
  border: 0;
  text-align: right;
  padding: 0;
  background-color: red;
  display: block;
}
.DialogSystem_TextBox_AffordanceVisible {
  color: #888;
  padding-left: 16px !important;
}
.DialogSystem_TextBox_AffordanceIcon {
  padding: 0;
  padding-left: 16px !important;
  background-repeat: no-repeat;
  background-position: left top;
}
/* DialogSystem.Controls.DateEdit */
/*
.DialogSystem_DateEdit {
	background-color : #ffffff;
	border : 1px solid #C3D2E5;
	color : #000000;
	font-size : 8pt;
	padding : 0;
}

.DialogSystem_DateEdit:hover {
	background-color : #ffffff;
}

.DialogSystem_DateEdit_Disabled {
	background-color : #F0F3F4;
	color:#808080;
}
*/
.DialogSystem_DateEdit_InvalidInput {
  background-color: #ffa500;
}
/* DialogSystem.Controls.Memo */
/*
.DialogSystem_Memo {
	background-color : #ffffff;
	border : 1px solid #C3D2E5;
	color : #000000;
	font-size : 8pt;
	padding : 0;
}

.DialogSystem_Memo:hover {
	background-color : #ffffff;
}

.DialogSystem_Memo_Disabled {
	background-color : #F0F3F4;
	color:#808080;
}
*/
.DialogSystem_Memo_InvalidInput {
  background-color: #ffa500;
}
/* DialogSystem.Controls.Panel */
.DialogSystem_Panel {
  padding: 0;
  margin: 0;
}
/* DialogSystem.Controls.Expander */
.DialogSystem_Expander {
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.DialogSystem_Expander_HintBar {
  padding: 0;
  margin: 0;
  background-color: #C3D2E5;
  vertical-align: middle;
  cursor: pointer;
}
.DialogSystem_Expander_HintBar_Inner {
  margin: 4px;
}
/* DialogSystem.Controls.IFrame */
.DialogSystem_IFrame_Container {
  position: relative;
}
.DialogSystem_IFrame {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  border: 0;
}
.DialogSystem_IFrameLoadingIndicator {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
}
.DialogSystem_IFrameLoadingIndicator > img {
  position: absolute;
  left: calc(50% - 16px);
  top: calc(50% - 16px);
}
/* DialogSystem.Controls.ComboBox */
/*
.DialogSystem_ComboBox {
	background-color : #ffffff;
	border : 1px solid #C3D2E5;
	color : #000000;
	font-size : 8pt;
	padding : 0;
}

.DialogSystem_ComboBox:hover {
	background-color : #ffffff;
}

.DialogSystem_ComboBox_Disabled {
	background-color : #F0F3F4;
	color:#808080;
}
*/
.DialogSystem_ComboBox_Invalid {
  background-color: #ffa500;
}
/* DialogSystem.Controls.ListView */
.DialogSystem_ListView {
  border: 1px solid #C3D2E5;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  position: relative;
}
.DialogSystem_ListView:focus-visible {
  outline: 2px solid hsl(215, 75%, 50%);
}
.DialogSystem_ListView_Header {
  border: 0;
  position: relative;
  margin: 0;
  padding: 0;
  background-color: hsl(200, 30%, 90%);
  overflow: hidden;
}
.DialogSystem_ListView_HeaderCell {
  background-color: hsl(200, 30%, 80%);
  padding: 2px;
  text-align: left;
  border-left: 1px solid hsl(200, 30%, 70%);
  border-bottom: 1px solid hsl(215, 75%, 25%);
  font-weight: bold;
}
.DialogSystem_ListView_HeaderCell:first-child {
  border-left: 0;
}
.DialogSystem_ListView_Scroll {
  border: 0;
  position: absolute;
  left: 0;
  top: 20px;
  width: 200px;
  height: 100px;
  margin: 0;
  padding: 0;
  overflow: auto;
}
.DialogSystem_ListView_Row {
  position: relative;
  margin: 0;
  padding: 0;
}
.DialogSystem_ListView_RowCell {
  margin: 0;
  padding: 2px;
  overflow: hidden;
  cursor: default;
  border-left: 1px solid hsl(200, 30%, 80%);
  border-top: 1px solid hsl(200, 30%, 80%);
}
.DialogSystem_ListView_RowCell:first-child {
  border-left: 0;
}
.DialogSystem_ListView_RowEven .DialogSystem_ListView_RowCell {
  background-color: hsl(200, 30%, 95%);
}
.DialogSystem_ListView_RowOdd .DialogSystem_ListView_RowCell {
  background-color: hsl(200, 30%, 90%);
}
/* DialogSystem.Controls.CheckBox */
.DialogSystem_CheckBox {
  margin: 0 2px 2px 0;
}
/* DialogSystem.Controls.RadioButton */
.DialogSystem_RadioButton {
  margin: 0 2px 2px 0;
}
.DialogSystem_ListView_Row.selected .DialogSystem_ListView_RowCell {
  background-color: hsl(200, 30%, 80%) !important;
}
/**********************************************************************************************************************
 * Layout managers
 **********************************************************************************************************************/
.DialogSystem_FlowLayout > * {
  margin-left: 2.5px !important;
  margin-right: 2.5px !important;
}
.DialogSystem_GridLayout > table > tbody > tr > td {
  padding: 2.5px;
  vertical-align: middle;
}
.DialogSystem_GridLayout input[type=button] + input[type=button] {
  margin-left: 5px;
}
/**********************************************************************************************************************
 * DialogSystem overrides
 **********************************************************************************************************************/
.DialogSystem_WhiteBackground {
  background-color: white !important;
}
/* Override the DialogSystem's default mask opacity */
.DialogSystemModalMask {
  opacity: 0.1 !important;
}
.DialogSystem_Memo {
  resize: none !important;
}
