/* gallery (portfolio)
------------------------------------------------ */

#gallery {
	margin: 10px auto 30px;
	width: 912px;
}

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 660px;
	height:90px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 830px;
	height:120px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(images/h300.png) repeat-x;
}

/*
	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 {
	float:left;
	width:130px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

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


/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px;
	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; }

/* up and down */
a.up, a.down		{ 
	background:url(../img/scrollable/arrow/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


/* styling for the image wrapper  */
	#image_wrap {
		/* dimensions */
/*		width:677px;
		margin:15px 0 15px 40px;
		padding:15px 0;
*/
		/* centered */
		text-align:left;

		width: 910px;

		/* some "skinning" */
/*		background-color:#efefef; */
/*		border:2px solid #fff;
		outline:1px solid #ddd;
		-moz-ouline-radius:4px; */
	}

/* image wrapper contents */

#image_wrap img {
	padding: 3px;
	border: 1px solid #d7d7d7;
	margin-top: 20px;
	margin-left: 39px;
}


#image_wrap div {
	float: right;
	width: 300px;
	margin-right: 38px;
}

#image_wrap p {
	width: 300px !important;
}

#image_wrap h3 {
	margin-top: 20px;
}

.gallerypanel {
	display: none;
}


/* ----------------------- gallery examples on services page  -------------------------- */

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 700px;
	height: 350px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
#example1 .slides {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear: both;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
#example1 .slides div {
	float:left;
	cursor: pointer;
	width: 700px;
	height: 350px;
	margin: 0px;
}

#example1 .slides img {
	display: block;
}

/* styling for example one with slideshow effect */

/* container for slides */
.slides {
	/*background:#fff url("images/h300.png") repeat-x;*/
	border:1px solid #000;
	position:relative;	
	height:390px;
	background-color: #000;
	
	width:740px;
	float:left;	
	margin:15px;
	cursor:pointer;
		
	/* CSS3 tweaks for modern browsers */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-box-shadow:0 0 25px #666;
	-webkit-box-shadow:0 0 25px #666;	
}

/* single slide */
.slides div {
	display:none;
	position:absolute;
	color: #fff !important;
	top:0;
	left:0;		
	margin:7px;
	padding:15px 30px 15px 15px;
	height:350px;
	font-size:12px;
}

/* header */
.slides h3 {
	font-size:22px;
	font-weight:normal;
	margin:0 0 10px 0;
	color:#fff;
}

/* tabs (those little circles below slides) */
.slidetabs {
	clear:both;
	margin-left:330px;
}

/* single tab */
.slidetabs 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 */
.slidetabs a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.slidetabs a.current {
	background-position:0 -16px;     
} 	


/* prev and next buttons */
.forward, .backward {
/*	float:left;
	margin-top:190px; */
	background: transparent url("images/arrows.png") no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
	position: absolute;
	top: 190px;	
	z-index: 10000000;
}

.holdingdiv {
	position: relative;
}

.forward {
	left: 700px;
}

.backward {
	left: 45px;
}

/* next */
.forward 				{ background-position: 0 -30px; clear:right; }
.forward:hover 		{ background-position:-30px -30px; }
.forward:active 	 	{ background-position:-60px -30px; } 


/* prev */
.backward:hover  		{ background-position:-30px 0; }
.backward:active  	{ background-position:-60px 0; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}


/* slide overlays */

.slides div span {
	background-color: #000 !important;
	color: #fff !important;
	display: none;
	padding: 20px 20px 0px 20px;
	width: 670px;
	margin-top: -130px;
	height: 120px;
/*	z-index: 1000;*/
}
/*
.slides div img {
	z-index: 10;
} */

