/*
* 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 {
	width:450px;
	height:260px;
	position:fixed;
	left:50%;
	top:15%;
	margin-left:-300px;
	z-index:3100;
/*	border:3px solid #ccc;*/
}
#basicModalContent {
	width:450px;
	height: 240px;
}

div#basicModalContent form {
	padding: 0px;
	margin: 0px;
}

div#basicModalContent div#optin-container {
	width:  450px;
	height: 260px;
	background: transparent url('../../../img/optin/modal-source.gif') no-repeat top left;
}

div#basicModalContent div.optin-link {
	position: absolute;
}
div#basicModalContent .optin-link.register {
	width: 100px;
	height: 24px;
	left: 175px;
	top: 160px;
}
div#basicModalContent .optin-link.close {
	width: 100px;
	height: 24px;
	left: 170px;
	top: 205px;
}
div#basicModalContent .optin-input {
	font-size: 15px;
	font-weight: bold;
	font-family: Arial;
	color: #533b3d;
	position: absolute;
}
div#basicModalContent .optin-input.email {
	width: 213px;
	height: 21px;
	left: 139px;
	top: 130px;
}
div#basicModalContent .optin-input.month {
	width: 37px;
	height: 21px;
	left: 234px;
	top: 145px;
}
div#basicModalContent .optin-input.day {
	width: 37px;
	height: 21px;
	left: 273px;
	top: 145px;
}
div#basicModalContent .optin-input.year {
	width: 70px;
	height: 21px;
	left: 311px;
	top: 145px;
}

/*div#basicModalContent .optin-input.all {
	width: 150px;
	height: 21px;
	left: 234px;
	top: 145px;
}
*/