#gallery{
	/* CSS3 Box Shadow */

	
	/* The width of the gallery */
	width:900px;
	height:424px;
	overflow:hidden;
	position:relative;
	z-index:30;
	text-align:center;
}

#slides{
	/* This is the slide area */
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	position:relative;
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:15px;
	position:absolute;
	z-index:32;
	left:10px;
	bottom:10px;
}

ul{
	margin:0px;
	padding:0px;
}

li{
	/* Every thumbnail is a li element */
	background-image:url(../afb/banner/bulletb.png);
	background-repeat:no-repeat;
	width:15px;
	float:left;
	list-style:none;
	height:15px;
	overflow:hidden;
}

li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background-image:url(../afb/banner/bulleta.png);
	background-repeat:no-repeat;
}

li.act,li.act:hover{
	/* The active state of the thumb */
	background-image:url(../afb/banner/bulleta.png);
	background-repeat:no-repeat;
}

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;*/
}

li a{
	display:block;
	height:15px;
}

a img{
	border:none;
}


#leftControl{
  width:50px;
  height:74px;
  z-index:30;
  cursor:pointer;
}
#rightControl {
  width:50px;
  height:74px;
  z-index:30;
  cursor:pointer;
}


/* The styles below are only necessary for the demo page */


#main{
	/* The main container */
	text-align:center;
	width:900px;
	position:relative;
}
