﻿/****** Popup dialog ******/

.dialog_container {
	width: 100%; height: 100%;
}

.dialog_bg {
	top:0px; left:0px;
	width:100%; height: 100%;
	position: fixed;	
	background-color: Black;
	opacity:0.4;filter:alpha(opacity=40);
	z-index: 98;
}

.dialog {
	position: absolute;
	width: 400px;
	background-color: White;
	border: solid 1px Black;
	padding: 10px;
	margin-top: 50px;
	margin-left: 35%;
	z-index: 99;
}

.closebutton
{
	float: right;
	display: block;
	font-size: 12px;
	/*background: red;
	border: solid 1px black;*/
}


/**** MODAL BOX ****/

.modal_box {display:none;}

.modal_box h1, .modal_box h2, .modal_box h3, .modal_box label { color: White; }

/* Overlay */
#simplemodal-overlay {background-color:#000; cursor:wait;}

/* Container */
#simplemodal-container {width:515px; color:#bbb; background-color:#333; border:4px solid #444; 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/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;}