:focus {
  -moz-outline-style:none;
}
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;

	width: 530px;
;

	/* custom decorations */

}

/*
	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 */


	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0;
	background-color:#fff;

	cursor:pointer;
  width: 106px;
  height: 106px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:none;
	z-index:9999;
	position:relative;
}


/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url('/fileadmin/img/cbrowser/left_red.png') no-repeat;
	display:block;
	width:12px;
	height:24px;
	float:left;
	margin: 25px 10px 0 0;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ 
	background:url('/fileadmin/img/cbrowser/right_red.png') no-repeat;
	margin: 35px 0 0 10px;	
}



/* left */
a.left				{ 
	background:url('/fileadmin/img/cbrowser/left_red.png') no-repeat;
	margin: 35px 10px 0 0;
}

/* up and down */
a.up, a.down		{ 
	background:url('/fileadmin/img/cbrowser/left_red.png') no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */


/* down */



/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	



/* use a semi-transparent image for the overlay */ 
#overlay { 
	background-image:url('/fileadmin/img/cbrowser/transparent.png');


    color:#ffffff; 
    height:680px; 
} 
 
/* container for external content. uses vertical scrollbar, if needed */ 
div.contentWrap { 
    height:580px; 
    overflow-y:auto; 
}
/* the overlayed element */
div.overlay {
	

	/* dimensions after the growing animation finishes  */
	width:750px;
	height:500px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {

	background-image:url(/fileadmin/img/cbrowser/x.png);

	position:absolute;
	right:12px;
	top:14px;
	cursor:pointer;
	height:31px;
	width:31px;
}


/* black */
div.overlay.black {

	color:#ffffff;
}

/* petrol */
div.overlay.petrol {

	color:#ffffff;
}

div.black h2, div.petrol h2 {
	color:#dddddd;		
}
