/*
Theme Name: The Courier
Theme URI: http://www.dcthomson.co.uk
Author: Robert Paul
Author URI: http://www.dcthomson.co.uk
Description: Grid styling
*/

/****
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, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, figure, figcaption, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
    vertical-align: baseline;
}

html {
	height: 100%;
    background-color: #6d6e71;
    overflow-y: scroll;
    
	-moz-text-size-adjust: 100%;    
	-ms-text-size-adjust: 100%;    
	-o-text-size-adjust: 100%;    
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    padding-top: 164px;
    line-height: 1.6;
    background-color: #fff;
	font-family: 'Helvetica Neue Light', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-weight: 400;
    color: #333;
    
    -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
	line-height: 1.6;
    font-family: 'Arial', sans-serif;
    color: #333;
}

img {
    border: 0 none;
    line-height: 1;
    font-size: 10px;
}

pre {
    text-align: left;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

/* Grid */
.wrap {
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

.row:before,
.row:after,
.row-full:before,
.row-full:after {
    content: '';
    display: table;
}

.row:after,
.row-full:after {
    clear: both;
}

.row {
    width: 100%;
}

.row-full {
    margin-left: -10px;
    margin-right: -10px;
    width: auto;
}

.column {
    position: relative;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
}

/* Global Classes */
.clear:after {
    content: '';
    display: block;
    clear: both;
}

/* Shared CSS */
.wrap,
.column {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;    
}

/* Grid: Default (mobile-first) */
.sm-12 {
    width: 100%;
}
.sm-11 {
    width: 91.66667%;
}
.sm-10 {
    width: 83.33334%;
}
.sm-9 {
    width: 75%;
}
.sm-8 {
    width: 66.66667%;
}
.sm-7 { 
    width: 58.33334%;
}
.sm-6 {
    width: 50%;
}
.sm-5 {
    width: 41.66667%;
}
.sm-4 {
    width: 33.33334%;
}
.sm-3 {
    width: 25%;
}
.sm-2 {
    width: 16.66667%;
}
.sm-1 {
    width: 8.33334%;
}

/* Mobile */
@media only screen and (max-width: 767px) {
    
    body {
        padding-top: 48px;
    }
    
    #wpadminbar {
        position: fixed !important;        
    }
    
    .wrap {
        width: 100%;
    }

    /* Show/hide classes */
    .show-sm {
        display: block !important;
    }    
    
    .hide-sm,
    .show-md,
    .show-lg {
        display: none !important;
    }
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    
    .wrap {
        width: 768px;
    }
    
    /* Grid */
    .md-12 {
        width: 100%;
    }
    .md-11 {
        width: 91.66667%;
    }
    .md-10 {
        width: 83.33334%;
    }
    .md-9 {
        width: 75%;
    }
    .md-8 {
        width: 66.66667%;
    }
    .md-7 {
        width: 58.33334%;
    }
    .md-6 {
        width: 50%;
    }
    .md-5 {
        width: 41.66667%;
    }
    .md-4 {
        width: 33.33334%;
    }
    .md-3 {
        width: 25%;
    }
    .md-2 {
        width: 16.66667%;
    }
    .md-1 {
        width: 8.33334%;
    }
    
    /* Show/hide classes */
    .show-md {
        display: block !important;
    }
    
    .hide-md,
    .show-sm,
    .show-lg {
        display: none !important;
    }    
}

/* Desktop */
@media only screen and (min-width: 1025px) {

    .wrap {
        width: 980px;
    }

    /* Grid */
    .lg-12 {
        width: 100%;
    }
    .lg-11 {
        width: 91.66667%;
    }
    .lg-10 {
        width: 83.33334%;
    }
    .lg-9 {
        width: 75%;
    }
    .lg-8 {
        width: 66.66667%;
    }
    .lg-7 {
        width: 58.33334%;
    }
    .lg-6 {
        width: 50%;
    }
    .lg-5 {
        width: 41.66667%;
    }
    .lg-4 {
        width: 33.33334%;
    }
    .lg-3 {
        width: 25%;
    }
    .lg-2 {
        width: 16.66667%;
    }
    .lg-1 {
        width: 8.33334%;
    }
    
    /* Show/hide classes */
    .show-lg {
        display: block !important;
    }
    
    .hide-lg,
    .show-sm,
    .show-md {
        display: none !important;
    }
}