/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
	.reveal-modal-bg { 
		position: fixed; 
		height: 100%;
		width: 100%;
		/*
		background: #15120f;
		background: rgba(21,18,15,.95);
		*/

		background: #5d5953;
		background: rgba(29,28,27,.3);
		background: -webkit-radial-gradient(50% 50%,ellipse closest-corner,rgba(29,28,27,.75) 1%,rgba(29,28,27,.95) 100%);
		background: -moz-radial-gradient(50% 50%,ellipse closest-corner,rgba(29,28,27,.75) 1%,rgba(29,28,27,.95) 100%);
		background: -ms-radial-gradient(50% 50%,ellipse closest-corner,rgba(29,28,27,.75) 1%,rgba(29,28,27,.95) 100%);
		background: radial-gradient(50% 50%,ellipse closest-corner,rgba(29,28,27,.75) 1%,rgba(29,28,27,.95) 100%);

		z-index: 1000;
		display: none;
		top: 0;
		left: 0;
	}
	
	.reveal-modal {
		visibility: hidden;
		background-color: #eeedeb;
		/*background-color: #000;*/
		position: absolute;
		z-index: 1001;
		overflow:hidden;

		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		
		
	}
	
	.reveal-modal.video {
		
		width: 760px;
		left: 50%;
		margin-left: -380px;
		
		top:50%;
		margin-top: -220px;

	}

	
	.reveal-modal.audio {
		
		width: 515px;
		left: 50%;
		margin-left: -255px;
		
		top:50%;
		margin-top: -100px;

	}

		
	
	.reveal-modal .close-reveal-modal {
		font-size: 22px;
		font-weight: bold;
		position: absolute;
		top: 5px;
		right:4px;
		/*margin-left:-20px;*/
		cursor: pointer;
		text-decoration:none;
		background-color: transparent;
		padding:0px 5px;
		border-top-right-radius:3px;
		color: #bbb6ae;
	} 

	.reveal-modal .close-reveal-modal:hover{
		color: #888;
	} 
