/* zero.css - Clean slate for all languages */
a.abs:link {
    background-color: #e1ffdd;
    font-weight: bold;
    font-size: 130%;
    color: red;
    text-decoration: none;
    white-space: normal;
}
a.abs:visited {
    font-weight: bold;
    font-size: 110%;
    color: #1bb7ea;
    text-decoration: none;
    white-space: normal;
}
a.abs:hover {
    background-color: white;
    font-size: 140%;
    font-weight: bold;
    color: #16734f;
    text-decoration: underline;
}
.abs {
    display: inline-block;
    padding: 7px;
    background: #6a0404;
    text-decoration: none;
    color: #333;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    white-space: normal;
}
.activo {
    font-weight: bold;
    background: #e0e0e0;
}
img {
    max-width: 100%;
    height: auto;
}
table {
    max-width: 100%;
}
.blink_text
{
    animation:2s blinker linear infinite;
    -webkit-animation:2s blinker linear infinite;
    -moz-animation:2s blinker linear infinite;
    color: black;
    font-weight: bold;
    font-size: 300%;
}

@-moz-keyframes blinker
{  
    40% { opacity: 1.0; }
    60% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker
{  
    40% { opacity: 1.0; }
    60% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker
{  
    40% { opacity: 1.0; }
    60% { opacity: 0.0; }
    100% { opacity: 1.0; }
 }
.image-text-container {
    position: relative;
    display: inline-block;
}