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

/* styling for the image wrapper  */
#yfYachtSpecs #pictureViewer{
	margin-bottom: 15px;
}
#yfYachtSpecs #pictureViewer {
	background-color: #465967;
}
#yfYachtSpecs #pictureViewer #slider{
	float: right;
	margin-top: 0px;
	min-height: 290px;
}
#yfYachtSpecs #pictureViewer #mainPicture{
	width: 444px;
	padding: 0px 5px 5px 5px;
	min-height: 318px;
}
#yfYachtSpecs #pictureViewer #mainPicture p{
	text-align: center;
	margin: 0;
	padding: 0;
	line-height: 315px;
}
#yfYachtSpecs #pictureViewer #mainPicture p img{
	vertical-align: middle;
}
#loading {
	width: 95px;
	height: 256px;
	text-align: center;
	line-height: 276px;
	padding-top: 30px;
}
#loading span.loadTekst{
	color: #777F8D;
	font-weight: bold;
	font-size: 14px;
	clear: both;
}
#loading img {
	clear: both;
	vertical-align: middle;
	padding: 0;
	border: none;
}
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 95px;
	height:271px;

	/* custom decorations */
	background:url(/img/global/gradient/h300.png) repeat-x;
	border-right: solid 1px #FFFFFF;
	border-left: solid 1px #FFFFFF;
}

/*
	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 */
	height:20000em;
	position:absolute;
	clear:both;
	text-align: center;
	width:95px;
}

/* single scrollable item */
.scrollable img {
	background-color:#fff;
	cursor:pointer;
	max-width:80px;
	max-height:55px;
	vertical-align: middle;
}

/* active item */
#slider .items div {
	text-align: center;
	border:1px solid #999;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:2px;
	margin: 10px 5px 0 5px;
	vertical-align: middle;
}
#slider .items div p{
	margin: 0;
	padding: 0;
}
#slider .items div.active {
	border:1px solid #FFFFFF;
	z-index:9999;
}


