/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 840px;	
	height:370px;	
	
	
	/* custom decorations */
	padding-top: 85px;
	background-color: transparent;			
}

/* 
	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.leftedge {
	height: 370px;
	width: 35px;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url(images/edge_left.png) no-repeat left top;
	z-index: 100;
	float: left;
}

div.rightedge {
	height: 370px;
	width: 35px;
	position: absolute;
	top: 0;
	right: 0;
	background: transparent url(images/edge_right.png) no-repeat left top;
	z-index: 100;
}

div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:160px;
	padding:0px 0px;
	font-size:30px;
	font-family: 'bitstream vera sans';
	margin-right: 20px;
	margin-left: 8px;	
	-moz-border-radius:5px;
	overflow: visible;
}

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

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(images/left.png) no-repeat;
	float:left;
	margin:175px 0px;
	cursor:pointer;
	font-size:1px;
	margin-right: 10px;
	border: none !important;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(images/right.png);
	clear:right;
	margin-left: 10px;
	margin-right: 0px;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

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

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

a.web, a.graphics, a.photo {
	cursor: pointer;
	color: #333;
	text-decoration: underline;
}

a.web {
	margin-left: 39px;
}

a.web:hover, a.graphics:hover, a.photo:hover {
	color: #999;
}

span.cat_header {
	font-size: 30px;
	text-align: left;
	float: left;
	margin-left: 7px;
	width: 500px;
	margin-top: 14px;
	line-height: .7em;
}

a.cat_header > div.thumb:first-child {
	padding-bottom: 7px;
}

div.cat_header {
	margin-top: -35px;
}