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

.scrollable a {
	color:#2a313b;
	font-weight: bold;
}

div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 737px;	
	height: 355px;	
	
	/* custom decorations */
	padding: 10px 0;	
	/*border:1px outset #ccc;
	background-color:#efefef;*/	
	
	/* this makes it possible to add next button beside scrollable */
	float:left;
}

/* 
	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 div.items {	
	/* this cannot be too large */
	width:10000px;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	/*text-align:center;*/
	width: 729px;
	padding: 0 0px;
	/*font-size:30px;*/
	/*border:1px outset #ccc;
	background-color: #ddd;*/
	margin-right: 20px;	
/*  -moz-border-radius:5px;*/
}

div.scrollable div.items h2 {
	margin:0px 0px 0px 0px;
	padding:5px 0px;
	font-size:24px;
	line-height:24px;
	font-weight:bold;
	overflow:hidden;
	font-family: Trebuchet ms,Century gothic,Arial,Tahoma,sans-serif;
}

div.scrollable div.items p {
	font-size:14px;
	line-height:22px;

	overflow:hidden;
	font-family: Trebuchet ms,Century gothic,Arial,Tahoma,sans-serif;
	color:#696d70;
}

/* active item */
div.scrollable div.items div.active {
	/*border:1px inset #ccc;		
	background-color:#fff;*/
}


/* @group Nav left-right */

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
    display:block;
    width:22px;
    height:22px;
    background:url(../images/left.png) no-repeat;
    float:left;
    cursor:pointer;
    margin-top: 180px;
}

a.prev, a.prevPage
{
    margin-right: 6px;
    margin-left: 25px;
}

a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
  background-position:0px -22px;      
}

a.disabled {
    visibility:hidden !important;       
}


a.next, a.nextPage {
  background-image:url(../images/right.png);
}

/* @end */

/* @group Navigator */

/* position and dimensions of the navigator */
div.navi {
	margin-left: 42%;
	width: 20%;
	height:20px;
	margin-top: 7px;
}


/* items inside navigator */
div.navi a {
	width:10px;
	height:10px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -10px;      
}

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



/* @end */ 	
