#overlay{
	position: fixed;
	background-color : rgb(255,255,255);
	left : 0px;
	top : 0px;
	right : 0px;		
	bottom : 0px;		
	width : auto;
	height : auto;
	overflow : visible;
	display: none;
}

#overlay .page{
	border-top: solid 1px rgb(180,180,180);
	padding: 9px 0 0 0;
	bottom: 60px;
	position: fixed;
	left: 30px;
	top: 20px;
}

#overlay .image{

}

#overlay .button{
	background-color: rgba(0,0,0,0.03);
	text-align: center;
	line-height: 56px;
	display:block;	
	cursor: pointer;
	border-radius: 5px;
	font-size: 0.8em;

	-webkit-transition: all 0.3s; 
	-moz-transition: all 0.3s; 
	-o-transition: all 0.3s; 
	transition: all 0.3s;
}

#overlay .button:active{
	background-color: rgba(255,0,0,1);
}

#overlay .button:hover{
	background-color: rgba(0,0,0,0.06);
}




