
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable  {

	/* required settings */
	position:relative;
	overflow:hidden;
	margin-left: 5px;
	margin-top: 5px;
	width: 685px;
	z-index:10;
	height:155px;

	/* custom decorations */
}

/*
	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:10000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width: 664px;
	font-size: 12px;
	text-align: justify;
}

#norelation
{
z-index: 999;
position: relative;
background: url(/img/banners/banner_norelation.png) no-repeat;
background-position: 0px 0px;
padding: 10px;
width: 664px;
height: 155px;
color: #fff;
}

#thebois
{
z-index: 999;
position: relative;
background: url(/img/banners/banner_thebois.png) no-repeat;
background-position: 0px 0px;
padding: 10px;
width: 664px;
height: 155px;
color: #fff;
}

#psych
{
z-index: 999;
position: relative;
background: url(/img/banners/banner_psych.png) no-repeat;
background-position: 0px 0px;
padding: 10px;
width: 664px;
height: 155px;
color: #000;
}

#thebois a, #norelation a, #psych a
{
display: inline-block;
float: left;
margin-top: 1%;
margin-bottom: 1%;
margin-left: 0px;
width: 340px;
height: 150px;
text-align: justify;
font-size: 14px;
}

#thebois .summary_top, #norelation .summary_top, #psych .summary_top
{
display: inline-block;
margin-left: 15px;
margin-top: 16px;
width: 260px;
height: 145px;
text-align: justify;
font-size: 14px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px 15px 0px 21px;
	width:135px;
	height:135px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
