/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.css 257 2010-07-27 23:06:56Z emartin24 $
 */

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

/* Overlay */
simplemodal-overlay {
	background-color: #000000;
	cursor:wait;
	}

/* Container */
#simplemodal-container {
	/* height: 360px; */
	/* width: 600px; */ 
	padding: 12px;
	color: #000000;
	background: #000000;
	border: 5px solid #FFFFFF;
	}
#simplemodal-container .simplemodal-data {
	padding: 40px;
	}
#simplemodal-container h3 {
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	}
#simplemodal-container p {
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 200%;
	}
#simplemodal-container a.modalCloseImg {
	background: url(../../js/simplemodal/img/basic/x.png) no-repeat;
	width: 25px;
	height: 29px;
	display: inline;
	z-index: 3200;
	position: absolute;
	top: -15px;
	right: -16px;
	cursor: pointer;
	}
