/* --------------- 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 {
position:relative;
margin: 0;
padding: 0;
/*border: 1px solid red;*/
}


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


/* ALL BLOCKS actus */
div#breves {
position: relative;
margin: 0;
padding: 0;
text-align:left;
/*border: 1px solid blue;*/
}


/* BLOCK CONTENT */
div.actus {
position: relative;
display: none;
margin: 0;
padding: 0;
width:100%;
/*border: 1px solid green;*/
}


/* TITLE NEWS */
h3.actusTitle {
display: inline;
margin: 0;
padding: 0;
font-size:11px;
text-transform: uppercase;
}


/* LINK TEXT CONTENT */
a.actuLink {
margin: 0;
padding: 0;
color: #7A700A;
text-decoration:underline;
font-size:12px;
}
a:hover.actuLink { text-decoration: none; }