/* --------------- BREVES -------------------
-------------- PAUL FAUCHILLE ---------------
--------------    02/08/07    ---------------
--------------   breves.css   ---------------
------------------------------------------ */


/* ================ STRUCTURE =================

+ <DIV #actu>
|
|
|		- <IMG #breveimg />
|
|		- <DIV #breves>
|		|
|		|	
|		|		- <DIV .actus>
|		|		|
|		|		|	- <H3 .actusTitle></H3>
|		|		|	- <A .actuLink></A>
|		|		|
|		|		- </DIV .actus>
|		|	
|		|	
|		|		- <DIV .actus>
|		|		|
|		|		|	- <H3 .actusTitle></H3>
|		|		|	- <A .actuLink></A>
|		|		|
|		|		- </DIV .actus>
|		|	
|		|	
|		|		- <DIV .actus>
|		|		|
|		|		|	- <H3 .actusTitle></H3>
|		|		|	- <A .actuLink></A>
|		|		|
|		|		- </DIV .actus>
|		|	
|		|	
|		|		[...]
|		|	
|		|	
|		 - </DIV #breves>	
|
|
 - </DIV #actu>

================= STRUCTURE ================ */



/* GLOBAL - PICTURE breveimg + BLOCK breves */
div#actu {
	padding: 0 2px;
	margin:0;
	overflow: hidden;
}

/* NEWS PICTURE - BEFORE BLOCK breves */
img#breveimg {
	display: none;
}

/* ALL BLOCKS actus */
div#breves {
	overflow: hidden;
	margin:0;
	padding:0;
}

/* BLOCK CONTENT */
div.actus {
	overflow: hidden;
	position: relative;
	display: none;
	font-weight: bold;
	font-size: 10px;
	margin:0;
	padding:0;
	color: #ffffff ;
	height: 82px;
}

/* TITLE NEWS */
.actusTitle {
	font-size:11px;
	margin: 0;
	padding: 0;
	font-variant:small-caps;
	height:15px;
}

/* LINK TEXT CONTENT */
a.actuLink {
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
}
a:hover.actuLink { text-decoration: underline; }
