<!-- Prototip : Styles pour les popups sur les réunions à venir. --> 
<style type="text/css">
	h1, h2, h3 {
		font-weight: normal;
	}
	h1 {
		font-size: 2em;
	}
	img {
		border: none;
	}
	#hideshow {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	}
	#fade {
		/*background: #fff;*//*#000;*/
		position: fixed;
		width: 100%;
		height: 100%;
		filter:alpha(opacity=10); /* 20, 80 */
		opacity: .10; /* .80 : opacité du brouillage après le popup. */
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; /* Opacity=80 */ /*--IE 8 Transparency--*/
		left: 0;
		z-index: 10;
	}
	.popup_block {
		overflow:scroll;
		background: #ddd;
		padding: 10px 20px;
		border: 2px solid #ccc; /* 12px avt; #fff: bordure extérieure du popup. */
		float: left;
		width: 720px; /* 480 */
		position: fixed;
		top: 10%;
		left: 50%;
		margin: 0 0 0 -250px;
		z-index: 100;
	}
	.popup_block .popup {
		overflow:scroll;
		float: left;
		width: 100%;
		background: #fff;
		margin: 10px 0;
		padding: 10px 0;
		border: 1px solid #bbb;
	}
	.popup h3 {
		margin: 0 0 20px;
		padding: 5px 10px;
		border-bottom: 1px solid #bbb;
		font-size: 1.5em;
		font-weight: normal;
	}
	.popup p {
		padding: 5px 10px;
		margin: 5px 0;
	}
	.popup img.cntrl {
		position: absolute;
		right: 0px;
		top: -5px;
	}
	
	/*-- Faire IE6 gérer le positionnement fixe --*/
	
	*html #fade {
		position: absolute;
		top:expression(eval(document.compatMode &&
		document.compatMode=='CSS1Compat') ?
		documentElement.scrollTop : document.body.scrollTop);
	}
	
	*html .popup_block {
		position: absolute;
		top:expression(eval(document.compatMode &&
		document.compatMode=='CSS1Compat') ?
		documentElement.scrollTop
		+((documentElement.clientHeight-this.clientHeight)/2)
		: document.body.scrollTop
		+((document.body.clientHeight-this.clientHeight)/2));
	
		left:expression(eval(document.compatMode &&
		document.compatMode=='CSS1Compat') ?
		documentElement.scrollLeft
		+ (document.body.clientWidth /2 )
		: document.body.scrollLeft
		+ (document.body.offsetWidth /2 ));
	}
	
	/*--IE 6 PNG Fix--*/
	
	img { behavior: url(iepngfix.htc) }

</style>
