/* Gallery styles */

#gallery{
	width:960px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:330px;
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:960px;
	overflow:hidden;
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:25px;
	padding: 0px;
	width: 174px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

#menu ul{
	padding:0px;
	margin: 0px;
}

#menu li{
	/* Every thumbnail is a li element */
	width:22px;
	list-style:none;
	height:25px;
	overflow:hidden;
	float: left;
	margin: 0px;
	padding: 0px;
	background-image: url(/images/inactive_bg.png);
	background-repeat: no-repeat;
	background-position: center center;
}

#menu li.inact:hover{
	background-image: url(/images/pic_bg.png);
	background-repeat: no-repeat;

}

#menu li.act,#menu li.act:hover{
	/* The active state of the thumb */
	background:url(/images/active_bg.png) no-repeat;
}

#menu li.act a{
	cursor:default;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:url(/images/divider.png) no-repeat right;
}

#menu li a{
	display:block;
	height:25px;
}

a img{
	border:none;
}
