﻿/**
*	Really Simple™ Slideshow -- CSS
*/

.rs-slideshow {
	width: 366px;
	height: 243px;
	overflow: hidden;
	position: relative;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
}

.rs-slideshow .slide-container {
	background-color: #444;
	position: absolute;
	height: 100%;
	left: 0;
	overflow: hidden;
	top: 0;
	width: 100%;
}

.rs-slideshow .slide-container img {
	position: relative;
}

.rs-slideshow .slide-container .slide-caption {
	background: #404040;
	bottom: 0;
	color: #fff;
	display: block;
	left: 0;
	padding: 10px 12px;
	position: absolute;
	text-align: left;
	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-slideshow .slides {
	display: none;
}

.rs-slideshow .slide-container img,
.rs-slideshow .slide-container .slide-caption,
.rs-slideshow .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-slideshow {
	height: auto;
}
.no-js .rs-slideshow .slide-container, 
.no-js .rs-slideshow .slide-container img {
	position: relative;
}
.no-js .rs-slideshow .slides {
	display: block;
	margin: 24px 48px;
}
.no-js .rs-slideshow .slides li {
	margin: 0;
}



/**
*	The following styles are used in the demos with slideshow controls, 
*	such as play/pause and prev/next buttons.
*/

.rs-controls {
	position:absolute;
	right:3px;
	bottom:0px;
	margin: 12px auto;
	width: 120px;
}
.rs-play-pause, .rs-prev, .rs-next {
	float: left;
	margin-right: 12px;
}

.rs-controls .rs-play-pause , .rs-controls .rs-prev,.rs-controls .rs-next{
	display:none;
}


.rs-controls ul {
	float: right;
	list-style: none;
	margin:0 6px 0 0;
	padding: 0;
	text-align:right;
}
.rs-index-list li {
	display:inline-block;
	*display:inline;
	*zoom:1;
	margin-right: 4px;
}
.rs-controls a {
	display:inline-block;
	*display:inline;
	*zoom:1;
	width:9px;
	height:10px;
	overflow:hidden;
	background:url(../images/nbk.png) no-repeat 0px 2px;
}
.rs-controls a:hover {
	background:url(../images/nbk_on.png) no-repeat 0px 0px;
}
.rs-controls .rs-active {
	background:url(../images/nbk_on.png) no-repeat 0px 0px;
}


#callback-messages {
	margin: 48px auto;
	width: 620px;
}



/*	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; }
