

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/

#content h1{
	margin-top:-1em;
}

#content h5{
	margin-top:-0.5em;
	margin-bottom:-1em;
}

.scrollable {

	/* required settings */
	position: relative;
	overflow: hidden;
	width: 650px;
	height: 330px;

	/* custom decorations */
	border:1px solid #ccc;
}

/*
	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;
	height:320px;
	overflow:auto;
	width:640px;
	padding: 5px;
}

.items div h2 {
	margin-top:0;
}

.scrollable img {
	border:solid 2px #999;
	float: right;
	margin: 0 5px 5px 5px;
	padding: 2px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:#ccc;
	display:block;
	width:25px;
	height:25px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
}

/* right */
a.right {
	background: url(../img/icons/slideright_nml.gif) 0 0 no-repeat;
	clear:right; 
	margin-right: 0px;}
a.right:hover {
	background: url(../img/icons/slideright_hover.gif) 0 0 no-repeat;}


/* left */
a.left{
	background:url(../img/icons/slideleft_nml.gif) 0 0 no-repeat;
	margin-left: 0px;} 
a.left:hover {
	background:url(../img/icons/slideleft_hover.gif) 0 0 no-repeat;}


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	

