/* #################################################################################### */
/*                                START SCROLLABLE CSS                                  */
/* #################################################################################### */


#ScrollOuter {
	width:923px;
	height:179px;
	background-color:#000000;
	padding:10px 0px 10px 20px;
	border:1px solid #ccc;
	background:url(../pix/branddirectoryNEW/HeaderBg.png) repeat-x;
	margin: 10px 0 10px 0;
}

#ScrollOuter p.OuterHeader{
	width:850px;
	font-size:20px;
	color:#333333;
	font-weight:normal;
	margin:0;
	padding:0;
}

/*  root element for the scrollable. when scrolling occurs this element stays still. */
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 923px;
	height:120px;
	/* this makes it possible to add next button beside scrollable */
	/*float:left;
	background-color:#FF0000;*/
	
	/* custom decorations
	border:1px solid #ccc;
	background:url(http://static.flowplayer.org/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.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img.product {
	float:left;
	margin:10px 20px 20px 0px;
	cursor:pointer;
	width:67px;
	height:94px;
	border:1px solid #ccc;
}

/* single scrollable item */
/* added for logo positioning */
.scrollable img.ProductLogo {
	float:left;
	margin:10px 20px 20px 0px;
	cursor:pointer;
	width:82px;
	height:105px;
}

.scrollable img.Spacer {
	float:left;
	margin:10px 0px 0px 0px;
	width:1px;
	height:1px;
}

/* single scrollable item */
/* added for text positioning */
.scrollable .ProductText {
	float:left;
	margin:10px 30px 20px 0px;
	padding:0;
	cursor:pointer;
	width:440px;
	height:94px;
	font-size:11px;
	color:#333333;
	font-weight:normal;
}

.scrollable .ProductText a.text, .scrollable .ProductText a.text:hover {
	text-decoration:none;
	font-size:11px;
	color:#333333;
	font-weight:normal;
}

.scrollable .ProductText a.ProductHeader {
	padding:0;
	margin:0;
	font-size:16px;
	color:#848484;
	font-weight:bold;
	text-decoration:none;
}
.scrollable .ProductText a.ProductHeader:hover {
	text-decoration:none;
}

.scrollable a.ProductTextLink {
	font-size:12px;
	color:#848484;
	font-weight:bold;
	text-decoration:none;
}

.scrollable a.ProductTextLink:hover {
	text-decoration:underline;
}

/* active item */
.scrollable .active1 {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

#Controls {
	width:160px;
	height:40px;
	margin:0 0 0 400px;
	padding:0;
}



