div#slides {
	margin-bottom: 50px;
}
/*
Slides container
Important:
Set the width of your slides container
Set to display none, prevents content flash
*/
.slides_container {
  	width:942px;
   	position: relative;
   	display: none;
}

/*
Each slide
Important:
Set the width of your slides
If height not specified height will be set by the slide content
Set to display block
*/
.slides_container div, .slides_container img  {
	width:942px;
   	height:350px;
  	display:block;
 	position: relative;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin-bottom: 25px;
}

/*
Optional:
Reset list default style
*/
.pagination {
   	list-style:none;
   	margin:0;
   	padding:0;
}

/*
Optional:
Show the current slide in the pagination
*/
.pagination .current a {color:red;}
.prevslide {
   	position: absolute;
   	z-index: 888;
   	width: 50px;
   	height: 350px;   	
   	font-size: 0px;
   	top: 125px;
	background-image: url(/images/rig/slide_nav.gif);
    opacity: .10;
	filter: alpha(opacity=10);
-webkit-border-top-left-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-bottomleft: 10px;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.nextslide {
   	position: absolute;
   	z-index: 889;
   	width: 50px;
   	height: 350px;
   	background-image: url(/images/rig/slide_nav.gif);
   	font-size: 0px;
   	top: 125px;
	right: 0px;
	opacity: .10;
	filter: alpha(opacity=10);
-webkit-border-top-right-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-bottomright: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
.prevslide:hover, .nextslide:hover {
    opacity: .25;
	filter: alpha(opacity=25);
}
.pagination {
	text-align: center;
	top: 435px;
	right: 75px;
	margin-left: -50px;
	position: absolute;
   	z-index: 890;
	background-color: #000;
	padding: 10px;
	padding-right: 0px;
	
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	opacity: .50;
	filter: alpha(opacity=50);
}
.pagination li {
	float: left;
	margin-right: 10px;
	font-size: 0px;
	height: 20px;
	width: 20px;	
}
.pagination li a {
	display: block;
	background-image: url(/images/rig/pagination.gif);
	background-repeat: no-repeat;
}
.pagination .current a {
	display: block;
	background-image: url(/images/rig/pagination_cu.gif) !important;
	background-repeat: no-repeat;
}

