/*---------------------------------------------------------------------------------------------------------------------------------------------------
Slideshow
--------------------------------------------------------------------------------------------------------------------------------------------------*/

/* container for slides */
.slideshow {
    background:#FFFFFF;
	position:relative;	
	margin:15px;
	margin-bottom:5px;
	cursor:pointer;
	width:495px;
	height:400px;
	float:right;
	border-style:solid;
	border-width:1px;
	background-color:#990000;
	  /* for IE */
  	filter:alpha(opacity=35);
  	/* CSS3 standard */
  	opacity:0.35;
	color:#FFFFFF;
	font-style:normal;
}

/* single slide */
.slideshow div {
	margin:15px;
	*padding:15px 30px 15px 15px;
	height:500px;
	font-size:12px;
}

/* header */
.slide h3 {
	font-size:22px;
	font-weight:normal;
	margin:0 0 20px 0;
	color:#456;
}

/* slideshowTabs tabs (those little circles below slides) */
.slideshowTabs {
	clear:both;
	float:right;
	margin-right:15px;
	width:410px;
	font-size:10px;
	font-style:normal;
}

/* single tab */
.slideshowTabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background: url(../images/arrow/navigator.png) 0 0 no-repeat;
	display:block;	
	text-indent:-999em;
	display:block;
	outline:none;
}


/* mouseover state */
.slideshowTabs a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.slideshowTabs a.current {
	background-position:0 -16px;     
} 	


/* prev and next buttons */
.backward, .forward  {
	float:left;
	margin-top:190px;
	display:block;
	width:18px;
	height:18px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* next */
.forward 				{ background:url(../images/arrow/right.png) no-repeat;}
.forward:hover 		{ background-position:0 -18px; }
.forward:active 	 	{ background-position:0 0; } 


/* prev */
.backward			{background: url(../images/arrow/left.png) no-repeat;}
.backward:hover  		{ background-position:0 -18px; }
.backward:active  	{ background-position:0 0; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

