/**
*	Really Simple™ Slideshow -- CSS
*/

@font-face {
  font-family: SketchRockwell;
  src: url(‘SketchRockwell.ttf’);
}
.my_CSS3_class {
  font-family: SketchRockwell;
  font-size: 3.2em;
}
@font-face {
  font-family:"Sansation Light";
  src:url(../Sansation_Light.ttf);
}



.rs-slideshow {
	
	height: 350px;
	 margin-left: auto;
    margin-right: auto;
	overflow: hidden;
	position: relative;
	width:1000px;
	padding:0px;
	text-align:center;
	
}

.rs-slideshow .slide-container {
	
	background-color:#000000;
	position: absolute;
	height: 350px;
	left: 0;
	overflow: hidden;
	top: 0;
	width:1000px;
}

.rs-slideshow .slide-container img {
	position:absolute;
	left: 0;
	top: 0;
}

.rs-slideshow .slide-container .slide-caption {
	bottom: 0;
	color: #fff;
	display: block;
	background-color:#000000;
	
	top:240px;
	width:500px;
	font-family:"Sansation Light";
	font-size:18px;
	height:80px;
	padding:15px;
	text-transform: capitalize;
	line-height:26px;
	position:relative;
	text-align:left;
	font-weight:bold;
	right: -475px;
	/* Fallback for web browsers that doesn't support RGBa */
background: rgb(0, 0, 0);
	/* RGBa with 0.6 opacity */
background: rgba(0, 0, 0, 0.6);
/* For IE 5.5 - 7*/
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
	/* For IE 8*/
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}



.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: 350;
}
.no-js .rs-slideshow .slide-container, 
.no-js .rs-slideshow .slide-container img {
	position: relative;
}
.no-js .rs-slideshow .slides {
	display: block;
	margin: 0px 0px;
}
.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 {
	clear: both;
	margin: 0px auto;
	width: 100%;
}
.rs-play-pause, .rs-prev, .rs-next {
	float: left;
	margin-right: 12px;
}
.rs-controls ul {
	float: left;
	list-style: none;
	margin: 0 6px 0 0;
	padding: 0;
}
.rs-index-list li {
	float: left;
	margin-right: 6px;
}
.rs-controls a {
	background-color: #eee;
	
	/*border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;*/
	color: #444;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	padding: 0px 0px;
	text-decoration: none;
}
.rs-controls a:hover {
	background-color: #ddd;
	color: #444;
}
.rs-controls .rs-active {
	background-color: #444;
	
	color: #eee;
}


#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; }
