/*!
 * jQuery RadiantScroller
 * Version: 0.1.1 (05/12/2014)
 * Copyright (c) 2014 Ilya Bodrov (http://www.radiant-wind.com/plugins/radiant_scroller)
 */

/* ======== Scroller and elements ======== */
.radiant_scroller {
	position: relative;
}
.radiant_scroller_wrapper {
	overflow: hidden;
}
.radiant_scroller_wrapper .scroller-el {
	display: block;
	float: left;
	position: relative;
}
.radiant_scroller .radiant_scroller_row .scroller-el:last-of-type {
	margin-right: 0;
}
.radiant_scroller .radiant_scroller_row:last-of-type .scroller-el {
	margin-bottom: 0;
}
/* ======== Navigatonal buttons (previous/next) ======== */
.radiant_scroller .radiant-navigation {
	clear: both;
}
.radiant_scroller .radiant-next, .radiant_scroller .radiant-prev {
	position: absolute;
	cursor: pointer;
}
/* ======== Pagination ======== */
.radiant_scroller .radiant-pagination .radiant-page {
	display: inline-block;
	margin-right: 10px;
	cursor: pointer;
}
.radiant_scroller .radiant-pagination .radiant-page:last-of-type {
	margin-right: 0;
}
/* ======== Captions ======== */
.radiant_scroller .radiant-caption {
	position: absolute;
	bottom: 0;
	text-align: center;
	color: #fff;
	width: 100%;
	padding-top: 5px;
	padding-bottom: 5px;
	display: none;
	background-color: rgba(44,44,44,0.5);
}
.radiant_scroller_wrapper {
}
.radiant_scroller .scroller-el {
	width: 1120px;
	margin: 0;
}
.radiant_scroller .radiant-next, .radiant_scroller .radiant-prev {
	bottom: -13px;
	background-image: url('nav.png');
	width: 21px;
	height: 43px;
}
.radiant_scroller .radiant-next {
	right: -42px;
	top: 384px;
	background-position: 0 -43px;
}
.radiant_scroller .radiant-prev {
	left: -42px;
	top: 384px;
	background-position: 0 0;
}
.radiant_scroller .radiant-pagination {
	text-align: center;
	margin-top: 7px;
}
.radiant_scroller .radiant-pagination .radiant-page {
	width: 15px;
	height: 15px;
	border-radius: 15px;
	background-color: #ccc;
	border: 1px solid #ccc;
}
.radiant_scroller .radiant-pagination .radiant-page:hover {
	background-color: #efefef;
}
.radiant_scroller .radiant-pagination .current-page {
	background-color: #808080;
	border-color: #888;
}
