/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2008 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.css 132 2008-05-23 16:05:17Z emartin24 $
 *
 */

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

/* Container */
#modalContainer {left:25%; top:1%; background-color:#fff; border:3px solid #ccc;}
#modalContainer{padding:8px;}
#simplemodal-overlay {background-color:#000; cursor:default;}
#basicModalContent
{
	padding:8px;
	display:none;
	height:430px;
	width:500px;
	background-color: white;
}
.modalClose
{
	width:100%;
	text-align:right;
}
