/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollablewebsites {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 940px;	
	height:360px;	
	
	/* custom decorations */
		
}

/* 
	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.scrollablewebsites div.itemwebsites {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
}

/* single scrollable item */
div.scrollablewebsites div.itemwebsites div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:940px;
	font-size:30px;
	font-family: Helvetica, Arial;
	background-color: #dce1e4;
}

/* active item */
div.scrollablewebsites div.itemwebsites div.active {
	border:1px inset #ccc;		
	background-color:#dce1e4;
}



/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollablebrands {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 940px;	
	height:360px;	
	
	/* custom decorations */
			
}

/* 
	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.scrollablebrands div.itembrands {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
}

/* single scrollable item */
div.scrollablebrands div.itembrands div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:940px;
	font-size:30px;
	font-family: Helvetica, Arial;
	background-color: #dce1e4;	
}

/* active item */
div.scrollablebrands div.itembrands div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}

.officepic{
	width: 620px;	
		height:354px;	
}
.work-slide{
	width:100%;
	height:600px;
}
.officepic, .work-slide { 
		/* required settings */
		position:relative;
		overflow:hidden;	 	
		

		/* custom decorations */
		background-color:#dbe0e4;				

}

div.officepic div.items, div.work-slide div.items  {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
}

/* single scrollable item */
div.work-slide div.items div {
float:left;
	
	/* custom decoration */
	text-align:center;
	width:940px;
	font-size:30px;
	font-family: Helvetica, Arial;
	background-color: #ddd;
}
div.officepic div.items div{
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:620px;
	font-size:30px;
	font-family: Helvetica, Arial;
	background-color: #ddd;
}

/* active item */
div.officepic div.items div.active, div.work-slide div.items.active {
	border:1px inset #ccc;		
	background-color:#fff;
}

