#gallery{
	
	box-shadow:0 0 3px #AAAAAA;
	
	border-bottom-left-radius:4px;
	border-bottom-right-radius:4px;
	
	border:1px solid white;
	
	background:url(../img/panel.jpg) repeat-x bottom center #ffffff;
	
	/* The width of the gallery */
	width:665px;
	overflow:hidden;
}

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

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	position : center;
	left : 350px;
	height:45px;
}

ul{
	margin:0px;
	padding:0px;
	list-style: none;
}

li.menuList {
	position : relative;
	float : left;
	display:inline-block;
	list-style:none;
	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;
}


a img{
	border:none;
}
