#dialogWindowBox{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	text-align: left;
	background-color:#666;
	padding:10px;
	border-radius: 8px; /* propiedad CSS3  */
	-ms-border-radius: 8px;  /* para IE 8 (pero no funciona en IE8) */
	-moz-border-radius:8px;  /* Firefox */
	-webkit-border-radius: 8px;  /* WebKit y Safari */
	-khtml-border-radius: 8px;
	/* behavior: url('http://new-staging.gameloft.org/minisites/glive/images/border-radius.htc'); */
}

#dialogWindowContainer{
	background-color:#FFF;
	border:#666 1px solid;	
}

#dialogTitle{
	background-image:url('http://media02.gameloft.com/layout/default/web/minisites/glive/images/dialogTitleBg.jpg');
	background-repeat:repeat-x;
	background-position:top;
	height:30px;
	font-size:18px;
	font-weight:bold;
	padding-left:10px;
	padding-top:10px;
	color:#333;
}

#dialogContent{
	padding:10px;
}

#dialogLoading{
	text-align:center;
	margin-top:25px;
	margin-bottom:25px;
	color:#666;
	width:400px;	
}

#dialogButtons{
	border-top:#999 1px solid;
	background-color:#ccc;
	height:30px;
	padding-top:10px;
}

.dialogButton{
	height:18px; width:100px;
	padding-left:5px;
	padding-right:5px;
	padding-top:5px;
	text-align:center;
	background-image:url('http://media02.gameloft.com/layout/default/web/minisites/glive/images/dialogButtons.gif');
	background-repeat:repeat-x;
	font-weight:bold;
	margin-right:10px;
	float:right;
	border:#666 1px solid;
	cursor:pointer;
}

#windowOverlay{
  position: fixed; top: 0px; left: 0px;
  height:100%;  width:100%;
  z-index:990;}
  
  .windowOverlayBox{
	  background-color:#000; z-index:99;}
  
* html #windowOverlay { /* ie6 hack */
  position: absolute;
  height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}
  
