/*
	Fluid typography mixin...
*/
@import 'https://fonts.googleapis.com/css?family=Libre+Franklin:400,500,600&subset=latin-ext';
.scrollable_box {
  position: relative;
}
.scrollable_box_prevnext {
  position: relative;
}
.scrollable {
  /* required settings */
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  width: 1119px;
}
.scrollable .items {
  /* this cannot be too large */
  width: 20000em;
  position: absolute;
}
/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.scrollable .items .item_one {
  float: left;
  position: relative;
  /*background: url(scrollable/calendar_arrow.png) 0px 0px no-repeat;*/
}
.scrollable .items .box {
  float: left;
  overflow: hidden;
  text-align: left;
}
.scrollable .items .box_link {
  cursor: pointer;
}
.scrollable .item_one .img {
  float: left;
  text-align: center;
  margin: 0;
  width: 100%;
}
.scrollable .item_one .img img {
  margin-left: auto;
  margin-right: auto;
}
.scrollable .item_one .text {
  display: none;
}
.scrollable .item_one .text > * {
  color: #fff;
  padding-left: 15px;
  padding-right: 10px;
}
.scrollable .item_one .text > *:first-child {
  padding-top: 15px;
}
.scrollable .item_one .text > *:last-child {
  padding-bottom: 15px;
}
.scrollable_box a.browse {
  width: 49px;
  height: 49px;
  display: block;
  position: absolute;
  background: url(scrollable/arrows.png) 0 center no-repeat;
  top: 15px;
  left: -40px;
  z-index: 5;
}
.scrollable_box a.browse:hover {
  cursor: pointer;
}
.scrollable_box a.browse.right {
  left: auto;
  right: -40px;
  background-position: -51px center;
}
#slideshow_obal2 .scrollable .item_one .img {
  display: none;
}
#slideshow_obal2 .scrollable .item_one .text {
  height: 60px;
  padding: 10px 10px 10px 140px;
  overflow: hidden !important;
  color: #505050;
}
#slideshow_obal2 .scrollable .item_one .text strong {
  color: #000;
}
#slideshow_obal2 .scrollable_box a.browse {
  display: none;
}
.scrollable_box .navi,
.scrollable_box .autonavigation {
  display: none;
}
