/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2009 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.css 213 2009-09-17 04:10:02Z emartin24 $
 *
 */

body {height:100%; margin:0;}
h3 {color:#5f87ae; font-size:1.6em; padding:0; margin:0;}
#basic-modal-content {display:none;}

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

/* Container */
#simplemodal-container {
height:230px; 
width:400px; 
background-color:#000000; 
border:4px solid #ffffff; 
padding:12px;
text-align: left;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #e1e1e1;
}

#simplemodal-container a {
color: #1c6391;
text-decoration: none;
font-weight: bold;
font-size: 12px;
}

#simplemodal-container a:hover {
color: #114567;
text-decoration: none;
font-weight: bold;
font-size: 12px;
}

#simplemodal-container a.modalCloseImg {background:url(../img/basic/x.png) no-repeat; width:25px; height:29px; display:inline; z-index:3200; position:absolute; top:-15px; right:-16px; cursor:pointer;}
#simplemodal-container #basic-modal-content {padding:8px;}
