@charset "UTF-8";
/* CSS Document */

/*JAVASCRIPT CSS SCROLLABLE*/


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 420px;
	height:340px;

	/* custom decorations 
	Main wrap div*/
	border:1px solid #777;
	/*border-top:3px solid #EEE;
	border-right:3px solid #888;
	border-left:3px solid #CCC;
	border-bottom:3px solid #555;*/
	background:#000000;
}

/*
	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 15p*/x;
	background-color:#000;
	/*padding:10px 8px;*/
	/*border:2px solid #ccc;*/
	cursor:pointer;
	width:420px;
	height:340px;
	margin-top:0;
	
	/*-moz-border-radius:8px;
	-webkit-border-radius:8px;*/
}

 .scrollable .items div p{
	 display:block;
	 width:340px;
 		margin:5px auto 0;
		height:40px;
		overflow:hidden;
/*		 padding:3px 10px;
	 text-align:center;*/
	 color:#FFF;
	 font-family:Verdana, Geneva, sans-serif;
	 font-size: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;	
}

/*div for caption*/

div.caption{
	width:420px;
	height:35px;
	position:relative;
	top:-50px;	
	
}

.column1 {
	float:left;
	margin-right:15px;
}


/* prev, next, prevPage and nextPage buttons */
a.browse {
	background: url(../images/cafe/hori_large.png) no-repeat transparent;
	display:block;
	width:30px;
	height:30px;
	float:left;
	/*margin:10px ;*/
	cursor:pointer;
	font-size:1px;
	z-index:10;
	position:relative;
	top:10px;
}



/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px; left:360px; }
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:bottom -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*/

