/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
#portfoliobox {
	border:1px solid #dcd7cf;
	height:290px;
	margin-right:30px;
}

div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 570px;	
	height:270px;	
	
	/* custom decorations */
	padding:10px 0;				
}

/* 
	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.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:130px;
	height:270px;
	padding:0px 0px;
	font-size:30px;
	font-family:Arial, Helvetica, sans-serif;
	background-color:#f6edf3;
	margin-right: 10px;	
}

div.scrollable div.items div p {
	margin:0px;
	padding:10px;
	padding-top:20px;
	font-size:12px;
	font-style:italic;
	color:#797575;
}

/* active item */
div.scrollable div.items div.active {	
	background-color:#f6edf3;
}

/* GROOTCASE */
#scroller2 {
	position:relative;
	height:300px;
	width:650px;
	margin-right:30px;
	overflow:hidden;
	border:1px solid #dcd7cf;
}


div#scroller2 div.itemsx {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
}

#itemsx {
	
}

#scroller2 .next{
	position:absolute;
	margin-left:-100px;
	background-color:#090;
}

#scrollLinks2 .mouseover_up {
		position:absolute;
	margin-top:35px;
	margin-left:20px;
}

#scrollLinks2 .mouseover_down {
	position:absolute;
	margin-top:377px;
	margin-left:20px;
}




/* SHOWCASE */

#showbox {
	height:100px;
	margin-right:30px;
}

#showbox .next {
	position:absolute;
	margin-top:40px;
	margin-left:620px;
}

#showbox .prev {
	position:absolute;
	margin-top:40px;
	margin-left:125px;
}

#showbox h2 {
	position:absolute;
	margin-top:40px;
	margin-left:20px;
	font-size:12px;
	color:#80ad6c;
	font-style:italic;
}


div#scroller {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 460px;	
	height:100px;	
	margin-left:150px;
	
	/* custom decorations */
	padding:0 0;	

}

/* 
	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#scroller div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:10px;
	margin-top:10px;
}

/* single scrollable item */
div#scroller div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:80px;
	height:80px;
	padding:0px 0px;
	font-size:30px;
	font-family:Arial, Helvetica, sans-serif;
	background-color:#f6edf3;
	margin-right: 10px;	
	border:1px solid #dcd7cf;
}

div#scroller div.items div p {
	margin:0px;
	padding:10px;
	padding-top:20px;
	font-size:12px;
	font-style:italic;
	color:#797575;
}

/* active item */
div#scroller div.items div.active {	
	background-color:#f6edf3;
}

