@charset "UTF-8";
/* CSS Document */


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

.portfoli_browser {
	margin-left:60px;
	margin-top:0px;
}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 700px;
	height:1720px;
	margin-bottom:20px;

	/* custom decorations */
	border:1px solid #222;
	background:url(../images/gradient/h051.png) repeat-x;
	background-position:bottom;
}

/*
	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;
}

.items div {
	width:700px;
	cursor:pointer;
	margin-top:-30px;
}

#item_header {
	position:relative;
	float:left;
	width:800px;
	height:0px;
	font-size:20px;
	font-family:Arial, Helvetica, sans-serif;
	color:#CCC;
	cursor:pointer;
	margin-top:5px;
	margin-left:30px;
}

#item {
	position:relative;
	float:left;
	width:140px;
	height:200px;
	font-size:10px;
	color:#CCC;
	font-family:Arial, Helvetica, sans-serif;
	cursor:pointer;
	margin-left:30px;
	margin-top:40px;
}

#item2 {
	position:relative;
	float:left;
	width:100px;
	height:200px;
	font-size:10px;
	color:#CCC;
	font-family:Arial, Helvetica, sans-serif;
	cursor:pointer;
	margin-left:30px;
	margin-top:20px;
}

#item a{
	color:#CCC;
}

#item2 a{
	color:#CCC;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:10px 5px 10px 0px;
	background-color:#000;
	padding:2px;
	width:125px;
	height:170px;
	
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

