.appFilters {
	text-align: right;
	margin-bottom:10px;
}
/* Max Rows Box */
.maxRowsBox {
    display: inline-block;
}
.maxRowsBox .label {
	display:inline-block;
	vertical-align:middle;
}
.maxRowsBox a {
	color: #0277bc;
	display: inline-block;
	vertical-align:middle;
	padding: 0 5px;
	position: relative;
	margin-left: 5px;
}
.maxRowsBox a:hover {
	color: #01578a;
}
.maxRowsBox a.selected:before {
	content: "[";
	position: absolute;
	left: 0;
}
.maxRowsBox a.selected:after {
	content: "]";
	position: absolute;
	right: 0;
}

/* Grid Container Box */
.gridContainerBox .gridContainer {
	overflow:auto;
}

/*Paging Bar Box */
.pagingBarBox .gridPaging {
  padding: 3px 10px;
}
.pagingBarBox .gridPaging button {
  background-color: transparent;
  background: none;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  margin-top: 3px;
  margin-bottom: 3px;
  display: inline-block;
  vertical-align: middle;
  font-size: 1em;
}
.pagingBarBox .gridPaging button.disabled {
  color: #CCC;
}
.pagingBarBox .gridPaging .pageRange {
  margin-top: 4px;
  margin-bottom: 4px;
  padding-top: 3px;
  padding-bottom: 6px;
  padding-right: 8px;
  padding-left: 8px;
  vertical-align: middle;
  display: inline-block;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.pagingBarBox .gridPaging a {
  color: inherit;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  margin: 7px 4px;
  vertical-align: middle;
  display: inline-block;
}
.pagingBarBox .gridPaging a:hover {
  color: #000;
}

/* Grid Loading Overlay Box */
.gridLoadingOverlayBox {
  overflow: hidden;
}
.gridLoadingOverlayBox .gridLoadingOverlay {
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gridLoadingOverlayBox .gridLoadingOverlayCnt {
  position: absolute;
  width: 60px;
  height: 60px;
  color: black;
  font-size: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 11;
}
.gridLoadingOverlayBox.hideOverlay .gridLoadingOverlay,
.gridLoadingOverlayBox.hideOverlay .gridLoadingOverlayCnt {
  display: none;
}



/* Popup Form */
.popupFormBody {
  overflow: hidden;
}
.popupFormBody .outerContainer {
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

.popupFormBox .popupFormOverlay {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 100;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.popupFormBox .popupFormOverlayBox {
  position: fixed;
  width: 500px;
  height: 200px;
  background: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  text-align: center;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  -webkit-transform: translate(0, 200%);
          transform: translate(0, 200%);
  z-index: 101;
}
.popupFormBox.popupFormDisplay .popupFormOverlay {
  display: block;
}
.popupFormBox.popupFormDisplay.dspOverlay .popupFormOverlay {
  opacity: 1;
}
.popupFormBox.popupFormDisplay.popupFormAnimate .popupFormOverlayBox {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.popupFormBox .popupHeader {
  overflow: hidden;
}
.popupFormBox .popupContent {
  overflow: auto;
}
.popupFormBox .newPopupContent {
  padding: 40px;
}
.popupFormBox .newPopupContent.left {
  text-align: left;
}
.popupFormBox .formContainer {
  text-align: left;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.popupFormBox .formContainer:not(:last-child) {
  border-bottom: 1px solid #cdcdd2;
}
.popupFormBox .oneColumn .formContainer {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
}
.popupFormBox .twoColumn .formContainer {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
.popupFormBox .threeColumn .formContainer {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}
.popupFormBox .formContainer .detailRow {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
}
.popupFormBox .formContainer .detailRow .detailField {
  padding: 5px;
  line-height: 35px;
}
.popupFormBox .formContainer .detailRow .detailField .label {
  width: 40%;
  display: inline-block;
  vertical-align: top;
  line-height: inherit;
  text-overflow: ellipsis;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
}
.popupFormBox .formContainer .detailRow .detailField .field {
  padding: 0;
  width: 60%;
  vertical-align: top;
  display: inline-block;
  line-height: inherit;
}
.popupFormBox .formContainer .detailRow .detailField .field .dijitTextBox {
  width: 100%;
  box-sizing: border-box;
}
.popupFormBox .formContainer .detailRow.split {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
          align-items: stretch;
}
.popupFormBox .formContainer .detailRow.split .detailField {
  -webkit-box-flex: 1;
          flex: 1 1 0;
}
.popupFormBox .formContainer.full {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
}
.popupFormBox .formContainer.full .detailField .label,
.popupFormBox .formContainer.full .detailField .field {
  display: block;
  width: 100%;
}
.popupFormBox .formContainer.topLabels .detailField .label,
.popupFormBox .formContainer.topLabels .detailField .field {
  display: block;
  width: 100%;
  line-height: normal;
}
.popupFormBox .buttonBar {
  text-align: right;
  border: none;
  margin: 0;
  padding: 5px;
  display:block;
  width:100%;
  box-sizing:border-box;
}
.popupFormBox .buttonBar > .right {
  float: none;
  display: inline-block;
  width: 50%;
  vertical-align: middle;
}
.popupFormBox .buttonBar > .left {
  text-align: left;
  float: none;
  display: inline-block;
  width: 50%;
  vertical-align: middle;
}
.popupFormBox.chartPopup .popupFormOverlayBox, .popupFormBox.exportPopup .popupFormOverlayBox {
  overflow: visible;
}
.popupFormBox.chartPopup .buttonBar, .popupFormBox.exportPopup .buttonBar {
  padding: 0;
  overflow: visible;
}
.popupFormBox.chartPopup .buttonBar a, .popupFormBox.exportPopup .buttonBar a {
  color: #ffffff;
  position: absolute;
  bottom: 100%;
  left: 100%;
  font-size: 2em;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.popupFormBox.chartPopup.widthResized a, .popupFormBox.exportPopup.widthResized a {
  -webkit-transform: translateX(-25px);
          transform: translateX(-25px);
}
.popupFormBox.chartPopup.heightResized a, .popupFormBox.exportPopup.heightResized a {
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
}
.popupFormBox.chartPopup.widthResized.heightResized a, .popupFormBox.exportPopup.widthResized.heightResized a {
  -webkit-transform: translate(-25px, 25px);
          transform: translate(-25px, 25px);
  color: #000000;
  z-index: 10;
}
.popupFormBox.chartPopup .popupHeader {
  display: none;
}
.popupFormBox.exportPopup .popupExportContent {
  overflow: hidden;
}
.popupFormBox.exportPopup .openButton {
  display: none;
  margin: 10px 0;
}
.popupFormBox .progressBar {
  margin: 10px auto;
}
.popupFormBox .row > .col {
  text-align: left;
}
.popupFormBox .step1,
.popupFormBox .step2,
.popupFormBox .step3,
.popupFormBox .step4 {
  display: none;
}
.popupFormBox.step1 .step1, .popupFormBox.step2 .step2, .popupFormBox.step3 .step3, .popupFormBox.step4 .step4 {
  display: block;
}



.alertStatusBox .alertStatusOverlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
}

.alertStatusBox .alertStatusOverlay .alertStatusOverlayBox {
  position: fixed;
  max-width: 50%;
  height: 120px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  text-align: center;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translate(0, 200%);
  background: #f5f5f6;
  border: 1px solid #cdcdd2;
}

.alertStatusBox .alertStatusOverlay.anim .alertStatusOverlayBox {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translate(0, 0);
}

.alertStatusBox .message {
  font-size: 1.5em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.alertStatusBox .message ul {
  list-style: none;
  text-align: left;
}

.alertStatusBox .statusButtonBar {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.alertStatusBox .statusButtonBar a {
  display: inline-block;
  padding: 0 20px;
  line-height: 35px;
  border-radius: 4px;
  background: #0277bc;
  color: white;
}
.alertStatusBox .statusButtonBar a:hover {
  background: #01578a;
  color: white;
}