/*********************** MODAL CSS ***************************/

div.modal-panel {
	background: rgba(0,0,0,0.7);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

	div.modal-panel div.modal-container {
		background: #FFFFFF;
		border-radius: 7px;
		position: absolute;
		-moz-box-shadow: 0 0 3px 3px #222222;
		-webkit-box-shadow: 0 0 3px 3px #222222;
		box-shadow: 0 0 3px 3px #222222;
	}
	
		div.modal-container div.modal-close {
			background: url("/images/template/close_button.png") no-repeat scroll 0 0 transparent;
			width: 21px;
			height: 21px;
			position: absolute;
			float: right;
			top: 10px;
			right: 10px;
			cursor: pointer;
		}

			div.modal-container div.modal-close a {
				color: transparent;
			}
	
		
