#gallery{
	border:1px solid #d2d2d2;
	background:url(img/panel.jpg) repeat-x bottom center #ffffff;
	
	/* The width of the gallery */
	width:440px;
	overflow:hidden;
	margin-top: 10px;
	margin-left: 10px;
}

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

.slide{
	float: left;
	width:440px;
	height:250px;
}

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

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

#main li{
	/* Every thumbnail is a li element */
	margin-top: 5px;
	width:60px;
	display:inline-block;
	list-style:none;
	height:60px;
	overflow:hidden;
}

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

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

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;
}

#main li a{
	display:block;
	background:url(img/divider.png) no-repeat right;
	height:35px;
	padding-top:10px;
}

#main{
	/* The main container */
	margin:0 auto;
	text-align:center;
	position:relative;
}