/*
 * SimpleModal Basic Modal Dialog
 * http://simplemodal.com
 *
 * Copyright (c) 2013 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 */

.basic-modal-content {
	display:none;
}

/* Overlay */
#simplemodal-overlay {
	background-color: black;
}

/* Container */
#simplemodal-container {
	width:550px; 
	height:380px; 
	color:#333333; 
	outline: solid 1px white;
	border: solid 1px #d9d9d9; 
	background: white;
	padding:12px;
}
	#simplemodal-container a.modalCloseImg {
		background: url(img/x.png) no-repeat;
		width: 30px;
		height: 30px;
		display: inline;
		z-index: 3200;
		position: absolute;
		top: 10px;
		right: 10px;
		cursor: pointer;
	}
	.simplemodal-wrap {
		overflow: auto;
		margin: 0;
	}
		#simplemodal-container .simplemodal-data {
			padding: 10px;
			text-align: justify;
			height: 380px;
			overflow-y: auto;
		}