
#around_news_panels {  height:230px; margin-top:30px; width:525px; _margin-top:10px; }

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 466px;
	height:220px;
	/* custom decorations */
	border:1px solid #DBDBDB;
	background-color:#fff;
	
	
}


/*
	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  .inside_items .item_to_view,
.scrollable  .inside_items .item_to_view_first
{
	float:left;
	margin:12px 0px 0px 11px;
	background-color:#fff;
	/*border:1px solid #333;*/
	width:140px;
}

.scrollable  .inside_items .item_to_view_first {
	margin-left:13px;
	_margin-left:6px;

}



.scrollable .items {
	/* this cannot be too large */
	width:10000em;
	position:absolute;
	clear:both;
	
}

.items .inside_items {
	float:left;
	
}

/* single scrollable item */

.scrollable  .inside_items img { 
border:3px double #B1AEA4;
width:133px;
}



/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}


/* buttons */


/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/scrolljs/hori_large.jpg) no-repeat;
	display:block;
	width:25px;
	height:222px;
	float:left;
	margin:0px 0px 0px 0px;
	cursor:pointer;
	font-size:1px;
	
}

/* right */
a.right 				{ background-position: 0px -222px; clear:right; margin-left: 2px; margin-right: 0px;}
a.right:hover 		{ background-position:-26px -222px; }
a.right:active 	{ background-position:-52px -222px; } 


/* left */
a.left				{ margin-left: 0px;margin-right: 2px; } 
a.left:hover  		{ background-position:-26px 0; }
a.left:active  	{ background-position:-52px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(../images/scrolljs/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
		
} 	

/* now for the styles for the links */

#item_to_view_top {  font-size:11px; font-weight:bold; text-transform:uppercase; font-family:arial; padding:0px 0px 2px 0px; color:#e22b00; }
#item_to_view_top a:link,
#item_to_view_top a:visited,
#item_to_view_top a:active {
	color:#0066ff; text-decoration:none; font-size:11px; font-weight:bold; 
}
#item_to_view_top a:hover {
	color:#0066ff; text-decoration:underline;
	height:300px;  font-size:11px; font-weight:bold; 
}


#item_to_view_pic { }
#item_to_view_title { font-size:16px; font-weight:normal; font-family:arial; padding:8px 0px 2px 0px; _padding-top:6px; }
#item_to_view_title a:link,
#item_to_view_title a:visited,
#item_to_view_title a:active {
	color:#0066ff; text-decoration:none; 
	 font-size:16px; font-weight:normal; 
}
#item_to_view_title a:hover {
	color:#0066ff; text-decoration:underline;
	 font-size:16px; font-weight:normal; 
}

#item_to_view_desc { font-size:11px; font-family:arial; }
