/*
 * 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 242 2010-03-14 00:55:02Z emartin24 $
 *
 */

/* Overlay */
#simplemodal-overlay {background-color:#393939	; cursor:wait;}

/* Container */
#simplemodal-container 
{
    -moz-border-radius:7px 7px 7px 7px;
    background:none repeat scroll 0 0 #191919;
	color:#fff;
    border:3px solid #fce48f;
	border-radius:7px;
    height:320px; width:600px; background-color:#191919; padding:12px;
	background-image:url(/img/elements/box-tint-black.png);
	background-repeat:repeat-y;
}
#simplemodal-container a { }
#simplemodal-container a.modalCloseImg {background:url(closedwindow.png) no-repeat; width:30px; height:30px; display:inline; z-index:3200; position:absolute; top:-15px; right:-16px; cursor:pointer;}
#simplemodal-container #basic-modal-content {padding:8px;}
#simplemodal-container p {
	color:#fff }
#simplemodal-container li {
	color:#fff;
	list-style:inside circle; }