

/* Gallery styles */

#gallery{
	/* The width of the gallery */
	width:950px;
	overflow:hidden;
}

#slideshow_slides{
	/* This is the slide area */
	height:350px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:950px;
	overflow:hidden;
}

#slideshow_slides .slideshow_slide{
	float:left;
}

#slideshow_menu{
	/* This is the container for the thumbnails */
	height:125px;
	margin-top: 10px;
	margin-bottom: 10px;
}



#slideshow_menu li{
	/* Every thumbnail is a li element */
	width:180px;
	display:inline-block;
	list-style:none;
	height:125px;
	overflow:hidden;
}



.item_left{
	float: left;
	width: 300px;
}

.item_center{
	float: left;
	width: 300px;
	margin-left: 25px;
}

.item_right{
	float: left;
	width: 300px;
	margin-left: 25px;
}









