/* BASE BLOCKLIST STRUCTURE
   Skeleton of the technique - you will need this
===================================================== */
	


h1 {
padding: 0px 0px 0 20px;


}


.texteListe ul { 
	overflow: hidden;					/* chop overhang of boxes below list */
	position: relative;					/* provide positioning context */
	width: auto;						/* EXAMPLE width */

	}

.texteListe h2 a { 
	display: block;						/* allow element to be given dimensions */
	position: absolute;					/* take out of document flow */
	z-index: 2;							/* bring in front of other elements */
	background: url(-);					/* hack to force z-index in some browsers */
	height: 100%;						/* cover full height of desired clickable area */
	width: 100%;						/* cover full width of blocklist */
	text-decoration:none;
	font-size:14px;
	color:#333;
	}
	
.texteListe h3 	{ 
	position: relative;					/* allow it to have a z-index */
	padding-top: 1.5em;					/* top padding to leave space for H3 */
	font-size:11px;
	font-weight:normal;
	}

.texteListe p 	{ 
	position: relative;					/* allow it to have a z-index */
	z-index: 1;							/* sink beneath link in H3 */
	padding-top: 0.5em;					/* top padding to leave space for H3 */
	}
	
.texteListe ul h2 a:focus { outline: none; }		/* supress dotted outline on click */



	
/* Hover Style
----------------------------------------------------- */
.texteListe li:hover { background-color: #ebf1f2; }