/********************************************************
*  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: #1E90FF;
	font-size: 16px;
	text-align: center;
	font-style: normal;
	/*width: 100%;*/
	border: 1px solid #1E90FF;
	border-width: 1px 1px 3px;
	margin-bottom: 10px;
}

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

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