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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 735px;
	height:65px;

}

/*
	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.
*/
#galMain .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
#galMain img {
	float:left;
	margin:5px 10px 5px 0px;
	background-color:#fff;
	cursor:pointer;
	width:65px;
	height:45px;

	filter:alpha(opacity=50); /* IE */
	-moz-opacity: 0.5; /* Mozilla */
	opacity: 0.5; /* Opera */
	
	
}

/* active item */
#galMain .active {
	filter:alpha(opacity=100); /* IE */
	-moz-opacity: 1; /* Mozilla */
	opacity: 1; /* Opera */

	z-index:9999;
	position:relative;
}


/* styling for the image wrapper  */
#image_wrap {
	/* dimensions */
	width:735px;
	height:419px;

	/* centered */
	text-align:center;

	/* some "skinning" */
	/*background-color:#efefef;*/
	background-color:#000;
}

.navi {
	width:180px;
	height:10px;
	margin-top:7px;
	/*padding-left:350px;
	*/
	position:relative;
	margin-left:auto;
	margin-right:auto;
}


/* 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;     
}

.gal-next {
	position:absolute;
	top:111px;
	left:367px;
	width:367px;
	height:419px;
	background:url(../images/panel-nav-next.png) 327px 188px no-repeat;

	filter:alpha(opacity=0); /* IE */
	-moz-opacity: 0; /* Mozilla */
	opacity: 0; /* Opera */
}

	.gal-next a {
		width:367px;
		height:419px;
		display:block;
		text-indent:-4000px;	
	}

.gal-prev {
	position:absolute;
	top:111px;
	left:0px;
	width:367px;
	height:419px;
	background:url(../images/panel-nav-prev.png) 0px 188px no-repeat;
	
	filter:alpha(opacity=0); /* IE */
	-moz-opacity: 0; /* Mozilla */
	opacity: 0; /* Opera */
}

	.gal-prev a {
		width:367px;
		height:419px;
		display:block;
		text-indent:-4000px;	
	}





