
/* Gallery styles */
#gallery{
	/* The width of the gallery */
	width:950px;
	margin:12px auto 20px auto;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:331px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:950px;
	overflow:hidden;
	margin-bottom:10px;
}

.slide{
	float:left;
}

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

#menu ul{
	margin:0px;
	padding:0px;
}
#menu .menuItem{float:left;width:317px;margin:0;padding:0;}
#menu li{
	/* Every thumbnail is a li element */
	float:left;
	list-style:none;
	height:58px;
	overflow:hidden;
	text-align:center;
	padding:0;
	line-height:0;
}

#menu li.inact:hover{
	/* The inactive state, highlighted on mouse over */

}

#menu li.act,li.act:hover{
	/* The active state of the thumb */
}

#menu li.act a{
	cursor:default;
}

#menu li a{
	display:block;
	height:58px;
}

#gallery a img{
	border:none;
}


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


#main{
	/* The main container */
	margin:0px auto;
	text-align:center;
	width:950px;
	position:relative;
}