/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
	.reveal-modal-bg { 
		position: fixed; 
		height: 100%;
		width: 100%;
		background: rgba(93,74,72,.4);
		z-index: 100;
		display: none;
		top: 0;
		left: 0; 
	}
	
	.reveal-modal {
		visibility: hidden;
		top: 50px; 
		left: 50%;
		margin-left: -230px;
		width: 468px;
		padding: 8px;
		background: #f8f6f5;
		position: absolute;
		z-index: 101;
		border: 1px solid #d1c6c0;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
		border-radius: 4px;
		-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .3);
		-moz-box-shadow: 0 0 6px rgba(0, 0, 0, .3);
		box-shadow: 0 0 6px rgba(0, 0, 0, .3);
		-moz-background-clip: padding;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
	}
	.reveal-modal:before {
		content:"";
		display: block;
		position: absolute;
		left: 4px;
		top: 4px;
		right: 4px;
		bottom: 4px;
		border: 1px dashed #e0dad6;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;
	}

	.reveal-modal-inner {
		border: 1px solid #e3dad7;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		background: #f3f0ee url(../images/reveal-bg.jpg);
		-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 1);
		-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 1);
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 1);
		padding: 56px 60px 65px 60px;
		position: relative;
	}
		
	.reveal-modal.small 		{ width: 200px; margin-left: -140px;}
	.reveal-modal.medium 		{ width: 400px; margin-left: -240px;}
	.reveal-modal.large 		{ width: 600px; margin-left: -340px;}
	.reveal-modal.xlarge 		{ width: 800px; margin-left: -440px;}
	
	.reveal-modal .close-reveal-modal {
		position: absolute;
		top: -25px;
		right: -25px;
		display: block;
		width: 25px;
		height: 25px;
		background: url(../images/close.png) 0 0 no-repeat;
		vertical-align: top;
		cursor: pointer;
		text-indent: -9999em;
		font-size: 0;
		line-height: 0;
	}
	.reveal-modal .close-reveal-modal:hover {
		background-position: 0 -25px;
	}