@charset "UTF-8";
/* CSS Document */
/* Gallery styles */

#gallery{
	
	/* CSS3 Rounded Corners */
	
	-moz-border-radius-bottomleft:4px;
	-webkit-border-bottom-left-radius:4px;
	border-bottom-left-radius:4px;
	-moz-border-radius-bottomright:4px;
	-webkit-border-bottom-right-radius:4px;
	border-bottom-right-radius:4px;
	
	/* The width of the gallery */
	width:900px;
	overflow:hidden;
	background-repeat: no-repeat;
	background-position: center center;
}

#slides{
	/* This is the slide area */
	height:600px;
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:900px;
	overflow:hidden;
}
.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:20px;
	background-repeat: no-repeat;
	background-position: center;	
}

ul{
	margin:0px;
	padding:0px;
}

li{
	/* Every thumbnail is a li element */
	width:10px;
	display:inline-block;
	list-style:none;
	height:20px;
	overflow:hidden;
}

li.inact:hover{
	background-image:url(../png/ss/on.png);
	background-repeat: no-repeat;
	background-position: center center;
}

li.act,li.act:hover{
	background-image:url(../png/ss/on.png);
	background-repeat: no-repeat;
	background-position: center center;
}

li.act a{
	cursor:default;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:5px;
	background-image: url(../png/14/separador.png);
	background-repeat: no-repeat;
	background-position: right center;
}

li a{
	display:block;
	background-image: url();
	background-repeat: no-repeat;
	background-position: right center;
}

a img{
	border:none;
}


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


#main{
	/* The main container */
	text-align:center;
	width:900px;
}

a, a:visited {
	color:#FFF;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
}

p{
	padding:10px;
	text-align:center;
}
