/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 383px;
	height:344px;
}

/*
	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 scrollable item */
.scrollable img {
	float:left;
	margin:0;
	width:383px;
	height:344px;
	/*display: none;*/
}

.scrollable .lowerparagraph1 {
	float:left;
	margin-left: -363px;
	margin-top: 265px;
	background-color:#fff;
	padding:0;
	width: 350px;
	height:50px;
	font-size: 13px;
	font-weight: bold;
	background: transparent;

}

.scrollable .lowerparagraph2 {
	float:left;
	margin-left: -363px;
	margin-top: 273px;
	background-color:#fff;
	padding:0;
	width: 350px;
	height:50px;
	font-size: 13px;
	font-weight: bold;
	background: transparent;


}

.scrollable .lowerparagraph3 {
	float:left;
	margin-left: -363px;
	margin-top: 240px;
	background-color:#fff;
	padding:0;
	width: 350px;
	height:50px;
	font-size: 13px;
	font-weight: bold;
	background: transparent;

}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
}

fieldset .prevPage {
	color: #990033;
	font-size: 13px;
	font-weight: bold;
	cursor:pointer;

}

fieldset .nextPage {

	color: #990033;
	font-size: 13px;
	font-weight: bold;
	cursor:pointer;


}





