/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Variables
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/
/* Variables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}
/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0;
  }
}
/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 90%;
  }
  .column,
  .columns {
    margin-left: 4%;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
  .one.column,
  .one.columns {
    width: 4.66666666667%;
  }
  .two.columns {
    width: 13.3333333333%;
  }
  .three.columns {
    width: 22%;
  }
  .four.columns {
    width: 30.6666666667%;
  }
  .five.columns {
    width: 39.3333333333%;
  }
  .six.columns {
    width: 48%;
  }
  .seven.columns {
    width: 56.6666666667%;
  }
  .eight.columns {
    width: 65.3333333333%;
  }
  .nine.columns {
    width: 74.0%;
  }
  .ten.columns {
    width: 82.6666666667%;
  }
  .eleven.columns {
    width: 91.3333333333%;
  }
  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }
  .one-third.column {
    width: 30.6666666667%;
  }
  .two-thirds.column {
    width: 65.3333333333%;
  }
  .one-half.column {
    width: 48%;
  }
  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.66666666667%;
  }
  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 17.3333333333%;
  }
  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 26%;
  }
  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 43.3333333333%;
  }
  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 52%;
  }
  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 60.6666666667%;
  }
  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 78.0%;
  }
  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 86.6666666667%;
  }
  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 95.3333333333%;
  }
  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-one-half.column,
  .offset-by-one-half.columns {
    margin-left: 52%;
  }
}
/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%;
}
body {
  font-size: 1.5em;
  /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
}
/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
}
h1 {
  font-size: 4.0rem;
  line-height: 1.2;
  letter-spacing: -0.1rem;
}
h2 {
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
}
h3 {
  font-size: 3.0rem;
  line-height: 1.3;
  letter-spacing: -0.1rem;
}
h4 {
  font-size: 2.4rem;
  line-height: 1.35;
  letter-spacing: -0.08rem;
}
h5 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.05rem;
}
h6 {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0;
}
/* Larger than phablet */
@media (min-width: 550px) {
  h1 {
    font-size: 5.0rem;
  }
  h2 {
    font-size: 4.2rem;
  }
  h3 {
    font-size: 3.6rem;
  }
  h4 {
    font-size: 3.0rem;
  }
  h5 {
    font-size: 2.4rem;
  }
  h6 {
    font-size: 1.5rem;
  }
}
p {
  margin-top: 0;
}
/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB;
}
a:hover {
  color: #0FA0CE;
}
/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0;
}
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB;
}
/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0;
}
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
}
fieldset {
  padding: 0;
  border-width: 0;
}
input[type="checkbox"],
input[type="radio"] {
  display: inline;
}
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal;
}
/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}
ol {
  list-style: decimal inside;
}
ol,
ul {
  padding-left: 0;
  margin-top: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
}
li {
  margin-bottom: 1rem;
}
/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}
/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1;
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}
/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}
/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}
/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}
/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}
/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
/* Larger than mobile */
@media (min-width: 400px) {
  .container {
    width: 400px;
  }
}
/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
  .container {
    width: 550px;
  }
}
/* Larger than tablet */
@media (min-width: 750px) {
  .container {
    width: 670px;
  }
}
/* Larger than desktop */
@media (min-width: 1000px) {
  .container {
    width: 920px;
  }
}
/* Larger than Desktop HD */
@media (min-width: 1200px) {
  .container {
    width: 1120px;
  }
}
/* Larger than Desktop HD */
@media (min-width: 1600px) {
  .container {
    width: 1520px;
  }
}
/* Lima Charlie addons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container.full-width {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0px;
  margin: 0px;
}
.container.full-width-limit {
  width: 100%;
  box-sizing: border-box;
  max-width: 1280px;
  padding: 0px;
  margin: 0px auto;
}
.vertical-middle {
  vertical-align: middle;
}
@media (min-width: 550px) {
  .one-fifth.columns {
    width: 19%;
    margin: 0 0.5%;
  }
  .container.no-margin .column,
  .container.no-margin .columns {
    margin-left: 0%;
  }
  .container.no-margin .column:first-child,
  .container.no-margin .columns:first-child {
    margin-left: 0;
  }
  .container.no-margin .one.column,
  .container.no-margin .one.columns {
    width: 8.33333333%;
  }
  .container.no-margin .two.columns {
    width: 16.66666667%;
  }
  .container.no-margin .three.columns {
    width: 25%;
  }
  .container.no-margin .four.columns {
    width: 33.33333333%;
  }
  .container.no-margin .five.columns {
    width: 41.66666667%;
  }
  .container.no-margin .six.columns {
    width: 50%;
  }
  .container.no-margin .seven.columns {
    width: 58.33333333%;
  }
  .container.no-margin .eight.columns {
    width: 66.66666667%;
  }
  .container.no-margin .nine.columns {
    width: 75%;
  }
  .container.no-margin .ten.columns {
    width: 83.33333333%;
  }
  .container.no-margin .eleven.columns {
    width: 91.66666667%;
  }
  .container.no-margin .twelve.columns {
    width: 100%;
  }
  .container.no-margin .one-third.column {
    width: 33.3333333333%;
  }
  .container.no-margin .two-thirds.column {
    width: 66.6666666667%;
  }
  .container.no-margin .one-half.column {
    width: 50%;
  }
}
@font-face {
  font-family: 'Titillium Web';
  src: url('../fonts/Titillium WebBlack.eot');
  src: url('../fonts/Titillium WebBlack.eot?#iefix') format('embedded-opentype'), url('../fonts/Titillium WebBlack.woff2') format('woff2'), url('../fonts/Titillium WebBlack.woff') format('woff'), url('../fonts/Titillium WebBlack.svg#Titillium WebBlack') format('svg');
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F6C3;
}
@font-face {
  font-family: 'Titillium Web';
  src: url('../fonts/Titillium WebBold.eot');
  src: url('../fonts/Titillium WebBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Titillium WebBold.woff2') format('woff2'), url('../fonts/Titillium WebBold.woff') format('woff'), url('../fonts/Titillium WebBold.svg#Titillium WebBold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F6C3;
}
@font-face {
  font-family: 'Titillium Web';
  src: url('../fonts/Titillium WebLight.eot');
  src: url('../fonts/Titillium WebLight.eot?#iefix') format('embedded-opentype'), url('../fonts/Titillium WebLight.woff2') format('woff2'), url('../fonts/Titillium WebLight.woff') format('woff'), url('../fonts/Titillium WebLight.svg#Titillium WebLight') format('svg');
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F6C3;
}
@font-face {
  font-family: 'Titillium Web';
  src: url('../fonts/Titillium Web.eot');
  src: url('../fonts/Titillium Web.eot?#iefix') format('embedded-opentype'), url('../fonts/Titillium Web.woff2') format('woff2'), url('../fonts/Titillium Web.woff') format('woff'), url('../fonts/Titillium Web.svg#Titillium Web') format('svg');
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F6C3;
}
@font-face {
  font-family: 'Titillium Web';
  src: url('../fonts/Titillium WebSemiBold.eot');
  src: url('../fonts/Titillium WebSemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Titillium WebSemiBold.woff2') format('woff2'), url('../fonts/Titillium WebSemiBold.woff') format('woff'), url('../fonts/Titillium WebSemiBold.svg#Titillium WebSemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-F6C3;
}
html {
  height: 100%;
}
body,
html {
  background-color: #414042;
}
body {
  font-size: 16px;
  line-height: 24px;
  font-family: 'Open Sans';
  -webkit-font-smoothing: antialiased;
}
a {
  color: #111517;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: none;
}
#content {
  padding-right: 0px;
  padding-left: 0px;
}
#footer {
  padding-left: 45px;
  padding-right: 45px;
}
#page {
  max-width: 100%;
  background: transparent url(../images/body-bg-gradient.png) repeat-x 0 top;
}
#main {
  background-color: #e8e8e8;
  padding-top: 100px;
  padding-bottom: 0px;
}
#main,
#header .content {
  margin-left: auto;
  margin-right: auto;
}
h1.title {
  display: none;
  padding-bottom: 10px;
  font-size: 30px;
  color: #333;
}
.center {
  text-align: center;
}
input[type="text"],
input[type="email"] {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #bbb;
  color: #555;
  font-size: 12px;
  font-weight: normal;
}
#user-login {
  padding: 45px;
}
a.button,
input.button {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
  margin-bottom: 1rem;
  background-color: #144b6f;
  color: #FFF;
  -webkit-appearance: none;
  border: none;
}
a.button:hover,
input.button:hover {
  color: #b9c9d4;
}
@media (max-width: 768px) {
  input[type="password"],
  input[type="text"] {
    width: 100%;
  }
}
div.messages {
  border: none;
  margin: 0px;
  padding: 35px 20px 35px 50px;
}
div.messages.error,
div.messages.status {
  border: none;
  background-position: 8px 34px;
}
div.messages pre {
  margin: 0;
}
.admin-menu.jmcouillard-manager #header {
  top: 50px;
}
.jmcouillard-manager #header {
  top: 30px;
}
#header {
  background-color: #e9e9e9;
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0px;
  z-index: 100;
  padding-left: 0px;
  padding-right: 0px;
  font-weight: bold;
  border-bottom: #414042 1px solid;
}
#header .content {
  position: relative;
  text-align: center;
  height: 100%;
}
#header #logo {
  position: absolute;
  top: 30px;
  left: 45px;
}
@media (max-width: 768px) {
  #header #logo {
    left: 20px;
  }
}
#header .mobile-toggle {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  text-indent: -9999px;
}
#header .mobile-toggle span {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: #144b6f;
  -webkit-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#header .mobile-toggle span:before,
#header .mobile-toggle span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #144b6f;
  content: "";
  -webkit-transition-delay: 0.25s, 0s;
  -moz-transition-delay: 0.25s, 0s;
  -ms-transition-delay: 0.25s, 0s;
  transition-delay: 0.25s, 0s;
  -webkit-transition-duration: 0.25s, 0.25s;
  -moz-transition-duration: 0.25s, 0.25s;
  -ms-transition-duration: 0.25s, 0.25s;
  transition-duration: 0.25s, 0.25s;
}
#header .mobile-toggle span:before {
  top: -6.66666667px;
  -webkit-transition-property: top, transform;
  -moz-transition-property: top, transform;
  -ms-transition-property: top, transform;
  transition-property: top, transform;
}
#header .mobile-toggle span:after {
  bottom: -6.66666667px;
  -webkit-transition-property: bottom, transform;
  -moz-transition-property: bottom, transform;
  -ms-transition-property: bottom, transform;
  transition-property: bottom, transform;
}
#header .mobile-toggle.shown span {
  background: transparent;
}
#header .mobile-toggle.shown span:before,
#header .mobile-toggle.shown span:after {
  -webkit-transition-delay: 0s, 0.25s;
  -moz-transition-delay: 0s, 0.25s;
  -ms-transition-delay: 0s, 0.25s;
  transition-delay: 0s, 0.25s;
}
#header .mobile-toggle.shown span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#header .mobile-toggle.shown span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (min-width: 769px) {
  #header .mobile-toggle {
    display: none;
  }
}
@media (max-width: 768px) {
  #header {
    height: 100px;
  }
  #header #navigation {
    position: relative;
    width: 100%;
    height: auto;
    float: none;
    display: block;
    background: #fff;
    top: 100px;
  }
  #header #navigation #header-menus {
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  #header #navigation #header-menus.mobile {
    -webkit-transition: height 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: height 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition: height 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: height 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: height 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #header #navigation #header-menus .block {
    display: block;
    float: none;
    width: 100%;
    height: auto;
  }
  #header #navigation #header-menus .block#block-system-main-menu {
    width: calc(100% - 30px);
  }
  #header #navigation #header-menus .block#block-system-main-menu ul > li {
    width: 100%;
  }
  #header #navigation #header-menus .block#block-locale-language {
    width: 100%;
    height: auto;
    top: 0;
  }
  #header #navigation #header-menus .block#block-locale-language ul li a {
    font-size: 15px;
  }
  #header #navigation #header-menus ul.menu,
  #header #navigation #header-menus ul {
    margin: 0;
    height: auto;
    position: inherit;
    text-align: left;
    padding-left: 33px;
  }
  #header #navigation #header-menus ul.menu > li,
  #header #navigation #header-menus ul > li {
    display: block;
    margin: 0;
    padding: 0 !important;
    height: auto;
    position: inherit;
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
  }
  #header #navigation #header-menus ul.menu > li span,
  #header #navigation #header-menus ul > li span {
    font-size: 22px;
  }
  #header #navigation #header-menus ul.menu > li a,
  #header #navigation #header-menus ul > li a {
    display: block;
    position: relative;
    width: 100%;
    height: 30px;
    line-height: 30px;
  }
  #header #navigation #header-menus ul.menu > li a span,
  #header #navigation #header-menus ul > li a span {
    font-size: 15px;
    position: static;
    display: block;
    padding: 0;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
}
#block-locale-language,
#block-lang-dropdown-language {
  position: absolute;
  right: 45px;
  top: 0;
  margin-bottom: 0;
}
#block-locale-language form,
#block-lang-dropdown-language form {
  margin: 0;
}
#block-locale-language li,
#block-lang-dropdown-language li {
  margin: 0;
}
#block-locale-language li.active,
#block-lang-dropdown-language li.active {
  display: none;
}
#block-locale-language #lang-dropdown-select-language,
#block-lang-dropdown-language #lang-dropdown-select-language {
  margin-top: 28px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  #block-locale-language #lang-dropdown-select-language,
  #block-lang-dropdown-language #lang-dropdown-select-language {
    margin-right: 10px;
  }
}
#block-locale-language #lang-dropdown-select-language,
#block-lang-dropdown-language #lang-dropdown-select-language,
#block-locale-language #lang-dropdown-select-language .dd-select,
#block-lang-dropdown-language #lang-dropdown-select-language .dd-select {
  width: 65px !important;
  border: none;
  background: transparent !important;
}
#block-locale-language #lang-dropdown-select-language .dd-selected,
#block-lang-dropdown-language #lang-dropdown-select-language .dd-selected {
  text-align: center;
}
#block-locale-language #lang-dropdown-select-language .dd-selected:before,
#block-lang-dropdown-language #lang-dropdown-select-language .dd-selected:before {
  content: "\00a0";
  display: inline-block;
  background: transparent url("../images/globe.png") no-repeat center center;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 12px;
}
#block-locale-language #lang-dropdown-select-language .dd-selected label,
#block-lang-dropdown-language #lang-dropdown-select-language .dd-selected label {
  display: none;
}
#block-locale-language #lang-dropdown-select-language .dd-options,
#block-lang-dropdown-language #lang-dropdown-select-language .dd-options {
  position: absolute;
  right: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#block-locale-language #lang-dropdown-select-language .dd-options .dd-option,
#block-lang-dropdown-language #lang-dropdown-select-language .dd-options .dd-option {
  text-align: right;
  background-color: #e9e9e9;
}
#block-locale-language #lang-dropdown-select-language .dd-options .dd-option label,
#block-lang-dropdown-language #lang-dropdown-select-language .dd-options .dd-option label {
  text-transform: uppercase;
  font-weight: normal;
  margin: 0px 10px;
}
#block-locale-language #lang-dropdown-select-language .dd-options .dd-option.dd-option-selected label,
#block-lang-dropdown-language #lang-dropdown-select-language .dd-options .dd-option.dd-option-selected label {
  color: #414042;
  font-weight: bold;
}
#header #block-locale-language,
#header #block-system-main-menu {
  display: inline-block;
  margin-top: 35px;
}
#header #block-locale-language ul,
#header #block-system-main-menu ul {
  margin: 0px;
  padding: 0 0 0 0px;
}
#header #block-locale-language ul li,
#header #block-system-main-menu ul li {
  list-style: none;
  float: right;
  margin: 0px 15px;
}
#header #block-locale-language ul li a,
#header #block-system-main-menu ul li a {
  color: #111517;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 3px;
}
#header #block-locale-language ul li a.active,
#header #block-system-main-menu ul li a.active {
  border-bottom: 4px #144b6f solid;
}
#header #block-locale-language ul li a:hover,
#header #block-system-main-menu ul li a:hover {
  border-bottom: 4px #144b6f solid;
}
@media (max-width: 768px) {
  #header #block-locale-language ul li a:hover,
  #header #block-system-main-menu ul li a:hover,
  #header #block-locale-language ul li a.active,
  #header #block-system-main-menu ul li a.active {
    border-bottom: none;
    color: #144b6f;
  }
}
#footer {
  background-color: #414042;
  margin: 0px auto;
  padding-top: 10px;
  text-align: center;
  vertical-align: top;
}
#footer .block {
  margin: 20px auto 0;
  font-size: 12px;
  line-height: 16px;
  color: #3a3a3a;
}
#footer .category {
  color: #e9e9e9;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 9px;
  border-bottom: 3px solid #e9e9e9;
}
#footer .category.no-border {
  border-bottom: 3px solid transparent;
  display: block;
}
#footer .footer-col1,
#footer .footer-col2,
#footer .footer-col3,
#footer .footer-col4 {
  display: inline-block;
  text-align: left;
  font-size: 1.1em;
  margin-bottom: 25px;
  vertical-align: top;
}
#footer .footer-col1,
#footer .footer-col2,
#footer .footer-col3,
#footer .footer-col4,
#footer .footer-col1 a,
#footer .footer-col2 a,
#footer .footer-col3 a,
#footer .footer-col4 a {
  color: #e9e9e9;
}
#footer .footer-col1 a,
#footer .footer-col2 a,
#footer .footer-col3 a,
#footer .footer-col4 a {
  -webkit-transition: opacity 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: opacity 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: opacity 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: opacity 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#footer .footer-col1 a:hover,
#footer .footer-col2 a:hover,
#footer .footer-col3 a:hover,
#footer .footer-col4 a:hover {
  opacity: 0.6;
}
#footer .footer-col1,
#footer .footer-col2,
#footer .footer-col3 {
  margin-right: 4%;
}
#footer .footer-col1 {
  width: 25%;
}
#footer .footer-col1 a {
  display: inline-block;
  line-height: 20px;
  text-transform: uppercase;
  margin: 8px 0;
}
#footer .footer-col2 {
  width: 20%;
}
#footer .footer-col2 a.social-icon {
  display: inline-block;
  background: transparent url(../images/social-icons.png) no-repeat left top;
  background-size: 116px 100px;
  width: 50px;
  height: 50px;
  opacity: 1;
  cursor: hand;
  margin-right: 15px;
}
#footer .footer-col2 a.social-icon:hover {
  opacity: 1;
}
#footer .footer-col2 a.social-icon.li {
  background-position: left top;
}
#footer .footer-col2 a.social-icon.li:hover {
  background-position: left bottom;
}
#footer .footer-col2 a.social-icon.fb {
  background-position: right top;
}
#footer .footer-col2 a.social-icon.fb:hover {
  background-position: right bottom;
}
#footer .footer-col3 {
  width: 20%;
  line-height: 18px;
}
#footer .footer-col4 {
  width: 20%;
}
@media (max-width: 768px) {
  #footer .footer-col1,
  #footer .footer-col2,
  #footer .footer-col3,
  #footer .footer-col4 {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #footer .footer-col1 .category.no-border,
  #footer .footer-col2 .category.no-border,
  #footer .footer-col3 .category.no-border,
  #footer .footer-col4 .category.no-border {
    display: none;
  }
  #footer .footer-col1 a,
  #footer .footer-col2 a,
  #footer .footer-col3 a,
  #footer .footer-col4 a {
    margin: 0px;
  }
}
#footer .contact {
  padding-left: 21px;
  margin-bottom: 3px;
}
#footer .bottom {
  clear: both;
  border-top: 1px solid #a0a0a0;
  padding-top: 20px;
  margin-top: 10px;
  display: inline-block;
  width: 100%;
  color: #a0a0a0;
}
#footer .bottom a {
  color: #a0a0a0;
}
#footer .contact.tel {
  background: transparent url(../images/contact-tel.png) no-repeat left center;
}
#footer .contact.fax {
  background: transparent url(../images/contact-fax.png) no-repeat left center;
}
#footer .contact.email {
  background: transparent url(../images/contact-email.png) no-repeat left center;
}
#block-ds-extras-slider-front {
  margin-bottom: 0;
}
#jmcouillard_image_slider .wrapper {
  position: relative;
  line-height: 0;
}
#jmcouillard_image_slider .wrapper img {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
}
#jmcouillard_image_slider .arrow.prev {
  left: 45px;
  top: calc(50% - 15px);
}
#jmcouillard_image_slider .arrow.next {
  right: 45px;
  top: calc(50% - 15px);
}
.field-name-field-vimeo,
.field-name-field-vimeo-i18n {
  width: 80%;
  margin: 0px auto 60px;
  text-align: center;
}
.field-name-field-vimeo .field-item,
.field-name-field-vimeo-i18n .field-item {
  width: 80%;
  margin: 20px auto;
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.field-name-field-vimeo .field-item.items-count-1,
.field-name-field-vimeo-i18n .field-item.items-count-1 {
  width: 100%;
}
.field-name-field-vimeo .field-item.items-count-4,
.field-name-field-vimeo-i18n .field-item.items-count-4 {
  width: 40%;
  margin: 20px 5%;
}
.field-name-field-vimeo .field-item:first-child,
.field-name-field-vimeo-i18n .field-item:first-child {
  margin-top: 0;
}
.field-name-field-vimeo .field-item:after,
.field-name-field-vimeo-i18n .field-item:after {
  padding-top: 56.25%;
  display: block;
  content: '';
}
.field-name-field-vimeo .field-item > iframe,
.field-name-field-vimeo-i18n .field-item > iframe,
.field-name-field-vimeo .field-item > .video-coming-soon,
.field-name-field-vimeo-i18n .field-item > .video-coming-soon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.field-name-field-vimeo .field-item .video-coming-soon,
.field-name-field-vimeo-i18n .field-item .video-coming-soon {
  background: transparent url("../images/video_coming_soon.jpg") no-repeat center center;
  background-size: cover
		;
}
.field-name-field-vimeo .field-item .video-coming-soon span,
.field-name-field-vimeo-i18n .field-item .video-coming-soon span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: bold;
  color: #FFF;
  font-size: 18px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .field-name-field-vimeo .field-item,
  .field-name-field-vimeo-i18n .field-item,
  .field-name-field-vimeo .field-item.items-count-1,
  .field-name-field-vimeo-i18n .field-item.items-count-1,
  .field-name-field-vimeo .field-item.items-count-4,
  .field-name-field-vimeo-i18n .field-item.items-count-4 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
#block-ds-extras-tagline {
  background-color: #144b6f;
}
#block-ds-extras-tagline .field-name-field-tagline-i18n {
  padding: 60px 10%;
  max-width: 768px;
  margin: 0 auto;
}
#block-ds-extras-tagline h2,
#block-ds-extras-tagline p {
  text-align: center;
  color: #e9e9e9;
}
#block-ds-extras-tagline h2 {
  color: #e9e9e9;
}
@media (max-width: 768px) {
  #block-ds-extras-tagline h2 {
    font-size: 1.8em;
  }
}
#block-ds-extras-tagline h2:after {
  content: "\00a0";
  position: relative;
  display: block;
  width: 100px;
  height: 10px;
  margin: 40px auto;
  background-color: #e9e9e9;
}
#block-ds-extras-tagline p {
  color: #e9e9e9;
  margin: 16px 0px;
  font-weight: bold;
}
.node-front-page .group-left,
.node-front-page .group-right {
  width: 48%;
}
.node-front-page .group-header {
  margin-bottom: 100px;
}
.node-front-page .group-left {
  margin-right: 4%;
}
.node-front-page .field-name-body {
  margin-right: 4%;
}
.node-front-page .field-name-field-vimeo {
  margin-top: 60px;
  margin-bottom: 30px;
}
.node-front-page .view h2.title {
  color: #646464;
  font-weight: normal;
  background: transparent url(../images/line-sub.png) no-repeat left top;
  padding-left: 40px;
  padding-top: 2px;
  margin-bottom: 30px;
}
.node-front-page .view {
  margin-top: 100px;
  display: inline-block;
}
.node-front-page .view .field-name-title h2,
.node-front-page .view p {
  font-size: 12px;
  margin: 0;
}
.node-front-page .view .field-name-title h2,
.node-front-page .view p,
.node-front-page .view span,
.node-front-page .view a {
  font-size: 12px;
  margin: 0;
  color: #646464;
}
.node-front-page .view-news {
  width: 100%;
}
.node-front-page .view .node-news {
  margin-bottom: 40px;
  width: 95%;
}
.node-front-page .view .field-name-title h2 {
  line-height: 12px;
}
.node-front-page .view .field-name-field-date,
.node-front-page .view .field-name-field-date span,
.node-front-page .view .field-name-node-link a {
  font-weight: bold;
  font-size: 11px;
}
.node-front-page .view .field-name-node-link a:hover {
  color: #000;
}
.node-front-page .view .field-name-body {
  width: 100%;
}
.view-products {
  margin: 0px auto;
}
.view-products .views-row {
  margin-bottom: 0px;
  background-color: #e9e9e9;
}
.view-products .views-row .node-produit.node-teaser {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.view-products .views-row .node-produit.node-teaser .group-left,
.view-products .views-row .node-produit.node-teaser .group-right {
  float: none;
  flex: 1 0 50%;
}
@media (max-width: 768px) {
  .view-products .views-row .node-produit.node-teaser .group-left,
  .view-products .views-row .node-produit.node-teaser .group-right {
    flex: 0 0 100%;
  }
}
.view-products .views-row .node-produit.node-teaser .group-left {
  line-height: 0;
}
.view-products .views-row .node-produit.node-teaser .group-left img {
  width: 100%;
  height: auto;
}
.view-products .views-row .node-produit.node-teaser .group-right {
  position: relative;
  color: #414042;
}
@media (min-width: 769px) {
  .view-products .views-row .node-produit.node-teaser .group-right .group-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .view-products .views-row .node-produit.node-teaser .group-right .group-center {
    padding: 20px;
  }
}
.view-products .views-row .node-produit.node-teaser .field-name-title h2 {
  display: inline-block;
  margin-top: 0px;
  font-size: 25px;
  line-height: 17px;
  padding-bottom: 17px;
  border-bottom: 3px solid #144b6f;
  color: #144b6f;
}
.view-products .views-row .node-produit.node-teaser .field-name-node-link a {
  color: #414042;
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
  margin-bottom: 1rem;
  background-color: #144b6f;
  color: #FFF;
  -webkit-appearance: none;
  border: none;
}
.view-products .views-row .node-produit.node-teaser .field-name-node-link a:hover {
  color: #b9c9d4;
}
@media (min-width: 769px) {
  .view-products .views-row.views-row-even .group-right {
    order: -5;
  }
}
.node-produit.view-mode-full .field-name-body {
  font-size: 18px;
  line-height: 32px;
  padding-top: 0px;
}
.node-produit.view-mode-full .field-name-title-field {
  margin-bottom: 20px;
  margin-top: 40px;
  font-size: 25px;
  line-height: 17px;
  padding-bottom: 17px;
  border-bottom: 3px solid #144b6f;
  color: #144b6f;
}
#block-innocar-gmaps-innocar-gmaps {
  margin-top: -67px;
}
#block-innocar-gmaps-innocar-gmaps img {
  max-width: initial;
}
.page-node-1 .group-half {
  display: inline-block;
  width: 50%;
  vertical-align: top;
}
@media (max-width: 768px) {
  .page-node-1 .group-half {
    width: 100%;
  }
}
.page-node-1 .group-half strong {
  color: #144b6f;
}
.node-type-page .field-name-body,
.node-type-produit .field-name-body,
.page-private .field-name-body,
.node-type-page .field-name-title-field,
.node-type-produit .field-name-title-field,
.page-private .field-name-title-field,
.node-type-page #jmcouillard-private-nodes-enterpassword,
.node-type-produit #jmcouillard-private-nodes-enterpassword,
.page-private #jmcouillard-private-nodes-enterpassword {
  max-width: 768px;
  margin: 0 auto;
}
.node-type-page .field-name-body,
.node-type-produit .field-name-body,
.page-private .field-name-body,
.node-type-page #jmcouillard-private-nodes-enterpassword,
.node-type-produit #jmcouillard-private-nodes-enterpassword,
.page-private #jmcouillard-private-nodes-enterpassword {
  padding: 80px 10%;
}
.node-type-private-zone #private-access-selector {
  text-align: center;
}
.node-type-private-zone #private-access-selector .private-access-selector-item {
  display: block;
  margin: 100px auto;
}
.node-type-private-zone #private-access-selector .private-access-selector-item a {
  width: 250px;
  color: #e9e9e9;
  border: #144b6f 2px solid;
  display: inline-block;
  padding: 15px 30px;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #144b6f;
  -webkit-transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955), color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  cursor: pointer;
}
.node-type-private-zone #private-access-selector .private-access-selector-item a:hover {
  background-color: #e9e9e9;
  color: #144b6f;
}
.node-type-private-zone #private-access-content {
  display: none;
}
.node-type-private-zone .horizontal-tabs {
  border: none;
}
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list {
  border: none;
  text-align: center;
  background-color: #e9e9e9;
  box-sizing: border-box;
  border-top: 1px solid #414042;
  border-bottom: 1px solid #414042;
}
@media screen and (max-width: 967px) {
  .node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list {
    border-top: none;
  }
}
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button {
  padding: 0;
  border: none;
  border-color: #144b6f;
  display: inline-block;
  float: none;
}
@media screen and (max-width: 967px) {
  .node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button {
    width: 100%;
  }
}
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button a {
  background-color: #e9e9e9;
  -webkit-transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button a strong {
  color: #414042;
  -webkit-transition: color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button a,
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button.selected a {
  padding: 10px 100px;
  text-transform: uppercase;
}
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button a:hover {
  background-color: #5f829a;
}
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button a:hover,
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button a:hover strong {
  color: #e9e9e9;
}
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button.selected a {
  background-color: #144b6f;
}
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button.selected a,
.node-type-private-zone .horizontal-tabs ul.horizontal-tabs-list li.horizontal-tab-button.selected a strong {
  color: #e9e9e9;
}
.node-type-private-zone .horizontal-tabs fieldset.horizontal-tabs-pane {
  margin: 60px 0;
  padding: 0;
}
.node-type-private-zone .field-name-field-images div.caption {
  color: #414042;
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
}
@media screen and (min-width: 968px) {
  .node-type-private-zone .field-name-field-images .field-items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .node-type-private-zone .field-name-field-images .field-item {
    width: 200px;
  }
  .node-type-private-zone .field-name-field-images .field-item img {
    width: 100%;
    height: 100%;
  }
}
.node-type-private-zone .field-name-field-images .field-item {
  margin: 1rem;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */