
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
div.scrollproject {

	/* required settings */
	position:relative;
	width: 448px;
	height:68px;
	margin-bottom:10px;
	overflow:hidden;


	/* 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.
*/
div.scrollproject div.items {
	/* this cannot be too large */
	width:20000em;
	position:relative;
	clear:both;

}

/* single scrollable item */
div.scrollproject div.items img {
border:3px solid #002c56;
margin-right:10px;
width:60px;
height:60px;
background:#002c56;
float:left;	
text-align:center;
}

/* active item */
div.scrollproject div.active {
	border:3px inset #000000;
	outline:2px solid #ffffff;
	z-index:9999;
	position:relative;

}

div.scrollable {

	/* required settings */
	position:relative;
	width: 760px;
	height:58px;
	overflow:hidden;


	/* 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.
*/
div.scrollable div.items {
	/* this cannot be too large */
	width:20000em;
	position:relative;
	clear:both;

}

/* single scrollable item */
div.scrollable div.items img {
border:3px solid #002c56;
margin-right:12px;
width:52px;
height:52px;
background:#002c56;
float:left;	

text-align:center;
}

/* active item */
div.scrollable div.active {
	border:3px inset #000000;
	outline:2px solid #ffffff;
	z-index:9999;
	position:relative;

}


