/* ============================================================================ *
        Editor Content Styles
        ---------------------------------------------------------------------------
        These will only style content from a wordpress editor box. This isolates
        their styles so they don't cascasde to other structural page elements.

        All styles in this stylesheet should target the .editor-content class in some way.
*/


/* ======================================== *
        Header 1 & 2
 * ======================================== */
/* 
       H1's should only be used in the home page content editor.
       All other pages have their h1's generated for them. 
       If you think you have to put an h1 style in here,
       you most likely shouldn't be putting an h1 in the WP editor in the first place.

       H1 and H2 styles get placed in structure.css!
*/
.editor-content h1 {
    margin-bottom: 15px;
}

.editor-content h2 {
    margin-bottom: 15px;
}



/* ======================================== *
        Header 3
 * ======================================== */

.editor-content h3 {}

.editor-content h3 {}

/* ======================================== *
        Header 4
 * ======================================== */


.editor-content h4 {}

.editor-content h4 a {}

.editor-content h4 a:hover {
    text-decoration: underline;
}


/* ======================================== *
        Paragraph
 * ======================================== */
.editor-content p {
    line-height: 1.7em;
    margin-bottom: 15px;
}

.editor-content p:last-child {
    margin-bottom: 0;
}



/* ======================================== *
        Lists
 * ======================================== */
.editor-content ul,
.editor-content ol {
    padding-left: 40px;
    margin: 15px 0;
}

.editor-content ul li, 
.editor-content ol li {}



/* ======================================== *
        Links
 * ======================================== */
.editor-content a {
    text-decoration: underline;
}

.editor-content a:hover {
    text-decoration: none;
}



/* ======================================== *
        Floats
 * ======================================== */
.editor-content .alignleft { 
    margin-bottom: 25px;
    margin-right: 25px;
}

.editor-content .aligncenter { 
    margin-bottom: 25px;
}

.editor-content .alignright  { 
    margin-bottom: 25px;
    margin-left: 25px;
}
