/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 957px;
	height:150px;
	float:left;
}

/*
	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;
	left:0;
	top:20px;
}

/* single scrollable item */
.scrollable ul li {margin:0px 5px 20px 27px; width:165px; height:110px}
.scrollable a {
	float:left;
	background-color:#b4b4b4;
	padding:1px;
	cursor:pointer;
	width:165px;
	height:111px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}
.scrollable img {
	width:165px;
	height:111px;
}


/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:50px 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: 5px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

#demotip { 
    display:none; 
    /*background:transparent url(../images/black_arrow.png); */
    font-size:11px; 
    height:160px; 
    width:240px; 
    padding:25px; 
    color:#fff;
	z-index:99999;
	line-height:1.2;
	text-align:left;
}

* html #demotip {
	bbackground-image:url(../images/black_arrow.gif);
}

