/*
 * 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 238 2010-03-11 05:56:57Z emartin24 $
 *
 */

#basic-modal-content {
	display:none;
	font-family: "Lucida Grande", Helvetica, Arial, Verdana, sans-serif;
	text-align: center;
}

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

/* Container */
#simplemodal-container {
	width:600px;
	height:270px;
	background-color:#e8f080;
/* 	background-color:#ccd45c; */
	border:4px solid #8fb114;
	padding:12px;
}

#simplemodal-container a.modalCloseImg {
	background:url(../img/basic/x.png) no-repeat;
	width:25px;
	height:29px;
	display:inline;
	z-index:3200;
	position:absolute;
	top:-15px;
	right:-16px;
	cursor:pointer;
}

#simplemodal-container, #simplemodal-container a {
	color: #4d91dc;
}

#simplemodal-container #basic-modal-content {
	padding:8px;
}

/* Basic modal content */
#basic-modal-content h1 {
	font-size: 24px;
	font-weight: bold;
	line-height: 32px;
	margin-bottom: 0px;
}

#basic-modal-content h2 {
	font-size: 20px;
	font-weight: normal;
	line-height: 28px;
	margin: 8px 0 32px;
}

#basic-modal-content p {
	margin: 12px 0;
}
