div#past_covers {  
	position:relative;
	overflow:hidden;
	width:750px;	 
	margin-left:5px;
	height:370px;
	float: left;
}
 
/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
}
 
 
 
 
/* single item */
#thumbs div {
	float:left;
	width:250px;
	height:370px;
	color:#fff;
	cursor:pointer;
	padding: 0px;
	background: #222;
}
 
/* style when mouse is over the item */
#thumbs div.hover h3,#thumbs div.hover {
	background-color:#444;	
}
 
/* style when element is active (clicked) */
#thumbs div.active h3,#thumbs div.active h3 {
	background-color:#ad181e;
	cursor:default;
}
 
#thumbs h3{
	background: #222;
	padding: 13px 0px;
	line-height: 18px;	
	font-family: Verdana;
	font-size:18px;
	color:#fff;
	text-align: center;
	margin: 0px;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:28px;
	height:28px;
	background:url(../img/left.png) no-repeat;
	float:left;
	margin:163px 7px;
	cursor:pointer;
}
a.prev, a.prevPage{
	margin-left: -7px;
}
a.next, a.nextPage{
	margin-right: -7px;	
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -28px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../img/right.png);
	clear:right;	
}



/*********** navigator ***********/

/* position and dimensions of the navigator */
div.navi {
	margin: 5px;
	margin-left: 350px;
	/*width:300px;*/
	height:20px;
	text-align: center;
}


/* items inside navigator */
div.navi a {
	display:block;
	width:10px;
	height:10px;
	/*line-height:10px;*/
	margin:3px;
	float: left;
	background:url(../img/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
	padding: 0px;
	overflow:hidden;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -10px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -20px;     
} 	
