/*
 * 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 $
 *
 */
html, body, div, span, applet, object,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, iframe {
	border: none;
	margin: 0;
	outline: none;
	padding: 0;
}
/*body {
	background-color: #000;
	color: #fff;
	font: 12px/16px Arial, Helvetica, sans-serif;
	padding: 50px 100px;
}*/
p {
	margin-bottom: 12px;
}
h1 {
	color: #3cf;
	font: bold 30px/32px Arial, Helvetica, sans-serif;
	margin-bottom: 12px;
	text-transform: uppercase;
}
a:link {
	color: #3cf;
}
a:visited {
	color: #3cf;
}
a:hover, a:active {
	color: #fff;
}
#basic-modal-content {
	display: none;
}
/* Overlay */
#simplemodal-overlay {
	background-color: #000;
	cursor: wait;
}
/* Container */
#simplemodal-container {
	height: 100px;
	width: 320px;
	color: #bbb;
	background-color: #000;
	border: 2px solid #33CCFF;
	padding: 12px;
}
#simplemodal-container code {
	background: #141414;
	border-left: 3px solid #65B43D;
	color: #bbb;
	display: block;
	margin-bottom: 12px;
	padding: 4px 6px 6px;
}
#simplemodal-container a {
	color: #ddd;
}
#simplemodal-container a.modalCloseImg {
	background: url(/images/btn_close2.png) no-repeat;
	width: 16px;
	height: 16px;
	display: inline;
	z-index: 3200;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
#simplemodal-container #basic-modal-content {
	padding: 8px;
}