/* CSS Document */

.tabla{
  width: 100% !important;
  
  margin: 1.5em;
  border-collapse: collapse;
  
}


.tabla *{

  border: .1em solid #e7e7e7;/**/
  
}

.tabla th{
  background-color: #f5f5f5;
  color: #666 !important;
  border: 0;
  font-size: .9em;
  
}

.tabla td{
  text-align: center;
  
  /*font-size: 10px;*/
  font-size: .9em;
}

.tabla a{

  border: 0;
  width: 100%;
  display: block;
  text-decoration: none;

}

/*
.impar{

  background-color: #fff;

}

.par{

  background-color: #f9f9f9;

}

*/

.tabla tr:hover{

  background-color: #fee;
  color: inherit;

}

a.enltooltip{

  display: block;
  width: 100%;
  height: 100%;
  color: #000;
  background-color: inherit;
  text-decoration: none;
  position: relative;
  

}

.tooltip:hover{
  
  color: #f00;
  background-color: inherit;
}

.tooltip{

  display: none;
  width: 25em; 
  height: auto;
  position: absolute;
  top: 2em;
  left: -12.5em;
  background-color: #fff;
  color: #000;
  
  padding: .5em;
  text-align: justify;
  

}

a.enltooltip:hover .tooltip{

  display: block;

} 

.scroll{
  
  height: 15em;
  
  overflow: auto;
  /*overflow-x: hidden;*/
  border: 0;
  margin-bottom:1em;

}

html>* .scroll
{
	height: auto;
	max-height: 15em;
}


