/*
# ------------------------------------------------------------------------
# Extensions for Joomla 1.7
# ------------------------------------------------------------------------
# Copyright (C) 2011 Ext-Joom.com. All Rights Reserved.
# @license - PHP files are GNU/GPL V2.
# Author: Ext-Joom.com
# Websites:  http://www.ext-joom.com
# ------------------------------------------------------------------------
*/
/** 
 * Slideshow style rules.
 */
#ext_slideshow_modules {
	margin:0 auto;
	position:relative;
	border:5px solid #333;
	border-radius:5px;
}
#ext_slideshow_modules #slidesContainer {
  margin:0 auto;
  overflow:auto; /* allow scrollbar */
  position:relative;
  display: none;
}
#ext_slideshow_modules #slidesContainer .slide {
  margin:0 auto;
}
/** 
 * Slideshow controls style rules.
 */
 #ext_slideshow_modules .control {
  display:block;
  width: 30px;
  height: 47px;
  text-indent: -10000px;
  position: absolute;
  cursor: pointer;
  z-index: 5;
  display: none;
}
#ext_slideshow_modules #leftControl {
  left:0;
  background:url(../images/btn-next-prev.png) no-repeat scroll -30px 0 transparent;
}
#ext_slideshow_modules #leftControl {
  left:0;
  background:url(../images/btn-next-prev.png) no-repeat scroll 0 0 transparent;
}
/* BOOTSTRAP */
.carousel-control {
  display:block;
  width: 20px;
  height: 42px;
  text-indent: -10000px;
  position: absolute;
  cursor: pointer;
  z-index: 5;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-top: 0;
  /*display: none;*/
}
.carousel-control.left {
  left:0;
  margin-left: -20px;
}
.carousel-control.right {
  right:0;
  margin-right: -20px;
}
/* BOOTSTRAP */

/*
*	Loading div
*/
#loading_div {
	background: url(../images/loader.gif) center center no-repeat;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}