/* --------------- BREVES -------------------
-------------- PAUL FAUCHILLE ---------------
--------------    07/11/07    ---------------
--------------   styles.css   ---------------
------------------------------------------ */


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

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

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



/* GLOBAL - PICTURE breveimg + BLOCK breves */
div#actu {
position:relative;
margin: 0;
padding: 0;
}

/* 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;
}

/* BLOCK CONTENT */
div.actus {
position: relative;
display: none;
margin: 0;
padding: 0;
}

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

/* LINK TEXT CONTENT */
a.actuLink {
display: inline;
margin: 0;
padding: 0;
color: #000;
text-decoration:underline;
}
a:hover.actuLink { text-decoration: none; }