/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable {
	/* required settings */ 
    position:relative;
	overflow:hidden;
	width: 680px;  /* Width os scrolling area */
	height:325px;  /* height of scrolling area 
}

/* 
    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;
}
/* 
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div {
	float:left;
	width: 530px;
	height:325px;
	color:#fff;
	cursor:pointer;
	background-color: #cccccc;
	background-repeat: repeat-x;
	position: relative;
}
/* you may want to setup some decorations to active item */ 
div.scrollable div.items div.active {
	background-color:#fff;
}
/* style when mouse is over the item */
div.scrollable div.items div.hover {
	background-color:#444;
}
div.scrollable div.items img.thumb {
	position: absolute;
	top: 15px;
/*	left: 300px;		/* adjust this to get pics in correct place width - width pic */
	right: 0px;
	overflow: hidden;
	height: 150px;
	width: 150px;
	margin: 5px;
	padding: 3px;
	border: thin solid #FFF;
}

div.scrollable div.items h2, div.items p, div.items span {
	margin:23px;
	font-size:13px;
	color:#fff;
	width: 285px; /*width of text in scrollable block*/
}
div.scrollable div.items h2 {
	margin:23px;
	font-size:13px;
	color:#d7df21;
	width: 285px; /*width of text in scrollable block*/
	font-weight: bold;
}
div.scrollable div.items h2 em {
	font-style:normal;
	color:#d7df21;
	font-weight: bold;
}
/* Navigation buttons */

 
/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	cursor:pointer;
	background-image: url(../images/arrow-green-left.png);
	background-repeat: no-repeat;
	position: absolute;
	left: 0px;
	top: 0px;
}
/* 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/arrow-green-right.png);
	position: absolute;
	left: 460px;
	top: 0px;
	clear:right;
}
/*********** navigator ***********/
 
 
/* position and dimensions of the navigator */
div.navi-box {
	margin-left:auto;
	width:446px; /* 478 - (18*2) */
	height:18px;
	padding: 0px;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 0px;
}
div.navi {
	height:18px;
}

/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	cursor:pointer;
}
/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;
}
/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;
}
#projectsscroll {
	width: 478px;
	position: relative;
	overflow: hidden;
}

.cent{
	text-align: center;
	    margin-left: auto;
    margin-right: auto;
}

.morelink{
	text-align: right;
	display: block;
	float: right;
	}

