/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 450px;
	height:225px;

	/* custom decorations */
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable .archivesItem {
	float:left;
	/*margin:20px 5px 20px 21px;*/
	background-color:#000;
	padding:0px;
	padding-left:0px;
	padding-right:0px;
	cursor:pointer;
	width:225px;
	height:225px;
	position:relative;
	left:-1px;
}
.archivesItem .archivesImage {
height:167px;
width:225px;
overflow:hidden;
}
.archivesItem .archivesText {
height:55px;
color:#fff;
padding-left:15px;
padding-top:5px;
}

.archivesTitle{
font-weight:bold;
font-size:1.2em;
}
.archivesDate{
font-size:.8em;
top:2px;
}
/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}


