@charset "utf-8";
/* CSS Document */
/** overlay fix **/
div.overlayWrapLg {
    background-color: transparent;
    background-image: url("/en/images/recordable-storybooks/skin/rsb_borderWide_sides.png");
    background-repeat: repeat-y;
    height: 100%;
    overflow-y: auto;
    padding: 15px 20px 0 60px;
}
/** end overlay fix **/

/* **********Scrollable********* */
	  /* *****Main****** */
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.feature .scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 724px; 
	height:397px;
	top:-15px;
	margin-bottom:-15px;
	/* custom decorations */
}

.story .scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 726px;
	height:470px;
	top:-15px;
	/* custom decorations */
}
/*
	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 div.item {
	float:left;
	margin:0;
	padding:0;
	width:724px;
}

/* *******End Main******** */
/* ********Buttons******** */
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* feature scroller */
	/* right */
	.feature a.right { 
		position:relative;
		float:right;
		display:block;
		background:url(http://www.hallmarkoffers.ca/assets/images/nav-slideshow-prev.png) no-repeat -21px 0px;
		top:205px;
		right:16px;
		width:16px;
		height:23px;
		z-index:10;
		cursor:pointer;
	}
	.feature a.right:hover { 
		background:url(/en/images/storybooks/recordable-storybooks/skin/rsb_arrows_sprite.png) no-repeat -21px 0px;
		color:transparent;
	}
	.feature a.right:active { 
		background:url(/en/images/storybooks/recordable-storybooks/skin/rsb_arrows_sprite.png) no-repeat -21px 0px;
	} 
	
	/* left */
	.feature a.left { 
		position:relative;
		float:left;
		display:block;
		background:url(/en/images/storybooks/recordable-storybooks/skin/rsb_arrows_sprite.png) no-repeat 0px 0px;
		top:205px;
		left:22px;
		width:16px;
		height:23px;
		z-index:10;
		cursor:pointer;
	} 
	.feature a.left:hover { 
		background:url(/en/images/storybooks/recordable-storybooks/skin/rsb_arrows_sprite.png) no-repeat;
		color:transparent;
	}
	.feature a.left:active { 
		background:url(/en/images/storybooks/recordable-storybooks/skin/rsb_arrows_sprite.png) no-repeat;
	}