/*lo conseguir por ahi este es el autor: 
This technique was developed by Chris Coyier (@chriscoyier) and described in his post Responsive Data Tables at css-tricks.com

*/
@CHARSET "UTF-8";


/* 
Generic Styling, for Desktops/Laptops 
*/
table.no-more-tables { 
  width: 100%; 
  border-collapse: collapse; 
}
/* Zebra striping */
tr.no-more-tables:nth-of-type(odd) { 
  background: #ffffff; 
}
th.no-more-tables { 
  background: #ffffff; 
  color: #22282E; 
  font-weight: bold;
  font-size: 14px;
  padding: 6px;
  border-bottom: 2px solid #cecece!important; 
}

th.no-more-tables { 
  border: 0px solid #ccc; 
 text-align: center;
}

/*modificado por marielena porque a veces es nesario que la alinacion del texto no sea solo al centro*/
td.no-more-tables { 
  border: 0px solid #ccc; 
  /*text-align: center;*/
  font-size: 16px;
  padding: 10px; 
}


@media only screen and (max-width: 800px) {
	
	/* Force table to not be like tables anymore */
	.no-more-tables table, 
	.no-more-tables thead, 
	.no-more-tables tbody, 
	.no-more-tables th, 
	.no-more-tables td, 
	.no-more-tables tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	.no-more-tables thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	.no-more-tables tr { border: 1px solid #ccc; }
 
	.no-more-tables td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align:center;
		font-size: 14px;
	}
 
	.no-more-tables td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 10px;
		left: 10px;
		width: 45%; 
		padding-right: 10px;
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
		font-size: 13px;
		border-right: 1px solid #cecece;
	}
 
	/*
	Label the data
	*/
	.no-more-tables td:before { content: attr(data-title); }
}

/*INICIO TABLA ESPECIAL para listado de turnos agregado por marielena porque le necesito sacar  "Zebra striping" */
table.no-more-tablesT { 
  width: 100%; 
  border-collapse: collapse; 
}

th.no-more-tablesT { 
  background: #ffffff; 
  color: #22282E; 
  font-weight: bold;
  font-size: 14px;
  padding: 6px;
  border-bottom: 2px solid #cecece!important; 
}

th.no-more-tablesT { 
  border: 0px solid #ccc; 
 text-align: center;
}


td.no-more-tablesT { 
  border: 0px solid #ccc; 
 
  font-size: 16px;
  padding: 10px; 
}


@media only screen and (max-width: 800px) {
	
	/* Force table to not be like tables anymore */
	.no-more-tablesT table, 
	.no-more-tablesT thead, 
	.no-more-tablesT tbody, 
	.no-more-tablesT th, 
	.no-more-tablesT td, 
	.no-more-tablesT tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	.no-more-tablesT thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	.no-more-tablesT tr { border: 1px solid #ccc; }
 
	.no-more-tablesT td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align:center;
		font-size: 14px;
	}
 
	.no-more-tablesT td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 10px;
		left: 10px;
		width: 45%; 
		padding-right: 10px;
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
		font-size: 13px;
		border-right: 1px solid #cecece;
	}
 
	/*
	Label the data
	*/
	.no-more-tablesT td:before { content: attr(data-title); }
}
/*FIN DE TABLA ESPECIAL*/