

/* Gallery styles */

#gallery{
	background:url(img/panel.jpg) repeat-x top center #ffffff;
	
	/* The width of the gallery */
	width:895px;
	overflow:hidden;
	border-bottom: thin solid #d7d7d7;
}

#slides{
	/* This is the slide area */
	height:325px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:895px;
	overflow:hidden;
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:45px;
	border-bottom: thin solid #d7d7d7;
	margin:0px;
	padding:0px;
	width: 895px;
}

#gallery ul{
	margin:auto;
	width:  800px;
	padding:0px;
	text-align: center;
}

#gallery li{
	/* Every thumbnail is a li element */
	width:90px;
	display: inline-block;
	float: left;
	list-style:none;
	height:45px;
	overflow:hidden;
	margin: 0px 0px 0px -2px;
	padding:0px;
	text-indent: -5px;
	
}



#gallery li.act,li.act:hover{
	/* The active state of the thumb */
	background: url(img/active_bg.png) no-repeat;
}

#gallery li.act a{
	cursor:default;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:url(img/divider.png) no-repeat right;
}

#gallery li a{
	display:block;
	background:url(img/divider.png) no-repeat right;
	height:35px;
	padding-top:10px;
}

#gallery a img{
	border:none;
}



