/* Drupal 7 Framework - Created by André Griffin
------------------------------------------------
[Table of contents]

 0.Reset
 1.Global
 2.Layout
 3.Main
 4.Sidebars
 5.Header
 6.Navigation
 7.Nodes
 8.Comments
 9.Blocks
10.Footer
11.CSS Support

Font sizes: 16px base font with 24px line-height
------------------------------------------------
       font-size / line-height / margin-top
------------------------------------------------
40px = 2.5em     / 1.2         / 0.6em
32px = 2em       / 1.5         / 0.75em
24px = 1.5em     / 1           / 1em
20px = 1.25em    / 1.2         / 1.2em
16px = 1em       / 1..5        / 1.5em
14px = 0.875em   / 1.7143      / 1.7143em
13px = 0.8125em  / 1.8462      / 1.8462em
12px = 0.75em    / 2           / 2em
10px = 0.625em   / 2.4         / 2.4em

Equation for font sizing:
  Desired px ÷ Default (or parent) px = em size
------------------------------------------------*/

/**
 * 0.RESET
 */

@import "reset.css";

/**
 * 1.GLOBAL
 */

html {
	font-size: 12px;
}

body {
  background: #fff;
  color: #222;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 100%;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

::selection {
  background: black; /* WebKit/Blink Browsers */
  color: white;
}
::-moz-selection {
  background: black; /* Gecko Browsers */
  color: white;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-style: normal;
  font-weight: bold;
}

strong {
 font-weight: bold;
}

em {
	font-style: italic;
}

u {
	text-decoration: underline;
}

h1, .h1 {
  font-size: 2em;
  line-height: 1.5;
  margin-top: 0.75em;
}

h2, .h2 {
  font-size: 1.5em;
  line-height: 1;
  margin-top: 1em;
}

h3, .h3 {
  font-size: 1.25em;
  line-height: 1.2;
  margin-top: 1.2em;
}

h4, h5, h6, .h4, .h5, .h6 {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 1.5em;
}

p {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
}

a { color: #000; text-decoration: none; }

a:visited { color: #000; }

a:hover, a:active, li a.active  { color: #000; }

a:focus { outline: thin dotted; }

a:hover, a:active { outline: 0; }

/* apply common styling after reset.css */

li ul, li ol {  margin: 0; }
ul, ol {  margin: 0 1.5em 1.5em 0;  padding-left: 1.5em; }
ul {  list-style-type: disc; }
ol {  list-style-type: decimal; }
dl {  margin: 0 0 1.5em 0; }
dl dt {  font-weight: bold; }
dd {  margin-left: 1.5em; }
hr {  background: #666;  border: none;  clear: both;  float: none;  height: 1px;  margin: 0 0 1.4375em;  width: 100%; }
fieldset {  border: 1px solid #ccc;  margin: 0 0 1.4375em;  padding: 1.5em; }
table {  margin-bottom: 1.5em;  width: 100%; }
th, tr, td {  vertical-align: middle; }
th { padding-right: 1em; }
.sticky-header th, .sticky-table th {  border-bottom: 3px solid #ccc;  padding-right: 1em;  text-align: left; }

/**
 * 2.LAYOUT
 */

#container {
  margin: 0 auto;
  padding: 0;
}

/**
 * 3.MAIN
 */

/* 1 column: global values*/

#main {
  display: inline;
  margin: 0;
}

/* 3 columns */

body.two-sidebars #main {
  float: left;
  margin: 0 0 0 240px;
  padding: 0;
  width: 460px;
}

/* 2 columns: sidebar-first */

body.sidebar-first #main {
  float: right;
  margin: 0;
  padding: 0;
  width: 700px;
}

/* 2 columns: sidebar-second */

body.sidebar-second #main {
  float: left;
  margin: 0;
  padding: 0;
  width: 700px;
}

/**
 * 4.SIDEBARS
 */

/* 3 columns: sidebar-first */

body.two-sidebars #sidebar-first {
  float: left;
  margin: 0 0 0 -700px;
  padding: 0;
  width: 220px;
}

/* 3 columns: sidebar-second */

body.two-sidebars #sidebar-second {
  float: right;
  margin: 0;
  padding: 0;
  width: 220px;
}

/* 2 columns: sidebar-first */

body.sidebar-first #sidebar-first {
  float: left;
  margin: 0;
  padding: 0;
  width: 220px;
}

/* 2 columns: sidebar-second */

body.sidebar-second #sidebar-second {
  float: right;
  margin: 0;
  padding: 0;
  width: 220px;
}

/**
 * 5.HEADER
 */

#header {
  margin: 0;
  padding: 0;
  position: relative;
}

#header #logo {
  float: left;
  margin: 0 1em 1.5em 0;
}

#header #site-name-slogan {
  float: left;
  margin: 0 0 1.5em;
}

#header #site-name {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

#header #site-name a:hover {
  text-decoration: none;
}

#header #site-slogan {
  margin: 0;
}

/**
 * 6.NAVIGATION
 */

#navigation {
  clear: both;
  margin: 0;
  padding: 0;
}

#navigation ul#main-menu {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 0;
}

#navigation ul#main-menu li {
  float: left;
  margin: 0;
  padding: 0;
}

#navigation ul#main-menu li a {
  display: block;
  padding: 0 2em 0 0;
}

#navigation ul#secondary-menu {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 0;
}

#navigation ul#secondary-menu li {
  float: left;
  margin: 0;
  padding: 0;
}

#navigation ul#secondary-menu li a {
  display: block;
  padding: 0 2em 0 0;
}

.breadcrumb {
  clear: both;
  padding: 1.5em 0 0;
}

#skip-link {
  position: absolute;
}

/* menus and item lists */

.item-list ul {
  margin: 0;
  padding: 0 0 0 1.5em;
}

.item-list ul li {
  margin: 0;
  padding: 0;
}

ul.menu li {

}

ul.inline {
  clear: both;
}

ul.inline li {
  margin: 0;
  padding: 0 1em 0 0;
}

/* admin tabs */

.tabs-wrapper {
  border-bottom: 1px solid #333;
  margin: 0 0 1.4375em;
}

ul.primary {
  border: none;
  margin: 0;
  padding: 0;
}

ul.primary li a {
  background: none;
  border: none;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0;
  padding: 0 1em;
}

ul.primary li a:hover, ul.primary li a.active {
  background: #666;
  border: none;
  color: #fff;
}

ul.primary li a:hover {
  background: #888;
  text-decoration: none;
}

ul.secondary {
  background: #666;
  border-bottom: none;
  clear: both;
  margin: 0;
  padding: 0;
}

ul.secondary li {
  border-right: none;
}

ul.secondary li a, ul.secondary li a:link {
  border: none;
  color: #ccc;
  display: block;
  float: left;
  line-height: 1.5em;
  padding: 0 1em;
}

ul.secondary li a:hover, ul.secondary li a.active {
  background: #888;
  color: #fff;
  text-decoration: none;
}

ul.secondary a.active {
  border-bottom: none;
}

/**
 * 7.NODES
 */

.node {
  margin-bottom: 1.5em;
}

/* tags */

.field-name-field-tags {
  margin: 0 0 1.5em;
}

.field-name-field-tags .field-item {
  margin: 0 1em 0 0;
}

.field-name-field-tags div {
  display: inline;
}

/* profile */

.profile {
  margin: 1.5em 0;
}

.profile h3 {
  border: none;
}

.profile dt {
  margin-bottom: 0;
}

.profile dd {
  margin-bottom: 1.5em;
}

.password-parent {
  width: 36em;
}

/**
 * 8.COMMENTS
 */

#comments {
  clear: both;
  margin-top: 1.5em;
}

.comment {
  margin-bottom: 1.5em;
}

.comment .new {
  color: red;
  text-transform: capitalize;
  margin-left: 1em;
}

/**
 * 9.BLOCKS
 */

.block {
  margin-bottom: 1.5em;
}

/**
 * 10.FOOTER
 */

#footer {
  clear: both;
  padding: 1.5em 0;
  position: relative;
}

#footer a.feed-icon {
  position: absolute;
  right: 0;
  top: 1.6667em;
}

/**
 * 11.CSS SUPPORT
 *
 * Built-in classes:
 * .clearfix                            | contain floats
 * .element-invisible                   | hide element visually
 * .element-invisible.element-focusable | allow element to be focusable when navigated to via keyboard
 * .element-hidden                      | hide visually and from screenreaders
 */

/* clear floats */
.clear { clear: both; }

/* display block */
.display-block { display: block; }


#block-locale-language {

}





/* SVG LOGO FUN */
/*
#fwb-logo,
#fwb-flip-logo {
	height: 100%;
	background: url("graphics/logo_fwb.png") no-repeat left center;
	background-size:auto 100%;
	position: fixed;
	width: 100%;
	z-index: 20;
	pointer-events: none;
	left: 0;
	top:0;
	overflow: visible;
}
*/
#fwb-logo {
	/*background: url("logo.svg") no-repeat left center;
	background-size:contain;*/
	/*background: url("graphics/logo_fwb.png") no-repeat left center;
	background-size:auto 100%;*/
	width: 0px;
	position: fixed;
	z-index: 0;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 40;
	pointer-events: none;

}



#fwb-logo img {
	height: 100%;
	height: 100vh;
	width: auto;
}

#header ul.menu {
	position: fixed;
	z-index: 100;
	left: 0;
	right: 0;
	top: 20px;
	text-align: center;
	font-size: 14px;
}

body.toolbar #header ul.menu {
	top: 75px;
	background: white;
}

.region.region-footer {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 20;
}

ul.language-switcher-locale-url {
	margin: 0;
	padding: 0;
}

.region.region-footer .block {
	margin-bottom: 0;
}

#header ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style: none !important;
	list-style-image: none !important;
	display: inline-block;
	margin: 0 5px;
}

#header ul li.active a,
#header ul li.active-trail a {
	text-decoration: underline;
}

/* PAGES*/

#fwb-backdrop {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 20px;
	left: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
	background-color: white;
}

/* EXHIBITORS */
.fwb-exhibitor-name {
	cursor: pointer;
	display: inline-block;
}

.fwb-exhibitor-name.open {
	font-weight: 600;
}


.fwb-exhibitor-name.open:after {
	height: 1px;
	background: black;
	width: 20px;
	content: "";
	display: block;
	margin:2px 0 10px 0;
}

.fwb-exhibitor-hidden {
	visibility: hidden;
	height: 0px;
	opacity: 0;
	overflow: hidden;
	font-size: 11px;
	font-weight: 200;
}

.fwb-exhibitor-web {
	font-weight: 400;
	font-size: 10px;
	margin: 5px 0;
}
.fwb-exhibitor-hidden p {
	margin-bottom: 5px;
}

.fwb-exhibitor-hidden p:last-child {
	margin-bottom: 0;
}

.fwb-exhibitor-hidden.shown {
	visibility: visible;
	height: auto;
	opacity: 1;
	margin:5px 0 20px 0;

}


.fwb-exhibitor-info {
	max-width: 400px;
}

.fwb-exhibitor-name:hover {
	text-decoration: underline;
}

.fwb-exhibitor-name.open:hover {
	text-decoration: none;
}


#main {
	display: block;
	position: absolute;
	right: 25px;
	bottom: 150px;
	width: 50vw;
	height: 50vh;
	overflow: hidden;
	background:white;
	padding: 20px;
	border: 3px solid black;
}

html.js #container {
	-webkit-transition:1s;
	-moz-transition:1s;
	-ms-transition:1s;
	-o-transition:1s;
	transition:1s;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 0;
	-webkit-transform: translate3d(100vw,0,0);
	-moz-transform: translate3d(100vw,0,0);
	-ms-transform: translate3d(100vw,0,0);
	-o-transform: translate3d(100vw,0,0);
	transform: translate3d(100vw,0,0);
	opacity: 0;
}

html.js #fwb-backdrop {
	-webkit-transition:1s;
	-moz-transition:1s;
	-ms-transition:1s;
	-o-transition:1s;
	transition:1s;
	-webkit-transform: translate3d(100vw,0,0);
	-moz-transform: translate3d(100vw,0,0);
	-ms-transform: translate3d(100vw,0,0);
	-o-transform: translate3d(100vw,0,0);
	transform: translate3d(100vw,0,0);
	opacity: 0;
}

html.js.loaded #fwb-backdrop {
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}

html.js.loaded #container {
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}

html.js.animate #fwb-backdrop {
	-webkit-transform: translate3d(-100vw,0,0);
	-moz-transform: translate3d(-100vw,0,0);
	-ms-transform: translate3d(-100vw,0,0);
	-o-transform: translate3d(-100vw,0,0);
	transform: translate3d(-100vw,0,0);
	opacity: 0;
}

html.js.animate #container {
	-webkit-transform: translate3d(-100vw,0,0);
	-moz-transform: translate3d(-100vw,0,0);
	-ms-transform: translate3d(-100vw,0,0);
	-o-transform: translate3d(-100vw,0,0);
	transform: translate3d(-100vw,0,0);
	opacity: 0;
}

#main-inner {
	overflow-y: scroll;
	overflow-x: hidden;
	position: absolute;
	top: 47px;
	right: -20px;
	bottom: 20px;
	left: 20px;
	padding:10px 20px 10px 0;
}


#main-inner img {
	max-width: 100%;
	height: auto;
}

#main-content {
	padding-right: 20px;
}

#main.scrolling {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}

#page-title {
	margin-top: 0;
	line-height: 1em;
	font-size: 14px;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 1px solid black;
	text-transform: uppercase;
	letter-spacing: 2px;
}

#fade-top {
	height: 20px;
	background: url(graphics/fade_top.png);
	width: 100%;
	position: absolute;
	z-index: 10;
	pointer-events: none;
	display: none;
}

#fade-bottom {
	height: 20px;
	background: url(graphics/fade_bottom.png);
	display: none;
	width: 100%;
	position: absolute;
	z-index: 10;
	pointer-events: none;
	bottom: 9px;
}




.view .views-exposed-form {
	display: none;
}

html.js .view.has-year {
	opacity: 0;
	-webkit-transition:.15s ease-out;
	-moz-transition:.15s ease-out;
	-ms-transition:.15s ease-out;
	-o-transition:.15s ease-out;
	transition:.15s ease-out;
}

html.js body.show-view .view.has-year {
	opacity: 1;
}


.fwb-years {
	position: absolute;
	right: 20px;
	top: 20px;
	display: inline-block;
}

.fwb-year {
	display: inline-block;
	margin-left: 5px;
	cursor: pointer;
}

.fwb-year.active {
	font-weight: bold;
}

#main-inner {

}

#fwb-scroller-holder {
	position: absolute;
	right: 7px;
	width: 10px;
	background: transparent;
	bottom: 20px;
	top: 46px;
	z-index: 25;
	overflow: hidden;
	-webkit-transition:.15s ease-out;
	-moz-transition:.15s ease-out;
	-ms-transition:.15s ease-out;
	-o-transition:.15s ease-out;
	transition:.15s ease-out;
	opacity: 0;
}

#fwb-scroller-holder.show {
	opacity: 1;
}

#fwb-scroller-background {
	background: #ebebeb;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	right: 4px;
}

#fwb-scroller {
	height:50px;
	margin-top: -25px;
	width: 3px;
	margin-left: -1px;
	background: black;
	position: absolute;
	right: 3px;
	/*
	-webkit-transition:.15s ease-out;
	-moz-transition:.15s ease-out;
	-ms-transition:.15s ease-out;
	-o-transition:.15s ease-out;
	transition:.15s ease-out;
	*/
}

#fwb-scroller-holder.mousedown #fwb-scroller {
	-webkit-transition:0s;
	-moz-transition:0s;
	-ms-transition:0s;
	-o-transition:0s;
	transition:0s;
}

#fwb-scroller-holder:hover #fwb-scroller,
#fwb-scroller-holder.mousedown #fwb-scroller {
	background: black;
	width: 5px;
	right: 2px;
}

#fwb-scroller.mousedown {
	background: pink;
}

.file-icon {
	display: none;
}

span.file a {
	font-weight: bold;
}

/* EDITIOS */
.node-edition h2 {
	font-size: 12px;
	margin-bottom: 10px;
}

/* editions */
body.page-node-7 #main,
body.page-node-8 #main {
  bottom: 60px;
  height: calc(100vh - 190px);
  width: 40vw;
}

/* press */
body.page-node-11 #main,
body.page-node-12 #main {
	right: 20vw;
  bottom: 25vh;
  height: 300px;
  width: 350px;
}

/* contact */
body.page-node-13 #main,
body.page-node-14 #main {
  bottom: 25vh;
  height: 350px;
  width: 350px;
}




/* placeholder pages */

#container {
	right: 9px;
	z-index: 5;
}

#fwb-backdrop {
	z-index: 2;
	right: 9px;
}

.fwb-placeholder-page {
	height: 100vh;
	width: 2px;
	position: fixed;
	top: 0;
	background: white;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

#fwb-placeholder-page-1 {
	right: 0;
	z-index: -2:
}

#fwb-placeholder-page-2 {
	right: 3px;
	z-index: -3:
}

#fwb-placeholder-page-3 {
	right: 6px;
	z-index: -4:
}

#fwb-placeholder-page-cover {
	right: 9px;
	width: 10px;
	height: 100vh;
	position: fixed;
	top: 0;
	background: white;
}

#mobile-menu {
	display: none;
	width: 20px;
	height: 20px;
	right: 20px;
	top: 20px;
	position: fixed;
	z-index: 999;
}

html.mmenu #mobile-menu {

}

#mobile-menu {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform-origin: 10px 10px;
	-moz-transform-origin: 10px 10px;
	-ms-transform-origin: 10px 10px;
	-o-transform-origin: 10px 10px;
	transform-origin: 10px 10px;
}

#mobile-menu .m-menu-line {
	-webkit-transform-origin: 10px 8px;
	-moz-transform-origin: 10px 8px;
	-ms-transform-origin: 10px 8px;
	-o-transform-origin: 10px 8px;
	transform-origin: 10px 8px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	transition-delay: .5s;
}

html.mmenu #mobile-menu #m-menu-1 {
	-webkit-transform: translateY(7px) scaleX(0.8);
	-moz-transform: translateY(7px) scaleX(0.8);
	-ms-transform: translateY(7px) scaleX(0.8);
	-o-transform: translateY(7px) scaleX(0.8);
	transform: translateY(7px) scaleX(0.8);
}
html.mmenu #mobile-menu #m-menu-3 {
	-webkit-transform: translateY(-7px) scaleX(0.8);
	-moz-transform: translateY(-7px) scaleX(0.8);
	-ms-transform: translateY(-7px) scaleX(0.8);
	-o-transform: translateY(-7px) scaleX(0.8);
	transform: translateY(-7px) scaleX(0.8);
}

html.mmenu #mobile-menu #m-menu-2 {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

html.mmenu #mobile-menu {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

body.front #main {
	background: none;
	border: none;
	width: auto;
	height: auto;
	right: 20px;
	bottom: 60px;
	font-size: 16px;
}


@media screen and (max-width: 740px) {
	#mobile-menu {
		display: block;
	}
}

@media screen and (max-width: 740px) {

	#container {
		z-index: 25;
	}

	/*
	#main {
		left: 0 !important;
		right: auto !important;
		bottom: 0 !important;
		top: 80px !important;
		width: calc(100vw - 49px) !important;
		height: calc(100vh - 120px) !important;
		z-index: 25 !important;
		border-left: none !important;
		border-right: none !important;
	}
	*/

	body {
		overflow-y: scroll !important;
	}

	body.not-front #main,
	body.not-front #main-inner,
	body.not-front #main-content {
		height: auto !important;
		position: relative !important;
		bottom: auto !important;
		right:  auto !important;
		left: auto !important;
		top: auto !important;
		border: none !important;
	}

	body.node-type-slideshow #main,
	body.node-type-slideshow #main-inner,
	body.node-type-slideshow #main-content {
		height: calc(100vh - 100px) !important;
	}

	body.not-front #main {
		width: calc(100% - 40px) !important;
		margin-top: 50px !important;
	}

	body.node-type-slideshow #main {
		width: calc(100% - 40px) !important;
		margin-top: 0 !important;
	}

	body.front #main {
		background: transparent;
		font-size: 14px;
	}

	#main-inner, #main-content {
		width: 100% !important;
		padding: 0 !important;
	}

	#fwb-scroller-holder {
		display: none;
	}

	body.not-front #fwb-logo {
		display: none !important;
	}

	#main-inner,
	#fwb-scroller-holder {
		bottom: 50px;
	}

	#header ul.menu {
		z-index: 50;

	}

	#header ul.language-switcher-locale-url {
		z-index: 40;
		width: calc(100% - 40px);
		background: white;
		bottom: 0;
		padding: 5px 0;
		text-align: right;
	}

	body.front #header ul.language-switcher-locale-url {
		background: transparent;
	}

	#fwb-placeholder-page-cover,
	.fwb-placeholder-page {
		display: none !important;
	}



	html.js #container {
		-webkit-transform: translate3d(0,0,0);
		-moz-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		-o-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	html.js #fwb-backdrop {
		-webkit-transform: translate3d(0,0,0);
		-moz-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		-o-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	html.js.loaded #fwb-backdrop {
		-webkit-transform: translate3d(0,0,0);
		-moz-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		-o-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	html.js.loaded #container {
		-webkit-transform: translate3d(0,0,0);
		-moz-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		-o-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	html.js.animate #fwb-backdrop {
		-webkit-transform: translate3d(0,0,0);
		-moz-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		-o-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	html.js.animate #container {
		-webkit-transform: translate3d(0,0,0);
		-moz-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		-o-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	#fwb-backdrop {
		display: none;
	}

	#page-title {
		margin-bottom: 10px;
		font-size: 12px;
	}

	.fwb-years {

	}

	#header ul.menu {
		background: white;
		height: 100vh;
		top: -200vh;
		opacity: 0;
		padding: 60px 0 20px 0;
		background: rgba(255,255,255,0.85);
		-webkit-transition:1s;
		-moz-transition:opacity 1s;
		-ms-transition:opacity 1s;
		-o-transition:opacity 1s;
		transition:opacity 1s;
	}

	#header ul.menu li {
		display: block;
	}

	#header ul.menu.mobile {
		top: 0;
		opacity: 1;
	}

}



li.impressum-link.active-trail {
	text-decoration: underline;
}

.language-link.active {
	text-decoration: underline;
}

.region.region-footer {
	width: 300px;
	text-align: right;
	z-index: 100;
}

@media screen and (max-width: 740px) {
	.region.region-footer {
		left: 0;
		right: 0;
		bottom: 0;
		padding: 10px;
		width: auto;
	}

	body.not-front .region.region-footer {
		background: white;
	}
}

#block-block-1 {
	margin-right: 20px;
	margin-bottom: -7px;
}

#block-block-1,
#block-locale-language {
	display: inline-block;
	vertical-align: middle;
}

.social-icon {
  background-size: 20px 20px !important;
  display: inline-block;
  height: 20px;
  width: 20px;
  -webkit-transition:0.25s;
  -moz-transition:0.25s;
  -ms-transition:0.25s;
  -o-transition:0.25s;
  transition:0.25s;
}

.social-icon:hover {
	opacity: 0.75;
}

#social-icon-facebook {
    background: transparent url("graphics/social/facebook.png") no-repeat scroll center center;
}
#social-icon-instagram {
    background: transparent url("graphics/social/instagram.png") no-repeat scroll center center;
}
#social-icon-twitter {
    background: transparent url("graphics/social/twitter.png") no-repeat scroll center center;
}
#social-icon-pinterest {
    background: transparent url("graphics/social/pinterest.png") no-repeat scroll center center;
}


.messages {

}

.view-editions h2 {
	font-size: 12px;
	margin: 5px 0;
}

.view-editions .views-row {
	margin-bottom: 60px;
}




/* GALLERY */


body.node-type-slideshow #main {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	left: 0;
	width: calc(100% - 25px);
	height: 100%;
	margin: auto;
	overflow: hidden;
	background:white;
	padding: 0;
	border: none;
}

body.node-type-slideshow #main #page-title {
	display: none;
}

body.node-type-slideshow #main #main-inner {
	overflow-y: hidden;
	overflow-x: hidden;
	position: absolute;
	top: 0 !important;
	right: 0;
	bottom: 0;
	left: 0;
	padding:0;
}

.slideshow {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.slideshow .slideshow-slide {
	display: table;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: 0.75s;
}

.slideshow .slideshow-slide.active {
	opacity: 1;
	visibility: visible;
}

.slideshow .slideshow-slide .slideshow-slide-image {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.slideshow .slideshow-slide .slideshow-slide-image .slideshow-slide-image-inner {
	display: inline-block;
}

.slideshow .slideshow-slide .slideshow-slide-image img {
	display: inline-block;
	max-width: 70vw;
	max-height: 70vh;
	height: auto;
	width: auto;
}

.slideshow .slideshow-slide .slideshow-slide-title {
	display: block;
	text-align: left;
	font-size: 10px;
}


.slideshow-prev,
.slideshow-next {
	position: absolute;
	width: 30px;
	height: 30px;
	font-size: 30px;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
	transition: 0.25s;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently
	                  supported by Chrome and Opera */
}

.slideshow-prev:hover,
.slideshow-next:hover {
	opacity: 0.5;
}

.slideshow-prev {
	left: 30px;
	bottom: 10px;

}

.slideshow-next {
	left: 70px;
	bottom: 10px;
}

@media screen and (max-width: 740px) {
	.slideshow-prev,
	.slideshow-next {
		visibility: hidden;
	}

	.slideshow .slideshow-slide .slideshow-slide-image img {
		max-height: 60vh;
	}
}


body.node-type-slideshow .tabs-wrapper {
	position: absolute;
	bottom: 30px;
	left: 30px;
	z-index: 10;
}