<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<span id="result_box" class="" lang="en"><span class="hps">Hello
David,</span><br>
<span class="hps">Many thanks</span> <span class="hps">for your</span>
<span class="hps">solution.</span><br>
<span class="hps">I added</span> <span class="hps atn">the value
"</span></span>text_index => 1<span id="result_box" class=""
lang="en"><span class="hps atn"></span></span>
<span id="result_box" class="" lang="en"><span class="hps atn"></span><span>"</span>
when type field=> "namdeset"<span class="hps">. All fields are
automatically indexed.<br>
</span></span><br>
<blockquote><span id="result_box" class="" lang="en"><span
class="hps"><font face="Verdana">/opt/www/eprints-3.3.12/archives/agritrop/cfg/cfg.d/
<b>eprint_field.pl</b></font></span></span><br>
<blockquote><span id="result_box" class="" lang="en"><span
class="hps"> <font face="Verdana">ex :</font></span></span><br>
<span id="result_box" class="" lang="en"><span class="hps"> <font
face="Verdana"># Statut de l'indexation</font></span></span><br>
<span id="result_box" class="" lang="en"><span class="hps"> <font
face="Verdana">{</font></span></span><br>
<span id="result_box" class="" lang="en"><span class="hps"> <font
face="Verdana"> name => 'statut_indexation',</font></span></span><br>
<span id="result_box" class="" lang="en"><span class="hps"> <font
face="Verdana"> type => 'namedset',</font></span></span><br>
<span id="result_box" class="" lang="en"><span class="hps"> <font
face="Verdana"> set_name => 'statut_indexation',</font></span></span><br>
<span id="result_box" class="" lang="en"><span class="hps"> <font
face="Verdana"> input_style => 'medium',</font></span></span><br>
<span id="result_box" class="" lang="en"><span class="hps"> <font
face="Verdana"><b> text_index => 1,</b></font></span></span><br>
<span id="result_box" class="" lang="en"><span class="hps"> <font
face="Verdana">},</font></span></span><br>
</blockquote>
<span id="result_box" class="" lang="en"><span class="hps"></span></span></blockquote>
<span id="result_box" class="" lang="en"> <span class="hps"><br>
Thank you for</span> <span class="hps">your help</span><br>
<br>
<span class="hps">Happy Holidays<br>
<br>
Josée<br>
</span></span><br>
<div class="moz-cite-prefix">Le 09/12/2015 19:34, David R Newman a
écrit :<br>
</div>
<blockquote
cite="mid:EMEW3|b2d4754cfcfb5505b0e2c2b79b164e87rB8IYk14eprints-tech-bounces|ecs.soton.ac.uk|1449686041.3676.615.camel@orville"
type="cite">
<pre wrap="">Hi Josée,
Turns out to be a really simple answer to this question but a rather
long way round to discovering it.
By default namedset fields have text_index set to 0. Therefore if only
namedset fields are changed the EPrint will not be queued for
re-indexing, even if the field in question will be re-indexed if you
change a non-namedset field at the same time. The solution is to add a:
text_index => 1
to the namedset field you want to be indexed.
I suspect the reason that namedset is non indexed because it is not the
value you see in the select box that will be added to the index but the
underlying value in the namedset file, which often not the same. Also
search on such a short term is likely to return quite a few results
where this value matches but on another indexed field. Therefore, I
think text_index is turned off by default because it is unlikely doing a
free text search on a namedset value is going to return you the set of
results you are expecting. In some cases it may be appropriate, at
which point you should set text_index to 1 for this field.
Regards
David Newman
On Wed, 2015-12-09 at 17:12 +0000, David R Newman wrote:
</pre>
<blockquote type="cite">
<pre wrap="">Hi Josée,
I am currently looking into this issue as well as I have identified a
situation where a small percentage of EPrints cannot be found when you
individual search on their title. I have script for automating testing
this on multiple EPrints at once, which I can make available.
On the specific issue you describe, I can replicate the same issue on a
3.3.14 version of EPrints. I have yet to dig down into what is causing
it not being put in the indexer queue but I do not think it will be too
difficult to figure out. I found that if I subsequently change another
non-namedset field it will schedule for re-index both that field and the
namedset field I had previously changed.
I am not certain if your issue relates the problem I mentioned initially
as I think the problem is non-Xapian dependent, as it is not until the
indexing task is run later by the indexer, does it know whether it will
indexed using Xapian or just to the database.
Regards
David Newman
On Wed, 2015-12-02 at 07:55 +0100, Lessard Josée wrote:
</pre>
<blockquote type="cite">
<pre wrap="">
Hello,
we use Xapian for our simple search.
The Xapian indexing is correct when a reference is validated in the
archive (eprint_status:buffer => archive)
But, if the correction is made on a "namedsets" field, the document
indexing is not launched!
If the modification is made on a "type text" field, indexing is
launched.
Have you ever had this problem reported? How to make sure re-indexing
is launched on any field type modifications?
Sorry for my English.
Sincerly
Josée Lessard
eprint_search_simple.pl
$c->{search}->{simple} =
{
search_fields => [
{
id => 'q',
meta_fields => [
'documents',
'eprintid',
'title',
'abstract',
'date',
'type',
'statut_indexation',
'indexeur',
...
]
},
],
preamble_phrase => 'cgi/<a class="moz-txt-link-freetext" href="search:preamble">search:preamble</a>',
title_phrase => 'cgi/<a class="moz-txt-link-freetext" href="search:simple_search">search:simple_search</a>',
citation => 'result',
page_size => 20,
order_methods => {
'byyear' => '-date/creators_name/title',
'byyearoldest' => 'date/creators_name/title',
'byname' => 'creators_name/-date/title',
'bytitle' => 'title/creators_name/-date',
'bytype' => 'type/-date/title',
'byti' => '-full_text_status/-date/title',
},
default_order => 'byyear',
show_zero_results => 1,
};
/opt/www/eprints-3.3.12/archives/agritrop/cfg/namedsets/statut_indexation
a_classer
a_indexer
a_indexer_indexeur
en_cours_d_indexation
a_indexer_electronique
a_indexer_papier
document_a_numeriser
notice_indexee
__________________________________
Correction eprints
Résultat :
title
"Publications et travaux du SAR 1996"
eprint_status
"archive"
statut_indexation
"en_cours_d_indexation"
Indexation Xapian :
* title:1996
* title:du
* title:et
* title:publications
* title:sar
* title:travaux
* statut_indexation:notice_indexee
* lastmod:20150909
--
--
Josée Lessard
Documentaliste
Cirad-Dgdrs-Délégation à l'information scientifique et technique
TA 183/05 - Avenue Agropolis - 34398 Montpellier Cedex 5 (Tél: +33 4
67 61 57 37)
*** Options: <a class="moz-txt-link-freetext" href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a>
*** Archive: <a class="moz-txt-link-freetext" href="http://www.eprints.org/tech.php/">http://www.eprints.org/tech.php/</a>
*** EPrints community wiki: <a class="moz-txt-link-freetext" href="http://wiki.eprints.org/">http://wiki.eprints.org/</a>
*** EPrints developers Forum: <a class="moz-txt-link-freetext" href="http://forum.eprints.org/">http://forum.eprints.org/</a>
</pre>
</blockquote>
<pre wrap="">
*** Options: <a class="moz-txt-link-freetext" href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a>
*** Archive: <a class="moz-txt-link-freetext" href="http://www.eprints.org/tech.php/">http://www.eprints.org/tech.php/</a>
*** EPrints community wiki: <a class="moz-txt-link-freetext" href="http://wiki.eprints.org/">http://wiki.eprints.org/</a>
*** EPrints developers Forum: <a class="moz-txt-link-freetext" href="http://forum.eprints.org/">http://forum.eprints.org/</a>
</pre>
</blockquote>
<pre wrap="">
*** Options: <a class="moz-txt-link-freetext" href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a>
*** Archive: <a class="moz-txt-link-freetext" href="http://www.eprints.org/tech.php/">http://www.eprints.org/tech.php/</a>
*** EPrints community wiki: <a class="moz-txt-link-freetext" href="http://wiki.eprints.org/">http://wiki.eprints.org/</a>
*** EPrints developers Forum: <a class="moz-txt-link-freetext" href="http://forum.eprints.org/">http://forum.eprints.org/</a>
</pre>
</blockquote>
<br>
<div class="moz-signature">-- <br>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="ProgId" content="Word.Document">
<meta name="Generator" content="Microsoft Word 14">
<meta name="Originator" content="Microsoft Word 14">
<link rel="File-List" href="signature_josee_fichiers/filelist.xml">
<!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:Author>lessard</o:Author>
<o:LastAuthor>lessard</o:LastAuthor>
<o:Revision>1</o:Revision>
<o:TotalTime>2</o:TotalTime>
<o:Created>2015-09-04T07:19:00Z</o:Created>
<o:LastSaved>2015-09-04T07:21:00Z</o:LastSaved>
<o:Pages>1</o:Pages>
<o:Words>27</o:Words>
<o:Characters>149</o:Characters>
<o:Company>CIRAD</o:Company>
<o:Lines>1</o:Lines>
<o:Paragraphs>1</o:Paragraphs>
<o:CharactersWithSpaces>175</o:CharactersWithSpaces>
<o:Version>14.00</o:Version>
</o:DocumentProperties>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
</o:OfficeDocumentSettings>
</xml><![endif]-->
<link rel="themeData"
href="signature_josee_fichiers/themedata.thmx">
<link rel="colorSchemeMapping"
href="signature_josee_fichiers/colorschememapping.xml">
<!--[if gte mso 9]><xml>
<w:WordDocument>
<w:SpellingState>Clean</w:SpellingState>
<w:GrammarState>Clean</w:GrammarState>
<w:TrackMoves>false</w:TrackMoves>
<w:TrackFormatting/>
<w:HyphenationZone>21</w:HyphenationZone>
<w:PunctuationKerning/>
<w:ValidateAgainstSchemas/>
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
<w:DoNotPromoteQF/>
<w:LidThemeOther>FR</w:LidThemeOther>
<w:LidThemeAsian>X-NONE</w:LidThemeAsian>
<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
<w:Compatibility>
<w:BreakWrappedTables/>
<w:SnapToGridInCell/>
<w:WrapTextWithPunct/>
<w:UseAsianBreakRules/>
<w:DontGrowAutofit/>
<w:SplitPgBreakAndParaMark/>
<w:EnableOpenTypeKerning/>
<w:DontFlipMirrorIndents/>
<w:OverrideTableStyleHps/>
<w:UseFELayout/>
</w:Compatibility>
<m:mathPr>
<m:mathFont m:val="Cambria Math"/>
<m:brkBin m:val="before"/>
<m:brkBinSub m:val="--"/>
<m:smallFrac m:val="off"/>
<m:dispDef/>
<m:lMargin m:val="0"/>
<m:rMargin m:val="0"/>
<m:defJc m:val="centerGroup"/>
<m:wrapIndent m:val="1440"/>
<m:intLim m:val="subSup"/>
<m:naryLim m:val="undOvr"/>
</m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
DefSemiHidden="true" DefQFormat="false" DefPriority="99"
LatentStyleCount="267">
<w:LsdException Locked="false" Priority="0" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
<w:LsdException Locked="false" Priority="39" Name="toc 1"/>
<w:LsdException Locked="false" Priority="39" Name="toc 2"/>
<w:LsdException Locked="false" Priority="39" Name="toc 3"/>
<w:LsdException Locked="false" Priority="39" Name="toc 4"/>
<w:LsdException Locked="false" Priority="39" Name="toc 5"/>
<w:LsdException Locked="false" Priority="39" Name="toc 6"/>
<w:LsdException Locked="false" Priority="39" Name="toc 7"/>
<w:LsdException Locked="false" Priority="39" Name="toc 8"/>
<w:LsdException Locked="false" Priority="39" Name="toc 9"/>
<w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
<w:LsdException Locked="false" Priority="10" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Title"/>
<w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
<w:LsdException Locked="false" Priority="11" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
<w:LsdException Locked="false" Priority="22" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
<w:LsdException Locked="false" Priority="20" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
<w:LsdException Locked="false" Priority="59" SemiHidden="false"
UnhideWhenUsed="false" Name="Table Grid"/>
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
<w:LsdException Locked="false" Priority="1" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 1"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
<w:LsdException Locked="false" Priority="34" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
<w:LsdException Locked="false" Priority="29" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
<w:LsdException Locked="false" Priority="30" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 1"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 2"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 2"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 3"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 3"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 4"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 4"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 5"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 5"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 6"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 6"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
<w:LsdException Locked="false" Priority="19" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
<w:LsdException Locked="false" Priority="21" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
<w:LsdException Locked="false" Priority="31" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
<w:LsdException Locked="false" Priority="32" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
<w:LsdException Locked="false" Priority="33" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
<w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
<w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
</w:LatentStyles>
</xml><![endif]-->
<style>
<!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;
        mso-font-charset:0;
        mso-generic-font-family:swiss;
        mso-font-pitch:variable;
        mso-font-signature:-536870145 1073786111 1 0 415 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-parent:"";
        margin:0cm;
        margin-bottom:.0001pt;
        text-indent:18.0pt;
        mso-pagination:widow-orphan;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-ascii-font-family:Calibri;
        mso-ascii-theme-font:minor-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;
        mso-hansi-font-family:Calibri;
        mso-hansi-theme-font:minor-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:minor-bidi;
        mso-fareast-language:EN-US;}
h1
        {mso-style-priority:9;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-link:"Titre 1 Car";
        mso-style-next:Normal;
        margin-top:30.0pt;
        margin-right:0cm;
        margin-bottom:4.0pt;
        margin-left:0cm;
        mso-pagination:widow-orphan;
        mso-outline-level:1;
        border:none;
        mso-border-bottom-alt:solid #365F91 1.5pt;
        mso-border-bottom-themecolor:accent1;
        mso-border-bottom-themeshade:191;
        padding:0cm;
        mso-padding-alt:0cm 0cm 1.0pt 0cm;
        font-size:12.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#365F91;
        mso-themecolor:accent1;
        mso-themeshade:191;
        mso-font-kerning:0pt;
        mso-fareast-language:EN-US;}
h2
        {mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-qformat:yes;
        mso-style-link:"Titre 2 Car";
        mso-style-next:Normal;
        margin-top:10.0pt;
        margin-right:0cm;
        margin-bottom:4.0pt;
        margin-left:0cm;
        mso-pagination:widow-orphan;
        mso-outline-level:2;
        border:none;
        mso-border-bottom-alt:solid #4F81BD 1.0pt;
        mso-border-bottom-themecolor:accent1;
        padding:0cm;
        mso-padding-alt:0cm 0cm 1.0pt 0cm;
        font-size:12.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#365F91;
        mso-themecolor:accent1;
        mso-themeshade:191;
        mso-fareast-language:EN-US;
        font-weight:normal;}
h3
        {mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-qformat:yes;
        mso-style-link:"Titre 3 Car";
        mso-style-next:Normal;
        margin-top:10.0pt;
        margin-right:0cm;
        margin-bottom:4.0pt;
        margin-left:0cm;
        mso-pagination:widow-orphan;
        mso-outline-level:3;
        border:none;
        mso-border-bottom-alt:solid #95B3D7 .5pt;
        mso-border-bottom-themecolor:accent1;
        mso-border-bottom-themetint:153;
        padding:0cm;
        mso-padding-alt:0cm 0cm 1.0pt 0cm;
        font-size:12.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#4F81BD;
        mso-themecolor:accent1;
        mso-fareast-language:EN-US;
        font-weight:normal;}
h4
        {mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-qformat:yes;
        mso-style-link:"Titre 4 Car";
        mso-style-next:Normal;
        margin-top:10.0pt;
        margin-right:0cm;
        margin-bottom:4.0pt;
        margin-left:0cm;
        mso-pagination:widow-orphan;
        mso-outline-level:4;
        border:none;
        mso-border-bottom-alt:solid #B8CCE4 .5pt;
        mso-border-bottom-themecolor:accent1;
        mso-border-bottom-themetint:102;
        padding:0cm;
        mso-padding-alt:0cm 0cm 2.0pt 0cm;
        font-size:12.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#4F81BD;
        mso-themecolor:accent1;
        mso-fareast-language:EN-US;
        font-weight:normal;
        font-style:italic;}
h5
        {mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-qformat:yes;
        mso-style-link:"Titre 5 Car";
        mso-style-next:Normal;
        margin-top:10.0pt;
        margin-right:0cm;
        margin-bottom:4.0pt;
        margin-left:0cm;
        mso-pagination:widow-orphan;
        mso-outline-level:5;
        font-size:11.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#4F81BD;
        mso-themecolor:accent1;
        mso-fareast-language:EN-US;
        font-weight:normal;}
h6
        {mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-qformat:yes;
        mso-style-link:"Titre 6 Car";
        mso-style-next:Normal;
        margin-top:14.0pt;
        margin-right:0cm;
        margin-bottom:5.0pt;
        margin-left:0cm;
        mso-pagination:widow-orphan;
        mso-outline-level:6;
        font-size:11.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#4F81BD;
        mso-themecolor:accent1;
        mso-fareast-language:EN-US;
        font-weight:normal;
        font-style:italic;}
p.MsoHeading7, li.MsoHeading7, div.MsoHeading7
        {mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-qformat:yes;
        mso-style-link:"Titre 7 Car";
        mso-style-next:Normal;
        margin-top:16.0pt;
        margin-right:0cm;
        margin-bottom:5.0pt;
        margin-left:0cm;
        mso-pagination:widow-orphan;
        mso-outline-level:7;
        font-size:10.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#9BBB59;
        mso-themecolor:accent3;
        mso-fareast-language:EN-US;
        font-weight:bold;}
p.MsoHeading8, li.MsoHeading8, div.MsoHeading8
        {mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-qformat:yes;
        mso-style-link:"Titre 8 Car";
        mso-style-next:Normal;
        margin-top:16.0pt;
        margin-right:0cm;
        margin-bottom:5.0pt;
        margin-left:0cm;
        mso-pagination:widow-orphan;
        mso-outline-level:8;
        font-size:10.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#9BBB59;
        mso-themecolor:accent3;
        mso-fareast-language:EN-US;
        font-weight:bold;
        font-style:italic;}
p.MsoHeading9, li.MsoHeading9, div.MsoHeading9
        {mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-qformat:yes;
        mso-style-link:"Titre 9 Car";
        mso-style-next:Normal;
        margin-top:16.0pt;
        margin-right:0cm;
        margin-bottom:5.0pt;
        margin-left:0cm;
        mso-pagination:widow-orphan;
        mso-outline-level:9;
        font-size:10.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#9BBB59;
        mso-themecolor:accent3;
        mso-fareast-language:EN-US;
        font-style:italic;}
p.MsoCaption, li.MsoCaption, div.MsoCaption
        {mso-style-noshow:yes;
        mso-style-priority:35;
        mso-style-qformat:yes;
        mso-style-next:Normal;
        margin:0cm;
        margin-bottom:.0001pt;
        text-indent:18.0pt;
        mso-pagination:widow-orphan;
        font-size:9.0pt;
        font-family:"Calibri","sans-serif";
        mso-ascii-font-family:Calibri;
        mso-ascii-theme-font:minor-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;
        mso-hansi-font-family:Calibri;
        mso-hansi-theme-font:minor-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:minor-bidi;
        mso-fareast-language:EN-US;
        font-weight:bold;}
p.MsoTitle, li.MsoTitle, div.MsoTitle
        {mso-style-priority:10;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-link:"Titre Car";
        mso-style-next:Normal;
        margin:0cm;
        margin-bottom:.0001pt;
        text-align:center;
        mso-pagination:widow-orphan;
        border:none;
        mso-border-top-alt:solid #A7BFDE 1.0pt;
        mso-border-top-themecolor:accent1;
        mso-border-top-themetint:127;
        mso-border-bottom-alt:solid #9BBB59 3.0pt;
        mso-border-bottom-themecolor:accent3;
        padding:0cm;
        mso-padding-alt:10.0pt 0cm 15.0pt 0cm;
        font-size:30.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#243F60;
        mso-themecolor:accent1;
        mso-themeshade:127;
        mso-fareast-language:EN-US;
        font-style:italic;}
p.MsoSubtitle, li.MsoSubtitle, div.MsoSubtitle
        {mso-style-priority:11;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-link:"Sous-titre Car";
        mso-style-next:Normal;
        margin-top:10.0pt;
        margin-right:0cm;
        margin-bottom:45.0pt;
        margin-left:0cm;
        text-align:right;
        mso-pagination:widow-orphan;
        font-size:12.0pt;
        font-family:"Calibri","sans-serif";
        mso-ascii-font-family:Calibri;
        mso-ascii-theme-font:minor-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;
        mso-hansi-font-family:Calibri;
        mso-hansi-theme-font:minor-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:minor-bidi;
        mso-fareast-language:EN-US;
        font-style:italic;}
strong
        {mso-style-priority:22;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        letter-spacing:0pt;}
em
        {mso-style-priority:20;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-parent:"";
        color:#5A5A5A;
        mso-themecolor:text1;
        mso-themetint:165;
        font-weight:bold;}
p.MsoNoSpacing, li.MsoNoSpacing, div.MsoNoSpacing
        {mso-style-priority:1;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-link:"Sans interligne Car";
        margin:0cm;
        margin-bottom:.0001pt;
        mso-pagination:widow-orphan;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-ascii-font-family:Calibri;
        mso-ascii-theme-font:minor-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;
        mso-hansi-font-family:Calibri;
        mso-hansi-theme-font:minor-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:minor-bidi;
        mso-fareast-language:EN-US;}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
        {mso-style-priority:34;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        margin-top:0cm;
        margin-right:0cm;
        margin-bottom:0cm;
        margin-left:36.0pt;
        margin-bottom:.0001pt;
        mso-add-space:auto;
        text-indent:18.0pt;
        mso-pagination:widow-orphan;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-ascii-font-family:Calibri;
        mso-ascii-theme-font:minor-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;
        mso-hansi-font-family:Calibri;
        mso-hansi-theme-font:minor-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:minor-bidi;
        mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
        {mso-style-priority:34;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-type:export-only;
        margin-top:0cm;
        margin-right:0cm;
        margin-bottom:0cm;
        margin-left:36.0pt;
        margin-bottom:.0001pt;
        mso-add-space:auto;
        text-indent:18.0pt;
        mso-pagination:widow-orphan;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-ascii-font-family:Calibri;
        mso-ascii-theme-font:minor-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;
        mso-hansi-font-family:Calibri;
        mso-hansi-theme-font:minor-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:minor-bidi;
        mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
        {mso-style-priority:34;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-type:export-only;
        margin-top:0cm;
        margin-right:0cm;
        margin-bottom:0cm;
        margin-left:36.0pt;
        margin-bottom:.0001pt;
        mso-add-space:auto;
        text-indent:18.0pt;
        mso-pagination:widow-orphan;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-ascii-font-family:Calibri;
        mso-ascii-theme-font:minor-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;
        mso-hansi-font-family:Calibri;
        mso-hansi-theme-font:minor-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:minor-bidi;
        mso-fareast-language:EN-US;}
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
        {mso-style-priority:34;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-type:export-only;
        margin-top:0cm;
        margin-right:0cm;
        margin-bottom:0cm;
        margin-left:36.0pt;
        margin-bottom:.0001pt;
        mso-add-space:auto;
        text-indent:18.0pt;
        mso-pagination:widow-orphan;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-ascii-font-family:Calibri;
        mso-ascii-theme-font:minor-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;
        mso-hansi-font-family:Calibri;
        mso-hansi-theme-font:minor-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:minor-bidi;
        mso-fareast-language:EN-US;}
p.MsoQuote, li.MsoQuote, div.MsoQuote
        {mso-style-priority:29;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-link:"Citation Car";
        mso-style-next:Normal;
        margin:0cm;
        margin-bottom:.0001pt;
        text-indent:18.0pt;
        mso-pagination:widow-orphan;
        font-size:11.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#5A5A5A;
        mso-themecolor:text1;
        mso-themetint:165;
        mso-fareast-language:EN-US;
        font-style:italic;}
p.MsoIntenseQuote, li.MsoIntenseQuote, div.MsoIntenseQuote
        {mso-style-priority:30;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-link:"Citation intense Car";
        mso-style-next:Normal;
        margin-top:16.0pt;
        margin-right:72.0pt;
        margin-bottom:16.0pt;
        margin-left:72.0pt;
        text-indent:18.0pt;
        line-height:125%;
        mso-pagination:widow-orphan;
        background:#4F81BD;
        mso-background-themecolor:accent1;
        border:none;
        mso-border-top-alt:#B8CCE4 1.5pt;
        mso-border-top-themecolor:accent1;
        mso-border-top-themetint:102;
        mso-border-left-alt:#4F81BD 4.5pt;
        mso-border-left-themecolor:accent1;
        mso-border-bottom-alt:#9BBB59 3.0pt;
        mso-border-bottom-themecolor:accent3;
        mso-border-right-alt:#4F81BD 4.5pt;
        mso-border-right-themecolor:accent1;
        mso-border-style-alt:solid;
        padding:0cm;
        mso-padding-alt:10.0pt 4.0pt 10.0pt 4.0pt;
        font-size:12.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:white;
        mso-themecolor:background1;
        mso-fareast-language:EN-US;
        font-style:italic;}
span.MsoSubtleEmphasis
        {mso-style-priority:19;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-parent:"";
        color:#5A5A5A;
        mso-themecolor:text1;
        mso-themetint:165;
        font-style:italic;}
span.MsoIntenseEmphasis
        {mso-style-priority:21;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-parent:"";
        mso-ansi-font-size:11.0pt;
        mso-bidi-font-size:11.0pt;
        color:#4F81BD;
        mso-themecolor:accent1;
        font-weight:bold;
        font-style:italic;}
span.MsoSubtleReference
        {mso-style-priority:31;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-parent:"";
        color:windowtext;
        text-underline:#9BBB59;
        text-decoration:underline;
        text-underline:single;
        mso-text-underline-themecolor:accent3;}
span.MsoIntenseReference
        {mso-style-priority:32;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        color:#76923C;
        mso-themecolor:accent3;
        mso-themeshade:191;
        font-weight:bold;
        text-underline:#9BBB59;
        text-decoration:underline;
        text-underline:single;
        mso-text-underline-themecolor:accent3;}
span.MsoBookTitle
        {mso-style-priority:33;
        mso-style-unhide:no;
        mso-style-qformat:yes;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:windowtext;
        font-weight:bold;
        font-style:italic;}
p.MsoTocHeading, li.MsoTocHeading, div.MsoTocHeading
        {mso-style-noshow:yes;
        mso-style-priority:39;
        mso-style-qformat:yes;
        mso-style-parent:"Titre 1";
        mso-style-next:Normal;
        margin-top:30.0pt;
        margin-right:0cm;
        margin-bottom:4.0pt;
        margin-left:0cm;
        mso-pagination:widow-orphan;
        border:none;
        mso-border-bottom-alt:solid #365F91 1.5pt;
        mso-border-bottom-themecolor:accent1;
        mso-border-bottom-themeshade:191;
        padding:0cm;
        mso-padding-alt:0cm 0cm 1.0pt 0cm;
        font-size:12.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#365F91;
        mso-themecolor:accent1;
        mso-themeshade:191;
        mso-fareast-language:EN-US;
        mso-bidi-language:EN-US;
        font-weight:bold;}
span.Titre1Car
        {mso-style-name:"Titre 1 Car";
        mso-style-priority:9;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"Titre 1";
        mso-ansi-font-size:12.0pt;
        mso-bidi-font-size:12.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#365F91;
        mso-themecolor:accent1;
        mso-themeshade:191;
        font-weight:bold;}
span.Titre2Car
        {mso-style-name:"Titre 2 Car";
        mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"Titre 2";
        mso-ansi-font-size:12.0pt;
        mso-bidi-font-size:12.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#365F91;
        mso-themecolor:accent1;
        mso-themeshade:191;}
span.Titre3Car
        {mso-style-name:"Titre 3 Car";
        mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"Titre 3";
        mso-ansi-font-size:12.0pt;
        mso-bidi-font-size:12.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#4F81BD;
        mso-themecolor:accent1;}
span.Titre4Car
        {mso-style-name:"Titre 4 Car";
        mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"Titre 4";
        mso-ansi-font-size:12.0pt;
        mso-bidi-font-size:12.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#4F81BD;
        mso-themecolor:accent1;
        font-style:italic;}
span.Titre5Car
        {mso-style-name:"Titre 5 Car";
        mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"Titre 5";
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#4F81BD;
        mso-themecolor:accent1;}
span.Titre6Car
        {mso-style-name:"Titre 6 Car";
        mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"Titre 6";
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#4F81BD;
        mso-themecolor:accent1;
        font-style:italic;}
span.Titre7Car
        {mso-style-name:"Titre 7 Car";
        mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"Titre 7";
        mso-ansi-font-size:10.0pt;
        mso-bidi-font-size:10.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#9BBB59;
        mso-themecolor:accent3;
        font-weight:bold;}
span.Titre8Car
        {mso-style-name:"Titre 8 Car";
        mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"Titre 8";
        mso-ansi-font-size:10.0pt;
        mso-bidi-font-size:10.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#9BBB59;
        mso-themecolor:accent3;
        font-weight:bold;
        font-style:italic;}
span.Titre9Car
        {mso-style-name:"Titre 9 Car";
        mso-style-noshow:yes;
        mso-style-priority:9;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"Titre 9";
        mso-ansi-font-size:10.0pt;
        mso-bidi-font-size:10.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#9BBB59;
        mso-themecolor:accent3;
        font-style:italic;}
span.TitreCar
        {mso-style-name:"Titre Car";
        mso-style-priority:10;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:Titre;
        mso-ansi-font-size:30.0pt;
        mso-bidi-font-size:30.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#243F60;
        mso-themecolor:accent1;
        mso-themeshade:127;
        font-style:italic;}
span.Sous-titreCar
        {mso-style-name:"Sous-titre Car";
        mso-style-priority:11;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:Sous-titre;
        mso-ansi-font-size:12.0pt;
        mso-bidi-font-size:12.0pt;
        font-style:italic;}
span.SansinterligneCar
        {mso-style-name:"Sans interligne Car";
        mso-style-priority:1;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"Sans interligne";}
span.CitationCar
        {mso-style-name:"Citation Car";
        mso-style-priority:29;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:Citation;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:#5A5A5A;
        mso-themecolor:text1;
        mso-themetint:165;
        font-style:italic;}
span.CitationintenseCar
        {mso-style-name:"Citation intense Car";
        mso-style-priority:30;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"Citation intense";
        mso-ansi-font-size:12.0pt;
        mso-bidi-font-size:12.0pt;
        font-family:"Cambria","serif";
        mso-ascii-font-family:Cambria;
        mso-ascii-theme-font:major-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:major-fareast;
        mso-hansi-font-family:Cambria;
        mso-hansi-theme-font:major-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:major-bidi;
        color:white;
        mso-themecolor:background1;
        background:#4F81BD;
        mso-shading-themecolor:accent1;
        font-style:italic;}
span.SpellE
        {mso-style-name:"";
        mso-spl-e:yes;}
.MsoChpDefault
        {mso-style-type:export-only;
        mso-default-props:yes;
        font-family:"Calibri","sans-serif";
        mso-ascii-font-family:Calibri;
        mso-ascii-theme-font:minor-latin;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;
        mso-hansi-font-family:Calibri;
        mso-hansi-theme-font:minor-latin;
        mso-bidi-font-family:"Times New Roman";
        mso-bidi-theme-font:minor-bidi;
        mso-fareast-language:EN-US;}
.MsoPapDefault
        {mso-style-type:export-only;
        text-indent:18.0pt;}
@page WordSection1
        {size:595.3pt 841.9pt;
        margin:70.85pt 70.85pt 70.85pt 70.85pt;
        mso-header-margin:35.4pt;
        mso-footer-margin:35.4pt;
        mso-paper-source:0;}
div.WordSection1
        {page:WordSection1;}
-->
</style><!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
        {mso-style-name:"Tableau Normal";
        mso-tstyle-rowband-size:0;
        mso-tstyle-colband-size:0;
        mso-style-noshow:yes;
        mso-style-priority:99;
        mso-style-parent:"";
        mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
        mso-para-margin:0cm;
        mso-para-margin-bottom:.0001pt;
        text-indent:18.0pt;
        mso-pagination:widow-orphan;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-ascii-font-family:Calibri;
        mso-ascii-theme-font:minor-latin;
        mso-hansi-font-family:Calibri;
        mso-hansi-theme-font:minor-latin;
        mso-fareast-language:EN-US;}
</style>
<![endif]--><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
<div class="WordSection1">
<p class="MsoNormal">Josée Lessard</p>
<p class="MsoNormal">Documentaliste<o:p></o:p></p>
<p class="MsoNormal"><span class="SpellE">Cirad</span>-<span
class="SpellE">Dgdrs</span>-Délégation
à l'information scientifique et technique<o:p></o:p></p>
<p class="MsoNormal">TA 183/05 - Avenue <span class="SpellE">Agropolis</span>
-
34398 Montpellier Cedex 5 (Tél: +33 4 67 61 57 37)</p>
</div>
</div>
</body>
</html>