﻿    .caja3 {
        position: relative;
        width: 300px;
        margin: 10px auto;
    }

    .info3 {
        position: absolute;
        top: 30%;
        opacity: 0;
        width: 100px;
        height: 30px;
        padding: 5px;
        text-align: center;
        color: #eee;
        background: #C14684; /*Para IE que no soporta RGBA*/
        background: rgba(193,70,132,.8);
        -moz-transform: rotate(180deg); /*Inicialmente boca abajo*/
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        -moz-transition: all linear 0.5s 0s;
        -webkit-transition: all linear 0.5s 0s;
        transition: all ease 0.5s 0s;
    }

    .caja3:hover .info3 {
        filter: alpha(opacity=100);
        opacity: 1;
        left: -100px;
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .caja3:hover .imagen img {
        top: 0;
        left: 0;
        height: 450px !important;
    }

     .newTitle {
            width: 334px;
            height: 31px;
            color: #681d5e;
            font-family: Roboto, Roboto Lt;
            font-size: 26px;
            text-align: center;
            align-content: center;
        }

     .btnNew {
    color: #FFF;
    /*background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("Images/btn_iniciarsesion.png");*/
    background-color: #76175f;
    font-family: Roboto, Roboto Lt;
    font-size: 15px;
    border-radius: 9px;
    border-style: solid;
    border-width: 0px;
    border-color: #000000;
    /*font-weight: bold;*/
    text-align: center;
    }
    .btnNew:hover {
        color: #FFF;
        background-color:#571447;
        /*background-image: url("Images/BTNhover2.png");*/
        font-family: Roboto, Roboto Lt;
        font-size: 15px;
        border-radius: 9px;
        border-style: solid;
        border-width: 0px;
        border-color: #000000;
        cursor: pointer;
        text-align: center;
    }