
/* Gallery styles */

#gallery{
	border:1px solid white;
	background:url(../images/slider/panel.jpg) repeat-x bottom center #ffffff;
	/* The width of the gallery */
	width:920px;
	overflow:hidden;
	margin:0 auto;
}

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

.slide{
	float:left;
}

#slider_menu{
	/* This is the container for the thumbnails */
	text-align:center;
	margin:0px auto;
	width:320px;
	height:45px;
}

#slider_menu ul{
	margin:0px auto;
	padding:0px;
}

#slider_menu li{
	/* Every thumbnail is a li element */
	width:60px;
	text-align:center;
	display:block;
	float:left;
	list-style:none;
	height:45px;
	overflow:hidden;
}

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

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

#slider_menu li.act a{
	cursor:default;
}

#slider_menu .fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:url(../images/slider/divider.png) no-repeat right;
}

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

#slider_menu a img{
	border:none;
}

