/* Gallery styles */

#gallery{
	background:url(../homeSlider/img/panel.jpg) repeat-x bottom center;
	
	/* The width of the gallery */
	width:500px;
	overflow:hidden;
}

#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:500px;
	overflow:hidden;
}

.slide{
	float:left;
	width: 500px;
	
}

#gallery #menu{
	/* This is the container for the thumbnails */
	height:45px;
	text-align:center;
}

#gallery #menu ul {
	margin:0px;
	padding:0px;
}

#gallery #menu li.menuItem {
	/* Every thumbnail is a li element */
	width:65px;
	display:inline-block;
	list-style:none;
	height:45px;
	overflow:hidden;
	text-align:center;
}

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

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

#gallery #menu li.act a{
	cursor:default;
}

#gallery #menu li.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:url(../homeSlider/img/divider.png) no-repeat right;
	display:inline-block;
	list-style:none;
	height:45px;
	overflow:hidden;
}

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