/*
 * 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%;font-family:arial;} */

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

/* Container */
#simplemodal-container {
	height:340px; 
	width:700px;
}
#simplemodal-container a.modalCloseImg {
	width:30px; 
	height:30px; 
	display:inline; 
	z-index:3200; 
	position:absolute;
	cursor:pointer;
}
#simplemodal-container #formholder {
	position:relative;
	float:left;
	clear:both;
	width:700px;
	top:45px;
	font-size:11px;
	color:#aaaaaa;
}
.blue {
	color:#009ddc;
}
.centered {
	text-align:center;
}
.required {
	color:red;
	float:right;
	position:relative;
	clear:none;
}
#simplemodal-container #formholder input[type=text] {
	border:1px solid #aaaaaa;
	background-color:#eeeeee;
	width:295px;
	height:20px;
	font-weight:bold;
	font-family:arial;
}

#simplemodal-container #formholder textarea {
	border:1px solid #aaaaaa;
	background-color:#eeeeee;
	width:297px;
	height:57px;
	font-weight:bold;
	font-family:arial;
	font-size:1em;
}

a.content:link,
a.content:visited { color:#009ddc;border-bottom:1px dotted #009ddc;text-decoration:none; }
a.content:hover,
a.content:active { color:#009ddc;border-bottom:1px solid #009ddc;text-decoration:none; }
