/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 705px;
	height:150px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(http://static.flowplayer.org/img/global/gradient/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.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* make A tags our floating scrollable items */ 
.items a { 
	float:left;
}  

/* single scrollable item */
.scrollable img {
	float:left;
	margin:9px 2px 5px 7px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:125px;
	height:125px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

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

/* the overlayed element */ 
.apple_overlay { 
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* growing background image */ 
    background-image:url(http://static.flowplayer.org/img/overlay/white.png); 
     
    /*  
        width after the growing animation finishes 
        height is automatically calculated 
    */ 
           
     
    /* some padding to layout nested elements nicely  */ 
    padding:30px; 
 
    /* a little styling */     
    font-size:11px; 
	
} 
.crop {
width: 400px;
height: 250px;
overflow: hidden;
}

 
/* default close button positioned on upper right corner */ 
.apple_overlay div.close { 
    background-image:url(http://static.flowplayer.org/img/overlay/close.png); 
    position:absolute; right:5px; top:5px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}

/* black version of the overlay. simply uses a different background image */ 
div.apple_overlay.black {  
   /* growing background image */ 
    background-image:url(http://static.flowplayer.org/img/overlay/white.png); 
    color:#fff;
	width:625px;
}

.details {
	float: left;
	position:absolute; bottom: -35px;
    background-color:#CCCCCC; 
    height:50px; 
    width:400px; 
	z-index:9999;
	text-align: center;
}

.details p{ 
	text-align: center;
	margin-top: 10px;
}


/* tooltip styling */ 
#tooltip { 
    display:none; 
    background:url(/images/black_arrow.png); 
    font-size:12px; 
    height:70px; 
    width:160px; 
    padding:25px; 
    color:#fff; 
}

/* use a semi-transparent image for the overlay */ 
#overlay { 
    background-image:url(http://static.flowplayer.org/img/overlay/transparent.png); 
    color:#efefef; 
} 
 
/* container for external content. uses vertical scrollbar, if needed */ 
.contentWrap { 
border: none;
height: 480px;
}