/* jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
	the Window's z-index value will be set to 3000 by default (via jqModal.js). */

.jqmWindow {
    display: none;
    position: fixed;
    top: 25%;
    left: 50%;
    margin-left: -230px;
    width: 500px;
    background-color: transparent;
    color: #333;
    min-height: 50px;
    line-height:20px;
}

    .jqmWindow a {
        color: #FFFFFF;
    }

        .jqmWindow a:hover {
            text-decoration: none;
        }

    .jqmWindow table {
        width: 100%;
    }

        .jqmWindow table tr td {
            vertical-align: top;
        }

            .jqmWindow table tr td:first-child {
                width: 60px;
            }

.jqmOverlay {
    background-color: #000;
}


/*INIZIO - div_modalError*/

#div_modalError {
    padding: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #6F0000;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#2FA0BF), to(#0F414F));
    background: -webkit-linear-gradient(#2FA0BF, #0F414F);
    background: -moz-linear-gradient(#2FA0BF, #0F414F);
    background: -ms-linear-gradient(#2FA0BF, #0F414F);
    background: -o-linear-gradient(#2FA0BF, #0F414F);
    background: linear-gradient(#2FA0BF, #0F414F);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#2FA0BF, endColorstr=#0F414F);
}


    #div_modalError .icona {
        width: 48px;
        height: 48px;
        background-image: url(../icone/48x48/error.png);
        background-repeat: no-repeat;
    }

    #div_modalError .titolo {
        font-family: Arial;
        font-size: 18px;
        font-weight: bold;
        color: #FFFFFF;
        margin-bottom: 10px;
    }


    #div_modalError .testo {
        color: #FFFFFF;
    }

    #div_modalError .chiudi {
        color: #FFFFFF;
        text-align: right;
        text-decoration: underline;
        cursor: pointer;
        margin-top: 10px;
    }

/*FINE - div_modalError*/



/*INIZIO - div_modalSuccess*/

#div_modalSuccess {
    padding: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #6F0000;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#2FA0BF), to(#0F414F));
    background: -webkit-linear-gradient(#2FA0BF, #0F414F);
    background: -moz-linear-gradient(#2FA0BF, #0F414F);
    background: -ms-linear-gradient(#2FA0BF, #0F414F);
    background: -o-linear-gradient(#2FA0BF, #0F414F);
    background: linear-gradient(#2FA0BF, #0F414F);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#2FA0BF, endColorstr=#0F414F);
}


    #div_modalSuccess .icona {
        width: 48px;
        height: 48px;
        background-image: url(../icone/48x48/success.png);
        background-repeat: no-repeat;
    }


    #div_modalSuccess .testo {
        color: #FFFFFF;
        margin-top: 17px;
    }

/*FINE - div_modalSuccess*/


/*INIZIO - div_modalAjax*/


#div_modalAjax {
    display: none;
    position: fixed;
    top: 100px;
    left: 50%;
    color: #333;
    min-height: 50px;
    max-width: 800px;
    max-height: 550px;
    overflow: auto;
    overflow-x: hidden;
    padding: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #FFF;
    color: #222222;
    font-family: Verdana;
    font-size: 12px;
}


    #div_modalAjax .chiudi {
        text-align: right;
        text-decoration: underline;
        cursor: pointer;
    }

/*FINE - div_modalSuccess*/
