html.modal-open body, body.widget-open {
    overflow: hidden;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    width:100%;
    height:100%;
}
html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

iframe, img, embed, object, video {
    max-width: 100%;
}
img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
}

a:focus{outline:none}
a {
    outline:0;
    transition:color 0.15s ease;
    text-decoration:none;
}
a:hover {
    outline:0;
    transition:color 0.15s ease;
    text-decoration:none;
}

a {
    color:#a1a1a1;
}
a:hover {
    color:#494949;
}


li {
    transition:all 0.15s cubic-bezier(0.35, 0, 0.25, 1);
}
select:focus {
  outline: none;
}
input {
    background-color: transparent;
    -webkit-appearance: none;
    transition: all 0.03s 0.075s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.button {
    padding: 7px 12px;
    border:1px solid #ffffff;
    background:transparent;
    font-size:10px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:all 0.2s ease-in-out;
    cursor:pointer;
}

.button:hover {
    background:#494949;
    color:#ffffff;
    border:1px solid #494949;
    transition:all 0.2s ease-in-out;
}
.page-overlay {
    position: fixed;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.page {
    position: relative;
    opacity: 0;
}
.page.single {
    margin:0px 0 0 0;
}
.active {
    opacity:1;
    visibility:visible;
}

h1, h2, h3, h4, h5, h6, p, dl, ol, ul, blockquote, table, figure {
    margin:0 0 15px 0;
    font-weight:inherit;
    line-height:1.2;
}
        
h1 {
    margin-top: 0;
    font-size: 1.2em;
}

h2 {font-size: 1.5em;}

h3 {font-size: 1.8em;}

h4 {font-size: 2em;}

small, .font_small {font-size: 0.937em;}

h5 {
    font-size: .955em;
}
h6 {
    font-size: .755em;
}

h1,h2,h3,h4,h5,h6,h1 a,h2 a,h3 a,h4 a, h5 a, h6 a {
    color: #494949;
}

dl, ol, ul, blockquote, table, figure {
    margin-top: 0;
    margin-bottom: 20px;
}
i{
    -webkit-transition: -webkit-transition .2s linear;
    -ms-transition:     -ms-transition .2s linear;
    transition:         transition .2s linear;
}
blockquote {
    margin-left: 0;
    margin-right:0;
}
blockquote a b {
    font-weight:normal;
}

ol, ul {
    padding:0;
    list-style-position:inside;
}

.inner {
    height:100%;
    position:relative;
}

.cl:after {
    display: block;
    clear: both;
    content: "";
}

.wrapper:after, .post-footer:after, .header:after, .photo-slideshow:after, .tags:after {
    content: "";
    display: table;
    clear: both;
}

.left {
    float:left;
}

.right {
    float:right;
}



.show-mob {
  display:none;
}

.white {
    color:white;
}

.grey {
    color:#cccccc;
}

/* Logo */

.logo {
    font-size:24px;
    margin-bottom:10px;
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align:center;
}

.logo img {
    margin:0;
    max-width:180px;
}



/* Left */

.header {
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
}

.swipe {
    left:100%;

}

body.widget-open .social-icons {
    z-index:5;
}

.social-icons {
    position:absolute;
    left:0;
    height:100%;
    background:rgba(0,0,0,0.05);
    border-right:1px solid rgba(255,255,255,0.15);
    font-size:20px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    -webkit-transition: -webkit-transform 300ms ease 0.6s, opacity 300ms ease;
    transition:         transform 300ms ease 0.6s, opacity 300ms ease;
    z-index:3;
    padding:0;
    margin:0;
}

.social-icons li {
    text-align:center; 
    list-style:none;
}

.social-icons a {
    text-align: center;
    padding:25px 35px;
    display:block;
    border-bottom:1px solid rgba(255,255,255,0.15);
    -webkit-transition: background .2s linear;
    transition:         background .2s linear;
}

.social-icons a .fa{
    opacity:0.8;
    -webkit-transition: opacity .2s linear;
    transition:         opacity .2s linear;
}

.social-icons a:hover .fa{
    opacity:1;
}

.social-icons a:hover {
    background:rgba(0,0,0,0.15);
}

.social-icons a.open .fa {
    opacity:1;
}

.social-icons a.open {
    background:rgba(0,0,0,0.15);
}


body.menu-open .action-overlay {
    z-index:5;
}

.action-overlay {
    background:rgba(0,0,0,0.2);
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:3;
    visibility:hidden;
    opacity:0;
    -webkit-transition: opacity .2s linear, visibility .2s linear;
    transition:         opacity .2s linear, visibility .2s linear;

}

.action-overlay.open {
    visibility:visible;
    opacity:1;
    -webkit-transition: opacity .2s linear;
    transition:         opacity .2s linear;
}

.header-avatar {
    width:104px;
    margin-bottom:10px;
    opacity:0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: -webkit-transform 300ms ease 1.15s, opacity 300ms ease 1.15s;
    transition:         transform 300ms ease 1.15s, opacity 300ms ease 1.15s;
}

.header-avatar img {
    border-radius:4px;
}




.main-menu.open {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform .7s cubic-bezier(.77,0,.175,1);
    transition: transform .7s cubic-bezier(.77,0,.175,1);
}

.main-menu li {
    list-style:none;
}

.main-menu ul li a:hover {
    text-decoration:underline;
}

.page-toggle {
    cursor:pointer;
}

/* Navigation */


body.menu-open .navigation {
    z-index: 20;
}

body.menu-open .main-menu {
    z-index:19;
}

.navigation {
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    visibility:visible;
    -webkit-transition: -webkit-transform 300ms ease 1.1s, opacity 300ms ease 1.1s;
    transition:         transform 300ms ease 1.1s, opacity 300ms ease 1.1s;
    z-index: 3;
}

.navigation-burger {
    right: 0;
    float: left;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    width:118px; 
    padding-left:15px;
    height:102px;
}


.nav-icon::after, .nav-icon::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: inherit; 
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .25s ease;
    -moz-transition: all .25s ease;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
}

.nav-icon::before {
    -webkit-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    transform: translateY(-12px);
}

.nav-icon::after {
    -webkit-transform: translateY(12px);
    -ms-transform: translateY(12px);
    transform: translateY(12px);
}

a.navigation-burger.open-nav:hover .nav-icon::before {
    -webkit-transform: translateY(-16px);
    -ms-transform: translateY(-16px);
    transform: translateY(-16px)
}
a.navigation-burger.open-nav:hover .nav-icon::after {
    -webkit-transform: translateY(16px);
    -ms-transform: translateY(16px);
    transform: translateY(16px)
}

.navigation-burger.close-nav .nav-icon {
    visibility: hidden
}
.navigation-burger.close-nav .nav-icon::before {
    background-color: #ffffff; 
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    visibility: visible
}
.navigation-burger.close-nav .nav-icon::after {
    background-color: #ffffff;
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    visibility: visible
}

/* About Box */

.about-box {
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    z-index:4;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition: -webkit-transform 300ms ease 1.2s, opacity 300ms ease 1.2s;
    transition:         transform 300ms ease 1.2s, opacity 300ms ease 1.2s;
}


.about-box.open .about-bio {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(.77,0,.175,1), opacity 0.4s cubic-bezier(.77,0,.175,1);
    transition:         transform 0.4s cubic-bezier(.77,0,.175,1), opacity 0.4s cubic-bezier(.77,0,.175,1);
    opacity:1;
}

.about-box.open .about-bio  p{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 200ms ease 500ms, opacity 200ms ease 500ms;
    transition:         transform 200ms ease 500ms, opacity 200ms ease 500ms;
    visibility:visible;
    opacity:1;
}

.close-box {
    right:0;
    position: absolute;
    top:0;
    cursor:pointer;
    font-size:24px;
    padding: 9px 15px;
    z-index:3;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition: -webkit-transform 50ms, opacity 50ms;
    transition:         transform 50ms, opacity 50ms;
}


body.widget-open .close-box {
    opacity:1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 200ms linear 0.5s, opacity 200ms linear 0.5s;
    transition:         transform 200ms linear 0.5s, opacity 200ms linear 0.5s;
}



.header-widgets.open {
    opacity:1;
    visibility:visible;
    width:100%;
    -webkit-transition: left 0.4s cubic-bezier(.77,0,.175,1), padding 0.4s cubic-bezier(.77,0,.175,1), width 0.4s cubic-bezier(.77,0,.175,1);
    transition: left 0.4s cubic-bezier(.77,0,.175,1), padding 0.4s cubic-bezier(.77,0,.175,1), width 0.4s cubic-bezier(.77,0,.175,1);
}

.widget li {
    margin-bottom:20px;
}


.header-widgets.open .widget.open {
    padding:25px 35px;
    opacity:1;
    height:100%;
    width:100%;
    visibility:visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 200ms linear 0.6s, opacity 200ms linear 0.6s;
    transition:         transform 200ms linear 0.6s, opacity 200ms linear 0.6s;
}

.widget ul {
    padding:0;
}
        
.widget ul li {
    list-style:none;
}

.instagram-feed a {
    margin-bottom:30px;
}

.widget-title {
    margin-bottom:80px;
    width:100%;
}

.widget-toggle {
    cursor:pointer;
}

#twitter li p {
    margin-bottom:20px;
}

#twitter li:last-child p {
    margin-bottom:0; 
}

#twitter li abbr {
    display: block;
    font-size: .9555em;
    margin-top: 7px;
}   


/* Right */

.right-container {
    padding:6%;
}

.right-header {
    padding:25px 0;
    text-align:center;
}

.right-container > .inner {
    width:100%;
    margin:0 auto;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition: -webkit-transform 300ms ease 1.2s, opacity 300ms ease 1.2s;
    transition:         transform 300ms ease 1.2s, opacity 300ms ease 1.2s;
}


.wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0;
}

.posts, #posts {
    width:100%;
    z-index:4;
}

.post,
.grid-sizer {
  width: 48%;
}

.gutter-sizer {
    width: 4%;
    /* width: 40px; */
}

article {
    margin-bottom:4%;
    border-radius:3px;
    border:1px solid #ececec;
}
article .inner {
    background:#ffffff;
    border-radius: 3px;
}




/* Photosets */
.single-photoset {
    display: block;
    position: absolute;
    top: 0;
    opacity: 0;
    width: 100%;
    transition: all .5s;
}
.single-photoset:first-child {
    position: relative;
}
.single-photoset.active {
    opacity: 1;
    transition: all .5s;
}
.photoset-count {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #000;
    font-size: .6em;
    font-weight: 400;
    font-style: italic;
    padding: 4px 8px;
    /*background: #fff;*/
    background: rgba(255,255,255,.5);
    z-index: 1;
}
.ps-nav-left, .ps-nav-right {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
}
.ps-nav-left {
    cursor: w-resize;
    left: 0;
}
.ps-nav-right {
    cursor: e-resize;
    right: 0;
}
/* Panorama */
.post.panorama {
    width: 65.332%;
    /*width: 600px;*/
}

.photoset .media {
    overflow: hidden;
    position:relative;
}

.photoset .inner {
    overflow: hidden;
}



/* Share */

.post-footer {
    width:100%;
    font-size:14px;
}


.share-modal {
    left: -10px;
    background-color: #0c0c0c;
    color: #ffffff;
    margin: 0;
    padding:0;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    z-index: 2;
    text-align:center;
    bottom:10px;
}


.share-modal span {
    margin:0;
    padding:0;
    list-style:none;
    opacity:0;
    visibility:hidden;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    display:block;
    border-bottom:1px solid #333333;
}

.share-toggle.open .share-modal span {
    opacity:1;
    visibility:visible;
}

.share-modal span a {
    color:#ffffff;
    font-size:18px;
    padding: 0 10px;
    vertical-align: top;
    line-height:35px;
    width:100%;
}

.share-modal *:last-child {
    border:none;
}

.share-modal span a:before {
    font-family:FontAwesome;
    font-size:16px;
}

.share-toggle.open .share-modal:hover > span {
  opacity: 0.7;
}


.share-toggle.open .share-modal:hover > span:hover {
  opacity: 1.0;
}

.share-icon-twitter:before {
    content: "\f099";
}

.share-icon-facebook:before {
    content: "\f09a";
}

.share-icon-google-plus:before {
    content: "\f0d5";
}

.share-icon-pinterest:before {
    content: "\f0d2";
}

.share-toggle {
    position:relative;
    cursor:pointer;
}


.share-toggle.open  .share-modal {
    opacity: 1;
    visibility: visible;
    margin-bottom: 20px;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.share-toggle {
margin-left:7px;
position:relative;
color:#000000;
}

.share-toggle i {
font-size:20px;
padding:1px 0;
}

.share {
padding: 0;
margin: 0;
}

.notecount {
    margin-top:4px;
}

.share a:hover {
    text-decoration:none;
}

.share li {
list-style:none;
display:inline-block;
}

.share li {
margin-left:7px;
}

.post-like, .post-reblog, .share-toggle i {
    opacity:0.35;
}

.post-like:hover, .post-reblog:hover, .share-toggle:hover > i {
    opacity:0.45;
}

.pagination {
    position:absolute;
    left:20px;
    bottom:20px;
}


.wrapper:after, .post-footer:after, .header:after, .widget:after, .photo-slideshow:after, .atx-post:after, .tags:after {
    content: "";
    display: table;
    clear: both;
}




.post-image img {
  border-top-left-radius:3px;
  border-top-right-radius:3px;
}

.post-image {
  width:100%;
  float:none;
  padding:0;
}

.atx-post article {
  float:none;
  width:100%;
  padding:0;
  height:100% ;
  overflow:hidden;
  margin:0;
}

.post-image img {
  border-top-left-radius:3px;
  border-bottom-left-radius:3px;
}

.visible {
  visibility: visible;
  opacity: 1;
}
.invisible {
  visibility: hidden;
  opacity: 0;
}



.show-mob {
  display:none;
}

body.post-page article {
    display: block;
    float: none;
    margin: 4% auto;
    max-width: 600px;
    width: 100%;
}











/* Loader */
/*
#loader {
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    background: #ffffff;
    z-index: 10000;
    visibility: visible;
    opacity: 1;
    -ms-transition:     all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition:         all 0.5s ease-out;
}
#loader.loaded {
    visibility: hidden;
    opacity: 0;
    -ms-transition:     all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition:         all 0.5s ease-out;
}*/

.post-page .answer {
    border:5px solid {color:Accent};
}

.post-page .asker-box, .fuse-container .asker-box {
    padding:3px 40px 8px 4px;
}

.post-answer .post-footer {
    display:none;
}

.post-answer .content {
    padding:0;
    font-size:13px;
}

.asker-box {
    border-bottom:1px solid #ececec;
    padding:10px;
}

.asker-box img {
    display:inline-block;
    margin:0 6px 0 0;
}

.the-asker {
    text-decoration:underline;
}

.answer {
    padding:10px;
    color:#494949;
}





/* Left Right */

#left {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
}

#left {
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat:no-repeat;
    -webkit-transition: left .7s cubic-bezier(.77,0,.175,1), margin .7s cubic-bezier(.77,0,.175,1);
    transition: left .7s cubic-bezier(.77,0,.175,1), margin .7s cubic-bezier(.77,0,.175,1);
}

#right {
    width:50%;
    float:right;
    background-color:{color:Background};
    -webkit-transition: right .7s cubic-bezier(.77,0,.175,1), margin .7s cubic-bezier(.77,0,.175,1);
    transition: right .7s cubic-bezier(.77,0,.175,1), margin .7s cubic-bezier(.77,0,.175,1);
}

.inner{
    height:100%;
    position:relative;
}


ol.notes {
    list-style:none;
    margin:0;
    padding:30px 0;
}

ol.notes li {
    margin-bottom:10px;
}

.notes .avatar_frame {
    margin-right: 5px;
}

.notes li.more_notes_link_container {
    margin:30px 0 0 0;
}

.notes li.more_notes_link_container a {
    display:block;
}

#backToTop {
    position: fixed;
    height: 20px;
    right: 5px;
    bottom:11px;
    display: block;
    cursor: pointer;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    transition: all .5s cubic-bezier(0.645,.045,.355,1);
}

.fuse-credit {
    position: fixed;
    bottom: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 9999;
    visibility: hidden;
    transition: all .5s cubic-bezier(0.645,.045,.355,1);
    background:black;
}

.fuse-credit a {
    color:white;
    padding: 3px 6px;
    display:block;
}

.fuse-credit a:hover {
    color:white;
}


/* Responsive */

@media (max-width: 740px) { 
    body { overflow-x:hidden;}
    .grid-sizer, .post { width: 100% !important; }
    .post { margin: 0 0 20px !important; }
    .gutter-sizer { width: 0 !important; }
    #backToTop { display: none; }
    .wrapper { padding:0 15px; }
    .header-res { display: block; z-index:9999; }
    .fuse-container { padding: 0 20px 50px; }
    .on-controls {z-index: 9999;}
    .arr-down { bottom: 80px;!important }
    .mute-button, .overlay { display: none; }
    #banner h1.banner-logo {font-size:24px;}
    #ask_form {min-width:100%;}
    .tooltip {display:none;}
    #left, #right {width:100% !important; position:relative !important;}
    #left {height:100vh !important;}
    body .header-widgets.open {width:100%;}
    body.post-page article {max-width: 940px !important;}
    .instagram-feed a { margin:0; width:50%; display:inline-block; }
    .widget-title {margin-bottom:30px;}
    .social-icons a {
        padding:25px 35px 25px 17.5px !important;
    }
}




article .inner {
    background:#ffffff;
    height:100%;
    position:relative;
}


.post-audio .media iframe {
    width:100%;
    height:100%;
}
.chat{
    padding:0;
    list-style:none;
    font-size:14px;
}

.post-chat footer {
    margin-top:20px;
}

.chat li {
    padding: 20px 20px 0 20px;
}

.content {
    padding: 20px 20px 0 20px;
}
.content ul {
    padding-left:20px;
    list-style:disc;
}
.content ol {
    padding-left:20px;
    list-style:decimal;
}

.content *:last-child {
    margin:0;
}

.content a {
    word-break: break-all;
}

.tumblr_blog {
    font-size:14px;
    text-decoration:underline;
    font-weight:700;
}

.tumblr_blog:hover {
    text-decoration:underline;
}

footer {
    padding: 20px 20px 15px 20px;
}

.tags {
    margin:0 0 15px 0;
    padding:0;
}

.tags li {
    list-style: none;
    display:inline-block;
    margin-right:2px;
}

.post-meta {
    padding:0;
    margin:4px 0 0 0;
    float:left;
    font-size:13px;
    font-weight:700;
}
.post-meta li {
    list-style:none;
    margin-right:20px;
    display:inline-block;
}
.post-meta *:last-child {
    margin:0;
}

.pagination {
    opacity: 0;
}

.pagination a {
    font-size:18px;
    color:;
}


#infscr-loading {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0,-50%);
    z-index:999999;
}
#infscr-loading img {
    display:none;
}

#notes {
    padding:20px;
}

#notes ol {
    list-style:none;
    margin:0;
    padding:0;
}

#notes ol li {
    margin-bottom:10px;
}

#notes .avatar_frame {
    margin-right: 5px;
}

#notes li.more_notes_link_container {
    margin:30px 0 0 0;
}

#notes li.more_notes_link_container a {
    display:block;
}




/* Modal Post */


.fuse-container {
    position: relative;
    display:table;
    max-width: 1200px;
    margin: 0 auto;
    opacity:0;
}

.fuse-container header {
    text-align:center;
}

.fuse-container header a {
    padding: 36px 0;
    display:block;
}

.post-navigation {
    text-align:center;
    width: 100%;
    min-height: 21px;
    margin-bottom: 40px;
}

.post-navigation .fuse-prev-btn {
    display:inline-block;
    margin:0 8px 0 0;
    cursor:pointer;
}

.post-navigation .fuse-next-btn {
    display:inline-block;
    cursor:pointer;
}

.go-back {
    text-transform:uppercase;
    cursor:pointer;
}

.fuse-container .content {
    padding:0;
}

.fuse-content blockquote a, .fuse-caption blockquote a { 
    text-decoration:underline;   
}

.fuse-caption blockquote { padding: 0; }

.fuse-container.content-text {
    max-width:640px;
    width:100%;
}

.fuse-container.content-video {
    width:100%;
    max-width:640px;
}

.perm {
    position: relative;
    padding: 30px 0;
}
.perm .share {
    float: none;
    display: block;
    margin: 0 auto;
}

.fuse-caption {
    transition: all 0.2s linear;
    z-index: 11;
    margin: 30px auto 30px auto;
    padding: 0;
}
.fuse-caption.visible {
    overflow: visible;
}

.fuse-caption .caption {
    margin: 0 0 30px;
}
.fuse-caption .caption blockquote {
    border-left: none;
}

.postnotes, .postdate, .fuse-caption .date-notes a {
    display:inline-block;
    margin:0 12px 0 0;
    font-weight:700;
}

ul.tags {
    width: 100%;
    list-style: none;
    margin: 0 0 24px;
}
ul.tags li {
    display: inline-block;
    margin: 0 5px 0 0; 
    padding: 0;
}
.fuse-caption .btm .share {
    float: right;
    padding: 0;
    position: relative;
    visibility: visible;
    opacity: 1;
    text-align:left;
}
.fuse-caption .btm .share .standard-share {
    bottom:20px;
    top:initial;
}

.fuse-overlay.visible {
    opacity:1;
    visibility:visible;
}
.fuse-content {
    display: block;
    margin: 0 auto 40px auto;
    background-size: cover;
    overflow: hidden;
    position:relative;
}
.fuse-overlay.visible .fuse-container {
    opacity:1;
}

/* Inline Photosets */

#fuse-photoset {
    position: relative;
    overflow: hidden;
}
.single-photoset {
    display: block;
    position: absolute;
    top: 0;
    opacity: 0;
    width: 100%;
    transition: opacity 1s;
}
.single-photoset:first-child {
    position: relative;
}
.single-photoset.active {
    opacity: 1;
    transition: opacity 1s;
}
.photoset-count {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ccc;
    font-size: 20px;
    z-index: 1;
}
.ps-nav-left, .ps-nav-right {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
}
.ps-nav-left {
    cursor: w-resize;
    left: 0;
}
.ps-nav-right {
    cursor: e-resize;
    right: 0;
}

.tumblr_video_container {width:100% !important;}

.visible {
  visibility: visible;
  opacity: 1;
}
.invisible {
  visibility: hidden;
  opacity: 0;
}








/* Plugins */
.fusetip {
    background: #494949;
    color: #fff;
}
/* Use this next selector to style things like font-size and line-height: */
.fusetip .tooltipster-content {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 8px;
}

/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
    border-radius: 5px; 
    border: 2px solid #000;
    background: #4c4c4c;
    color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 16px;
    padding: 8px 10px;
    overflow: hidden;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
    /* border-color: ... !important; */
}


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
    cursor: help;
    margin-left: 4px;
}


/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
    padding: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999999;
    pointer-events: none;
    width: auto;
    overflow: visible;
}
.tooltipster-base .tooltipster-content {
    overflow: hidden;
}


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
    display: block;
    width: 0; 
    height: 0;
    position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 8px solid;
    bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-top: 9px solid;
    bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 8px solid;
    top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-bottom: 9px solid;
    top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
    left: 0;
    right: 0;
    margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
    left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
    right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
    right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important; 
    border-left: 8px solid;
    top: 50%;
    margin-top: -7px;
    right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important; 
    border-left: 9px solid;
    margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important; 
    border-right: 8px solid;
    top: 50%;
    margin-top: -7px;
    left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important; 
    border-right: 9px solid;
    margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}
.tooltipster-fade-show {
    opacity: 1;
}

.tooltipster-grow {
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -o-transform: scale(0,0);
    -ms-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}
.tooltipster-swing-show {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    -moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    -ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    -o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
    top: 0;
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0px !important;
    opacity: 0;
}

.tooltipster-slide {
    left: -40px;
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0px !important;
    opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
    opacity: 0.5;
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}