/******************************************************/
/* Habillage Fenetre modale KADOWIN avec son bouton de fermeture *
/******************************************************/
#KADOWIN {
	width:800px;
	height:450px;
	border: 10px solid #CCCCCC;
	position :absolute;
	z-index: 100;
	top : 50%;
	left : 50%;
	margin-left:-400px;/*la moitie de 800*/
	margin-top:-225px;/*la moitie de 450*/
	padding:0;
	background-image: url(loader.gif);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #FFFFFF;
}

#KADOWIN #iframe {
  visibility:hidden;
  width:100%;
  height:100%;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  background-color: #FFFFFF;
}

#KADOWIN #tout_fermer {
	position:absolute;
	top: -20px;
	right: -20px;
	width: 24px;
	height: 24px;
	cursor: pointer;
	background-image: url(close.png);
	background-repeat: no-repeat;
	z-index: 101;
}
/******************************************************/
/* OVERLAY *
/******************************************************/
#KADOWIN_OVERLAY {
	position: absolute;
	top:0;
	left:0;
	z-index: 99;
	width:100%;
	height:100%;
	background-color:#000000;
	filter: alpha(opacity=40);
	opacity:0.4;
	visibility:visible;
}