

/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable.vertical {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 274px;	
	height:250px;	
	
	
	/* custom decorations */
	padding: 0 10px;
	margin: 0;
	background-color:#fff;				
}

div.scrollable.long {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 274px;	
	height:530px;	
	
	
	/* custom decorations */
	padding: 0 10px;
	margin: 0;
	background-color:#fff;				
}

div.scrollable.double {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 274px;	
	height:1060px;	
	
	
	/* custom decorations */
	padding: 0 10px;
	margin: 0;
	background-color:#fff;				
}

div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 614px;	
	height:310px;	
	
	
	/* custom decorations */
	padding: 0;
	margin: 0;
	background-color:#fff;				
}

/* 
	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.vertical div.items {	
	/* this cannot be too large */
	height:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
}

div.scrollable.long div.items {	
	/* this cannot be too large */
	height:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
}

div.scrollable.double div.items {	
	/* this cannot be too large */
	height:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
}

div.scrollable div.images {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear: both;
	z-index: 1;
	
	/* decoration */
}

.images img.leeza { position: relative; z-index: 200; }

#RachaelRay { position: relative; z-index: 0 }
#business { position: relative; z-index: 0 }
#DrRyan { position: relative; z-index: 0 }


#RachaelRay a.slideshow-link { 
	position: absolute;
	display: block;
	text-decoration: none;
	top: 170px; 
	left: 360px;
	width: 217px;
	height: 50px;
	text-indent: -9999em;
	background: url(../images/youtube-clip.png) no-repeat;
}
#business a.slideshow-link { 
	position: absolute;
	display: block;
	text-decoration: none;
	top: 110px; 
	left: 113px;
	width: 376px;
	height: 125px;
	text-indent: -9999em;
	background: url(../images/signUp.png) no-repeat;
}
#DrRyan a.slideshow-link { 
	position: absolute;
	display: block;
	text-decoration: none;
	top: 225px; 
	left: 336px;
	width: 217px;
	height: 50px;
	text-indent: -9999em;
	background: url(../images/youtube-clip.png) no-repeat;
}

/* single scrollable item */
div.scrollable div.items div {
	width: 274px;
	margin: 0 0 20px 0;
	padding: 0;
	
	/* custom decoration */
	background-color: #fff;
}

div.scrollable div.images div {
	width: 594px;
	margin: 0;
	padding: 10px;
	float: left;
	
	/* custom decoration */
	background-color: #fff;
}

/* hover item */
div.scrollable div.items div.hover {	
	background-color:#efefef;
}

/* active item */
div.scrollable div.items div.active {	
	background-color:#efefef;
}


/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin: 2px auto 0 auto;
	padding-bottom: 0px;
	width:180px;
	height: 0px;
}

div.navi.vertical {
	margin: 2px auto 0 auto;
	padding-bottom: 0px;
	width:280px;
	height: 0;
}

div.navi.horizontal {
	margin: 10px 0 0 10px;
	padding: 0;
	width:300px;
	height: 10px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	

