/* CSS Document */

#image_wrap {
	/* dimensions */
	width:600px;
	margin:0px;
	padding:5px;
	/* centered */
	text-align:center;
	/* some "skinning" */
	background-color:#efefef;
	outline:1px solid #ddd;

	-moz-ouline-radius:4px;
	float: left;
	position: relative;
}

body {
	font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana;
	padding: 0px;
}

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}

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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
	background-image: url(http://static.flowplayer.org/tools/img/scrollable/arrow/hori_large.png);
	background-repeat: no-repeat;
}

/* right */
a.right 				{
	background-position: 0 -30px;
	clear:right;
	margin-right: 0px;
	position: absolute;
	z-index: 2000;
	right: -10px;
	bottom: 0px;
}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{
	margin-left: 0px;
	position: absolute;
	z-index: 2000;
	left: -10px;
	bottom: 0px;
} 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

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

/* 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 {
	visibility:hidden !important;		
} 	

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 610px;
	height:90px;
	padding-top: 5px;
}

/*
	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:400000px;
	position:absolute;
	clear:both;
	left: 0px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	background-color:#fff;
	cursor:pointer;
	width:115px;
	height:75px;
	padding: 3px;
}

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