/*
 * jquery.mb.components
 * Copyright (c) 2001-2012. Matteo Bicocchi (Pupunzi); Open lab srl, Firenze - Italy
 * email: mbicocchi@open-lab.com
 * site: http://pupunzi.com
 *
 * Licences: MIT, GPL
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */

/*
* jQuery.mb.components: 
* © 2001 - 2012 Matteo Bicocchi (pupunzi), Open Lab
*
*/

@charset "UTF-8";


body{
  margin: 0;
  padding: 0;
  white-space: inherit;
}

#mbCarousel{
  position: relative;
  width: 100%;
  margin: auto;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 400px;
}

.mbCarouselWrapper{
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mbCarouselWrapper *{
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#slideIndex .idxContainer{
  display: inline-block;
  padding: 2px;
  height: 13px;
}

.idxPage{
  display: inline-block;
  width: 6px;
  height: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background: transparent;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid transparent;
  margin: 2px;
}

.idxPage.sel{
  background: #000;
  border: 1px solid #000;
}
