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

/*
body * {
}
*/

.global-header {
    background: green;
    height: 50px;
    border-bottom: 1px solid black;
}
.logo {
    text-align: center;
}
.logo img {
    background: aquamarine;
    height: 50px; /* global-header-height*/
}

div.paper-header {
    height: 30px;
    margin-top: 3px;
    margin-bottom: 3px;
    background: green;
}
div.paper-header div.datestamp {
    float: right;
    background: cyan;
    line-height: 30px; /*paper-header-height*/
    margin-right: 2em;
}
div.paper {   
    width: 766px;
    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;
}

/** Base article text and content formatting classes **/
article .title {
    margin-bottom: 0px;
    margin-top: 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 {
    /*margin: 2em;*/
}
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;
}


/** Swipeable spread viewer **/
div.swipe-view {
    overflow: hidden;
    position: relative;
    height: 768px;
}
.spreads {
    width: 99999em;
    padding-left: 0px;
    margin-top: 0px;


    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.spread {
    display: inline-block;
    vertical-align: top;

    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;

    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;        
}
.swipeable {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/** Navigators and menus **/
.local-navigator {
    z-index: 100;
}
.local-navigator.active {
    left: -1em;
}


/** Basic block styles **/
.blocks .block:not(:first-of-type){
    border-top: 1px solid black;
}