/* CSS Document */
/* http://red-team-design.com/css3-jquery-folder-tabs/ */
#tabs {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none; 
}

#tabs_container { 
  margin: auto;
  width: 50%;
}

#tabs li {
  float: left;
  margin: 0 .5em 0 0;
  /*font-size:11px;*/
}

#tabs a {
  position: relative;
  background: #ddd;
  background-image: linear-gradient(to bottom, #fff, #ddd);  
  padding: .7em .5em; /*Maneja el ancho de las tabs*/
  float: left;
  text-decoration: none;
  color: #444;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
  border-radius: 5px 0 0 0;
  box-shadow: 0 2px 2px rgba(0,0,0,.4);
  font-weight: bold;
  font-size: 12px; /*Tamaño de letra de los tabs*/
}

#tabs a:hover,
#tabs a:hover::after,
#tabs a:focus,
#tabs a:focus::after {
  background: #fff;
}

#tabs a:focus {
  outline: 0;
}

#tabs a::after {
  content:'';
  position:absolute;
  z-index: 1;
  top: 0;
  right: -.5em;  
  bottom: 0;
  width: 1em;
  background: #ddd;
  background-image: linear-gradient(to bottom, #fff, #ddd);  
  box-shadow: 2px 2px 2px rgba(0,0,0,.4);
  transform: skew(10deg);
  border-radius: 0 5px 0 0;  
}

#tabs #current a,
#tabs #current a::after {
  background: #fff; /*Color solapa*/
  z-index: 3;
}

#content {
  width: 54%; /*Maneja el ancho del contenedor de los resultados*/
  margin: 0 auto; /*Centra el contenedor de tablas respecto del objeto superior*/
  background: #fff; /*Color de Fondo Contenido*/
  padding: 2em;
  height: 1850px; /*Maneja el alto de la solapa - Ideal sería dinámico*/
  position: relative;
  z-index: 2; 
  border-radius: 0 5px 5px 5px;
  box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
}

/*MEDIA*/
/*@media only screen and (max-width: 64em) and (min-width: 52.01em) {*/
@media only screen and (max-width: 600px) {
  #content  {
    font-size: 10px; /*Tamaño de letra de los tabs*/
    width: 100%; /*Maneja el ancho del contenedor de los resultados*/
    padding: 0;
  }
  #tabs_container { 
  margin: 0;
  width: 100%;
  font-size: 10px;
 }


}
