
div.auto {
  width: auto;
  height: auto;
}
div.left {
  float: left;
}
div.right {
  float: right;
}
div.top {
  position: absolute;
  top: 0px;
}
div.bottom {
  position: absolute;
  bottom: 0px;
}
div.relative {
  position: relative;
}
div.absolute {
  position: absolute;
}
div.object-wrapper {
  overflow: hidden;
}
.max {
  width: 100%;
  height: 100%;
}
.max-w {
  width: 100%;
}
.max-h {
  height: 100%;
}
table.fixed {
  table-layout: fixed;
}
table.auto {
  table-layout: auto;
}
span.nano {
  font-size: 0px;
}
p.left {
  text-align: left;
}
p.center {
  text-align: center;
}
p.right {
  text-align: right;
}
p.justify {
  text-align: justify;
}
.bold {
  font-weight: bold;
}
.cursor {
  cursor: pointer;
}
img.left {
  float: left;
}
img.right {
  float: right;
}
.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}