/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.css 257 2010-07-27 23:06:56Z emartin24 $
 */

#basic-modal-content {
	display:none;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

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

/* Container */
#simplemodal-container {
	height:295px;
	width:264px;
	color:#ba9765;
	background-color:#200c0e;
	border:3px solid #ba9765;
	background-image: url(/Assets/modal-bg.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-top: 16px;
	padding-right: 10px;
	padding-left: 10px;
}
#simplemodal-container a.modalCloseImg {
	width:53px;
	height:17px;
	display:inline;
	z-index:3200;
	position:absolute;
	top:0px;
	right:-0px;
	cursor:pointer;
	background-image: url(/Assets/x.png);
	background-repeat: no-repeat;
}
#basic-modal-content h2 {
	color:#ba9765;
	font-size: 30px;
	margin-bottom: 16px;
}
#basic-modal-content h2 span{
	color:#FFF;
}
#basic-modal-content p {
	font-size: 12px;
	line-height: 16px;
	color: #FFF;
	margin-bottom: 20px;
}
.modal-field {
	margin-bottom: 20px;
	float: left;
	width: 264px;
}
.modal-send {
	float: left;
	width: 174px;
	padding-left: 90px;
}
#basic-modal-content label {
	float: left;
	width: 90px;
}
.modal-button {	background: transparent url(/Assets/send.png) no-repeat 0 0; height: 16px; width: 140px; 
	cursor: pointer; border: none; font-size: 0; }
	
.modal-button:hover {
	background-position: 0px -16px;
}
#basic-modal-content #datepicker {
	z-index: 3300;
}
