#contScoll{
	width:650px;
	height:410px;
	float: left;
	position: relative;
}
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 650px;
	height:410px;
	/* custom decorations */
	padding:0px 0;
	background-color:#FAF9F9;
}
/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	/* decoration */
	margin-left:0px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	/* custom decoration */
	text-align:center;
	width:650px;
	padding:0px 0px;
	font-size:30px;
	font-family: Georgia, "Times New Roman", Times, serif;
	background-color:#FAF9F9;
	margin-right: 0px;
	-moz-border-radius:5px;
}

/* active item */
div.scrollable div.items div.active {		
	background-color:#FAF9F9;
}
/* root element for the whole scrollable setup */

#thumbs {
	position:relative;
	width:20000em;
	clear:both;
}

/* single item */
#thumbs div {
	float:left;
	width:650px;
	height:410px;
	color:#191919;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#FAF9F9;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#FAF9F9;
	cursor:default;
}

/**/
.promo { 
	width: 514px;
	height: 355px;
	margin: 0;
	padding: 0;
}

.promo .txt {
	width: 400px; height: 280px; margin: -405px 0 0 0;
}

.promo .txt h1 {
	padding: 3px 0px 10px 20px;
	clear:both;
	font-size:36px;
	color:#191919;
	margin:0;
	[if Gecko 1.8] filter:progid:DXImageTransform.Microsoft.alpha(opacity=90); -moz-opacity: 0.9; opacity: 0.9;
}

.promo .txt .description {
	padding: 1px 0px 0px 68px;
	font-size:30px;
	color:#0091CB;
	margin:0px;
	clear:both;
	float: left; 
	[if Gecko 1.8] filter:progid:DXImageTransform.Microsoft.alpha(opacity=90); -moz-opacity: 0.9; opacity: 0.9;
}

.promo a {
	color:#0091CB;
	text-decoration:none;
	width: 514px;
	height: 355px;
	display: block;
}
.promo a:hover {
	color:#0091CB;
	text-decoration:none;
}

.promo .txtScroll02 {
	padding: 0px 0px 0px 0px;
	font-size:65px;
	color:#0091CB;
	margin:-25px 0px 0px 0px;
	display:block;
	width:auto;
	[if Gecko 1.8] filter:progid:DXImageTransform.Microsoft.alpha(opacity=90); -moz-opacity: 0.9; opacity: 0.9;
}
/* NAVIGATION*/
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
#contScoll a.next, #contScoll a.nextPage {
	display:block;
	width:25px;
	height:19px;
	background:url(/asset/img/layout/left.gif) no-repeat;
	background-position:0px -19px;
	float:right;
	margin:185px 24px 0px 0px;
	cursor:pointer;
	font-size:1px;
	position: absolute;
	z-index: 20;
	right: 0px;
}
/* prev, next, prevPage and nextPage buttons */
#contScoll  a.prev,#contScoll  a.prevPage {
	display:block;
	width:25px;
	height:19px;
	background:url(/asset/img/layout/left.gif) no-repeat;
	background-position:0px -19px;
	float:left;
	margin:185px 0px 0px 24px;
	cursor:pointer;
	font-size:1px;
	position: absolute;
	z-index: 20;
	left: 0px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	/*background-position:0px -19px;*/
}

/* disabled navigational button */
#contScoll a.disabled {
	/*visibility:hidden !important;		*/
	background:url(/asset/img/layout/left.gif) no-repeat;
}

/* next button uses another background image */
#contScoll  a.next, #contScoll  a.nextPage {
	background-image:url(/asset/img/layout/right.gif);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	width:70px;
	height:20px;
	float: right;
	position: absolute;
	z-index: 20;
	margin-top: 20px;
	text-align: right;
	right: 0px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	margin:3px;
	background:url(/asset/img/layout/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
	float: left;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	

