@charset "utf-8";
/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 558px;
	height:300px;
	/* custom decorations */
	border:1px solid #ddd;
	margin-bottom: 10px;
	background:url(../images/blueborders_bg.png) center bottom repeat-x;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-left: 10px;
}

/*
	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:533px;
	padding: 15px;
	padding-right:0px;
	background: no-repeat right top;
}

.items div .caseHeading {
	/*width:320px;*/
	padding:0px;
	margin-bottom:20px;
	float: none;
}

.items div .stateImage {
	float:right;
	height:50px;
	display:block;
	margin-right:20px;
}

.items div .scrollBar {
	height:180px;
	overflow:auto;
	float:none;
	padding:0px;
	padding-right:10px;
	width:523px;
}

.items div div.clearfix {
	float:none;
	width:100%;
	padding:0px;
}
.items .case h2 {
	font-family:Tahoma, Geneva, sans-serif;
	margin:0px;
	margin-bottom:10px;
	font-size: 16px;
}
.items .case td.caseType {
	font-family:Tahoma, Geneva, sans-serif;
	font-size: 13px;
	margin:0px;
	padding-bottom: 5px;
	padding-right: 10px;
}

.items .case p.script {
	margin:0px;
	margin-bottom:15px;
	line-height:18px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
}

/* single scrollable item */
/*.scrollable img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}*/

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

