/*JAVASCRIPT CSS SCROLLABLE*/


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 920px;
	height:300px;

	/* custom decorations 
	Main wrap div*/
	border-bottom:1px solid #777;
	/*border-top:3px solid #EEE;
	border-right:3px solid #888;
	border-left:3px solid #CCC;
	border-bottom:3px solid #555;
	background:url(../images/h300.png) repeat-x;*/
}

/*
	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
individual pics*/
 .scrollable .items div {
	float:left;
/*	margin:7px 9px 5px 15px;
*/	background-color:#FFF;
	/*padding:10px 8px;*/
	/*border:2px solid #ccc;*/
	cursor:pointer;
	width:920px;
	height:300px;
	
	/*-moz-border-radius:8px;
	-webkit-border-radius:8px;*/
}

 .scrollable .items div p{
/*	 display:block;
	 width:237px;
	 margin:0 auto 5px;*/
	 padding:3px 10px;
 }
 
  .scrollable .items div h2{
	  padding:2px 10px;
	  text-align:center;
	  display:block;
	  	 font-size:1.1em;

	  
  }
 
 
    .scrollable .items img{
		margin:0;
	}
 
 /*  .scrollable .items div h1{
	 width:100%;
	 text-align:center;
	 display:block;
	 padding:6px 0 8px;
	 margin-top:0;
	 margin-bottom:0;
	 color:#FFF;
	 background-color:#006;
	 font-size:1.5em;
	 
   }*/
/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}



/* 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_large2.png) no-repeat transparent;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin: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: 90px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(../img/scrollable/arrow/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;		
} 	


/*JAVASCRIPT CSS SCROLLABLE*/


