/* ================================ */
/* By Atypic - www.atypic.be
/* ================================ */

/*
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*/

/* ===== text-align ===== */

.center {
    text-align: center;
}
.right {
    text-align: right;
}
.left {
    text-align: left;
}
.justify {
    text-align: justify;
}

/* ===== Vertical-align ===== */
.vtop {
    vertical-align: top;
}
.vmiddle {
    vertical-align: middle;
}
.vbottom {
    vertical-align: bottom;
}

/* ===== position ===== */

.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.full-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
html.ltie10 a.full-cover {
    background: url(img/ie/px.png);
}

/* ===== visibility ===== */

.hidden {
    visibility: hidden;
}
.visible {
    visibility: visible;
}

/* ===== text visibility ===== */

.text-indent {
    text-indent: -9999999px;
}

/* ===== display ===== */

.none {
    display: none;
}
.block {
    display: block;
}
.ib,
.inline-block {
    display: inline-block;
}

/* ===== float ===== */

.floatr,
.col.floatr,
.cell.floatr {
    float: right;
}
.floatl,
.col.floatl,
.cell.floatl {
    float: left;
}

/* ===== div avec un padding ===== */

.inside {
    padding: 10px 30px;
}

/* ===== icone Font Awesome dans un <button> =====  */

button .fa {
    margin-right: 5px;
}

/* ===== Animate.css ===== */

.vh { visibility: hidden; }
.animated { visibility: visible !important; }

/* ===== Clearfix ===== */

.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}