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

/* 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;
margin-bottom: 7px;
padding: 0;
font-weight: bold;
/*border: 1px solid green;*/
}

/* TITLE NEWS */
h3.actusTitle {
display: block;
font-weight:bold;
margin: 0;
padding: 0;
font-size:12px;
color: #0A4564;
font-variant:small-caps;
}

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

