/*
    Spectator Theme
    © 2013 Keith McKnight & Zack Sultan
    Revised October 15, 2013
*/

body {
    margin: 0;
    margin-bottom: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body.no-scroll {
    overflow: hidden;
}

p, li, blockquote {
    margin: 0;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
}

.center {
    text-align: center;
}

body.no-scroll #tumblr_controls {
    display: none;
}


/* Global fonts
********************************/

body {
    font-family: georgia, serif;
    font-weight: normal;
}

.big-letter,
.pagination-container,
.title h1 {
    font-family: georgia, serif;
    font-weight: bold;
}

.blog-title h1 {
    font-family: helvetica, arial, sans-serif;
    font-weight: bold;
}

#header.left-navigation .blog-title,
#header.right-navigation .blog-title {
    width: 37%;
}
#header.left-navigation .links,
#header.right-navigation .links {
    width: 55%;
}

.metadata a,
.metadata {
    font-family: helvetica, arial, sans-serif;
    font-weight: normal;
}

.pagination {
    text-align: center;
}

.spectator-icon {
    display: inline-block;
    width: 33px;
    height: 13px;
    background-position: -500px 0;

    overflow: hidden;
    direction: ltr;
    text-indent: -9999px;
    font-size: 0;
}
.spectator-icon.white {
    background-position: -500px 0;
    opacity: 0.3;
}
.spectator-icon.black {
    background-position: -500px -100px;
    opacity: 0.3;
}
.spectator-icon.white:hover,
.spectator-icon.black:hover {
    opacity: 0.4;
}


/* Standard layout
********************************/

.page-min-width {
    min-width: 960px;
}

.page-width {
    position: relative;
    margin: 0 auto;
    width: 960px;
}

.header-content.page-width {
    width: 930px;
    padding: 0 15px;
}
#header.center-navigation .header-content.page-width {
    width: 900px;
    padding: 0 30px;
}
.post-grid.page-width {
    width: 930px;
    padding: 35px 15px;
}

.single-post.page-width {
    width: 900px;
    padding: 40px 30px;
}

.footer-content.page-width {
    width: 900px;
    padding: 35px 30px 40px;
}

#header {

}
.header-content:after {
    content: '';
    display: block;
    clear: both;
}

#footer {

}
.footer-content:after {
    content: '';
    display: block;
    clear: both;
}


/* Header
********************************/

#header a {
    text-decoration: none;
}

.blog-title {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 60px 10px;
    line-height: 28px;
}

.blog-title a {
    border-bottom: none;
}
.blog-title a.logo-image {
    display: inline-block;
    max-width: 100%;
}

.blog-title img {
    max-width: 100%;
}

.links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.links li {
    display: inline-block;
    margin-left: 6px;
    margin-right: 6px;
    line-height: 24px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.links li:first-child {
    margin-left: 0;
}
.links li:last-child {
    margin-right: 0;
}
.links ul:after {
    content: '';
    display: block;
    clear: both;
}


/* Header Right Navigation
********************************/

#header.right-navigation .blog-title {
    float: left;
    text-align: left;
}

#header.right-navigation .links {
    position: absolute;
    top: 50%;
    right: 15px;
    padding: 10px;
    margin-top: -24px;
    text-align: right;
}


/* Header Left Navigation
********************************/

#header.left-navigation .blog-title {
    float: right;
    text-align: right;
}

#header.left-navigation .links {
    position: absolute;
    top: 50%;
    left: 15px;
    padding: 10px;
    margin-top: -24px;
    text-align: left;
}


/* Header Center Navigation
********************************/

#header.center-navigation {
    width: 100%;
}

#header.center-navigation .links {
    position: relative;
    top: auto;
    left: auto;
    margin: 0;
    padding: 35px 0px 15px;
    width: 100%;
    border-bottom: 1px solid transparent;
}

#header.center-navigation .links ul {
    text-align: center;
}


/* Header No Navigation
********************************/

#header.none-navigation .links {
    display: none;
}


/* Lightbox
********************************/

.lightbox {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    z-index: 1000;

    visibility: hidden;
    opacity: 0;

    /* transition out */
    -webkit-transition: opacity 0.1s ease-in-out, visibility 0s 0.1s linear;
       -moz-transition: opacity 0.1s ease-in-out, visibility 0s 0.1s linear;
        -ms-transition: opacity 0.1s ease-in-out, visibility 0s 0.1s linear;
         -o-transition: opacity 0.1s ease-in-out, visibility 0s 0.1s linear;
            transition: opacity 0.1s ease-in-out, visibility 0s 0.1s linear;
}
.lightbox.visible {
    visibility: visible;
    opacity: 1;

    /* transition in */
    -webkit-transition: opacity 0.1s 0.2s ease-in-out, visibility 0s 0s linear;
       -moz-transition: opacity 0.1s 0.2s ease-in-out, visibility 0s 0s linear;
        -ms-transition: opacity 0.1s 0.2s ease-in-out, visibility 0s 0s linear;
         -o-transition: opacity 0.1s 0.2s ease-in-out, visibility 0s 0s linear;
            transition: opacity 0.1s 0.2s ease-in-out, visibility 0s 0s linear;
}

.lightbox .single-post {
    /* transition in */
    -webkit-transition: opacity 0.2s ease-in-out;
       -moz-transition: opacity 0.2s ease-in-out;
        -ms-transition: opacity 0.2s ease-in-out;
         -o-transition: opacity 0.2s ease-in-out;
            transition: opacity 0.2s ease-in-out;
}
.lightbox.transition .single-post {
    /* transition out */
    opacity: 0;
    -webkit-transition-duration: 0.1s;
       -moz-transition-duration: 0.1s;
        -ms-transition-duration: 0.1s;
         -o-transition-duration: 0.1s;
            transition-duration: 0.1s;
}

.lightbox .back,
.lightbox .next {
    opacity: 0.25;
    -webkit-transition: opacity 0.2s ease-in-out;
       -moz-transition: opacity 0.2s ease-in-out;
        -ms-transition: opacity 0.2s ease-in-out;
         -o-transition: opacity 0.2s ease-in-out;
            transition: opacity 0.2s ease-in-out;
}
.lightbox .back {
    -webkit-transition-property: opacity, -webkit-transform;
       -moz-transition-property: opacity, -moz-transform;
        -ms-transition-property: opacity, -ms-transform;
         -o-transition-property: opacity, -o-transform;
            transition-property: opacity, transform;
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%);
}
.lightbox .next {
    -webkit-transition-property: opacity, -webkit-transform;
       -moz-transition-property: opacity, -moz-transform;
        -ms-transition-property: opacity, -ms-transform;
         -o-transition-property: opacity, -o-transform;
            transition-property: opacity, transform;
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
         -o-transform: translateX(100%);
            transform: translateX(100%);
}
.lightbox .back:hover,
.lightbox .next:hover,
.lightbox.hover-outside .back,
.lightbox.hover-outside .next {
    opacity: 1;
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
}

.back-to-top,
.lightbox .back,
.lightbox .next,
.lightbox .close {
    position: fixed;

    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    border-radius: 2px;

    overflow: hidden;
    direction: ltr;
    text-indent: -9999px;
    font-size: 0;

    cursor: pointer;
}

.back-to-top {
    bottom: 0;
    right: 0;
    margin: 15px;
}
.lightbox .back {
    top: 0;
    bottom: 0;
    left: 0;
    height: auto;
}
.lightbox .next {
    top: 0;
    bottom: 0;
    right: 0;
    height: auto;
}
.lightbox .close {
    top: 0;
    right: 0;
    margin: 15px;
}

.back-to-top:after,
.lightbox .back:after,
.lightbox .next:after,
.lightbox .close:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0.5;
    -webkit-transition: opacity 0s ease-in-out;
       -moz-transition: opacity 0s ease-in-out;
        -ms-transition: opacity 0s ease-in-out;
         -o-transition: opacity 0s ease-in-out;
            transition: opacity 0s ease-in-out;
}

.back-to-top:after {
    width: 22px;
    height: 22px;
    margin-top: -11px;
    margin-left: -11px;
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
}
.lightbox .back:after,
.lightbox .next:after {
    width: 14px;
    height: 22px;
    margin-top: -11px;
    margin-left: -7px;
}
.lightbox .close:after {
    width: 22px;
    height: 22px;
    margin-top: -11px;
    margin-left: -11px;
}

.back-to-top:active:after,
.lightbox .back:active:after,
.lightbox .next:active:after,
.lightbox .close:active:after {
    margin-top: -10px;
}

.back-to-top:hover:after,
.lightbox .back:hover:after,
.lightbox .next:hover:after,
.lightbox .close:hover:after {
    opacity: 1;
}

.back-to-top:after {
    background-position: -697px -100px;
}
.lightbox .back:after {
    background-position: -700px -100px;
}
.lightbox .next:after {
    background-position: -599px -100px;
}
.lightbox .close:after {
    background-position: -300px -100px;
}

.back-to-top.white:after {
    background-position: -697px 0;
}
.lightbox .back.white:after {
    background-position: -700px 0;
}
.lightbox .next.white:after {
    background-position: -599px 0;
}
.lightbox .close.white:after {
    background-position: -300px 0;
}

.lightbox .back,
.lightbox .next {
    display: none;
}
.lightbox.has-back .back,
.lightbox.has-next .next {
    display: block;
}

.back-to-top {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
       -moz-transition: opacity 0.2s ease-in-out;
        -ms-transition: opacity 0.2s ease-in-out;
         -o-transition: opacity 0.2s ease-in-out;
            transition: opacity 0.2s ease-in-out;
    z-index: 999;
}
.far-down .back-to-top {
    visibility: visible;
    opacity: 1;
}

/* Post wrappers
********************************/

.post-grid {
    padding: 15px;
}
.post-grid:after {
    content: '';
    display: block;
    clear: both;
}

.post-grid.loading {
    opacity: 0;
}

.post {
    position: relative;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.content .loader {
    position: relative;
    float: left;
    width: 100%;
    height: 0;
    opacity: 0;
}
.content.loading-posts .loader {
    height: 60px;
    opacity: 1;
}

.content .loader {
    -webkit-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
       -moz-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
        -ms-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
         -o-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
            transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.content.loading-posts .loader {
    -webkit-transition-duration: 0.1s;
       -moz-transition-duration: 0.1s;
        -ms-transition-duration: 0.1s;
         -o-transition-duration: 0.1s;
            transition-duration: 0.1s;
}

.content .loader .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0.7;
    margin-top: 10px;
}

.post-grid .post {
    float: left;
    width: 310px;
    height: 310px;
    padding: 10px;
    overflow: hidden;
}

.post-grid .post .post-body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    padding-top: 30px; /* spacing from line */
}

.post-grid .post {
    -webkit-transition: opacity 0.2s ease-in-out;
       -moz-transition: opacity 0.2s ease-in-out;
        -ms-transition: opacity 0.2s ease-in-out;
         -o-transition: opacity 0.2s ease-in-out;
            transition: opacity 0.2s ease-in-out;
}
.post-grid .post.loading {
    opacity: 0;
    -webkit-transition-duration: 0s;
       -moz-transition-duration: 0s;
        -ms-transition-duration: 0s;
         -o-transition-duration: 0s;
            transition-duration: 0s;
}

.single-post {
    -webkit-transition: opacity 0.2s ease-in-out;
       -moz-transition: opacity 0.2s ease-in-out;
        -ms-transition: opacity 0.2s ease-in-out;
         -o-transition: opacity 0.2s ease-in-out;
            transition: opacity 0.2s ease-in-out;
}
.single-post.loading {
    opacity: 0;
    -webkit-transition-duration: 0s;
       -moz-transition-duration: 0s;
        -ms-transition-duration: 0s;
         -o-transition-duration: 0s;
            transition-duration: 0s;
}

.post-grid .post:active {
    top: 1px;
}

.post-grid .post.truncate:after {
    content: '';
    display: block;
    position: absolute;
    top: 70%;
    right: 0;
    bottom: 0;
    left: 0;
}

.single-post .post {
    margin: 0 auto;
    width: 640px;
    padding: 0;
}

.lightbox .single-post .post .post-body {
    padding-top: 35px;
}
.lightbox .single-post .post {
    padding-top: 40px;
}

.lightbox .single-post .post.photo,
.lightbox .single-post .post.video {
    padding-top: 0;
}

.post-grid .post.photo.clickable a,
.post.clickable {
    cursor: pointer;
}
.lightbox .post .image,
.lightbox {
    cursor: -webkit-zoom-out;
    cursor: -moz-zoom-out;
}
.lightbox .post .image a,
.lightbox .post .image img,
.lightbox .post {
    cursor: auto
}

.post .title {
    padding: 0 10px;
}
.post .caption {
    padding: 10px 10px 0;
}
.post .caption a {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.single-post .post .title {
    padding: 0;
}
.single-post .post .caption {
    padding: 30px 0 0;
}
.post.first-column {
    clear: both;
}
.post.last-column {
    margin-right: 0;
}

.post .wide-sizer {
    width: 100%;
    height: 100%;
}
.single-post .post .wide-sizer {
    margin: 0 -130px;
    width: auto;
    height: auto;
}

.post-grid .post.inline_photo_thumbnail .post-body,
.post-grid .post.video .caption,
.post-grid .post.audio .caption,
.post-grid .post.photo .caption {
    display: none;
}

.narrow {
    max-width: 640px;
    margin: auto;
}

/* Masonry overrides
********************************/
.post-grid.masonry .post.answer,
.post-grid.masonry .post.quote,
.post-grid.masonry .post.link,
.post-grid.masonry .post.chat,
.post-grid.masonry .post.text {
    height: auto;
    max-height: 620px;
}
.post-grid.masonry .post.photo {
    height: auto;
}

.post-grid.masonry .post .post-body {
    position: relative;
    margin: -14px -10px -10px; /* Escape the .post padding and top line */
    padding-bottom: 20px;
}

.post-grid.masonry .post.photo .image,
.post-grid.masonry .post.photo .image img {
    height: auto;
}

.post-grid.masonry .post.photo .photoset-images,
.post-grid.masonry .post .wide-sizer {
    height: auto;
}
.post-grid.masonry .post.photo .photoset-images .photoset-image-wrapper.image-wrapper-1 {
    position: relative;
}

/* Post types
********************************/
.post.photo .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.post.photo .photoset-image,
.post.photo .photoset-image img,
.post.photo .image,
.post.photo .image img {
    border-radius: 2px;
}

.post.photo .photoset-images {
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    position: relative;
}

.post.photo .photoset-image a,
.post.photo .image a {
    display: block;
    margin: 0 auto;
}
.post.photo .image img {
    display: block;
    width: 100%;
    height: 100%;
}

.single-post .post.photo .caption {
    display: block;
}
.single-post .post.photo .image img {
    min-width: 640px;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.single-post .post.photo .photoset-images .photoset-image-wrapper {
    float: left;
    padding: 5px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.single-post .post.photo .photoset-images .photoset-image-wrapper.first {
    clear: both;
}
.single-post .post.photo .photoset-images .photoset-image-wrapper.last {
    float: right;
}
.single-post .post.photo .photoset-images .photoset-image-wrapper.first.last {
    width: 100%;
    float: left;
}
.single-post .post.photo .photoset-images .photoset-image {
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
}
.single-post .post.photo .photoset-images img {
    min-width: 0;
    width: 100%;
}
.single-post .post.photo .photoset-images.inline img {
    min-width: 100%;
    width: auto;
}
.single-post .post.photo .photoset-images:after {
    content: '';
    display: block;
    clear: both;
}
.single-post .post.photo .photoset-images.inline .photoset-image-wrapper {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.post.link .title a {
    border-bottom: 1px solid transparent;
}

.post.link .title .link-arrow {
    white-space: nowrap;
}
.post.link .title a .link-arrow:after {
    content: '';
    display: inline-block;
    margin: 2px 2px 2px 10px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid transparent;
}

.single-post .post.link .title a:after {
    margin: 2px 2px 2px 10px;
    border-left-width: 12px;
    border-top-width: 8px;
    border-bottom-width: 8px;
}

.post .media-embed {
    width: 100%;
    height: 100%;
}

.post .media-embed embed,
.post .media-embed object,
.post .media-embed iframe {
    width: 100%;
    height: 100%;
}
.post .album-art .button-overlay,
.post .media-embed .button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -29px;
    margin-left: -29px;
    border-radius: 50%;
    border: 4px solid transparent;
}
.post .album-art .button-overlay:after,
.post .media-embed .button-overlay:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin-top: -13px;
    margin-left: -13px;
}
.post .album-art .button-overlay.photoset:after,
.post .media-embed .button-overlay.photoset:after {
    background-position: -3px 3px;
}
.post .album-art .button-overlay.audio:after,
.post .media-embed .button-overlay.audio:after {
    background-position: -99px 0;
}
.post .album-art .button-overlay.video:after,
.post .media-embed .button-overlay.video:after {
    background-position: -194px 2px;
}

.post .album-art .button-overlay.black,
.post .media-embed .button-overlay.black {
    border-color: #ffffff;
    background-color: #000000;
    background-color: rgba(0,0,0, 0.4);
}
.post:hover .album-art .button-overlay.black,
.post:hover .media-embed .button-overlay.black {
    background-color: #000000;
    background-color: rgba(0,0,0, 0.6);
}

.post .album-art .button-overlay.white,
.post .media-embed .button-overlay.white {
    border-color: #000000;
    background-color: #ffffff;
    background-color: rgba(255,255,255, 0.4);
}
.post:hover .album-art .button-overlay.white,
.post:hover .media-embed .button-overlay.white {
    background-color: #ffffff;
    background-color: rgba(255,255,255, 0.6);
}

.post .album-art .button-overlay.white.photoset:after,
.post .media-embed .button-overlay.white.photoset:after {
    background-position: -3px -97px;
}
.post .album-art .button-overlay.white.audio:after,
.post .media-embed .button-overlay.white.audio:after {
    background-position: -99px -100px;
}
.post .album-art .button-overlay.white.video:after,
.post .media-embed .button-overlay.white.video:after {
    background-position: -194px -98px;
}

.post.answer .title {
    line-height: 24px;
    margin-bottom: 10px;
}
.post.answer .question,
.post.answer .answer {
    position: relative;
    padding: 0 0 0 40px;
}
.post.answer .big-letter {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40px;
    text-align: center;
}
.post.answer .asker-avatar {
    display: none;
    vertical-align: top;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    margin-right: 4px;
}
.post.answer .caption {
    padding: 0 10px 10px;
}

.single-post .post.answer .question,
.single-post .post.answer .answer {
    position: relative;
    padding: 4px 0 0 60px;
}
.post.answer .big-letter {
    width: 60px;
}
.single-post .post.answer .asker-avatar {
    display: inline-block;
}
.single-post .post.answer .caption {
    padding: 0 0 35px;
}

.post-grid .post.photo .photoset-images {
    width: 100%;
    height: 100%;
}
.post-grid .post.photo .photoset-images .photoset-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.post-grid .post.photo .photoset-images .image {
    visibility: hidden;
}
.post-grid .post.photo .photoset-images .image-1 {
    visibility: visible;
}
.post-grid .post.photo .photoset-images.hover-cycle .image-1,
.post-grid .post.photo .photoset-images.hover-cycle .image {
    position: relative;
    visibility: visible;
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity 0.2s 0.2s ease-in-out;
       -moz-transition: opacity 0.2s 0.2s ease-in-out;
        -ms-transition: opacity 0.2s 0.2s ease-in-out;
         -o-transition: opacity 0.2s 0.2s ease-in-out;
            transition: opacity 0.2s 0.2s ease-in-out;
}
.post-grid .post.photo .photoset-images.hover-cycle .image.current {
    opacity: 1;
    z-index: 1;
    -webkit-transition-delay: 0s;
       -moz-transition-delay: 0s;
        -ms-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
}

.post-grid .post.photo .photoset-images.has-four .image {
    visibility: visible;
}

.post-grid .post.photo .photoset-images.has-four .photoset-image-wrapper {
    visibility: hidden;
}
.post-grid .post.photo .photoset-images.has-four .image-wrapper-1 {
    visibility: visible;
    right: 50%;
    bottom: 50%;
}
.post-grid .post.photo .photoset-images.has-four .image-wrapper-2 {
    visibility: visible;
    bottom: 50%;
    left: 50%;
}
.post-grid .post.photo .photoset-images.has-four .image-wrapper-3 {
    visibility: visible;
    top: 50%;
    right: 50%;
}
.post-grid .post.photo .photoset-images.has-four .image-wrapper-4 {
    visibility: visible;
    top: 50%;
    left: 50%;
}

.post-grid .post.audio .media-embed {
    overflow: hidden;
    border-radius: 2px;
}
.post-grid .post.audio .media-embed {
    width: 100%;
    height: 100%;
}
.post.audio .media-embed iframe,
.post.audio .media-embed {
    height: auto;
}
.post-grid .post.audio iframe {
    display: none;
}
.post-grid .post.audio iframe.spotify_audio_player {
    display: block;
    margin: -80px -1px -1px -1px;
    width: 292px;
    height: 372px;
}
.post-grid .post.audio:not(.overlay) iframe.spotify_audio_player {
    -webkit-transition: margin-top 0.2s ease-in-out;
       -moz-transition: margin-top 0.2s ease-in-out;
        -ms-transition: margin-top 0.2s ease-in-out;
         -o-transition: margin-top 0.2s ease-in-out;
            transition: margin-top 0.2s ease-in-out;
}
.post-grid .post.audio:not(.overlay):hover iframe.spotify_audio_player {
    margin-top: 0;
}
.post-grid .post.audio iframe.bandcamp_audio_player,
.post-grid .post.audio iframe.soundcloud_audio_player,
.post-grid .post.audio .media-embed .album-art {
    display: none;
}
.post-grid .post.audio .media-embed.external-embed .album-art {
    display: block;
}

.post-grid .post.audio .media-embed.external-embed.placeholder .album-art {
    position: relative;
    background-image: none;
    border-radius: 2px;
}
.post-grid .post.audio .media-embed.external-embed.placeholder .album-art:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 246px;
    height: 246px;
    margin: -123px 0 0 -123px;
    border-radius: 50%;
}
.post-grid .post.audio .media-embed.external-embed.placeholder.bandcamp .album-art:after {
    background-position: 0 -200px;
}
.post-grid .post.audio .media-embed.external-embed.placeholder.soundcloud .album-art:after {
    background-position: -300px -200px;
}

.single-post .post.audio iframe.spotify_audio_player {
    height: 720px;
}
.single-post .post.audio iframe.soundcloud_audio_player {
    height: 166px;
}
.single-post .post.audio iframe.bandcamp_audio_player {
    height: 120px;
}

.post.audio .album-art {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    overflow: hidden;
}
.post.audio .album-art img {
    width: 100%;
    height: 100%;
}
.post.audio .audio-embed {
    display: none;
    width: 100%;
    height: 100%;
}
.single-post .post.audio .album-art {
    display: none;
}
.post.audio .audio-embed .tumblr_audio_player {
    width: 640px;
    height: 320px;
}
.single-post .post.audio .audio-embed {
    display: block;
}

.post.audio .media-embed .album-art,
.post.video .video-thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#222));
    background: -webkit-linear-gradient(top, #000, #222);
    background:    -moz-linear-gradient(top, #000, #222);
    background:     -ms-linear-gradient(top, #000, #222);
    background:      -o-linear-gradient(top, #000, #222);
    background:         linear-gradient(top, #000, #222);
    background-size: cover;
    background-position: center center;
}
.single-post .post.video .media-embed {
    margin: 0 -130px;
    width: 900px;
    height: 675px;
}

.post.answer:before,
.post.quote:before,
.post.link:before,
.post.chat:before,
.post.text:before {
    content: '';
    display: block;
    border-top: 4px solid transparent;
    -webkit-transition: border-color 0.2s ease-in-out;
       -moz-transition: border-color 0.2s ease-in-out;
        -ms-transition: border-color 0.2s ease-in-out;
         -o-transition: border-color 0.2s ease-in-out;
            transition: border-color 0.2s ease-in-out;
}
.post.answer:hover:before,
.post.quote:hover:before,
.post.link:hover:before,
.post.chat:hover:before,
.post.text:hover:before {
    -webkit-transition-duration: 0s;
       -moz-transition-duration: 0s;
        -ms-transition-duration: 0s;
         -o-transition-duration: 0s;
            transition-duration: 0s;
}
.post-grid .post.inline_photo_thumbnail:before {
    display: none;
}

.single-post .post.answer:before,
.single-post .post.quote:before,
.single-post .post.link:before,
.single-post .post.chat:before,
.single-post .post.text:before {
    border-top-width: 0;
}
.lightbox .single-post .post.answer:before,
.lightbox .single-post .post.quote:before,
.lightbox .single-post .post.link:before,
.lightbox .single-post .post.chat:before,
.lightbox .single-post .post.text:before {
    border-top-width: 4px;
}

.post-grid .post.video:after,
.post-grid .post.overlay:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer; 
}

/* Text sizing
********************************/

body {
    font-size: 18px;
    line-height: 28px;
}

h1, h2, h3 {
    font-weight: bold;
    font-size: 30px;
}


.blog-title h1 {
    font-weight: normal;
    font-size: 52px;
    line-height: 54px;
}

#header.none-navigation .blog-title h1,
#header.center-navigation .blog-title h1 {
    font-size: 64px;
    line-height: 64px;
}

.blog-description {
    font-size: 16px;
    line-height: 24px;
    margin: 5px auto 0;
}

.links {
    line-height: 28px;
    font-size: 14px;
}

.big-letter {
    font-size: 22px;
}
.post.answer .title,
.post.answer .answer .caption {
    font-size: 15px;
}
.post.answer .question .caption {
    font-size: 18px;
}

.single-post .big-letter {
    font-size: 30px;
}
.single-post .post.answer .answer .caption {
    font-size: 18px;
}
.single-post .post.answer .question .caption {
    font-size: 22px;
}

.post-grid .title h1 {
    font-size: 24px;
    line-height: 30px;
}

.quote-text,
.post-grid .quote-short {
    font-size: 24px;
    line-height: 32px;
}
.post-grid .quote-medium {
    font-size: 24px;
    line-height: 32px;
}
.post-grid .quote-long {
    font-size: 24px;
    line-height: 32px;
}

.single-post .quote-short {
    font-size: 36px;
    line-height: 44px;
}
.single-post .quote-medium {
    font-size: 36px;
    line-height: 44px;
}
.single-post .quote-long {
    font-size: 24px;
    line-height: 32px;
}

.post-grid .chat-lines .line,
.post-grid .chat-lines,
.post-grid .caption p,
.post-grid .caption {
    font-size: 14px;
    line-height: 24px;
}

.post-grid .caption .answer_form_container {
    display: none;
}
.post-grid .post.replies-enabled .caption p,
.post-grid .post.replies-enabled .caption {
    font-size: 20px;
    line-height: 30px;
}

.single-post .title h1 {
    font-size: 42px;
    line-height: 48px;
}

.single-post .caption p,
.single-post .caption {
    font-size: 18px;
    line-height: 28px;
}

.single-post .quote .caption {
    font-size: 20px;
    line-height: 30px;
}

.metadata {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 28px;
}

.pagination {
    font-size: 24px;
}

.copyright {
    font-size: 14px;
}


/* Post body styles
********************************/

.caption h1,
.caption h2,
.caption h3,
.caption ul,
.caption ol,
.caption pre,
.caption blockquote,
.caption p {
    margin-bottom: 10px;
}

.caption p.left {
    text-align: left;
}
.caption p.center {
    text-align: center;
}
.caption p.right {
    text-align: right;
}

.caption h2 {
    font-size: 24px;
}

.caption blockquote {
    padding-left: 15px;
    border-left: 3px solid transparent;
}

.caption pre {
    font-size: 15px;
    line-height: 24px;
    white-space: pre-wrap;
    word-wrap: break-word;
    border-radius: 2px;
    padding: 10px 15px 10px 15px;
}

.caption ul,
.caption ol {
    margin-top: 0;
    padding: 0 20px;
}

.caption img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 2px;
}

.quote-text {
    margin-bottom: 20px;
}

.quote .caption {
    padding: 0;
}
.quote .caption,
.quote-text {
    padding-left: 10px;
    padding-right: 10px;
}

.single-post .quote .caption  {
    padding: 0;
}
.single-post .quote-text {
    padding: 0;
}

.chat-lines {
    list-style-type: none;
    margin: 0;
    padding: 10px;
}
.single-post .chat-lines {
    padding: 20px 0 10px;
}

.chat-lines .line {
    padding-top: 10px;
}
.chat-lines .line:first-child {
    padding-top: 0;
}

.chat-lines .line span.odd,
.chat-lines .line span.even {
    font-weight: bold;
}

.read-more-text {
    font-weight: bold;
}


.more a:active {
    top: 0px;
}

.iphone-video object {
    display: block;
    margin: 0px auto 20px;
}

/* Metadata
********************************/

.metadata {
    margin-top: 28px;
}

.post-grid .metadata {
    display: none;
}

.single-post .metadata {
    display: block;
}

.date,
.tags,
.source,
.notes-count {
    display: block;
    float: left;
    margin-right: 15px;
}

.tags a {
    margin-right: 10px;
}
.tags a:last-child {
    margin-right: 0;
}


.reblog-like-container {
    display: block;
    float: right;
    -webkit-transition: opacity 0.2s ease-in-out;
       -moz-transition: opacity 0.2s ease-in-out;
        -ms-transition: opacity 0.2s ease-in-out;
         -o-transition: opacity 0.2s ease-in-out;
            transition: opacity 0.2s ease-in-out;
}
.reblog-like-container.loading {
    opacity: 0;
}

.reblog-like-container .button {
    width: 20px;
    height: 20px;
    padding: 4px;
    float: left;
    margin-left: 10px;
}
.reblog-like-container .button .reblog_button,
.reblog-like-container .button .like_button {
    opacity: 0.27;
    filter: alpha(opacity=27);
    -webkit-transition: opacity 0s ease-in-out;
       -moz-transition: opacity 0s ease-in-out;
        -ms-transition: opacity 0s ease-in-out;
         -o-transition: opacity 0s ease-in-out;
            transition: opacity 0s ease-in-out;
}
.reblog-like-container .button:hover .reblog_button,
.reblog-like-container .button:hover .like_button {
    opacity: 0.54;
    filter: alpha(opacity=54);
}
.reblog-like-container .button .like_button.liked {
    opacity: 0.85;
    filter: alpha(opacity=85);
}
.reblog-like-container .button:hover .like_button.liked {
    opacity: 1;
    filter: alpha(opacity=100);
}

.metadata:after {
    content: '';
    display: block;
    clear: both;
}


/* Footer
********************************/

.footer-content a {
    text-decoration: none;
    border-bottom: none;
}

.pagination.back {
    margin-right: 15px;
}
.pagination.back:last-child {
    margin-right: 0;
}

.pagination.back:before,
.pagination.next:after {
    content: '';
    display: inline-block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.pagination.back:before {
    margin: 2px 10px 2px 2px;
    border-right: 7px solid transparent;
}

.pagination.next:after {
    margin: 2px 2px 2px 10px;
    border-left: 7px solid transparent;
}

.footer-content:before {
    content: '';
    display: block;
    margin: -35px 0 35px;
    border-top: 1px solid transparent;
}

.footer-content .pagination-container,
.footer-content .links {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.footer-content .pagination-container {
    padding-top: 14px;
    padding-bottom: 14px;
    margin-bottom: 8px;
}

.hide-copyright .footer-content .pagination-container {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 8px;
}

.pagination-container.endless-scrolling {
    display: none;
}

.copyright {
    text-align: center;
}

.promo {
    clear: both;
    text-align: center;
    margin: 0 auto;
    padding: 20px 0 0;
}

.hide-copyright .copyright {
    display: none;
}


/* Footer Right Navigation
********************************/


#footer.right-navigation .pagination-container,
#footer.right-navigation .copyright,
#footer.right-navigation .links {
    width: 50%;
}

#footer.right-navigation .pagination-container {
    float: left;
    text-align: left;
    margin-bottom: 0;
}

#footer.right-navigation .copyright,
#footer.right-navigation .links {
    clear: right;
    float: right;
    text-align: right;
}

/* Footer Left Navigation
********************************/

#footer.left-navigation .pagination-container,
#footer.left-navigation .copyright,
#footer.left-navigation .links {
    width: 50%;
}

#footer.left-navigation .pagination-container {
    float: right;
    text-align: right;
    margin-bottom: 0;
}

#footer.left-navigation .copyright,
#footer.left-navigation .links {
    clear: left;
    float: left;
    text-align: left;
}

/* Footer Center Navigation
********************************/

#footer.center-navigation .pagination-container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Footer No Navigation
********************************/

#footer.none-navigation .links {
    display: none;
}

#footer.none-navigation .pagination-container {
    padding-top: 0;
    padding-bottom: 0;
}


/* Notes and comments
********************************/

.notes {
    display: none;
    clear: both;
    list-style: none;
    margin: 0;
    padding: 80px 0 0;
    text-transform: none;
}

.notes .note {
    padding: 15px 0;
    border-top: 1px solid transparent;
}

.notes .avatar_frame {
    width: 16px;
    height: 16px;
    margin-right: 15px;
}
.notes .avatar {
    display: block;
    min-width: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
}
.notes .action {
    line-height: 16px;
}

.notes .avatar_frame,
.notes .action {
    float: left;
    display: block;
}

.notes .clear {
    clear: both;
}

.notes .note blockquote {
    padding: 0 0 0 32px;
}
.notes .note blockquote a {
    text-decoration: none;
}

.single-post .notes {
    display: block;
}


/* Responsive
********************************/

@media (max-width: 959px) {
    .page-min-width {
        min-width: 640px;
    }

    .page-width {
        position: relative;
        margin: 0 auto;
        width: 640px;
    }

    .header-content.page-width {
        width: 620px;
        padding: 0 10px;
    }
    #header.center-navigation .header-content.page-width {
        width: 600px;
        padding: 0 20px;
    }
    .post-grid.page-width {
        width: 620px;
        padding: 35px 10px;
    }

    .single-post.page-width {
        width: 600px;
        padding: 40px 20px;
    }

    .single-post .post {
        margin: 0 -20px;
    }

    .single-post .post .wide-sizer {
        margin: 0 -10px;
    }

    .footer-content.page-width {
        width: 600px;
        padding: 35px 20px 40px;
    }

    .lightbox .single-post {
        padding-top: 80px;
    }

    .post.audio .audio-embed .tumblr_audio_player {
        width: 100%;
        height: 169px;
    }

    .single-post .post.video .media-embed {
        margin: 0;
        width: 100%;
        height: 360px;
    }
}

/* Browser Breakpoints
********************************/

@media (max-width: 759px) {
    .lightbox.has-back .back,
    .lightbox.has-next .next {
        display: none;
    }
}

@media (max-width: 659px) {
    .single-post.page-width {
        width: auto;
        padding: 40px 20px;
    }

    .lightbox .single-post {
        padding-top: 80px;
    }

    .single-post .post {
        margin: 0;
        width: auto;
    }
    .single-post .post .wide-sizer {
        margin: 0 -20px;
    }
}

@media (max-width: 639px) {
    html {
        position: relative !important;
        top: 0 !important;
    }
    #tumblr_controls {
        display: none !important;
    }

    .page-min-width {
        min-width: 320px;
    }

    .page-width {
        position: relative;
        margin: 0 auto;
        width: 320px;
    }

    .header-content.page-width {
        width: 310px;
        padding: 0 5px;
    }
    
    
     #header.right-navigation .blog-title,
     #header.left-navigation .blog-title,
     #header .blog-title {
        float: none;
        text-align: center;
    }

    #header.center-navigation .header-content.page-width {
        width: 300px;
        padding: 0 10px;
    }

    #header.center-navigation .links,
    #header.right-navigation .links,
    #header.left-navigation .links,
    #header .links {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 0;
        padding: 15px 0px 15px;
        width: 100%;
        border-bottom: 1px solid transparent;
    }

    #header .links ul {
        text-align: center;
    }

    #header .links {
        float: none;
        text-align: center;
    }

    #header .blog-title {
        float: none;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        padding: 40px 0px 45px;  
    }

    #header.left-navigation .blog-title,
    #header.right-navigation .blog-title {
        width: auto;
    }
    #header.left-navigation .links,
    #header.right-navigation .links {
        width: auto;
    }

    #header.right-navigation .blog-title h1,
    #header.left-navigation .blog-title h1,
    #header.center-navigation .blog-title h1,
    #header.none-navigation .blog-title h1,
    #header .blog-title h1 {
        font-size: 32px;
        line-height: 36px;
        text-align: center;
    }

    #header .blog-description {
        margin: 4px auto 0;
    }

    .post-grid.page-width {
        width: 310px;
        padding: 35px 5px;
    }

    .single-post.page-width {
        width: auto;
        padding: 40px 20px;
    }

    .lightbox .single-post {
        padding-top: 80px;
    }

    .single-post .post {
        margin: 0;
        width: auto;
    }
    .single-post .post .wide-sizer {
        margin: 0 -20px;
    }
    .single-post .post.photo .image img {
        min-width: 100%;
    }

    .footer-content.page-width {
        width: 300px;
        padding: 35px 10px 40px;
    }

    #footer.right-navigation .pagination-container,
    #footer.left-navigation .pagination-container,
    #footer.center-navigation .pagination-container,
    #footer.none-navigation .pagination-container,
    #footer .pagination-container {
        float: none;
        text-align: center;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 8px;
    }

    #footer.right-navigation .copyright,
    #footer.left-navigation .copyright,
    #footer.center-navigation .copyright,
    #footer.none-navigation .copyright,
    #footer .copyright,
    #footer.right-navigation .links,
    #footer.left-navigation .links,
    #footer.center-navigation .links,
    #footer.none-navigation .links,
    #footer .links {
        width: auto;
        float: none;
        padding-top: 0;
        padding-bottom: 0;
        text-align: center;
    }

}

@media (max-width: 479px) {
    .post.audio .audio-embed .tumblr_audio_player {
        width: 100%;
        height: 85px;
    }
}

/* 1x Sprites */

.spectator-icon,
.back-to-top:after,
.lightbox .back:after,
.lightbox .next:after,
.lightbox .close:after,
.post-grid .post.audio .media-embed.external-embed.placeholder .album-art:after,
.post .album-art .button-overlay:after,
.post .media-embed .button-overlay:after {
    background-image: url('../PZBmteeup/spectator.png');
    background-repeat: no-repeat;
}

/* 2x Sprites */

@media only screen and (-webkit-min-device-pixel-ratio: 2 ), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1 ), only screen and ( min-device-pixel-ratio: 2 ), only screen and ( min-resolution: 192dpi ), only screen and ( min-resolution: 2dppx ) {
    .spectator-icon,
    .back-to-top:after,
    .lightbox .back:after,
    .lightbox .next:after,
    .lightbox .close:after,
    .post-grid .post.audio .media-embed.external-embed.placeholder .album-art:after,
    .post .album-art .button-overlay:after,
    .post .media-embed .button-overlay:after {
        background-image: url('../vu3mteev8/spectator_2x.png');
        background-size: 800px 500px;
    }
}