/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#scrolling{
width:90%;
float:left;
position:relative;
margin-top:40px;
height:180px;
padding:20px;

}
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 620px;
	height:120px;
	margin-right: 2px;
	margin-left: 2px;
		/* custom decorations */

/*
	background:url(../images/h300.png) repeat-x;*/
}

/*
	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.
*/
div.scrollable div.items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
float:right;

	
	
}

/* single scrollable item */

/*.scrollable div.items div{
margin:2px;
padding:4px;

}*/


.scrollable div.items div img {
clear:both;
position:relative;
display:block;
     margin:0px;
     padding:0px;
	float:left;
	/*margin:0px*/
	background-color:#fff;
		border:1px solid #ccc;
	cursor:pointer;
	width:75px;
	height:60px;
	/*display: inline-block;*/
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	
	opacity:1;
	filter:alpha(opacity=100);
}



/* active item */

div.scrollable div.items div {
cursor:pointer;
	float:left;
	margin: 0px;
	width:90px;
	padding:0px;
	/*height:200px;*/
	
	/*margin:0px 0px 0px 0px;*/
	
display:block;
} 
#film_name {
	clear:both;
	width:80px;
	height:40px;
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	text-align: center;
	position: relative;
	top: 0px;
	margin-left: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-right:0px;
	opacity:0.7;
	filter:alpha(opacity=70);
	background-color: #000000;
	border-top-width: 2px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	overflow:hidden;
}

.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

#film_name a, #film_name a:visited{
color: #FFFFCC;
text-decoration:underline;
font-family: "Times New Roman", Times, serif;
margin:0px;
padding:0px;
font-weight:normal;
background:transparent;
}

#film_name a:hover, #film_name a:active{
color: #FFFF66;
text-decoration:none;
font-weight: 200;

}


