body {
	font-family: Arial, Helvetica, sans-serif;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
h1 {
	font-size: 14px;
	font-weight: bold;
}
a {
	font-family: Arial, Helvetica, sans-serif;
	color: 821e3a;
}
a.hover {
	text-decoration: none;
	color: #666600;
}
.input {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	height: 16px;
	width: 100px;
	margin-top:0px;
	margin-bottom:0px;
}

.inputs {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	height: 15px;
}


p.fp, a.fp {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	margin-top: 4px;
	margin-bottom: 2px;
}
.caption {
	font-size: 10px;
	font-style: italic;

}



.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 501px;
	height:120px;

}

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

/* single scrollable item */
.scrollable img {
	float:left;
	margin:20px 5px;

	padding:2px;


	

}

/* active item */
.scrollable .active {

	position:relative;
	cursor:default;
}
