/* 
    Created on : 19-feb-2014, 16:33:29
    Author     : Miguel
*/

.fila{
    width: 100%;
    display: table;
    box-sizing: border-box;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
}
.fila:first-of-type {
    border-top: 1px solid black;
}
.fila > .fecha, .fila > .eventoPrincipal {
    width: 150px;
    display: table-cell;
    background-color: #373737;
    color: white;
    text-align: center;
    font-family: 'Oswald',sans-serif;
    font-size: 20px;
    padding: 10px;
    box-sizing: border-box;

}
.fila > .eventoPrincipal{
    width: auto; 
    vertical-align: middle;
    box-sizing: border-box;
}
.fila > .descripcion {
    padding: 10px;
    display: table-cell;
    width: auto;
    text-align: center;
    font-size: 16px;
    vertical-align: middle;
    box-sizing: border-box;
}
.fila:nth-child(even) > .descripcion{
    background-color: #f0f0f0;
}
.fila:nth-child(odd) > .descripcion{
    background-color: #fafafa;
}
.descripcion > ol{
    text-align: left;
}
.descripcion > .nota {
    text-align: justify;
    color: #920a0a;
    padding: 10px;
}
.descripcion-alt{
    width: 100% !important;
} 