/******************************************************************************
 * OVERWRITES
 * Variations on elements.
 ******************************************************************************/
html {
    top: 0 !important; /* override mobile iframe */
}

body {
    text-rendering: optimizeLegibility;
    margin: 0;
    color: #333;
    font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    background: #f5f5f5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #529ecc;
    text-decoration: underline;
}

h1 {
    font-size: 56px;
    line-height: 1.2;
    margin: 40px 0 0;
    word-wrap: break-word;
}

h1 a {
    color: #444;
    display: block;
    text-decoration: none;
}

h1 a:active {
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
    transform: translateY(1px);
}

img,
iframe,
object {
    vertical-align: middle;
}

input,
textarea {
    color: #333;
    font-size: 14px;
    font-family: inherit;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

::-webkit-input-placeholder {
    color: #bbb;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #bbb;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #bbb;
}

:-ms-input-placeholder {
    color: #bbb;
}

/******************************************************************************
 * HELPERS
 * Various helper styles.
 ******************************************************************************/
.hidden {
    display: none !important;
    visibility: hidden;
}

.invisible {
    visibility: hidden;
}

.print-only {
    display: none;
}

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
    border: 0 !important;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px !important;
}

.clearfix {
    zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* .clear classes are used by notes */
div.clear,
br.clear {
    clear: both;
    height: 0;
    overflow: hidden;
}

/******************************************************************************
 * REUSABLE WIDGETS
 * Classes meant to be reused / generic.
 ******************************************************************************/

/** Popover menu **/
.glass {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.glass.active {
    display: block;
}

.exposed-nav-wrapper .pop-menu {
    display: none;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    bottom: 35px;
	right:20px;
    width: 146px;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    z-index: 10;
}
.share-control .pop-menu, 
.nav-menu-wrapper .pop-menu {
    display: none;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    bottom: 35px;
	left: -54px;
    width: 146px;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.touch .share-control .pop-menu, 
.touch .nav-menu-wrapper .pop-menu {
    left: -15px;
	bottom: 40px;
}
.touch .pop-menu.south li:last-child:after{
	left: 15%;
}

.pop-menu ul {
    float: none;
    margin: 0 !important;
    padding: 0;
}

.pop-menu ul li {
    border-left: none;
    float: none;
    height: auto;
    position: relative;
    width: auto;
	z-index: 11;
}
.search-only.search-only-navi .pop-menu ul li {
    border-left: none;
    float: none;
    height: auto;
    position: relative;
    width: 100%;
	text-align: left;
}


.pop-menu.show {
    display: block;
    opacity: 0;
    
	
	
	/*-webkit-transition: all 0.25s cubic-bezier(0.680, -0.550, 0.265, 1.550);
    -o-transition: all 0.25s cubic-bezier(0.680, -0.550, 0.265, 1.550);
    -ms-transition: all 0.25s cubic-bezier(0.680, -0.550, 0.265, 1.550);
    -moz-transition: all 0.25s cubic-bezier(0.680, -0.550, 0.265, 1.550);
    transition: all 0.25s cubic-bezier(0.680, -0.550, 0.265, 1.550);*/
}

.pop-menu.active {
    opacity: 1;
}

.pop-menu.west li:first-child:before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    height: 10px;
    width: 10px;
    margin-top: -8px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.15);
}
.search-only.search-only-navi .pop-menu.west li:last-child:after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    height: 10px;
    width: 10px;
    margin-top: -6px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.15);
}
.search-only.search-only-navi .pop-menu.west li:first-child:before {
    display: none;
}
.pop-menu ul li.search {
    border-bottom: 1px solid #eee;
}
.pop-menu ul li.advanced-search {
    border-bottom: 1px solid #ccc;
}

.search-only .pop-menu.west li:first-child:before {
    margin-top: -6px;
    border-bottom: none;
}

.pop-menu.south li:last-child:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    height: 12px;
    width: 12px;
    margin-left: -6px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

.pop-menu ul li:not(.no-hover):hover {
    background: #e6eff7;
}

.pop-menu ul li:first-child:hover {
    border-radius: 4px 4px 0 0;
}

.pop-menu ul li:last-child {
    border-bottom: none;
}

.pop-menu ul li:last-child:hover {
    border-radius: 0 0 4px 4px;
}

.pop-menu.south ul li:last-child:hover:after {
    background: #e6eff7;
}

.pop-menu ul li:first-child {
    border-top: none;
}

.pop-menu ul li a {
    background: none;
    color: #444;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    margin: 0;
    padding: 6px 40px 6px 10px;
    position: relative;
    text-decoration: none;
    width: auto;
}

.pop-menu ul li a .icon-arrow_carrot_right {
    font-size: 11px;
    position: absolute;
    right: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -1px;
}

.share-menu {
    bottom: 30px;
}

.share-menu.active {
    bottom: 35px;
}

body:not(.ios) .share-menu ul li:nth-child(2):hover {
    border-radius: 4px 4px 0 0;
}


.share-menu ul li a {
    opacity: 1;
}

.share-menu ul li a:hover {
    opacity: 1;
}

.pop-menu ul li.open-in-app {
    display: none;
}

.h-line {
    background: #DADADA;
    height: 1px;
    overflow: hidden;
    opacity: 0.15;
    filter: alpha(opacity = 15);
    width: 100%;
}

/******************************************************************************
 * PAGE STYLES
 * Defines the structure and styles of the entire theme.
 ******************************************************************************/

#tumblr_controls {
    z-index: 4; /* popover needs to ride on top */
}

/** Scrolling **/
body.is-scrolling {
    pointer-events: none;
}

body.is-scrolling #posts * {
    -webkit-transition: none !important;
    -o-transition: none !important;
    -ms-transition: none !important;
    -moz-transition: none !important;
    transition: none !important;
}
#page {
	max-width: 1020px;
    padding: 0;
	margin: 0 auto;
	background: #ffffff;
	-moz-box-shadow: 0 0 3px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 3px 3px rgba(0,0,0,0.1);
	box-shadow: 0 0 3px 3px rgba(0,0,0,0.1);
}

/** Variations on header **/
#header {
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/** No header image **/
.no-image #header {
    margin-top: 140px;
}

/** No image, no avatar **/
.no-image.avatar-hidden #header,
.no-image.avatar-style-hidden #header {
    margin-top: 30px;
}

/** Nav **/

.nav-menu-wrapper {
	display:none;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
}

.is_lightbox .nav-menu-wrapper,
.is_lightbox .nav-menu-bg {
    z-index: 0;
}

.nav-menu-wrapper:not(.exposed) .nav-menu {
    float: left;
    position: relative;
    margin: 3px 8px;
    z-index: 999; /* ride the snake */
}

.nav-menu .selector {
    cursor: pointer;
    display: block;
    height: 26px;
    width: 26px;
	position: relative;
}

.selector {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selector .bar-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    margin-top: -11px;
    -webkit-transform: translate3d(0, 0, 0); /* The zoom: 1; of new browsers */
}

.selector .bar-icon {
    height: 3px;
    width: 20px;
    background: #fff;
    display: block;
    opacity: 1;
    margin-top: 4px;
    -webkit-transition: -webkit-transform 0.15s linear;
    -o-transition: -o-transform 0.15s linear;
    -ms-transition: -ms-transform 0.15s linear;
    -moz-transition: -moz-transform 0.15s linear;
    transition: transform 0.15s linear;
    -webkit-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.bar-icon:nth-child(2) {
    -webkit-transition: opacity 0.1s linear;
    -o-transition: opacity 0.1s linear;
    -ms-transition: opacity 0.1s linear;
    -moz-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
}

.active .bar-icon:nth-child(1) {
    -webkit-transform: rotate(45deg) translate3d(5px, 5px, 0);
    -o-transform: rotate(45deg) translate3d(5px, 5px, 0);
    -ms-transform: rotate(45deg) translate3d(5px, 5px, 0);
    -moz-transform: rotate(45deg) translate3d(5px, 5px, 0);
    transform: rotate(45deg) translate3d(5px, 5px, 0);
}

.active .bar-icon:nth-child(2) {
    opacity: 0;
}

.active .bar-icon:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
    -o-transform: rotate(-45deg) translate3d(5px, -5px, 0);
    -ms-transform: rotate(-45deg) translate3d(5px, -5px, 0);
    -moz-transform: rotate(-45deg) translate3d(5px, -5px, 0);
    transform: rotate(-45deg) translate3d(5px, -5px, 0);
}
.search-only .selector .icon {
    display: block;
    height: 26px;
    margin: auto;
    width: 26px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 26px;
    color: #fff;
    -webkit-transition: opacity 0.25s linear;
    -o-transition: opacity 0.25s linear;
    -ms-transition: opacity 0.25s linear;
    -moz-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
	z-index:10000;
}
.search-only .selector .icon-close {
    display: none;
    opacity: 0;
}
.search-only .selector.show .icon-close {
    display: block;
}
.search-only .selector.show .icon-search_16 {
    opacity: 0;
}
.search-only .selector.active .icon-close {
    opacity: 1;
}

.search-only .selector.show.active .icon-search_16  {
    display: none;
}

.exposed-nav-wrapper .nav-menu .pop-menu {
    bottom: auto;
    top: -23px;
	right: 60px;
    width: 250px;
}
.nav-menu-wrapper .nav-menu .pop-menu {
    bottom: auto;
    top: 0;
    left: 35px;
	width: 200px;
}
.exposed-nav-wrapper  .nav-menu .pop-menu.active {
	right: 60px;
}
.nav-menu-wrapper .nav-menu .pop-menu.active {
    left: 40px;
}

/** Exposed nav **/
.exposed-nav-wrapper {
    margin-top: 20px;
}

#posts.no-title-desc.exposed-nav {
    margin-top: 10px;
}

.no-title-desc .h-line {
    display: none;
}

.exposed-nav-wrapper ul {
    margin: 0 0 0 10px;
    padding: 0;
    text-align: left;
}

.exposed-nav-wrapper li {
    display: inline-block;
    margin: 0;
    padding: 15px;
    border-left: 1px solid #707070;
}
.exposed-nav-wrapper li:first-child{
	border-left: none;
}
.exposed-nav-wrapper .pop-menu  li {
    padding: 0;
    border-left:none;
}
.exposed-nav-wrapper li a {
    color: #fff;
    text-decoration: none;
	font:bold 16px "Lucida Grande",Sans-Serif, Sans-Serif;
}
/** /Exposed nav **/
.exposed-nav-wrapper li.search-only.search-only-navi{
	float: right;
	border-left: none;
	position: relative;
	padding: 13px 25px 13px 25px;
}

.mobile-menu {
    float: right;
    margin: 11px 10px 0 0;
    position: relative;
    width: 250px;
    z-index: 1;
}

#search {
    margin: 6px 10px 8px;
}

#search input {
    border: none;
    font-size: 14px;
    font-weight: bold;
    outline: none;
    margin: 0;
    padding: 0;
    width: 155px;
}
.search-only.search-only-navi #search input {
    border: none;
    font-size: 14px;
    font-weight: bold;
    outline: none;
    margin: 0;
    padding: 0;
    width: 185px;
}
#search button {
    border: none;
    background: transparent;
    display: block;
    margin: 0;
    padding: 0;
    width: 26px;
    height: 26px;
    font-size: 26px;
    color: #bbb;
    position: absolute;
    right: 7px;
    top: 0;
}
.search-only.search-only-navi #search button {
    border: none;
    background: transparent;
    display: block;
    margin: 0;
    padding: 0;
    width: 26px;
    height: 26px;
    font-size: 26px;
    color: #bbb;
    position: absolute;
    right: 7px;
    top: 4px;
}

.header-image-wrapper {
    position: relative;
    height: 150px;
    overflow: hidden;
	background: #ffffff;
	background: -moz-linear-gradient(top,  #f7f7f7 0%, #ffffff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#00a4ee)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f7f7f7 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f7f7f7 0%,#ffffff 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f7f7f7 0%,#ffffff 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f7f7f7 0%,#ffffff 100%); /* W3C */
    
}
.header-image-wrapper.header-image-wrapper-mobile {
	display: none;
}
.header-image-wrapper.header-image-wrapper-nomobile {
	display: block;
}

.iframe .header-image-wrapper {
    -webkit-transition: none;
    -o-transition: none;
    -ms-transition: none;
    -moz-transition: none;
    transition: none;
}

.header-image {
    background: transparent 50% 50% no-repeat;
    display: inline-block;
    height: 100%;
    opacity: 0;
    position: relative;
    -webkit-transition: opacity 0.15s ease;
    -o-transition: opacity 0.15s ease;
    -ms-transition: opacity 0.15s ease;
    -moz-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
	margin:0 12px 0 25px;
}
.header-image img {
    width: 50%;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-100%, -50%);
    -o-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    -moz-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}
.lt-ie9 .header-image img {
    width: 50%;
    position: relative;
    top: 55px;
	left: 0;
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -moz-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

.header-image-poweredby {
    background: transparent 50% 50% no-repeat;
    display: inline-block;
    float:right;
	height: 100%;
    position: relative;
    -webkit-transition: opacity 0.15s ease;
    -o-transition: opacity 0.15s ease;
    -ms-transition: opacity 0.15s ease;
    -moz-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
	margin:0 16px 0 12px;
}
.header-image-poweredby img {
    width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.lt-ie9 .header-image-poweredby img {
    width: 100%;
    position: relative;
    top: 45px;
    left: 0;
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
}

.header-image.cover img {
    display: none;
}

.header-image.contain {
    background-image: none !important;
    /*margin: auto;*/ /* center */
}

.regular .header-image.contain,
.grid.permalink .header-image.contain {
    max-width: 700px;
}

.narrow .header-image.contain {
    max-width: 500px;
}

.iframe .header-image {
    opacity: 1;
    -webkit-transition: none;
    -o-transition: none;
    -ms-transition: none;
    -moz-transition: none;
    transition: none;
}

.header-image.loaded {
    opacity: 1;
}

.header-image.cover.loaded:after {
    content: '';
    position: absolute;
    height: 60px;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(top,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
    background: -ms-linear-gradient(top,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
}

.header-image.cover {
    -webkit-background-size: cover;
    background-size: cover;
    margin: 0 -1px; /* account for browser rounding errors */
}

.header-image.cover:not(.loaded) + .loader-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(68, 68, 68, 0.1);
}

.title-group.animate {
    -webkit-animation: slide-fade-in 0.8s ease;
    -o-animation: slide-fade-in 0.8s ease;
    -ms-animation: slide-fade-in 0.8s ease;
    -moz-animation: slide-fade-in 0.8s ease;
    animation: slide-fade-in 0.8s ease;
}

.blog-title {
    text-align: center;
}

.description {
    color: #666;
    margin: 50px 0 0;
    display: block;
}

.description img,
.description object,
.description iframe {
    max-width: 100%;
    height: auto;
}

.avatar-hidden .description {
    margin-top: 25px;
}

h1 + .description {
    margin-top: 5px !important;
}

.post-wrapper a.price-tag,
.price-tag {
  position: absolute;
  z-index: 100;
  right:1px;
  bottom: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 15px;
  text-decoration: none;
  color: #ffffff;  
  text-shadow: 1px 1px 1px #666666;
  font-size: 18px;
  font-weight: normal;
  border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
}

.lt-ie9 .post-wrapper a.price-tag,
.lt-ie9 .price-tag {
  background-color: #000;
}

.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .post-wrapper a.price-tag,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .price-tag,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .post-wrapper a.price-tag,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .price-tag {
	  bottom: 80px;
}


.price-tag span { 
	font-size: 14px;
	font-weight: notmal;
}
.ticket-button{
	position: absolute;
	bottom: 12px;
	right: 12px;
	display: inline-block;
	margin: 0;
}
.ticket-button a,
.ticket-button span{
	background-color:#00b6f2;
	color: #fff;
	display: inline-block;
	width: auto;
	white-space: nowrap;
	height: 32px;
	margin: 0;
	padding: 0 22px;
	text-decoration: none !Important;
	text-align: center;
	font-weight: bold;
	font-style: normal;
	font-size: 15px;
	line-height: 32px;
	cursor: pointer;
	border: 0;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	vertical-align: top;
}

.hotline-box
{
	background: #000000\9;
    background:rgba(0,0,0,0.65);
	color:#ffffff;
    position:fixed;
    bottom:0;
    right:20px;
    padding:30px 40px 20px 40px;
    text-align:center;
    z-index:999;
}
.hotline-box-close
{
    position:absolute;
    top:15px;
    right:15px;
    cursor:pointer;
    width:24px;
    height:24px;
}
.hotline-box-close:before
{
    content: "\00d7";
    display:block;
    color:#afafb1;
    font-size:18px;
    line-height:21px;
    width:24px;
    height:24px;
	border: solid 1px #afafb1;
	border-radius:15px;
    -moz-border-radius:15px;
    -webkit-border-radius:15px;
}

.hotline-box-headline
{
    font-weight: normal;
    font-size: 24px;
    line-height: 24px;
}
.hotline-box-hotline
{
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    display:block;
    padding: 10px 15px;
    margin:10px 0 0 0;
    background:#00b5f6;
    text-align:center;
}
.hotline-box-addition
{
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color:#afafb1;
    margin:20px 0 0 0;
}
.hotline-box-addition a
{
    color:#afafb1;
    text-decoration:underline;
}
.hotline-box-addition a:hover
{
    color:#00b5f6;
    text-decoration:underline;
}

.ticket-button a:hover{
	opacity:0.7;
	filter:alpha(opacity=70);
}
#footer{
	margin: 0;
	display: inline-block;
}
/* Footer */
.footer-content{
	margin: 0;
	padding: 10px 2%;
	width:96%;
	text-shadow: 1px 1px 1px #ffffff;
	filter: dropshadow(color=#ffffff, offx=1, offy=1);
}
.footer-content h4{
	font-size: 1.2em; 
}
.footer-content-service{
	display: inline-block;
	width: 22%;
	padding: 0 1%;
	vertical-align:top;
}.footer-content-right{
	display: inline-block;
	width: 22%;
	padding: 0 1%;
	vertical-align:top;
}.footer-content-infos{
	display: inline-block;
	width: 22%;
	padding: 0 1%;
	vertical-align:top;
}
.footer-content ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-content ul li{
	list-style: none;
	margin: 5px 0;
}
.footer-content ul li a,
.footer-content a {
	color:#333;
	text-decoration: none;
}
.footer-content-newsletter{
	display: inline-block;
	width: 46%;
    padding: 0 1%;
	vertical-align:top;
}
.footer-content-newsletter p {
	margin-bottom: 0;
}
/* CleverReach */
.cr_site{margin:0;padding:75px 0 0 0;text-align:center;background-color:#eeeeee;}
.cr_font{font-size: 14px;font-family: Arial;}
.cr_body h2, .cr_header h2{font-size:22px;line-height:28px;margin:0 0 10px 0;}
.cr_body h1, .cr_header h2{font-size:28px;margin-bottom:15px;padding:0;margin-top:0;}
.wrapper, .cr_page{margin:0 auto;text-align:left;}
.cr_header{text-align:center;background: transparent !Important;}
.cr_body label{float:none;clear:both;display:block;width:auto;margin-top:8px;text-align:left;font-weight:bold;position:relative;}
.cr_button{display:inline-block;width:auto;white-space:nowrap;height:32px;margin:0;padding:0 22px;text-decoration:none;text-align:center;font-weight:bold;font-style:normal;font-size:15px;line-height:32px;cursor:pointer;border:0;-moz-border-radius:4px;border-radius:4px;-webkit-border-radius:4px;vertical-align:top;}
.cr_button{background-color:#333;color:#ffffff;}
.cr_button:hover,.cr_button-small:hover{opacity:0.7;filter:alpha(opacity=70);}
.powered{padding:20px 0;width:560px;margin:0 auto;}
.formbox{line-height:150%;font-size:12px;color:#333333;padding:0 0 10px 0;}
.cr_ipe_item label {line-height:150%;font-size:14px;}
.cr_ipe_item textarea {background: none repeat scroll 0 0 #eeeeee;border: 1px solid #aaa;font-family: Helvetica;font-size: 16px;}
.cr_ipe_item input {
	background: none repeat scroll 0 0 #eeeeee;
	border: 1px solid #aaa;
	padding: 5px;
	font-family: Helvetica;
	font-size: 16px;
	margin: 2px 0 0 0;
}
.cr_ipe_item select {background: none repeat scroll 0 0 #eeeeee;border: 1px solid #aaa;display: block;margin: 0;padding: 5px;width: 100%;font-family: Helvetica;font-size: 16px;}
.cr_ipe_item input.cr_ipe_radio, input.cr_ipe_checkbox {-moz-binding: none;-moz-box-sizing: border-box;background-color: -moz-field !important;border: 2px inset threedface !important;color: -moz-fieldtext !important;cursor: default;height: 13px;padding: 0 !important;width: 13px;}
.cr_ipe_item input.cr_ipe_radio{-moz-appearance: radio;border-radius: 100% 100% 100% 100% !important;margin: 3px 3px 0 5px;}
.cr_ipe_item.musthave{
	width: 70%;
	display: inline-block;
	vertical-align: top;
}
.cr_ipe_item.submit_container{
	width: 30%;
	display: inline-block;
	vertical-align: top;
}
.submit_container{text-align:center}
.cr_ipe_item{ padding:1px 0; margin:1px 0; }
.cr_ipe_item.inactive {display:none;}
.imprint{font-size:0.8em;}
.cr_captcha{padding-left:130px;}
.cr_error{font-size:1.1em;padding:10px;}
.clever_form_error{background-color:#f99; color:#000; border:1px solid #f22 !important}
.clever_form_note {margin:26px 0 0 3px;position:absolute;display:inline; padding: 2px 4px; font-weight:bold;background-color:#f2ecb5; color:#000; font-size:12px !important;  }
.cr_site {background-color:#eee;}
.cr_header {color:#000000;}
.cr_hr {background-color:#ccc;}
.cr_site a {color:#0084ff;}
.imprint{color:#000;}



/** Avatar **/
.avatar-wrapper {
    left: 50%;
    margin-left: -57px;
    position: absolute;
    top: -78px;
}

.avatar-wrapper.animate {
    -webkit-animation: grow 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
    -o-animation: grow 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
    -ms-animation: grow 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
    -moz-animation: grow 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
    animation: grow 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

.user-avatar {
    background: #666 50% 50% no-repeat;
    background-size: 106px 106px;
    border-radius: 4px;
    display: block;
    height: 106px;
    width: 106px;
    border: 4px solid #f6f6f6;
    position: relative;
}

/* square avatar, uses box-shadow to create inset border */
.avatar-style-square .avatar-wrapper {
    margin-left: -53px;
}

.avatar-style-square .user-avatar {
    border: none;
    -wekbit-box-shadow: 0 0 0 4px #F6F6F6;
    -moz-box-shadow: 0 0 0 4px #F6F6F6;
    box-shadow: 0 0 0 4px #F6F6F6;
}

.user-avatar:active {
    margin-top: 1px;
}

/** Variations on avatars **/
.avatar-hidden .avatar-wrapper,
.avatar-style-hidden .avatar-wrapper {
    display: none;
}

.avatar-style-circle .user-avatar {
    border-radius: 50%;
}

#header.no-image .avatar-wrapper {
    margin-left: -50px;
}

#header.no-image .user-avatar {
    border: none;
}

.avatar-hidden h1 {
    margin-top: 23px;
}

.content {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    position: relative;
    z-index: 2;
    width: 100%; /* This gets updated with media queries */
}
.narrow .content {
    max-width: 502px;
}

#posts {
    margin-top: 45px;
}

#posts.no-title-desc.avatar-hidden,
#posts.no-title-desc.avatar-style-hidden,
.contain-header-image #posts.no-title-desc.no-image.avatar-hidden {
    margin-top: 15px;
}

#posts.no-title-desc {
    margin-top: 70px;
}

.contain-header-image #posts.no-title-desc.avatar-hidden {
    padding: 15px
	margin: 0;
}

#posts article {
    margin-bottom: 20px;
    opacity: 1;
    position: relative;
    -webkit-transition: margin-bottom 0.2s ease;
    -o-transition: margin-bottom 0.2s ease;
    -ms-transition: margin-bottom 0.2s ease;
    -moz-transition: margin-bottom 0.2s ease;
    transition: margin-bottom 0.2s ease;
}

.lt-ie9 #posts article {
	width: 23%;
	float:left;
	margin: 0 1% 20px 1%;
}

#posts article:after {
    content: '';
    position: absolute;
    bottom: -10px;
    height: 10px;
    /*width: 100%;*/
}

#posts article.snooze {
    visibility: hidden;
}

#posts article.active {
    margin-bottom: 20px;
}

.#posts article.active {
    margin-bottom: 20px;
}

#posts article.exposed {
    margin-bottom: 70px;
}

.post-wrapper {
    background: #fff;
    border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    /*overflow: hidden;*/
    padding: 0;
    position: relative;
    background-clip: padding-box;
    border: 1px solid #eee;
    border: 1px solid rgba(0, 0, 0, 0.08);
	height: 390px;
	z-index: 1;
}
.linkblock {
	height: 390px;
	position: relative;
	z-index: 1;
}
.active.exposed .post-wrapper,
.active.exposed .linkblock,
.active.exposed .linkblock-disable {
	height: auto;
	border: none;
	margin:12px;
	
}  
.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .post-wrapper,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .post-wrapper, 
.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .linkblock,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .linkblock {
	height: 358px;
} 

/* Firefox bug won't let you transition elements if you change overflow property
   so we're using a different class that gets applied later */
#posts article.visible .post-wrapper {
    overflow: visible;
}

.post-wrapper a {
    color: #333;
    text-decoration: none;
}

.reblog-header {
    display: none; /* this only shows in mobile */
}

.post {
    padding: 20px;
    margin-bottom: 0px;
    position: relative;
    word-wrap: break-word;
    -webkit-transition: margin-bottom 0.2s ease;
    -o-transition: margin-bottom 0.2s ease;
    -ms-transition: margin-bottom 0.2s ease;
    -moz-transition: margin-bottom 0.2s ease;
    transition: margin-bottom 0.2s ease;
}

.active .post {
    margin-bottom: 0;
}

.post h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0.5em 0;
}

.post > h2 {
    margin: -5px 0 15px;
}

.post h2 a {
    color: #333;
    text-decoration: none;
    display: block;
}

.post p {
    margin: 0;
}

.post p + p {
    margin-top: 1em;
}

.post blockquote {
    border-left: 3px solid #eee;
    margin: 1em 0;
    padding-left: 20px;
}

.post img {
    max-width: 100%;
    height: auto;
}

.lt-ie9 .post img {
    width: 232px;
    height: auto;
}

.post iframe,
.post object {
    max-width: 100%;
}

.post .caption {
    margin: 12px 12px 10px 12px;
	height: 90px;
	overflow: hidden;
}

.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .post .caption,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .post .caption{
	margin: -70px 0 0 0;
	padding: 6px 12px 6px 12px;
	position: relative;
	z-index: 9999;
	border: none;
	background: rgba(0,0,0,0.5);
	color: #fff;
	height: 58px;
}
.bold
{
	font-weight: bold;
}

.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .post .caption p strong,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .post .caption p .bold,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .post .caption p b,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .post .caption p strong,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .post .caption p .bold,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .post .caption p b{
	font-size: 18px;
	line-height: 32px;
	color: #fff;
}
.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .post .caption p a,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .post .caption p a,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .post .caption p strong a,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .post .caption p strong a,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .post .caption p b a,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .post .caption p b a
{
	color: #fff;
}
.index-page.grid #posts .posts-roomer:first-child article:nth-child(1) .post .caption p,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) .post .caption p {
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.post .caption h2:first-child {
    margin-top: -5px;
}

.panel {
    z-index: 2;
	display: inline-block;
	height: 44px;
    opacity: 1;
    filter: alpha(opacity = 100);
    position: absolute;
	bottom: 0;
	left:0;
    -webkit-transition: opacity 0.35s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 0.35s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -ms-transition: all 0.35s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 0.35s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: opacity 0.35s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transform: translate3d(0,0,0); /* webkit rendering hack */
}
.lt-ie9 .panel {
	overflow: visible;
}
article.active .panel {
    opacity: 1;
    z-index: 2;
    filter: alpha(opacity = 100);
}

.post-footer {
    clear: both;
    display: table;
    height: 50px;
    opacity: 1;
    position: relative;
    z-index: 10;
    width: 100%;
}

article.active .post-footer {
    opacity: 1;
    z-index: 2;
}

.post-footer ul {
    list-style: none;
    margin: 4px 0 0 12px;
    padding: 0;
}

.post-footer .date-notes li {
    float: left;
    margin-right: 10px;
    white-space: nowrap;
}

.meta {
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
}

.date-notes a {
    color: #a7a7a7;
    text-decoration: none;
}

.date-notes a:hover {
    color: #8c8c8c;
}

.post-date {
    display: none;
}

.post-notes + .post-date {
    margin-top: 1px; /* post-notes are bold so adjust top of post-date */
}

.post-notes a {
    font-weight: bold;
}

.post-controls {
    display: inline-block;
    vertical-align: top;
    width: 100%; /* don't wrap the icons */
}

.post-controls > ul {
    float: left;
    margin-right: 10px;
}

.post-controls > ul > li {
    float: left;
    height: 28px;
    position: relative;
	margin: 0 5px;
}

.post-controls li:first-child {
    border-left: none;
}

.post-controls li a {
    display: block;
    height: 21px;
    margin: 4px auto auto;
    text-decoration: none;
    width: 21px;
}

.post-controls li .share {
    color: #a7a7a7;
    font-size: 22px;
    margin-top: 2px;
}

.post-controls li .share:hover {
    color: #8c8c8c;
}

.post-controls li .reblog_button {
    margin: 3px 10px 0;
    opacity: 0.355;
}

.post-controls li .like_button {
    display: block;
    height: 20px;
    margin: 3px auto auto;
    width: 21px;
    opacity: 0.355;
    position: relative;
}

.like_button iframe {
    position: relative;
    z-index: 1;
    vertical-align: top;
}

.post-controls li .reblog_button:hover,
.post-controls li .like_button:hover {
    opacity: 0.455;
}

.post-controls li .like_button.interacted.liked:after {
    content: '\e601';
    color: #d75f45;
    font-family: 'optica-icons', 'Blank';
    font-size: 70px;
    height: 40px;
    width: 40px;
    -webkit-animation: wiggle 0.6s ease-out;
    -o-animation: wiggle 0.6s ease-out;
    -ms-animation: wiggle 0.6s ease-out;
    -moz-animation: wiggle 0.6s ease-out;
    animation: wiggle 0.6s ease-out;
    position: absolute;
    margin-top: -75px;
    left: -26px;
    z-index: 0;
    opacity: 0;
    speak: none;
    -webkit-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.post-controls li .like_button.liked {
    opacity: 1;
}

.caption * {
    font-size: inherit;
    line-height: 1.6;
    margin-left: 0;
    margin-right: 0;
}

#pagination a {
    border-radius: 4px;
    color: #858585;
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 25px 10px;
    text-align: center;
    text-decoration: none;
    padding: 10px 28px 10px 18px;
    position: relative;
    opacity: 0.7;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	width: 160px;
	height: 40px;
	float: left;
}

#pagination a.next {
    float: right;
	margin: 0 10px 25px 0;
}

#pagination a:after {
    content: '';
    border: 6px solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    top: 15px;
}

#pagination a.next:after {
    border-left: 7px solid #858585;
    right: 10px;
}

#pagination a.previous {
    padding: 10px 18px 10px 28px;
}

#pagination a.previous:after {
    border-right: 7px solid #858585;
    left: 10px;
}

#pagination .bg {
    border-radius: 4px;
    border: 1px solid;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.15;
}

#pagination.invisible {
    pointer-events: none;
}

#pagination.invisible .bg {
    display: none;
}

#pagination a:active {
    margin-top: 1px;
}

.loader {
    position: absolute;
    line-height: 0;
    top: 10px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loader .loader-bar {
    display: none;
    height: 16px;
    width: 16px;
    margin: 0 3px;
    opacity: 0.1;
    border-radius: 4px;
    background-color: #d9d9d9;
}

.animate > .loader-bar {
    display: inline-block;
    -webkit-animation: loader-oscillate ease-in-out 300ms infinite alternate;
    -moz-animation: loader-oscillate ease-in-out 300ms infinite alternate;
    animation: loader-oscillate ease-in-out 300ms infinite alternate;
}

.loader-bar:nth-child(1) {
    -webkit-animation-delay: -200ms;
    -moz-animation-delay: -200ms;
    animation-delay: -200ms;
}

.loader-bar:nth-child(2) {
    -webkit-animation-delay: -100ms;
    -moz-animation-delay: -100ms;
    animation-delay: -100ms;
}

.attribution-tags {
    font-family: "Helvetica Neue", HelveticaNeue, Arial, sans-serif;
    margin: 0 20px;
}

.caption + .attribution-tags,
.with-caption + .attribution-tags {
    margin-top: -20px;
}

.attribution-tags ul {
    float: left;
    list-style: none;
    padding: 0;
    margin: 20px 0 10px;
}

.attribution-tags li {
    float: left;
    font-size: 14px;
    line-height: 1;
    margin: 0 15px 10px 0;
}

.attribution-tags li a {
    display: block;
    color: #a7a7a7;
    text-decoration: none;
}

.attribution-tags li a:hover {
    color: #8c8c8c;
}

.reblog-link {
    position: relative;
}

.reblog-link .icon-reblog {
    font-size: 14px;
    display: inline-block;
    vertical-align: -2px;
    margin: 0 0.25em 0 0;
}

.reblog-source-tags .group .source-link {
    border-radius: 0 4px 4px 0;
}

a.tag:before {
    content: '#';
}

.notes-wrapper {
    margin: 5px 20px;
}

.notes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes li {
    color: #bdbdbd;
    color: rgba(90, 90, 90, 0.6);
    font-size: 14px;
    padding: 14px 0 9px;
    border-top: 1px solid #eee;
}

.notes .reply {
    margin: 0;
}

.avatar_frame {
    display: block;
    float: left;
    position: relative;
    margin: -2px 12px 0 0;
    border-radius: 2px;
}

.avatar_frame:before {
    content: '';
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 2px;
}

.avatar_frame:after {
    content: '';
    background: rgba(0, 0, 0, 0) url('http://static.tumblr.com/vr9xgox/X4en0lgid/sprite-1x.png') 0 0 no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: -6px;
    z-index: 10;
    right: -8px;
}

.like.note .avatar_frame:after {
    background-position: -28px 0;
}

.answer.note .avatar_frame:after,
.reply.note .avatar_frame:after {
    background-position: -56px 0;
}

.original_post .avatar_frame:after,
.tag .avatar_frame:after {
    display: none;
}

.notes .avatar {
    border-radius: 2px;
    height: 25px;
    position: relative;
    width: 25px;
}

.notes .action {
    float: left;
    width: 80%;
}

.notes a {
    color: inherit;
    font-weight: bold;
    text-decoration: none;
}

.notes a:hover {
    color: rgba(90, 90, 90, 0.7);
}

.notes blockquote,
.quote .notes blockquote {
    border-left: 2px solid #eee;
    font-size: inherit;
    line-height: 1.4;
    margin: 3px 35px 0;
    quotes: none;
    padding: 0 0 0 10px;
}

.more_notes_link {
    border-radius: 4px;
    color: #858585;
    display: block;
}

.comments {
    margin: 25px 20px 20px;
    position: relative;
    padding: 0;
}

.comments:before {
    content: '';
    top: 0;
    border-top: 1px solid #EEE;
    position: absolute;
    width: 100%;
    margin: -20px;
    padding: 20px;
}

/******************************************************************************
 * Permalink
 * Styles specific to the permalink page.
 ******************************************************************************/

.permalink {}

.permalink .post-date {
    display: block;
}


/******************************************************************************
 * Grid
 * Styles specific to the grid layout.
 ******************************************************************************/
.index-page.grid #posts,
.index-page.grid.no-results #posts.masonry {
    max-width: 100%;
    width: 100% !Important;
	height: auto !Important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.index-page.grid #posts.masonry {
    box-sizing: content-box;
}

.index-page.grid #posts article {
    float: left;
    /*margin: 0 5px 10px;*/
	margin: 0 1% 15px;
    opacity: 0;
	width: 23%;
    /*width: 240px;*/
	position: inherit !Important;
}
.index-page.touch #posts article {
    float: left;
    margin: 0 1% 15px;
    opacity: 1;
    width: 23%;
	position: inherit !Important;
}
.index-page.touch.slender #posts article {
    float:none;
    margin: 10px 5px;
    opacity: 1;
    width: auto;
	position: inherit !Important;
}
.permalink.grid #posts article {
    float: none;
    margin: 0 15px 10px;
}


.index-page.grid #posts .posts-roomer:first-child article:nth-child(1),
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2) {
    /*width: 490px;*/
	width: 48%;
}
.index-page.touch #posts .posts-roomer:first-child article:nth-child(1),
.index-page.touch #posts .posts-roomer:first-child article:nth-child(2) {
    width: 48%;
}
.index-page.touch.slender #posts .posts-roomer:first-child article:nth-child(1),
.index-page.touch.slender #posts .posts-roomer:first-child article:nth-child(2) {
    width: auto;
}

.index-page.grid .post-wrapper {
    overflow: visible;
}

.index-page.grid .post {
    margin-bottom: 0;
    padding-bottom: 5px;
}

.index-page.grid .link .post,
.index-page.grid .video .post,
.index-page.grid .audio .post,
.index-page.grid .photo .post,
.index-page.grid .photoset .post {
    padding: 0;
}

.index-page.grid .panel {
    opacity: 1;
    z-index: 2;
    filter: alpha(opacity = 100);
}

.index-page.grid .post-footer .date-notes li {
    max-width: 115px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #a7a7a7;
}

.index-page.grid .link-wrapper h2 {
    font-size: 24px;
}

.index-page.grid .link-wrapper .link-title {
    line-height: 32px;
}

.index-page.grid .photo-wrapper + .caption {
    padding: 12px 12px 0;
}

.index-page.grid .photoset .post {
    margin: 0;
}

.index-page.grid .post-footer {
    opacity: 1;
}

.index-page.grid .photo .photo-wrapper-inner {
    padding: 0;
}

.index-page.grid .photo .photo-wrapper-inner img {
    margin: 0;
    width: 100%; /* Force grid photos to full width */
}

.index-page.grid .spotify_audio_player {
    height: 80px;
    width: 300px;
}

.index-page.grid .body-text ol,
.index-page.grid .body-text ul,
.index-page.grid .caption ol,
.index-page.grid .caption ul {
    padding-left: 25px;
}

.index-page.grid .answer_form_container iframe {
    min-height: 143px;
}

.index-page.grid iframe[src^="//instagram"] {
    min-height: 395px;
}

.index-page.grid .photoset .attribution-tags {
    margin: 0 20px -20px;
}

.index-page.grid .attribution-tags li {
    margin: 0 15px 5px 0;
}

.index-page.grid .caption + .attribution-tags,
.index-page.grid .with-caption + .attribution-tags {
    margin: -20px 20px -15px;
}

.index-page.grid .photoset .with-caption + .attribution-tags {
    margin: -20px 20px -15px;
}

/******************************************************************************
 * Search
 * Styles specific to search.
 ******************************************************************************/
.search-header {
    margin: 50px auto;
    text-align: center;
}

.search-header h2 {
    margin: 0;
    opacity: 0.7;
}

/******************************************************************************
 * Text/Regular
 * Styles specific to Text posts.
 ******************************************************************************/
.text .post > h2 {
    margin-bottom: -4px;
}

h2 + .body-text {
    margin-top: 1em;
}

.body-text {
    line-height: 1.6;
}

.text .attribution-tags {
    margin: 0 0 -20px;
}

/******************************************************************************
 * Quote
 * Styles specific to Quote posts.
 ******************************************************************************/
.quote .post > blockquote {
    font-family: Georgia, Times, serif;
}

.quote .post > blockquote {
    border: none;
    font-size: 34px;
    line-height: 1.3;
    margin: 0;
    padding: 0 5px 0 0;
    quotes: "\201C""\201D""\2018""\2019";
    word-break: break-word;
}

.quote blockquote.medium {
    font-size: 20px;
}

.quote blockquote.long {
    font-size: 18px;
}

.quote .post > blockquote:before {
    content: open-quote;
    letter-spacing: -0.25em;
}

.quote .post > blockquote:after {
    content: close-quote;
    margin-left: -0.25em;
}

/*
 * quote posts sometimes insert extra p's at the beginning and end, guard against this
 */
.quote .post > blockquote p:first-child,
.quote .post > blockquote p:empty + p,
.quote .post > blockquote p:last-child,
.quote .post > blockquote p.empty-last-child {
    display: inline;
}

.quote .post > blockquote p + p {
    margin: 0.5em 0;
}

.quote .post > blockquote p:empty {
    display: none;
}

.quote .source {
    margin: 10px 0 0 0;
    position: relative;
    padding-left: 25px;
}

.quote .source blockquote {
    font-size: inherit;
    font-family: inherit;
    margin-top: 1em;
}

.quote .source:before {
    content: "\2014\00A0"; /* m-dash + space */
    position: absolute;
    left: 0;
    top: 0;
}

.quote .attribution-tags {
    margin: 0 0 -20px;
}

/******************************************************************************
 * Photo
 * Styles specific to Photo posts.
 ******************************************************************************/
.photo .post {
    padding: 0;
}

.photo .photo-wrapper {
    text-align: center;
    width: 100%;
	max-height: 235px;
	/*height:50%; */
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}

.lt-ie9 .photo .photo-wrapper {
	height:210px; 
}

.index-page.grid #posts .posts-roomer:first-child article:nth-child(1).photo .photo-wrapper,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2).photo .photo-wrapper,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(1).photo .photo-wrapper .photo-wrapper-inner a,
.index-page.grid #posts .posts-roomer:first-child article:nth-child(2).photo .photo-wrapper .photo-wrapper-inner a{
	height: 300px;
	max-height: 300px;
	overflow: hidden;
}







.index-page.touch #posts .posts-roomer:first-child article:nth-child(1).photo .photo-wrapper,
.index-page.touch #posts .posts-roomer:first-child article:nth-child(2).photo .photo-wrapper,
.index-page.touch #posts .posts-roomer:first-child article:nth-child(1).photo .photo-wrapper .photo-wrapper-inner a,
.index-page.touch #posts .posts-roomer:first-child article:nth-child(2).photo .photo-wrapper .photo-wrapper-inner a{
	height: 230px;
	overflow: hidden;
}

.permalink.grid #posts .photo .photo-wrapper,
.permalink.grid #posts .photo .photo-wrapper .photo-wrapper-inner {
	max-height: 100%;
	overflow: hidden;
}

.index-page.touch #posts .posts-roomer:first-child article:nth-child(1).photo .photo-wrapper img,
.index-page.touch #posts .posts-roomer:first-child article:nth-child(2).photo .photo-wrapper img {
	width: 100%;
	height: auto;
}

.photo .photo-wrapper-inner {
    display: table;
    padding: 0;
    vertical-align: middle;
	width: 101%;
}
.lt-ie9 .photo .photo-wrapper-inner {
 	width: 101%;
	height: 210px;
}

.grid.permalink  .photo .photo-wrapper-inner {
    display: table;
    padding: 30px 0;
    vertical-align: middle;
}
.photo .high-res .photo-wrapper-inner,
.narrow .photo figure[data-photo-width="500"] .photo-wrapper-inner {
    padding: 0;
}

.photo-wrapper:not(.high-res) + .caption {
    border-top: 1px solid #efefef;
    margin: 0;
    padding: 20px 20px 0 20px;
}

.permalink.grid #posts  .photo-wrapper:not(.high-res) + .caption {
	padding: 20px 20px 60px 20px;
}

.photo-wrapper-inner a {
    display: table-cell;
	vertical-align: middle;
}
.lt-ie9 .photo-wrapper-inner a {
    width: 100%;
	height: auto;
}

.photo .high-res img {
    width: 100%;
}

figure:not(.high-res) .photo-wrapper img[src$='.gif'] {
    width: 100%;
    margin: -40px 0;
}

/******************************************************************************
 * Chat
 * Styles specific to Chat / Conversations posts.
 ******************************************************************************/
.chat .attribution-tags {
    margin: 5px 0 -20px;
}

.conversation {
    font-family: Courier, monospace;
    list-style: none;
    margin: 0;
    padding: 0;
}

.conversation li {
    padding: 0.5em 0;
}

.conversation li:first-child {
    padding-top: 0;
    border-top: none;
}

.conversation li:last-child {
    padding-bottom: 0;
}

.conversation .label {
    font-weight: bold;
    margin-right: 5px;
}

/******************************************************************************
 * Photoset
 * Styles specific to Photoset posts.
 ******************************************************************************/
.photoset .post {
    padding: 0;
}

.photoset .caption {
    margin: 20px 16px 10px;
}

.photoset .attribution-tags {
    margin: 0 16px -10px;
}

.photoset .with-caption + .attribution-tags {
    margin-top: -10px;
}

/******************************************************************************
 * Link
 * Styles specific to Link posts.
 ******************************************************************************/
.link .post {
    padding: 0;
}

.link-wrapper h2 {
    margin: 0;
    padding: 0;
    border: none;
}

.link-wrapper h2 a {
    border-radius: 3px 3px 0 0;
    background-color: #529ecc;
    color: #fff;
    display: block;
    padding: 17px 30px 18px;
    position: relative;
    word-break: break-word;
    word-wrap: break-word;
    text-align: center;
}

.link-wrapper h2 a:hover {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    background-image: -ms-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.link-wrapper h2 a:active {
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
    background-image: -ms-linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
    background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}

.link-wrapper .link-title {
    display: inline-block;
    line-height: 38px;
}

.link-wrapper .link-title:after {
    display: inline;
    padding-left: 4px;
    vertical-align: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'optica-icons', 'Blank';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e603';
    font-size: 18px;
}

.link-wrapper .link-host {
    display: block;
    font-size: 16px;
    font-weight: normal;
    margin: 0.5em 0 0;
    opacity: 0.7;
}

/* Adjust font color for light accents */
.light-accent .link-wrapper h2 a {
    color: #444;
}

.light-accent .link-wrapper .link-title:after {
    color: rgba(68, 68, 68, 0.7);
}

/******************************************************************************
 * Video
 * Styles specific to Video posts.
 ******************************************************************************/
.video .post {
    padding: 0;
}

.video .video-wrapper {
    background: #111;
    position: relative;
    padding-bottom: 56%;
    height: 0;
    overflow: hidden;
    text-align: center; /* for non-standard embeds to center align */
}

.video .video-wrapper.tumblr-video,
.video .video-wrapper.preserve {
    padding-bottom: 0;
    height: auto;
}

.video .video-wrapper.video-embed {
    background: transparent;
}

.video-wrapper:not(.preserve) iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video .video-wrapper a {
    height: auto;
    max-height: 400px;
    width: 100% !important;
}

iframe[src^="//instagram"] {
    min-height: 600px;
    max-height: 710px;
}

iframe[src^="http://sports.yahoo"] {
    max-height: 532px;
}

.video .video-wrapper.video-instagram {
    background: #fff;
    margin-top: -2px;
    bottom: -2px;
}

.video .video-wrapper .instagram-media {
    position: relative !important;
    top: -1px;
    left: -1px;
    width: 100% !important;
    max-width: 700px !important;
}

/******************************************************************************
 * Ask/Answer
 * Styles specific to Ask posts.
 ******************************************************************************/
.note-item {
    margin-top: 15px;
    position: relative;
}

.note-item:first-child {
    margin-top: 0;
}

.note-item .text {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    padding: 15px 20px;
    border-radius: 3px;
    position: relative;
    margin-right: 60px;
}

.note-item .text:after {
    content: '';
    position: absolute;
    right: -6px;
    top: 16px;
    height: 10px;
    width: 10px;
    background-color: #fafafa;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.note-item .text .asker,
.note-item .text .answerer {
    color: #888;
    margin-bottom: -0.25em;
}

.note-item .text .asker a,
.note-item .text .answerer a {
    color: #888;
    text-decoration: none;
}

.note-item .text .answerer-answer,
.note-item .text .asker-question {
    margin: 1em 0 0;
}

.note-item .avatar {
    position: absolute;
    top: 2px;
    right: 0;
}

.note-item .avatar img {
    border-radius: 2px;
    width: 40px;
    height: 40px;
}

.answer .replies {
    margin-top: 20px;
}

.answer .attribution-tags {
    margin: 0 0 -20px;
}

/******************************************************************************
 * Audio
 * Audio post styles.
 ******************************************************************************/
.audio .post {
    padding: 0;
}

.audio_container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.soundcloud_audio_player {
    width: 100%;
}

.spotify_audio_player {
    /* Height is adjusted with JS */
    width: 100%;
}

.tumblr_audio_player {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/******************************************************************************
 * DEVICES
 * Device specific styles.
 ******************************************************************************/
.touch .post {
    margin-bottom: 0;
}

.touch .panel {
    opacity: 1;
}

.touch .post-footer {
    opacity: 1;
}

.ios .pop-menu ul li.open-in-app,
.android .pop-menu ul li.open-in-app {
    display: block;
}

.touch .pop-menu ul li:hover {
    background: transparent;
}

.touch .pop-menu.south ul li:last-child:hover:after {
    background: #fff;
}

/* Old Android freaks out on web fonts if text-rendering: optimizeLegibility; is
   set */
body.android-lt-4-4 {
    text-rendering: inherit;
}

/* Old android browses don't handle transitions well, so disable the animations entirely
   and leave the bars as-is */
.android-lt-4-4 .bar-icon:nth-child(2) {
    -webkit-transition: none;
    transition: none;
}

.android-lt-4-4 .active .bar-icon:nth-child(1) {
    -webkit-transform: none;
    transform: none;
}

.android-lt-4-4 .active .bar-icon:nth-child(2) {
    opacity: 1;
}

.android-lt-4-4 .active .bar-icon:nth-child(3) {
    -webkit-transform: none;
    transform: none;
}

/******************************************************************************
 * BROWSER STYLES
 * Browser specific styles. Mainly IE work arounds.
 ******************************************************************************/
.lt-ie9 .pop-menu {
    border: 1px solid #b2b2b2;
}

.lt-ie9 .pop-menu.west li:first-child:before {
    display: none;
}

/******************************************************************************
 * KEYFRAME ANIMATIONS
 * Cool little thingies.
 ******************************************************************************/
@-webkit-keyframes wiggle {
    0%   { opacity: 1; -webkit-transform: rotate(0deg); }
    25%  { opacity: 1; -webkit-transform: rotate(-20deg); }
    75%  { -webkit-transform: rotate(20deg); }
    100% { margin-top: -130px; opacity: 0; -webkit-transform: rotate(0deg); }
}
@-moz-keyframes wiggle {
    0%   { opacity: 1; -moz-transform: rotate(0deg); }
    25%  { opacity: 1; -moz-transform: rotate(-20deg); }
    75%  { -moz-transform: rotate(20deg); }
    100% { margin-top: -130px; opacity: 0; -moz-transform: rotate(0deg); }
}
@-ms-keyframes wiggle {
    0%   { opacity: 1; -ms-transform: rotate(0deg); }
    25%  { opacity: 1; -ms-transform: rotate(-20deg); }
    75%  { -ms-transform: rotate(20deg); }
    100% { margin-top: -130px; opacity: 0; -ms-transform: rotate(0deg); }
}
@-o-keyframes wiggle {
    0%   { opacity: 1; -o-transform: rotate(0deg); }
    25%  { opacity: 1; -o-transform: rotate(-20deg); }
    75%  { -o-transform: rotate(20deg); }
    100% { margin-top: -130px; opacity: 0; -o-transform: rotate(0deg); }
}
@keyframes wiggle {
    0%   { opacity: 1; transform: rotate(0deg); }
    25%  { opacity: 1; transform: rotate(-20deg); }
    75%  { transform: rotate(20deg); }
    100% { margin-top: -130px; opacity: 0; transform: rotate(0deg); }
}

@-webkit-keyframes loader-oscillate {
    0% { opacity: 0.1; -webkit-transform: scaleY(1); }
    100% { opacity: 0.2; -webkit-transform: scaleY(1.3); }
}
@-moz-keyframes loader-oscillate {
    0% { opacity: 0.1; -moz-transform: scaleY(1); }
    100% { opacity: 0.2; -moz-transform: scaleY(1.3); }
}
@keyframes loader-oscillate {
    0% { opacity: 0.1; transform: scaleY(1); }
    100% { opacity: 0.2; transform: scaleY(1.3); }
}

@-webkit-keyframes slide-fade-in {
    from   { opacity: 0; -webkit-transform: translate3d(0, 20px, 0); }
    to  { opacity: 1; -webkit-transform: translate(0, 0, 0); }
}
@-o-keyframes slide-fade-in {
    from   { opacity: 0; -o-transform: translate3d(0, 20px, 0); }
    to  { opacity: 1; -o-transform: translate(0, 0, 0); }
}
@-ms-keyframes slide-fade-in {
    from   { opacity: 0; -ms-transform: translate3d(0, 20px, 0); }
    to  { opacity: 1; -ms-transform: translate(0, 0, 0); }
}
@-moz-keyframes slide-fade-in {
    from   { opacity: 0; -moz-transform: translate3d(0, 20px, 0); }
    to  { opacity: 1; -moz-transform: translate(0, 0, 0); }
}
@keyframes slide-fade-in {
    from   { opacity: 0; transform: translate3d(0, 20px, 0); }
    to  { opacity: 1; transform: translate(0, 0, 0); }
}

@-webkit-keyframes grow {
    from   { opacity: 0.85; -webkit-transform: scale(0.5); }
    to  { opacity: 1; -webkit-transform: translate(1); }
}
@-o-keyframes grow {
    from   { opacity: 0.85; -o-transform: scale(0.5); }
    to  { opacity: 1; -o-transform: translate(1); }
}
@-ms-keyframes grow {
    from   { opacity: 0.85; -ms-transform: scale(0.5); }
    to  { opacity: 1; -ms-transform: translate(1); }
}
@-moz-keyframes grow {
    from   { opacity: 0.85; -moz-transform: scale(0.5); }
    to  { opacity: 1; -moz-transform: translate(1); }
}
@keyframes grow {
    from   { opacity: 0.85; transform: scale(0.5); }
    to  { opacity: 1; transform: translate(1); }
}

/******************************************************************************
 * MEDIA QUERIES
 * These follow after primary styles so they will successfully override.
 ******************************************************************************/
 @media screen and (max-width: 807px) {
	.header-image-wrapper {
		width: 100%;
	}
	.header-image {
		margin: 0 1%;
		width: 70%;
	}
	.header-image-poweredby {
		margin: 0 1%;
		width: 20%;
	}
 }
 @media screen and (max-width: 768px) {
    /*.header-image-wrapper {
        height: 250px;
    }*/

    h1 {
        font-size: 54px;
    }
	.exposed-nav-wrapper li{
		padding: 15px 20px;
	}
	.post .caption{
		height: 158px;
	}
	#posts .posts-roomer:first-child article:nth-child(1) .post .caption,
	#posts .posts-roomer:first-child article:nth-child(2) .post .caption{
		height: 90px;
	}
	.share-control .pop-menu, .nav-menu-wrapper .pop-menu {
		left: -15px;
	}
	.pop-menu.south li:last-child:after {
		left: 16%;
	}
	
	
}
@media screen and (max-width: 728px) {
	.content {
		margin: 10px 1%;
		width: 98%;
	}
	.post-wrapper{
		height: auto;
	}
	.linkblock {
		height: auto;
		margin-bottom: 50px;
	}
	.ticket-button {
		bottom: -38px;
	}
}



@media screen and (max-width: 640px) {
    .post-footer .date-notes li {
        width: 123px; /* andorid does weird things */
        overflow: hidden;
        text-overflow: ellipsis;
        color: #a7a7a7;
    }

    .permalink .post-footer .date-notes li {
        float: none; /* force two lines */
    }
	.header-image-wrapper {
        height: 85px;
    }
	.post .caption,
	#posts .posts-roomer:first-child article:nth-child(1) .post .caption,
	#posts .posts-roomer:first-child article:nth-child(2) .post .caption{
		height: 90px;
	}
}

@media screen and (max-width: 500px) {

    iframe[src^="//instagram"] {
        min-height: 550px;
    }

}

@media screen and (max-width: 480px) {
	
	.header-image-wrapper.header-image-wrapper-nomobile {
		display: none;
	}
	.header-image-wrapper.header-image-wrapper-mobile {
		display: block;
		height: 36px;
		position: absolute;
		top: 7px;
		left: 46px;
		z-index: 999;
		background: none;
		width: auto;
    }
	.header-image {
		width: 76%;
		margin: 0 2%;
	}
	.header-image-poweredby {
		width: 18%;
		margin: 0 1%;
	}
	.contain-header-image #posts.no-title-desc.avatar-hidden,
	.contain-header-image #posts.content	{
		margin: 50px 0 0 0;
	}
	
	.nav-menu-wrapper{
		display:block;
		width: 100%;
	}
	.exposed-nav-wrapper{
		display: none;
	}

	.nav-menu-wrapper .nav-menu,
    .nav-menu-wrapper:not(.exposed) .nav-menu {
        float: left;
        margin: 0;
		/*width: 100%;*/
		width: auto;
		height: 46px;
        border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		/*border-bottom: 2px solid #ccc;*/
		background: none;
    }
	.nav-menu-wrapper{
		top: 0;
		left: 0;
		border-bottom: 2px solid #ccc;
	}
	.nav-menu .selector {
		top: 10px;
		left: 10px;
	}
	.nav-menu-wrapper .nav-menu .pop-menu{
		top: 7px;
		left: 50px;
	}
	.nav-menu-wrapper .nav-menu .pop-menu.active{
		left: 50px;
	}
	
	
	
	
	
	


    .header-image-wrapper {
        height: 200px;
    }

    .answer_form_container iframe {
        min-height: 143px;
    }

}

@media screen and (max-width: 400px) {

    iframe[src^="//instagram"] {
        min-height: 455px;
    }

}

/* mobile-ify */
@media screen and (max-device-width: 568px) and (max-width: 568px) {

    body {
        font-size: 15px;
    }
	.content{
		width: auto;
	}
	
	.nav-menu-wrapper{
		display:block;
	}
	
	.header-image-wrapper.header-image-wrapper-nomobile {
		display: none;
	}
	.header-image-wrapper.header-image-wrapper-mobile {
		display: block;
		height: 36px;
		position: absolute;
		top: 7px;
		left: 46px;
		z-index: 9999;
		background: none;		
    }
	.header-image {
		width: 76%;
		margin: 0 2%;
	}
	.header-image-poweredby {
		width: 18%;
		margin: 0 1%;
	}
	.contain-header-image #posts.no-title-desc.avatar-hidden,
	.contain-header-image #posts.content	{
		margin: 50px 0 0 0;
	}
	
	
	
	#tumblr_controls {
        position: fixed;
        margin-top: 3px;
        z-index: 5; /* z-index above slide down nav menu */
    }

    .no-image #header {
        margin-top: 115px;
    }

    .description {
        margin-top: 35px;
    }

    h1 {
        font-size: 30px;
        margin-top: 30px;
    }

    .avatar-hidden h1 {
        margin-top: 15px;
    }

    .avatar-hidden .description {
        margin-top: 20px;
    }

    h1 + .description {
        margin-top: 0 !important;
    }

    #posts,
    #posts.no-title-desc.avatar-hidden,
    #posts.no-title-desc.avatar-style-hidden {
        margin-top: 15px;
    }

    #posts.no-image.no-title-desc.avatar-hidden,
    #posts.no-image.no-title-desc.avatar-style-hidden {
        margin-top: 45px;
    }

    #posts.no-title-desc.avatar-style-circle,
    #posts.no-title-desc.avatar-style-square {
        margin-top: 40px;
    }

    #posts.no-title-desc.exposed-nav {
        margin-top: 10px;
    }

    .content {
        padding: 1px 10px;
    }

    .narrow .content {
        max-width: 702px; /* Upscale in-case of narrow layout */
    }

    /* Nav menu behaves differently on mobile, it slides down from top */
    .nav-menu-wrapper {
        position: fixed;
        width: 100%;
		height: 46px;
		margin: 0;
		top: 0;
		left: 0;
		border-bottom: 2px solid #ccc;
    }

    .nav-menu-wrapper .nav-menu,
    .nav-menu-wrapper:not(.exposed) .nav-menu {
        float: left;
        margin: 0;
		/*width: 100%;*/
		width: auto;
		height: 46px;
        border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		/*border-bottom: 2px solid #ccc;*/
    }

    .nav-menu-wrapper .nav-menu.active:before {
        content: '';
        background: #fff;
        position: absolute;
        left: 0;
        right: 0;
        height: 42px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        z-index: 11; /* advanced snake riding */
    }

    .nav-menu-wrapper .nav-menu.active:after {
        content: '';
        height: 41px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        z-index: 10; /* ssssssnake */
    }

    .nav-menu .selector {
        position: absolute;
        height: 29px;
        width: 31px;
        z-index: 11;
        top: 10px;
        left: 10px;
    }

    .active .bar-icon {
        background: #444;
    }

    .nav-menu-bg {
        background: #fff;
        width: 100%;
        height: 42px;
        opacity: 0;
        position: fixed;
        top: 0;
        -webkit-transition: opacity 0.2s linear;
        -o-transition: opacity 0.2s linear;
        -ms-transition: opacity 0.2s linear;
        -moz-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear;
        z-index: 4; /* higher than most content, lower than tumblr_controls */
    }

    .below-header .nav-menu-bg {
        opacity: 0.9;
        box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    }

    .below-header .selector .bar-icon {
        background: #444;
    }

    .below-header .selector .icon,
    .search-only .selector.active .icon {
        color: #444;
    }

    .search-only {
        display: none;
    }

    /*.search {
        display: none;
    }*/

    .exposed-nav-wrapper .nav-menu .pop-menu {
        position: fixed;
        background: transparent; /* background is on menu instead */
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-radius: 0;
        right: 60px;
        top: -1px;
        opacity: 0.9;
        width: 100%;
        height: 100%;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
        -webkit-transition: opacity 0.1s ease, -webkit-transform 0.25s ease-out;
        -webkit-transform: translateY(-100%);
    }
	.nav-menu-wrapper .nav-menu .pop-menu {
        position: fixed;
        background: transparent; /* background is on menu instead */
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-radius: 0;
        left: 0;
		top: -1px;
        opacity: 0.9;
        width: 100%;
        height: 100%;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
        -webkit-transition: opacity 0.1s ease, -webkit-transform 0.25s ease-out;
        -webkit-transform: translateY(-100%);
    }

    .exposed-nav-wrapper .nav-menu .pop-menu.active {
        right: 60px;
        opacity: 1;
        -webkit-transform: translateY(0);
    }
	.nav-menu-wrapper .nav-menu .pop-menu.active {
        left: 0;
		opacity: 1;
        -webkit-transform: translateY(0);
		overflow: visible;
    }

    .nav-menu .pop-menu ul {
        background: #fff;
        margin: 0 !important;
        padding: 42px 10px 2px;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .nav-menu .pop-menu ul li {
        border-top: 1px solid rgba(0, 0, 0, 0.07);
    }

    .nav-menu .pop-menu.west li:first-child {
        border-top: none;
        border-bottom: none;
    }

    .nav-menu .pop-menu.west li:first-child:before {
        display: none;
    }

    .nav-menu .pop-menu ul li a {
        padding: 7px 40px 8px 10px;
        font-size: 15px;
        font-weight: normal;
    }

    #search {
        margin: 8px 10px;
    }

    #search input {
        font-weight: normal;
        font-size: 16px; /* avoid zoom in */
		width: 75%;
		
    }

    #search button {
        top: -2px;
    }

    .search-only .selector .icon {
        /* Don't transition the icon, there's already a bunch of animations going on */
        -webkit-transition: none;
        -o-transition: none;
        -ms-transition: none;
        -moz-transition: none;
        transition: none;
    }

    .search-only .selector.show .icon-search_16 {
        display: none;
        opacity: 1;
    }

    .search-only .selector.show .icon-close {
        display: block;
        opacity: 1;
    }

    .below-header.no-header-image .search-only .selector .icon {
        color: #444;
    }

    .header-image {
        /*override parallax inline styles */
        -webkit-transform: translate3d(0, 0, 0) !important;
        -o-transform: translate3d(0, 0, 0) !important;
        -ms-transform: translate3d(0, 0, 0) !important;
        -moz-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .avatar-wrapper {
        margin-left: -40px;
        top: -60px;
    }

    .avatar-style-square .avatar-wrapper {
        margin-left: -40px;
    }

    .user-avatar {
        background-size: 80px 80px;
        border-radius: 3px;
        height: 80px;
        width: 80px;
        border: 3px solid #f6f6f6;
    }

    .attribution-tags .reblog {
        display: none; /* hide the reblog link the attributions */
    }

    .reblog-header {
        display: block;
        font-size: 14px;
        font-weight: bold;
        padding: 11px 15px;
    }

    .reblog-header a {
        color: #a7a7a7;
        text-decoration: none;
    }

    .reblog-header .reblog-link .icon-reblog {
        font-size: 16px;
        vertical-align: -3px;
    }

    .text .reblog-header,
    .quote .reblog-header,
    .answer .reblog-header {
        margin-bottom: -6px;
        padding-bottom: 0;
    }

    .chat .reblog-header {
        margin-bottom: -4px;
        padding-bottom: 0;
    }

    .link .reblog-header {
        padding-bottom: 1px;
    }

    .photo .reblog-header,
    .photoset .reblog-header {
        padding-bottom: 0;
    }

    .post {
        margin-bottom: 0;
        padding: 20px 15px 5px;
    }

    .chat .post {
        padding-bottom: 0;
    }

    .post .caption {
        margin: 15px;
    }

    .post blockquote {
        padding-left: 13px;
    }

    .photoset .post {
        padding: 0;
    }

    .photoset figure,
    .photo figure {
        margin: 10px -4px 0;
    }

    .photoset .caption {
        margin: 15px 19px 10px;
    }

    .photoset .attribution-tags {
        margin: 0 15px;
    }

    .photo-wrapper:not(.high-res) + .caption {
        margin: 0 5px;
    }

    .photo figure img {
        background: #fff; /* for transparent images */
        margin: 0 !important;
        width: 100%;
    }

    .photo .photo-wrapper {
        border-radius: 1px;
        margin: 0 0 -1px;
    }

    .photo .photo-wrapper-inner {
        padding: 0;
    }

    .photo-wrapper:not(.high-res) + .caption {
        padding: 15px;
    }

    #posts article {
        margin-bottom: 15px;
    }

    .post-wrapper {
        overflow: visible;
		height: auto;
		padding-bottom:44px;
    }
	
	.ticket-button {
		bottom: -30px;
	}
	
	.linkblock {
		height: 100%;
	}

    .panel {
        opacity: 1;
		z-index: 2;
    }

    .post-footer {
        opacity: 1;
    }

    .post-footer ul {
        margin: 0 0 0 15px;
    }

    .post-controls > ul {
        margin-right: 5px;
    }

    .index-page .meta {
        font-size: 15px;
    }

    .post h2,
    .quote blockquote {
        font-size: 18px;
    }

    .link-wrapper h2 {
        margin-top: 10px;
    }

    .link-wrapper h2 a {
        border-radius: 0;
        font-size: 15px;
    }

    .link-wrapper .link-title {
        line-height: 20px;
    }

    .link-wrapper .link-title:after {
        font-size: 10px;
    }

    .link-wrapper .link-host {
        font-size: 15px;
    }

    .quote .post > blockquote {
        font-size: 22px;
    }

    .quote blockquote.medium {
        font-size: 18px;
    }

    .quote blockquote.long {
        font-size: 15px;
    }

    .caption + .attribution-tags,
    .with-caption + .attribution-tags {
        margin-top: -15px;
    }

    .attribution-tags {
        margin: 0 15px;
    }

    .text .attribution-tags,
    .answer .attribution-tags,
    .quote .attribution-tags {
        margin: 0 0 -5px;
    }

    .attribution-tags ul {
        margin-bottom: 0;
    }

    .attribution-tags li {
        font-size: 15px;
        margin: 0 15px 5px 0;
    }

    .video .video-wrapper iframe[src^="//instagram"] {
        min-height: 385px;
    }

    .video .video-wrapper a {
        max-height: 300px;
    }

    .video .video-wrapper a div {
        background-size: 50px 50px;
    }

    #pagination a {
        margin-bottom: 20px;
    }

    .notes-wrapper {
        margin: 5px 15px;
    }
	
.footer-content-service,
.footer-content-right,
.footer-content-infos,
.footer-content-newsletter {
	width: 100%;
    padding: 0;
}
	

}

@media screen and (max-device-width: 320px) and (orientation: portrait) {
    
	.header-image-wrapper.header-image-wrapper-nomobile {
		display: none;
	}
	.header-image-wrapper.header-image-wrapper-mobile {
		display: block;
		height: 36px;
		position: absolute;
		top: 0;
		left: 46px;
		z-index: 9999;		
    }
	.header-image {
		width: 76%;
		margin: 0 2%;
	}
	.header-image-poweredby {
		width: 18%;
		margin: 0 1%;
	}
}

/******************************************************************************
 * PRINT STYLES
 * Added here to avoid otherwise required HTTP connection
 ******************************************************************************/
@media print {

    * {
        background: transparent !important;
        color: #444 !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        color: #444 !important;
        text-decoration: underline;
    }

    pre,
    blockquote {
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
        /* css-discuss.incutio.com/wiki/Printing_Tables */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    @page  {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .print-only {
        display: block;
        visibility: visible;
    }

    #tumblr_controls,
    .post-controls {
        display: none !important;
    }

    .header-image-wrapper {
        height: 100px !important; /* override parallax inline styles */
    }

    .user-avatar img {
        height: 80px;
        width: 80px;
    }

}

/******************************************************************************
 * RETINA
 * High res!
 ******************************************************************************/
@media only screen and (-webkit-min-device-pixel-ratio: 2 ), only screen and ( -moz-min-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 ) {

    .avatar_frame:after {
        background-image: url('http://static.tumblr.com/vr9xgox/Df0n0lgok/sprite-2x.png');
        background-size: 100px 24px; /* 1x dimensions */
    }

}


div.no-title-desc.exposed-nav-wrapper.content {
padding:0;
margin: 0 auto;
width: 100%;
}

.caption a {text-decoration: none;}

.photo-wrapper {position: relative;}

.buy-tickets a {
  background-image: url(http://static.tumblr.com/jppvkd4/IBynd6xvn/cart.svg);
  background-size: 25px 25px;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 100;
  right: 15px;
  top: 10px;
  width: 25px;
  height: 25px;
  opacity: 0.5;
}
.video .video-wrapper {padding-bottom: 91%;}

.teaserbild {margin: -20px -20px 36px -20px; display: block; border-radius: 5px 5px 5px 5px; overflow: hidden; }

.formbox-container-firstname,
.formbox-container-name,
.formbox-container-email
{
    background: #fff;
    padding: 5px;
    font-family: Helvetica;
    font-size: 16px;
    margin: 4px 0 10px 0;
}
.formbox-container-select
{
    background: #fff;
    padding: 4px 5px;
    font-family: Helvetica;
    font-size: 16px;
    margin: 2px 0 0 0;
	width: 30%;
	margin-right: 1%;
	color: #bbb;
}
.formbox-container-firstname
{
	width: 31%;
	margin-right: 1%;
	margin-left: 1%;
}
.formbox-container-name
{
	width: 31%;
	margin-left: 1%;
}
.formbox-container-email
{
	width: 64%;
	margin-right: 3%;
	margin-top: 1px;
}
.formbox-container-button
{
	width: 31%;
	display: inline-block;
    white-space: nowrap;
    height: 32px;
    margin: 0;
    padding: 0 22px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-style: normal;
    font-size: 15px;
    line-height: 32px;
    cursor: pointer;
    border: 0;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    vertical-align: top;
}
@media screen and (max-width: 640px) {
.formbox-container-firstname,
.formbox-container-name,
.formbox-container-email,
.formbox-container-select,
.formbox-container-button
{
	width: 100%;
	margin: 10px 0 0 0;
}