/* container for slides */
.home_slides {	
	position:relative;	
	height:95px;
	width:450px;
	cursor:pointer;	
	/* CSS3 tweaks for modern browsers */
	margin:0 0 0px 100px;
	font-size:14px;
	display:inline-block;
	
}
span.author{
	font-size:12px;
	color:#54ccee;
	}
/* single slide */
.home_slides div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	width:450px;
	padding:0px;
	height:60px;
}

/* header */
.home_slides h3 {
	font:normal 30px 'MuseoSlab500', Arial, sans-serif;
	padding:5px;
	margin-top:0;
	background:url(/images/home_slide_bg_tile.png) top left repeat;
	color:#ffffff;
	position:relative;
}

/* tabs (those little circles below slides) */
.slidetabs {
    float: right;
    margin-right: 120px;
    margin-top: -10px;
    position: relative;
	
}
	
/* single tab */
.slidetabs a {
	width:19px;
	height:19px;
	float:left;
	margin:3px;
	background:url(/images/slideOff.png) 0 0 no-repeat;
	display:block;
	font-size:1px;		
}

/* mouseover state */
.slidetabs a:hover {
	background:url(/images/slideOn.png) 0 0 no-repeat;     
}

/* active state (current page state) */
.slidetabs a.current {
	background:url(/images/slideOn.png) 0 0 no-repeat;   
} 	

/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	background:#fff url(/tools/img/scrollable/arrow/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* next */
.forward 				{ background-position: 0 -30px; clear:right; }
.forward:hover 		{ background-position:-30px -30px; }
.forward:active 	 	{ background-position:-60px -30px; } 


/* prev */
.backward:hover  		{ background-position:-30px 0; }
.backward:active  	{ background-position:-60px 0; }

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