/* Basscss Position */

  $z1: 1;
  $z2: 2;
  $z3: 3;
  $z4: 4;

.relative { position: relative }
.absolute { position: absolute }
.fixed    { position: fixed }

.top-0    { top: 0 }
.right-0  { right: 0 }
.bottom-0 { bottom: 0 }
.left-0   { left: 0 }

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.t-left {
  text-align: left;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.z1 { z-index: $z1 }
.z2 { z-index: $z2 }
.z3 { z-index: $z3 }
.z4 { z-index: $z4 }



