/*
 * -------------------------------
 * PASSWORD GENERATOR
 * -------------------------------
 * by Vincent Polding
 * contact: https://www.poldings.com
 * demo site: http://www.farnhamecho.com
 * 20th Dec 2014
*/

/*
* -------------------------------
* MAIN PORTAL STLESHEET
* -------------------------------
*/
/* global reset padding and margins */
*, html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, sub-menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/*
 * -------------------------------
 * MAIN STRUCTURE
 * -------------------------------
 */
body {
    margin: 0 auto;
    padding: 0;
    color: #444444;
    font-family: 'Times New Roman', 'Times', serif;
    font-size: 110%;
    background-color: #fff;
}

/*
 * -------------------------------
 * WRAPPER
 * -------------------------------
*/
.header-wrapper {
    width: 100%;
    clear: both;
    padding: 0;
    color: #fff;
    margin: 0;
    background-color: #222;

}

.header-content {
    clear: both;
    font-size: 100%;
    margin: 0 auto;
    width: 1200px;
    max-width: 90%;
}

.content-wrapper {
    width: 100%;
    clear: both;
    margin: 0;
    padding: 0;

}

.content-content {
    clear: both;
    font-size: 100%;
    margin: 0 auto;
    width: 1200px;
    max-width: 90%;

}

.footer-wrapper {
    width: 100%;
    clear: both;
    margin: 0;
    padding: 0;
    border-top: 1px solid #444;

}

.footer-content {
    clear: both;
    margin: 0 auto;
    padding: 20px 0 20px 0;
    font-weight: normal;
    color: #444;

    font-size: 100%;
    width: 1200px;
    max-width: 90%;
}

/*
 * -------------------------------
 * TITLE TAGS
 * -------------------------------
 */

h1 {
    font-size: 140%;
    line-height: 140%;
    margin: 0px 0 0px 0;
    font-family: 'Nunito', sans-serif;
    font-weight: normal;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #3c5769;
}

h2 {

    font-weight: normal;
    font-size: 140%;
    line-height: 140%;
    margin: 0px 0 0px 0;
    padding: 10px 0 10px 0;
    font-family: 'Nunito', sans-serif;
    clear: both;
    color: #3c5769;
    border-top: 1px dashed #3c5769;
    border-bottom: 1px dashed #3c5769;

}

h3 {
    font-size: 150%;
    line-height: 150%;
    margin: 0 0 15px 0;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
}

h4 {
    font-weight: normal;
    font-size: 140%;
    line-height: 140%;
    margin: 0px 0 0px 0;
    padding: 10px 0 10px 0;
    font-family: 'Nunito', sans-serif;
    clear: both;
    color: #3c5769;
    border-top: 1px dashed #3c5769;
    border-bottom: 1px dashed #3c5769;
}

h5 {
    font-size: 130%;
    line-height: 130%;
    margin: 00px 0 5px 0;
    font-family: 'Nunito', sans-serif;
    color: #444;
    font-weight: bold;
}

h6 {
    font-size: 120%;
    line-height: 120%;
    margin: 10px 0 10px 0;
    font-weight: normal;
    font-family: 'Nunito', sans-serif;
    color: #444;
}

.header-farnhamecho {
    font-weight: normal;
    font-size: 300%;
    line-height: 100%;
    margin: 0;
    font-family: 'Times New Roman', 'Times', serif;
    color: #fafafa;
    letter-spacing: 5px;
    padding: 20px 0px 10px 0px;
    text-align: center;
    text-transform: uppercase;
}

.farnhamecho-red {
    color: #e01e24;
}

.header-farnhamecho-tagline {
    text-align: center;
    font-weight: normal;
    font-size: 120%;
    line-height: 130%;
    margin: 0;
    font-family: 'Times New Roman', 'Times', serif;
    color: #ccc;
    padding: 0px 0 20px 0;
    letter-spacing: 1px;
}

.phone-number {
    font-size: 150%;
}

/*
 * -------------------------------
 * LINKS
 * -------------------------------
 */
a, a:link, a:visited, a:active {
    color: #006699;
    text-decoration: none;
}

a:hover {
    color: #cc0066;
}

.header-content a, .header-content a:link, .header-content a:visited, .header-content a:active {
    color: #fafafa;
    text-decoration: none;
}

.header-content a:hover {
    color: #70a3d4;

}

/*
 * -------------------------------
 * COMMON ELEMENTS
 * -------------------------------
 */
p {
    font-size: 110%;
    margin: 0 0 15px 0;
    line-height: 130%;
}

.list ul {
    font-size: 110%;
}

.list li {
    font-size: 110%;
    margin: 0 0 0 20px;
    line-height: 100%;
    padding: 0 0 10px 0;
}

/*
 * -------------------------------
 * CUSTOM CLASSES
 * -------------------------------
 */
.clear {
    clear: both;
    padding: 0;
    margin: 0;
    height: 0;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

.small {
    font-size: 80%;
}

.highlight {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 19px;
    min-height: 20px;
    border: 1px solid #ccc;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
/*
 * -------------------------------
 * COLUMNS
 * -------------------------------
 */
.col5 {
    float: left;
    width: 5%;
}

.col10 {
    float: left;
    width: 10%;
}

.col15 {
    float: left;
    width: 15%;
}

.col20 {
    float: left;
    width: 20%;
}

.col25 {
    float: left;
    width: 25%;
}

.col30 {
    float: left;
    width: 30%;
}

.col35 {
    float: left;
    width: 35%;
}

.col40 {
    float: left;
    width: 40%;
}

.col45 {
    float: left;
    width: 45%;
}

.col50 {
    float: left;
    width: 50%;
}

.col55 {
    float: left;
    width: 55%;
}

.col60 {
    float: left;
    width: 60%;
}

.col65 {
    float: left;
    width: 65%;
}

.col70 {
    float: left;
    width: 70%;
}

.col75 {
    float: left;
    width: 75%;
}

.col80 {
    float: left;
    width: 80%;
}

.col85 {
    float: left;
    width: 85%;
}

.col90 {
    float: left;
    width: 90%;
}

.col95 {
    float: left;
    width: 95%;
}

/*
 * -------------------------------
 * SPACERS
 * -------------------------------
 */
.space10 {
    height: 10px;
    clear: both;
}

.space15 {
    height: 15px;
    clear: both;
}

.space20 {
    height: 20px;
    clear: both;
}

.space30 {
    height: 30px;
    clear: both;
}

.space40 {
    height: 40px;
    clear: both;
}

/*
 * -------------------------------
 * RESPONSIVE MEASURES
 * -------------------------------
*/
.maxwidth {
    max-width: 100%;
}

.showif {
    display: none;
}

@media only screen and (max-width: 480px) {

    .header-farnhamecho {
        font-size: 160%;
    }

    .header-farnhamecho-tagline {
        font-size: 100%;
    }

    h1 {
        font-size: 140%;
    }

    p {
        line-height: 130%;
    }

    .col5, .col10, .col15, .col20, .col25, .col30, .col35, .col40, .col45, .col50, .col55, .col60, .col65, .col70, .col75, .col80, .col85, .col90, .col95 {
        width: 100%;
    }

    .centerif {
        text-align: center;
    }

    .hideif {
        display: none;
    }

    .showif {
        display: block;
    }
}