/* ====================================================
   File name: add-on.css
   File desc: CSS add-on for TrackMyRug.com.
   ==================================================== */

/*
  From : http://www.jakpsatweb.cz/css/css-vertical-center-solution.html
*/
html, body {
  height: 100%;
  margin: 0;
  width: 100%;
}
.xy-align {
  display: table;
  height: 100%;
  overflow: hidden;
  text-align: center;
  width: 100%;
}
.xy-align .wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.xy-align .content {
  display: -moz-inline-stack;
  display: inline-block;
  text-align: left;
}

/* !IE hacks */
.ie .xy-align {
  position: relative;
}
.ie .xy-align .wrapper {
  left: 0;
  position: absolute;
  top: 50%;
}
.lt-ie8 .xy-align .content {
  display: inline;
  left: 0;
  position: relative;
  zoom: 1;
  top: -50%;
}

/* !Preview style */
.xy-align {
  background: #ffffff;
}
.xy-align .wrapper {
  background: #ffffff;
}
.xy-align .content {
  background: #ffffff;
  padding: 1em;
}