@charset "utf-8";
@import url(//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
/*
 * Master web éditorial
 *
 */
/* à intégrer au HTML : <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=PT+Sans:400,700|Open+Sans+Condensed:300,700" /> */
/*!
* www.KNACSS.com V3.1.0 (2014-10-20) @author: Raphael Goetter, Alsacreations
* Licence WTFPL http://www.wtfpl.net/
*/
/* ----------------------------- */
/* == soft reset                 */
/* ----------------------------- */
/* switching box model for all elements */
* {
  box-sizing: border-box;
}
/* soft reset */
html,
body {
  margin: 0;
  padding: 0;
}
ul,
ol {
  padding-left: 2em;
}
ul.unstyled {
  list-style: none;
}
img {
  height: auto;
  vertical-align: middle;
  border: 0;
}
blockquote,
figure {
  margin-left: 0;
  margin-right: 0;
}
audio,
canvas,
video {
  display: inline-block;
}
svg:not(:root) {
  overflow: hidden;
}
/* ----------------------------- */
/* == typography                 */
/* ----------------------------- */
html {
  /* set base font-size to equiv "10px", which is adapted to rem unit */
  font-size: 62.5%;
  /* IE9-IE11 math fixing. See http://bit.ly/1g4X0bX */
  /* thanks to @guardian, @victorbritopro and @eQRoeil */
  font-size: calc(0.625em);
  /* disallow text zooming on orientation change (non standard property) */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  /* set body font-size in em (1.4em equiv "14px") */
  font-size: 1.8285714em;
  background-color: #ffffff;
  color: #222222;
  font-family: FontAwesome, 'PT Sans', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
  line-height: 1.5;
}
a {
  color: #9b8977;
}
a:hover,
a:focus,
a:active {
  color: #a2122a;
}
/* font-sizing for content */
p,
.p-like,
ul,
ol,
dl,
blockquote,
pre,
td,
th,
label,
textarea,
caption,
details,
figure {
  margin-top: 0.75em;
  margin-bottom: 0;
  line-height: 1.5;
}
h1,
.h1-like {
  font-size: 3.2rem;
  font-family: FontAwesome, 'Open Sans Condensed', Helvetica, Arial, sans-serif;
}
h2,
.h2-like {
  font-size: 2.8rem;
  font-family: FontAwesome, 'Open Sans Condensed', Helvetica, Arial, sans-serif;
}
h3,
.h3-like {
  font-size: 2.4rem;
}
h4,
.h4-like {
  font-size: 2rem;
}
h5,
.h5-like {
  font-size: 1.8rem;
}
h6,
.h6-like {
  font-size: 1.6rem;
}
/* alternate font-sizing */
.smaller {
  font-size: 0.78em;
}
.small {
  font-size: 0.89em;
}
.big {
  font-size: 1.11em;
}
.bigger {
  font-size: 1.22em;
}
.biggest {
  font-size: 1.33em;
}
code,
pre,
samp,
kbd {
  /* IE fix */
  white-space: pre-line;
  white-space: pre-wrap;
  font-family: Consolas, 'DejaVu Sans Mono', Courier, monospace;
  line-height: normal;
}
em,
.italic,
address,
cite,
dfn,
i,
var {
  font-style: italic;
}
strong,
.bold {
  font-weight: bold;
}
small,
sub,
sup {
  font-size: smaller;
}
/* ----------------------------- */
/* == hiding content             */
/* ----------------------------- */
/* hidden but not for an assistive technology like a screen reader, Yahoo! method */
.visually-hidden {
  position: absolute !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}
body > script {
  display: none !important;
}
@media (max-width: 768px) {
  .no-small-screen {
    display: none;
  }
}
@media (min-width: 1280px) {
  .no-large-screen {
    display: none;
  }
}
/* ----------------------------- */
/* == browsers consistency       */
/* ----------------------------- */
/* avoid top margins on first content element */
p:first-child,
.p-like:first-child,
ul:first-child,
ol:first-child,
dl:first-child,
blockquote:first-child,
pre:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}
/* avoid margins on nested elements */
li p,
li .p-like,
li ul,
li ol {
  margin-top: 0;
  margin-bottom: 0;
}
/* max values */
img,
table,
td,
blockquote,
code,
pre,
textarea,
input,
video {
  max-width: 100%;
}
/* margin-bottom on tables */
table {
  margin-bottom: 20px;
}
/* ----------------------------- */
/* ==layout and modules          */
/* ----------------------------- */
/* float layout */
/* module, gains superpower "BFC" Block Formating Context */
.mod {
  overflow: hidden;
}
/* blocks that needs to be placed under floats */
.clear,
.line,
.row {
  clear: both;
}
/* blocks that must contain floats */
.clearfix:after,
.line:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
/* table layout */
.row {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.row > *,
.col {
  display: table-cell;
  vertical-align: top;
}
/* inline-block */
.inbl {
  display: inline-block;
  vertical-align: top;
}
/* alignments (blocks and inline) */
/* ------------------------------ */
/* left (or starting) elements */
.left,
.start {
  float: left;
}
img.left,
img.start {
  margin-right: 10px;
}
/* right (or ending) elements */
.right,
.end {
  float: right;
}
img.right,
img.end {
  margin-left: 10px;
}
img.left,
img.right,
img.start,
img.end {
  margin-bottom: 5px;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.txtleft {
  text-align: left;
}
.txtright {
  text-align: right;
}
.txtcenter {
  text-align: center;
}
/* ---------------------------------- */
/* ==visual helpers                   */
/* .. use them with parcimony !       */
/* ---------------------------------- */
/* blocks widths (percentage and pixels) */
.w10 {
  width: 10%;
}
.w20 {
  width: 20%;
}
.w25 {
  width: 25%;
}
.w30 {
  width: 30%;
}
.w33 {
  width: 33.3333%;
}
.w40 {
  width: 40%;
}
.w50 {
  width: 50%;
}
.w60 {
  width: 60%;
}
.w66 {
  width: 66.6666%;
}
.w70 {
  width: 70%;
}
.w75 {
  width: 75%;
}
.w80 {
  width: 80%;
}
.w90 {
  width: 90%;
}
.w100 {
  width: 100%;
}
.w50p {
  width: 50px;
}
.w100p {
  width: 100px;
}
.w150p {
  width: 150px;
}
.w200p {
  width: 200px;
}
.w300p {
  width: 300px;
}
.w400p {
  width: 400px;
}
.w500p {
  width: 500px;
}
.w600p {
  width: 600px;
}
.w700p {
  width: 700px;
}
.w800p {
  width: 800px;
}
.w960p {
  width: 960px;
}
.mw960p {
  max-width: 960px;
}
.w1140p {
  width: 1140px;
}
.mw1140p {
  max-width: 1140px;
}
.wauto {
  width: auto;
}
/* spacing helpers
p,m = padding,margin
a,t,r,b,l = all,top,right,bottom,left
s,m,l,n = small, medium, large, none
*/
.man {
  margin: 0;
}
.pan {
  padding: 0;
}
.mas {
  margin: 10px;
}
.mam {
  margin: 20px;
}
.mal {
  margin: 40px;
}
.pas {
  padding: 10px;
}
.pam {
  padding: 20px;
}
.pal {
  padding: 40px;
}
.mtn {
  margin-top: 0;
}
.mts {
  margin-top: 10px;
}
.mtm {
  margin-top: 20px;
}
.mtl {
  margin-top: 40px;
}
.mrn {
  margin-right: 0;
}
.mrs {
  margin-right: 10px;
}
.mrm {
  margin-right: 20px;
}
.mrl {
  margin-right: 40px;
}
.mbn {
  margin-bottom: 0;
}
.mbs {
  margin-bottom: 10px;
}
.mbm {
  margin-bottom: 20px;
}
.mbl {
  margin-bottom: 40px;
}
.mln {
  margin-left: 0;
}
.mls {
  margin-left: 10px;
}
.mlm {
  margin-left: 20px;
}
.mll {
  margin-left: 40px;
}
.ptn {
  padding-top: 0;
}
.pts {
  padding-top: 10px;
}
.ptm {
  padding-top: 20px;
}
.ptl {
  padding-top: 40px;
}
.prn {
  padding-right: 0;
}
.prs {
  padding-right: 10px;
}
.prm {
  padding-right: 20px;
}
.prl {
  padding-right: 40px;
}
.pbn {
  padding-bottom: 0;
}
.pbs {
  padding-bottom: 10px;
}
.pbm {
  padding-bottom: 20px;
}
.pbl {
  padding-bottom: 40px;
}
.pln {
  padding-left: 0;
}
.pls {
  padding-left: 10px;
}
.plm {
  padding-left: 20px;
}
.pll {
  padding-left: 40px;
}
/* ---------------------------------- */
/* ==classic grids                    */
/* .. use it when gutter size matters */
/* ---------------------------------- */
/* grids inspired from SUIT https://github.com/suitcss/suit */
/* overall container of grids */
.grid {
  overflow: hidden;
}
/* global styles for direct child ex. .grid3 */
.grid > * {
  display: block;
  padding: 0;
  /* gutter value */
  margin-left: -20px;
  text-align: left;
}
/* global styles for each "cell" */
.grid > * > * {
  display: inline-block;
  /* gutter value */
  padding-left: 20px;
  margin-left: 0;
  vertical-align: top;
}
/* whitespace fixing for modern browsers including IE9+ */
:root .grid {
  font-size: 0;
  /* fallback for IE9+ */
  text-justify: distribute-all-lines;
}
:root .grid > * > * {
  /* fallback for Opera Mini */
  font-size: 18.285714px;
  font-size: 1.8285714rem;
}
/* Opera hack */
.opera:-o-prefocus,
.grid > * {
  word-spacing: -0.43em;
}
.grid2 > * {
  width: 50%;
}
.grid3 > * {
  width: 33.333%;
}
.grid4 > * {
  width: 25%;
}
.grid5 > * {
  width: 20%;
}
.grid6 > * {
  width: 16.667%;
}
.grid8 > * {
  width: 12.5%;
}
.grid10 > * {
  width: 10%;
}
.grid12 > * {
  width: 8.333%;
}
/* unequal grids (1-2, 2-1, 1-3 and 3-1) for 2 blocks */
.grid2-1 > *:first-child,
.grid1-2 > * + * {
  width: 66.666%;
}
.grid1-2 > *:first-child,
.grid2-1 > * + * {
  width: 33.333%;
}
.grid1-3 > *:first-child,
.grid3-1 > * + * {
  width: 25%;
}
.grid3-1 > *:first-child,
.grid1-3 > * + * {
  width: 75%;
}
/* ---------------------------------- */
/* ==autogrids                        */
/* .. to automatically justify blocs  */
/* ---------------------------------- */
/* Demo : http://codepen.io/raphaelgoetter/pen/Kqehf */
/* container of autogrids */
[class*="autogrid"] {
  text-align: justify;
}
[class*="autogrid"]:after {
  content: "";
  display: inline-block;
  width: 100%;
}
[class*="autogrid"] > * {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
/* whitespace fixing for modern browsers including IE9+ */
:root [class*="autogrid"] {
  font-size: 0;
  /* fallback for IE9+ */
  text-justify: distribute-all-lines;
}
:root [class*="autogrid"] > * {
  /* fallback for Opera Mini */
  font-size: 18.285714px;
  font-size: 1.8285714rem;
}
/* Opera hack */
[class*="autogrid"]:-o-prefocus {
  word-spacing: -0.43em;
}
.autogrid2 > * {
  width: 49%;
}
.autogrid3 > * {
  width: 32%;
}
.autogrid4 > * {
  width: 23.6%;
}
.autogrid5 > * {
  width: 19%;
}
.autogrid6 > * {
  width: 15%;
}
.autogrid8 > * {
  width: 10.8%;
}
.autogrid10 > * {
  width: 9%;
}
.autogrid12 > * {
  width: 6.4%;
}
/* quick print reset */
@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body {
    width: auto !important;
    margin: auto !important;
    font-family: serif;
    font-size: 12pt;
    background-color: #fff !important;
    color: #333 !important;
  }
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  blockquote,
  ul,
  ol {
    color: #000 !important;
    margin: auto !important;
  }
  .print {
    display: block;
  }
  .no-print {
    display: none;
  }
  img {
    filter: grayscale(100%);
  }
  /* no orphans, no widows */
  p,
  blockquote {
    orphans: 3;
    widows: 3;
  }
  /* no breaks inside these elements */
  blockquote,
  ul,
  ol {
    page-break-inside: avoid;
  }
  /* page break before main headers */
  h1 {
    page-break-before: always;
  }
  /* no breaks after these elements */
  h1,
  h2,
  h3,
  caption {
    page-break-after: avoid;
  }
  a {
    color: #000 !important;
    text-decoration: underline !important;
  }
  /* displaying URLs */
  a[href]:after {
    content: " (" attr(href) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
}
html h1 {
  page-break-before: auto;
}
/* ----------------------------- */
/* ==IE6, IE7, IE8 support       */
/* ----------------------------- */
/* Active box-sizing for IE6/IE7 */
/* @source https://github.com/Schepp/box-sizing-polyfill */
.ie67 * {
  behavior: url(/js/boxsizing.htc);
}
.ie678 h1,
.ie678 .h1-like {
  font-size: 1.75em;
}
.ie678 h2,
.ie678 .h2-like {
  font-size: 1.53em;
}
.ie678 h3,
.ie678 .h3-like {
  font-size: 1.31em;
}
.ie678 h4,
.ie678 .h4-like {
  font-size: 1.09em;
}
.ie678 h5,
.ie678 .h5-like {
  font-size: 0.98em;
}
.ie678 h6,
.ie678 .h6-like {
  font-size: 0.88em;
}
/* @bugfix for IE8 */
.ie678 img {
  width: auto;
}
.ie678 .gm-style img {
  height: 100%;
}
/* hasLayout for IE6/IE7 */
.clearfix,
.line,
.mod,
.row,
.col {
  *zoom: 1;
}
/*! inline-block and table-cell for IE6/IE7 */
/*! warning: .col needs width on IE6/IE7 */
.btn,
.col,
.inbl {
  *display: inline;
  *zoom: 1;
}
/* old syntax of clip for IE6/IE7 */
.visually-hidden {
  *clip: rect(1px 1px 1px 1px);
}
/* IE8 grid hack */
.ie8 .grid > *,
.ie8 [class*="autogrid"] > * {
  letter-spacing: -0.31em;
  text-rendering: optimizespeed;
}
.ie8 .grid > * > *,
.ie8 [class*="autogrid"] > * > * {
  letter-spacing: normal;
  word-spacing: normal;
  text-rendering: auto;
}
/* IE7 grid hack */
.grid > * > *,
[class*="autogrid"] > * > * {
  *display: inline;
  *zoom: 1;
}
/* forms */
/* Corrects excess space around these inputs in IE8/9 */
.ie678 input[type="checkbox"],
.ie678 input[type="radio"] {
  padding: 0;
}
/* Removes default vertical scrollbar on empty textarea in IE6/7/8/9 */
.ie678 textarea {
  overflow: auto;
}
/* ----------------------------- */
/* ==Mise en page générale       */
/* ----------------------------- */
@media (min-width: 940px) {
  .wrapper {
    width: 960px;
    margin: 0 auto;
  }
}
header::before {
  display: block;
  height: 0.5em;
  margin-bottom: 1em;
  content: ' ';
  background-color: #c8bfb5;
}
header .logo,
h1 {
  text-align: center;
}
header .logo img {
  max-width: 12em;
}
header.mini:before {
  margin-bottom: 0.25em;
}
header.mini .logo {
  float: right;
}
header.mini .logo img {
  height: 3em;
}
header.mini:after,
.clearfix:after {
  content: '';
  clear: both;
  display: table;
  border-collapse: collapse;
}
h1 select {
  font-size: 3.2rem;
  font-family: FontAwesome, 'Open Sans Condensed', Helvetica, Arial, sans-serif;
}
h2 {
  display: table;
  border-spacing: 12pt;
  empty-cells: show;
  margin: 6pt -12pt 0 -12pt;
  line-height: 12pt;
  white-space: nowrap;
  text-align: center;
}
h2::after {
  content: '';
  display: table-cell;
  width: 100%;
  background: url('hachures-brun-20px.png');
}
footer {
  margin-top: 20px;
  text-align: center;
  background-color: #c8bfb5;
}
/* ----------------------------- */
/* ==Mise en forme générale      */
/* ----------------------------- */
.icon {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
}
input,
textarea {
  font-size: 1em;
  background-color: #ffffff;
  color: #222222;
  font-family: FontAwesome, 'PT Sans', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
  line-height: 1.22474487;
  padding-left: 5px;
  padding-right: 5px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-weight: bold;
}
.nom {
  font-variant: small-caps;
}
p {
  margin: 8px 0 0;
}
ul {
  margin: 8px 0;
  padding: 0 0 0 32px;
}
a:link,
a:visited {
  text-decoration: none;
}
a:link:hover,
a:visited:hover {
  text-decoration: underline;
}
a.button,
input.button,
button {
  display: inline-block;
  border: none;
  margin: 0;
  font-family: FontAwesome, 'Open Sans Condensed', sans-serif;
  font-weight: bold;
  font-size: 2.4rem;
  font-variant: small-caps;
  text-transform: lowercase;
  color: #FFF;
  background-color: #f9a11b;
  box-shadow: none;
  opacity: 1;
  padding: 5px 10px;
  transition: all .5s;
}
a.button:hover,
input.button:hover,
button:hover {
  opacity: .8;
}
.condensé,
.condensé select {
  font-family: FontAwesome, 'Open Sans Condensed', Helvetica, Arial, sans-serif;
}
.condensé button {
  font-weight: normal;
}
.nobr {
  white-space: nowrap;
}
code,
pre,
.code {
  font-family: Consolas, 'DejaVu Sans Mono', Courier, monospace;
  font-size: 92%;
  font-style: normal;
  font-weight: normal;
}
/* ----------------------------- */
/* ==Aides visuelles             */
/* ----------------------------- */
.attention {
  background-color: #fcfcce;
  border: 1px solid #d6d65b;
}
.attention::before {
  color: #8e8e3d;
  content: '\f071';
  margin: 0 0.5ex;
}
.erreur {
  background-color: #fccece;
  border: 1px solid #d65b5b;
}
.erreur::before {
  color: #8e3d3d;
  content: '\f06a';
  margin: 0 0.5ex;
}
.info {
  background-color: #ceedfc;
  border: 1px solid #5badd6;
}
.info::before {
  color: #3d738e;
  content: '\f05a';
  margin: 0 0.5ex;
}
.confirm {
  background-color: #e5fcce;
  border: 1px solid #98d65b;
}
.confirm::before {
  color: #658e3d;
  content: '\f058';
  margin: 0 0.5ex;
}
.ok {
  background-color: #e5fcce;
}
.icon.ok {
  color: #658e3d;
}
.alerte {
  position: relative;
}
.alerte::after {
  color: #8e3d3d;
  content: '\f071';
  display: block;
  position: absolute;
  top: -1ex;
  right: -1ex;
  z-index: 100;
}
ins {
  color: #090;
}
.estomper {
  color: #999;
}
.à-voir {
  color: #cc0000;
}
.à-confirmer {
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(137, 137, 137, 0.5) 5px, rgba(137, 137, 137, 0.5) 10px);
}
@media print {
  body {
    font-family: FontAwesome, 'PT Sans', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
  }
  button,
  nav {
    display: none;
  }
  input[type="text"],
  input[type="number"],
  textarea,
  select {
    border: none;
    display: inline;
    font-size: 10pt;
    background-color: transparent;
  }
  h1 select {
    background: none;
    border: none;
  }
  header::before {
    display: none;
  }
  [role="header"] h1,
  header h1 {
    page-break-before: avoid;
  }
}
/* ----------------------------- */
/* ==Icones                      */
/* ----------------------------- */
.save::before,
.add::before,
.delete::before,
.search::before,
.bolt::before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  margin-right: 5px;
}
.save::before {
  content: '\f0c7';
  color: #060;
}
.add::before {
  content: '\f055';
  color: #060;
}
.delete::before {
  content: '\f056';
  color: #900;
}
.search::before {
  content: '\f002';
}
.bolt::before {
  content: '\f0e7';
}
/* ----------------------------- */
/* ==Applications                */
/* ----------------------------- */
ul.nav {
  list-style: none;
  padding: 0 0 0 5px;
  margin: 0;
}
ul.nav > li::before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  margin-right: 5px;
  color: #9b8977;
  speak: none;
  content: "\f054";
}
.button.Google::before,
.profil.Google::before,
.button.GoogleCalendar::before,
.profil.GoogleCalendar::before,
.button.LinkedIn::before,
.profil.LinkedIn::before,
.button.Facebook::before,
.profil.Facebook::before {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2.4rem;
  speak: none;
  color: #FFFFFF;
  padding: 5px;
  margin: 0 10px 0 5px;
  text-align: center;
}
.button.Google::before,
.profil.Google::before {
  background-color: #5976F1;
  content: '\f0d5';
}
.button.GoogleCalendar::before,
.profil.GoogleCalendar::before {
  background-color: #5976F1;
  content: '\f073';
}
.button.LinkedIn::before,
.profil.LinkedIn::before {
  background-color: #1E87BD;
  content: '\f0e1';
}
.button.Facebook::before,
.profil.Facebook::before {
  background-color: #3B5A94;
  content: '\f09a';
}
.compte,
.profil {
  margin: 10px;
}
.profil {
  display: inline-block;
  border: 1px solid #9b8977;
  padding: 4px;
}
.profil > *,
.profil::before {
  vertical-align: middle;
}
.profil .avatar {
  max-height: 42px;
  max-width: 42px;
  margin-right: 10px;
}
.role {
  color: #898989;
}
.dataTable thead,
.dataTable tbody,
.dataTable tr,
.dataTable td,
.dataTable th {
  box-sizing: content-box;
}
/* ----------------------------- */
/* ==Source                      */
/* ----------------------------- */
.source {
  margin: 0;
  padding: 0;
}
.source code a:link,
.source code a:visited {
  text-decoration: underline;
  color: #DD0000;
}
/* ----------------------------- */
/* ==Candidatures                */
/* ----------------------------- */
.candidatures .statistiques {
  border-collapse: collapse;
  border-spacing: 0;
}
.candidatures .statistiques tbody td,
.candidatures .statistiques tbody th {
  border-top: 1px solid #c8bfb5;
}
.candidatures .statistiques .number {
  text-align: right;
}
.candidatures .statistiques td:nth-child(n+2),
.candidatures .statistiques th:nth-child(n+2) {
  border-left: 1px solid #c8bfb5;
}
.candidatures .tranche {
  color: #a2122a;
}
@media print {
  .candidatures body {
    font-size: 0.86em;
  }
  .candidatures .dataTables_length,
  .candidatures .dataTables_filter,
  .candidatures .dataTables_info,
  .candidatures .dataTables_paginate {
    display: none;
  }
}
/* ----------------------------- */
/* ==Calendrier                  */
/* ----------------------------- */
/* mise en forme */
#vds,
#gcal {
  display: inline-block;
  border: 1px solid #000;
  margin-right: 5px;
  padding: 2px;
}
#vds span,
#gcal span {
  font-size: smaller;
}
td.coche {
  text-align: center;
}
td.nombre,
.nombre input[type=text] {
  text-align: right;
}
/* navigation */
a.bouton,
button.bouton {
  display: inline-block;
  font-weight: bold;
  text-shadow: 0 1px 1px #7D8544;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #B4CA20;
  border-radius: 3px;
  border: none;
  box-shadow: 3px #BCD41A inset;
  padding: 2px 4px;
  line-height: 175%;
}
a.bouton:focus,
a.bouton:hover {
  background-color: #72C4CF;
  box-shadow: 3px #92D1DA inset;
  text-shadow: 0 1px 1px #76B1B9;
}
/* planning annuel */
.planning #vueMois {
  list-style: none;
  display: inline-block;
}
.planning #vueMois li {
  display: inline-block;
  width: 1em;
  height: 1.5em;
  margin-left: 0.1em;
  text-align: center;
  font-weight: normal;
  border: 1px solid #9b8977;
  color: #000000;
  background-color: #f9a11b;
}
.planning #vueMois li.inactif {
  color: #9b8977;
  background-color: #c8bfb5;
}
.planning .annee {
  font-size: 20px;
  font-size: 1.1rem;
  border-collapse: collapse;
}
.planning .annee th,
.planning .annee td {
  border-style: solid;
  border-width: 1px;
}
.planning .annee td {
  border-color: #9b8977;
}
.planning .annee td:nth-of-type(4n  ) {
  width: 8ex;
  text-align: center;
  border-right-color: #000000;
}
.planning .annee td:nth-of-type(4n+1) {
  width: 2ex;
  text-align: right;
  border-left-color: #000000;
}
.planning .annee td:nth-of-type(4n+2) {
  width: 1ex;
  text-align: center;
}
.planning .annee td:nth-of-type(4n+3) {
  width: 8ex;
  text-align: center;
}
.planning .annee td.maintenant {
  border-bottom-color: #a2122a;
}
.planning .annee td.maintenant.date {
  color: #a2122a;
}
.planning .annee .vac,
.planning .annee .vac:first-child {
  border-color: transparent;
}
.planning .annee .cours {
  display: inline-block;
}
.planning .annee .cours .à-confirmer {
  display: block;
}
.planning .annee .f1 .cours {
  width: 100%;
}
.planning .annee .f2 .cours {
  width: 50%;
}
.planning .annee .f3 .cours {
  width: 33%;
}
.planning .annee .f4 .cours {
  width: 25%;
}
.planning .annee col.inactif {
  visibility: collapse;
}
.planning #legende {
  margin-top: 1ex;
  font-size: 16px;
  font-size: 0.9rem;
}
.planning #legende .ue {
  border: solid 1px #000;
  display: inline-block;
  margin: 0 2px 2px 2px;
  padding: 1px;
}
.planning #legende .ue .à-confirmer {
  display: block;
}
.planning #legende .j6,
.planning .annee .j6,
.planning .annee .j7 {
  background-color: #c8bfb5;
}
@media print {
  @page {
    size: A4 landscape;
  }
  .planning .annee th,
  .planning .annee td {
    border-width: thin;
  }
}
/* détails des cours */
table.dataTable.recapitulatif {
  /* surclasse table.dataTable */
}
table.dataTable.recapitulatif th,
table.dataTable.recapitulatif td {
  padding: 2px;
}
table.dataTable.recapitulatif tr.odd,
table.dataTable.recapitulatif tr.even {
  background-color: transparent;
}
.recapitulatif th,
.recapitulatif td {
  border-right: #222222 solid 1px;
  font-size: 10px;
}
.recapitulatif th,
.recapitulatif .cours td,
.recapitulatif .ue td {
  border-top: #222222 solid 1px;
}
.recapitulatif tr > *:first-child {
  border-left: #222222 solid 1px;
}
.recapitulatif,
.recapitulatif .ueY {
  border-bottom: #222222 solid 1px;
}
.recapitulatif th .discret {
  display: none;
}
.recapitulatif tr:hover th .discret {
  display: inline;
}
.recapitulatif tr:hover.detailCours {
  color: #333;
}
.recapitulatif td {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}
.recapitulatif tr:hover {
  background-color: #f9a11b;
}
.recapitulatif tr[data-etat="x"] {
  background-color: #9F9;
}
.recapitulatif tr[data-etat="x"]:hover {
  background-color: #3F3;
}
.recapitulatif tr[data-etat="p"] {
  background-image: repeating-linear-gradient(-45deg, #ffff99, #ffff99 6px, #99ff99 6px, #99ff99 12px);
}
.recapitulatif tr[data-etat="p"]:hover {
  background-image: repeating-linear-gradient(-45deg, #ffff33, #ffff33 6px, #33ff33 6px, #33ff33 12px);
}
.recapitulatif tr[data-etat="c"] {
  background-color: #FF9;
}
.recapitulatif tr[data-etat="c"]:hover {
  background-color: #FF3;
}
.recapitulatif tr[data-etat="!"] {
  background-color: #F99;
}
.recapitulatif tr[data-etat="!"]:hover {
  background-color: #F33;
}
.recapitulatif tr.ue {
  background-color: #999;
}
.recapitulatif tr.ue:hover {
  background-color: #333;
  color: #FFF;
}
.recapitulatif .ue th {
  text-align: left;
}
.recapitulatif .detailCours {
  color: #222222;
}
.recapitulatif input[type=text] {
  border: none;
  padding: 0;
  font-size: 10px;
  background-color: transparent;
}
.recapitulatif input[type=text]:focus {
  border: #a2122a solid 2px;
}
#commentaire.editionEnCours,
.inlineEdit {
  background: #000;
  color: #FFF;
  border-color: #f9a11b;
}
input.inlineEdit {
  margin: 0;
  padding: 1px;
  border: 0;
  font-size: 10px;
}
.recapitulatif.simple .ue.vide,
.recapitulatif.simple .admin,
.recapitulatif.simple .edition,
.recapitulatif.simple tr > :nth-child(n+5),
.recapitulatif.simple .lieu[data-lieu=""] {
  display: none;
}
.recapitulatif .lieu:hover {
  text-decoration: underline;
  cursor: pointer;
}
/* listing */
.listing {
  font-size: 92%;
}
.listing td,
.listing th {
  border-bottom: 1px dashed #999;
  padding: 0 0.5ex;
}
.listing th {
  text-align: left;
  font-size: 141%;
  padding: 2ex 0 1ex;
}
.listing tr > :first-child {
  display: none;
}
.listing tr > td:nth-child(2) {
  text-align: right;
  white-space: nowrap;
}
.listing tr > td:nth-child(3) {
  white-space: nowrap;
}
.listing .lieu:hover {
  text-decoration: underline;
  cursor: pointer;
}
.listing em {
  font-style: normal;
  font-weight: bolder;
  color: #990000;
}
/* fiche de service SHA */
.masque {
  display: none;
}
.fiche-de-service-SHA p {
  margin: 5px 0;
}
.fiche-de-service-SHA .header {
  clear: both;
}
.fiche-de-service-SHA .header p {
  font-weight: bold;
}
.fiche-de-service-SHA h1 {
  text-align: center;
  page-break-before: avoid;
}
.fiche-de-service-SHA .bandeau .intervenant {
  float: left;
}
.fiche-de-service-SHA .bandeau aside p:first-child {
  font-style: italic;
}
.fiche-de-service-SHA .bandeau aside p:first-child em {
  color: #FF0000;
  font-weight: bold;
}
.fiche-de-service-SHA aside {
  float: right;
  width: 35%;
  margin: 5px;
  padding: 5px;
  border: 1px solid #000;
  box-shadow: 5px 5px 1px rgba(0, 0, 0, 0.3);
}
.fiche-de-service-SHA section {
  font-size: 92%;
}
.fiche-de-service-SHA label {
  font-family: sans-serif;
  font-weight: bold;
}
.fiche-de-service-SHA output,
.fiche-de-service-SHA input,
.fiche-de-service-SHA textarea {
  font-family: serif;
  font-style: italic;
}
.fiche-de-service-SHA .intervenant th,
.fiche-de-service-SHA .intervenant td {
  border-bottom: 1px solid #EEEEEE;
}
.fiche-de-service-SHA .intervenant th {
  text-align: left;
  vertical-align: top;
}
.fiche-de-service-SHA .service {
  border-spacing: 0;
  border-collapse: collapse;
  margin: 1em 0;
}
.fiche-de-service-SHA .service .nombre input[type="text"],
.fiche-de-service-SHA .service textarea {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.fiche-de-service-SHA input[type="checkbox"] {
  display: none;
}
.fiche-de-service-SHA input[type="checkbox"] + label {
  font-weight: normal;
  font-size: x-large;
}
.fiche-de-service-SHA input[type="checkbox"] + label::before {
  content: '☐';
}
.fiche-de-service-SHA input[type="checkbox"]:checked + label::before {
  content: '☒';
}
.fiche-de-service-SHA .footer table {
  width: 100%;
}
.fiche-de-service-SHA .footer td {
  width: 33%;
  height: 3cm;
  vertical-align: top;
}
.fiche-de-service-SHA .service th,
.fiche-de-service-SHA .service td,
.fiche-de-service-SHA .footer td {
  border: 1px solid #000000;
  padding: 5px;
}
@media screen {
  .fiche-de-service-SHA .service tbody tr:nth-of-type(2n+1) {
    background-color: #EEEEEE;
  }
}
/* widget */
.widget-mwecal {
  display: inline-block;
  vertical-align: top;
  border: 1px solid #9B8977;
  box-sizing: border-box;
  width: 46%;
  margin: 1ex 0 1ex 2%;
}
.widget-mwecal:first-child {
  margin-right: 2%;
}
.widget-mwecal dt {
  font-weight: bold;
}
.widget-mwecal dd {
  margin: 0;
}
.widget-mwecal ul {
  list-style: none;
  padding: 0;
}
.widget-mwecal .heure {
  color: #9b8977;
}
.widget-mwecal .enseignants {
  display: none;
}
.widget-mwecal .lieu {
  font-size: 84%;
  color: #898989;
}
/*# sourceMappingURL=mwe.css.map */