﻿/**
*	Really Simpleâ„¢ Slideshow -- CSS
*/

.rs-slideshow1 {
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-khtml-border-radius: 12px;
	height: 260px;
	margin: 2px auto;
	overflow: hidden;
	position: relative;
	width: 175px;
}

.rs-slideshow1 .slide-container {
	background-color: #444;
	position: absolute;
	height: 100%;
	left: 0;
	overflow: hidden;
	top: 0;
	width: 100%;
}

.rs-slideshow1 .slide-container img {
	position: relative;
}

.rs-slideshow1 .slide-container .slide-caption {
	background-color: #000;
	bottom: 0;
	color: #fff;
	display: block;
	left: 0;
	padding: 6px 12px;
	position: absolute;
	text-align: center;
	right: 0;
	filter: alpha(opacity=70); /* internet explorer */
	-khtml-opacity: 0.7;      /* khtml, old safari */
	-moz-opacity: 0.7;       /* mozilla, netscape */
	opacity: 0.7;           /* fx, safari, opera */
}

.rs-slideshow1 .slides {
	display: none;
}

.rs-slideshow1 .slide-container img,
.rs-slideshow1 .slide-container .slide-caption,
.rs-slideshow1 .slide-container a {
	filter: inherit;
}


/**
*	These styles make the list of links to slide images visible to users
*	who don't have JavaScript enabled. By adding the 'no-js' class to 
*	the HTML element, and using Modernizr to remove this class for JS
*	users, we can style for both scenarios.
*	http://www.modernizr.com/
*/

.no-js .rs-slideshow1 {
	height: auto;
}
.no-js .rs-slideshow1 .slide-container, 
.no-js .rs-slideshow1 .slide-container img {
	position: relative;
}
.no-js .rs-slideshow1 .slides {
	display: block;
	margin: 24px 8px;
}
.no-js .rs-slideshow1 .slides li {
	margin: 0;
}



/**
*	The following styles are used in the demos with slideshow controls, 
*	such as play/pause and prev/next buttons.
*/







/*	Clearfix	*/
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }
﻿