@font-face {
  font-family:'Exo-Medium';
  src:url('../fonts/Exo-Medium.ttf');
  font-weight:normal;
  font-style:normal;
}
@font-face {
  font-family:'Rajdhani-Medium';
  src:url('../fonts/Rajdhani-Medium.ttf');
  font-weight:normal;
  font-style:normal;
}
@font-face {
  font-family:'Rajdhani-Bold';
  src:url('../fonts/Rajdhani-Bold.ttf');
  font-weight:normal;
  font-style:normal;
}
/* micro reset */
* {
  box-sizing: border-box;
}
html, body, ul {
  padding: 0;
  margin: 0;
}
body {
  text-align: center;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #006969;
  line-height: 2.9;
  background: url("../static/bg.png") repeat-x #fff;
  margin: 0;
}
.titre{
  font-family:'Rajdhani-Medium';
  font-size: 1.5em;
  padding-right: 1em;
  margin: 0 auto;
}
.main-header {
  color: #006969;
  background: url("../static/bg.png") repeat-x #fff;
  -moz-box-shadow: 0px 3px 10px 0px #000000;
  -webkit-box-shadow: 0px 3px 10px 0px #000000;
  -o-box-shadow: 0px 3px 10px 0px #000000;
  box-shadow: 0px 3px 10px 0px #000000;
filter:progid:DXImageTransform.Microsoft.Shadow(color=#000000, Direction=180, Strength=10);
}
.header-inner {
  color:#006969;
  display: table;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 25px;
}
.header-inner > * {
  display: table-cell;
  vertical-align: middle;
}
.header-nav {
  text-align: right;
}
.header-nav ul, .header-nav li {
  display: inline;
  list-style: none;
}
.header-nav a {
  font-family:'Rajdhani-Medium';
  font-size: 0.8em;
  position: relative;
  display: inline-block;
  padding: 8px 10px;
  vertical-align: middle;
  font-weight: 300; /* between regular and light */
  letter-spacing: 0.025em;
  color: inherit;
  text-decoration: none;
}
.header-nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  margin-bottom: 10px;
  right: 7px;
  left: 15px;
  height: 2px;
  background-color: #006969;
  /* for animation */
  opacity: 0;
  transform: translateY(5px);
  transition: all .4s;
}
.header-nav a:hover:after, .header-nav a:focus:after {
  opacity: .6;
  bottom: 0;
  transform: translateY(0);
}
.header-nav a:focus {
  outline: none; /* I can do it because I already have a style for that */
}
/* When navbar is stuck */
.nav-is-stuck .main-header {
  /* http://caniuse.com/#feat=css-sticky */
  /* not good support at this time (nov 2015) */
  /* so use fixed if JS activated */
  position: sticky;
}
.nav-is-stuck .main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: stickAnim .3s;
  -moz-box-shadow: 0px 3px 10px 0px #000000;
  -webkit-box-shadow: 0px 3px 10px 0px #000000;
  -o-box-shadow: 0px 3px 10px 0px #000000;
  box-shadow: 0px 3px 10px 0px #000000;
filter:progid:DXImageTransform.Microsoft.Shadow(color=#000000, Direction=180, Strength=10);
}
 @keyframes stickAnim {
 0% {
 transform: translateY(-86px);
}
 100% {
 transform: translateY(0);
}
}
/* 
  Other styles for demo
 */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 25px;
  color: #364452;
}
.cleanbg {
  padding-bottom: 50px;
  background: #ddd;
}
.bigtxt {
  margin: 4em 0;
  color: #fff;
  font-size: 1.75vw;
  letter-spacing: 0.125em;
  word-spacing: 0.125em;
  text-transform: uppercase;
}
.txtcenter {
  text-align: center;
}
h1, h2 {
  font-family: 'Rajdhani-Bold';
  margin: 2.5em 0 1.5em;
  letter-spacing: 0.125em;
  word-spacing: 0.125em;
  text-transform: uppercase;
  text-align: center;
}
h3{
  font-family: 'Rajdhani-Bold';
  word-spacing: 0.125em;
    letter-spacing: 0.125em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: -1.2em;
}
h1 {
  margin: 0.25em auto 0.25em;
  color:#006969;
}
h2 {
  font-weight: normal;
}
p {
  font-family:'Exo-Medium';
  margin: 1.75em 0;
  font-weight: 300;
  letter-spacing: 0.025em;
  word-spacing: 0.025em;
}
th {
  font-family:'Exo-Medium';
  font-size: 1.25em;
}
.main-footer {
  background: #006969;
}
.main-footer .container {
  padding: 5px 25px;
  color: #FFF;
  color: rgba(255,255,255,.6);
}
.main-footer a {
  color: inherit;
  letter-spacing: 0.125em;
  word-spacing: 0.125em;
  text-transform: uppercase;
  font-size: .8em;
}
.main-footer span {
  display: inline-block;
  margin: 0 15px;
  color: rgba(255,255,255,.2);
}
.copiedtext {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(-1em);
  color: #006969;
  transition: all .500s;
}
.copied .copiedtext {
  opacity: 1;
  transform: translateY(-2em);
}
.gris {
  background-color: #F2F2F6;
}
.logo-fr {
  background-image: url(../static/comege-fr.png);
  background-repeat: no-repeat;
}
.logo-en {
  background-image: url(../static/comege-en.png);
  background-repeat: no-repeat;
}
textarea, button {
  font-size: 0.8em;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
textarea {
  font-family:'Exo-Medium';
  display: block;
  width: 450px;
  max-width: 100%;
  height: 60px;
  margin: 1em auto 0.75em;
  background: #F2F2F6;
  border: 1px solid #009c9c;
  padding: 10px 15px;
  resize: vertical;
}
[id="cleared"] {
 margin-top: 4em;
}
textarea:focus {
  border-color: #006969;
}
button, .button {
  font-family:'Exo-Medium';
  text-decoration: none;
  position: relative;
  padding: 8px 20px;
  border: 0;
  font-size: 0.835em;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  font-weight: bold;
  color: #FFF;
  background: #006969;
  transition: background .275s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #009c9c;
}
#pm {
  background-color: #f9a93c;
  color: #000;
}
#pf {
  background-color: #c00;
  color: #fff;
}
#prt {
  background-color: #6e308f;
  color: #fff;
}
#port {
  background-color: #8ead2d;
  color: #000;
}
#pa {
  background-color: #666;
  color: #FFF;
}
#ch {
  background-color: #69c;
  color: #fff;
}
#str {
  background-color: #f3d52d;
  color: #000;
}
#pafo {
  background-color: #00ad99;
  color: #fff;
}
#export {
  background-color: #003366;
  color: #fff;
}
.tableau-contenu {
  margin: 1em auto 0.75em;
  font-size: 0.75em;
  text-transform: uppercase;
  max-width: 80em !important;
  -webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.38);
  -moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.38);
  box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.38);
  width: 40%;
  border-width: 0;
  text-align: left;
}
.tableau-contenu tr {
  background-color:#ffffff;
  font-size: 1em;
}
.tableau-contenu tr:nth-child(odd) {
  background-color:#f4f4f4;
}
.tableau-contenu a {
  font-family:'Exo-Medium';
  color: #444;
  text-decoration: none !important;
}
.click a {
  display: block;
}
.tableau-contenu td:hover {
  background-color: rgba(62, 65, 70, 0.1);
  box-shadow: 2px 2px 2px 0 #cfcfcf inset;
  -webkit-box-shadow: 2px 2px 2px 0 #cfcfcf inset;
  -moz-box-shadow: 2px 2px 2px 0 #cfcfcf inset;
  color: #000;
  cursor: pointer;
}


.tableau-contenu td {
  padding: 2px 10px;
/*  width: 30%;*/
}
.delais {
  margin-left: 20px;
}
.news-detail-img {
  display:none;
}