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

/* Gallery styles */

#gallery{
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 3px #7f7f7f;
	-webkit-box-shadow:0 0 3px #7f7f7f;
	box-shadow:0 0 3px #7f7f7f;
	
	/* 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;
	
	border:1px solid white;
	
	background:url(img/panel.jpg) repeat-x bottom center #ffffff;
	
	/* The width of the gallery */
	width:900px;
	overflow:hidden;
}

#slide{
	/* This is the slide area */
	height:auto;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:680px;
	overflow:hidden;
	cursor:pointer;
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	width:900px;
	height:13px;
	padding-top:20px;
}

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

#menu ul li{
	/* Every thumbnail is a li element */
	width:11px;
	height:11px;
	display:inline-block;
	list-style:none;
	overflow:hidden;
	background:url(../images/icon_bola.png) no-repeat;
	background-position:top;
}

#menu ul li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(../images/icon_bola.png) no-repeat;
	background-position:bottom;
}

#menu ul li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(../images/icon_bola.png) no-repeat;
	background-position:bottom;
}

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

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

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

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