/*
 * 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 162 2008-12-01 23:36:58Z emartin24 $
 *
 */

body {padding:0; margin:0; height:100%; width:100%;}

#popup{
	font-family:Verdana, Geneva, sans-serif; font-size:12px;
	text-align: left;
}
#popup input[type=text],#popup textarea{
	width: 180px;
	margin-bottom: 7px;
	border: 1px solid #ccc;
}
#popup ul{
	margin-top: 10px;
	padding-top: 0;
}
#popup ul{
	line-height: 1.1em;
}
#popup img{
	margin-right: 20px;
	margin-bottom: 20px;
}
#popup-ad{
	width: 600px; 
	float: left;
}
#popup-title{
	font-size: 2em; 
	color: red; 
	font-weight: bold; 
	margin-bottom: 20px;
	letter-spacing: 1px;
	text-align: center;
}
#popup-message{
	width: 330px; float: left; overflow: hidden;
}
#popup-form{
	margin-left: 350px; width:250px; overflow: hidden;
}
.text { width: 230px; }
/*
#popup-message{
	width: 330px; float: left;  overflow: hidden;
}
#popup-form{
	float: left;
	padding-left: 10px;
	width:250px;
	overflow: hidden;
}
*/
#popup-note{
	margin-right:10px;
}
#popup-footer{
	color: red;
	clear: both;
}

/* Overlay */
#simplemodal-overlay {background-color:#000; cursor:wait;}

/* Container */
#simplemodal-container {
	height:480px; 
	width:650px; 
	background-color:#fff; 
	border:5px solid #ddd;
}
#simplemodal-container a.modalCloseImg {
	background:url(/popup/img/basic/x.png) no-repeat; 
	width:25px; 
	height:29px; 
	display:inline; 
	z-index:9999999; 
	position:absolute; 
	top:-15px; 
	right:-18px; 
	cursor:pointer;
}
#simplemodal-container #basicModalContent {
	width: 650px;
	padding:20px;
}
