/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 936px;
	height:350px;

	/* custom decorations */
	border:none;
	margin: 0 0 20px 0;
}

/*
	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;
	overflow: auto;
	z-index: 1;
	clear:both;
}

.scrollable .items p {
	z-index: 100;
	position: absolute;
	left: 43px;
	top: 185px;
	color: #fff;
	font-size: 36px;
	width: 365px;
	font-family: 'RockwellStdBold';
}

.items div {
	float:left;
	width:936px;  
	position: relative; 
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0 !important;
	background-color:#fff;
	padding:0 !important;
	border:none;
	width:936px !important;
	height:350px !important;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

.slogan {
	float: left;
	height:150px;
	margin: -334px 0 0 43px;
	position: relative;
	z-index: 1000;
}

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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(../images/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


/* position and dimensions of the navigator */
.navi {
	float: right;
	height:20px;
	margin: -44px 0 0 0;
	padding: 0 10px 0 10px;
	position: relative;
	z-index: 1;
	clear: left;
}

.navi li {
	float: left;
	list-style: none;
	color: #fff !important;
	font-weight: bold;
	text-align: center;
	margin: 0 10px 0 0;
}

/* items inside navigator */
.navi a {
	width:12px;
	height:12px;
	float:left;
	margin:0 4px 0 0;
	padding: 0 0 0 0;
	font-size: 12px;
	background:url(../images/navi-bg.jpg) 0 0 no-repeat;
	display:block;
	color: #fff !important;
	font-weight: bold;
	text-decoration: none;
}

/* mouseover state */
.navi a:hover {
	background:url(../images/navi-bg.jpg) 0 -12px no-repeat;     
}

/* active state (current page state) */
.navi .active a {
	background:url(../images/navi-bg.jpg) 0 -12px no-repeat !important;   
}

.scrollable img {
	width:100px;
	margin:20px 5px 20px 21px;	
}

.scrollable img.hover {
	background-color:#123;	
}