
/*
------------------------------------
 Dialog Popup
------------------------------------
*/

div.dialogBackground 
{
	background: gray;
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	filter:alpha(opacity=50); 
	-moz-opacity: 0.5; 
	opacity: 0.5;
	z-index:50;
}

div.dialogBox 
{
	/* border:1px solid black; */
	/* background:white; */
	position:fixed;
	left:5%;
	top:5%;
	width:90%;
	height:90%;
	/* margin-left:-250px; */
	/* margin-top:-250px; */
	/* height:300px; */
	z-index:2000;
}


#dialogClose
{
	/* border:1px solid black; */
	
	position:fixed;
	right:0;
	top:0;
	width:40px;
	height:40px;
	/* margin-left:-250px; */
	/* margin-top:-250px; */
	/* height:300px; */
	z-index:2000;
}

#dialogClose:hover
{
	cursor:pointer;
}


/*
------------------------------------
*/




.iframe
{
	border:none;
	width:100px;
}

.dialogBox .head
{
	background-color:gray;
	text-align:right;
	padding-right:5px;
	color:white;
	height:23px;
}

.dialogBox .head a
{
	text-decoration:none;
	color:black;
	
}

.dialogBox .head a div
{
	width:15px;
	height:15px;
	position:absolute;
	right:3px;
	top:3px;
	background-color:white;
	border:1px solid black;
	font-size:12px;
	padding-right:4px;
}
.dialogBox .head a div:hover
{
	cursor:pointer;
	background-color:black;
	color:white;
	border:1px solid white;
}



