/************ MODAL ************/
.modal {
	position: fixed;
	background-color: rgba(0,0,0,0.8);
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 999999;
	display: none;
	overflow: auto;
}


.modal .dialog  {
	background-color: #fff;
	position: relative;
	margin: 30px auto;
	max-width: 800px;
	height: auto;
}
.modal .dialog .content{
	padding: 20px;
}
.modal .dialog .header {
	padding: 10px 20px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	
	font-family: 'Kelly Slab', sans-serif;
}
.modal .dialog .footer {
	padding: 20px;
	border-top: 1px solid rgba(0,0,0,0.1);
}

.lock {

	overflow-y: hidden;
}
/************** .MODAL **************/

.close {
	width: 20px;
	height: 20px;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	
	background-image: url('../img/ico_close.png');
	background-repeat: no-repeat;
	background-position: center top;
}
.close:hover {
	background-position: center bottom;
}