/*
	AnythingSlider v1.8+ Default theme
	By Chris Coyier: http://css-tricks.com
	with major improvements by Doug Neiner: http://pixelgraphics.us/
	based on work by Remy Sharp: http://jqueryfordesigners.com/
*/

/*****************************
  SET DEFAULT DIMENSIONS HERE
 *****************************/
/* change the ID & dimensions to match your slider */
#slider {
	list-style: none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
	overflow-y: auto;
	overflow-x: hidden;
}

/* Navigation buttons + start/stop button, default state */

/***********************
  COMMON SLIDER STYLING
 ***********************/
/* Overall Wrapper */
.anythingSlider {
	display: block;
	overflow: visible !important;
	position: relative;
}
/* anythingSlider viewport window */
.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* anythingSlider base (original element) */
.anythingSlider .anythingBase {
	background: transparent;
	list-style: none;
	position: absolute;
	overflow: visible !important;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}

/* Navigation arrow text; indent moved to span inside "a", for IE7;
  apparently, a negative text-indent on an "a" link moves the link as well as the text */
.anythingSlider .arrow span {
	display: block;
	visibility: hidden;
}
/* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */
.anythingSlider .arrow.disabled {
	display: none;
}
/* all panels inside the slider; horizontal mode */
.anythingSlider .panel {
	background: transparent;
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
}
/* vertical mode */
.anythingSlider .vertical .panel {
	float: none;
}
/* fade mode */
.anythingSlider .fade .panel {
	float: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
/* fade mode active page - visible & on top */
.anythingSlider .fade .activePage {
	z-index: 1;
}


#slider{
	height:472px;
	width:1600px;
}

.anythingSlider .arrow {
position: absolute;
top: 50%;
margin-top: -100px;
z-index: 1999;
cursor: pointer;
width: 101px;
height: 101px;
display: block;
text-indent: -9999px;
overflow: hidden;
left: 50%;
}
.anythingSlider .arrow.back {
	background:url('anterior.png');
	margin-left:-510px;
}
.anythingSlider .arrow.forward {
	background: url('proximo.png');
	margin-left:415px;
}

.anythingControls{
bottom: 30px;
left: 50%;
margin-left: -470px;
position: absolute;
z-index:25;
}


		.anythingControls a,
		.anythingControls li{
			float:left;
			display:block;
		}
		.anythingControls a{
			width:16px;
			margin-right:10px;
			text-indent:-999em;
			overflow: hidden;
			height:16px;
			background:url('nav.png') no-repeat center;
		}
		.anythingControls a.cur{
			background-image:url('nav-active.png');
		}