﻿/* borrow from http://jsbin.com/joxuruwutu/edit?output */
/* centered columns styles */
/* use to center columns when working with bootstrap */
.cec-row-centered {
    text-align:center;
}
.cec-col-centered {
    display:inline-block;
    float:none !important;
    /* reset the text-align */
    text-align:left;
    /* inline-block space fix */
    margin-right:-4px;
}
.cec-col-fixed {
    /* custom width */
    width:320px;
}
.cec-col-min {
    /* custom min width */
    min-width:320px;
}
.cec-col-max {
    /* custom max width */
    max-width:320px;
}


