body {
    background: white;
    font:16px serif;
}

body * {
    -webkit-transition: top,left,width,height 0.51s ease-in-out;
    -moz-transition: top,left,width,height 0.51s ease-in-out;
    -o-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    transition: all 1s ease-out;        
}

div.header {
    border-bottom: 1px solid black;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
    font:bold 4em sans-serif;    
}

div.sections {
    position: relative;
}
div.sections .section-header {
    border-bottom: 1px solid black;
    font-weight: bold;
    font-size: 1.25em;
    text-align: center;    
}

div.paper {   
    width: 90%;
    max-width: 66em;
    min-height: 100%;
    -webkit-box-shadow:0 0 50px rgba(0, 0, 0, 0.5);
    -moz-box-shadow:0 0 50px rgba(0, 0, 0, 0.5);
    box-shadow:0 0 50px rgba(0, 0, 0, 0.5);    
    border-left: 1px solid black;
    border-right: 1px solid black;
    margin-left: auto;
    margin-right: auto;
    padding: 2em;
}

/** Base article text and content formatting classes **/
article .title {
    margin-bottom: 0px;
    font:bold 2em sans-serif;    
}
article .sub-title {
    margin-bottom: 0.5em;
    margin-top: 0px;
    font: 1.25em sans-serif;    
    font-weight: lighter;
}
article .blurb {
    font-weight: bold;
}
article .blurb, article .content {
    text-indent: 1.25em;
    text-align: justify;
    text-justify: auto;
}
article .blurb p , article .content p {
    margin-bottom: 0px;
    margin-top: 0.5em;
}
article .page, article .category, article .super-title {
    display: inline-block;    
    color: grey;
}
article .caption {
    font-size: 0.9em;
    font-style: italic;
    margin-bottom: 1em;
    margin-top: 0.25em;
}
article .byline {
    margin-top: 1em;
    font-style: italic;
    text-align: right;
    color: grey;
}
article {
    -webkit-column-count:2;
    -moz-column-count:2;
    column-count:2;
    -webkit-column-gap:30px;
    -moz-column-gap:30px;
    column-gap:30px;
    margin-top: 1em;
}
article .secondary-graphics {
    margin-top: 1em;
}

article .image-container {
    max-width: 99%;
    height: 20em;
    border: 1px solid black;
    -moz-background-size: cover;
    -webkit-background-size: cover;    
    background-size: cover;
    background-position: center;    
}
article .image-container img {
    width: 100%;
    visibility: hidden;
}
article .extras {
    background: #ecfbff;
    border-top: solid 0.3em #84c7d9;
    padding: 1em;
}
article .page {
    font-size: 0.9em;
}

/** Low width tweaks **/
@media screen and (max-width: 900px){
    article {
        -webkit-column-count:2;
        -moz-column-count:2;
        column-count:2;
    }
}
/** Low width tweaks **/
@media screen and (max-width: 575px){
    article {
        -webkit-column-count:1;
        -moz-column-count:1;
        column-count:1;
    }
}