@charset "utf-8";
body {
	margin: 0px;
	padding: 0px;
	background:none;
}
/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable {
	/* required settings */ 
    position:relative;
	overflow:hidden;
	width: 576px;
	height:320px;
	clear: both;
	border-top: solid 1px #999999;
	border-left: solid 1px #999999;
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a super large width to accomodate scrollable items. 
    it's enough that you set 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; 
} 
 
/* 
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div {
	float:left;
	height: 300px;
	width: 144px;
	border-right: solid 1px #999999;
	background-color: #CCCCCC;
} 
div.items div td {
	background-image: url(../images/cellbg.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
}
div.scrollable div.items div p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	margin:14px 10px 0px 10px;
}
/* you may want to setup some decorations to active item */ 
div.scrollable div.items div:hover { 
    background-color:#efefef; 
}
div.items div:hover td {
	background-image: url(../images/cellbg_over.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
}
div.scrollable div.items div:hover img { 
	opacity:0.6;
	filter:alpha(opacity=60);
}
div.scrollable div.items div:hover a.download {
	background-color:#888888;
}
div.scrollable div.items div.active {
	background-color:#999999;
}
div.scrollable div.items div.active td { 
	background-image: url(../images/cellbg_active.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
}
div.scrollable div.items div.active img {
	opacity:0.9;
	filter:alpha(opacity=90);
}
div.scrollable div.items div.active a.download {
	background-image:url(../images/download_active.jpg);
	background-repeat:repeat-x;
	background-color:#990000;
	color: #FFFFFF;
}
div.scrollable div.items div.active a.watch {
	background-color:#02292e;
	border-top:solid 1px #efefef;
	border-bottom:solid 1px #efefef;
	opacity:0.9;
	filter:alpha(opacity=90);
}
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	cursor:pointer;
	font-size:11px;
	font-family:Arial, Helvetica, sans-serif;
	color:#555555;
	float:left;
}
a.prev {
	margin-left:10px;
}


/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;	
	color:#000000;	
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image  */
a.next, a.nextPage {
	position:relative;
	left:370px;
	**left:340px;

}


/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	width:150px;
	height:20px;
	text-align:center;
	float: left;
	position:relative;
	left:230px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	
/* download image button */
a.download {
	display:block;
	width:144px;
	line-height:26px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#FFFFFF;
	background-color: #666666;
	text-align: center;
	text-decoration: none;
	border-top:solid 1px #333333;
	border-bottom:1px solid #000000;
}
a.download:hover {
	color:#FFFFCC;
}
a.watch {
	display:block;
	width:144px;
	line-height:26px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#FFFFFF;
	background-color: #787878;
	text-align: center;
	text-decoration: none;
	border-top:solid 1px #333333;
}
a.watch:hover {
	color:#FFFFCC;
}

