/* HTML RESET 
///////////////////////////////////////////// */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
form, label, select,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    outline: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* END HTML RESET 
///////////////////////////////////////////// */


/* COLUMNAL - CORE
///////////////////////////////////////////// */

/* Column code based on work from cssgrid.net: The 1140px Grid by http://cssgrid.net */
.container {
    padding-left: 10px;
    padding-right: 10px;
}

.containerv {
    padding-top: 10px;
    padding-bottom: 10px;
}

.row {
    clear: both;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; /*overflow: hidden;*/
}

/*  GROUPING  */
.group:before,
.group:after {
    content: "";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    zoom: 1; /* For IE 6/7 */
}

.last, .omega {
    margin-right: 0 !important;
}

object, embed {
    max-width: 100%;
}

/*
_______________________________
Columnal - extras */

.clear, .clearboth {
    clear: both !important;
}

.clearleft {
    clear: left !important;
}

.clearright {
    clear: right !important;
}

.textcenter {
    text-align: center;
}

.textright {
    text-align: right;
}

.textleft {
    text-align: left;
}

/* this will insert a pseduo element clears floats for an element containing floated content */
.selfclear:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

.mobile-only {
    display: none;
}

.col {
    display: block;
    float: left;
    margin: 0.2% 0 0.2% 0.4%;
    vertical-align: middle;
}

    .col:first-child {
        margin-left: 0;
    }

/*  GRID OF TWELVE  */
.col_12 {
    clear: both;
    width: 100%;
    float: left;
}

.col_11 {
    width: 91.63%;
}

.col_10 {
    width: 83.26%;
}

.col_9 {
    width: 74.9%;
}

.col_8 {
    width: 66.53%;
}

.col_7 {
    width: 58.16%;
}

.col_6 {
    width: 49.8%;
}

.col_5 {
    width: 41.43%;
}

.col_4 {
    width: 33.06%;
}

.col_3 {
    width: 24.7%;
}

.col_2 {
    width: 16.33%;
}

.col_1 {
    width: 7.966%;
}

/* END COLUMNAL - CORE CODE
///////////////////////////////////////////// */

/* COLUMNAL - MOBILE
///////////////////////////////////////////// */

@media handheld, only screen and (max-width: 767px) {
    .row, .body, .container {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Columnal content control - use on any elements to show/hide content on mobile */
    .mobile-hide {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .col {
        margin: 0.5% 0 0.5% 0%;
    }

    .col_1, .col_2, .col_3, .col_4, .col_5, .col_6, .col_7, .col_8, .col_9, .col_10, .col_11, .col_12 {
        width: 100%;
    }
}
/* END COLUMNAL - MOBILE
///////////////////////////////////////////// */
