.backgroundTransparent {
  background-color: transparent;
}
.fullSize {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.fullHeight {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}
.fullWidth {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.positionFixed {
  position: fixed;
}
.positionRelative {
  position: relative;
}
.positionAbsolute {
  position: absolute;
}
.overflowHidden {
  overflow: hidden;
}
.overflowScroll {
  overflow: scroll;
}
.overflowVisible {
  overflow: visible;
}
.overflowAuto {
  overflow: auto;
}
.displayNone {
  display: none;
}
.displayBlock {
  display: block;
}
.displayInline {
  display: inline;
}
.displayInlineBlock {
  display: inline-block;
}
.spaceNowrap {
  white-space: nowrap;
}