/* Gallery styles */

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

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

.slide{
	float:left;
}

#menu_slideshow{
	/* This is the container for the thumbnails */
	height:45px;
}

ul#slideshow {
	margin:0px;
	padding:0px;
}

li.menuItem{
	/* Every thumbnail is a li element */
	width:20px;
	display:inline-block;
	list-style:none;
	height:20px;
	overflow:hidden;
}

li.act,li.act:hover{
	/* The active state of the thumb */	
	background:url(../images/slide/button_selected.png) no-repeat center center;
}
li.inact {
	background:url(../images/slide/button.png) no-repeat center center;
}

li.menuItem inact act{
	background:url(../images/slide/button.png) no-repeat center center;
}

li.act a{
	cursor:default;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:none;
}

li.menuItem a{
	display:block; 
	height:35px;
	padding-top:10px;
}

a img{
	border:none;
}


#main{
	/* The main container */
margin-left:14px;
padding-top:7px;
position:relative;
text-align:center;
width:925px;
}


