/* Gallery styles */

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

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

.slide{
	float:left;
}

#menu_slide{
	/* This is the container for the thumbnails */
	height:23px;
	text-align:center;
}

ul{
	margin:5px;
	padding:0px;
}

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

li.inact {
background:url(images/round_selector_inact.png) no-repeat;
}
li.inact:hover{
	/* The inactive state, highlighted on mouse over */

}

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

li.act a{
	cursor:default;
}

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

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

a img{
	border:none;
}