/* 	ScrollFeature ------------------------------------------------------------------ */

/* 	root element for the scrollable. when scrolling occurs this element stays still. */
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 492px;	
	height:225px;	
	margin-left:3px;				
}

/* 
	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;		
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;	
	/* custom decoration */
	text-align:left;
	width:492px;
	height:225px;
	font-size:11px;
}

/* active item */
div.scrollable div.items div.active {	
	background-color:#fff;
}

/* prev, next, prevPage and nextPage buttons */
a.prevSFH, a.nextSFH, a.prevPageSFH, a.nextPageSFH {
	display:block;
	width:18px;
	height:18px;
	float:left;
	cursor:pointer;
	font-size:1px;
}

a.nextSFH, a.nextPageSFH {
	background:  url(../img/feature/arrw_right.png) no-repeat;
}

a.prevSFH, a.prevPageSFH {
	background:  url(../img/feature/arrw_left.png) no-repeat;
}

div.placeNextSFH {
	position: absolute;
	z-index: 501;
	top:220px;
	left:450px;
}

div.placePrevSFH {
	position: absolute;
	z-index: 502;
	top:220px;
	left:40px;
}

/* mouseover state */
a.prevSFH:hover, a.nextSFH:hover, a.prevPageSFH:hover, a.nextPageSFH:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
div.disabled {
	visibility:hidden !important;		
}

#feat_brd_top {
	position: absolute;
	display:block;
	z-index: 500;
	width:500px;
	height:13px;
	top:0px;
	background: transparent url(../img/feature/brd_top.gif) 0 0 no-repeat;
	}

#feat_brd_bottom {
	position: absolute;
	display:block;
	z-index: 500;
	width:500px;
	height:13px;
	top:216px;
	background: transparent url(../img/feature/brd_bottom.gif) 0 0 no-repeat;
	}
	
div.scrollable a {
	text-decoration: none;		
	color: #000;	
}

div.scrollable a:hover {
	color: #990000;			
}

div.feat_bg a {
	display:block; 
	width:491px; 
	height:225px;
}

div.feat_bg {
	display:block; 
	width:491px; 
	height:225px;
}

div.feat_bg {
	display:block; 
	width:491px; 
	height:225px;
}

div.scrollable div.feat_bg_text{
	display:block;
	width:500px;
	background: transparent url(../img/feature/bg_text.png) 0 0 repeat-y;
	}

div.scrollable h2.feat_txt_head1 {
	padding:4px 3px 0 4px;
	margin:0;
	font-size:18px;
	font-weight:bold;
	line-height:18px;			
}

div.scrollable h2.feat_txt_head2 {
	padding:0 3px 0 4px;
	font-size:14px;
	font-weight:bold;		
}

div.scrollable .feat_bg_text span {
	float:left;
	padding:0 3px 3px 4px;
	font-size:11px;
	font-weight:bold;			
}