/**
 * Table elements with small class framework.
 *
 * ---------------------------------------------------------------------------------------------------------------------
 * @version 2.0.0
 * @date    2012-09-06
 * @since   2010-10-21
 * @author  Christian Oellers <info@*.de>
 * @link    http://veryshort.de/
 */

/* ----------------------------------------------------------------------------------------------------------- Tables */

table {
    table-layout:auto;
    empty-cells:show;
    border-collapse:collapse;
    border-spacing:0;
    border:0;
    width:100%;
}

/**
 * [framework]
 * Tables with fixed sizes.
 */

table.fixed {
    table-layout:fixed;
}

table.fixed tbody {
    width:100%;
}

table.fixed caption {
    caption-side:top;
}

/**
 * [framework]
 * Tables with visual separator.
 */

table.separate {
    border-collapse:separate;
    border-spacing:1px;
}

caption, th, td {
    text-align:left;
    vertical-align:top;
}

th, td {
    color:#000;
    font-family:"Arial", "Verdana", "Tahoma", "DejaVu Sans", sans-serif;
    font-size:1rem;
    line-height:120%;
}
