body {
    background: white;
    font-size:14pt;
    font-family: 'Wingdings';
    margin: 0px;
    color: #2c2c2c;
}

.global-header {
    position:relative;
    width: 766px;
    background: #dddddd;
    margin-left: auto;
    margin-right: auto;
    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-bottom: 3px;
    background: #dddddd;
    font-family: 'Droid Serif', serif;
}
div.paper-header div.datestamp {
    float: right;
    line-height: 30px; /*paper-header-height*/
    margin-right: 2em;
    font-size: 0.9em;
    font-weight: bold;
    
}
div.paper {   
    width: 766px;
    min-height: 100%;
    background: #dddddd;
    margin-left: auto;
    margin-right: auto;
}

/** Base article text and content formatting classes **/
article .title {
    margin-bottom: 0px;
    margin-top: 0px;
    font-family: 'Droid Serif', serif;
    font-size: 3.29em;
    line-height: 1.04em;
    text-transform: uppercase;
}
article .sub-title {
    margin-bottom: 0.5em;
    margin-top: 0px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: 700;
    font-size: 1.14em;
    line-height: 1.125em;
    text-transform: uppercase;
}
article .blurb {
    font-family: 'Droid Sans', sans-serif;
    line-height: 1.29em;
}

article .content, article .extras, article .byline {
    font-family: 'Droid Serif', serif;
    line-height: 1.29em;
}

/*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-family: 'Droid Sans', sans-serif;
    font-size: 0.71em;
    line-height: 1.2em;
    margin-bottom: 1em;
    margin-top: 0.25em;
}
article .byline {
    display: inline-block;
    margin-top: 1em;
    margin-bottom: 1em;
    color: #8c8c8c;
}
article .byline div {
    display: inline-block;
}
article .byline-header {
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    background: #fa21bb;
    vertical-align:middle;
    margin-right: 0.5em;
}
article {
    /*margin: 2em;*/
}
article .secondary-graphics {
    margin-top: 1em;
}
article .graphics {
    position: relative;
}

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;
    float: right;
    margin-right: -22px;
    margin-left: 24px;
    width: 170px;    
}

/** 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;
}