﻿@charset "UTF-8";
/* UTF-8 before doing anything */

/**
 * ROCSSTI : a CSS base by Nicolas Hoffmann http://rocssti.nicolas-hoffmann.net/
 * inspired by http://www.knacss.com/
 *
 * ROCSSTI is under CC-BY licence : http://creativecommons.org/licenses/by/3.0/
 *
 * this CSS is provided "as is", without any warranty of any type,
 * author can't be responsible of anything you might do with RÖCSSTI
 *
 * convention (adapt if needed)
 *  .parent
 *  .parent__child
 *  .parent--modifier  
 *  
 *  orange was #de7 b1e => now #CB4B11
 * 
 * RTL = Right To Left =>
 * to adapt a website in a language that is written from right to left
 * designed for multilingual websites with LTR et RTL
 *
 *
 * summary
 * 01 -- reset
 * 02 -- webfonts + Hx structure
 * 03 -- useful classes (utils) + typo fix + styles for "fixed tags"
 * 04 -- links + icons
 * 05 -- layout & modules
 * 06 -- structure (page / skip links / header / main content / footer)
 * 07 -- forms
 * 08 -- inside content
 * 09 -- minor breakpoints between desktop and tablets
 * 10 -- tablets - major breakpoint
 * 11 -- minor breakpoints between tablets and mobile
 * 12 -- mobile - major breakpoint
 * 13 -- minor breakpoints for very small mobiles
 * 14 -- print
 * 15 -- fix viewport
 * 16 -- state classes
 * 17 -- bonus : Fixes IE
 */




/*
 *****************************************************************
 * 1 -- reset
 *****************************************************************
 */

/* for HTML 5 */
article, aside, audio, canvas, datagrid, datalist, details, dialog, figure, footer, header, main, menu, nav, section, video { display: block; }
abbr, eventsource, mark, meter, time, progress, output, bb { display: inline; }

/* if you don't care of IE<8 */
html { box-sizing: border-box; }
*, *:before, *:after {
  box-sizing: inherit;
}

/* reset minimum */
html, body, blockquote, ul, ol, form, button { margin: 0; padding: 0; }
button { border: 0; }
p, ul, ol, dl, blockquote, pre, td, th, textarea {
  font-size: 1em; /* equiv 14px */
  line-height: 1.5;
  margin: 0 0 1.5em 0;
}

/* fix display img/iframe */
img,
iframe { vertical-align: middle; }

ul, ol { padding-left: 2em; }

.unstyled {
  padding-left: 0;
  list-style-type: none;
}

/* RTL */
[dir="rtl"] ul,
[dir="rtl"] ol {
  padding-left: 0;
  padding-right: 2em;
}



/* base font size at 10px */
html { 
  font-size: 62.5%;
  /* IE9-IE11 math fixing. See http://bit.ly/1g4X0bX */
  /* Thanks to @guardian, @victorbritopro, @eQRoeil & Knacss */
  font-size: calc(1em * 0.625);
}
body {
  color: #5d5d5d;
  font-family: Arial, helvetica, sans-serif;
  font-size: 1.4em; /* font-size equiv to 14px */
  line-height: 1.5; /* to update if needed */
  overflow-x: hidden;
}




/*
 *****************************************************************
 * 02 -- webfonts + Hx structure 
 *****************************************************************
 */ 

/*@font-face {

}*/

/* calculated by http://soqr.fr/vertical-rhythm/ thanks @goetter & @eQRoeil */

h1,
.h1 {
  display: block;
  font-size:  1.7857em; /* equiv 25px */
  line-height: 1.68;
  margin: 0 0 .84em 0;
  text-transform: uppercase;
  font-weight: normal;
}
h2,
.h2 {
  display: block;
  font-size:  1.4286em; /* equiv 20px */
  line-height:  1.05;
  margin: 0 0  1.05em 0;
  text-transform: uppercase;
  font-weight: normal;
}
h3,
.h3 {
  display: block;
  font-size:  1.2857em; /* equiv 18px */
  line-height:  1.1667;
  margin: 0 0  1.1667em 0;
  font-weight: normal;
}
h4,
.h4 {
  display: block;
  font-size:  1.1429em; /* equiv 16px */
  line-height:  1.3125;
  margin: 0 0  1.3125em 0;
  font-weight: bold;
}
h5,
.h5 {
  display: block;
  font-size:  1.0714em; /* equiv 15px */
  line-height:  1.4;
  margin: 0 0  1.4em 0;
}
h6,
.h6 {
  display: block;
  font-size:  1em; /* equiv 14px */
  line-height:  1.5;
  margin: 0 0  1.5em 0;
}

.uppercase {
  text-transform: uppercase;
}

/*  other useful classes */
.smaller {
  font-size: .9286em; /* equiv 13px */
  line-height:  1.6154;
  margin:  1.6154em 0;
}
.small {
  font-size: .8571em; /* equiv 12px */
  line-height:  1.75;
  margin:  1.75em 0;
}
.big {
  font-size:  1.1429em; /* equiv 16px */
  line-height:  1.3125;
  margin:  1.3125em 0;
}
.bigger {
  font-size:  1.2857em; /* equiv 18px */
  line-height:  1.1667;
  margin:  1.1667em 0;
}
.biggest {
  font-size:  1.4286em; /* equiv 20px */
  line-height:  1.05;
  margin:  1.05em 0;
}

.strong {
  font-weight: bold;
}



/*
 *****************************************************************
 * 03 -- useful classes (utils) + typo fix + styles for "fixed tags"
 *****************************************************************
 */

.noborder,
iframe { border: 0; }
/*commented to fix the add web part feature
table {
  table-layout: fixed;
}
*/

/*
 * taken from http://tinytypo.tetue.net/ made by @tetue
 * tuned with the help of http://www.nicolas-hoffmann.net/utilitaires/codes-hexas-ascii-unicode-utf8-caracteres-usuels.php
 *
 * see http://en.wikipedia.org/wiki/International_variation_in_quotation_marks for reference
 */
q { /* same for arabic */
  quotes: "\201C" "\201D" "\2018" "\2019";
}
:lang(fr) > q {
  quotes: "\00AB\A0" "\A0\00BB" "\201C" "\201D" "\2018" "\2019";
}
:lang(en) > q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
:lang(es) > q {
  quotes: "\00AB" "\00BB" "\201C" "\201D";
}
:lang(ru) > q {
  quotes: "\00AB" "\00BB" "\201a" "\2018";
}
:lang(cn) > q {
  quotes: "\300c" "\300d";
}

/*:lang(it) > q {
  quotes: "\00AB\A0" "\A0\00BB" "\201C" "\201D";
}
:lang(de) > q {
  quotes: "\201e" "\201c" "\201a" "\2018";
}*/
q:before {
  content: open-quote;
}
q:after {
  content: close-quote;
}

/* avoid ugly line-height */
sup,
sub {
  vertical-align: 0;
  position: relative;
}
sup {
  bottom: 1ex;
}
sub {
  top: .5ex;
}

/* avoid margin on nested elements */
li p,
li ul {
  margin-bottom: 0;
  margin-top: 0;
}
/* Thou shalt not pass (Moïse or Gandalf, don't remember) */
.cut {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  hyphens: auto;
}
/* remove hyphenation if needed */
.nocut {
  word-wrap: normal;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -o-hyphens: none;
  hyphens: none;
}

code,
pre,
samp {
  white-space: pre-wrap;
}
code {
  line-height: 1;
}
kbd {
  border: solid 1px;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
  padding: 0 .25em;
}
table {
  margin-bottom: 1.5em;
}
/* important, abbr are good */
/* only those with a title are shown */
abbr[title] {
  border-bottom: dotted 1px; 
  cursor: help;
  /* color inherited from text */
} 

/* text aligns */
.alignright  { text-align: right; }
.aligncenter { text-align: center; }
.alignleft   { text-align: left; }
.aligntop    { vertical-align: top; }
.alignbottom { vertical-align: bottom; }
.alignmiddle { vertical-align: middle; }

/* RTL */
[dir="rtl"] .alignright { text-align: left; }
[dir="rtl"] .alignleft { text-align: right; }






/*
 *****************************************************************
 * 04 -- links + colors + icons
 *****************************************************************
 */

/* links */
a {
  color: #106FA8;
  text-decoration: none;
  cursor: pointer;
}
/* remember focus */
a:focus,
a:hover,
a:active {
  color: #5D5D5D;
  /*text-decoration: underline;*/
}
/* avoid border on images in links + fix border image IE */
a:link img,
a:visited img, 
img {
  border-style: none;
}


/* colors */
.bg-white {
  background: #fff;
}
.bg-lightgrey {
  background: #f6f6f6;
}
.bg-grey {
  background: #ececec;
}
.bg-strongblue {
  background: #106fa8;
  color: #fff;
}
.bg-blue {
  background: #588fc2;
  color: #fff;
}
.bg-lightblue {
  background: #d1e2ed;
}

.color-grey {
  color: #5d5d5d;
}



/* links with icons, may use DATA-URI */

.icon-more:before {
  content: "+ ";
  font-weight: bold;
  font-size: 1.2em;
}


/* external links */
/*a[href^="http://"],
a[href^="https://"] {

}*/
/* if full URL of the website in an internal link, remove icon */
/*a[href^="http://www.mydomaine.com"] {

}*/
/* contact, mailto links */
/*.mail,
a[href^="mailto:"] {

}*/
/* if URL ends with .pdf or whatever */
/*a[href$=".pdf"] {

}*/

/* facto icons */
/*[class*=icon-30] {
display: inline-block;
width: 30px;
height: 30px;
}*/





/*
 *****************************************************************
 * 05 -- layout & modules
 *****************************************************************
 */

/* rwd needed */
img,
table,
td,
blockquote,
code,
pre,
textarea,
input,
svg {
  height: auto;
  max-width: 100%;
}
/* no reset on embed, object & video, some players don't like */

/* useful to manage floats */
/* containing floats */
.mod {
  overflow: auto;
}
 
.mod--hidden {
  overflow: hidden;
}

/* some floattings */
.left {
  float: left;
}
.right {
  float: right;
}

/* clear floats */
.clear {
  clear: both;
}
.clearleft {
  clear: left;
}
.clearright {
  clear: right;
}
.clearhidden {
  clear: both;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* RTL */
[dir="rtl"] .left {
  float: right;
}
[dir="rtl"] .right {
  float: left;
}

[dir="rtl"] .clearleft {
  clear: right;
}
[dir="rtl"] .clearright {
  clear: left;
}

/* gut : "spacing" empty div */
.gut {
  height: 1px;
}

/* table-design in CSS */
.row {
  display: table;
  table-layout: fixed;
}
.col {
  display: table-cell;
  vertical-align: top;
  white-space: normal;
}
.col-noalign {
  display: table-cell;
}


/* block */
.bl {
  display: block;
}

/* inline-block, useful for grids, and not only */
.inbl,
.grid {
  display: inline-block;
}

/* grid = element of inline-grid */
.grid {
  vertical-align: top;
}

/* to relativize */
.relative,
.centered-content {
  position: relative;
}
.centered-content--nav {
  position: static;
  -webkit-transition: left .5s ease;
     -moz-transition: left .5s ease;
      -ms-transition: left .5s ease;
       -o-transition: left .5s ease;
          transition: left .5s ease;

}

/* centered block */
.center {
  margin-left: auto;
  margin-right: auto;
}

/* hardware-acceleration activation */
.hardware-accelerated {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}



/* block widths */
.w1   { width: 1%; }
.w2   { width: 2%; }
.w3   { width: 3%; }
.w5   { width: 5%; }
.w10  { width: 10%; }
.w15  { width: 15%; }
.w20  { width: 20%; padding-left: 5px; padding-right: 5px;}
.w23-5{ width: 23.5%; }
.w24  { width: 24%; }
.w25  { width: 25%; }
.w30  { width: 30%; }
.w33  { width: 33.333%; }
.w40  { width: 40%; }
.w45  { width: 45%; }
.w49  { width: 49%; }
.w50  { width: 50%; }
.w60  { width: 60%; }
.w66  { width: 66.666%; }
.w70  { width: 70%; }
.w75  { width: 75%; }
.w76  { width: 76%; }
.w80  { width: 80%; }
.w90  { width: 90%; }
.w100 { width: 100%; }
.w100_special { width: 100.1%; }

/* here you may add em widths */
/*.w960e { width: 60em; }*/

/* here you may add pixel widths */
/*.w500p { width: 500px; }*/

/* here you may add em max-widths */
/*.mw960e { max-width: 60em; }*/

/* here you may add pixel max-widths */
/*.mw960p { max-width: 960px; }*/

.mh2-7e {
  min-height: 2.7em;
}
/*.mh3e {
  min-height: 3em;
}*/

/* margins */
.mt0 { margin-top: 0; }
.mt0-5 { margin-top: .5em; }
.mt1 { margin-top: 1em; }
.mt1-5 { margin-top: 1.5em; }
.mt2 { margin-top: 2em; }
.mr0 { margin-right: 0; }
.mr1 { margin-right: 1em; }
.mr2 { margin-right: 2em; }
.mb0 { margin-bottom: 0; }
.mb0-5 { margin-bottom: .5em; }
.mb1 { margin-bottom: 1em; }
.mb2 { margin-bottom: 2em; }
.ml0 { margin-left: 0; }
.ml1 { margin-left: 1em; }
.ml2 { margin-left: 2em; }
.m0  { margin: 0; }
.m1  { margin: 1em; }
.m2  { margin: 2em; }

/* RTL = warning, use with caution */
[dir="rtl"] .mr0 { margin-left: 0; }
[dir="rtl"] .mr1 { margin-right: inherit; margin-left: 1em; }
[dir="rtl"] .mr2 { margin-right: inherit; margin-left: 2em; }
[dir="rtl"] .ml0 { margin-right: 0; }
[dir="rtl"] .ml1 { margin-left: inherit; margin-right: 1em; }
[dir="rtl"] .ml2 { margin-left: inherit; margin-right: 2em; }

/* paddings */
.pt0 { padding-top: 0; }
.pt0-25 { padding-top: .25em; }
.pt0-5  { padding-top: .5em; }
.pt1 { padding-top: 1em; }
.pt2 { padding-top: 2em; }
.pr0 { padding-right: 0; }
.pr1 { padding-right: 1em; }
.pr2 { padding-right: 2em; }
.pb0 { padding-bottom: 0; }
.pb0-25 { padding-bottom: .25em; }
.pb1 { padding-bottom: 1em; }
.pb2 { padding-bottom: 2em; }
.pl0 { padding-left: 0; }
.pl1 { padding-left: 1em; }
.pl2 { padding-left: 2em; }
.p0  { padding: 0; }
.p0-5{ padding: .5em; }
.p1  { padding: 1em; }
.p2  { padding: 2em; }

/* RTL = warning, use with caution */
[dir="rtl"] .pr0 { padding-left: 0; }
[dir="rtl"] .pr1 { padding-right: 0; padding-left: 1em; }
[dir="rtl"] .pr2 { padding-right: 0; padding-left: 2em; }
[dir="rtl"] .pl0 { padding-right: 0; }
[dir="rtl"] .pl1 { padding-left: 0; padding-right: 1em; }
[dir="rtl"] .pl2 { padding-left: 0; padding-right: 2em; }

/* for 1px-high hr */
hr {
  background-color: #000;
  border: 0;
  color: #000;
  height: 1px;
  margin: 0 0 1em;
  padding: 0;
}

/* to hide text with accessibility… a11y */
.invisible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.hidden    { display: none; } /* hidden everywhere */
.nodesktop { display: none; } /* hidden on desktop */
/*.noprint   {} /* hidden on print */
/*.notablet  {} /* hidden on tablets */
/*.nomobile  {} /* hidden on mobile */




/*
 *****************************************************************
 * 06 -- structure (page / skip links / header / main content / footer)
 *****************************************************************
 */

/* === page === */
.centered-content {
  margin: 0 auto;
  position: relative;
  max-width: 68.571428571em; /* equiv 960px */
  max-width: 960px; /* equiv 960px */
}

/* --- skip links --- */
.header__topnav {
  font-size: .8571em; /* equiv 12px */
}

.skip {
  position: absolute;
}
/* .skip__link = 1 skip link  */
/* they should be visible not only on focus */
.skip__link:first-child {
  margin-right: 1em;
}
/* anyway remember making them visible on focus */
/*.skip__link:focus,
.skip__link:hover,
.skip__link:active {

}*/

.switchlang__separator {
  letter-spacing: -0.05em;
}




/* --- header --- */

.header__banner {
  padding: .1em 0;
}

.bg-gradient-nav {
  background: #0f6ea8;
  background: -moz-linear-gradient(left, #0f6ea8 0%, #0f6ea8 48%, #1c4980 50%, #1c4980 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#0f6ea8), color-stop(48%,#0f6ea8), color-stop(50%,#1c4980), color-stop(100%,#1c4980));
  background: -webkit-linear-gradient(left, #0f6ea8 0%,#0f6ea8 48%,#1c4980 50%,#1c4980 100%);
  background: -o-linear-gradient(left, #0f6ea8 0%,#0f6ea8 48%,#1c4980 50%,#1c4980 100%);
  background: -ms-linear-gradient(left, #0f6ea8 0%,#0f6ea8 48%,#1c4980 50%,#1c4980 100%);
  background: linear-gradient(to right, #0f6ea8 0%,#0f6ea8 48%,#1c4980 50%,#1c4980 100%);
}
.bg-img-nav {
  background: url('/_layouts/15/OHCHR/OHCHR_Images/header.jpg') no-repeat 50% 0;
}
.bg-img-nav-rtl {
  background: url('/_layouts/15/OHCHR/OHCHR_Images/header-rtl.jpg') no-repeat 50% 0;
}
.bg-img-nav-rtl{background-size:cover}


.logo {
  width: 350px;
  height: 125px;
  margin-top: 1em;
  margin-bottom: 2em;
}


.displaysearchform {
  position: absolute;
  top: 35%;
  right: 5.8em;
  -webkit-appearance: none;
  background: transparent;
  z-index: 668;
}
.displaysearchform--below {
  z-index: 665;
}

.searchform__input {
  height: 2em;
  background: #fff url("/_layouts/15/OHCHR/OHCHR_Images/blue_separator.gif") 100% 50% no-repeat;
  width: 180px;
  -webkit-appearance: none;
  border-radius: 0;
}
.searchform__submit {
  height: 28px; /* webkit don't like 2em, grmlbml */
  width: 29px;
  padding: 0;
  border: 0;
  background: #fff;
  text-align: center;
  display: inline-block;
}
.searchform__link {
  text-decoration: none;
  display: inline-block;
  margin-top: .2em;
  color: #fff;
  padding-right: 1em;
  background: url("/_layouts/15/OHCHR/OHCHR_Images/fleche_blanche.png") 100% 50% no-repeat;
}

.switchlang_form__select {
  height: 2em;
}


.searchbuttons {
  margin-top: 1.5em;
}
.searchbuttons__bigbuttonscontainer {
  margin-top: 1.5em;
}

.searchbuttons__bigbutton__spacer {
  display: none;
}

.blue_button,
.searchbuttons__bigbutton,
.blue_submit {
  padding: .5em 1em ;
  display: inline-block;
  background: #588fc2;
  border: 1px solid #fff;
  font-size:  1.1em; /* equiv 16px  -- 1.1429em*/
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: left;
}

.blue_button {
  background-image: url("/_layouts/15/OHCHR/OHCHR_Images/hover_blue.png");
  background-position: 95% 50%;
  background-repeat: no-repeat;
  padding-right: 1.2em;
  padding-left: .5em;
  display: block;
}
/*.blue_button:focus,
.blue_button:hover,
.blue_button:active,*/
.blue_submit:focus,
.blue_submit:hover,
.blue_submit:active {
  background-color: #3E77AB;
}
.blue_button[aria-expanded=true] {
  background-image: url("/_layouts/15/OHCHR/OHCHR_Images/hover_blue_top.png");  
}

.blue_submit {
  border: 0;
  text-align: center;
  text-transform: uppercase;
  -webkit-appearance: none;
}

.searchbuttons__bigbutton {
  min-width: 210px;
  text-transform: uppercase;

}

.searchbuttons__bigbutton--what, 
.searchbuttons__bigbutton--donate {
  background-position: 98% 50%;
  background-repeat: no-repeat;
  padding-right: 2.5em;
}

.searchbuttons__bigbutton--what {
  background-image: url("/_layouts/15/OHCHR/OHCHR_Images/icone_oiseau.png");
  margin-right: 1.1em;
}
.searchbuttons__bigbutton--donate {
  background-image: url("/_layouts/15/OHCHR/OHCHR_Images/icone_coeur.png");
  background-color: #CB4B11;
}

.blue_button:focus,
.blue_button:hover,
.blue_button:active,
.blue_submit:focus,
.blue_submit:hover,
.blue_submit:active,
.footer-link:focus,
.footer-link:hover,
.footer-link:active,
.searchform__link:focus,
.searchform__link:hover,
.searchform__link:active,
.searchbuttons__bigbutton:focus,
.searchbuttons__bigbutton:hover,
.searchbuttons__bigbutton:active {
  color: #fff;
}





.navigation-container {
  background: #fff;
}


.navigation,
.navigation-filter {
  padding: 0;
  margin: 0;
}
.navigation-filter {
  background: #f6f6f6;
  margin-bottom: 1em;
}
.navigation__item,
.navigation-filter__item {
  position: relative;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;  
  font-size: .9286em; /* equiv 13px */
}
.navigation__item:nth-child(1) {
  width: 9%;
}
.navigation__item:nth-child(8) {
  width: 16%;
}

.displaymenu {
  position: absolute;
  right: .4em;
  top: 30%;
  font-size: 3em;
  text-decoration: none;
  padding: 0 .2em ;
  color: #fff;
  line-height: 1;
  z-index: 668;
}
.displaymenu--below {
  z-index: 665;
}
.displaymenu:focus,
.displaymenu:hover,
.displaymenu:active {
  color: #fff;
}
/* state classes in -- 16 */

.navigation__link,
.navigation-filter__link {
  text-decoration: none;
  padding: 1em 0.2em 1.1em;
  display: block;
}
.navigation-filter__link {
  padding: 1.3em 0.2em 1.4em; 
}
.navigation-filter__item {
  border-left: 1px solid #fff;
}
.navigation-filter__item:first-child {
  border-left: 0;
}


.navigation__itemhover,
.navigation-filter__itemhover {
  position: absolute;
  z-index: 666;
  bottom: -11px;
  left: 50%;
  margin-left: -22px;
  width: 42px;
  height: 11px;
  background: transparent;
}
.navigation__item:hover .navigation__itemhover,
.navigation__item--active .navigation__itemhover,

.navigation-filter__link:hover .navigation-filter__itemhover,
.navigation-filter__link[aria-selected=true] .navigation-filter__itemhover {
  /*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAALCAYAAAAJMx/IAAAAdElEQVR42mNgAIJ71XIKQLwfiP8PUjyfARkABRwGmYNBbnFgwAWgDr4/aB2IxcEJdHbweZIcOAAOBpmdwEAtADSsAYjfD1oHojlWgAoOBuktYKAHINPB76F6BBjoDaBl8PxB60ASHDx/UDgQj4NBWIFa5gIAA+RQpEy/oqgAAAAASUVORK5CYII=) 0 0 no-repeat;*/
  background: url("/_layouts/15/OHCHR/OHCHR_Images/fleche_orange_horizontal.png") 0 0 no-repeat;
}

/*.displaymenu:focus, /* burger */
/*.displaymenu:hover,
.displaymenu:active,*/
 /* links classical */
.navigation__link:hover, .navigation__link:active, .navigation__item:hover, .navigation__item:hover .navigation__text, .navigation__item--active, .navigation__item--active .navigation__text, .navigation-filter__link:focus, .navigation-filter__link:hover, .navigation-filter__link:active, .navigation-filter__link[aria-selected="true"], .navigation-filter__item:hover, .navigation-filter__item:hover .navigation-filter__text, .navigation-filter__item--hover, .navigation-filter__item--active, .navigation-filter__item--active .navigation-filter__text {
    background: #cb4b11 none repeat scroll 0 0;
    color: #fff;
    outline: 0 none;
}


.navigation__item--active,
.navigation-filter__item--active,
.navigation-filter__link[aria-selected=true] {
  font-weight: bold;
}

.navigation__text {
  line-height: 1.3;
}

.oldies .navigation__text--oneline {
  display: inline-block;
  padding: .85em 0; /* sorry, didn't have better to avoid this */
}

.flexbox .navigation__link {
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;
  height: 5.1em;
}

.flexbox .navigation__text {
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;
  margin: auto;
  justify-content: center;
  align-self: center;
}



.navigation__subnav {
  position: absolute;
  z-index: 6;
  top: 100%;
  list-style-type: none;
  padding: 1em 0 0;
  text-align: left;
  background: #ebebeb;
  color: #f00;
  width: 17em;
}
.navigation__subnav__link {
  display: block;
  padding: .5em 1em .5em 1.5em;
  border-bottom: 1px solid #fff;
  line-height: 1.3;
}

/* min for subnav system JS */
.nav-system [data-visually-hidden=true] {
  display: none;
}
.nav-system__item {
  position: relative;
}
.nav-system [data-visually-hidden] {
  position: absolute;
}

.form-country {
  margin: 0 1em ;
  border: 1px solid #000;
  background: #fff;
  position: relative;
  padding-top: 2px;
}
.form-country__input {
  width: 80%;
  height: 29px;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  display: inline-block;
}
_:-moz-tree-row(hover), .form-country__input {
  height: 30px;
}
.form-country__button {
  background: transparent;
  position: absolute;
  right: 2px;
  padding: 0;
  margin: 0;
  height: 27px;
}
.form-country__buttonimg {
  padding: 0;
  margin: 0;
}

.form-country__seeall {
  display: block;
  font-size: .8em;
  text-transform: none;
  border-bottom: 1px solid #fff;
  padding: .5em 1em .5em 1.4em;
  margin-bottom: 1em;
}
.form-country__seecountry {
  display: block;
  text-transform: none;
  padding: 0 1em .5em 1em;
}
.nav-system__subnav__item:last-child .form-country__seecountry {
  padding-bottom: 1em;
}



/* --- main content --- */
.main {
  margin-top: 3em;
}


/* --- footer --- */
.footer-link {
  color: #fff;
  display: inline-block;
  margin-bottom: .25em;
  line-height: 1.1;
}
/* hover are factorised with blue_button above */




/*
 *****************************************************************
 * 07 -- forms
 *****************************************************************
 */

/* makes you want to click on */
label,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  cursor: pointer;
  outline: 0; /* client request */
}

/* avoid dummy resize */
textarea {
  resize: vertical;
}

label,
button,
input,
select {
  vertical-align: middle;
}

/* to adapt to your design */
input,
select,
textarea {
  border: 1px solid #fff;
  border-radius: 0;
 /* width: 210px; to fix popup buttons*/
  padding: .25em;
  /** fix typo inputs **/
  font-family: inherit;
  font-size: 1em;
  outline: 0;
}

.select_resource {
  width: 100%;
  padding: .5em;
  text-transform: uppercase;
  background: #CB4B11 url("/_layouts/15/OHCHR/OHCHR_Images/hover_blue.png") 98% 50% no-repeat;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}
.select_resource option {
  background: #fff;
  color: #000;
}

/* for field texts */
.label {
  display: inline-block;
}
.label.aligntop {
  vertical-align: top;
}

/* to adapt to your design */
.button {
  background: #fff;
  color: #106fa8;
  padding: .25em .5em;
  text-transform: uppercase;
  outline: 0;
}

/*
* avoids dimensioning for radio, checkboxes and images
* and a different display on IE
*/
input[type="radio"],
input[type="checkbox"],
input[type="image"] {
  background-color: transparent;
  border: 0;
  width: auto;
}

/* to cancel input sizing or other if needed */
.auto {
  width: auto;
}

/* error or confirmation messages */
.alert,
.alert input,
.alert textarea,
.alert select {
  color: #bf0000;
  font-weight: bold;
}
/* .redborder is only used to debug */
.alert input,
.alert textarea,
.alert select,
.redborder {
  border: 1px solid #bf0000;
}
.alert img {
  border: 0;
}
/*.ok {

}*/

/* can be completed with HTML5 required attribute
* example with a color, remember not only displaying information with it
*/
/*select:required:invalid,
input:required:invalid,
input:focus:invalid,
textarea:required:invalid,
textarea:focus:invalid {
  background: #fef6f6;
  -moz-box-shadow: none;
}

input:focus:required:valid,
textarea:focus:required:valid,
select:focus:required:valid {
  background: #efe;
  -moz-box-shadow: none;
}*/





/*
 *****************************************************************
 * 08 -- inside content (other styles for pages)
 *****************************************************************
 */

/* home */
.tabs-home {
  display: table;
}

.tabs-home__links {
  display: table-cell;
  vertical-align: top;
  width: 31.5%;
  list-style-type: none;
  padding-left: 0;
  padding-right: 1.43em;
}

.tabs-home__item {
  display: block;
  border-bottom: 1px solid #ececec;
}
.tabs-home__item:last-child {
  border-bottom: 0;
}

.tabs-home__link {
  display: block;
  position: relative;
  min-height: 5em;
  padding: .5em .5em .5em 1em;
  font-size: .9286em; /* equiv 13px */
  text-decoration: none;
  font-weight: bold;
}
.flexbox .tabs-home__item {
  display: flex; /* strange, but solves a bug on IE */
}
.flexbox .tabs-home__link {
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;
  -webkit-flex: 1;          /* Chrome */
  -ms-flex: 1;              /* IE 10 */
  flex: 1;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
}

.tabs-home__linkhover {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  margin-right: -10px;
  right: 0;
  width: 10px;
  height: 16px;
  background: url("/_layouts/15/OHCHR/OHCHR_Images/fleche_grise.png") 100% 50% no-repeat;
}

.tabs-home__link:focus,
.tabs-home__link:hover,
.tabs-home__link:active,
.tabs-home__link[aria-selected=true] {
  background: #CB4B11;
  color: #fff;
  outline: 0;
}
.tabs-home__link:focus .tabs-home__linkhover,
.tabs-home__link:hover .tabs-home__linkhover,
.tabs-home__link:active .tabs-home__linkhover,
.tabs-home__link[aria-selected=true] .tabs-home__linkhover {
  margin-top: -21px;
  margin-right: -7px;
  right: 0;
  width: 11px;
  height: 42px;
  /*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAqCAYAAABlXKG1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAN1JREFUeNqU1cENgjAUxnF8EzCBQSdwBEZxA+HsoenBM7gBo+AGTqDGCdhA3jtIKrZ932tCQsiv/0NboCgs43HeHlBLfHUWXHO9RrEMZ8FQnYJ7Z8FSP6JYra9xlatT5Jmz4GSdEpGOJ5QoFtigWMZpXc/hvzopm/ZT13AZLiUBh63heoXiZaM2POsDTtiR4XV1FnxD8bi/vAcUe3Q1pDqi2KObslQR3KIHaeDqHcUePfxSfaHYoy9sH6vG8JSqxvCVqxOCBfXoty5bDbFaDXGrVb+/tqflb+VRPAswALCOQRIa9GUGAAAAAElFTkSuQmCC) 100% 50% no-repeat;*/
  background: url("/_layouts/15/OHCHR/OHCHR_Images/fleche_orange_vertical.png") 100% 50% no-repeat;
}

.tabs-home__text {
  line-height: 1.3;
  max-width: 200px;
}

.tabs-home__contents {
  display: table-cell;  
  vertical-align: top;
  padding-left: 1.43em; /* 20px */
}

.social-container {
  border-left: 1px solid #000;
  padding-left: 1.43em; /* 20px */
}

[dir="rtl"] .social-container
{
border-left: none;
border-right: 1px solid #000;
}

.blue-box {
  background: #106fa8 url("/_layouts/15/OHCHR/OHCHR_Images/box_bleu.jpg") 0 0 no-repeat;
  color: #fff;
  padding: 1em .5em;
}


/* carousel global styles */
.news-carrousel__control__list,
.images-carrousel__control__list,
.images_mobile-carrousel__control__list {
  position: absolute;
  list-style-type: none;
  top: 100%;
  right: 0;
  left: 0;
  padding-left: 0;
  text-align: center;
}
.news-carrousel__control__list__item,
.images-carrousel__control__list__item,
.images_mobile-carrousel__control__list__item {
  display: inline-block;
  margin: 0 .5em;
}
.news-carrousel__control__list__link,
.images-carrousel__control__list__link,
.images_mobile-carrousel__control__list__link {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: #fff;
  border: 1px solid #666;
  border-radius: 1em;
}

.news-carrousel__button-container,
.images-carrousel__button-container,
.images_mobile-carrousel__button-container {
  position: absolute;
}
.news-carrousel__button__previous,
.images-carrousel__button__previous,
.images_mobile-carrousel__button__previous {
  top: 50%;
  margin-top: -18px;
  left: 0;
  margin-left: -45px;
  z-index: 666;
}
.images_mobile-carrousel__button__previous {
  margin-left: 0;
}

.news-carrousel__button__next,
.images-carrousel__button__next,
.images_mobile-carrousel__button__next {
  top: 50%;
  margin-top: -18px;
  right: 0;
  margin-right: -45px;
}
.images_mobile-carrousel__button__next {
  margin-right: 0;
}

[data-carrousel-prefix-classes="images_mobile"] .carrousel__content {
  padding-left: 35px;
  padding-right: 35px;
}

.news-carrousel__button__button,
.images-carrousel__button__button,
.images_mobile-carrousel__button__button {
  margin: 0;
  padding: 0;
  background: transparent;
}

.carrousel__container {
  white-space: nowrap;
}

/* asked by client */
.carrousel__content,
.js-carrousel__control__list__link {
  outline: 0;
}

.slide .carrousel__content {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  position: relative;
  min-height: 8.5em;
  -webkit-transition: left .5s ease-in;
  -moz-transition: left .5s ease-in;
  -o-transition: left .5s ease-in;
  -ms-transition: left .5s ease-in;
  transition: left .5s ease-in;
}
.carrousel__content[aria-hidden=true] {
  display: none;
}

/* transition slide */
.carrouselslide-1-1.slide > div,
.carrouselslide-2-1.slide > div,
.carrouselslide-3-1.slide > div,
.carrouselslide-4-1.slide > div,
.carrouselslide-5-1.slide > div,
.carrouselslide-6-1.slide > div,
.carrouselslide-7-1.slide > div,
.carrouselslide-8-1.slide > div,
.carrouselslide-9-1.slide > div,
.carrouselslide-10-1.slide > div,
.carrouselslide-11-1.slide > div,
.carrouselslide-12-1.slide > div {
  left: 0;
}
.carrouselslide-1-2.slide > div,
.carrouselslide-2-2.slide > div,
.carrouselslide-3-2.slide > div,
.carrouselslide-4-2.slide > div,
.carrouselslide-5-2.slide > div,
.carrouselslide-6-2.slide > div,
.carrouselslide-7-2.slide > div,
.carrouselslide-8-2.slide > div,
.carrouselslide-9-2.slide > div,
.carrouselslide-10-2.slide > div,
.carrouselslide-11-2.slide > div,
.carrouselslide-12-2.slide > div {
  left: -100%;
}
.carrouselslide-1-3.slide > div,
.carrouselslide-2-3.slide > div,
.carrouselslide-3-3.slide > div,
.carrouselslide-4-3.slide > div,
.carrouselslide-5-3.slide > div,
.carrouselslide-6-3.slide > div,
.carrouselslide-7-3.slide > div,
.carrouselslide-8-3.slide > div,
.carrouselslide-9-3.slide > div,
.carrouselslide-10-3.slide > div,
.carrouselslide-11-3.slide > div,
.carrouselslide-12-3.slide > div {
  left: -200%;
}
.carrouselslide-1-4.slide > div,
.carrouselslide-2-4.slide > div,
.carrouselslide-3-4.slide > div,
.carrouselslide-4-4.slide > div,
.carrouselslide-5-4.slide > div,
.carrouselslide-6-4.slide > div,
.carrouselslide-7-4.slide > div,
.carrouselslide-8-4.slide > div,
.carrouselslide-9-4.slide > div,
.carrouselslide-10-4.slide > div,
.carrouselslide-11-4.slide > div,
.carrouselslide-12-4.slide > div {
  left: -300%;
}
.carrouselslide-1-5.slide > div,
.carrouselslide-2-5.slide > div,
.carrouselslide-3-5.slide > div,
.carrouselslide-4-5.slide > div,
.carrouselslide-5-5.slide > div,
.carrouselslide-6-5.slide > div,
.carrouselslide-7-5.slide > div,
.carrouselslide-8-5.slide > div,
.carrouselslide-9-5.slide > div,
.carrouselslide-10-5.slide > div,
.carrouselslide-11-5.slide > div,
.carrouselslide-12-5.slide > div {
  left: -400%;
}
.carrouselslide-1-6.slide > div,
.carrouselslide-2-6.slide > div,
.carrouselslide-3-6.slide > div,
.carrouselslide-4-6.slide > div,
.carrouselslide-5-6.slide > div,
.carrouselslide-6-6.slide > div,
.carrouselslide-7-6.slide > div,
.carrouselslide-8-6.slide > div,
.carrouselslide-9-6.slide > div,
.carrouselslide-10-6.slide > div,
.carrouselslide-11-6.slide > div,
.carrouselslide-12-6.slide > div {
  left: -500%;
}
.carrouselslide-1-7.slide > div,
.carrouselslide-2-7.slide > div,
.carrouselslide-3-7.slide > div,
.carrouselslide-4-7.slide > div,
.carrouselslide-5-7.slide > div,
.carrouselslide-6-7.slide > div,
.carrouselslide-7-7.slide > div,
.carrouselslide-8-7.slide > div,
.carrouselslide-9-7.slide > div,
.carrouselslide-10-7.slide > div,
.carrouselslide-11-7.slide > div,
.carrouselslide-12-7.slide > div {
  left: -600%;
}
.carrouselslide-1-8.slide > div,
.carrouselslide-2-8.slide > div,
.carrouselslide-3-8.slide > div,
.carrouselslide-4-8.slide > div,
.carrouselslide-5-8.slide > div,
.carrouselslide-6-8.slide > div,
.carrouselslide-7-8.slide > div,
.carrouselslide-8-8.slide > div,
.carrouselslide-9-8.slide > div,
.carrouselslide-10-8.slide > div,
.carrouselslide-11-8.slide > div,
.carrouselslide-12-8.slide > div {
  left: -700%;
}


.slide .carrousel__content[aria-hidden=true] {
  display: inline-block;
}

/* transition slide */
.fade .carrousel__content {
  -webkit-animation: fadein 1s;
  -moz-animation:    fadein 1s;
  -o-animation:      fadein 1s;
  -ms-animation:     fadein 1s;
  animation:         fadein 1s;
}
.fade .carrousel__content[aria-hidden=true] {
  -webkit-animation: fadeout 1s;
  -moz-animation:    fadeout 1s;
  -o-animation:      fadeout 1s;
  -ms-animation:     fadeout 1s;
  animation:         fadeout 1s;
}

@-webkit-keyframes fadeout {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes fadeout {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes fadeout {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-ms-keyframes fadeout {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeout {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

@-webkit-keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-ms-keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}



/* standard carrousel */
.standard_carrousel__content {
  max-width: 226px;
  white-space: normal;
}


/* priorities */

.priorities_element {
  margin-bottom: 1em;
}

.color-box {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 226px;
}
.color-box__img {
  display: block;
}
.color-box__text {
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: left;
  padding: .5em .5em .5em .8em;
  min-height: 7em;
  white-space: normal;
}
.color-box__text--green {
  /*background: #4caf5d;*/
  background: #258836;
}
.color-box__text--blue {
  /*background: #00a3e4;*/
  background: #007EB0;
}
.color-box__text--darkblue {
  background: #106fa9;
}
.color-box__text--violet {
  background: #723f81;
}
.color-box__text--orange {
  /*background: #df7b00;*/
  background: #CB4B11;
}
.color-box__text--brown {
  background: #8d1713;
}


.grid-selection,
.width-search {
  width: 23.5%;
  margin-bottom: 1.5em;
  line-height: 1.3;
}
.grid-selection-gut,
.width-search-gut {
  width: 2%;
}
.grid-selection__input {
  width: 100%;
  padding: .7em;
  height: 2.7em;
  border: 1px solid #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  background: #fff;
}
.grid-selection__input--select {
  background: #fff url("/_layouts/15/OHCHR/OHCHR_Images/hover_back.png") no-repeat 98% 50%;
}
.quick-selection__links {
  padding-bottom: .5em;
}





/*
 *****************************************************************
 * 09 -- minor breakpoints between desktop and tablets
 *****************************************************************
 */


/*@media (max-width: 1060px) {*/
@media (max-width: 66.25em) {

  .centered-content {
    padding-left: 3.3em;
    padding-right: 3.3em;
  }

  .tabs-home__img,
  .tabs-home__p {
    max-width: 90%;
  }

}


/*@media (max-width: 970px) {*/
@media (max-width: 60.625em) {

  /**
   * global structure adaptation (page / skip links / header / main content / footer)
   */
  .searchbuttons {
    margin-top: .75em;
  }
  .searchbuttons__bigbuttonscontainer {
    margin-top: .5em;
  }
  .searchbuttons__bigbutton {
    font-size: 0.8em;  
  }
  

}



/*@media (max-width: 945px) {*/
@media (max-width: 59.0625em) {

  /**
   * inside content (other styles for pages)
   */
  
  .color-box__text {
    min-height: 9em;
  }

}




@media (max-width: 59.625em) {
  /**
   * global structure adaptation (page / skip links / header / main content / footer)
   */
  .searchbuttons__bigbutton {
    margin-bottom: .25em;
  }
  .searchbuttons__bigbutton__spacer {
    display: block;
    height: 1px;
    min-height: 1px;
    font-size: 1px;
  }
  .searchbuttons__bigbutton--what {
    margin-right: 0;
  }

}



/*
 *****************************************************************
 * 10 -- tablets - major breakpoint
 *****************************************************************
 */ 

/*@media (max-width: 835px) {*/
@media (max-width: 52.1875em) {
   
  /* display elements */
  .nodesktop { display: block; }

  /* hide unnecessary elements */
  .notablet { display: none; }
  
  /* linearization of floating content/table-layout */
  .autotablet {
    float: none;
    display: block;
    width: auto;
  }
  .below_tablets_aligncenter {
    text-align: center;
  }

  /**
   * global structure adaptation (page / skip links / header / main content / footer)
   */
   
  
  /**
   * inside content (other styles for pages)
   */
  .social-container {
    border-left: 0;
    padding-left: 0;
  }

  .grid-selection,
  .width-search {
    width: 32%;
    margin-bottom: 1em;
  }
  .grid-selection-gut.nodesktop {
    display: inline-block;
  }
  .width-search { 
    width: 23.5%; 
  }
  
  .blue_submit--contact {
    width: 100%;
  }  



}




/*
 *****************************************************************
 * 11 -- minor breakpoints between tablets and mobile
 *****************************************************************
 */


/*@media (max-width: 790px) {*/
@media (max-width: 49.375em) {
  
  /**
   * inside content (other styles for pages)
   */
  .color-box__text {
    min-height: 10em;
  }

  
}


/*
 *****************************************************************
 * 12 -- mobile - major breakpoint
 *****************************************************************
 */
 
 

/*@media (max-width: 750px) {*/
@media (max-width: 46.875em) {


	
  /* display elements */
  .notablet { display: block; }

  /* hide unnecessary elements */
  .nomobile,
  .news-carrousel__button-container,
  .images-carrousel__button-container,
  .navigation-filter,
  #part_images .js-carrousel__control__list,
  .tabs-home__p,
  .navigation__itemhover { 
    display: none; 
  }

  /* linearization of floating content/table-layout */
  .automobile {
    float: none;
    display: block;
    width: auto;
  }

  .onmobile-mt2 {
    margin-top: 2em;
  }
  .onmobile-center {
    margin-left: auto;
    margin-right: auto;
  }
  
  /**
   * global structure adaptation (page / skip links / header / main content / footer)
   */
  .searchbuttons,
  .logo {
    float: none;
  }
  .logo {
    display: block;
    margin: .5em 0 1.5em 0;
    height: auto;
    max-width: 100%;
  }
  .search_form {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .8em;
    background: #eee;
    z-index: 668;
  }
  .searchform__input {
    width: 95%;
  }

  
  .searchbuttons__bigbuttonscontainer {
    text-align: center;
  }
  .searchbuttons__bigbutton__spacer {
    display: none;
  }
  .searchbuttons__bigbutton {
    min-width: 0;
    margin-bottom: 0;
  }
  .searchbuttons__bigbutton--what {
    width: 70%;
  }
  .searchbuttons__bigbutton--donate {
    width: 30%;
    border-left: 0;
  }
  
  .main {
    margin-top: 1.5em;
  }
  
  .centered-content {
    padding-left: 0em;
    padding-right: 0em;
/*	margin:0 5px;*/
  }
  .centered-content--nav,
  .centered-content--logo {
    padding: 0;
  }
  .centered-content--nav {
    position: absolute;
    top: 12em;
    z-index: 800;
    left: 100%;
    right: 0;
  }
  
  .navigation-container[aria-hidden=false] {
    position: absolute;
    z-index: 666;
  }
  .navigation__item:nth-child(1),
  .navigation__item:nth-child(8) {
    width: auto;
  }
  .flexbox .navigation__link {
    height: auto;
  }
  .navigation__link {
    border-bottom: 1px solid #ebebeb;
  }
  .navigation__link,
  .navigation-filter__link {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .flexbox .navigation__link,
  .navigation__text,
  .flexbox .navigation__text {
    display: block;
  }
  .navigation__text {
    position: relative;
  }

  .navigation__text--after:after {
    position: absolute;
    content: ''; 
    right: .7em;
    width: 16px;
    height: 16px;
    background-image: url("/_layouts/15/OHCHR/OHCHR_Images/hover_subnav_blue.png"); 
    background-position: 98% 50%;
    background-repeat: no-repeat;    
  }
  .navigation__text.is-expanded-on-mobile:after {
    content: '';  
    position: absolute;
    right: .5em;
    width: 16px;
    height: 16px;
    background-image: url("/_layouts/15/OHCHR/OHCHR_Images/hover_blue_top.png");  
    background-position: 98% 50%;
    background-repeat: no-repeat;    
  }
  .navigation__text--home:after {
    background-image: none;
  }
  
  .navigation__subnav__link {
    text-align: center;
  }
  
  .navigation__subnav {
    width: auto;
    position: static;
    padding-top: .5em;
  }
  .nav-system [data-visually-hidden] {
    position: static;
    left: 0;
    right: 0;
  }
  
  /**
   * inside content (other styles for pages)
   */
  .tabs-home__contents {
    padding-left: 45px;
    padding-right: 45px;
  }
  
  .tabs-home__titlelink {
    max-width: 460px;
    min-height: 3em;
    padding-bottom: .5em;
    margin: 0 auto;
  }
  .tabs-home__imgstory {
    position: relative;
    text-align: center;
  }
  .button__nextstory,
  .button__prevstory {
    font-family: inherit;
    background: transparent;
    color: #106fa8;
    position: absolute;
    top: 50%;
    margin-top: -14px;
  }
  .button__prevstory {
    left: -45px;  
  }
  .button__nextstory {
    right: -45px;
  }
  
  .tabs-home__img,
  .tabs-home__p {
    max-width: 100%;
  }
  
  
  .color-box__text {
    min-height: 7em;
  }
  

  .grid-selection {
    width: 100%;
    margin-bottom: 0;
  }
  .grid-selection-gut,
  .grid-selection-gut.nodesktop {
    display: none;
  }
  .grid-selection__input,
  .grid-selection__input--select {
    margin-bottom: 1em;
  }
  .blue_button {
    background-position: 98% 50%;
  }
  
  .news__titlelink,
  .ressource__titlelink {
    margin-top: 1em;
    min-height: 0;
  }
  
}




/*
 *****************************************************************
 * 13 -- minor breakpoints for very small mobiles
 *****************************************************************
 */

/*@media (max-width: 605px) {*/
@media (max-width: 37.8125em) {

  .searchform__input {
    width: 94%;
  }
}

/*@media (max-width: 580px) {*/
@media (max-width: 36.25em) {

  .tabs-home__img {
    width: 100%;
  }
  
}


/*@media (max-width: 506px) {*/
@media (max-width: 31.625em) {

  /* display elements */
  .nomobile { display: block; }

  /* hide unnecessary elements */
  .nosmallmobile { 
    display: none; 
  }

  /* linearization of floating content/table-layout */
  .autosmallmobile {
    float: none;
    display: block;
    width: auto;
  }


  /**
   * global structure adaptation (page / skip links / header / main content / footer)
   */
  .logo {
    padding-right: 0;
    max-width: 65%;  
  }
  .searchform__input {
    width: 90%;
  }
  .bg-img-nav {
    background-size: cover;
  }
  .centered-content--nav {
    top: 10.5em;
  }


  .tabs-home {
    display: block;
    width: auto;
    padding-left: 0;
  }
}


/*@media (max-width: 450px) {*/
@media (max-width: 28.125em) {

  /**
   * global structure adaptation (page / skip links / header / main content / footer)
   */
  .displaysearchform {
    top: 30%;
  }
  .displaymenu {
    top: 23.5%;
  }
  .centered-content--nav {
    top: 10em;
  }

}


/*@media (max-width: 420px) {*/
@media (max-width: 26.25em) {

  /**
   * global structure adaptation (page / skip links / header / main content / footer)
   */

  .searchbuttons__bigbutton--what {
    background-image: url("/_layouts/15/OHCHR/OHCHR_Images/icone_oiseau16.png");
  }
  .searchbuttons__bigbutton--donate {
    background-image: url("/_layouts/15/OHCHR/OHCHR_Images/icone_coeur16.png");
  }
  
  .centered-content--nav {
    top: 9.5em;
  }
  


}


/*@media (max-width: 370px) {*/
@media (max-width: 23.125em) {

  .logo {
    max-width: 60%;  
  }
  .displaysearchform {
    right: 5.5em;
  }
  .centered-content--nav {
    top: 9em;
  }
  
}



/*@media (max-width: 350px) {*/
@media (max-width: 21.875em) {

  /**
   * global structure adaptation (page / skip links / header / main content / footer)
   */

  .logo {
    max-width: 55%;  
  }
  .centered-content--nav {
    top: 7em;
  }

}


/*@media (max-width: 315px) {*/
@media (max-width: 19.6875em) {

  .searchform__input {
    width: 88%;
  }
  .logo {
    max-width: 50%;  
  }

}


/*@media (max-width: 280px) {*/
@media (max-width: 17.5em) {

  /**
   * global structure adaptation (page / skip links / header / main content / footer)
   */
  .searchform__input {
    width: 80%;
  }
  .header__banner {
    display: none;
  }
  .searchbuttons__bigbutton {
    width: 100%;
    border: 1px solid #fff;
    border-bottom: 0;
  }
  .displaysearchform {
    top: 20%;
  }
  .displaymenu {
    top: 16%;
  }
  .centered-content--nav {
    top: 5.5em;
  }

}



/*
 *****************************************************************
 * 14 -- print
 *****************************************************************
 */

@media print {

  /*
   * add in this all elements which need to be hardly reseted for print
   */
  body,
  html,
  #page,
  .reset4print {
    background-color: #fff;
    background-image: none;
    border: 0;
    box-shadow: none;
    color: #000;
    float: none;
    height: auto;
    margin: 0;
    max-width: 100%;
    min-height: auto;
    padding: 0;
    position: static;
    width: auto;
  }

  body {
    padding: .5em;
  }

  /* hide unnecessary elements */
  .noprint {
    display: none;
  }
  
  /* display specific elements for print */
  .onprint {
    display: block;
  }
  
  /* avoid problematic page break */
  blockquote, ul, ol {
    page-break-inside: avoid;
  }
  h1, h2, h3, caption {
    page-break-after: avoid;
  }
  
  /* display links, except for those containing images */
  /* warning, remember checking the result & think to limitate
   * this option only for inside content links */
  /*a:after {
    content: " (" attr(href) ") ";
  }
  a:after img {
    content: "";
  }*/

  /* fix particular properties */


} /* end print */




/*
 *****************************************************************
 * 15 -- fix viewport
 *****************************************************************
 */

/* fix viewport for Win8 (snap mode) and preparing day
 * when viewport will be supported by all render engines
 *
 * Examples : http://dev.opera.com/articles/view/an-introduction-to-meta-viewport-and-viewport/
 * width=device-width => width: device-width;
 * height=device-height => height: device-height;
 * initial-scale=2 => zoom: 2;
 * maximum-scale=2 => max-zoom: 2;
 * minimum-scale=0.5 => min-zoom: 0.5;
 * user-scalable=no => user-zoom: fixed;
 *
 * for Win8 snap mode => only width: device-width; works for the moment
 */

@-webkit-viewport {
  width: device-width;
}
@-moz-viewport {
  width: device-width;
}
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}




/*
 *****************************************************************
 * 16 -- state classes
 *****************************************************************
 */

/*
 * State classes = put here to take priority on all classes
 *
 */


.is-hidden,
.tabs__tabcontent[aria-hidden=true],
.navigation-container[aria-hidden=true],
.to_expand[aria-hidden=true],
.search_form[aria-hidden=true] {
  display: none;
}


/* burger */
/*.displaymenu[aria-expanded=true] {
  border-bottom: 0;
}*/
.centered-content--nav[data-shown=true] {
  left: 0;
}
.navigation[aria-hidden=false] {
  display: block;
}
.centered-content--nav[data-shown=true] #navigation[aria-hidden=false] {
  box-shadow:  3px 3px 3px 0 #585858;
}

/* carrousel */
.news-carrousel__control__list__link:focus,
.news-carrousel__control__list__link:hover,
.news-carrousel__control__list__link:active,
.news-carrousel__control__list__link[aria-selected=true],
.images-carrousel__control__list__link:focus,
.images-carrousel__control__list__link:hover,
.images-carrousel__control__list__link:active,
.images-carrousel__control__list__link[aria-selected=true],
.images_mobile-carrousel__control__list__link:focus,
.images_mobile-carrousel__control__list__link:hover,
.images_mobile-carrousel__control__list__link:active,
.images_mobile-carrousel__control__list__link[aria-selected=true] {
  background: #666;
}



.modal-overlay {
  background: #000;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 667;
}





/*
 *****************************************************************
 * 17 -- Bonus: Fixes IE
 *****************************************************************
 */

/*
 * based on conditional classes on HTML element
 *
 * to be used only if there are not to many fixes &
 * small impact on webperfs for other browsers
 *
 */

/* less than IE 9 */
.oldies .nooldies {
  display: none;
}

.ie6 .noie6 {
  display: none;
}
.ie7 .noie7 {
  display: none;
}
.ie8 .noie8 {
  display: none;
}
.ie9 .noie9 {
  display: none;
}

.ie7 .col,
.ie7 .col-noalign,
.ie6 .col,
.ie6 .col-noalign {
  float: left;
}
.ie7 .row,
.ie6 .row {
  overflow: auto;
}

.ie7 .grid,
.ie6 .grid {
  zoom: 1; /* HasLayout */
  display: inline;
}

/* RTL */
[dir="rtl"] .ie7 .col,
[dir="rtl"] .ie7 .col-noalign,
[dir="rtl"] .ie6 .col,
[dir="rtl"] .ie6 .col-noalign {
  float: right;
}
.ctl00_MSO_ContentDiv{display:none}
footer{display:none;}