/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 979px;
	height:180px;
	-moz-box-shadow: 3px 3px 5px #3e3c3b;
	-webkit-box-shadow: 3px 3px 5px #3e3c3b;
	box-shadow: 3px 3px 5px #3e3c3b;
}

.scrollable.anlagen {
	height:360px;
}

/*
	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;
}

.items div {
	float:left;
	width:979px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0;
	padding:0px;
	width:979px;
	height:180px;
}

.scrollable.anlagen img {
	float:left;
	margin:0;
	padding:0px;
	width:979px;
	height:360px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}


/* position and dimensions of the navigator */
.navi {
	position:relative;
	width:170px;
	height:20px;
	margin: 10px auto 0 auto;
}

.navi.home {
	position:relative;
	width:280px;
	height:20px;
	margin: 10px auto 0 auto;
}

.navi a {
	background: url("../img/scroll/inactive.png") no-repeat scroll 0 0 transparent;
    display: block;
    float: left;
    font-size: 1px;
    height: 28px;
    margin-right: 10px;
    width: 18px;
}


/* mouseover state */
.navi a:hover {
	background: url("../img/scroll/active.png") no-repeat scroll 0 0 transparent;
}

/* active state (current page state) */
.navi a.active {
	background: url("../img/scroll/active.png") no-repeat scroll 0 0 transparent;
}

.videoLinks {
	position:absolute;
	top:368px;
	left:0px;
	width: 960px;
	background-color:#272528;
	border-top:#414143 1px solid;
	height:40px;
}

.videoLinks p {
	padding:8px 0 0 10px;
	margin:0;
}

.videoLinks a {
	margin-right:20px;
	font-size:9px;
	line-height:16px;
	height:16px;
}

a.vidShoppinglist {
	background:transparent url(../img/iconsVid/shopping-list.html) no-repeat -10px -7px;
	padding: 8px 0 7px 33px;
	font-size:9px;
}

a.vidShare {
	background:transparent url(../img/icons/user.html) no-repeat;
	padding: 3px 0 3px 18px;
}

a.vidMyCollection {
	background:transparent url(../img/iconsVid/my-collection.html) no-repeat -10px -7px;
	padding: 8px 0 7px 33px;
	font-size:9px;
}

a.vidStepByStep {
	background:transparent url(../img/iconsVid/step-by-step.html) no-repeat -10px -7px;
	padding: 8px 0 7px 33px;
	font-size:9px;
}

a.vidComments {
	background:transparent url(../img/iconsVid/user-comments.html) no-repeat -10px -7px;
	padding: 8px 0 7px 33px;
	font-size:9px;
}


a.vidCommentEdit {
	background:transparent url(../img/icons/edit.html) no-repeat;
	padding: 3px 0 3px 18px;
	font-size:9px;
}

a.vidCommentDelete {
	background:transparent url(../img/icons/trash.html) no-repeat;
	padding: 3px 0 3px 18px;
	font-size:9px;
}