/*
 * 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:#000;*/}

/* Container */
#simplemodal-container {
	position: fixed;
	z-index: 1002;
	height: 600px;
	width: 680px;
}
#basic-modal-00 {
	/*background: url(img/modal_bg.png) no-repeat -600px -600px;*/
	width: 0;
	height: 0;
}
#simplemodal-container .simplemodal-data {
	padding: 0; /*16px 55px 16px 16px;*/
	/*text-align: justify;*/
}
.simplemodal-wrap {
	height: 294px;
	outline: 0px;
	width: 467px;
	overflow: visible;
	margin: 2px 0 0 17px;
}
#simplemodal-container code {
	background:#141414; 
	border-left:3px solid #65B43D; 
	color:#bbb; 
	display:block; 
	font-size:12px; 
	margin-bottom:12px; 
	padding:4px 6px 6px;
}
#simplemodal-container a.modalCloseImg,
#simplemodal-container a#simplemodal-close {
	background: url(img/x.png) no-repeat;
	width: 22px;
	height: 28px;
	display: inline;
	z-index: 3200;
	position: absolute;
	top: 40px;
	right: -9px;
	cursor: pointer;
}