

/* Gallery styles */

#gallery{
		
	border:0px solid #cññccc;
	background: repeat-x bottom center #ffffff;
	
	/* The width of the gallery */
	width:800px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:301px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:800px;
	overflow:hidden;
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:20px;
}

ul{
	margin:0px;
	padding:0px;
}

li{
	/* Every thumbnail is a li element */
	width:27px;
	display:inline-block;
	list-style:none;
	height:20px;
	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 a{
	display:block;
	
	height:10px;
	padding-top:3px;
}

a img{
	border:none;
}


/* The styles below are only necessary for the demo page */



#main{
	/* The main container */
	margin:15px auto;
	text-align:center;
	width:800px;
	position:relative;
}

a, a:visited {
	color:#0196e3;
	text-decoration:none;
	outline:none;
}


p{
	padding:0px;
	text-align:center;
}
