
/*
#example {
	width:950px;
	height:277px;
	position:relative;
}*/


/*
	Slideshow
*/

#slides {
	position:absolute;	
	/*left:4px;*/
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:950px;
	overflow:hidden;
	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 a {
	width:950px;
	height:230px;
	display:block;
}

.slides_container a img {
	display:block;
	border:0;
}

/*
	Pagination
*/

.pagination {
	float:right;
	margin:0 245px 0 0;
	margin-top:-30px;
	z-index:99;
	position:relative;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding:12px 3px 0 0;
	background-image:url(../images/pager.png);
	background-repeat:no-repeat;
	background-position:0 0;
	float:left;
	overflow:hidden;
}

/*this is for IE6 to display the transparent slide pagination images (circles)*/
*html .pagination li a 
{
    width:12px;height:12px;
    padding:0;
    margin-left:2px;
    background: none; /* Hide the current background image so you can replace it with the filter*/    
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/pager.png');
    text-indent:-9999px; /*to avoid displaying the slide numbers*/
}

.pagination li.current a 
{
	background-image:url(../images/pager-active.png);
	background-repeat:no-repeat;
}

/*this is for IE6 to display the transparent pagination images (circles)*/
*html .pagination li.current a 
{
    background: none; /* Hide the current background image so you can replace it with the filter*/    
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/pager-active.png');
}

/*This is for the image caption*/
a.imgCaption:active, a.imgCaption:hover, a.imgCaption:visited
{
    text-decoration: none;
    color: #58585a;
    /*line-height: 1.3;
    font-size: 1.1em;*/
}