/* @override http://localhost:8888/condortech.com.ar/wp-content/themes/condorTheme/css/slides.css */

/*
			Load CSS before JavaScript
		*/
		
		/*
			Slides container
			Important:
			Set the width of your slides container
			Set to display none, prevents content flash
		*/
		.slides_container {
			width:850px;
			display:none;
			margin-left: 25px;
		}

		/*
			Each slide
			Important:
			Set the width of your slides
			If height not specified height will be set by the slide content
			Set to display block
		*/
		.slides_container div.slide {
			width:850px;
			height:100px;
			display:block;
		}
		
		/*
			Set the size of your carousel items
		*/
		.slide-item {
			float:left;
			width:100px;
			height:55px;
			margin:0 20px;
			
		}
		
		/*
			Optional:
			Reset list default style
		*/
		.pagination {
			list-style:none;
			margin:0;
			padding:0;
		}

		/*
			Optional:
			Show the current slide in the pagination
		*/
		.pagination .current a {
			color:red;
		}
		
		a.prev, a.next {
			position: relative;
			-top: -60px;
			-left: -45px;
			
		}
		
		a.prev {
			background: url(../images/arrow-prev.png) no-repeat;
			width: 8px;
			height: 24px;
			color: transparent;
			top: -80px;
			left: 10px;
		}
					
		a.next {
			background: url(../images/arrow-next.png) no-repeat;
			width: 8px;
			height: 24px;
			color: transparent;
			top: -80px;
			right: -850px;
		}
