/* V3.08 - aggiunto indice righe/codici colore in testa al file (solo documentazione, nessuna modifica di colore o di funzionalita') */
/* Riga 24 - CODICE COLORE: rgb(0,0,0) */
/* Riga 25 - CODICE COLORE: rgba(0,0,0,0.4) */
/* Riga 30 - CODICE COLORE: #f4f7f8 */
/* Riga 33 - CODICE COLORE: #888 */
/* Riga 41 - CODICE COLORE: #aaa */
/* Riga 65 - CODICE COLORE: #fff */
/* Riga 67 - CODICE COLORE: #1abc9c */
/* Riga 72 - CODICE COLORE: #16a085 */
/* Riga 79 - CODICE COLORE: #109177 */
/********************************************************
*  Silvia - CSS framework
*  Auth: Simone D'Argliano - simone.dargliano@gmail.com
*********************************************************/
.sil-modal{
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}

.sil-modal-content{
	/*background-color: fefefe;*/
	background: #f4f7f8;
	margin: 15 auto;
	padding: 20px;
	border: 1px solid #888;
   width: 60%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	text-align: center;
}

.close{
	color: #aaa;
   float: right;
   font-size: 28px;
   font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.sil-modal footer{
    display: block;
	 clear: both;
    margin-top: 30px;
}

.sil-modal input[type="submit"],
.sil-modal input[type="button"]{
	position: relative;
	display: inline-block;
	padding: 9px 29px 8px 29px;
	color: #fff;
	margin: 0;
	background: #1abc9c;
	font-size: 16px;
	text-align: center;
	font-style: normal;
	/*width: 100%;*/
	border: 1px solid #16a085;
	border-width: 1px 1px 3px;
	margin-bottom: 10px;
}

.sil-modal input[type="submit"]:hover,
.sil-modal input[type="button"]:hover{
	background: #109177;
}

.sil-modal footer > input[type="submit"]{
	display: inline;
	width: 10em;
	border-radius: 15px 15px 15px 15px;
}