/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 510px;	 
	height:110px;	
	padding-top:20px;
	padding-right: 5px;
	padding-left: 5px;
    margin-top:10px;
	background: #f8f8f0 url(/AnnualReport/bar/images/bar_title.gif) no-repeat top center;
	float:left;	

}

/*
	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 item */
.items div {
	float:left;
	width:160px;
	height:95px;
	background:#f8f8f0 url(/AnnualReport/bar/images/thumb_bg1.png) no-repeat;
	color:#000
	border-left: 1px solid black;
	margin: 5px;
	padding: 5px;
	text-align:left;
	font-size:11px;
    color:#ff0;
}


#bar_hc_image {
float:left; 
margin-top:5px; 
margin-right:5px; 
border:0px;
}

#bar_hc_p {
margin-top:5px; 
display:inline; 
text-align:center;
}

#bar_hc_text2 {
float:left; 
font-size:12px; 
margin-top:0px; 
margin-left: 17px;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:10px;
	height:32px;
	margin:68px 10px 0px 5px;
	background:url(/AnnualReport/bar/images/arrow4_lt.gif) no-repeat;
    float:left;
	cursor:pointer;
	font-size:12px;
}

/* right */
a.right {
	background-image:url(/AnnualReport/bar/images/arrow4_rt.gif);
	clear:right;	
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	



