/*

 * 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: #fff;
}
/* Container */

#simplemodal-container {
	height: auto;
	width: 600px;
	color: #333;
	background-color: #fff;
	padding: 12px;
}
.tabid-20 #simplemodal-container {
	height: 80%;
}
#simplemodal-container .simplemodal-data {
	padding: 8px;
}
#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 {
	color: #333;
}
#simplemodal-container a.modalCloseImg {
	background: url('img/close.png') no-repeat;
	width: 32px;
	height: 32px;
	display: inline;
	z-index: 3200;
	position: absolute;
	top: -15px;
	right: -16px;
	cursor: pointer;
}
#simplemodal-container h3 {
	color: #84b8d9;
}
