@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box
	 * model. so it's okay to apply vertical padding to the parent element,
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 220%;
}
h2
{
	font-size: 190%;
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 115%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}
.format_png {
	behavior: url("win_png.htc");
}/* .img_png, .image_typo, .spip_logo, 
 */
/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
/*	margin: 25px 4%;	/* margin instead of padding for the gutterspace around
	 			   the layout because IE breaks the layout when
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */

         padding: 0;                /* marges =0 et decommenter margin */
}

#pageWrapper
{
	border: solid 1px #fff;
/*	border-width: 0 1px;   marges =0 et decommenter margin */
	border-width: 0;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}
#masthead h1
{
	padding: 0;
	margin: 0;
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 19em #fff;
	border-right: solid 17em #fff;
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -19em;
	width: 19em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 17em;
	margin: 0 -17em 0 1px;
	z-index: 2;
}
#outerColumnContainer1
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 20em #fff;
	border-right: solid 2em #fff;
}
#rightColumn1
{
	float: right;
	width: 2em;
	margin: 0 -2em 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}


.leftBlock
{
	background-color: #F8FBF0;
	border: 1px solid #CCCCCC;
	-moz-border-radius-bottomleft:10px;
-moz-border-radius-bottomright:10px;
-moz-border-radius-topleft:10px;
-moz-border-radius-topright:10px;
	margin: 25px 0;
	padding: 0 5px;
	z-index: 9;
}
.leftBlock .vnav
{
	margin: -1px 0 5px 0;
}
.leftBlock h3
{
	background-color: #F8FBF0;
	color: #A9A9A9;
	border: solid 1px #000;
	-moz-border-radius-bottomleft:10px;
-moz-border-radius-bottomright:10px;
-moz-border-radius-topleft:10px;
-moz-border-radius-topright:10px;
	font-size: 120%;
	margin: -10px 0 0 0;
	padding: 2px 6px;
}

/* * Fil d'Ariane */
#hierarchie {
	clear: both;
	margin-bottom: 16px;
	border-top: 0px solid #333333;
	font-size: 0.77em;
}

.fllt{
	float: left;
}

.flrt{
	float: right;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav
{
	margin: 1em 0;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{
	border: solid 2px #fff;
	border-bottom-width: 0;
}
.vnav ul li
{
	border-bottom: solid 1px #fff;
}
.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
.vnav ul li a
{
	display: block;
	padding: 2px 5px 3px 5px;
	background-image: url(triangle.gif);
	background-position: left;
	background-repeat: no-repeat;
	text-align: right;
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}
.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}

/* horizontal navigation elements. create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav
{
	border-bottom: solid 1px #fff;
	text-align: center;
}
.hnav, .hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements.
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}
.hnav ul, .hnav ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a
{
	margin: 0 -1px 0 0;
	padding-left: 10px;
	padding-right: 10px;	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 1px #000;
	border-right: solid 1px #000;
	white-space: nowrap;
}
.extrait ul li a:link, .extrait ul li a:visited, .extrait ul li a:active, 
{
	text-decoration: none;
	
}
.extrait ul li a:hover
{
	text-decoration: underline;
	
}

.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover
{
	text-decoration: none;
}
.hnav ul li span.divider
{
	display: none;
}
* html .hnav ul li, * html .hnav ul li a
{
	width: 1%; /* IE/Mac needs this */
	display: inline-block;	/* IE/Mac needs this */
	/* \*/
		width: auto;
		display: inline;
	/* reset above hack */
}
* html .hnav, * html .hnav ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win.
				 IE/Mac will ignore this rule. */
}
* html .HNAV
{
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}
.racine {
	margin-left: 0px;
	padding-left: 2px;
	list-style: none;

	padding-bottom: 10px;
}

.racine .spip_logos {
	float: right;
	margin-left: 16px;
	margin-bottom: 16px;
	clear:left;
	margin-right: 1em;
	}
.article{
	margin-left: 0px;
	padding-left: 40px;
	list-style-type: disc;
	border-left: 1px ridge #FF8173;
}

 .rubrique{
	margin-left: 0px;
	padding-left: 25px;
	list-style-type: circle;
	border-left: 2px groove #FF8173;

}
 .extrait {
	margin-bottom: 0.5em;

	margin-top: 1em;
	margin-left: 10px;
}

.extrait .titre1 {
	font-size: 13px;
	font-weight: bold;
}

.extrait .spip_logos {
	float: right;
	margin-left: 16px;
	margin-bottom: 16px;
	clear:left;
	margin-right: 1em;
}

.extrait p { margin: 0; padding: 0; }

.extrait .enclosures {
	float: right;
	text-align: right;
	max-width: 60%;
	margin: 0; }

.extrait small {
	display: block;
	font-size: 0.71em; }

.extrait .texte {
	margin-top: 5px;
	margin-bottom: 1em;
	border: 1px solid #CCCCCC;
	padding: 0.9em;
	font-size: 0.75em;
	line-height: 1.4em;
}
.extrait .texte1 {
	margin-top: 5px;
	margin-bottom: 1em;
	border: 1px solid #CCCCCC;
	padding: 0.9em;
	
}

.fin_une {
	margin: 0px;
	padding: 0px 5px 13px 0px !important;
	border-bottom-color: #FEBE76;
	border-bottom-style: ridge;
}

 /*  Habillage general des menus de navigation
---------------------------------------------- */
.rubriques, .breves, .syndic, .forums, .divers {
	text-align: left;
	border: 1px solid #CCCCCC;
	-moz-border-radius-bottomleft:10px;
-moz-border-radius-bottomright:10px;
-moz-border-radius-topleft:10px;
-moz-border-radius-topright:10px;
	margin-bottom: 16px;
	min-width: 10em;
	font-size: 0.77em;
}

.rubriques .titre, .breves .titre, .syndic .titre, .forums .titre, .divers .titre {
	padding: 3px 4px 2px 4px;
	border-bottom: 1px dotted #CCCCCC;
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
}

.rubriques p, .breves p, .syndic p, .forums p, .divers p { margin: 2px 4px; }

.rubriques ul, .breves ul, .syndic ul, .forums ul, .divers ul {
	display: block;
	padding: 2px 0;
	padding-right: 0.7em;
	list-style: none;
}

.rubriques li, .breves li, .syndic li, .forums li, .divers li {
	padding-left: 0.7em;
	list-style: none;
}

/*  Cartouche et titraille
---------------------------------------------- */
.cartouche { margin-bottom: 2em; }
.cartouche small { font-size: 0.71em; }

.cartouche .titre { 
	font-size: 1.27em; 
	font-weight: bold; 
	color: #000; }

.cartouche .spip_logos {
	float: right;
	margin-left: 16px;
	margin-bottom: 16px; }

.cartouche p { margin: 0; padding: 0; clear: left; }

.cartouche .traductions { font-size: 0.71em; }
.cartouche .traductions p { float: left; }
.cartouche .traductions li { float: left; margin-left: 1em; }

 .surtitre, .soustitre {
	font-size: 0.8em;
	font-variant: normal;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

	/* Listes d'articles et extraits introductifs
----------------------------------------------- */
.liste-articles li { margin-bottom: 1em; clear: both;list-style-image: url(triangle.gif); }

.liste-articles li .titre {
	font-size: 1.03em;
	font-weight: bold; }

.liste-articles li .spip_logos {
	float: right;
	margin-left: 16px;
	margin-bottom: 16px;
	clear: right; }

.liste-articles li p { margin: 0; padding: 0; }

.liste-articles li .enclosures {
	float: right;
	text-align: right;
	max-width: 60%;
	margin: 0; }

.liste-articles li small {
	display: block;
	font-size: 0.71em; }

.liste-articles li .texte {
	margin-top: 5px;
	margin-bottom: 2em;
	border: 1px solid #CCC;
	padding: 0.9em;
	font-size: 0.82em;
	line-height: 1.4em; }

.pagination {
	font-size: 0.90em;
	text-decoration: none;
	color: #FEBF7A;
}

/*  Mise en forme des textes du contenu
---------------------------------------------- */
.chapo { 
	margin-bottom: 1.5em;
	font-weight: bold;
	line-height: 1em; }

.lien {
	background: #FAFAFA;
	margin: 1em;
	margin-bottom: 1.5em;
	padding: 0.82em;
	border: 1px solid #CCCCCC;
	font-size: 0.82em;
	font-weight: bold; }
	
.texte { color: #000; font-size: 0.96em; }
.texte h2 {
	color: #000;
	font-size: 130%;
}

.ps, .notes {
	margin-top: 1.4em;
	padding-top: 2px;
	border-top: 2px solid #CCCCCC; }
.ps { font-size: 0.82em; }
.notes { clear: both; font-size: 0.77em; }
.ps h2, .notes h2 { font-size: 1.19em; font-weight: bold; }

/*  Portfolio
---------------------------------------------- */
#documents_portfolio {
	clear: both;
	margin-top: 1.4em;
	padding-top: 2px;
	border-top: 2px solid #CCCCCC; }
#documents_portfolio h2 { margin-bottom: 0.4em; font-size: 0.88em; font-weight: bold; }
#documents_portfolio ul {
padding:0;
margin:0;
list-style-type: none;
border:0;}
#documents_portfolio ul li{
        height:110px;
        width:110px;
	border: 4px groove #A8A8A8;
	margin-bottom: 3px;
display: block;
float:left;
}
#documents_portfolio li a,#documents_portfolio li a:visited{
		border: 1px solid #DDD; /* Border color for not selected images */
	padding: 2px;
	margin-bottom: 1px;
	margin-top: 1px;
        display: block;
        float:left;
margin: auto ;
  height:102px;
        width:102px;
        text-align:center;
}

#documents_portfolio   ul li a.horiz img {
	border: 2px groove #777777;
	margin-left: auto ;
        margin-right: auto ;
}
/* add a border to the vertical slide and positon it centrally using a top margin */
#documents_portfolio ul li a.vert img {
	border: 2px groove #777777;
margin-left: auto ;
        margin-right: auto ;
}

#document_actif { margin-top: 1em; }

/*  Listes de documents joints (a un article ou une rubrique)
---------------------------------------------- */
#documents_joints {
	margin-top: 1.4em;
	padding-top: 2px;
	border-top: 2px solid #CCCCCC; }
#documents_joints h2 { margin-bottom: 0.4em; font-size: 0.88em; font-weight: bold; }
#documents_joints li { margin-bottom: 0.4em; }
#documents_joints li .spip_doc_titre {}
#documents_joints li .spip_doc_titre small { font-weight: normal; }
#documents_joints li .spip_doc_descriptif {}


/*  ------------------------------------------
/*  Habillage specifique du plan du site
/*  ------------------------------------------ */

#page_plan #contenu {}

#page_plan #contenu h2 {
	clear: both;
	background: #e0ffe0;
	border: 1px solid #CCCCCC;
	padding: 8px;
	margin-bottom: 16px; 
	font-weight: bold; 
	text-align: center; }
	
#page_plan #contenu .contre-encart ul { 
	display: block; 
	clear: left; 
	margin-left: 16px; 
	margin-bottom: 16px;
	list-style: square; }
#page_plan #contenu .contre-encart li { list-style: inherit; }

/*  ------------------------------------------
/*  Habillage des forums
/*  ------------------------------------------ */

.forum-repondre, .forum-decompte {
	clear: both;
	margin-top: 2.5em;
	padding-top: 2px;
	border-top: 2px solid #CCCCCC;
	font-size: 0.88em;
	font-weight: bold; }

/* * Habillage des forums */
ul.forum { display: block; clear: both; margin: 0; padding: 0; }
.forum-fil { margin-top: 1.5em; }
.forum-fil ul { display: block; margin: 0; padding: 0; margin-left: 1em; }
.forum-chapo .forum-titre, .forum-chapo .forum-titre a { display: block; margin: 0; padding: 0; font-weight: bold; text-decoration: none; color: #333333; }
.forum-chapo small {}
.forum-texte { margin: 0; padding: 0.5em 1em 0 1em; color: #333333; font-size: 0.82em; }
.forum-texte .forum-lien {}
.forum-texte .forum-repondre-message { margin: 0; padding: 1px 0; text-align: right; }

/* Boite d'un forum : eclaircissement progressif des bords */
ul .message { border: 1px solid #666666; margin: 0; padding: 0; margin-bottom: 1em; }
ul ul .message { border: 1px solid #A4A4A4; }
ul ul ul .message { border: 1px solid #B8B8B8; }
ul ul ul ul .message { border: 1px solid #CCCCCC; }
ul ul ul ul ul .message { border: 1px solid #E0E0E0; }
ul ul ul ul ul ul .message { border: 1px dotted #E0E0E0; }

/* Boite de titre d'un forum : mise en couleur selon la profondeur du forum */
ul .forum-chapo { border: 0; border-bottom: 1px dotted #B8B8B8; margin: 0; padding: 3px 6px 2px 6px; font-size: 0.88em; background: #C4E0E0; }
ul ul .forum-chapo { background: #D4E8E8; }
ul ul ul .forum-chapo { background: #E4F0F0; }
ul ul ul ul .forum-chapo { background: #F4F8F8; border-bottom: 1px dotted #E0E0E0; }
ul ul ul ul ul .forum-chapo { background: #FFF; }

/*  ------------------------------------------
/*  Divers
/*  ------------------------------------------ */
.invisible { position: absolute; top: -3000em; height: 1%; }
.nettoyeur { clear: both; margin: 0; padding: 0; height: 0; line-height: 1px; font-size: 1px; overflow: hidden; }
.net {  margin:20; padding:20; height:50; line-height: 1px; font-size: 1px; overflow: hidden; }

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #F3F5E5;
}
#q{
	border-top: 1px solid #333;
	border-left: 1px solid #333;
	border-bottom: 1px solid #666;
	border-right: 1px solid #666;
	background: #eee url(search.gif) no-repeat 0px center;
	padding-left: 18px;
	width: 89px;
}

#q:focus {
	background: #fff url(file:///F|/Documents%20and%20Settings/Administrateur/Mes%20documents/essai2406/Nouveau%20dossier/article/search.gif) no-repeat 0px center;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #eee;
	color: #000;
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead
{
	background-color: #F3F5E5;
	color: #fff;
}
.hnav
{
	background-color: #FEB15D;
	color: #fff;
}
#outerColumnContainer , #outerColumnContainer1
{
	border-left-color: #F3F5E5;	/* left column background color */
	border-right-color: #FCFCF7;	/* right column background color */
	background-color: #F8FBF0;		/* set the background color for the
					   middle column here */
}
/*.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	background-color: #cdc;
	color: #000;
}*/
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #ded;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
	background-color: #898;
	color: #fff;
}
 #leftColumn .vnav ul li a:hover
{
	background-color: #FEBF78;
	text-transform: capitalize;
	text-align: right;
	font-weight: bold;
}
#leftColumn .on
{
	background-color: #FFF1D4;
	text-transform: capitalize;
	text-align: left;
	font-weight: bold;
	background-image: url(tourner-gauche.png);
	background-position: right;
	background-repeat: no-repeat;
}

#leftColumn .rub
{
	font-weight: bold;
	background-position: right;
	background-repeat: no-repeat;
	background-image: url(triangle_rtl.gif);
	text-align: left;
}


.hnav a.zo {background:#708090; color:#fff;}
.hnav a.red {background:#CD5C5C; color:#fff;}
.hnav a.orange {background:#F4A460; color:#000;}
.hnav a.yellow {background:#F4A460; color:#000;}
.hnav a.green {background:#83B184; color:#fff;}
.hnav a.blue {background:#4682B4; color:#fff;}
/* .hnav ul li , .hnav ul li a:visited
{
	background-color: #bcb;
	color: #000;
}*/
.hnav ul li a:hover
{
	background-color: #787;
	color: #fff;
}
#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}
#footer
{
	background-color: #F3F5E5;
	color: #fff;
	text-align: center;
}

.AR{
	color: #83B184;
	font-size: 12px;
}

.AR-1{
	color: #EA0000;
	font-size: 10px;
	background-color: Blue;
}
.Ce {
	font-size: 12px;
	color: #D9006D;
}

.Le {
	font-size: 12px;
	color: #CD5C5C;
}

.Le-1 {
	font-size: 10px;
	color: #D96D00;
}

.Za {
	font-size: 12px;
	color: #F4A460;
}
.zA-1 {
	font-size: 11px;
	color: #6BD900;
}
.zA {
	font-size: 12px;
	color: #F4A460;
}
.zI {
	font-size: 12px;
	color: #4682B4;
}

.zo {
	font-size: 12px;
	color: #708090;
}

.A {
	font-size: 12px;
	color: #708090;
}

.En {
	font-size: 12px;
	color: #FEB15D;
}


 .extrait {
	margin-bottom: 0.5em;

	margin-top: 1em;
	margin-left: 10px;
}

.extrait .titre1 {
	font-size: 0.8em;
	font-weight: bold;
}

.extrait .spip_logos {
	float: right;
	margin-left: 16px;
	margin-bottom: 16px;
	clear:left;
	margin-right: 1em;
}

.extrait p { margin: 0; padding: 0; }

.extrait .enclosures {
	float: right;
	text-align: right;
	max-width: 60%;
	margin: 0; }

.extrait small {
	display: block;
	font-size: 0.71em; }

.extrait .texte {
	margin-top: 5px;
	margin-bottom: 1em;
	border: 1px solid #CCCCCC;
	-moz-border-radius-bottomleft:10px;
-moz-border-radius-bottomright:10px;
-moz-border-radius-topleft:10px;
-moz-border-radius-topright:10px;
	padding: 0.9em;
	font-size: 0.75em;
	line-height: 1.4em;
}
 .rubriques {
	background: transparent;
}
.rubriques .titre { background: #F2FFF2; }

.breves {
	background: #F8FBF0;
}
.breves .titre {
	background: #FBFDF7;
}
.breves .centre {
	background: #FBFDF7;
	text-align: center;
}
.syndic { background: #E8F8F8; }
.syndic .titre { background: #F0FCFC; }

.forums { background: #EAEAFF; }
.forums .titre { background: #F2F2FF; }

.divers { background: #F8F8E8; }
.divers .titre { background: #FCFCF0; }

/******************************************************************************/


