﻿/*
 * jquery.rs.carousel.css v0.11.2
 *
 * Copyright (c) 2013 Richard Scarrott
 * http://www.richardscarrott.co.uk
 *
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * Depends:
 *  a basic reset + items must have width & height
 */
	
.rs-carousel-mask { position: relative; overflow: hidden; }

.rs-carousel-runner { position: relative; }
	
.rs-carousel-horizontal .rs-carousel-item { float: left; width: 300px; }

.rs-carousel-runner {
	-moz-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0); }

.rs-carousel-transition .rs-carousel-runner {
	-moz-transition: -moz-transform .400s ease;
	-webkit-transition: -webkit-transform .400s ease;
	-o-transition: -o-transform .400s ease;
	-ms-transition: -ms-transform .400s ease;
	transition: transform .400s ease; }

.rs-carousel ul {
	list-style: none;
	margin: 0;
	padding: 0; }
	
.rs-carousel li {
	margin-left: 0;
	padding: 0; }

.rs-carousel-item   { margin-right: 24px; width: 280px; height: 455px; }
.rs-carousel-item   { margin-right: 24px; width: 280px; height: 455px; }

.rs-carousel-item:last-of-type  { margin-right: 0; }

.rs-carousel-action-prev {
	position: absolute;
	left: -14px;
	top: 40%;
	width: 24px;
	height: 23px;
	text-indent: -100px;
	overflow: hidden;
	background: url(/Images/Default/carousel-prev.png) 0px -46px no-repeat;
	background-size: 14px auto; }
	
.rs-carousel-action-prev:hover { cursor: default; }
	
.rs-carousel-action-next {
	position: absolute;
	right: -14px;
	top: 40%;
	width: 24px;
	height: 23px;
	text-indent: -100px;
	overflow: hidden;
	background: url(/Images/Default/carousel-next.png) 0px -46px no-repeat;
	background-size: 14px auto; }
	
.rs-carousel-action-next:hover { cursor: default; }
	
.rs-carousel-action-prev.rs-carousel-action-active { background-position: 0px 0px; }

.rs-carousel-action-next.rs-carousel-action-active { background-position: 7px 0px; }
	
.rs-carousel-action-prev.rs-carousel-action-active:hover { background-position: 0px -23px; cursor: pointer; }

.rs-carousel-action-next.rs-carousel-action-active:hover { background-position: 7px -23px; cursor: pointer; }

@media only screen and (max-width: 1000px) {
	
	.rs-carousel { margin: 0 14px; }
	
	.rs-carousel-action-prev {
		left: 7px;
		top: 40%; }
		
	.rs-carousel-action-next {
		right: 7px;
		top: 40%; }
	
}

@media only screen and (max-width: 768px) {
	
	.rs-carousel { margin: 0 24px; }
	
	.rs-carousel-action-prev {
		left: 7px;
		top: 40%; }
		
	.rs-carousel-action-next {
		right: 7px;
		top: 40%; }
	
}

@media only screen and (max-width: 640px) {
	
	.rs-carousel { margin: 0; }
	
	.rs-carousel ul li { margin: 0 24px; }
	
}

@media only screen and (max-width: 640px) {

.rs-carousel-item:nth-of-type(3n)  { margin-right: 0; }
.rs-carousel-item:nth-of-type(3n+4)  { margin-left: 24px; }

}