.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;
}

.extendedInfoBody {
  overflow: hidden;
}

.extendedInfoCell {
  text-overflow: ellipsis;
  overflow: hidden;
}

.extendedInfoCell a {
  margin-right: 5px;
}

.extendedInfoBox .extendedInfoOverlay {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 100;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.extendedInfoBox .extendedInfoOverlayBox {
  overflow: hidden;
  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);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translate(0, 200%);
  z-index: 200;
}

.extendedInfoBox.extendedInfoDisplay .extendedInfoOverlay {
  display: block;
}

.extendedInfoBox.extendedInfoDisplay.dspOverlay .extendedInfoOverlay {
  opacity: 1;
}

.extendedInfoBox.extendedInfoDisplay.extendedInfoAnimate .extendedInfoOverlayBox {
  opacity: 1;
  transform: translate(0, 0);
}

.extendedInfoBox .extendedHeader {
  text-align: left;
  font-size: 1.25em;
  padding: 10px 5px;
  background: #ededef;
  border-bottom: 1px solid #cdcdd2;
}

.extendedInfoBox .extendedHeader .extendedInfoTitle {
  min-height: 16px;
}

.extendedInfoBox .extendedInfoActionContainer {
  float: right;
}

.extendedInfoBox .extendedContent {
  width: 100%;
  border: none;
  background: #ffffff;
}

.moreContentBox .mcb-contentBox {
  position: relative;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.moreContentBox .mcb-contentBox .mcb-moreLink {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
  background: #f5f5f6;
}

.a-cardHover .moreContentBox .mcb-contentBox .mcb-moreLink {
  background: #e5e5e8;
}
.moreContentBox .mcb-contentBox .mcb-lessLink {
  display: none;
  margin-left: 4px;
}
.moreContentBox .mcb-contentBox.mcb-dspToggle .mcb-moreLink,
.moreContentBox .mcb-contentBox.mcb-dspToggle .mcb-lessLink {
  display: inline-block;
}
.moreContentBox .mcb-contentBox.mcb-less .mcb-lessLink {
  display: inline-block;
}

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

body.filterShelfOpen {
  overflow: hidden;
}
body.filterShelfOpen .outerContainer {
  filter: blur(5px);
}

.filterLink {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

.filterShelf {
  position: fixed;
  right: 0;
  bottom: 0;
  top: 0;
  width: 0;
  z-index: 151;
  background: #f5f5f6;
}
body.filterShelfOpen .filterShelf {
  box-shadow: -2px 0 5px 0 rgba(0, 0, 0, 0.3);
  border-left: 1px solid #cdcdd2;
}

.filterShelf .filterHeading {
  position: relative;
}
.filterShelf .filterHeading .filterLink {
  position: absolute;
  right: 100%;
  display: none;
  font-size: 3em;
}
.filterShelf .filterHeading .filterLink a {
  color: #ffffff;
}
.filterShelf .filterHeading .appTitle {
  font-size: 2em;
  padding: 8px;
}
.filterShelf.shelfOpen .filterHeading .filterLink {
  display: inline-block;
}
.filterShelf .filterOptions {
  display: inline-block;
  width: 300px;
  overflow: auto;
}
.filterShelf .filterOptions .detailRow,
.filterShelf .filterOptions .filter,
.filterShelf .filterOptions .filterButtons {
  margin: 10px;
}
.filterShelf .filterButtons {
  padding: 5px;
}

.toolTipSearchedFilters .label {
  font-weight: 700;
}

.gridContainerBox .gridLinks a:not(:first-child) {
  margin-left: 5px;
}
.gridContainerBox .gridLinks a:not(:first-child):before {
  content: "";
  margin-right: 5px;
  border-left: 1px solid #cdcdd2;
}

.gridContainerBox .gridLinks.button a {
  border-radius: 4px;
  border: none;
  text-decoration: none;
  text-shadow: none;
  padding: 6px 10px;
  cursor: pointer;
  background: #0277bc;
  color: white;
}

.gridContainerBox .gridLinks.delete a {
  color: #990000;
}

.gridContainerBox .gridLinks.add a {
  color: #009900;
}

.gridContainerBox .gridImage img {
  max-width: 30px;
  max-height: 30px;
  width: auto;
  height: auto;
}
.gridContainerBox .icon i {
  font-size: 1.2em;
}

.gridLoadingOverlayBox {
  overflow: hidden;
}
.gridLoadingOverlayBox .gridLoadingOverlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255, 255, 255, 0.7);
}

.gridLoadingOverlayBox .gridLoadingOverlayCnt {
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 11;
  color: black;
}

.gridLoadingOverlayBox.hideOverlay .gridLoadingOverlay,
.gridLoadingOverlayBox.hideOverlay .gridLoadingOverlayCnt {
  display: none;
}

.noRowsToShowBox {
  display: table;
  width: 100%;
}

.noRowsToShowMsg {
  display: table-cell;
  height: 80px;
  vertical-align: middle;
  text-align: center;
  width: 100%;
}

.popupFormBody {
  overflow: hidden;
}
.popupFormBody .outerContainer {
  filter: blur(5px);
}

.popupFormBox .popupFormOverlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 100;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(0, 0, 0, 0.7);
}

.popupFormBox .popupFormOverlayBox {
  position: fixed;
  width: 500px;
  height: 200px;
  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;
  transform: translate(0, 300%);
  z-index: 101;
  background: #f5f5f6;
  border: 1px solid #cdcdd2;
}

.popupFormBox.popupFormDisplay .popupFormOverlay {
  display: block;
}
.popupFormBox.popupFormDisplay.dspOverlay .popupFormOverlay {
  opacity: 1;
}
.popupFormBox.popupFormDisplay.popupFormAnimate .popupFormOverlayBox {
  opacity: 1;
  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;
  column-gap: 40px;
}
.popupFormBox .formContainer:not(:last-child) {
  border-bottom: 1px solid #cdcdd2;
}
.popupFormBox .formContainer .compCodeIcon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 15px;
  font-size: 20px;
}
.popupFormBox .formContainer .compCodeIcon.invalid {
  color: #ff4444;
}
.popupFormBox .formContainer .compCodeIcon.valid {
  color: #00C851;
}
.popupFormBox .oneColumn .formContainer {
  column-count: 1;
}
.popupFormBox .twoColumn .formContainer {
  column-count: 2;
}
.popupFormBox .threeColumn .formContainer {
  column-count: 3;
}
.popupFormBox .formContainer .detailRow {
  break-inside: avoid-column;
}
.popupFormBox .formContainer .detailRow .detailField {
  padding: 5px;
  line-height: 35px;
}
.popupFormBox .formContainer .detailRow .detailField .label {
  display: block;
  vertical-align: top;
  line-height: normal;
  text-overflow: ellipsis;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
}
.popupFormBox .formContainer .detailRow .detailField .label a {
	color:#3EB7EA;
}

.popupFormBox .formContainer .detailRow .detailField .field {
  padding: 0;
  vertical-align: top;
  display: block;
  line-height: inherit;
  position: relative;
}
.popupFormBox .formContainer .detailRow .detailField .field .dijitTextBox {
  width: 100%;
  box-sizing: border-box;
}
.popupFormBox .formContainer .detailRow.split {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.popupFormBox .formContainer .detailRow.split .detailField {
  flex: 1 1 0;
}
.popupFormBox .formContainer.full {
  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;
  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 {
  position: absolute;
  bottom: 100%;
  left: 100%;
  font-size: 2em;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #ffffff;
}

.popupFormBox.chartPopup.widthResized a, .popupFormBox.exportPopup.widthResized a {
  transform: translateX(-25px);
}
.popupFormBox.chartPopup.heightResized a, .popupFormBox.exportPopup.heightResized a {
  transform: translateY(25px);
}
.popupFormBox.chartPopup.widthResized.heightResized a, .popupFormBox.exportPopup.widthResized.heightResized a {
  transform: translate(-25px, 25px);
  z-index: 10;
  color: #000000;
}

.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;
}

.maxRowsBox {
	display:inline-block;
	vertical-align:middle;
}
.maxRowsBox a {
  display: inline-block;
  padding: 0 5px;
  position: relative;
  margin-left: 5px;
  color: #0277bc;
}

.maxRowsBox a:hover {
  color: #01578a;
}

.maxRowsBox a.selected:before {
  content: "[";
  position: absolute;
  left: 0;
}
.maxRowsBox a.selected:after {
  content: "]";
  position: absolute;
  right: 0;
}

.gridColumnControllerBox {
	display:inline-block;
	vertical-align:middle;
	position:relative;
	margin-left:5px;
}
.gridColumnControllerBox .columnButton {
	padding: 5px;
	display: inline-block;
	vertical-align: middle;
}

.gridColumnControllerBox.showMenu .columnButton {
	background: #cccccc;	
}

.gridColumnControllerBox  .columnListContainer {
	display:none;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 1;
	background: #fff;
	border: 1px solid #cccccc;
}

.gridColumnControllerBox.showMenu .columnListContainer {
	display:inline-block;
}
.gridColumnControllerBox .columnListContainer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.gridColumnControllerBox .columnListContainer ul li {
	text-align: left;
	white-space: nowrap;
	margin: 5px;
}

.matchTypeInput {
  line-height: 30px;
}

.matchTypeInput .field-left,
.matchTypeInput .field-right,
.matchTypeInput .field-fill {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.matchTypeInput .field-left {
  float: left;
  width: auto;
  display: inline-block;
}
.matchTypeInput .field-right {
  float: right;
  width: auto;
  display: inline-block;
}
.matchTypeInput .field-fill {
  width: auto;
  white-space: nowrap;
}
.s2k-dojo .matchTypeInput .dijitSelect {
  box-sizing: border-box;
}
.s2k-dojo .matchTypeInput .dijitTextBox {
  box-sizing: border-box;
  width: 100%;
}
.matchTypeInput .field-search-scope {
  font-size: .8em;
  line-height: inherit;
  display: inline-block;
  position: relative;
  float: left;
  margin: 0;
  padding: 0 5px;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
  background: #0277bc;
  color: white;
}

.matchTypeInput .field-match-label,
.matchTypeInput .field-match-icon {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
}
.matchTypeInput .field-search-scope select {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 30px;
  width: 100%;
  outline: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: visible;
  border: 0;
  line-height: 35px;
}
.matchTypeInput .dijitReset.dijitTextBox,
.matchTypeInput .dijitReset.dijitInputField,
.matchTypeInput .dijitReset.dijitInputInner,
.matchTypeInput .dijitReset.dijitArrowButton {
  border-radius: 0 6px 6px 0;
}

.statusPopupBox .statusPopupOverlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.statusPopupBox .statusPopupOverlay .statusPopupOverlayBox {
  position: fixed;
  max-width: 50%;
  height: 120px;
  background: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border: 1px solid #ebebeb;
  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%);
}

.statusPopupBox .statusPopupOverlay.anim .statusPopupOverlayBox {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translate(0, 0);
}

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

.lightboxBody {
  overflow: hidden;
}
.lightboxBody .outerContainer {
  filter: blur(5px);
}

.lightboxBox .lightboxOverlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 100;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: rgba(0, 0, 0, 0.7);
}

.lightboxBox .lightboxOverlayBox {
  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);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translate(0, 200%);
  z-index: 101;
}
.lightboxBox .lightboxOverlayBox .lightboxHeader {
  text-align: left;
  font-size: 1.25em;
  padding: 10px 5px;
  background: #ededef;
  border-bottom: 1px solid #cdcdd2;
}

.lightboxBox .lightboxOverlayBox .lightboxHeader .lightboxActionContainer {
  float: right;
  margin-left: 5px;
}
.lightboxBox .lightboxOverlayBox .lightboxHeader .lightboxTitle {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.lightboxBox .lightboxContent {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-around;
}
.lightboxBox .lightboxContent img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.lightboxBox .lightboxContent iframe {
	border:none;
	width:100%;
	height:100%;
}

.lightboxBox .lightboxAltImageContainer {
  border-top: 1px solid #cdcdd2;
}

.lightboxBox .lightboxAltImageContainer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 15px 0;
}
.lightboxBox .lightboxAltImageContainer ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  border: 1px solid transparent;
  width:50px;
  height:50px;
}
.lightboxBox .lightboxAltImageContainer ul li:hover {
  border-color: #cdcdd2;
}

.lightboxBox .lightboxAltImageContainer ul li a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.flexbox .lightboxBox .lightboxAltImageContainer ul li a {
	display:flex;
	align-content:center;
	align-items:center;
	text-align:center;
}
.lightboxBox .lightboxAltImageContainer ul li a img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.lightboxBox.lightboxDisplay .lightboxOverlay {
  display: block;
}
.lightboxBox.lightboxDisplay.dspOverlay .lightboxOverlay {
  opacity: 1;
}
.lightboxBox.lightboxDisplay.lightboxAnimate .lightboxOverlayBox {
  opacity: 1;
  transform: translate(0, 0);
}

.vaiNumberSpinner {
  width: 7em;
  line-height: 1.8em;
  display: inline-block;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  outline: none;
  border: 1px solid #cdcdd2;
}

.vaiNumberSpinner .field-left,
.vaiNumberSpinner .field-fill,
.vaiNumberSpinner .field-right {
  display: inline-block;
  text-align: center;
}
.vaiNumberSpinner .field-left,
.vaiNumberSpinner .field-right {
  width: 2em;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vaiNumberSpinner .field-left.disabled,
.vaiNumberSpinner .field-right.disabled {
  opacity: .2;
}
.vaiNumberSpinner .field-left a,
.vaiNumberSpinner .field-right a {
  display: inline-block;
  width: 100%;
  line-height: inherit;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vaiNumberSpinner .field-fill {
  width: 3em;
}
.vaiNumberSpinner .dijitTextBox {
  background-color: transparent;
  border: none;
  text-align: inherit;
  width: 100% !important;
  margin: 0;
}
.vaiNumberSpinner .dijitTextBox .dijitInputField {
  text-align: inherit;
}
.vaiNumberSpinner .dijitTextBox .dijitInputInner {
  line-height: inherit;
  text-align: inherit;
}
.vaiNumberSpinner .dijitTextBoxHover {
  background: none;
}
.vaiNumberSpinner .dijitTextBoxFocused {
  background: none;
}
.vaiNumberSpinner .dijitTextBoxFocused .dijitInputContainer {
  background: none;
}
.vaiNumberSpinner .fa {
  color: inherit;
}
.vaiNumberSpinner.vaiNumberSpinnerHover {
  border-color: #759dc0;
  background-color: #e5f2fe;
}
.vaiNumberSpinner.vaiNumberSpinnerFocus {
  border-color: #759dc0;
  background-color: #fff;
}

.portletHelpButtonBox .helpButton {
  font-size: 1.5em;
}

.label .helpButton {
  margin-right: 5px;
  display: inline-block;
}

a.helpButton {
  color: #2F6395;
}

a.helpButton:hover {
  color: #3671ab;
}

.scrollingImageBox {
  position: relative;
}

.scrollingImageBox .scrollButton {
  position: absolute;
  line-height: 235px;
  top: 0;
  padding: 0 5px;
  font-size: 1.5em;
}

.scrollingImageBox .scrollButton.leftBtn {
  left: 0;
}

.scrollingImageBox .scrollButton.rightBtn {
  right: 0;
}
/*
.popupContentBody {
	overflow:hidden;
}
*/
.popupContentBox .popupContentOverlay {
	background: rgba(0,0,0,.7);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display:none;
	z-index:2002;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: 350ms ease-out;
	-moz-transition: 350ms ease-out;
	-o-transition: 350ms ease-out;
	transition: 350ms ease-out;
}

.popupContentBox .popupContentOverlayBox {
	position: fixed;
	width: 1080px;
	height: 710px;
	background: #fff;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	border: 1px solid #ebebeb;
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
	-webkit-transition: 350ms ease-out;
	-moz-transition: 350ms ease-out;
	-o-transition: 350ms ease-out;
	transition: 350ms ease-out;
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-transform: translate(0,200%);
	-webkit-transform: translate(0,200%);
	transform: translate(0,200%);
	z-index:2003;
}

.popupContentBox .scrollBox {
	overflow:overflow;
	border-bottom: 1px solid #f0f0f0;
}

.popupContentBox.popupContentDisplay .popupContentOverlay {
	display:block;
}
.popupContentBox.popupContentDisplay.dspOverlay .popupContentOverlay {
	opacity: 1;
	filter: alpha(opacity=100);
}
.popupContentBox.popupContentDisplay.popupContentAnimate .popupContentOverlayBox {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-transform: translate(0,0);
	-webkit-transform: translate(0,0);
	transform: translate(0,0);
}
.popupContentBox .messageFrame {
	margin:15px;
}
.popupContentBox .buttonBar,
.popupContentBox .resultGrid {
	margin:10px;
}
.popupContentBox .footerButtonBar {
	
}
.popupContentBox .footerButtonBar a,
.popupContentBox .footerButtonBar button {
	margin-left:5px;
}
.popupContentBox .pdfExportIframe {
	width:100%;
	border:none;
	margin:0;
	padding:0;
}
.pagingBarBox .gridPaging button {
    box-shadow: none;
    filter: none;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    text-shadow: none;
    padding: 6px 10px;
    cursor: pointer;
    background: none;
}
.pagingBarBox .gridPaging .pageRange {
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 2px 8px;
    vertical-align: middle;
    display: inline-block;
}

.pagingBarBox .gridPaging .pageRange {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.pagingBarBox .gridPaging button.disabled {
    color: rgba(0, 0, 0, 0.5);
}





