/* feuille de style pour les boites flottantes */
	
/* Flottant c'est la boîte magique */
.flottant {
	position:absolute;
	z-index:100;
	left:10px;
	top:200px;
	width:200px;
	background-color:#f4f4f4; /* background-color:#e0e0e0;*/
	border:solid black 1px;
	font-family:arial,sans-serif;
	font-size:13px;
	overflow:visible;
	}
	
/* Le bandeau de titre */
.flottant .titre {
	padding:3px;
	font-weight:bold;
	color:#cc0000;
	background-color: Silver /* #ffe0cc */;
	border-bottom:solid black 1px;
	z-index:1;
	cursor: move;
}
/* les boutons de réduction et fermeture */
.flottant .titre .close {
	float: right;
	padding: 0px 3px 0px 3px;
	margin-left: 2px;
	font-family: courier new;
	font-size: 11px; /* #cc0000 */
	border: solid #000000  1px;
	background-color: Silver; /*#ffcc99; */
	cursor: hand;
	z-index: 2;
}
	
/* ca c'est pour la mise en forme ... faites comme vous voulez ... */
.flottant div {
	padding:4px;
	color:#666666;
	}