/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}


      .bodyBGgris {
        background:#D1D1D1;
        background:-moz-linear-gradient(90deg, #D1D1D1, #ABABAB); 
        background:-webkit-gradient(linear, left top, left bottom, from(#ABABAB), to(#D1D1D1)); 
      }
      .bodyBGvert {
        background:#BCD6C3;
        background:-moz-linear-gradient(90deg, #8BB597, #BCD6C3); 
        background:-webkit-gradient(linear, left top, left bottom, from(#8BB597), to(#BCD6C3)); 
      }
      .bodyBGorange {
        background:#E6CBBC;
        background:-moz-linear-gradient(90deg, #E6CBBC, #E09E72); 
        background:-webkit-gradient(linear, left top, left bottom, from(#E09E72), to(#E6CBBC)); 
      }
      .bodyBGbleu {
        background:#B1D9E6;
        background:-moz-linear-gradient(90deg, #B1D9E6, #62A3CC); 
        background:-webkit-gradient(linear, left top, left bottom, from(#62A3CC), to(#B1D9E6));
      }
      .bodyBGmauve {
        background:#D3B8CE;
        background:-moz-linear-gradient(90deg, #D3B8CE, #B07898); 
        background:-webkit-gradient(linear, left top, left bottom, from(#B07898), to(#D3B8CE));
      }

#titre.sectionVert h1 span { color: #3D8435; }
#titre.sectionOrange h1 span { color: #E1712D; }
#titre.sectionBleu h1 span { color: #005873; }
#titre.sectionGris h1 span { color: #3D8435; }
#titre.sectionMauve h1 span { color: #B10D5A; }


div#titre {
  position: relative;
  top: -30px;
  padding-top: 40px;
}
div#titre h1 {
  font-size: 50px;    
  color: #333; 
}
div#titre h1 span {
  font-size: 60px;
  color: #3D8435; 
}
div#titre h2 {
  font-size: 30px;    
  color: #333; 
}


/*
 * Base structure
 */

html,
body {
  height: 100%;
  min-height: 100%;
  background:#D1D1D1;
  background:-moz-linear-gradient(90deg, #D1D1D1, #ABABAB); 
  background:-webkit-gradient(linear, left top, left bottom, from(#ABABAB), to(#D1D1D1)); 

  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
  display: table;
  width: 100%;
  height: 100%; /* For at least Firefox */
  min-height: 100%;
  -webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5);
          box-shadow: inset 0 0 100px rgba(0,0,0,.5);
}
.site-wrapper-inner {
  display: table-cell;
  vertical-align: top;
}
.cover-container {
  margin-right: auto;
  margin-left: auto;
}

/* Padding for spacing */
.inner {
  padding: 30px;
}




/*
 * Cover
 */

.cover {
  padding: 0 20px;
}
.cover .btn-lg {
  padding: 10px 20px;
  font-weight: bold;
}


/*
 * Footer
 */

.mastfoot {
  color: #999; /* IE8 proofing */
  color: rgba(255,255,255,.5);
  background-color: #333;
}


/*
 * Affix and center
 */
@media (max-width: 767px) {
  body {
    height: 100%;
  }
}

@media (min-width: 768px) {
  /* Pull out the header and footer */
  .mastfoot {
    position: fixed;
    bottom: 0;
  }
  /* Start the vertical centering */
  .site-wrapper-inner {
    vertical-align: middle;
  }
  /* Handle the widths */
  .mastfoot,
  .cover-container {
    width: 100%; /* Must be percentage or pixels for horizontal alignment */
  }
}


