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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 780px;
	height:160px;
margin-left:10px;
	/* custom decorations */
	border:0px solid #c00;
	/*background:url(/img/global/gradient/h300.png) repeat-x;*/
}


/*
	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.
*/
.pscrollable .pitems {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.pitems div {
	float:left;
	width:900px;
}

/* single scrollable item 
.pscrollable img {
	float:left;
	margin:0px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
*/
/* active item */
.pscrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}


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

/* prev, next, prevPage and nextPage buttons */
a.pbrowse {
	background:url(https://www.contessahome.com/contessa_images/hscrollbutton.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:70px 5px;
	cursor:pointer;
	font-size:1px;

}


/* right */
a.pright 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.pright:hover 		{ background-position:-30px -30px; }
a.pright:active 	{ background-position:-60px -30px; } 


/* left */
a.pleft				{ margin-left: 0px; } 
a.pleft:hover  		{ background-position:-30px 0; }
a.pleft:active  	{ background-position:-60px 0; }

/* up and down */
a.pup, a.pdown		{ 
	background:url(../pd_parts/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.pup:hover  		{ background-position:-30px 0; }
a.pup:active  		{ background-position:-60px 0; }

/* down */
a.pdown 				{ background-position: 0 -30px; }
a.pdown:hover  		{ background-position:-30px -30px; }
a.pdown:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	

