@charset "utf-8";
/* defaults */
.callout-hero
{
	display:block;
	float:left;
	width:688px;
	height:309px;
	background:#FFFFFF;
	margin-bottom:20px;
}
/* position and dimensions of the navigator */
.navi
{
	position:absolute;
	z-index:1000;
	width:88px;
	height:20px;
	margin:286px 0px 0px 600px;
}
.navi a{width:18px;height:18px;float:left;background:url(/makeup/img/navigator-arrow.png) 0 0 no-repeat;display:block;font-size:1px; cursor:pointer;}
.navi a:hover{background-position:-18px 0px;}
.navi a.active{background-position:-36px 0px;}
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width:688px;
	height:309px;
}
/*
	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;
}
.scrollable a, .scrollable a:link, .scrollable a:visited, .scrollable a:hover 
{
	margin:0px;
	padding:0px;
}
/* single scrollable item */
.scrollable img {
	float:left;
	background-color:#FFF;
	cursor:pointer;
	width:688px;
	height:309px;
	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}
.items div
{
	display:block;
	width:688px;
	height:309px;
	float:left;
}

