/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.album_scrollable {
	/* required settings */
		position:relative;
	overflow-x:hidden;
	/* custom decorations */
/*	border:1px outset #ccc;*/
	width: 170px;	
/*	background-color:#efefef;				
*/
}


/* 
	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.album_scrollable div.album_items {	
	/* this cannot be too large */
	width:20000em;	
	position:relative;
	clear:both;		
}

/* single scrollable item */
div.album_scrollable div.album_items div {
	float:left;
	/* custom decoration */
	text-align:left;
	width:250px;
/*	font-size:30px;*/
/*	background-color: #ddd;
*/
}

div.album_items div.album_slideshow_outer div.album_container {
	width:170px;
}

/* browse buttons */
/* prev, next, prevPage and nextPage buttons */
a.album_prev {
	display:block;
	width:10px;
	height:10px;
	background:url(/typo3conf/ext/moc_slideshow/res/img/small-horiz-arrows.png) no-repeat;
	float:left;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.album_prev:hover {
	background-position:-1px 0px;		
	cursor:pointer;
}

/* next button uses another background image */
a.album_next {
	float:left;
	width:10px;
	height:10px;
	background:url(/typo3conf/ext/moc_slideshow/res/img/small-horiz-arrows.png) no-repeat;
	background-position:-10px 0px;		
	cursor:pointer;
	font-size:1px;
	clear:right;	
}

/* mouseover state */
a.album_next:hover {
	background-position:-9px 0px;		
	cursor:pointer;
}

/* Logged in browse buttons */
/* prev, next, prevPage and nextPage buttons */
a.album_prev_logged_in {
	display:block;
	width:10px;
	height:10px;
	background:url(/typo3conf/ext/moc_slideshow/res/img/small-horiz-arrows.png) no-repeat;
	background-position:0px -10px;		
	float:left;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.album_prev_logged_in:hover {
	background-position:-1px -10px;		
	cursor:pointer;
}

/* next button uses another background image */
a.album_next_logged_in {
	float:left;
	width:10px;
	height:10px;
	background:url(/typo3conf/ext/moc_slideshow/res/img/small-horiz-arrows.png) no-repeat;
	background-position:-10px -10px;		
	cursor:pointer;
	font-size:1px;
	clear:right;	
}

/* mouseover state */
a.album_next_logged_in:hover {
	background-position:-9px -10px;		
	cursor:pointer;
}


/* active item */
div.album_scrollable div.items div.active {
	background-color:#fff;
}


/* Right col FCE-element with 3px rounded corners, image, text and red background */
.slideshow-teaser {
	width: 190px;
	background-color: #f6f5f0;
	margin: 0 0 10px -10px;
	color: #6D6E71;
	cursor: pointer;
}

.slideshow-teaser img {
	display: block;
	cursor: pointer;
}

.slideshow-teaser .image {
	padding: 5px 11px px;
}

.slideshow-teaser .album_name {
	font-weight: bold;
	text-transform: uppercase;
	font-family: Arial,SansSerif;
	margin-top: 8px;
	cursor: pointer;
}
.slideshow-teaser p {
	margin: 4px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	float: none;
	cursor: pointer;
}


