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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 690px;
	height:184px;
	text-align: right;
	float:right;
	/*padding-right:10px;*/
	/* custom decorations */
	/*border:1px solid #ccc;
	background:url(images/h300.png) repeat-x;*/
}
.scrollable_view {

	float: right;
    height: 260px;
    overflow: hidden;
    position: relative;
    text-align: right;
    width: 809px;
}
.scrollable_view .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	float: right;
}

.scrollable_view .items div 
{
	float:right;
	width:809px;
}
/*
	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;
	float: right;
}

.scrollable .items div {
	float:right;
	width:690px;
	height: 184px;
}

/* single scrollable item */
.scrollable img {
	float: right;
	margin: 1px 5px;
	background-color: #fff;
	padding: 2px;
	border: 3px solid #C9CFD0;
	width: 152px;
	height: 152px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
/* single scrollable item */
.scrollable_view img {
	float:right;
	margin:1px 5px;
	background-color:#fff;
	padding:4px;
	border:1px solid #C3C1B4;
	width:152px;
	height:152px;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
/* single scrollable item */
.image_wrap img {
	background-color: #FFFFFF;
    border: 2px solid #C3C1B4;
    border-radius: 4px 4px 4px 4px;
    /*float: right;
    height: 510px;*/
    margin: 1px 5px;
    padding: 3px;
    max-width: 702px;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
.img_and_tit {
	display:block;
	float:right;
	height:200px;
	width:172px;
	color:#9B9B9B;
	font-family:tahoma;
	font-size:12px;
	font-weight:normal;
	text-align: center;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
.image_wrap
{
	margin: 0 auto;
    position: relative;
    width: 750px;
	text-align: center;
}
.but_down22
{
	bottom: 23px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 35%;
	
}
.but_down22 img
{
	background-color: transparent;
	border: none;
}

