/* Gallery styles */

#gallery{

	
	background:url(img/panel.jpg) repeat-x bottom center #ffffff;
	
	/* The width of the gallery */
	width:450px;
	overflow:hidden;
	float:right;
}

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

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:35px;
}

ul{
	margin:0px;
	padding:0px;
}

li{
	/* Every thumbnail is a li element */
	width:60px;
	display:inline-block;
	list-style:none;
	height:35px;
	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;
}

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

li a{
	display:block;
	background:url(img/) no-repeat right;
	height:35px;
	padding-top:0px;
}

a img{
	border:none;
}


/* The styles below are only necessary for the demo page */

#gallery1{
	/* The main container */

	text-align:center;
	position:relative;
}


p{
	text-align: left;
	width: auto;
}
