@charset "utf-8";
#tablaSO{
	margin-left: 50px;;
	margin-right:50px;;
	width: auto;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

	/*Definimos la cabecera o título de la tabla*/
	#tablaSO .header-tabla{
		color: #000;
		background: #c8c8c8 	;
		font-size: 16px;
		padding: 10px;
		text-align: center;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}
	.header-tabla, p{
	font-size:16px;
	}
	/*Definimos la fila*/
	#tablaSO .fila{
		background: white;
		padding: 5px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		
	}
		/*Todas las filas son blancas, pero con
			este selector podemos intercalar colores
			con gris*/
		#tablaSO .fila:nth-child(odd){
			background: #eee;
		}
	/*Definimos la cabecera de cada columna*/
	#tablaSO .cabecera{
		background: #c8c8c8 	;
	}
	/*Definimos las columnas*/
	#tablaSO .columna{
		color: black;
		display: inline-block;
		position:relative;
		text-align: center;
		width: 197px;
		
	}/* CSS Document */
p{
	background:#585858  	;
	text-align:center;
	margin-top:0px;
	color:#fff;
	font-size:16px;
	height:auto;
	width:auto;
	text-align:center;
	
}
