
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable h4 {
	font-size: 12px;
	color: #CC66CC;
	font-style: italic;
	line-height: 16px;
	text-transform: capitalize;
}
.scrollable h1,.scrollable h2,.scrollable h3,.scrollable h4,.scrollable h5,.scrollable h6 {
	font-family: Georgia, Times New Roman, Times, serif;
	color: #FFFFFF;
	font-weight: normal;
	text-transform: capitalize;
}
.scrollable h1 {
	font-size: 12px;
	font-style: normal;
	line-height: 16px;
	text-transform: capitalize;
}
.scrollable h2 {
	font-size: 16px;
}
.scrollable h3 {
	font-size: 12px;
	font-style: italic;
}
.scrollable h4 {
	font-size: 12px;
	color: #CC66CC;
	font-style: italic;
	line-height: 16px;
}

.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 380px;
	height:600px;
	float:left;

	/* custom decorations */
	background-color: black;
	color: white;
}
.next, .prev{
	position: relative;
	margin-top: 150px;
	float: left;
}
.next {
	padding-right: 10px;
	visibility: visible;
}
.prev {
	padding-left: 10px;
	visibility: visible;
}
a.disabled {
	visibility: hidden;
}
/*
	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:380px;
	
}
.items a, .items a:link, .items a:visited, .items a:active{
	color: #CC66CC;
	text-transform: capitalize;
}
.items a:hover {
color: white;
text-transform: capitalize;
}
