/*
 * jquery.rs.carousel.css v0.8.5
 *
 * Copyright (c) 2011 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 ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.rs-carousel li {
	margin: 0;
	padding: 0;
	
	position: relative;
}
	body.archive:not(.zoomedin) article .rs-carousel li {
		border-right: 1px solid #999;
	}
/*.rs-carousel-item.empty {
	width: 100px;
	height: 1px;
}*/
.single article:not(.ajaxed) .rs-carousel-continuous.rs-carousel-init .rs-carousel-item-clone {
	/*visibility: hidden;*/
	opacity: 0;
}
.archive .rs-carousel-item-clone {
	/*display: none;*/
	/*visibility: hidden;*/
	opacity: 0;
}

.rs-carousel {
	/*height: 125px;*/
}

.rs-carousel .rs-carousel-mask {
	overflow: hidden;
}

	.rs-carousel .rs-carousel-runner {
	    position: relative;
	}
	.js.oldie .rs-carousel .rs-carousel-runner {
		/* prevent FOUC in IE */
		width: 9999px;	
		left: 100px;
		
		/*display: block;
		height: 125px;
		z-index: 100;*/
	}
		.rs-carousel.rs-carousel-horizontal .rs-carousel-runner {
			/*height: 125px;*/
		}
		
			.rs-carousel.rs-carousel-horizontal .rs-carousel-item {
				float: left;
				/*height: 100%;
				display: block;*/
			}
			
			.rs-carousel.rs-carousel-horizontal .rs-carousel-item.text {
				/*position: fixed;
				left: 100px;*/
			}
			
			.rs-carousel.rs-carousel-horizontal .rs-carousel-item img {
				/*height: 100% !important;
				width: auto !important;
				display: block;*/
			}
		

/*
 * jquery.rs.carousel-touch.css v0.8.5
 *
 * Copyright (c) 2011 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:
 *  jquery.rs.carousel.css v0.8.5+
 */

/* brogramming: disabled because it conflicts with zoom animation */
/*.rs-carousel .rs-carousel-mask {
	position: relative;
}

	.rs-carousel .rs-carousel-runner.rs-carousel-runner-transition {
		-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 .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);
	}*/