body
{
	color: #000000;
}

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: 40px;
	width: 660px;	 
	height:300px;	
	clear: both;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/

#items {	
	position:absolute;
	width:20000em;	
	clear:both;
	border: none;
}

/* custom positioning for navigational links */
a.prev, a.next {
}


/* single item */ 
#items div { 
	position: relative;
    float:left; 
    width: 158px;
	height: 300px;
	margin-right: 8px;
    color:#fff; 
    border:none; 
    cursor:pointer; 
} 
 
/* style when mouse is over the item */ 
#items div.hover { 
    background-color:#444;     
} 
 
/* style when element is active (clicked) */ 
#items div.active { 
    background-color:#066; 
    cursor:default; 
}

/*********** navi ***********/


/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	color: #000000;
	float: left;
	width:18px;
	height:18px;
	background:url(../images/design/left.png) no-repeat;
	margin-top: 20px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	cursor:pointer;
}

a.prev, a.prevPage {
	margin-left: 38px;
	margin-right: 290px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	border:none;
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	opacity: .3;
}

/* next button uses another background image */
a.next, a.nextPage {
	clear:right;
	float: right;
	margin-right: 38px;	
	background:url(../images/design/right.png) no-repeat;
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	float: left;
	text-align: center;
	margin-top: 20px;
	height:20px;
	width: 320px;
	margin-left: 0px;
	margin-right: auto;
}


/* items inside navigator */
div.navi a {
	float: left;
	width:8px;
	height:8px;
	margin: 4px 3px;
	background:url(../images/design/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 

/*********** PREVIEW ***********/

.preview
{
	position: relative;
	bottom: 30px;
	width: 155px;
	overflow: hidden;
    background:#FFFFFF;
    padding:5px;
	text-align: center;
    color:#333333;
	filter:alpha(opacity=0);
	opacity:0;
	-moz-opacity:0;
}	

.preview h3
{
	color: #505050;
	margin: 0;
	padding: 0;
	font-weight: lighter;
	filter:alpha(opacity=1);
	opacity:1;
	-moz-opacity:1
}

.preview img
{
	margin: 0;
	padding: 0;
	width: 50px;
	height: 50px;
	filter:alpha(opacity=1);
	opacity:1;
	-moz-opacity:1
}





