/*! normalize.css v1.1.1 | MIT License | git.io/normalize */
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{background:#fff;color:#000;font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}

/* ===================================================
   Base styles
   =================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

body {
    font-size: 1em;
    line-height: 1.4;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

img {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

/* ===================================================
   Main Styles
   =================================================== */

html {
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Lato', sans-serif;
}

/* Header */
#main-header {
    border-bottom: solid 1px #d7d7d7;
    height: 70px;
    opacity: 0.99;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #main-header .wrapper {
        margin: 0 auto 0;
        width: 960px;
    }

    .logo {
        color: #626262;
        font-size: 24px;
        font-weight: 300;
        float: left;
        line-height: 70px;
        position: relative;
        text-decoration: none;
        transition: opacity 0.1s ease;
    }

    /* Flair definitions (colored bars below logo) */
    .flair-1, .flair-2, .flair-3 {
        height: 2px;
        position: absolute;
        left: 0px;
        transition: height 0.1s ease,
                    bottom 0.1s ease;
        width: 100%;
    }

        .logo:hover {
            opacity: 0.8;
        }

        .logo:hover .flair-1, .logo:hover .flair-2, .logo:hover .flair-3 {
            height: 3px;
        }

        .flair-1 {
            bottom: 4px;
        }

            .logo:hover .flair-1 {
                bottom: 6px;
            }

        .flair-2 {
            bottom: 2px;
        }

            .logo:hover .flair-2 {
                bottom: 3px;
            }

        .flair-3 {
            bottom: 0;
        }

    .description {
        color: #cccccc;
        display: inline;
        font-size: 14px;
        font-weight: 300;
        padding: 0 20px;
    }

    #main-nav {
        float: left;
        margin: 25px 0;
    }

        #main-nav a, #sub-nav-menu a {
            color: #9c9c9c;
            font-weight: 300;
            text-decoration: none;
            transition: color 0.1s ease,
                        opacity 0.1s ease;
        }

        #main-nav a {
            margin-left: 40px;
        }

        #main-nav a:hover, #sub-nav-menu a:hover {
            color: #7c7c7c;
        }

#sub-nav {
    border-bottom: 1px solid #e1e1e1;
    background-color: #fbfbfb;
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.01);
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.01);
    box-shadow: 0 1px 2px rgba(0,0,0,.01);
    height: 110px;
}

    #sub-nav .wrapper {
        margin: 0 auto 0;
        padding-top: 70px;
        width: 960px;
    }

    #sub-nav-menu {
        float: left;
        padding: 8px 0 0 0;
    }

        #sub-nav-menu a {
            /* styling is shared with #main-nav a */
            margin-right: 25px;
        }

    .random {
        opacity: 0.8;
    }

        .random:hover {
            opacity: 1;
        }

    .archive-link {
        text-transform: lowercase;
    }

#search {
    float: right;
    margin: 4px 0 0 0;
}

    #search-input {
        background: none;
        border: none;
        border-bottom: solid 1px #ececec;
        box-shadow: none;
        color: #bcbcbc;
        font-size: 14px;
        font-weight: 300;
        outline: none;
        padding: 2px 5px;
        width: 160px;
        transition: width 0.1s ease;
    }

        #search-input:focus {
            border-bottom-color: #dcdcdc;
            color: #9c9c9c;
            width: 180px;
        }

    #search-submit {
        display: none;
        visibility: hidden;
    }

    #search-button {
        background: url(http://static.tumblr.com/fdzsslf/C4Xmo5tfy/search.png) no-repeat;
        border: none;
        color: #9c9c9c;
        display: inline-block;
        font-size: 14px;
        height: 16px;
        margin-left: 10px;
        position: relative;
        outline: none;
        top: 3px;
        width: 16px;
    }

#banner {
    margin: 0 auto;
    padding: 15px 0;
    width: 960px;
}

    .banner-tag, .search-tag {
        background-color: #fff;
        border: 1px solid #ddd;
        -moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
        -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
        box-shadow: 0 1px 2px rgba(0,0,0,.05);
        color: #acacac;
        display: inline-block;
        font-size: 14px;
        margin-top: 30px;
        padding: 7px 10px;
        position: relative;
    }

        .banner-tag:after {
            background: url(http://static.tumblr.com/fdzsslf/kc6mo48jc/tag-end.png) no-repeat;
            content: '';
            height: 36px;
            position: absolute;
            right: -20px;
            top: -1px;
            width: 29px;
        }

        .banner-tag span, .search-tag span {
            font-weight: 700;
        }

        .banner-tag .tag, .search-tag .search_query {
            color: #acacac;
        }

    .return {
        color: #dcdcdc;
        font-size: 12px;
        margin-left: 30px;
        text-decoration: none;
        transition: color 0.1s ease;
    }

        .return:hover {
            color: #9c9c9c;
        }

        .search-return {
            margin-left: 15px;
        }

/* Content */
#content {
    margin: 30px auto;
    width: 960px;
}

/* General Post Styling */

.divider {
    background: url(http://static.tumblr.com/fdzsslf/yoXmo3zs2/divider.png) no-repeat;
    height: 5px;
    margin: 60px 0 50px 0;
    width: 960px;
}


.meta {
    font-size: 14px;
}

.time {
    color: #7c7c7c;
    float: left;
    text-decoration: none;
    transition: color 0.1s ease;
}

    .time:hover {
        color: #5c5c5c;
    }

.like_button, .reblog_button {
    float: right;
    margin-left: 15px;
}

    .like_button iframe, .reblog_button iframe {
        height: 16px !important;
        width: 16px !important;
    }

.reblog {
    color: #bcbcbc;
    display: block;
    font-size: 14px;
    margin-top: 20px;
}

    .reblog img {
        margin: 0 10px 0 0;
        position: relative;
        top: -1px;
    }

    .reblog a {
        color: #9c9c9c;
        text-decoration: none;
        transition: color 0.1s ease;
    }

        .reblog a:hover {
            color: #7c7c7c;
        }

/* Normal Posts (Text, quote, links, chat, audio, answer) */

.post aside {
    float: left;
    padding-right: 45px;
    width: 215px;
}

    aside .title {
        color: #404040;
        font-size: 30px;
        font-weight: 300;
        margin: 0;
        position: relative;
        top: -5px;
    }

    aside .meta {
        margin: 10px 0 20px 0;
    }

    aside .tags {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        aside .tags li {
            float: left;
            margin-right: 15px;
        }

        aside .tags li a {
            border: 1px solid #ebebeb;
            -moz-border-radius: 4px;
            -webkit-border-radius: 4px;
            border-radius: 4px;
            color: #bcbcbc;
            font-size: 12px;
            padding: 2px 6px;
            text-decoration: none;
            transition: color 0.1s ease,
                        border 0.1s ease;
        }

            aside .tags li a:hover {
                border: 1px solid #dbdbdb;
                color: #acacac;
            }

.post .content-wrapper {
    color: #6b6b6b;
    font-size: 16px;
    float: right;
    line-height: 26px;
    width: 700px;
}

    .post .content-wrapper h1:first-child,
    .post .content-wrapper h2:first-child,
    .post .content-wrapper h3:first-child,
    .post .content-wrapper h4:first-child,
    .post .content-wrapper h5:first-child,
    .post .content-wrapper h6:first-child{
        margin-top: 0;
    }

    .post .content-wrapper h1,
    .post .content-wrapper h2,
    .post .content-wrapper h3,
    .post .content-wrapper h4,
    .post .content-wrapper h5,
    .post .content-wrapper h6{
        font-weight: 300;
        line-height: 1.53em;
    }

    .post .title a {
        color: #6b6b6b;
        text-decoration: none;
        transition: color 0.1s ease;
    }

        .post .title a:hover {
            color: #4b4b4b;
        }

    .post p a {
        color: #4fb2e1;
        transition: color 0.1s ease;
    }

        .post p a:hover {
            color: #259fd8;
        }

    .post .content-wrapper p:first-child {
        margin-top: 0;
    }

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

    .prettyprint {
        border: none !important;
    }

/* Frame Posts (Photo, panorama, photoset, video) */

.photo, .photoset, .video {
    background-color: #ffffff;
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1);
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.photo .meta, .photoset .meta, .video .meta {
    margin: 0;
    padding: 15px;
}

.photo .reblog, .video .reblog {
    display: inline;
    margin-left: 15px;
    opacity: 0.7;
    transition: opacity 0.1s ease;
}

    .photo .reblog:hover, .video .reblog:hover {
        opacity: 1;
    }

    .photo .reblog img, .video .reblog img {
        margin: 0 2px;
        width: auto;
    }

    .photo .reblog a, .video .reblog a {
        color: #bcbcbc;
    }

.photo p, .photoset p, .video p {
    color: #3c3c3c;
    margin: 20px 15px 0;
}

/* POST TYPE: Text */

/* POST TYPE: Photo */
.photo img {
    width: 100%;
}

.photo figure {
    position: relative;
}

.photo .src {
    background: url(http://static.tumblr.com/fdzsslf/khGmo3zr8/src.png) center no-repeat rgba(0,0,0,0.3);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    bottom: 15px;
    color: #ffffff;
    font-size: 12px;
    height: 14px;
    left: 15px;
    padding: 3px;
    position: absolute;
    text-decoration: none;
    width: 14px;
    transition: background 0.1s ease;
}

    .photo .src:hover {
        background-color: rgba(0,0,0,0.4);
    }

.photo .tags {
    bottom: 15px;
    list-style: none;
    margin: 0;
    position: absolute;
    right: 0px;
}

    .photo .tags li {
        float: right;
        margin-right: 15px;
        padding: 0;
    }

    .photo .tags li a {
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,0.3);
        border: none;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: #ffffff;
        font-size: 12px;
        margin: 0;
        padding: 3px 5px;
        text-decoration: none;
        transition: background 0.1s ease;
    }

    .photo .tags li a:hover {
        background-color: rgba(0,0,0,0.4);
        border: none;
        color: #ffffff;
    }

.photo hr {
    border-color: #ececec;
    margin: 15px 0 0 0;
}

.exif {
    color: #7c7c7c;
    display: inline;
    font-size: 18px;
    font-weight: 300;
    float: left;
    margin: 15px 15px 0;
}

.exif-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .exif-items li {
        float: left;
        margin-right: 15px;
        position: relative;
        top: 15px;
    }

        .exif-items span {
            color: #acacac;
            font-size: 12px;
            font-weight: 700;
            margin-right: 5px;
            text-transform: uppercase;
        }

/* POST TYPE: Link */
.main-link a {
    background: url(http://static.tumblr.com/fdzsslf/8Y8mo3zpc/link.png) left center no-repeat;
    color: #6b6b6b;
    font-size: 30px;
    font-weight: 300;
    line-height: 46px;
    padding-left: 40px;
    position: relative;
    text-decoration: none;
    top: -18px;
    transition: color 0.1s ease;
}

    .main-link a:hover {
        color: #4b4b4b;
    }

/* POST TYPE: Quote */
.quote .content blockquote {
    font-size: 30px;
    font-style: italic;
    font-weight: 300;
    margin: 0;
    position: relative;
    line-height: 38px
}

    .quote .content blockquote strong {
        font-weight: 500;
    }

    .quote .content blockquote p:before {
        color: #acacac;
        content: '\201C';
        font-size: 40px;
        position: absolute;
        left: -20px;
    }

    .quote .content blockquote p:after {
        color: #acacac;
        content: '\201D';
        font-size: 40px;
        position: absolute;
    }

.quote .citation {
    color: #acacac;
    font-weight: 300;
    text-align: right;
}

    .quote .citation:before {
        content: '\2014';
        margin-right: 5px;
    }

/* POST TYPE: Audio */
.audio p {
    color: #acacac;
    font-weight: 300;
}

    .audio p a {
        font-weight: 300;
    }

/* POST TYPE: Video */
.video iframe {
    width: 100%;
}

/* POST TYPE: Chat */
.chat ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .chat li {
        position: relative
    }

    .chat ul li span {/* Speaker Label */
        color: #bcbcbc;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
    }

/* Disqus Comments Styling */

#disqus_thread {
    margin: 0 auto;
    width: 660px;
}

/* Permalink Styling */
#permalink {
    color: #656565;
    margin: 0 auto;
    width: 960px;
}

    .frame {
        background-color: #ffffff;
        -moz-box-shadow: 0 1px 2px rgba(0,0,0,.1);
        -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1);
        box-shadow: 0 1px 2px rgba(0,0,0,.1);
        margin: 0 auto;
        padding: 20px 15px;
        width: 660px;
    }

        .frame h3 {
            color: #7c7c7c;
            font-size: 18px;
            font-weight: 300;
            margin: 0 0 10px 0;
            text-transform: uppercase;
        }

        .frame ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

            .frame ul span {
                color: #acacac;
                font-size: 12px;
                font-weight: 700;
                margin-right: 10px;
                text-transform: uppercase;
            }

        .frame a {
            color: #7c7c7c;
            text-decoration: none;
            transition: color 0.1s ease;
        }

            .frame a:hover {
                color: #5c5c5c;
            }

/* Pagination */
#pagination {
    text-align: center;
}

#pagination a, #pagination > span {
    color: #bcbcbc;
    font-size: 16px;
    margin: 0 5px 0;
    padding: 0 7px 15px 10px;
    position: relative;
    text-decoration: none;
    transition: color 0.1s ease;
}

    #pagination .older, #pagination .newer {
        font-size: 14px;
    }

    #pagination a:hover {
        color: #7c7c7c;
    }

    #pagination .active {
        color: #7c7c7c;
    }

       #pagination .active .flair-1, #pagination .active .flair-2, #pagination .active .flair-3{
            height: 3px;
        }

        #pagination .active .flair-1 {
            bottom: 6px;
        }

        #pagination .active .flair-2 {
            bottom: 3px;
        }


/* Footer */
#main-footer {
    border-top: solid 1px #e1e1e1;
    color: #dcdcdc;
    margin: 60px 0 0 0;
    padding: 20px 0 40px 0;
    width: 100%;
}

    #main-footer .wrapper {
        margin: 0 auto;
        width: 960px;
    }

    .attribution {
        font-size: 12px;
    }

    #main-footer a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.1s ease;
    }

        #main-footer a:hover {
            color: #9c9c9c;
        }

/* Meta-bottom */
#meta-bottom {
    color: #7c7c7c;
    margin: 20px auto 0;
    width: 960px;
}

    #meta-bottom .divider {
        margin: 30px 0;
    }

    .meta-box {
        float: left;
        margin: 0 20px 0 20px;
        width: 280px;
    }

        .meta-box h3 {
            color: #5c5c5c;
            font-size: 14px;
            margin: 0;
        }

            #main-footer .meta-box h3 a {
                color: #5c5c5c;
            }

        .meta-box p {
            font-size: 14px;
            margin: 5px 0;
        }

        #about h3, #about p {/* Make space for avatar */
            padding-left: 75px;
        }

    #avatar {
        float: left;
        margin-top: 5px;
        width: 48px;
    }

    #tweets a {
        color: #7c7c7c;
        font-size: 14px;
    }

        #tweets a .content {
            margin: 5px 0;
        }

/* ===================================================
   Media Queries
   =================================================== */

/* between phones and desktops at 1000px (1000px to maintain 20px padding) */
@media only screen and (min-width: 768px) and (max-width: 1000px) {
    /* Header */
    #main-header .wrapper {
        padding: 0 20px;
        width: auto;
    }

    #sub-nav .wrapper {
        padding: 70px 20px;
        width: auto;
    }

    #banner {
        padding: 15px 20px;
        width: auto;
    }

    /* Content */
    #content {
        margin: 30px 20px;
        width: auto;
    }

    aside {
        margin-right: -260px;
        position: relative;
    }

    .post .content-wrapper {
        overflow: hidden;
        width: 100%;
    }

        .content-wrapper .content {
            margin-left: 260px;
            width: auto;
        }

    .divider {
        background: #ececec;
        height: 1px;
        margin: 60px auto 50px;
        width: 100%;
    }

    /* Permalink */
    #permalink {
        padding: 0 20px;
        width: auto;
    }

    /* Main Footer */
    #main-footer .wrapper {
        width: auto;
    }

        #main-footer .divider {
            margin: 0 0 30px 0;
        }

        #main-footer a {
            margin: 0 20px;
        }

    #meta-bottom {
        width: auto;
    }

        .meta-box {
            float: none;
            margin: 0 20px 40px;
            width: auto;
        }
}

/* phones */
@media only screen and (max-width: 767px) {
    /* Header */
    #main-header {
        height: auto;
        position: relative;
    }

    #main-header .wrapper {
        text-align: center;
        width: auto;
    }

        .logo {
            display: inline-block;
            float: none;
        }

        #main-nav {
            float: none;
            margin: 10px 0 15px 0;
        }

            #main-nav a {
                margin: 0 10px;
            }

    #sub-nav {
        height: auto;
        padding-bottom: 8px;
    }

        #sub-nav .wrapper {
            padding: 0 20px;
            width: auto;
        }

    #sub-nav-menu {
        display: block;
        float: none;
        text-align: center;
    }

        #sub-nav-menu a {
            margin-left: 12px;
            margin-right: 12px;
        }

    #search {
        display: block;
        float: none;
        text-align: center;
    }

    #banner {
        padding: 15px 20px;
        width: auto;
    }

    /* Content */
    #content {
        margin: 30px 20px 0;
        width: auto;
    }

    .post aside {
        float: none;
        padding: 0;
        width: auto;
    }

    aside .tags {
        float: left;
    }

    aside .reblog {
        float: right;
        margin: 0;
    }

    .post .content-wrapper {
        margin: 30px 0 0 0;
        float: none;
        width: auto;
    }

    .photo .time, .video .time {
        float: none;
    }

    .photo .reblog, .video reblog {
        display: block !important;
        margin-left: 0 !important;
        margin-top: 15px;
        padding-bottom: 5px;
    }

    .photo .like_button, .photo .reblog_button, .video .like_button, .video .reblog_button {
        float: left;
        margin: 15px 15px 0 0;
    }

    .audio .content {
        text-align: center;
    }

    .divider, #meta-bottom .divider{
        background: #ececec;
        height: 1px;
        margin: 60px auto 50px;
        width: 100%;
    }

    /* Disqus Comments Styling */

    #disqus_thread {
        margin: 0;
        width: auto;
    }

    /* Permalink */
     #permalink {
         margin-top: 20px;
         padding: 0 20px;
         width: auto;
     }

        #permalink .frame {
            width: auto;
        }

     /* Footer */
     #main-footer .wrapper {
        width: 100%;
     }

        #main-footer .divider {
            margin: 0 0 30px 0;
        }

        #main-footer a {
            margin: 0 20px 0 20px;
        }

     #meta-bottom {
        width: auto;
     }

        .meta-box {
            float: none;
            margin-bottom: 40px;
            width: auto;
        }
}

/* ===================================================
   Helper classes
   =================================================== */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* ===================================================
   PXU Photoset Extended Styles
   =================================================== */

.clearit:before, .clearit:after { content: ""; display: table; }
.clearit:after { clear: both; }
.clearit { *zoom: 1; }

/* Photoset */

.photo-slideshow .row {
  clear: both;
  width: 100%;
}

    .photo-slideshow .row:last-child {
        margin-bottom: 0 !important;
    }

.photo-slideshow .pxu-photo {
  display: block;
  float: left;
  margin-bottom: 0;
  width: 100%;
  overflow: hidden;
}

.photo-slideshow .pxu-photo img {
  width: 100%;
  height: auto;
}

.photo-slideshow .pxu-photo:first-child img {
  margin-left: 0;
}

.photo-slideshow .count-1 {
  width: 100%;
}

.photo-slideshow .count-2 {
  width: 50%;
}

.photo-slideshow .count-3 {
  width: 33.33%;
}

.photo-slideshow .count-4 {
  width: 25%;
}

.photo-slideshow .count-5 {
  width: 20%;
}

.photo-slideshow .info {
  display: none;
}

/* Icons for EXIF Data and Zoom */

.photo-data {
  position: relative;
  float: left;
}

.icons {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 66px;
  text-indent: -9999px;
  z-index: 999;
  visibility: hidden;
}

.icons > span, .icons .tumblr-box span {
  display: block;
  margin-bottom: 2px;
  cursor: pointer;
}

.zoom {
    background: url(http://static.tumblr.com/fdzsslf/7Chmo5z3k/zoom.png) center no-repeat rgba(0,0,0,0.3);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #ffffff;
    font-size: 12px;
    height: 14px;
    padding: 3px;
    text-decoration: none;
    width: 14px;
    transition: background 0.1s ease;
}

    .zoom:hover {
        background-color: rgba(0,0,0,0.4);
    }