@charset "utf-8";
/* CSS Document */

body {position:relative}
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/

.articlebox {
		margin:auto;
		width:447px;
}

.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 447px;
	height:160px;
	float:left;	
}

.scroll_nav {
	clear:both;
	width:447px;
	margin:0 auto;
	overflow:auto;
	padding:0 0 20px 0;
}

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

.items div {
	float:left;
	width:auto;
}

/* single scrollable item */
.items div.item {
	float:left;
	font-size:11px;
	margin:0 5px 0 0;
	background-color:#fff;
	border:4px solid #ccc;
	cursor:pointer;
	width:100px;
	height:150px;
	overflow:hidden;
}
/* active item */
.items div.active {
	border:4px solid #006;
	z-index:9999;
	position:relative;
}
.item strong {
	display:block;
	width:100px;
	padding:2px;
}

.item img {
	display:block;
	width:100px;
}


/* disabled navigational button */
a.disabled {
	visibility:hidden;
}

/* panes */
.panes {
	font-size:11px;
	background:#fff;
	border-color:#ddd;
	border-style:solid;
	border-width:1px;
	width:445px;	
	height:270px;
	margin-bottom:5px;
	/* must be relative so the individual panes can be absolutely positioned */
	position:relative;
}

/* *html .panes {width:445px;} */

/* crossfading effect needs absolute positioning from the elements */
.panes div.section1 {
	display:none;
	position:absolute;
	color:#444;	
	width:445px; 
}

.panes span.section2 {
	float:left;
	width:200px;
	display:block;
}

.panes span.section3 {
	float:left;
	padding:10px;
	width:225px;
	display:block;

}

h2.rounded447 {background:transparent url("/transactionservices/home/img/newbox/scrollable/scrollable_t447.gif") no-repeat left top; padding:6px 10px 6px 10px; margin:0; color:#006; }

.panes h3 {margin-top:0; margin-bottom:6px}
.panes p {margin-top:6px; margin-bottom:6px}
