.outer {
	width: 900px;	
	height:108px;	
	
	/*custom decorations*/ 
	margin:00px -4px 00px 10px;	
	/*border-top:1px solid #d7d4dd;
	border-right:1px solid #d7d4dd;	
	border-left:1px solid #d7d4dd;*/
}

	
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 820px;	
	height:106px;	
	
	/* custom decorations */
	padding:0px;
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	/* decoration */
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	/* custom decoration */
	text-align:center;
	width:auto;
	font-size:9pt;
	font-family: Arial, Helvetica, sans-serif;
	/*border-right: 1px solid #d7d4dd;
	border-top: 1px solid #f8f8f8;
	 background-color: #ececec;*/ 
	margin: 0px;

	-moz-border-radius:2px;
	padding-top: 5px;
	padding-right: 14px;
	padding-bottom: 5px;
	padding-left: 12px;
}

div.scrollable div.items div a{
	color: #4d4d4d;
	text-decoration: none;
	display: block;
	width: auto;
}

div.scrollable div.items div a:hover{
	text-decoration: none;
	display: block;
	width: auto;
	background-image: url(../images/gallery_hover.gif);
	background-repeat: no-repeat;
	background-position: center;
}

div.scrollable div.items div:hover{
	width: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	background-image: url(../images/gallery_hover.gif);
	background-repeat: no-repeat;
	background-position: center;
	color: #FFFFFF;
	
}



/* active item */
div.scrollable div.items div.active {
	color: #FFF;
	width: auto;
	background-image: url(../images/gallery_hover.gif);
	background-repeat: no-repeat;
	background-position: center;
	
}

div.scrollable div.items div.active a{
	color: #FFF;
	width: auto;
	background-image: url(../images/gallery_hover.gif);
	background-repeat: no-repeat;
	background-position: center;
}
