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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 160px;
	height:90px;
	border:1px solid #000;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.items div {
	float:left;
}

/* prev left */
#col3_content a.prev browse left {
  background-image:url("../../../hori_large.gif");
}


/* prev right */
#col3_content a.prev browse right
{
  background-color: transparent;
  background-image: url("../../../hori_large.gif");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: 0% 0%;
  display: block;
  width: 30px;
  height: 30px;
  float: left;
  margin-top: 40px;
  margin-right: 10px;
  margin-bottom: 40px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 1px;
}

#col3_content a.prev browse right
{
  background-position: 0pt -30px;
  clear: right;
  margin-right: 0px;
}

#col3_content a.prev browse right:hover
{
  background-position: -30px -30px;
}

/* next right */
#col3_content a.next browse right
{
  background-color: transparent;
  background-image: url("../../../hori_large.gif");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: 0% 0%;
  display: block;
  width: 30px;
  height: 30px;
  float: left;
  margin-top: 40px;
  margin-right: 10px;
  margin-bottom: 40px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 1px;
}

#col3_content a.next browse right
{
  background-position: 0pt -30px;
  clear: right;
  margin-right: 0px;
}

#col3_content a.next browse right:hover
{
  background-position: -30px -30px;
}

/* next left */
#col3_content a.next browse left
{
  background-color: transparent;
  background-image: url("../../../hori_large.gif");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: 0% 0%;
  display: block;
  width: 30px;
  height: 30px;
  float: left;
  margin-top: 40px;
  margin-left: 10px;
  margin-bottom: 40px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 1px;
}

#col3_content a.next browse left
{
  background-position: 0pt -30px;
  clear: left;
  margin-left: 0px;
}

#col3_content a.next browse left:hover
{
  background-position: -30px -30px;
}