@charset "UTF-8";
/*
	GALLERY CSS
    root element for the scrollable.
    when scrolling occurs this element stays still.
*/
div.portfolio_scrollable {
    /* required settings */
    position:relative;
	margin:0;
	padding:0;
    overflow:hidden;
    width: 480px; /* 78*6 + 2*5 + 1*2 */	
    height: 80px; /* 78 + 1*2 */
/* this makes it possible to add next button beside scrollable */	
	float:left;
	z-index:50;
}

/*
    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 width and height for the root element and
    not for this element.
*/
div.portfolio_scrollable div.portfolio_items {
    /* this cannot be too large */
    width:10000em;
/*    height: 80px; /* 78 + 1*2 */
/*	background-color:red;*/
    position:absolute;
	z-index:50;
}

/*
    a single item. must be floated in horizontal scrolling.
    typically, this element is the one that *you* will style
    the most.
*/
	.portfolio_tile {
		background:white;
		width:78px;
		height:78px;
		margin:1px;
		float:left;
	}
		.portfolio_tile a{
			display:block;
			opacity:0.6;
			filter:alpha(opacity=60);
			width:78px;
			height:78px;
		}
		.portfolio_tile a:hover{
			opacity:1;
			filter:alpha(opacity=100);
		}

/*div.portfolio_scrollable div.portfolio_items a {
	display:block;
	float:left;
	margin:0px 5px;
    border:1px solid black;	
} */
 
/* you may want to setup some decorations to active the item */ 
/*div.portfolio_items .active {
	position:relative;
	opacity:0.5;
	filter:alpha(opacity=50);
}*/

/* PREV-NEXT BUTTONS */

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/icons/portfolio_buts.png) no-repeat;
	_background:url(../images/icons/portfolio_buts.gif) no-repeat;	/*IE6 hack*/
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:22px 2px;
	cursor:pointer;
	font-size:1px;
}
/* right */
a.right	{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover { background-position:-30px -30px; }
a.right:active { background-position:-60px -30px; } 


/* left */
a.left { margin-left: 0px; } 
a.left:hover { background-position:-30px 0; }
a.left:active { background-position:-60px 0; }


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	
