

/* Gallery styles */

#gallery{
	/* CSS3 Box Shadow */
	
	/* CSS3 Rounded Corners */

	
	background:url(img/panel.jpg) repeat-x bottom center #ffffff;
	
	/* The width of the gallery */
	width:962px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:333px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:962px;
	overflow:hidden;
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:45px;
}

ul{
	margin:0px;
	padding:0px;
}

li{
	/* Every thumbnail is a li element */
	display:inline-block;
	list-style:none;
	height:35px;
	line-height:35px;

}

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;
}


li a{
	display:block;
	padding:0px 2px 0px 3px;
	padding-top:5px;
    height:45px;
	line-height:45px;
}

a img{
	border:none;
}


/* The styles below are only necessary for the demo page */


#main{
	/* The main container */
	text-align:center;
	width:962px;
	position:relative;
}

a, a:visited {
	color: #990000;
	text-decoration:none;
}

a:hover{
	text-decoration:underline;
}
