.dialog-overlay
{
	width:500px;
	margin:0px auto;
	
}
body{overflow-y:scroll}
.dialog
{
	background:#75B714;
	padding:10px;
	opacity:1;
	filter:alpha(opacity:100);
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	width:expression('350px'); 
	}

.dialog .bar
{
	cursor:move;
	color:#000;
	background:#c5e498;
	padding:6px;
	min-height:15px;
	overflow-x:hidden;
	_height:expression('20px');
}

.dialog .bar .title
{
	float:left;
	margin-right:10px;
	font-size:16px;
	font-weight:bold
}

.dialog .bar .close
{
	float:right;
	cursor:pointer;
	text-decoration:underline;
}

.dialog .content
{
	background:#fff;
	padding:10px;
}

.dialog iframe
{
	width:100%;
}

.content img
{
	overflow:auto;
	max-width:700px;
	max-height:500px;

	_width:expression((document.body.clientWidth > 700) ? '700px' : 'auto');
	_height:expression((document.body.clientHeight > 500) ? '500px' : 'auto');
}