﻿.FondoAplicacion{
    background-color: #000;
    filter: alpha(opacity=80);
    opacity: 1.0;
    
}

.Oculto{
    
    display:none;
}

.curve{
    
    /*para Firefox*/
    -moz-border-radius: 15px 15px 15px 15px;
    /*para Safari y Chrome*/
    -webkit-border-radius: 15px 15px 15px 15px;
    /*para IE */
    /*behavior:url(border.htc);*/
    /* para Opera */
    border-radius: 15px 15px 15px 15px;
}

.overlay {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1.0;
    background-color: #000000;
    animation: fadeinn 2s;
}

@keyframes fadeinn {
    from {
        opacity: 1;
    }

    to {
        opacity: 1.0;
    }
}

.overlayContent {
    z-index: 99;
    margin: 250px auto;
    width: 100px;
    height: 100px;
    text-align: center;
    animation: rotation 2s infinite;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.overlayContent h2 {
    font-size: 18px;
    font-weight: bold;
}

.overlayContent img {
    width: auto;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
}





