﻿div.msgBox {
	padding: 10px;
    /*padding: 4px 10px 4px 10px;*/
    position: fixed;
    z-index: 1000;
    font-family: Verdana;
    /*width: 430px;*/
    width: auto;
    min-height: 160px;
    color: #00335e;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -moz-box-shadow: 0px 0px 11px #000000;
    -webkit-box-shadow: 0px 0px 11px #000000;
    box-shadow: 0px 0px 11px #000000;
    background-color: #ffffff;
    display: inline-block;
}
div.msgBoxBackGround {
    position: fixed;
    pointer-events: visiblepainted;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    /*background-color: #000000;
    opacity: 0.9;*/
    z-index: 999;
    
	background: url("jquery-msgbox/overlay.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
	opacity: 0.6;
    
}
div.msgBoxTitle {
    padding: 5px 0 5px 0;
    font-variant: small-caps;
    font-size: 16pt;
    font-weight: bold;
    color: #00335e;
    width: 100%;
    border-bottom: 1px solid #002c5f;
}
div.msgBoxImage {
    /*margin: 5px 5px 0 5px;*/
    /*position: fixed;*/
    position: absolute;	/* Fix problema di scorrimento */
    /*margin: 5px;*/
    float: left;
    height: 75px;
    width: 75px;
}
/*div.msgBoxImage img {
    height: 75px;
    width: 75px;
}*/
div.msgBoxContent {
    font-size: 11pt;
    /*margin: 0 3px 6px 3px;*/
    margin: 20px;
    margin-left: 90px;
	margin-bottom: 30px;
    margin-right: 5px; 
	/*padding-bottom: 20px;*/
    /*padding-top: 10px;*/
    /*margin-top: 20px;*/
	/*float: left;*/
    /*height: 90px;*/
    /*width: 319px;*/
	/*width: 100%;*/
	min-width: 350px;
	min-height: 50px;
	max-width: 800px;
    max-height: 250px;
    white-space: pre;
    word-wrap: break-word;
    white-space: normal;
    overflow-y: auto;
    overflow-x: hidden;
}
div.msgBoxContent p {
    padding: 0;
    margin: 0;
    text-align: justify;
}

div.msgBoxContent span {
    /*vertical-align: middle;*/
    color: #00335e;
}

div.msgBoxButtons {
    width: 100%;
    text-align: right;
    clear: both;
}
div.msgBoxButtons input[type='button'] {
    cursor: pointer;
    margin: 2px;
    height: 35px;
    width: 90px;
    border: 1px solid #AFAFAF;
    background-color: #004076;
    color: #FFFFFF;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
div.msgBoxButtons input[type='button']:hover {
    background-color: #00549c;
    color: White;
}
div.msgBoxButtons input[type='button']:active {
    background-color: #AAAAAA;
    color: White;
}

div.msgBoxInputs {
    margin: 0 auto;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-top: 5px;
    width: 195px;
}
div.msgInput input[type='text'], div.msgInput input[type='password'] {
    padding: 4px;
    border: 1px solid #DFDFDF;
    color: #2f2f2f;
    width: 180px;
}
div.msgInput text {
    color: #2f2f2f;
    font-size: 10pt;
}


/* Icone della messagebox */
/* Prima c'era il percorso del file png, ora è tutto in classi */
div.msgbox_warning {
	background-image: url("./jquery-msgbox/warning.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 75px;
	border: none;
}
div.msgbox_error {
	background-image: url("./jquery-msgbox/error.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 75px;
	border: none;
}
div.msgbox_confirm {
	background-image: url("./jquery-msgbox/confirm.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 75px;
	border: none;
}
div.msgbox_info {
	background-image: url("./jquery-msgbox/info.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 75px;
	border: none;
}
div.msgbox_question {
	background-image: url("./jquery-msgbox/question.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 75px;
	border: none;
}
.msgbox_background {
	background-image: url("./jquery-msgbox/background.png");
	background-position: left top;
	background-repeat: no-repeat;
}


