/*
# ------------------------------------------------------------------------
# Extensions for Joomla 2.5.x - Joomla 3.x
# ------------------------------------------------------------------------
# Copyright (C) 2011-2014 Ext-Joom.com. All Rights Reserved.
# @license - PHP files are GNU/GPL V2.
# Author: Ext-Joom.com
# Websites:  http://www.ext-joom.com 
# Date modified: 03/04/2014 - 13:00
# ------------------------------------------------------------------------
*/

/** 
 * Slideshow style rules.
 */
 
.ext_slideshow {
	margin:0 auto;
	position:relative;
}
.ext_slideshow .slidesContainer {
  margin:0 auto;
  overflow:auto; /* allow scrollbar */
  position:relative;
}
.ext_slideshow .slidesContainer .ext_slide {
  margin:0 auto;
}

/** 
 * Slideshow controls style rules.
 */

.ext_slideshow .control {
  display:block;
  width:30px;
  height: 47px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
  z-index:5;
  top: 40%;
}
.ext_slideshow .leftControl {
  left:-40px;  
  background:url(../images/prev.png) no-repeat scroll 0 0 transparent;
}
.ext_slideshow .rightControl {
  right:-40px;
  background:url(../images/next.png) no-repeat scroll 0 0 transparent;
}
