

/* Gallery styles */

#gallery{

	
	background:url(../img/fondo_gallery.gif) top left no-repeat;
	
	
	
	/* The width of the gallery */
	width:580px;
	overflow:hidden;
	margin-bottom:20PX;
}

#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;
}

.slide{
	float:left;
}

.slide img{
width:560px;
height:400px;
padding:10px;
}

#menu{
	/* This is the container for the thumbnails */
	height:75px;
	background:url(../img/panel.png) no-repeat top left ;
	position:relative;
}

#menu ul{
	margin:0px;
	padding:0px;
}

#menu li{
	/* Every thumbnail is a li element */
	width:70px;
	text-align:center;
	display:inline-block;
	list-style:none;
	height:75px;
	overflow:hidden;
	float:left;
}

#menu li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(../img/pic_bg.png) repeat;
}

#menu li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(../img/active_bg.png) no-repeat;
}

#menu li.act a{
	cursor:default;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	/*background:url(../img/divider.png) no-repeat right;*/
}

#menu li a{
	display:block;
	/*background:url(../img/divider.png) no-repeat right;*/
	height:75px;
	padding-top:10px;
}


#menu img{
border:none;
}
