

@charset "UTF-8";
/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	margin:0 auto;
	overflow:hidden;
	width: 885px;
	height:444px;
	z-index: 1;
}

/*
	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;
}

/* single scrollable item */
.featuretile {
	float:left;
	margin:0px 20px 0px 0px;
	padding:0px;
	cursor:pointer;
	width:202px;
	height:440px;
	vertical-align: text-bottom;
	text-decoration: none;
}

.featuretile a {
	text-decoration: none;
}

.featureinfo, .featureinfo a {
	clear: both;
	width: 188px; /*202 width - total width padding */
	padding-left: 7px;
	padding-right: 7px;
	/*padding-top: 5px;*/
	text-decoration: none;
}

.date, .date a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
	text-transform: lowercase;
	line-height: normal;
}

.scrollertitle, .scrollertitle a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #000000;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
}

.c1, .c2, .c3, .c4 {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right: 4px solid #FFFFFF;
	border-bottom: 4px solid #FFFFFF;	
}

.c1 {
	background-color:#92CD00;
}

.c2 {
	background-color:#ea3b13;
}

.c3 {
	background-color:#36cacf;
}

.c4 {
	background-color:#209633;
}

/* active item */
.scrollable .active {
}

#testL {
	position: absolute;
	z-index: 2;
	left: 25px;
	top: 150px;
}

#testR {
	position: absolute;
	z-index: 2;
	top: 150px;
	right: 25px;
}

/* tabs /*
/* root element for tabs  */
ul.tabs {
	list-style:none;
	margin:0 !important;
	padding:0 0 0 21px;
	height:30px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs a {
	font-size:14px;
	display:block;
	height: 30px;
	line-height:15px;
	width: 90px;
	text-align:center;
	text-decoration:none;
	color:#CCCCCC;
	padding:0px;
	margin:0px;
	position:relative;
	top:1px;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	color:#FFCC99;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	cursor:default !important;
	color:#FFFFFF !important;
	font-weight: bold;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;
}

/* button stuff */
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:none;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:20px;
	height:40px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background:url(../gfx/inverse/scrollR.png) no-repeat; background-position: 0 0px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-20px 0px; }
a.right:active 	{ background-position:-40px 0px; } 


/* left */
a.left				{ background:url(../gfx/inverse/scrollL.png) no-repeat; margin-left: 0px; } 
a.left:hover  		{ background-position:-20px 0; }
a.left:active  	{ background-position:-40px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(http://static.flowplayer.org/tools/img/scrollable/arrow/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	background-position: 0 0px !important;
	filter:alpha(opacity=20) !important;
	-moz-opacity:0.2 !important;
	-khtml-opacity: 0.2 !important;
	opacity: 0.2 !important;

} 	
