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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 780px;
	height:355px;
	margin: 10px;

	 -moz-box-shadow: inset 0 0 15px #24242B;  
 	-webkit-box-shadow: inset 0 0 15px #24242B;   
 	box-shadow: inset 0 0 15px #24242B;
	  
	background-color: #454651;
}


/*
	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;
}

.items .pannel {
	float:left;
	width:780px;
	height: 350px;
}

.items .pannel .text, .items .pannel .gallery {
	float: left;
	padding: 10px 20px;
	height: 100%;
}

.items .pannel .gallery {
	width: 389px;
}

.items .pannel .text {
	border-left: 1px dashed gray;
	width: 309px;
}

.items .pannel .text p{
	font-size: 13px;
	padding-right: 10px;
}

/* position and dimensions of the navigator */
.navi {
	margin-left:400px;
	width:200px;
	height:20px;
}


/* items inside navigator */
.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 */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}



