@charset "utf-8";
/* CSS Document */


/* ----------------------------- aca seteo el width and high de la caja de slides */
#slideshow {
	margin:0 auto;
	width:957px;
	height:440px;
	position:relative;
	background-color: #000000;
}
#slideshow #slidesContainer {
	margin:0 auto;
	width:840px;
	height:440px;
	overflow:auto; /* allow scrollbar */
	position:relative;
}
#slideshow #slidesContainer .slide {
	margin:0 auto;
	width:840px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
	height:440px;
}


/* -------------------------------Slideshow controls style rules ARROWS.*/
/** 
 * Slideshow controls style rules.
 */
 
 
 
 
 
.control {
  display:block;
  width:39px;
  height:440px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
}
#leftControl {
	top:0;
	left:0;
	background-color: transparent;
	background-image: url(../img/control_left.jpg);
	background-repeat: no-repeat;
	background-position: 0 50;
}
#rightControl {
	top:0;
	right:0;
	background-color: transparent;
	background-image: url(../img/control_right.jpg);
	background-repeat: no-repeat;
	background-position: 0 50;
}





