/* the overlayed element */
.simple_overlay {
	background-color:#fff;
    display:none;
    width:280px;
	min-height:40px;
    padding:15px;
    text-align:left;
    border:2px solid #333;
	position:absolute;
	left: 35%;
	top: 35%;

    opacity:0.8;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    -moz-box-shadow: 0 0 50px #ccc;
    -webkit-box-shadow: 0 0 50px #ccc;
}
.simple_overlay2 {

	/* must be initially hidden */
	display:none;

	/* place overlay on top of other elements */
	z-index:10000;

	/* styling */
	background-color:#ffffff;

	width:300px;
	min-height:100px;
	border:1px solid #ffffff;

	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;
}

/* close button positioned on upper right corner */
#close_png, .simple_overlay .close {
	background-image:url(./close.png);
	-background:none;
	-filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="http://localhost/ChatConf/design/close.png");
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

.tooltip {
		/*background-color:#000000;
		color:#FFFFFF;
    display:none;
		max-width: 750px;
    min-width:200px;
		min-height:40px;
    padding:15px;
    text-align:left;
    border:2px solid #333;
		position:absolute;
		left: 35%;
		top: 35%;
		z-index: 500;

    opacity:0.8;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    -moz-box-shadow: 0 0 50px #ccc;
    -webkit-box-shadow: 0 0 50px #ccc; */
	display:none;
	z-index: 1000;
	background:url(./black_arrow_big.png);
	height:163px;
	padding:40px 30px 10px 30px;
	width:310px;
	color:#fff;
}


/* override the arrow image of the tooltip */
.tooltip.bottom {
	display:none;
	z-index: 1000;
	background:url(./black_arrow_big_bottom.png);
	height:163px;
	padding:40px 30px 10px 30px;
	width:310px;
	color:#fff;
}

.tooltip .inside {overflow:auto; width:310px; height:128px;font-size: 11px;}

iframe.mask {
	filter:alpha(opacity=0);
    opacity: 0;
}