﻿/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/


div.scrollable {
	
	/* required settings */
	position:relative;
	/*overflow:hidden;*/
	overflow:visible;
	width: 810px;	
	/*height:128px;*/	
	
	
	/* custom decorations */
	padding:0px 0;	
			
}

/* 
	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;*/
	width:812px;	
	/*position:absolute;*/
	clear:both;		
	
	/* decoration */
	margin-left:0px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	/*height:128px;*/
	/* custom decoration */
	text-align:center;
	width:406px;
	padding:0px!important;
	margin:0;
	font-size:30px;

font-size:12px;


}



div.scrollable div.items div div.item{width:406px; height:128px; float:left; position:relative;background-image:url(../images/newsfeed_bkgroundbox.jpg); background-position:0 0; background-repeat:no-repeat;}

.items img{width:191px;padding-left:5px; height:118px; margin-top:4px;margin-right:12px;float:left; }

/* active item */
div.scrollable div.items div.active {

}

div.scrollable h3{font-size:14px; font-weight:bold; float:left; width:175px; text-align:left;margin:16px 0px 8px 0px;padding:0;}
div.scrollable  p,div.scrollable span{float:left;
margin-bottom:0;
margin-left:209px !important;
margin-right:0;
margin-top:-88px !important;
padding:0;
text-align:left;
width:170px !important;}


/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	margin-top:8px;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	/*display:block;*/
	display:none;
	width:32px;
	height:34px;
	background:url(../images/newsfeed_leftarrow.png) no-repeat;
	cursor:pointer;
	font-size:1px; 
	position:absolute; 
	margin-top:90px;margin-left:-14px; z-index:1000;
	
	
}


/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {

}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/newsfeed_rightarrow.png);
	margin-left:784px;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	

.scrollable a:link, .scrollable a:visited, .scrollable a:active, .scrollable a:hover   
{
    
left:209px;
position:absolute;
text-align:left;
text-decoration:underline;
top:90px;
width:175px;
z-index:1000;
    }
    
    
    #ctl00_mainContent_pnlGallery .scrollable a:link, #ctl00_mainContent_pnlGallery .scrollable a:visited, #ctl00_mainContent_pnlGallery .scrollable a:active, #ctl00_mainContent_pnlGallery .scrollable a:hover {margin-left:-184px !important; font-weight:bold !important;} 
