#tablaSO{
	margin: 0 auto;
	width: 610px;

	-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{
		background: #84E657;
		color: black;
		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;
	}
	/*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: #68C73C;
	}
	/*Definimos las columnas*/
	#tablaSO .columna{
		color: black;
		display: inline-block;
		text-align: center;
		width: 197px;
	}