#Listado {
     margin:10px 0 0;
}

/* responsivo */
@media only screen and (max-width: 800px) {
	
	/* Force table to not be like tables anymore */
	#Listado table, 
	#Listado thead, 
	#Listado tbody, 
	#Listado th, 
	#Listado td, 
	#Listado tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	#Listado thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	#Listado tr { border-bottom: 1px solid #ffdd00; }
 
	#Listado td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 40%; 
		white-space: normal;
		text-align:left;
	}
 
	#Listado td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 2px;
		left: 6px;
		width: 36%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
	}
 
	/*
	Label the data
	*/
	#Listado td:before { content: attr(data-title); }
}
/* Fin responsivo */
#Listado table { 
    border:1px solid #ffdd00; 
    border-collapse:collapse; 
    empty-cells: show; 
    width: 100%;
}
#Listado thead tr th {
    background-color: #EC7803; 
    color:#ffffff; 
    text-align:left; 
    padding:0 5px 0 2px;
    }
.tabla-pijama tbody tr:nth-child(2n+1) td, .tabla-pijama tbody tr:nth-child(2n+1) th {
    background-color: #f2f2f2;
}
.tabla-pijama tbody tr td {
    border-top: 1px solid #FFDD00;
}

#Paginador table {
    border: 1px solid #FFDD00;
    border-collapse: collapse;
    empty-cells: show;
    table-layout: auto;
    width: 100%;
}
#Paginador td {
    font-size: 11px;
    padding:3px 0;
}
.isbn{ white-space:nowrap;}

#FichaLibro { width: 100%; border: 1px solid #acacac;}
#FichaLibro td { font-size:12px;}

.CeldaEtiq { text-align: right; padding-right:10px; border-right: 1px dotted #acacac;}
.negrita { font-weight: bold;}


#BibliotecaBuscar {border: 1px dotted #acacac; padding: 10px 10px 10px 50px; text-align: right; }
#BibliotecaBuscar p {width: 400px; margin: 0 0 5px 0;}
#BibliotecaBuscar .Etiq { text-align: right; margin-right:10px;}
#BibliotecaBuscar input,select { margin-left:10px;}
