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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 817px;
/*  height:120px;*/
  height: 780px;

	/* custom decorations */
	border:1px solid #ccc;
/*  background:url(../images/scrollable/h300.png) repeat-x bottom;*/
	margin-bottom: 10px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/*
	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 */
.scrollable .advertisement_preview {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
/*  width:100px;
  height:75px;*/
	width: 770px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable img {
  float:left;
	background-color:#fff;
	padding:2px;
	cursor:pointer;
	border:1px solid #ccc;
/*  width:100px;
  height:75px;*/
	width: 608px;
	height: 730px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable .advertisement_context {
  float: left;
  width: 125px;
  margin-left: 10px;
  padding: 10px;
  text-align: center;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}


.navi {
  padding: 5px 20px;
  text-align: center;
}
.navi a.active {
/*  background-position:0 -16px;*/
  color: #FFF;
  background-color: #004D91;
/*  font-size: 1.2em;*/
  font-weight: bold;
}
.navi a {
  -moz-background-clip:border;
  -moz-background-inline-policy:continuous;
  -moz-background-origin:padding;
  padding: 2px;
  margin: 2px 0;
/*  background:transparent url(../images/scrollable/arrow/navigator.png) no-repeat scroll 0 0;
  display:block;
  float:left;
  font-size:1px;
  height:8px;
  margin:3px;
  width:8px;*/
}