
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
		/* required settings */
	position:relative;
		overflow:hidden;
		width: 588px;
		height:770px;
}
/*
	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 .projects {
		/* this cannot be too large */
	width:20000em;
		position:absolute;
		clear:both;
}
.projects .project {
		float:left;
		width:588px;
}
/* single scrollable item */
.scrollable img {
		margin: 0 0 10px;
		padding:10px 22px;
		width:542px;
		height:357px;
		background: #F5F5F5;
		border:solid 1px #e9e9e9;
}
/* active item */
.scrollable .active {
		border:0px solid #000;
		position:relative;
		cursor:default;
}
/*  Buttons */
/* prev, next, prevPage and nextPage buttons */
a.browse {
		display:block;
		width:10px;
		height:18px;
		float:left;
		margin:0px 30px;
		cursor:pointer;
		font-size:1px;
}


.project-text{

position: absolute;
right: 19px;
top: 0;
font-size: 12px;
font-weight: bold;

}
/* right */
a.right {
		clear:right;
		margin-right: 0px;
		background: url(../images/arrow-right.gif) no-repeat 0 0px;
}
a.right:hover {
		background: url(../images/arrow-right.gif) no-repeat 0px 0px;
}
a.right:active {
		background: 0px 0px;
}
/* left */
a.left {
		margin-left: 0px;
		background: url(../images/arrow-left.gif) 0px 0px;
}
a.left:hover {
		background: url(../images/arrow-left.gif) no-repeat 0px 0px;
}
a.left:active {
		background-position:-60px 0;
}
/* disabled navigational button */
a.disabled {
		visibility:hidden !important;
}
/* Navigation */
/* position and dimensions of the navigator */
.navi {
		width:520px;
		height:20px;
		position: absolute;
		left: 15px;
		top: 7px;
}
/* items inside navigator */
.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 */
.navi a:hover {
		background-position:0 -8px;
}
/* active state (current page state) */
.navi a.active {
		background-position:0 -16px;
}
.portfolio-nav {
		border: 1px solid #efefef;
		height: 25px;
		width: 588px;
		margin: 0 0 10px;
		background: no-repeat;
		position: relative;
}
.arrows {
		position: absolute;
		top: 4px;
		right: 15px;
}
#portfolio h2 {
		font-size: 1.75em;
		color: #266998;
}
#portfolio h3 {
		font-size: 1.25em;
}

/* client list scroller
------------------------------------------------ */

.scrollable.list {
		/* required settings */
	position:relative;
		overflow:hidden;
		width: 558px;
		height:50px;
		float:left;
}

.scrollable.list .logos {
	width:20000em;
		position:absolute;
		clear:both;
}

.scrollable.list img {
		margin: 0;
		padding:0;
		width:568px;
		height:53px;
		border:solid 0px;
}

/* client list buttons
------------------------------------------------ */
a.browse2 {
	display:block;
	width:10px;
	height:18px;
	float:left;
	margin: 18px 0 0 0;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right.browse2,a.right.browse2:hover,a.right.browse2:active 				{ background: url(../images/arrow-right.gif) no-repeat 0 0px;}
 	
/* left */
a.left.browse2,a.left.browse2:hover,a.left.browse2:active 				{ background: url(../images/arrow-left.gif) no-repeat 0 0px;}
