/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2007 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.css 38 2007-10-26 04:10:06Z emartin24 $
 *
 */

/* Overlay */
#modalOverlay {height:100%; width:100%; position:fixed; left:0; top:0; z-index:3000; background-color:#000; cursor:wait;}

/* Container */
#modalContainer {
	height:430px;
	width:600px;
	position:fixed;
	left:50%;
	top:15%;
	margin-left:-300px;
	z-index:3100;
	background-color:#000000;
	border:3px solid #ccc;
	background-image: url(../images/fond_content.jpg);
	background-repeat: no-repeat;
	background-position: top;
	padding-top: 10px;
}
#modalContainer a.modalCloseImg {background:url(../modalwin/img/basic/x.png) no-repeat; width:25px; height:29px; display:inline; z-index:3200; position:absolute; top:-14px; left:588px; cursor:pointer;}
#modalContainer #basicModalContent {padding:8px;}