/* * 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: absolute;
	left: 0px;
	top: 0px;
	z-index: 3000;
	background-color: #003366;
	cursor: wait;
}
/* Container */
#modalContainer {
	position: static;
  /*height: 340px;
	width: 700px;*/
	height: 250px;
	width: 490px;
	/*height: 170px;
	width: 330px;*/
	left: 15%;
	top: 50px;
	margin-left: 0px;
	border: 0px; /*3px solid #ccc;*/
	z-index: 3100;
	background-color: #003366;
	
}
#modalContainer a.modalCloseImg {
	position: absolute;
  /*height: 340px;
	width: 700px;*/
	height: 250px;
	width: 490px;
	/*height: 170px;
	width: 330px;*/
	left: 15%;
	top: 50px;
	margin-left: 0px;
	border: 3px solid #ccc;
	z-index: 3200;
  background-image: url(/Servomex.nsf/images/greetings2008.jpg);	
	cursor: pointer;
}
#modalContainer #basicModalContent {
	padding: 0px;
}

