#image_wrap
{
/*dimensions*/
	width: 860px;
	padding: 15px;
	margin: 0 0 25px;
/*centered*/
	text-align: center;
/*some "skinning"*/
	background-color: #EFEFEF;
	border: 2px solid #FFF;
	border: 2px solid #FFF;
	outline: 1px solid #DDD;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
/*get rid of those system borders being generated for A tags*/
A:active
{
	outline: none;
}
:focus
{
	-moz-outline-style: none;
}
/*
root element for the scrollable.
when scrolling occurs this element stays still.
*/
.scrollable
{
/*required settings*/
	position: relative;
	overflow: hidden;
	width: 810px;
	height: 120px;
/*custom decorations*/
	border: 1px solid #CCC;
	background: #FFF url(../img/h300.png) repeat-x;
	margin-bottom: 3em;
}
/*
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*/
.scrollable IMG
{
	float: left;
	margin: 12px 5px 12px 21px;
	background-color: #FFF;
	padding: 2px;
	border: 1px solid #999;
	cursor: pointer;
	width: 125px;
	height: 90px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
/*active item*/
.scrollable .active
{
	border: 2px solid #000;
	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(../img/hori_large.png) no-repeat;
	display: block;
	width: 30px;
	height: 30px;
	float: left;
	margin: 40px 10px;
	cursor: pointer;
	font-size: 1px;
}
/*right*/
A.right
{
	background-position: 0 -30px;
	clear: right;
	margin-right: 0px;
}
A.right:hover
{
	background-position: -30px -30px;
}
A.right:active
{
	background-position: -60px -30px;
}
/*left*/
A.left
{
	margin-left: 0px;
}
A.left:hover
{
	background-position: -30px 0;
}
A.left:active
{
	background-position: -60px 0;
}
/*up and down*/
A.up, A.down
{
	background: url(../img/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
{
	visibility: hidden !important;
}
