/* --------------- 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;
/*border: 1px solid green;*/
}

/* TITLE NEWS */
h3.actusTitle {
display: inline;
margin: 0;
padding: 0;
font-size:11px;
color: #b00;
text-transform: uppercase;
/*border: 1px solid red;*/
}

/* LINK TEXT CONTENT */
a.actuLink {
margin: 0;
padding: 0;
color: #000;
text-decoration:underline;
/*border: 1px solid black;*/
}
a:hover.actuLink { text-decoration: none; }