/* Slideshow */
.slideshow
{
	cursor: default;
	position: static;
}

/* Items */
.slideshow-items { overflow: hidden; }

/* Item */
.slideshow-item
{
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.slideshow-item.show
{
	visibility: visible;
	opacity: 1;
	position: relative;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}

/* Informaion */
.slideshow-information
{
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
}

/* Tilte */
.slideshow-title
{
	margin-bottom: 10px;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 36px;
	color: #fff;
}

/* Description */
.slideshow-description
{
	margin-bottom: 45px;
	font-size: 1em;
	font-weight: lighter;
	line-height: 24px;
	color: #fff;
}

/* Button */
#wrapper .slideshow-btn
{
	width: auto;
	margin-right: 5px;
	margin-left: 5px;
	padding: 0 18px;
	font-size: 1em;
	line-height: 36px;
	color: #353535;
	background-color: #fff;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .3), 0 -5px 10px rgba(255, 255, 255, .3);
	border-radius: 18px;
}

#wrapper .slideshow-btn:hover { color: #9e9e9e; }

/* Image */
.slideshow-image
{
	margin: 0;
	-webkit-transform: scale(.5);
	transform: scale(.5);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.slideshow-item.show .slideshow-image
{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}

/* Navigation */
.slideshow-navs
{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.slideshow[count-items="0"] .slideshow-navs, .slideshow[count-items="1"] .slideshow-navs { display: none; }

.slideshow-nav
{
	width: 10px;
	height: 10px;
	min-height: 10px;
	margin: 10px 3px;
	padding: 0;
	background-color: rgba(0, 0, 0, .3);
	border-radius: 5px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.slideshow-nav.show { background-color: #fff; }
#wrapper .slideshow-nav:hover { background-color: rgba(0, 0, 0, .8); }
#wrapper .slideshow-nav.show:hover { background-color: #fff; }

/* Next, Prev */
#wrapper .slideshow-prev, #wrapper .slideshow-next
{
	width: 40px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	color: #a6a6a6;
	background-color: #fff;
	border-radius: 0;
	box-shadow: 0 0 2px rgba(0, 0, 0, .15);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
}

[dir="rtl"] #wrapper .slideshow-prev, [dir="ltr"] #wrapper .slideshow-next
{
	right: 0;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

[dir="ltr"] #wrapper .slideshow-prev, [dir="rtl"] #wrapper .slideshow-next
{
	left: 0;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

#wrapper .slideshow-prev:hover, #wrapper .slideshow-next:hover
{
	color: #444;
	box-shadow: 0 5px 7px rgba(0, 0, 0, .08);
}

#wrapper .slideshow-prev span, #wrapper .slideshow-next span
{
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
}