

/* Gallery styles */

#gallery{

	/* The width of the gallery */
	width:580px;
	overflow:hidden;
	/*margin:auto;*/
	margin-bottom:20PX;
	background:#FFF;
}

#slides{
	/* This is the slide area */
	height:400px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:580px;
	overflow:hidden;
	margin-top:20px;
	
}

.slide{
	float:left;
	width:580px;
	text-align:center;
}

.slide img{
height:400px;
/*padding:10px;*/
}

#menu{
	
	/* This is the container for the thumbnails */
	/*height:110px;*/
	/*background:url(../img/panel.png) no-repeat top left ;*/
	position:relative;
	float:left;
	width:580px;
	padding:10px 0 0 0;
}

#menu ul{
	margin:0;
	padding:0;
	
}

#menu li{
	/* Every thumbnail is a li element */
	/*width:65px;height:65px;*/
	text-align:center;
	display:inline-block;
	list-style:none;
	overflow:hidden;
	float:left;
	margin:0 10px 8px 0;
	background: #fff;
	padding:1px;
	/*border:1px solid #9edbfd;	;
*/
		/*margin-top:10px;*/
}

#menu li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	/*background:#9edbfd;*/
	background:#9b1f60;
}

#menu li.act,li.act:hover{
	/* The active state of the thumb */
	background:#9b1f60;
}

#menu li.act a{
	cursor:default;
	background:#9b1f60;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	border:none;
	/*background:url(../img/divider.png) no-repeat right;*/
}

#menu li a{
	display:block;
	/*background:url(../img/divider.png) no-repeat right;*/
	/*height:75px;
	padding:5px;*/
}


#menu img{
border:none;
}