
/*
*************
**************
************** INCLUSION du fichier '/www/static.cirad.fr/prod/css/ezSites/reset.css'
**************
**************
*/

/*
  HTML5 ✰ Boilerplate

  style.css contains a reset, font normalization and some base styles.

  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/*
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
/*table, */caption, tbody, tfoot,/* thead, tr, th, td,*/
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }


/*
 * minimal base styles
 */


body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */
html { overflow-y: scroll; }


/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

/*td, td img { vertical-align: top; }*/

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre {
  padding: 15px;

  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }

/* webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid {
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red;
 -webkit-box-shadow: 0px 0px 5px red;
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; }

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; }

/* make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/* bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/*
 * Non-semantic helper classes
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;
}

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }


 /* Primary Styles
    Author:
 */


/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override.
 */

@media all and (orientation:portrait) {
  /* Style adjustments for portrait mode goes here */

}

@media all and (orientation:landscape) {
  /* Style adjustments for landscape mode goes here */

}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {


  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/*
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; }
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

/********* A TESTER *****************************/

#content {
	line-height:1.6em;
}
#content h1 {
	font-size:1.6em;
	line-height:1;
	margin:1em 0 .5em;
}
#content h2 {
	font-size:1.5em;
	line-height:1;
	margin:1.07em 0 .535em;
}
#content h3 {
	font-size:1.4em;
	line-height:1;
	margin:1.14em 0 .57em;
}
#content h4 {
	font-size:1.3em;
	line-height:1;
	margin:1.23em 0 .615em;
}
#content h5 {
	font-size:1.2em;
	line-height:1;
	margin:1.33em 0 .67em;
}
#content h6 {
	font-size:1em;
	line-height:1;
	margin:1.6em 0 .8em;
}
#content hr {
	display:block;
	background:black;
	color:black;
	width:100%;
	height:1px;
	border:none;
}
#content ul {
	list-style:disc outside;
}
#content ol {
	list-style:decimal outside;
}
#content table { border-top: 1px solid #ccc;  border-left: 1px solid #ccc;border-collapse:collapse; }
#content th, #content td { border-bottom: 1px solid #ddd; border-right: 1px solid #ccc; padding:0 5px; }

#content hr, #content p,#content ul,#content ol,#content dl,#content pre, #content address,#content table,#content form
{
	margin-bottom:1.6em;
}


#content fieldset {
	margin:1.6em 0;
	padding:1.6em;
}

/* \*/

#content legend {
	padding-left:.8em;
	padding-right:.8em;
}

/* */

@media all and (min-width: 0px) /* for Opera 8 */
{
	#content legend 	{
		margin-bottom:1.6em;
	}
	#content fieldset 	{
		margin-top:0;
	}
	#content[class^='content'] fieldset {
		margin-top:1.6em;
	}
}
#content fieldset>*:first-child {
	margin-top:0;
}
#content textarea,#content input[type='text'] {
	padding:.1em .2em;
}
#content input {
	padding:.2em .1em;
}
#content select {
	padding:.2em .1em 0;
}
#content select[multiple] {
	margin-bottom:.8em;
}
#content option {
	padding:0 .4em .1em;
}
#content button {
	padding:.3em .5em;
}
#content input[type='radio'] {
	position:relative;
	bottom:-.2em;
}
#content dt {
	margin-top:.8em;
	margin-bottom:.4em;
}
#content ul,#content ol {
	margin-left:2.2em;
}
#content caption,#content form div {
	padding-bottom:.8em;
}
#content ul ul,#content ol ul,#content ul ol,#content ol ol {
	margin-bottom:0;
}


/*----------------------------------------------------------------*/
/*          BOITE DE CONNEXION / DECONNEXION        */
/*----------------------------------------------------------------*/
body.not_connected div#warning_hiddensite {
	width:450px;
	border:1px solid #000;
	margin:150px auto;
	padding:10px;
	background:#fff;
}
body.not_connected div#warning_hiddensite h1 {
	text-align:center;
	font-size:17px;
}
body.not_connected div#warning_hiddensite h2 {
	text-align:center;
	font-size:13px;
	font-weight:normal;
	margin:5px 20px;
}
body.not_connected div#warning_hiddensite h2:last-child {
	margin-bottom:20px;
}
body.not_connected div#warning_hiddensite h3 {
	text-align:center;
	margin:15px 0 0 0;
	font-size:20px;
	color:#ccc
}
body.not_connected div#warning_hiddensite .block {
	text-align:left;
	margin-bottom:10px;
}
body.not_connected div#warning_hiddensite label {
	width:125px;
	display:block;
	float:left;
	font-weight:bold;
	color:red;
}
body.not_connected div#warning_hiddensite input {
	width:200px;
}
body.not_connected div#warning_hiddensite .buttonblock {
	text-align:center;
}
div#login_state {
	text-align:center;
	font-weight:bold;
	padding:10px 0 30px;
}


/*----------------------------------------------------------------*/
/*                EDITEUR XML - content.ini.append          */
/*----------------------------------------------------------------*/
div.attr_accroche {
	font-weight:bold;
}
p.text-left {text-align:left;}
p.text-center {text-align:center;}
p.text-right {text-align:right;}
p.text-justify {text-align:justify;}

#contenu > .attr_image {
	float:right;
	margin:0 0 20px 20px;
	background:#fff;
}
aside .attr_image {
	float:none;
	margin:0 0 20px 0;
}
.object-right .attribute-image,
.object-right .attr_image {
	float:right;
	margin:0 0 20px 20px;
}
.object-left .attribute-image,
.object-left .attr_image {
	float:left;
	margin:0 20px 20px 0;
}
.object-center .attribute-image,
.object-center .attr_image {
	text-align:center;
	float:none;
}


#content table p {
	margin:0;
}
#content table caption {
	font-weight:bold;
}
#content table.default th {
	background:#eee;
}
hr {
	clear:both;
}


/*........................................................ extension de fichier .........*/
/*a[href^="http://"] {
	padding-left:20px;
	background:url(/css/ezSites/sprite_MIME.png) 0 -200px no-repeat;
}
a[href^="http://www.cirad.fr"]  {}
a[href^="mailto"] {}*/

a[href$=".zip"] span, a[href$=".rar"] span {
	padding-left:20px !important;
	background:url(/css/ezSites/sprite_MIME.png) 0 0 no-repeat !important;
}
a[href$=".ppt"] span, a[href$=".pptx"] span  {
	padding-left:20px !important;
	background:url(/css/ezSites/sprite_MIME.png) 0 -40px no-repeat !important;
}
a[href$=".pdf"] span {
	padding-left:20px !important;
	background:url(/css/ezSites/sprite_MIME.png) 0 -80px no-repeat !important;
}
a[href$=".doc"] span, a[href$=".docx"] span {
	padding-left:20px !important;
	background:url(/css/ezSites/sprite_MIME.png) 0 -120px no-repeat !important;
}
a[href$=".xls"] span, a[href$=".xlsx"] span {
	padding-left:20px !important;
	background:url(/css/ezSites/sprite_MIME.png) 0 -160px no-repeat !important;
}
a.opennew > span {
	padding-left:25px !important;
	background:url(/css/ezSites/sprite_MIME.png) 6px -237px no-repeat !important;
}
/*a[href$=".mp3"] span {
	padding-left:20px !important;
	background:url(/css/ezSites/sprite_MIME.png) 0 -455px no-repeat !important;
}*/

/*........................................................................ noBorder .........*/
#content table.noBorder {
	border:none;
}
#content table.noBorder th, #content table.noBorder td {
	border:none;
}
#content table.trBorder {
	border:none;
}
#content table.trBorder th, #content table.trBorder td {
	border:none;
}
#content table.trBorder tr {
	border-bottom:1px solid #aaa;
}
#content table.trBorder th {
	background:#eee;
}

/*............................................................... td_1, td_2, td_3 .........*/
#content table td.td_1 {
	background:#D7DFD5;
}
#content table td.td_2 {
	background:#EAD9D9;
}
#content table td.td_3 {
	background:#D5DEE8;
}

/*............................................................... th_1, th_2, th_3 .........*/
#content table th.th_1 {
	background:#A39FA4;
	color:#fff;
}
#content table th.th_2 {
	background:#98A495;
	color:#fff;
}
#content table th.th_3 {
	background:#B29B9C;
	color:#fff;
}

/*............................................................................... Listes .........*/
#content ol ol,
#content ul ul {
	list-style-type: circle;
}
#content ol.ol_1,
#content ul.ul_1 {
	border:1px solid #ccc;
	margin-left:0;
	padding:1em 1em 1em 4em;
	background:#eee;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	}

/*...................................................................... Paragraphes .........*/
#content p.p_exergue_1 {
	text-align:center;
	width:250px;
	padding:1.5em;
	float:right;
	background:#D5DEE8;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin:0 0 2em 2em;
}
#content p.p_exergue_1:before {
	content:'\201C';
	margin-left: -0.55em;
}
#content p.p_exergue_1:after {
	content:' \201D';
}
#content p.p_exergue_2 {
	text-align:center;
	width:250px;
	padding:1.5em;
	float:left;
	margin: 0 2em 2em 0;
	background:#D5DEE8;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
#content p.p_exergue_2:before {
	content:'\201C';
	font-size:40px;
	margin-left: -0.55em;
}
#content p.p_exergue_2:after {
	content:' \201D';
}
#content p.p_encadre {
	padding:1em 2em;
	background:#D5DEE8;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
#content p.p_espace_1 {
	margin-bottom:3em;
}
#content p.p_espace_2 {
	margin-bottom:6em;
}
#content p.p_1 {
	font-weight:bold;
	color:#933;
	font-size:1.1em;
	text-align:center;
	margin:0 3em 1.6em;
}
#content p.p_2 {
	padding:15px 0 15px 58px;
	background:url(/css/ezSites/bg_p_2.png) 0 0 no-repeat;
	font-size:1.1em;
	letter-spacing:1px;
}
#content p.p_3 {
	text-align:center;
	padding:1em 2em;
	background:#069;
	color:#fff;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

/*-------------------------------------------------------------------------*/
/*                                crd_video                                            */
/*-------------------------------------------------------------------------*/
/* width et height en styles inline */
.crd_video.embed .attr_fichier,
.crd_video.embed-inline .attr_fichier {
position:relative;
/* width et height en styles inline */
}
#content a.video {
display: table-cell;
text-align: center;
vertical-align: middle;
}
#content a.video img.play_button,
#content a.video .background img {
	float:none;
	margin:0;
}
/* Image "splash" en pseudo-background (sur div conteneur) */
#content a.video .background {
position:absolute;
top:0;
left:0;
z-index:-9999;
/* width et height en styles inline */
}



/* On masque le terme "SPAMFILTER" dans les adresses Mails*/
.spamfilter {
	display:none;
}



/* Pour l'avertissement "votre javascript est désactivé" */

.no-js {
	padding-top:70px;
}
.no-js .warning-nojs {
margin:0 auto;
padding-top:10px;
position:absolute;
top:0;
left:25%;
width:50%;
color:#AF2D51;
text-align:center;
z-index:100;
font-weight:bold;
font-size:14px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
}
.js .warning-nojs {
display:none;
}


/* Sauts de ligne généré par double-pipe" */
h1 span.lig1,
h1 span.lig2,
h1 span.lig3,
h1 span.lig4,
p.attr_accroche span.lig1
p.attr_accroche span.lig2,
p.attr_accroche span.lig3,
p.attr_accroche span.lig4 {
	display:block;
}



div.crd_video_html5 p,
div.crd_video_html5 ul {
display:none;
}



/*-----------------/cookies/infos */
.info_cookies button {
    margin-bottom: 25px;
    border-radius:5px;
}
.info_cookies p#no {
    background: none !important;
    font-weight: bold
}




















/*
*************
**************
************** INCLUSION du fichier '/www/static.cirad.fr/prod/css/ezSites/resultatRecherche.css'
**************
**************
*/

/*-------------------------------------------------------------------------*/
/*             page de recherche - recherche avancée                */
/*-------------------------------------------------------------------------*/
#content .content-search fieldset, #content .content-search legend {
	margin:0; padding:0;
	color:#E1007A;
}
#content .feedback {
	padding-top:20px;
}
#content .feedback h2 {
	margin-top:0;
}
#content .item_trouve {
	 padding:5px 0;
	 margin-bottom:5px;
	 border-bottom:1px dotted #000;
	 overflow:auto;
}
#content .item_trouve p {
	  margin:0.5em 0;
}
#content .item_trouve p.attr_name {
	font-weight:bold;
}
#content .item_trouve p.attr_name a {
	text-decoration:none;
	padding-left:15px;
	background:url(/css/ezSites/sprite_resultatsRech.png) 0 -154px no-repeat
}
#content .item_trouve p.attr_name a:hover {
	text-decoration:underline;
}
#content .item_trouve p.extrait {
	line-height:1.3em;
	margin:0.5em 0;
}
.content-advanced-search p.infos,
#search_results p.infos {
	text-align:right;
}
.content-advanced-search p.infos span,
#search_results p.infos span {
	padding-left:80px;
}

.score_excellent p.infos span {
	background:url(/css/ezSites/sprite_resultatsRech.png) 0 4px no-repeat;
}
.score_bon p.infos span {
	background:url(/css/ezSites/sprite_resultatsRech.png) 0 -35px no-repeat;
}
.score_mediocre p.infos span {
	background:url(/css/ezSites/sprite_resultatsRech.png) 0 -75px no-repeat;
}
.score_mauvais p.infos span {
	background:url(/css/ezSites/sprite_resultatsRech.png) 0 -115px no-repeat;
}
p.infos span.score {
	display:none;
}
.content-advanced-search p.infos span.date,
#search_results p.infos span.date {
	font-size:10px;
	font-style:italic;
}
.pagenavigator {
	margin:30px 0 0 0 ;
	font-weight:bold;
}
.pagenavigator span {
	padding:0 5px;
}
.pagenavigator a {
	text-decoration:none;
}

#search_results .attr_image {
	float:left;
	margin:0 15px 10px 0;
}


/*
*************
**************
************** INCLUSION du fichier '/www/static.cirad.fr/prod/css/ur_umr/ur_umr.css'
**************
**************
*/

 .DEBUG, .hide, nav#mobile {
	display:none;
}
body {
	background:#fff;
	font-size:11.2px;
}
header#entete {
	height:201px;
}

#container {
	width:1001px;
	margin:0 auto 30px;
	background:#fff url(/css/ur_umr/bg_container.png) 0 0 repeat-y;
	position:relative;
	z-index:1;
}
header#entete div.hgroup {
	font: 0/0 a;
    text-shadow: none;
    color: transparent;
}
header#entete div.hgroup a {
	color: transparent;
	text-decoration:none;
}
#menu_accessibilite {
	display:none;
}

/*................................. MaJ = 11/2017 - MUSE - */
.muse {
	display: block;
	width: 136px;
	height: 68px;
	margin: 0 auto 20px;;
	background: url(/css/ur_umr/logoMuse_FR.png) 0 0 no-repeat;
}
[lang="en-GB"] .muse {
	background: url(/css/ur_umr/logoMuse_EN.png) 0 0 no-repeat;
}
.muse span {
	display: none;
}
/*..........................................................*/



.crd_page_hors_navigation.full > .attr_texte > div {
	overflow: auto;
	border-bottom: 1px solid #ccc;
	padding-top: 20px;
}
.crd_page_hors_navigation.full > .attr_texte > div:last-child {
	border: none;
}
.crd_page_hors_navigation.full .object-left {
	float: left;
}
.crd_page_hors_navigation.full img {
	margin-right: 20px;
	width: 120px;
	height: auto;
}



/*-------------------------------------------------------------------------*/
/*                     Logo cliquable retour accueil                       */
/*-------------------------------------------------------------------------*/
div#titre_site div#logo {
	position:absolute;
	top:60px;
}
div#titre_site div#logo a {
	display:block;
	width:1000px;
	height:140px;
}
div#titre_site div#logo a img {
	display:none;
}

/*-------------------------------------------------------------------------*/
/*                                MenuLangues                              */
/*-------------------------------------------------------------------------*/
ul#langages {
	list-style-type:none;
	position:absolute;
	top:20px;
	left:935px;
}
ul#langages li {
	width:27px;
	height:19px;
	margin-bottom:4px;
}
ul#langages li a {
	display:block;
	text-decoration:none;
	width:27px;
	height:19px;
	overflow:hidden;
	background:url(/css/ur_umr/sprite_menuLangues_27.19.png) 0 0 no-repeat;
}
ul#langages li a span {
	visibility:hidden;
}
ul#langages li.en a {
	background-position:0 -40px;
}
ul#langages li.es a {
	background-position:0 -80px;
}
[LANG=fr-FR] li.fr,
[LANG=en-GB] li.en,
[LANG=es-SP] li.es {
	display:none;
}

/*-------------------------------------------------------------------------*/
/*                                MenuOutils                               */
/*-------------------------------------------------------------------------*/
ul#menuOutils {
	position:absolute;
	top:10px;
	left:650px;
	list-style-type:none;
	font-family:Verdana, Geneva, sans-serif;
	font-weight:bold;
	font-size:12px;
}
ul#menuOutils li {
	padding:1px 0 0 20px;
	margin-bottom:4px;
	background:#e2007a url(/css/ur_umr/sprite_pucesUrUmr.png) 0 0 no-repeat;
	border:none;
}
ul#menuOutils li a {
	text-decoration:none;
	color:#000;
}
ul#menuOutils li a:hover {
	color:#e2007a;
}
form#searchbox {
	position:absolute;
	top:11px;
	left:817px;
}
form#searchbox input {
	border:1px solid #e2007a;
	width:90px;
}
form#searchbox input#searchbutton {
	width:15px;
	height:15px;
	background:#e2007a url(/css/ur_umr/sprite_pucesUrUmr.png) 0 -466px no-repeat;
	border:none;
	font-size:0px;
	color:#fff;
	text-indent:40px;
}

ul#menuOutils li.Plandusite,
ul#menuOutils li.Sitemap {
position:absolute;
left:145px;
top:20px;
width:90px;
}

/*-------------------------------------------------------------------------*/
/*                                Nav - Arianne                            */
/*-------------------------------------------------------------------------*/
body.mep_accueil #nav_ariane {
	display:none;
}
p#nav_ariane {
line-height:24px;
overflow:auto;
font-family:Verdana, Geneva, sans-serif;
padding:5px 0 6px 0;
margin:0 20px 15px;
background:url(/css/ur_umr/pointilles_h.png) 0 100% repeat-x;
}
p#nav_ariane a {
color:#e2007a;
text-decoration:none;
}
p#nav_ariane a:hover {
color:#000;
}
p#nav_ariane span {
padding:0 8px;
display:block;
float:left;
}
p#nav_ariane span.libelle {
display:none;
}
p#nav_ariane span.bc1 {
width:24px;
height:24px;
padding:0;
margin-right:15px;
background:url(/css/ur_umr/sprite_home.png) 0 0 no-repeat;
}
p#nav_ariane span.bc1 a {
display:block;
width:24px;
height:24px;
overflow:hidden;
text-decoration:none;
}
p#nav_ariane span.bc1 a:hover {
background:url(/css/ur_umr/sprite_home.png) 0 100% no-repeat;
}
p#nav_ariane span.bc1 span.path-text,
p#nav_ariane span.bc1 a span {
	display:none;
}
p#nav_ariane span.path-separator {
height:24px;
width:13px;
padding:0;
background:url(/css/ur_umr/sprite_home.png) 100% 0 no-repeat;
}
p#nav_ariane span.path-separator span.separator {
visibility:hidden;
}

/*-------------------------------------------------------------------------*/
/*                                Navigation verticale                     */
/*-------------------------------------------------------------------------*/
nav#menuArborescence {
font-family: 'Yanone Kaffeesatz', arial, serif;
width:170px;
float:left;
padding:0 0 40px 0;
}
nav#menuArborescence ul li  {
padding:10px 0 10px 20px;
font-size:22px;
line-height:23px;
border-bottom:1px solid #ccc;
background:#e2007a url(/css/ur_umr/sprite_pucesUrUmr.png) 0 -451px no-repeat;
word-wrap:break-word;
}
nav#menuArborescence ul ul {
margin-top:0.4em;
}
nav#menuArborescence ul li ul li  {
font-family:Verdana, Geneva, sans-serif;
padding:4px 0;
border:none;
font-size:12px;
line-height:14px;
background:none;
}
nav#menuArborescence ul ul ul {
margin-top:0.3em;
}
nav#menuArborescence ul li ul li ul li {
padding:1px 0 1px 13px;
border:none;
font-weight:normal;
background:#e2007a url(/css/ur_umr/sprite_pucesUrUmr.png) -33px -56px no-repeat;
}
nav#menuArborescence a {
text-decoration:none;
color:#000;
}
nav#menuArborescence ul li.courant > a,
nav#menuArborescence a:hover {
color:#e2007a;
}

/*-------------------------------------------------------------------------*/
/*                             Content - LAYOUT                            */
/*-------------------------------------------------------------------------*/
body.mep_accueil #main {
	margin-top:35px;
}
#main {
	overflow:auto;
	margin:0 15px 20px 15px;
	background:url(/css/ur_umr/pointilles_v.png) 182px 0 repeat-y;
}
#content {
	overflow:auto;
	margin:0 0 20px 200px;
	background:url(/css/ur_umr/pointilles_v.png) 555px 0 repeat-y;
	width:771px;
}
#content article {
	float:left;
	width:540px;
	min-height:400px;
}
#content aside {
	width:200px;
	float:right;
	padding:0 0 10px 0;
	min-height:380px;
	word-wrap:break-word;
}


body.crd_dossier_evenements #content,
body.crd_annuaire_agents #content { /* on supprime l'aside dans la page EVENEMENTS, ANNUAIRE Agents, */
	background:none;
}
body.crd_dossier_evenements #content article,
body.crd_annuaire_agents #content article  {
	width:771px;
}
body.crd_dossier_evenements aside,
body.crd_annuaire_agents aside {
	display:none;
}


body.crd_dossier_evenements .crd_dossier_evenements {  /* on laisse la place au calendrier */
	width:550px;
	float:left;
}




/*-------------------------------------------------------------------------*/
/*                             Content                                     */
/*-------------------------------------------------------------------------*/
#content a, #content a:hover {
	color:#444;
}
#content {
	font-family:Verdana, Geneva, sans-serif;
	line-height:1.3em;
}
#content h1.attr_name,
#content h1:first-child,
#content h2:first-child {
	margin-top:0;
}
#content h2 b, #content h3 b, /*#content h4 b, #content h5 b, #content h6 b,*/
#content h2 i, #content h3 i, #content h4 i, #content h5 i, #content h6 i {
	font-weight:normal;
	font-style:normal;
}
#content h1, #content h2, #content h3, #content h4, #content h5 {
	color:#E2007A;
	clear:both;
}
#content h1 {
	font-family: 'Yanone Kaffeesatz', arial, serif;
	background:#e2007a url(/css/ur_umr/sprite_pucesUrUmr.png) 0 -43px no-repeat;
	font-size:2.6em;
	font-weight:normal;
	padding-left:50px;
	letter-spacing: 0.02em;
}
#content h2 {
	font-family: 'Yanone Kaffeesatz', arial, serif;
	font-size:2.2em;
	font-weight:normal;
	border-bottom:1px dotted #7f4f37;
	padding-bottom:5px;
}
#content h3 {
	font-weight:normal;
	font-family: 'Yanone Kaffeesatz', arial, serif;
	font-size:1.7em;
}
#content h4 {
	font-size:1em;
}
#content h5 {
	font-size:0.8em;
}
#content ul li {
	margin-bottom:0.5em;
}


/*........................................................................  A S I D E  ..........*/
#content aside {
	line-height:1.2em;
}
#content aside a {
	font-weight:bold;
}
#content aside h2 {
	font-size:2em;
	padding:5px 10px 5px 20px;
	color:#fff;
	border:none;
	background:#eee;
	background:#508200;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius:15px;
}
aside#annexes ul {
	list-style-type:none;
	margin-left:0;
}
aside .attr_image,
aside .attribute-image {
	float:none;
	margin:0 0 15px 0;
}

p.attr_date_publication.debut_page {
	display:none;
}
p.attr_date_publication {
	text-align:right;
	font-style:italic;
	clear:both;
}
#content .crd_dossier_projets p.attr_accroche,
#content .attr_accroche {
	margin-bottom:15px;
	font-weight:bold;
}
#content p.show_more {
	margin-top:15px;
	font-weight:bold;
	padding:3px 0 3px 20px;
	background:#508200 url(/css/ur_umr/sprite_pucesUrUmr.png) 0 -463px no-repeat;
}
#content p.show_more a {
	color:#508200;
	text-decoration:none;
}
#content p.show_more a:hover {
	color:#000;
}
#content aside .evenements p.attr_name a {
	font-family: Verdana, Geneva, sans-serif;
	font-size:1em;
	font-weight:bold;
    color: #508200;
}
#content aside .evenements p.attr_name a:hover {
	color:#000;
}
body.crd_site #content .crd_evenement p.dates {
	font-style:italic;
	text-align:right;
	font-size:0.9em;
}

/*....................................... balisage html dans crd_mep.ini ............*/
#filtre,
#voirAussiCirad,
#contact {
	margin-top:15px;
	border:1px solid #508200;
	padding:5px 10px 5px;
	border-left:8px solid #508200;
	margin-bottom:20px;
}
#content h2.filtreProjets,
#content h2.filtreActus,
#content h2.voirAussiCirad,
#content h2.contact {
	padding:2px 0 5px 30px;
	padding-left:32px;
	text-align:left;
	border-bottom:1px solid #ccc;
	background:#508200 url(/css/ur_umr/sprite_icones.png) -30px -17px no-repeat;
	-webkit-border-radius:0;
	-moz-border-radius: 0;
	border-radius:0;
	color:#508200;
}
#content h2.voirAussiCirad {
	background:#508200 url(/css/ur_umr/sprite_icones.png) -30px -103px no-repeat;
	font-size:1.8em;
}
#content h2.filtreProjets,
#content h2.filtreActus {
	font-size:1.9em;
	background:#508200 url(/css/ur_umr/sprite_icones.png) -30px -198px no-repeat;
}



#content div.niv1compact ul {
	list-style-type:none;
}
#content div.niv1compact ul li p {
	margin-bottom:0.4em;
}
#content div.niv1compact ul li p a {
	font-weight:bold;
	color:#444;
}
#content div.niv1compact ul li p a:hover {
	color:#e2007a;
}

#content div.niv1rich p.attr_name {
	margin-top:10px;
}
/*#content .crd_dossier_evenements p.attr_name a,*/
#content .crd_dossier_projets p.attr_name a,
#content div.niv1rich p.attr_name a,
#content div.niv2rich p.attr_name a,
#content article .crd_dossier_actus p.attr_name a,
#content #search_results p.attr_name a {
	font-family: 'Yanone Kaffeesatz', arial, serif;
	color:#e2007a;
	font-size:20px;
	font-weight:normal;
	text-decoration:none;
	line-height: 24px;
}
#content .crd_dossier_actus p.attr_name a,
#content .crd_dossier_evenements p.attr_name a{
	text-decoration: none;
}

#content ul.niv2rich {
	margin:0; padding:0;
	list-style-type:none;
}
#content .crd_dossier_projets  .attr_accroche,
#content div.niv1rich .attr_accroche,
#content div.niv2rich .attr_accroche {
	font-weight:normal;
	color:#444;
	margin: 0 0 5px 0;
}
#content div.niv1rich .attr_accroche,
#content div.niv1rich .read_more {
	margin-left:115px;
}
#content div.niv1rich ul {
	list-style-type:none;
	margin:0;
}
#content .crd_projet p,
#content div.niv1rich p {
	margin-bottom:1.5em;
}
#content .crd_projet .attr_image {
	float:left;
	margin:0 0 0 0 ;
}
#content div.niv1rich img,
#content div.niv2rich img {
	float:left;
	margin:0 15px 15px 0;
}
#content div.niv1rich .crd_page,
#content div.niv2rich li.crd_page,
#content div.niv1rich .crd_page_chapitres {
	overflow:auto;
	border-bottom:1px solid #ccc;
}

.crd_video {
	margin-bottom:25px;
}


/*.......................................................................... Les projets ...........*/
#content .crd_projet {
	overflow:auto;
	padding-top:8px;
	padding-bottom:8px;
	border-bottom:1px solid #ccc;
}
#content ul.projets li {
	margin-bottom:0;
}
#content .crd_projet.full {
	border-bottom:none;
}
#content ul.projets li.projet_termine {
	background:url(/css/ur_umr/ic_projetTermine.png) 100% 100% no-repeat;
}
#content .crd_projet p.titre_rub_projet {
	font-weight:bold;
	margin-top:1.5em;
	color:#e2007a;
	letter-spacing:1px;
}
#content .crd_projet.line .attr_accroche,
#content .crd_projet.embed .attr_accroche,
#content .crd_projet.line p.lien,
#content .crd_projet.embed p.lien {
	margin-left:115px;
}
#content .crd_projet .attr_accroche a {
	text-decoration:none;
}
#content .crd_projet .attr_accroche a:hover {
	text-decoration:underline;
}
#content .attr_date_debut h2,
#content .attr_date_fin h2 {
	font-family:Verdana, Geneva, sans-serif;
	font-size:11px;
	font-weight:bold;
	color:#444;
	border-bottom:none;
	display:inline;
}
#content .attr_date_fin {
	margin-bottom:20px;
}

/*............................................................................ Les actus ...........*/
#content .crd_dossier_actus ul,
#content .crd_dossier_projets ul {
	list-style-type:none;
	margin:0;
}
#content ul.actus li {
	margin-bottom:0;
}
#content .crd_actualite {
	overflow:auto;
	padding-top:8px;
	padding-bottom:8px;
	border-bottom:1px solid #ccc;
}
#content ul.actus li:last-child .crd_actualite,
#content ul.projets li:last-child .crd_projet {
	border:none;
}
#content .crd_actualite img {
	float:left;
	margin:0 10px 11px 0;
}
#content .crd_dossier_actus p.attr_accroche {
	font-weight:bold;
}
#content .crd_actualite.line p.attr_accroche,
body.crd_dossier_actus #content p.read_more {
	font-weight:normal;
	margin-left:115px;
}
#content .crd_actualite p.attr_name {
	margin-bottom:3px;
}
#content .crd_actualite p.attr_date_debut {
	font-style:italic;
	text-align:right;
	margin-bottom:5px;
}
#content .crd_actualite p.attr_accroche a {
	text-decoration:none;
}
#content .crd_actualite p.attr_accroche a:hover {
	text-decoration:underline;
}

/*................................................ Les actus en page d'accueil ...........*/
body.crd_site #content .crd_dossier_actus {
	margin-top:-5px;
}
body.crd_site #content .crd_actualite {
	padding-top:5px;
	padding-bottom:5px;
}
body.crd_site aside div.attr_image {
	float:left;
}
body.crd_site #content ul.actus p.attr_name a {
	font-family:Verdana, Geneva, sans-serif;
	font-size:1em;
	font-weight:bold;
	color:#444;
}
body.crd_site #content ul.actus p {
	margin:0;
}
body.crd_site #content ul.actus p.attr_accroche {
	margin:0;
	margin-bottom:8px;
}
body.crd_site #content ul.actus p.attr_date_debut {
	font-size:0.9em;
}
body.crd_site #content ul.actus p.read_more a {
	color:#508200;
	text-decoration:none;
}
body.crd_site #content ul.actus p.read_more a:hover {
	color:#000;
}
/*................................................ Les evenements........................................*/
#content .crd_dossier_evenements ul {
	margin:0;
}
#content .crd_evenement {
	margin-bottom:10px;
	padding-bottom:5px;
	border-bottom:1px solid #ccc;
	overflow:auto;
}
#content .crd_evenement p {
	margin-bottom:5px;
}
#content .crd_evenement .attr_image {
	margin-bottom:5px;
}

/*................................................ Les evenements en page d'accueil ...........*/
body.crd_site .crd_evenement {
	overflow:auto;
}
body.crd_site .crd_evenement img {
	float:right;
}
body.crd_site #content .crd_evenement p {
	margin-bottom:3px;
}
body.crd_site #content .crd_evenement p.dates {
}
body.crd_site #content .crd_evenement p.attr_name {
	font-weight:bold;
}
body.crd_site #content .crd_evenement p.attr_accroche {
	font-weight:normal;
}
body.crd_site #content .crd_evenement p.attr_localisation {
}

/*................................................ Affichage de l'icone "Chaine" devant les liens externes ...........*/
/*aside a[href^="http://"] span,
aside a[href^="https://"] span {
	padding-left:20px;
	background:url(/css/ezSites/sprite_MIME.png) 0 -201px no-repeat;
}*/

/* Liste de publications Agritrop */

#liste_publications a[href^="http://publications.cirad.fr/une_notice"],
#liste_publications a[href^="https://publications.cirad.fr/une_notice"],
.liste_publications a[href^="http://publications.cirad.fr/une_notice"],
.liste_publications a[href^="https://publications.cirad.fr/une_notice"] {
  text-decoration:none;
	padding-left:0;
	background:none;
}

#liste_publications a.external,
.liste_publications a.external {
	text-decoration:underline;
}




/*----------------------------------------------------------------------------------------*/
/*             C A L E N D R I E R                                                                    */
/*----------------------------------------------------------------------------------------*/
#content table.calendrier {
    border-left: 1px solid #508200;
    border-top: 1px solid #508200;
	float:right;
	background:#fff;
	margin:5px 0 30px 50px;
}
#content table.calendrier  th, #content table.calendrier  td {
    border-bottom: 1px solid #508200;
    border-right: 1px solid #508200;
}
#content table.calendrier thead {
	color:#000;
	font-weight:bold;
}
#content table.calendrier  tr th,
#content table.calendrier  tr td {
	line-height:23px;
	font-size:10px;
	width:23px;
	text-align:center;
	padding:0;
}
#content table.calendrier  tr th a {
	text-decoration:none;
}
#content table.calendrier  tr td a {
	display:block;
	text-decoration:none;
	background:#508200;
	color:#fff;
}
#content table.calendrier  tr td a:hover,
#content table.calendrier  tr td.ezagenda_selected a {
  background: #E2007A;
}





/*................................................ Les chapitres (Onglets) .....*/
#content ul.chapitres {
	  margin:20px 0;
	  overflow:auto;
}
#content ul.chapitres li {
	font-weight:bold;
	list-style-type:none;
	margin:0;
	margin:0 5px 7px 0;
	width:103px;
	height:35px;
	float:left;
}
#content ul.chapitres li a {
	display:block;
	padding:2px 5px 0;
	height:33px;
	text-decoration:none;
	color:#999;
	border:1px solid #bbb;
}
#content ul.chapitres li a:hover,
#content ul.chapitres li.courant a {
	background:#E2007A;
	color:#fff;
	border:1px solid #E2007A;
}

/*-------------------------------------------------------------------------*/
/*                                  EMBED PROJET                         */
/*-------------------------------------------------------------------------*/
#content .crd_page_chapitre .attr_texte .crd_projet .image_projet_embed {
  float:left;
  margin: 0 15px 15px 0;
}
#content .crd_page_chapitre .attr_texte .crd_projet .attr_name a {
    font-family:'Yanone Kaffeesatz',Arial,serif;
color: #E2007A;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}
.wf-active #content .crd_page_chapitre .attr_texte .crd_projet .attr_name a {
  font-family:'Yanone Kaffeesatz',Arial,serif;
}
#content .crd_page_chapitre .attr_texte .crd_projet .attr_accroche {
  font-weight: normal;
}



/*................................................ Les filtres .............................*/

#content #filtre h3 {
	font-family:Verdana, Geneva, sans-serif;
	font-size:1em;
	font-weight:bold;
	color:#000;
	border-bottom:none;
}
#content #filtre ul li {
	padding: 3px 0 3px 20px;
	background:#508200 url(/css/ur_umr/sprite_pucesUrUmr.png) 0 -363px no-repeat;
}
#content #filtre ul li a {
	text-decoration:none;
	font-weight:normal;
}
#content #filtre ul li a:hover {
	color:#e2007a;
}
#content #afficher_tout {
	padding: 3px 0 3px 20px;
	background:#508200 url(/css/ur_umr/sprite_pucesUrUmr.png) 0 -464px no-repeat;
}
#content #afficher_tout a {
	font-size:1.2em;
	color:#508200;
	font-weight:bold;
	text-decoration:none;
}
#content #afficher_tout a:hover {
	color:#e2007a;
}

/*................................................ Formulaire publications ............*/

#content .crd_webservice fieldset,
#content #webservice_formulaire fieldset {
	margin:0;
	padding:0 10px;
}
#content .crd_webservice label,
#content #webservice_formulaire label {
	display:block;
	margin-bottom:3px;
}
#content .crd_webservice input,
#webservice_formulaire input {
	width:170px;
}
#content .crd_webservice input[type=submit],
#webservice_formulaire input[type=submit] {
	width:50px;
}

/*................................................ Agents --> Affichage coordonnées  ............*/

.form_input label {
	display:block;
}


.agent {
	border-bottom:1px solid #000;
	margin-bottom:25px;
}
.agent .infos {
	margin-bottom:10px;
}
.agent .infos p {
	display:inline;
	padding:0 25px;
}
.agent .infos p.nom {
	padding-left:0;
}
.agent .coordonnees {
	overflow:auto;
	padding:10px 0;
	border-top:1px solid #ddd;
}
.agent .coordonnees .adressePostale,
.agent .coordonnees .telephone,
.agent .coordonnees .assistant {
	float:left;
}
.agent .coordonnees .adressePostale {
	width:350px;
}
.agent .coordonnees .telephone {
	width:200px;
}
.agent .coordonnees .assistant {
	width:150px;
}
#contenu .agent p {
	margin-bottom:0;
}
.agent .coordonneesweb {
}

/*................................................ Resultats WEB SERVICE  ............*/

.ws-adresse {
	padding-left:25px;
	background:url(/css/ezSites/sprite_MIME.png) 0 -278px no-repeat;
}
.ws-tel {
	padding-left:25px;
	background:url(/css/ezSites/sprite_MIME.png) 0 -319px no-repeat;
}
.ws-email {
	padding-left:25px;
	background:url(/css/ezSites/sprite_MIME.png) 0 -369px no-repeat;
}


/*................................................ Resultats RECHERCHE  ............*/
body.crdpg_recherche #main {
	margin-top:30px;
}
body.crdpg_recherche #content {
	background:none;
}
body.crdpg_recherche #content article {
	width:771px;
}
.feedback {
	margin-top:30px;
}
#content .feedback fieldset {
	margin:0; padding:0;
}
.item_trouve {
	overflow:auto;
	margin-bottom:10px;
	border-bottom:1px solid #ccc;
	padding:0 0 15px;
}
#content .item_trouve p {
	margin-bottom:8px;
}
.item_trouve .attribute-image {
	float:left;
	margin:0 15px 5px 0;
}
#content .item_trouve p.score {
	margin-bottom:0;
}


/*-------------------------------------------------------------------------*/
/*                                         PAGINATEUR                              */
/*-------------------------------------------------------------------------*/
#paginateur ul {
	height:50px;
	padding-top:30px;
	text-align:center;
}
#content .pagination li {
	text-align:center;
	list-style-type:none;
	width:27px;
	height:12px;
	padding:0;
	margin:0 7px;
	display:inline-block;
	*display:inline; /* hack pour IE 7 */
	zoom:1;
}
#content .pagination li a {
	font-weight:bold;
	text-decoration:none;
	color:#E2007A ;
	display:block;
	width:27px;
	height:12px;
}
#content .pagination li a:hover {
	color:#000;
}
.pagination li.first span ,
.pagination li.previous span ,
.pagination li.next span,
.pagination li.last span {
	display:none;
}

.pagination li.first a {
	background:#E2007A url(/css/ur_umr/sprite_paginateur.png) 0 0 no-repeat;
}
.pagination li.previous a {
	background:#E2007A url(/css/ur_umr/sprite_paginateur.png) -50px 0 no-repeat;
}
.pagination li.next a {
	background:#E2007A url(/css/ur_umr/sprite_paginateur.png) -100px 0 no-repeat;
}
.pagination li.last a {
	background:#E2007A url(/css/ur_umr/sprite_paginateur.png) 100% 0 no-repeat;
}
.pagination li.first a:hover ,
.pagination li.previous a:hover ,
.pagination li.next a:hover,
.pagination li.last a:hover {
	background-color:#000;
}



/*-------------------------------------------------------------------------*/
/*                                         Footer                                        */
/*-------------------------------------------------------------------------*/
footer#basdepage {
	height:43px;
	background:#fff url(/css/ur_umr/bg_piedPage_ur.jpg) 0 0 no-repeat;
	color:#fff;
	line-height:62px;
	font-family:Verdana, Geneva, sans-serif;
	font-size:11px;
	text-align:center;
	letter-spacing:1px;
}
footer#basdepage a {
	text-decoration:none;
	color:#fff;
}
footer#basdepage a:hover {
	text-decoration:underline;
}
footer#basdepage span.separator {
	padding:0 10px;
}


/*-------------------------------------------------------------------------*/
/*                                         H I D E                                       */
/*-------------------------------------------------------------------------*/
body.crd_page_chapitre h2.attr_name,
.spamfilter {
	display:none;
}



.survol {
	background:#eee;
}


/*............. redimensionnement DIV légende dans Colorbox .........*/
#cboxLoadedContent div {
	text-align:center;
	padding-top:5px;
}

/*...... Lien sur une image  -> on enlève l'icone dans les spans imbriqués ....*/
aside a[href^="http://"] span.crd_image,
aside a[href^="http://"] span.crd_image span, 
aside a[href^="https://"] span.crd_image,
aside a[href^="https://"] span.crd_image span {
	background:none;
	padding:0;
}








/*.............. affichage d'une série de vignettes ................................*/
/*#content .crd_galerie ul,
#content .crd_galerie ol {
	margin:0;
	padding:0;
	list-style-type:none;
}
#content .crd_galerie ul li {
	float:left;
	width:100px;
	height:75px;
	overflow:hidden;
	margin:0 10px 10px 0;
	border:8px solid #eee;
}
#content .crd_galerie ul li img {
	
}
*/










/*
*************
**************
************** INCLUSION du fichier '/www/static.cirad.fr/prod/css/sitemap/sitemap_2.css'
**************
**************
*/

/*-------------------------------------------------------------------------*/
/*                                Plan du site                                        */
/*-------------------------------------------------------------------------*/
div.crdpg_sitemap ul {
	list-style-type:none; margin:0; padding:0;
}
div.crdpg_sitemap a {
	text-decoration:none;
}
div.crdpg_sitemap a:hover {
	color:#e1007a;
}
div.crdpg_sitemap .menudepth_1 > li > a {
	display:block;
	padding:10px 0 10px 30px;
	background:#eee;
	font-family: 'Yanone Kaffeesatz', arial, serif;
	font-size:2em;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin-bottom:0.25em;
}
div.crdpg_sitemap .menudepth_2 {
	margin: 0 0 1.4em 5em;
}
div.crdpg_sitemap .menudepth_2 li {
	margin-bottom:5px;
}
div.crdpg_sitemap .menudepth_2 > li > a {
	display:block;
	margin-right:30px;
	text-decoration:none;
	padding:3px 0 3px 15px;
	background:#eee;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	font-weight:bold;
}
div.crdpg_sitemap .menudepth_3 {
	margin: 0.3em 0 1em 5em;
}
div.crdpg_sitemap .menudepth_3 > li > a:before {
	content:"> ";
}

/*
*************
**************
************** INCLUSION du fichier 'ur-aida.css'
**************
**************
*/

header#entete {
	height:201px;
	background:#fff url(bg_header_UrAida.jpg) 0 0 no-repeat;
}
[LANG="en-GB"] header#entete {
	background:#fff url(bg_header_UrAida_EN.jpg) 0 0 no-repeat;
}

/*-------------------------------------------------------------------------*/
/*                                   L o g o s                             */
/*-------------------------------------------------------------------------*/
ul#logoCirad {
	position:absolute;
	top:7px;
	left:280px;
	list-style-type:none;
	width:146px;
	height:41px;
	overflow:hidden;
}
ul#logoCirad li a {
	display:block;
	width:146px;
	height:41px;
	text-decoration:none;
	background:url(logoCirad.jpg) 0 0 no-repeat;
}
ul#logoCirad li a span {
	visibility:hidden;
}




.digitAg {
	display: block;
	width: 136px;
	height: 68px;
	margin: 0 auto;
	background: url(logoDigitAg-reserve.png) 0 0 no-repeat;
}





.dataTables_filter {
    float: none !important;
    text-align: left !important;
	margin-bottom:10px;
}
#content ul.chapitres li {
	width:125px;
}

#content .crd_projet .object-center .attr_image {
	float:none;
}
#content .projets {
	list-style-type:none;
	margin:0;
}
#content .crd_these {
    border-bottom: 1px solid #ccc;
    overflow: auto;
    padding-bottom: 8px;
    padding-top: 8px;
}
.image_these_embed {
	float:left;
	margin:0 15px 4px 0;
}
#content .crd_these.line .attr_accroche {
	margin-left:115px;
}
#content .crd_these .attr_name a {
	color: #e2007a;
    font-family: 'Yanone Kaffeesatz',arial,serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}
#content .crd_these .lien {
	margin-left:115px;
}

#content div.niv1rich .crd_dossier_projets,
#content div.niv1rich .crd_dossier_theses {
	overflow:auto;
	border-bottom:1px solid #ccc;
}


body.crd_forum_sujet #content {
    background: none;
}
body.crd_forum_sujet #content article {
    width: 760px;
}
.author-signature { /*DEBUG*/
    display: none;
}



li.Forum {
	position: absolute; left: -150px;
}
li.Espacereserve {
	position: absolute; left: -150px;
	top: 20px;
	display: none;
}


label {
	display: block;
}



/*
*************
**************
************** INCLUSION du fichier '/www/static.cirad.fr/prod/css/forum/forum_1.css'
**************
**************
*/

/*-------------------------------------------------------------------------*/
/*                                crd_forum                                            */
/*-------------------------------------------------------------------------*/
#content .crd_forum .attr_accroche {
	font-weight:bold;
	margin-bottom:30px;
	text-align:left;
}
div.crd_forum form,
div.crd_forum_sujet form {
	overflow:auto;
	margin-bottom:20px;
}
div.crd_forum input.button,
div.crd_forum_sujet input.button {
    background-color: #FFB94B;
    background-image: -moz-linear-gradient(center top , #FDDB6F, #FFB94B);
    border-color: #D69E31 #E3A037 #D5982D;
    border-radius: 3px 3px 3px 3px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
    color: #8F5A0A;
    cursor: pointer;
    float: left;
    font: bold 15px Arial,Helvetica;
    height: 30px;
    padding: 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    width: 170px;
	margin-right:20px;
}
div.crd_forum input.button:hover,
div.crd_forum_sujet input.button:hover, 
div.crd_forum input.button:focus,
div.crd_forum_sujet input.button:focus {
    background-color: #FDDB6F;
    background-image: -moz-linear-gradient(center top , #FFB94B, #FDDB6F);
}
table.forum {
	width:100%;
}
#content table.forum form {
	margin-bottom:.5em;
}
table.forum input.forum-account-edit,
table.forum input.button {
	font-size:11px;
	line-height:px;
	height:20px;
	width:90px;
}
#content table.forum th {
	font-family:Verdana, Geneva, sans-serif;
	color:#fff;
	background:#7AB51D;
	padding:6px 5px
}
#content table.forum td {
	padding:6px 5px
}
#content table.forum p {
	line-height:1.3em;
	margin-bottom:1em;
}
#content table.forum p.date {
	font-size:11px;
	text-align:right;
	font-style:italic;
}
#content table.forum p.author {
	font-weight:bold;
}


.content-navigator {
	margin-bottom:30px;
}
.content-navigator div {
	display:inline-block;
	padding:0 5px;
}






/*
*************
**************
************** INCLUSION du fichier '/www/static.cirad.fr/prod/css/ur_umr/ur_umr_mobile.css'
**************
**************
*/

/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 960px) {
	
header#entete,
	  [LANG="en-GB"] header#entete {
		  height:auto;
		  background:#e7ba69;
		  -webkit-border-radius: 15px;
		  -moz-border-radius: 15px;
		  border-radius: 15px;
		  margin-top:5px;
	  }
	  header#entete div.hgroup a {
		  font-size:12px;
		  color:#fff;
		  line-height:1.4em;
	  }
	  header#entete div.hgroup h1 {
		  font-family:Verdana, Geneva, sans-serif;
		  padding:5px 15px;
		  background:#0080A7;
		  font-size:0.95em;
		  color:#fff;
		  -webkit-border-top-left-radius: 15px;
		  -webkit-border-top-right-radius: 15px;
		  -moz-border-radius-topleft: 15px;
		  -moz-border-radius-topright: 15px;
		  border-top-left-radius: 15px;
		  border-top-right-radius: 15px;
	  }
	  header#entete div.hgroup h2 {
		  padding:7px 15px 15px;
		  font-weight:normal;
		  font-family: 'Yanone Kaffeesatz', arial, serif;
	  }
	  header#entete div.hgroup h2 a {
		  color:#fff;
		  font-size:24px;
		  line-height:26px;
		  text-shadow:2px 2px 3px #444;
	  }	
	
	

			ul#logoCirad, #logo, /*ul#logos,*/ form#searchbox, #menuArborescence {
				display:none;
			}
			body.crd_site #content {
				background:none;
			}
			#container {
				margin:0 auto ;
				width:95%;
				background:none;
			}
			/*div#titre_site div#logo {
				position:static;
			}
			div#titre_site div#logo a {
				display:block;
				width:100%;
				height:75px;
			}*/
			body.mep_accueil #main {
				margin-top:0;
			}
			p#nav_ariane {
				margin:0;
			}
			#main {
				background:none;
				margin:0;
				width:100%;
			}
			#content {
				width:100%;
				background:none;
				margin:0 0 20px 0;
			}
			#content article {
				float:none;
				width:100%;
			}
			#content article h1 {
				font-size:2.0em;
			}
			#content article h2 {
				font-size:1.7em;
			}
			#content article h3 {
				font-size:1.5em;
			}
			#content aside {
				float:none;
				width:80%;
				margin:0 auto;
				min-height:10px;
			}
			body.crd_dossier_actus #content article, 
			body.crd_dossier_projets #content article {
				width: 100%;
			}
			
			/*...................................................................  Pied de page */
			footer#basdepage {
				background:none;
				line-height:2em;
			}
			footer#basdepage .bdp_copyright {
				background:#ccc;
				color:#000;
				padding:5px 0;
				margin: 60px 0 20px;
				-webkit-border-radius: 15px;
				-moz-border-radius: 15px;
				border-radius: 15px;
			}
			footer#basdepage a {
				display:block;
				margin:0 15px;
				color:#000;
				border-top:1px dotted #fff;;
			}
			footer#basdepage .separator {
				display:none;
			}
			
			/*........................................................... Navigation MOBILE  */
			/*..........................   crd_mep à modifier pour créer le menu  */
			nav#mobile {
				display:block;
				margin-bottom:15px;
			}
			p.menuMobile {
				padding:5px 0 5px 35px;
				font-family: 'Yanone Kaffeesatz', arial, serif;
				font-size:22px;
				background:#ddd url(/css/ur_umr/sprite_menuMobile.png) 10px 11px no-repeat;
				-webkit-border-radius: 15px;
				-moz-border-radius: 15px;
				border-radius: 15px;
				margin: 10px 0;
			}
			#mobile .menudepth_1 li a {
				display:block;
				font-family: 'Yanone Kaffeesatz', arial, serif;
				font-size:18px;
				padding:3px 0 3px 30px;
				margin:0 0 5px 5px;
				background:#ddd url(/css/ur_umr/sprite_menuMobile.png) 95% 6px no-repeat;
				-webkit-border-radius: 15px;
				-moz-border-radius: 15px;
				border-radius: 15px;
				text-decoration:none;
			}
			#mobile .menudepth_1>li.courant>a {
				background-color:#aaa;
				color:#fff;
			}
			#mobile .menudepth_2 li a {
				font-family: 'Yanone Kaffeesatz', arial, serif;
				font-size:18px;
				padding:0px 0 0px 30px;
				margin-left:30px;
				background:#fff url(/css/ur_umr/sprite_menuMobile.png) 10px -75px no-repeat;
			}
			#mobile .menudepth_2>li.courant>a {
				color:#e2007a;
			}
			
			
			/*.............. Le menu OUTILS est positionné en bas de page */
			ul#menuOutils {
				top:inherit;
				bottom:50px;
				left:0;
				padding:6px 0 0 ;
				border-top:1px dotted #ccc;
				width:90%;
			}
			ul#langages {
				top:inherit;
				bottom:55px;
				left:inherit;
				right:40px;
			}
			ul#menuOutils li.Plandusite,
			ul#menuOutils li.Sitemap {
				position:static;
				width: auto;
			}
			ul#menuOutils li a {
			}

}

@media screen and (max-width: 800px) and (orientation: landscape) {
			body {
				-webkit-text-size-adjust:70%;
				text-size-adjust:70%;
			}
}
 
/* Smartphones (landscape) ----------- */
@media only screen
and (min-width : 321px) {
/* Styles */
}
 
/* Smartphones (portrait) ----------- */
@media only screen
and (max-width : 320px) {
/* Styles */
}
 
/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
/* Styles */
}
 
/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
/* Styles */
}
 
/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
/* Styles */
}
 
/* Desktops and laptops ----------- */
@media only screen
and (min-width : 999px) {
	  /* Styles */
}
 
/* Large screens ----------- */
@media only screen
and (min-device-width : 999px) {
}
 
/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}


/*
*************
**************
************** INCLUSION du fichier 'aida_mobile.css'
**************
**************
*/

@media only screen
and (min-device-width : 320px)
and (max-device-width : 960px) {
	
	  
	  header#entete div.hgroup h1 {
		background:#e2007a;
	  }  
	  body.crd_site #content article,
	  .gmap {
		 width:100% !important;
	  }
}
