.b-slider {
	position: relative;
	z-index: 4000;
}

.b-slider__slides {
	margin: 0; padding: 0; list-style: none;
}

.b-slider__item {
	display: block;
	float: left;
	position: relative;
}

.b-slider__item:not(:first-child) {
	height: 0;
}

.b-slider__item--hidden-caption .b-slider__item__caption {
	display: none;
}

.b-slider__item__caption {
	color: #fff;
	padding: 8px 12px;
	font-size: 12px;
}

.b-slider__item__caption h4 {
	color: white;
    font-family: 'Ubuntu', serif;
    font-weight: '500';
    position: relative;
	font-size: 2.8em;
    line-height: 1.2em;
    text-shadow: 1px 1px #191613;
}

.b-slider__item__caption__text,
.b-slider__item__caption__text p {
    font-family: 'Ubuntu', serif;
    color: white;
    font-weight: '400';
    position: relative;
    text-shadow: 1px 1px #191613;
	font-size: 16px;
    line-height: 1.4em;
}

.b-slider__pagination-nav {
	bottom: -2px;
	display: inline-block;;
	position: relative;
	-webkit-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-o-transition-duration: .5s;
	-ms-transition-duration: .5s;
	transition-duration: .5s;
	background: #cccccc;
	height: 30px;
	width: 100px;
	line-height: 12px;
	padding: 9px 12px 7px 12px;
	z-index: 999;
	text-align: center;
	left: 50%;
	margin-left: -36px;
	background: #e1e1e1; /* Old browsers */
	background: -moz-linear-gradient(top,  #e1e1e1 0%, #d3d3d3 2%, #c4c4c4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e1e1e1), color-stop(2%,#d3d3d3), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #e1e1e1 0%,#d3d3d3 2%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #e1e1e1 0%,#d3d3d3 2%,#c4c4c4 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #e1e1e1 0%,#d3d3d3 2%,#c4c4c4 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #e1e1e1 0%,#d3d3d3 2%,#c4c4c4 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e1e1e1', endColorstr='#c4c4c4',GradientType=0 ); /* IE6-9 */
	-webkit-border-radius: 8px 8px 0px 0px;
    border-radius: 8px 8px 0px 0px;
    -webkit-box-shadow:  0px 0px 8px 0px rgba(0, 0, 0, 0.6);
    box-shadow:  0px 0px 8px 0px rgba(0, 0, 0, 0.6);
}

.b-slider__pagination-nav a {
	display: inline-block;
	width: 11px;
	height: 11px;
	line-height: 11px;
	margin: 0 4px;
	background: #666;
	background: rgba(0,0,0,0.5);
	cursor: pointer;
	text-indent: -9999px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); 
	-moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); 
	-o-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); 
	box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
}

.b-slider__pagination-nav a:hover {
	background: #333; 
	background: rgba(0,0,0,0.7);
}

.b-slider__pagination-nav a.selected {
	background: #000; 
	background: rgba(0,0,0,0.9); 
	cursor: default;
}

.b-slider__direction-nav a {
	background-image: url('../img/slider__direction-nav__arrows.png');
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 40px;
	height: 100px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	left: 0;
	text-indent: -9999px;
	overflow: hidden;
	z-index: 4020;
}

.b-slider__direction-nav a.b-slider__direction-nav__next {
	left: auto;
	right: 0;
	background-position: -40px 0;
}

.b-slider__item[data="url"] {
	cursor: pointer;
}