/* Gallery styles */

#gallery{

	border:1px solid #dedede;
	
	background:url(../UPLOAD/cmsimages/panel.jpg) repeat-x bottom center #ffffff;
	
	/* The width of the gallery */
	width:600px;
	overflow:hidden;
	margin-bottom:15px;
}

#slides{
	/* This is the slide area */
	height:200px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:600px;
	overflow:hidden;
	text-align:left;
	
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:55px;
	text-align:center;
}

ul{
	margin:0px;
	padding:0px;
}

li{
	/* Every thumbnail is a li element */
	width:73px;
	display: inline-block;
	list-style:none;
	height:55px;
	vertical-align: top;
	overflow:hidden;
	list-style-image:none;
}

li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(../UPLOAD/cmsimages/pic_bg.png) repeat;
}

li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(../UPLOAD/cmsimages/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(../UPLOAD/cmsimages/divider.png) no-repeat right;
}

li a{
	display:block;
	background:url(../UPLOAD/cmsimages/divider.png) no-repeat right;
	height:45px;
	padding-top:10px;
}

a img{
	border:none;
}


