/*!
* www.KNACSS.com V3.0.5 (2014-07-10) @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.4em;
  background-color: #ffffff;
  color: #000000;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.5;
}
a {
  color: #333333;
}
a:hover,
a:focus,
a:active {
  color: #000000;
}
/* 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: Helvetica, Arial, sans-serif;
}
h2,
.h2-like,
.nctv_faq .nctv_faqHeaderSectionItem_title {
  font-size: 2.8rem;
  font-family: 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.71em;
}
.small {
  font-size: 0.86em;
}
.big {
  font-size: 1.14em;
}
.bigger {
  font-size: 1.29em;
}
.biggest {
  font-size: 1.43em;
}
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: 480px) {
  .no-small-screen {
    display: none;
  }
}
@media (min-width: 1024px) {
  .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: 2em;
}
/* ----------------------------- */
/* ==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;
}
/* 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: 1em;
}
/* right (or ending) elements */
.right,
.end {
  float: right;
}
img.right,
img.end {
  margin-left: 1em;
}
img.left,
img.right,
img.start,
img.end {
  margin-bottom: 0.5em;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.txtleft {
  text-align: left;
}
.txtright {
  text-align: right;
}
.txtcenter {
  text-align: center;
}
/* 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;
}
/* ---------------------------------- */
/* ==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: 14px;
  font-size: 1.4rem;
}
/* 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%;
}
/* Responsiv-o-matic */
@media (max-width: 1024px) {
  .grid5 > *,
  .grid6 > *,
  .grid8 > *,
  .grid10 > *,
  .grid12 > * {
    width: 33.333%;
  }
}
@media (max-width: 480px) {
  .grid3 > *,
  .grid4 > *,
  .grid5 > *,
  .grid6 > *,
  .grid8 > *,
  .grid10 > *,
  .grid12 > * {
    width: 50%;
  }
}
@media (max-width: 320px) {
  .grid > * > * {
    width: 100% !important;
  }
}
/* ---------------------------------- */
/* ==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: 14px;
  font-size: 1.4rem;
}
/* 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%;
}
@media (max-width: 1024px) {
  .autogrid5 > *,
  .autogrid6 > *,
  .autogrid8 > *,
  .autogrid10 > *,
  .autogrid12 > * {
    width: 32%;
  }
}
@media (max-width: 480px) {
  .autogrid5 > *,
  .autogrid6 > *,
  .autogrid8 > *,
  .autogrid10 > *,
  .autogrid12 > * {
    width: 49%;
  }
}
@media (max-width: 320px) {
  [class*="autogrid"] > * {
    width: 100%;
  }
}
/* ----------------------------- */
/* ==tables                      */
/* ----------------------------- */
table,
.table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  vertical-align: top;
  border: 1px solid #ccc;
}
.table {
  display: table;
}
table#recaptcha_table,
table.table-auto {
  table-layout: auto;
}
caption {
  padding: 1em;
  color: #555;
  font-style: italic;
}
td,
th {
  padding: 0.3em 0.8em;
  border: 1px #aaa dotted;
  vertical-align: top;
  min-width: 2em;
  cursor: default;
  text-align: left;
}
/* ----------------------------- */
/* ==forms                       */
/* ----------------------------- */
/* thanks to HTML5boilerplate,
* github.com/nathansmith/formalize and www.sitepen.com
*/
/* buttons */
.btn {
  display: inline-block;
}
/* forms items */
form,
fieldset {
  border: none;
}
input,
button,
select,
label,
.btn {
  vertical-align: middle;
  font-family: inherit;
  font-size: inherit;
}
label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
legend {
  border: 0;
  white-space: normal;
}
textarea {
  min-height: 5em;
  vertical-align: top;
  font-family: inherit;
  font-size: inherit;
  resize: vertical;
}
/* clickable input types in iOS */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
/* if select styling bugs on WebKit */
/* select { -webkit-appearance: none; } */
/* 'x' appears on right of search input when text is entered. This removes it */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
::-webkit-input-placeholder {
  color: #777;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #777;
}
/* Removes inner padding and border in FF3+ */
button::-moz-focus-inner,
input[type='button']::-moz-focus-inner,
input[type='reset']::-moz-focus-inner,
input[type='submit']::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* ----------------------------- */
/* ==icons and bullets	         */
/* ----------------------------- */
.icon {
  display: inline-block;
}
.icon:before,
.icon.after:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
  margin: 0 0.3em 0 0;
  font: 1.4em/1 sans-serif;
  color: #000;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
  speak: none;
}
@media (min-device-width: 480px) {
  .icon:before,
  .icon.after:after {
    font: 1em/0.6 sans-serif;
    -webkit-transform: rotateZ(0.05deg);
  }
}
.icon.after:after {
  margin: 0 0 0 8px;
}
.icon.after:before {
  content: "" !important;
}
.icon-rate:before,
.icon-rate.after:after {
  content: "\2605";
}
.icon-unrate:before,
.icon-unrate.after:after {
  content: "\2606";
}
.icon-check:before,
.icon-check.after:after {
  content: "\2713";
}
.icon-uncheck:before,
.icon-uncheck.after:after {
  content: "\2717";
}
.icon-cloud:before,
.icon-cloud.after:after {
  content: "\2601";
}
.icon-dl:before,
.icon-dl.after:after {
  content: "\21E3";
  font-weight: bold;
}
.icon-cross:before,
.icon-cross.after:after {
  content: "\2716";
  font-weight: bold;
}
.icon-arrow1:before,
.icon-arrow1.after:after {
  content: "\2192";
  position: relative;
  top: -0.15em;
}
.icon-arrow2:before,
.icon-arrow2.after:after {
  content: "\279E";
}
.icon-arrow3:before,
.icon-arrow3.after:after {
  content: "\279A";
}
.icon-bracket1:before,
.icon-bracket1.after:after {
  content: "\2039";
  font-weight: bold;
  font-size: 1.6em;
  position: relative;
  top: -0.15em;
}
.icon-bracket2:before,
.icon-bracket2.after:after {
  content: "\203A";
  font-weight: bold;
  font-size: 1.6em;
  position: relative;
  top: -0.15em;
}
.icon-up:before,
.icon-up.after:after {
  content: "\25B2";
}
.icon-down:before,
.icon-down.after:after {
  content: "\25BC";
}
.icon-bull:before,
.icon-bull.after:after {
  content: "\2022";
  font-size: 1.2em;
  top: -0.05em;
}
.icon-bull2:before,
.icon-bull2.after:after {
  content: "\25E6";
  top: -0.05em;
}
.icon-bull3:before,
.icon-bull3.after:after {
  content: "\2023";
  font-size: 1.6em;
  top: -0.05em;
}
.icon-nav:before,
.icon-nav.after:after {
  content: "\2261";
  font-weight: bold;
}
.icon-losange:before,
.icon-losange.after:after {
  content: "\25C6";
}
.icon-asteri:before,
.icon-asteri.after:after {
  content: "\2731";
  font-weight: bold;
}
.icon-mail:before,
.icon-mail.after:after {
  content: "\2709";
  font-size: 1.6em;
  top: -0.05em;
}
/* ----------------------------- */
/* ==desktop and HD devices      */
/* ----------------------------- */
@media (min-width: 480px) {
  /* rules for big resources and big screens like: background-images, font-faces, etc. */
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  /* style adjustments for high density devices */
}
/* ---------------------------------- */
/* ==Responsive large / small / tiny  */
/* ---------------------------------- */
@media (min-width: 1024px) {
  /* layouts for large screens */
  .large-hidden {
    display: none !important;
  }
  .large-visible {
    display: block !important;
  }
  .large-no-float {
    float: none;
  }
  .large-inbl {
    display: inline-block;
    float: none;
    vertical-align: top;
  }
  .large-row {
    display: table;
    table-layout: fixed;
    width: 100% !important;
  }
  .large-col {
    display: table-cell;
    vertical-align: top;
  }
  /* widths for large screens */
  .large-w25 {
    width: 25% !important;
  }
  .large-w33 {
    width: 33.3333% !important;
  }
  .large-w50 {
    width: 50% !important;
  }
  .large-w66 {
    width: 66.6666% !important;
  }
  .large-w75 {
    width: 75% !important;
  }
  .large-w100,
  .large-wauto {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0;
  }
  /* margins for large screens */
  .large-man {
    margin: 0 !important;
  }
}
@media (max-width: 480px) {
  /* quick reset in small resolution and less */
  .w600p,
  .w700p,
  .w800p,
  .w960p,
  .mw960p {
    width: auto;
    float: none;
  }
  /* layouts for small screens */
  .small-hidden {
    display: none !important;
  }
  .small-visible {
    display: block !important;
  }
  .small-no-float {
    float: none;
  }
  .small-inbl {
    display: inline-block;
    float: none;
    vertical-align: top;
  }
  .small-row {
    display: table !important;
    table-layout: fixed !important;
    width: 100% !important;
  }
  .small-col {
    display: table-cell !important;
    vertical-align: top !important;
  }
  /* widths for small screens */
  .small-w25 {
    width: 25% !important;
  }
  .small-w33 {
    width: 33.3333% !important;
  }
  .small-w50 {
    width: 50% !important;
  }
  .small-w66 {
    width: 66.6666% !important;
  }
  .small-w75 {
    width: 75% !important;
  }
  .small-w100,
  .small-wauto {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0;
  }
  /* margins for small screens */
  .small-man {
    margin: 0 !important;
  }
  .small-pan {
    padding: 0 !important;
  }
}
@media (max-width: 320px) {
  /* quick tiny resolution reset */
  .mod,
  .col,
  fieldset {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0;
  }
  .w300p,
  .w400p,
  .w500p {
    width: auto;
    float: none;
  }
  .row {
    display: block !important;
    width: 100% !important;
  }
  /* layouts for tiny screens */
  .tiny-hidden {
    display: none !important;
  }
  .tiny-visible {
    display: block !important;
  }
  .tiny-no-float {
    float: none;
  }
  .tiny-inbl {
    display: inline-block;
    float: none;
    vertical-align: top;
  }
  .tiny-row {
    display: table !important;
    table-layout: fixed !important;
    width: 100% !important;
  }
  .tiny-col {
    display: table-cell !important;
    vertical-align: top !important;
  }
  th,
  td {
    display: block !important;
    width: auto !important;
    text-align: left !important;
  }
  thead {
    display: none;
  }
  /* widths for tiny screens */
  .tiny-w25 {
    width: 25% !important;
  }
  .tiny-w33 {
    width: 33.3333% !important;
  }
  .tiny-w50 {
    width: 50% !important;
  }
  .tiny-w66 {
    width: 66.6666% !important;
  }
  .tiny-w75 {
    width: 75% !important;
  }
  .tiny-w100,
  .tiny-wauto {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0;
  }
  /* margins for tiny screens */
  .tiny-man {
    margin: 0 !important;
  }
  .tiny-pan {
    padding: 0 !important;
  }
}
/* flexbox layout 
Tutorial: http://knacss.com/demos/tutoriel.html#flex */
.flex {
  display: flex;
}
.flex-h {
  flex-direction: row;
}
.flex-v {
  flex-direction: column;
}
.flex-fluid {
  flex: 1;
}
.flex-start {
  order: -1;
}
.flex-mid {
  order: 1;
}
.flex-end {
  order: 42;
}
/* 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,
  .nctv_faq .nctv_faqHeaderSectionItem_title {
    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,
  .nctv_faq .nctv_faqHeaderSectionItem_title {
    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: "";
  }
}
/* ----------------------------- */
/* ==booleans                    */
/* ----------------------------- */
/* ----------------------------- */
/* ==gmaps support               */
/* ----------------------------- */
/* ----------------------------- */
/* ==IE6, IE7, IE8 support       */
/* ----------------------------- */
/* ----------------------------- */
/* ==minor stylings              */
/* ----------------------------- */
/* ----------------------------- */
/* ==own stylesheet              */
/* ----------------------------- */
/* Here should go your own CSS styles */
/* You can also link them with a LESS @import */
/* @import "my-styles.less"; */
/* Lien vers les images */
/* Les dimensions du sprite */
/* Gestion IE versions */
/**
 * borderImage
 * @img {string}
 * @number {number}
 * @repeat {string}
 * http://www.w3.org/TR/css3-background/#border-images
 */
/**
 * Debug mixin
 * @size {string}
 * @color {string}
 */
/**
 * Transitions CSS
 */
/**
 * Gradient
 */
/**
 * Background image
 */
/**
 * Positionner un élement en absolu
 */
/**
 * Size
 */
/**
 * Box shadow
 */
/**
 * No box shadow
 */
/**
 * Sprite
 */
/**
 * Target sprite
 */
/**
 * Désactiver la sélection
 */
.disableSelection {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/**
 * Accélération matérielle 2D du pauvre
 */
.hwa2 {
  transform: translate2D(0px, 0px) !important;
}
/**
 * Accélération matérielle 3D du pauvre
 */
.hwa3 {
  transform: translate3D(0px, 0px, 0px) !important;
}
/**
 * Couleurs
 */
/**
 *  -> Régler les dimensions du sprite dans lib/dependencies/lhless/config.less 
 */
.sprite-sprite-hd {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
}
/**
 * Replacer les déclarations ci-dessous lors de la mise à jour du sprite, depuis sprite-sd.less
 * Copier coller les 2 PNG (retina et non retina) dans deploy
 */
.sprite-sd-appstore {
  width: 120px;
  height: 35px;
  background-position: -74px -81px;
}
.sprite-sd-arrow-2-right-grey {
  width: 5px;
  height: 8px;
  background-position: -212px -61px;
}
.sprite-sd-arrow-2-right-white {
  width: 5px;
  height: 8px;
  background-position: -219px -61px;
}
.sprite-sd-arrow-down-green {
  width: 8px;
  height: 5px;
  background-position: -15px -249px;
}
.sprite-sd-arrow-down-grey {
  width: 10px;
  height: 6px;
  background-position: -177px -207px;
}
.sprite-sd-arrow-right-grey {
  width: 8px;
  height: 10px;
  background-position: -165px -244px;
}
.sprite-sd-arrow-right-white {
  width: 8px;
  height: 10px;
  background-position: -175px -244px;
}
.sprite-sd-arrow-up-grey {
  width: 11px;
  height: 5px;
  background-position: -2px -249px;
}
.sprite-sd-arrow-up-grey-2 {
  width: 8px;
  height: 7px;
  background-position: -189px -207px;
}
.sprite-sd-buy-white {
  width: 11px;
  height: 10px;
  background-position: -175px -67px;
}
.sprite-sd-check-green {
  width: 17px;
  height: 13px;
  background-position: -223px -240px;
}
.sprite-sd-clock-grey-1 {
  width: 14px;
  height: 14px;
  background-position: -242px -240px;
}
.sprite-sd-clock-grey-2 {
  width: 14px;
  height: 14px;
  background-position: -370px -210px;
}
.sprite-sd-clock-grey-big {
  width: 20px;
  height: 20px;
  background-position: -343px -50px;
}
.sprite-sd-close-grey {
  width: 9px;
  height: 9px;
  background-position: -132px -244px;
}
.sprite-sd-close-white {
  width: 16px;
  height: 16px;
  background-position: -356px -116px;
}
.sprite-sd-close-white-2 {
  width: 9px;
  height: 9px;
  background-position: -143px -244px;
}
.sprite-sd-cross-white {
  width: 11px;
  height: 11px;
  background-position: -123px -68px;
}
.sprite-sd-delete-white {
  width: 9px;
  height: 9px;
  background-position: -154px -244px;
}
.sprite-sd-dot-white {
  width: 8px;
  height: 8px;
  background-position: -185px -244px;
}
.sprite-sd-dropdown_arrow {
  width: 14px;
  height: 7px;
  background-position: -188px -67px;
}
.sprite-sd-facebook {
  width: 9px;
  height: 19px;
  background-position: -402px -205px;
}
.sprite-sd-fleche-bas {
  width: 16px;
  height: 16px;
  background-position: -363px -96px;
}
.sprite-sd-fleche-droite {
  width: 16px;
  height: 16px;
  background-position: -374px -114px;
}
.sprite-sd-googleplay {
  width: 101px;
  height: 35px;
  background-position: -74px -183px;
}
.sprite-sd-googleplus {
  width: 22px;
  height: 20px;
  background-position: -341px -74px;
}
.sprite-sd-hd-dark {
  width: 31px;
  height: 22px;
  background-position: -291px -183px;
}
.sprite-sd-hd-grey {
  width: 31px;
  height: 22px;
  background-position: -305px -207px;
}
.sprite-sd-hdvf-grey {
  width: 47px;
  height: 22px;
  background-position: -242px -183px;
}
.sprite-sd-hdvf-grey-2 {
  width: 47px;
  height: 22px;
  background-position: -204px -159px;
}
.sprite-sd-hdvo-grey {
  width: 47px;
  height: 22px;
  background-position: -258px -231px;
}
.sprite-sd-hdvo-grey-2 {
  width: 47px;
  height: 22px;
  background-position: -256px -207px;
}
.sprite-sd-hdvost-grey {
  width: 63px;
  height: 22px;
  background-position: -67px -225px;
}
.sprite-sd-hdvost-grey-2 {
  width: 63px;
  height: 22px;
  background-position: -2px -225px;
}
.sprite-sd-list_bigArrow {
  width: 9px;
  height: 15px;
  background-position: -404px -184px;
}
.sprite-sd-loop-white {
  width: 12px;
  height: 11px;
  background-position: -81px -68px;
}
.sprite-sd-moins-10-csa-grey {
  width: 26px;
  height: 22px;
  background-position: -285px -85px;
}
.sprite-sd-moins-10-csa-grey-2 {
  width: 26px;
  height: 22px;
  background-position: -298px -135px;
}
.sprite-sd-moins-12-csa-grey {
  width: 26px;
  height: 22px;
  background-position: -310px -26px;
}
.sprite-sd-moins-12-csa-grey-2 {
  width: 26px;
  height: 22px;
  background-position: -287px -50px;
}
.sprite-sd-moins-16-csa-grey {
  width: 26px;
  height: 22px;
  background-position: -315px -50px;
}
.sprite-sd-moins-16-csa-grey-2 {
  width: 26px;
  height: 22px;
  background-position: -313px -74px;
}
.sprite-sd-moins-18-csa-grey {
  width: 26px;
  height: 22px;
  background-position: -342.99999999px -2px;
}
.sprite-sd-moins-18-csa-grey-2 {
  width: 26px;
  height: 22px;
  background-position: -338px -26px;
}
.sprite-sd-moins-grey {
  width: 8px;
  height: 2px;
  background-position: -25px -249px;
}
.sprite-sd-picto-cle {
  width: 64px;
  height: 64px;
  background-position: -81px -2px;
}
.sprite-sd-picto-cle-gris {
  width: 16px;
  height: 16px;
  background-position: -356px -174px;
}
.sprite-sd-picto-engrenage {
  width: 63px;
  height: 63px;
  background-position: -147px -2px;
}
.sprite-sd-picto-engrenage-gris {
  width: 16px;
  height: 16px;
  background-position: -371px -153px;
}
.sprite-sd-picto-perso {
  width: 63px;
  height: 63px;
  background-position: -74px -118px;
}
.sprite-sd-picto-perso-gris {
  width: 16px;
  height: 16px;
  background-position: -377px -132px;
}
.sprite-sd-picto-play {
  width: 63px;
  height: 63px;
  background-position: -139px -118px;
}
.sprite-sd-picto-play-gris {
  width: 16px;
  height: 16px;
  background-position: -370px -192px;
}
.sprite-sd-pinterest {
  width: 17px;
  height: 19px;
  background-position: -352px -153px;
}
.sprite-sd-play-big {
  width: 39px;
  height: 39px;
  background-position: -204px -118px;
}
.sprite-sd-play-large {
  width: 77px;
  height: 77px;
  background-position: -2px -2px;
}
.sprite-sd-play-small {
  width: 33px;
  height: 33px;
  background-position: -212px -2px;
}
.sprite-sd-plus-grey {
  width: 11px;
  height: 11px;
  background-position: -136px -68px;
}
.sprite-sd-plus-grey-2 {
  width: 8px;
  height: 8px;
  background-position: -195px -244px;
}
.sprite-sd-profil-picto-green {
  width: 24px;
  height: 22px;
  background-position: -326px -135px;
}
.sprite-sd-profil-picto-grey {
  width: 24px;
  height: 22px;
  background-position: -326px -159px;
}
.sprite-sd-puce-grey {
  width: 4px;
  height: 4px;
  background-position: -35px -249px;
}
.sprite-sd-question-picto-green {
  width: 24px;
  height: 24px;
  background-position: -277px -109px;
}
.sprite-sd-question-picto-grey {
  width: 24px;
  height: 24px;
  background-position: -303px -109px;
}
.sprite-sd-replay-1 {
  width: 51px;
  height: 16px;
  background-position: -245px -141px;
}
.sprite-sd-replay-2 {
  width: 57px;
  height: 22px;
  background-position: -197px -216px;
}
.sprite-sd-sdvf-grey {
  width: 47px;
  height: 22px;
  background-position: -247px -2px;
}
.sprite-sd-sdvf-grey-2 {
  width: 47px;
  height: 22px;
  background-position: -212px -37px;
}
.sprite-sd-sdvo-grey {
  width: 47px;
  height: 22px;
  background-position: -261px -26px;
}
.sprite-sd-sdvo-grey-2 {
  width: 47px;
  height: 22px;
  background-position: -238px -61px;
}
.sprite-sd-sdvost-grey {
  width: 63px;
  height: 22px;
  background-position: -177px -183px;
}
.sprite-sd-sdvost-grey-2 {
  width: 63px;
  height: 22px;
  background-position: -132px -220px;
}
.sprite-sd-search-grey-1 {
  width: 16px;
  height: 16px;
  background-position: -374px -171px;
}
.sprite-sd-search-grey-2 {
  width: 16px;
  height: 16px;
  background-position: -389px -150px;
}
.sprite-sd-share-grey {
  width: 13px;
  height: 15px;
  background-position: -387px -226px;
}
.sprite-sd-star-green-1 {
  width: 14px;
  height: 14px;
  background-position: -371px -226px;
}
.sprite-sd-star-green-2 {
  width: 14px;
  height: 14px;
  background-position: -386px -210px;
}
.sprite-sd-star-grey {
  width: 14px;
  height: 14px;
  background-position: -392px -168px;
}
.sprite-sd-star-grey-2 {
  width: 12px;
  height: 11px;
  background-position: -95px -68px;
}
.sprite-sd-star-grey-3 {
  width: 14px;
  height: 14px;
  background-position: -388px -189px;
}
.sprite-sd-star-little-green {
  width: 11px;
  height: 11px;
  background-position: -149px -67px;
}
.sprite-sd-star-little-grey {
  width: 11px;
  height: 11px;
  background-position: -162px -67px;
}
.sprite-sd-star-pink {
  width: 12px;
  height: 11px;
  background-position: -109px -68px;
}
.sprite-sd-switch_check {
  width: 16px;
  height: 14px;
  background-position: -205px -240px;
}
.sprite-sd-toast-icon {
  width: 30px;
  height: 30px;
  background-position: -245px -109px;
}
.sprite-sd-tv-1 {
  width: 25px;
  height: 16px;
  background-position: -329px -116px;
}
.sprite-sd-tv-2 {
  width: 30px;
  height: 22px;
  background-position: -307px -231px;
}
.sprite-sd-twitter {
  width: 23px;
  height: 17px;
  background-position: -352px -134px;
}
.sprite-sd-validate-big-green {
  width: 70px;
  height: 70px;
  background-position: -2px -81px;
}
.sprite-sd-validate-big-grey {
  width: 70px;
  height: 70px;
  background-position: -2px -153px;
}
.sprite-sd-validate-small-green {
  width: 40px;
  height: 40px;
  background-position: -196px -76px;
}
.sprite-sd-vf-grey {
  width: 30px;
  height: 22px;
  background-position: -324px -183px;
}
.sprite-sd-vf-grey-2 {
  width: 30px;
  height: 22px;
  background-position: -294px -159px;
}
.sprite-sd-vo-grey {
  width: 30px;
  height: 22px;
  background-position: -339px -231px;
}
.sprite-sd-vo-grey-2 {
  width: 30px;
  height: 22px;
  background-position: -338px -207px;
}
.sprite-sd-vod-1 {
  width: 32px;
  height: 16px;
  background-position: -329px -98px;
}
.sprite-sd-vod-2 {
  width: 39px;
  height: 22px;
  background-position: -253px -159px;
}
.sprite-sd-vost-black {
  width: 45px;
  height: 22px;
  background-position: -296px -2px;
}
.sprite-sd-vost-grey {
  width: 45px;
  height: 22px;
  background-position: -238px -85px;
}
/**
 * Fonts
 */
.nctv_opensans-light {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
.nctv_opensans-regular {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.nctv_opensans-semibold {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
}
.nctv_opensans-bold {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.nctv_arial {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}
.nctv_arial-bold {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
/**
 * Liens
 */
a {
  text-decoration: none;
  color: #4e7905;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
a:hover {
  color: #4e7905;
}
a.nctv_link-small {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #7b7b7b;
  text-decoration: underline;
}
a.nctv_link-small:hover {
  text-decoration: underline;
}
/**
 * Paragraphes
 */
p {
  line-height: 21px;
}
p.nctv_p-small {
  font-size: 12px;
  line-height: 16px;
}
/**
 * Titres
 */
.nctv_h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 40px;
  letter-spacing: -0.025em;
  line-height: 44px;
  color: #333333;
  margin: 0;
}
.nctv_h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: normal;
  line-height: normal;
  color: #333333;
  margin: 0;
}
.nctv_h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: normal;
  line-height: 24px;
  color: #333333;
  margin: 0;
}
.nctv_h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: normal;
  line-height: 24px;
  color: #333333;
  margin: 0;
}
h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 40px;
  letter-spacing: -0.025em;
  line-height: 44px;
  color: #333333;
  margin: 0;
}
h2,
.nctv_faq .nctv_faqHeaderSectionItem_title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: normal;
  line-height: normal;
  color: #333333;
  margin: 0;
}
h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: normal;
  line-height: 24px;
  color: #333333;
  margin: 0;
}
h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: normal;
  line-height: 24px;
  color: #333333;
  margin: 0;
}
/**
 * Boutons
 */
.nctv_button {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  border-radius: 2px;
  padding: 7px 18px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.nctv_button[link-disabled="true"] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.nctv_button.nctv_button-green {
  color: #ffffff;
  background-color: #67a204;
}
.nctv_button.nctv_button-green:hover {
  background-color: #588c01;
}
.nctv_button.nctv_button-white {
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #a4a4a4;
}
.nctv_button.nctv_button-white:hover {
  background-color: #f2f2f2;
}
.nctv_button.nctv_button-fat {
  padding-top: 12px;
  height: 50px;
}
.nctv_button.nctv_button-209 {
  width: 209px;
}
.nctv_button.nctv_button-hasicon {
  text-align: left;
  padding: 7px 18px 8px 11px;
}
.nctv_button.nctv_button-hasicon > span {
  margin-top: -3px;
}
.nctv_button.nctv_button-close {
  width: 40px;
  height: 40px;
  padding: 0;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.nctv_button.nctv_button-close span {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: auto;
  left: auto;
}
.nctv_button.nctv_button-close:hover span {
  position: absolute;
  top: 10px;
  right: 12px;
  bottom: auto;
  left: auto;
}
.nctv_button span {
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
  margin-right: 8px;
}
.nctv_button_filter {
  border-radius: 2px;
  border-top: 1px solid #a4a4a4;
  border-bottom: 1px solid #a4a4a4;
  width: 185px;
  background-color: #ffffff;
}
.nctv_button_filter .nctv_filter_link {
  border-left: 1px solid #a4a4a4;
  border-right: 1px solid #a4a4a4;
  border-top: 1px solid #c6c6c6;
  width: 100%;
  height: 36px;
  line-height: 36px;
  transition: all 0.2s ease-out;
  position: relative;
}
.nctv_button_filter .nctv_filter_link span {
  transition: all 200ms ease-out;
  pointer-events: none;
}
.nctv_button_filter .nctv_filter_link:hover {
  background-color: #f2f2f2;
}
.nctv_button_filter .nctv_filter_link:hover span {
  position: absolute;
  top: 14px;
  right: 8px;
  bottom: auto auto;
  left: auto;
}
.nctv_button_filter .nctv_filter_link:first-child {
  border-top: none;
}
.nctv_button_filter .nctv_filter_link a {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  width: 100%;
  text-indent: 10px;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nctv_button_filter .nctv_filter_link a.nctv_button_filter-lvl2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  text-indent: 20px;
}
.nctv_button_filter .nctv_filter_link span {
  position: absolute;
  top: 14px;
  right: 10px;
  bottom: auto auto;
  left: auto;
}
/**
 * Icônes
 */
.nctv_icon_arrow-right-white {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 8px;
  height: 10px;
  background-position: -175px -244px;
}
.nctv_icon_arrow-right-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 8px;
  height: 10px;
  background-position: -165px -244px;
}
.nctv_icon_arrow2-right-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 5px;
  height: 8px;
  background-position: -212px -61px;
}
.nctv_icon_arrow2-right-white {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 5px;
  height: 8px;
  background-position: -219px -61px;
}
.nctv_icon_arrow-down-grey {
  width: 10px;
  height: 6px;
  background-position: -177px -207px;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
}
.nctv_icon_arrow-down-green {
  width: 8px;
  height: 5px;
  background-position: -15px -249px;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
}
.nctv_icon_star-grey-1 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 14px;
  height: 14px;
  background-position: -392px -168px;
}
.nctv_icon_star-grey-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 12px;
  height: 11px;
  background-position: -95px -68px;
}
.nctv_icon_star-grey-3 {
  width: 14px;
  height: 14px;
  background-position: -388px -189px;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
}
.nctv_icon_share-grey {
  width: 13px;
  height: 15px;
  background-position: -387px -226px;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
}
.nctv_icon_plus-grey {
  width: 11px;
  height: 11px;
  background-position: -136px -68px;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
}
.nctv_icon_star-green-1 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 14px;
  height: 14px;
  background-position: -371px -226px;
}
.nctv_icon_star-green-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 14px;
  height: 14px;
  background-position: -386px -210px;
}
.nctv_icon_star-pink {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 12px;
  height: 11px;
  background-position: -109px -68px;
}
.nctv_icon_dropdown_arrow_up {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 14px;
  height: 7px;
  background-position: -188px -67px;
}
.nctv_icon_cross-white {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 11px;
  height: 11px;
  background-position: -123px -68px;
}
.nctv_icon_dot-white {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 8px;
  height: 8px;
  background-position: -185px -244px;
}
.nctv_icon_dot-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 4px;
  height: 4px;
  background-position: -35px -249px;
}
.nctv_icon_vod-small {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 32px;
  height: 16px;
  background-position: -329px -98px;
}
.nctv_icon_vod-big {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 39px;
  height: 22px;
  background-position: -253px -159px;
}
.nctv_icon_replay-small {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 51px;
  height: 16px;
  background-position: -245px -141px;
}
.nctv_icon_replay-big {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 57px;
  height: 22px;
  background-position: -197px -216px;
}
.nctv_icon_tv-small {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 25px;
  height: 16px;
  background-position: -329px -116px;
}
.nctv_icon_tv-big {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 30px;
  height: 22px;
  background-position: -307px -231px;
}
.nctv_icon_close-white {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -356px -116px;
}
.nctv_icon_close-white-small {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 9px;
  height: 9px;
  background-position: -143px -244px;
}
.nctv_icon_play-small {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 33px;
  height: 33px;
  background-position: -212px -2px;
}
.nctv_icon_play-big {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 39px;
  height: 39px;
  background-position: -204px -118px;
}
.nctv_icon_play-large {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 77px;
  height: 77px;
  background-position: -2px -2px;
}
.nctv_icon_validate-big-green {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 70px;
  height: 70px;
  background-position: -2px -81px;
}
.nctv_icon_validate-big-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 70px;
  height: 70px;
  background-position: -2px -153px;
}
.nctv_icon_validate-small-green {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 40px;
  height: 40px;
  background-position: -196px -76px;
}
.nctv_icon_moins10-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 26px;
  height: 22px;
  background-position: -285px -85px;
}
.nctv_icon_moins12-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 26px;
  height: 22px;
  background-position: -310px -26px;
}
.nctv_icon_moins16-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 26px;
  height: 22px;
  background-position: -315px -50px;
}
.nctv_icon_moins18-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 26px;
  height: 22px;
  background-position: -343px -2px;
}
.nctv_icon_hd-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 31px;
  height: 22px;
  background-position: -305px -207px;
}
.nctv_icon_hd-dark {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 31px;
  height: 22px;
  background-position: -291px -183px;
}
.nctv_icon_vf-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 30px;
  height: 22px;
  background-position: -324px -183px;
}
.nctv_icon_vo-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 30px;
  height: 22px;
  background-position: -339px -231px;
}
.nctv_icon_vost-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 45px;
  height: 22px;
  background-position: -238px -85px;
}
.nctv_icon_moins10-grey-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 26px;
  height: 22px;
  background-position: -298px -135px;
}
.nctv_icon_moins12-grey-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 26px;
  height: 22px;
  background-position: -287px -50px;
}
.nctv_icon_moins16-grey-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 26px;
  height: 22px;
  background-position: -313px -74px;
}
.nctv_icon_moins18-grey-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 26px;
  height: 22px;
  background-position: -338px -26px;
}
.nctv_icon_vo-grey-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 30px;
  height: 22px;
  background-position: -338px -207px;
}
.nctv_icon_vf-grey-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 30px;
  height: 22px;
  background-position: -294px -159px;
}
.nctv_icon_vost-black {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 45px;
  height: 22px;
  background-position: -296px -2px;
}
.nctv_icon_clock-grey-1 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 14px;
  height: 14px;
  background-position: -242px -240px;
}
.nctv_icon_clock-grey-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 14px;
  height: 14px;
  background-position: -370px -210px;
}
.nctv_icon_clock-grey-big {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 20px;
  height: 20px;
  background-position: -343px -50px;
}
.nctv_icon_buy-white {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 11px;
  height: 10px;
  background-position: -175px -67px;
}
.nctv_icon_loop-white {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 12px;
  height: 11px;
  background-position: -81px -68px;
}
.nctv_icon_delete-white {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 9px;
  height: 9px;
  background-position: -154px -244px;
}
.nctv_icon_profil-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 24px;
  height: 22px;
  background-position: -326px -159px;
}
.nctv_icon_question-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 24px;
  height: 24px;
  background-position: -303px -109px;
}
.nctv_icon_profil-green {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 24px;
  height: 22px;
  background-position: -326px -135px;
}
.nctv_icon_question-green {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 24px;
  height: 24px;
  background-position: -277px -109px;
}
.nctv_icon_search-grey-1 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -374px -171px;
}
.nctv_icon_search-grey-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -389px -150px;
}
.nctv_icon_arrow-up-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 11px;
  height: 5px;
  background-position: -2px -249px;
}
.nctv_icon_star-little-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 11px;
  height: 11px;
  background-position: -162px -67px;
}
.nctv_icon_star-little-green {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 11px;
  height: 11px;
  background-position: -149px -67px;
}
.nctv_icon_close-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 9px;
  height: 9px;
  background-position: -132px -244px;
}
.nctv_icon_check-green {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 17px;
  height: 13px;
  background-position: -223px -240px;
}
.nctv_icon_appStore {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 120px;
  height: 35px;
  background-position: -74px -81px;
}
.nctv_icon_googlePlay {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 101px;
  height: 35px;
  background-position: -74px -183px;
}
.nctv_icon_arrow-up-grey-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 8px;
  height: 7px;
  background-position: -189px -207px;
}
.nctv_icon_plus-grey-2 {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 8px;
  height: 8px;
  background-position: -195px -244px;
}
.nctv_icon_moins-grey {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 8px;
  height: 2px;
  background-position: -25px -249px;
}
.nctv_icon_facebook {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 9px;
  height: 19px;
  background-position: -402px -205px;
}
.nctv_icon_twitter {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 23px;
  height: 17px;
  background-position: -352px -134px;
}
.nctv_icon_googleplus {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 22px;
  height: 20px;
  background-position: -341px -74px;
}
.nctv_icon_pinterest {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 17px;
  height: 19px;
  background-position: -352px -153px;
}
.nctv_icon_faq_cle {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 64px;
  height: 64px;
  background-position: -81px -2px;
}
.nctv_icon_faq_cle-gris {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -356px -174px;
}
.nctv_icon_faq_play {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 63px;
  height: 63px;
  background-position: -139px -118px;
}
.nctv_icon_faq_play-gris {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -370px -192px;
}
.nctv_icon_faq_engrenage {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 63px;
  height: 63px;
  background-position: -147px -2px;
}
.nctv_icon_faq_engrenage-gris {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -371px -153px;
}
.nctv_icon_faq_perso {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 63px;
  height: 63px;
  background-position: -74px -118px;
}
.nctv_icon_faq_perso-gris {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -377px -132px;
}
.nctv_icon_faq_fleche-droite {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -374px -114px;
}
.nctv_icon_faq_fleche-bas {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -363px -96px;
}
/**
 * Promos
 * (bloc orange bord arrondie, exemple : '2 mois offerts')
 */
.nctv_promo-big {
  border-radius: 12px;
  background-color: #ff8502;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  line-height: 24px;
  padding: 0 15px;
}
.nctv_promo-small {
  border-radius: 12px;
  background-color: #ff8502;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
  padding: 0 10px;
}
/**
 * Icon infos fiche TV & VOD
 * (exemple : 'Prochainement en replay' ou 'Achat ou location')
 */
.nctv_icon_info {
  padding: 0 8px;
  background-color: #eaeaea;
  font-size: 11px;
  color: #333333;
  display: inline-block;
  vertical-align: top;
  height: 22px;
  line-height: 22px;
}
/**
 * Elements de formulaire
 */
.nctv_field {
  font-size: 0;
}
.nctv_field label {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 14px;
  margin: 0;
  margin-right: 20px;
}
.nctv_field label.nctv_label-block {
  display: block;
  margin: 0 0 10px 0;
}
.nctv_field input {
  width: 220px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 16px;
  border-radius: 2px;
  outline-color: #67a204;
  -webkit-appearance: none;
}
.nctv_field input[type=text] {
  border: 1px solid #c6c6c6;
  background-color: #f2f2f2;
  color: #545454;
  padding: 9px 15px;
}
.nctv_field .nctv_button {
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
  padding: 8px 12px;
  text-transform: uppercase;
  margin-left: 12px;
}
.nctv_field .nctv_field_error {
  display: none;
}
.nctv_field .nctv_field_error .nctv_error_warning {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #e2007a;
}
.nctv_field .nctv_field_error .nctv_error_msg {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #e2007a;
}
.nctv_field .nctv_field_valid {
  display: none;
}
.nctv_field.nctv_field-valid .nctv_field_valid {
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
  margin-left: 12px;
}
.nctv_field.nctv_field-error input[type=text] {
  border: 1px solid #e2007a;
}
.nctv_field.nctv_field-error .nctv_field_error {
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
}
.nctv_field.nctv_field-error .nctv_field_error .nctv_error_warning {
  margin-left: 20px;
}
.nctv_field.nctv_field-error .nctv_field_error .nctv_error_msg {
  margin-left: 12px;
}
textarea {
  display: block;
  width: 100%;
  height: 80px;
  border-radius: 4px;
  background-color: #f2f2f2;
  border: 1px solid #c6c6c6;
  padding: 8px 14px;
  color: #545454;
  overflow: auto;
}
input::-ms-clear {
  display: none;
}
.nctv_miniLoader {
  width: 24px;
  height: 24px;
  background-image: url('../static/img/mini-loader.gif');
  background-size: 100% 100%;
}
html,
body {
  height: 100%;
  color: #545454;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  background-color: #dadada;
}
.nctv_globalContainer {
  min-width: 980px;
  max-width: 1600px;
  min-height: 100%;
  margin: 0 auto;
  background-color: #eaeaea;
}
.nctv_container {
  margin-left: auto;
  margin-right: auto;
  clear: both;
  padding: 0 10px;
  max-width: 1522px;
}
.nctv_container:after {
  content: "";
  display: table;
  clear: both;
}
.nctv_content {
  border: 10px solid red;
  background-image: url('../static/img/bg-degrade.png');
  background-repeat: repeat-x;
  background-position: top left;
}
/**
 * Desktop > 1025px width
 */
/**
 * Composant select
 */
.nctv_select {
  width: 220px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 16px;
  border-radius: 2px;
  border: 1px solid #c6c6c6;
  background-color: #f2f2f2;
  color: #545454;
  padding: 9px 15px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.nctv_select input {
  display: none;
}
.nctv_select .nctv_select_choices {
  width: 220px;
  border: 1px solid #c6c6c6;
  background-color: #f2f2f2;
  position: absolute;
  display: none;
  top: 42px;
  left: -1px;
  z-index: 10000;
  max-height: 275px;
  overflow: hidden;
  overflow-y: scroll;
  overflow-scrolling: touch;
}
.nctv_select .nctv_select_choices span {
  display: block;
  padding: 9px 15px;
  cursor: pointer;
  /*
			&:first-child{
				border-bottom:1px solid @trace_grey_2;
			}
			*/
}
.nctv_select .nctv_select_choices span:hover {
  background-color: #dadada;
}
.nctv_select .nctv_select_arrow {
  position: absolute;
  top: 0px;
  right: 0px;
  pointer-events: none;
  cursor: pointer;
  width: 36px;
  height: 42px;
  border-left: 1px solid #c6c6c6;
  display: inline-block;
  vertical-align: top;
}
.nctv_select .nctv_select_arrow .nctv_icon_arrow-down-grey {
  position: absolute;
  top: 18px;
  left: 13px;
}
/**
 * Champ autocomplétion
 */
.nctv_autocompletion {
  width: 100%;
  height: 34px;
  position: relative;
}
.nctv_autocompletion input {
  width: 100%;
  height: 100%;
  padding: 4px 8px;
  background-color: #f2f2f2;
  border: 1px solid #c6c6c6;
  color: #999999;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  border-radius: 2px;
}
.nctv_autocompletion input:focus {
  border: 1px solid #67a204;
  outline: 0;
  color: #333333;
}
.nctv_autocompletion .nctv_autocompletion_items {
  position: absolute;
  top: 38px;
  right: 0;
  bottom: auto;
  left: 0;
  background-color: #f2f2f2;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  z-index: 10000;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.nctv_autocompletion .nctv_autocompletion_items .nctv_autocompletion_item {
  display: block;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #545454;
  padding: 4px 10px;
  cursor: pointer;
}
.nctv_autocompletion .nctv_autocompletion_items .nctv_autocompletion_item.nctv_autocompletion_item-focus {
  background-color: #67a204;
  color: #ffffff;
}
/**
 * Affichage d'un prix
 */
.nctv_price {
  color: #545454;
}
.nctv_price .nctv_price_from {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}
.nctv_price .nctv_price_euros {
  display: inline-block;
  vertical-align: top;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.nctv_price .nctv_price_right {
  display: inline-block;
  vertical-align: top;
}
.nctv_price .nctv_price_right .nctv_price_centimes {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  display: block;
}
.nctv_price .nctv_price_right .nctv_price_mois {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  display: block;
}
.nctv_price.nctv_price-small .nctv_price_euros {
  font-size: 40px;
  line-height: 40px;
}
.nctv_price.nctv_price-small .nctv_price_right {
  margin-top: 3px;
}
.nctv_price.nctv_price-small .nctv_price_right .nctv_price_centimes {
  font-size: 18px;
  line-height: 18px;
  word-spacing: -2px;
}
.nctv_price.nctv_price-small .nctv_price_right .nctv_price_mois {
  font-size: 12px;
  line-height: 12px;
}
.nctv_price.nctv_price-opacity {
  opacity: 0.6;
}
.nctv_price.nctv_price-medium .nctv_price_from {
  font-size: 12px;
  line-height: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  display: block;
}
.nctv_price.nctv_price-medium .nctv_price_euros {
  font-size: 50px;
  line-height: 50px;
}
.nctv_price.nctv_price-medium .nctv_price_right {
  margin-top: 5px;
}
.nctv_price.nctv_price-medium .nctv_price_right .nctv_price_centimes {
  font-size: 25px;
  line-height: 25px;
  word-spacing: -3px;
}
.nctv_price.nctv_price-medium .nctv_price_right .nctv_price_mois {
  font-size: 13px;
  line-height: 13px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}
.nctv_price.nctv_price-big .nctv_price_euros {
  font-size: 64px;
  line-height: 64px;
}
.nctv_price.nctv_price-big .nctv_price_right {
  margin-top: 4px;
}
.nctv_price.nctv_price-big .nctv_price_right .nctv_price_centimes {
  font-size: 34px;
  line-height: 34px;
  word-spacing: -5px;
}
.nctv_price.nctv_price-big .nctv_price_right .nctv_price_mois {
  font-size: 16px;
  line-height: 16px;
}
/**
 * Evaluation par étoile
 */
.nctv_starseval {
  font-size: 0;
}
.nctv_starseval span {
  margin-right: 2px;
}
.nctv_starseval .nctv_starseval_result {
  font-size: 11px;
  display: inline-block;
  margin-left: 4px;
  line-height: 10px;
  letter-spacing: 1px;
  vertical-align: top;
}
/**
 * Tooltip
 */
.nctv_tooltip {
  /* Hide the tooltip content by default */
  /* Position tooltip above the element */
  /* Triangle hack to make tooltip look like a speech bubble */
  /* Show tooltip content on hover */
}
.nctv_tooltip[data-tooltip] {
  position: relative;
}
.nctv_tooltip[data-tooltip]:before,
.nctv_tooltip[data-tooltip]:after {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.nctv_tooltip[data-tooltip]:before {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  position: absolute;
  bottom: 120%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -79.99999999px;
  font-size: 11px;
  color: #dadada;
  background-color: #3a3a3a;
  width: 160px;
  padding: 2px 12px;
  border-radius: 2px;
  text-align: center;
  content: attr(data-tooltip);
  transition: all 0.2s ease;
}
.nctv_tooltip[data-tooltip]:after {
  position: absolute;
  bottom: 120%;
  left: 50%;
  width: 0;
  border-top: 6px solid #3a3a3a;
  border-right: 2px solid transparent;
  border-left: 2px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  transition: all 0.2s ease;
}
.nctv_tooltip[data-tooltip]:hover:before,
.nctv_tooltip[data-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}
.nctv_checkboxComponent {
  vertical-align: baseline;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.nctv_checkboxComponent > .nctv_checkboxComponent_square {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 18px;
  height: 18px;
  border: 1px solid #c6c6c6;
}
.nctv_checkboxComponent > .nctv_checkboxComponent_square > span {
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  background-color: #67a204;
  display: none;
}
.nctv_checkboxComponent > .nctv_checkboxComponent_label {
  display: inline-block;
  vertical-align: top;
  margin-left: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #545454;
}
.nctv_checkboxComponent.nctv_checkboxComponent-checked > .nctv_checkboxComponent_square > span {
  display: block;
}
.nctv_loaderComponent {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
}
.nctv_loaderComponent > .nctv_loaderComponent_leftBar,
.nctv_loaderComponent > .nctv_loaderComponent_rightBar {
  width: 46%;
  height: 1px;
  border-top: 1px solid #c6c6c6;
  display: none;
}
.nctv_loaderComponent > .nctv_loaderComponent_leftBar {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 8px;
}
.nctv_loaderComponent > .nctv_loaderComponent_rightBar {
  position: absolute;
  top: 50%;
  right: 8px;
  bottom: auto;
  left: auto;
}
.nctv_loaderComponent > .nctv_loaderComponent_spinner {
  display: block;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
}
.nctv_loaderComponent > .nctv_loaderComponent_spinner > span {
  background-color: #666666;
  border-radius: 9px;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 9px;
  height: 9px;
  margin-top: -4.5px;
  margin-left: -4.5px;
}
.nctv_loaderComponent.nctv_loaderComponent-hasHorizontalBars > .nctv_loaderComponent_leftBar,
.nctv_loaderComponent.nctv_loaderComponent-hasHorizontalBars > .nctv_loaderComponent_rightBar {
  display: block;
}
/**
 * Filtres liés
 */
.nctv_linkedfilters {
  background-color: #eaeaea;
  margin: 0;
  padding: 0;
  font-size: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.nctv_linkedfilters li {
  display: inline-block;
  vertical-align: top;
}
.nctv_linkedfilters li > span {
  display: inline-block;
  vertical-align: top;
  height: 36px;
  line-height: 36px;
  color: #545454;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  padding: 0 12px;
  border-top: solid 1px #a4a4a4;
  border-bottom: solid 1px #a4a4a4;
  border-left: 1px solid #c6c6c6;
  cursor: pointer;
}
.nctv_linkedfilters li > span:hover {
  color: #333333;
  background-color: #dadada;
}
.nctv_linkedfilters li.nctv_linkedfilter-active > span {
  background-color: #67a204;
  color: #ffffff;
  border-top: solid 1px #67a204;
  border-bottom: solid 1px #67a204;
  border-left: 1px solid #67a204;
}
.nctv_linkedfilters li.nctv_linkedfilter-active + li span {
  border-left: 1px solid #67a204;
}
.nctv_linkedfilters li:first-child span {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 1px solid #a4a4a4;
}
.nctv_linkedfilters li:first-child.nctv_linkedfilter-active span {
  border-left: 1px solid #67a204;
}
.nctv_linkedfilters li:last-child span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #a4a4a4;
}
.nctv_linkedfilters li:last-child.nctv_linkedfilter-active span {
  border-right: 1px solid #67a204;
}
.nctv_linkedDropdown {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: auto;
  height: 36px;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_button {
  position: relative;
  width: auto;
  height: 100%;
  padding: 7px 38px 0 14px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #a4a4a4;
  border-radius: 3px;
  cursor: pointer;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_button > .nctv_linkedDropdown_value {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #545454;
  text-transform: uppercase;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_button > .nctv_linkedDropdown_stateIndicator {
  position: relative;
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: auto;
  left: auto;
  width: 10px;
  height: 6px;
  background-position: -177px -207px;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  overflow: visible;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_button > .nctv_linkedDropdown_stateIndicator > span {
  position: absolute;
  top: -10px;
  right: -9px;
  bottom: -10px;
  left: -9px;
  background-color: rgba(0, 0, 0, 0);
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer {
  z-index: 100;
  display: none;
  position: absolute;
  top: 46px;
  right: auto;
  bottom: auto;
  left: 0;
  width: auto;
  height: auto;
  font-size: 0;
  clear: both;
  white-space: nowrap;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
  border-collapse: separate;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer:after {
  content: "";
  display: table;
  clear: both;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_arrow {
  position: absolute;
  top: -7px;
  right: auto;
  bottom: auto;
  left: 20px;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 14px;
  height: 7px;
  background-position: -188px -67px;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer {
  display: inline-block;
  vertical-align: top;
  min-width: 210px;
  padding: 10px;
  font-size: 14px;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer > ul {
  margin-top: 0;
  padding-left: 0;
  list-style: none;
  text-indent: 0;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer > ul > .nctv_linkedDropdown_listElement {
  position: relative;
  padding: 5px 25px 5px 8px;
  margin-top: 1px;
  margin-bottom: 1px;
  border-radius: 2px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  text-overflow: ellipsis;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer > ul > .nctv_linkedDropdown_listElement > .nctv_linkedDropdown_listElement_arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  bottom: auto;
  left: auto;
  margin-top: -5px;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 5px;
  height: 8px;
  background-position: -212px -61px;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer > ul > .nctv_linkedDropdown_listElement.nctv_linkedDropdown_listElement-selected,
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer > ul > .nctv_linkedDropdown_listElement.nctv_linkedDropdown_listElement-selected:hover {
  background-color: #67a204;
  color: #ffffff;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer > ul > .nctv_linkedDropdown_listElement.nctv_linkedDropdown_listElement-selected > .nctv_linkedDropdown_listElement_arrow,
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer > ul > .nctv_linkedDropdown_listElement.nctv_linkedDropdown_listElement-selected:hover > .nctv_linkedDropdown_listElement_arrow {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 5px;
  height: 8px;
  background-position: -219px -61px;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer > ul > .nctv_linkedDropdown_listElement.nctv_linkedDropdown_listElement-default {
  font-weight: bold;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer > ul > .nctv_linkedDropdown_listElement:hover {
  background-color: #f2f2f2;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer > ul > .nctv_linkedDropdown_colTitle {
  display: inline-block;
  vertical-align: top;
  height: 21px;
  margin-left: 8px;
  margin-top: 11px;
  margin-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 11px;
  color: #7b7b7b;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer.nctv_linkedDropdown_rightPanel {
  display: none;
}
.nctv_linkedDropdown > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_valuesSubContainer.nctv_linkedDropdown_rightPanel.nctv_linkedDropdown_rightPanel-activated {
  display: inline-block;
  vertical-align: top;
}
.nctv_linkedDropdown.nctv_linkedDropdown-selected > .nctv_linkedDropdown_button {
  background-color: #67a204;
  border: 1px solid #67a204;
}
.nctv_linkedDropdown.nctv_linkedDropdown-selected > .nctv_linkedDropdown_button > .nctv_linkedDropdown_value {
  color: #ffffff;
}
.nctv_linkedDropdown.nctv_linkedDropdown-selected > .nctv_linkedDropdown_button > .nctv_linkedDropdown_stateIndicator {
  top: 13px;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 9px;
  height: 9px;
  background-position: -143px -244px;
  overflow: visible;
}
.nctv_linkedDropdown.nctv_linkedDropdown-open > .nctv_linkedDropdown_valuesContainer {
  display: block;
}
.nctv_linkedDropdown.nctv_linkedDropdown-doublePanels > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_leftPanel {
  border-right: 1px solid #dadada;
}
.nctv_linkedDropdown.nctv_linkedDropdown-doublePanels > .nctv_linkedDropdown_valuesContainer > .nctv_linkedDropdown_rightPanel {
  margin-left: -1px;
  border-left: 1px solid #dadada;
}
.nctv_header {
  width: 100%;
  background-color: #222222;
}
.nctv_header .nctv_container {
  height: 86px;
  position: relative;
}
.nctv_header .nctv_container .nctv_header_left {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  margin-left: 10px;
}
.nctv_header .nctv_container .nctv_header_left .nctv_header_baseline {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #666666;
  margin-top: 10px;
}
.nctv_header .nctv_container .nctv_header_left .nctv_header_logo {
  display: block;
  margin-top: 10px;
}
.nctv_header .nctv_container .nctv_header_right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  margin-right: 10px;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_submenu {
  clear: both;
  margin-top: 10px;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_submenu:after {
  content: "";
  display: table;
  clear: both;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_submenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_submenu ul li {
  float: left;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_submenu ul li a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #666666;
  margin-left: 20px;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_submenu ul li a:hover {
  color: #dadada;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu {
  clear: both;
  margin-top: 20px;
  float: right;
  height: 24px;
  line-height: 24px;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu:after {
  content: "";
  display: table;
  clear: both;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu span {
  vertical-align: middle;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_user {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #999999;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_login {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #999999;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_login.nctv_header_login-notLogued > a {
  color: #999999;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_login.nctv_header_login-notLogued:hover > a {
  color: #67a204;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_logout {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #7b7b7b;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_logout a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #7b7b7b;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_logout a:hover {
  color: #67a204;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_logout:before {
  content: "|";
  margin-left: 4px;
  margin-right: 6px;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_picto {
  margin-left: 26px;
  vertical-align: middle;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_picto.nctv_icon_profil {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 24px;
  height: 22px;
  background-position: -326px -159px;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_picto.nctv_icon_profil:hover,
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_picto.nctv_icon_profil.nctv_menu_current {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 24px;
  height: 22px;
  background-position: -326px -135px;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_picto.nctv_icon_question {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 24px;
  height: 24px;
  background-position: -303px -109px;
}
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_picto.nctv_icon_question:hover,
.nctv_header .nctv_container .nctv_header_right .nctv_right_menu .nctv_header_picto.nctv_icon_question.nctv_menu_current {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 24px;
  height: 24px;
  background-position: -277px -109px;
}
/**
 * Desktop > 1025px width
 */
@media (min-width: 1025px) {
  .nctv_header .nctv_container .nctv_header_left {
    margin-left: 22px;
  }
  .nctv_header .nctv_container .nctv_header_right {
    margin-right: 22px;
  }
}
.nctv_menu {
  width: 100%;
  background-color: #2a2a2a;
  height: 50px;
  padding: 8px 0;
  line-height: 34px;
}
.nctv_menu .nctv_container {
  position: relative;
}
.nctv_menu .nctv_container .nctv_menu_left {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  margin-left: 10px;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav {
  display: inline-block;
  vertical-align: top;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul li {
  display: inline-block;
  vertical-align: top;
  line-height: 34px;
  border-right: 1px solid #464646;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul li a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #a4a4a4;
  font-size: 15px;
  padding: 0 30px;
  height: 100%;
  display: inline-block;
  vertical-align: top;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul li:first-child a {
  padding-left: 0;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul li:last-child {
  border: none;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul li:last-child.nctv_menu_current:after {
  margin-left: 0;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul li.nctv_menu_current {
  position: relative;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul li.nctv_menu_current a {
  color: #e3e3e3;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul li.nctv_menu_current:after {
  content: "";
  position: absolute;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 11px;
  height: 5px;
  background-position: -2px -249px;
  bottom: -8px;
  left: 50%;
  margin-left: -16px;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul li.nctv_menu_current .nctv_icon_search-grey-1 {
  display: none;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul li.nctv_menu_current .nctv_icon_search-grey-2 {
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav ul li:hover a {
  color: #e3e3e3;
}
.nctv_menu .nctv_container .nctv_menu_left .nctv_menu_nav .nctv_search_nbResult {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 15px;
  color: #7b7b7b;
  vertical-align: middle;
  margin-left: 8px;
}
.nctv_menu .nctv_container .nctv_menu_right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  margin-right: 10px;
}
.nctv_menu .nctv_container .nctv_menu_right .nctv_menu_favorites a .nctv_icon_star {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 11px;
  height: 11px;
  background-position: -162px -67px;
  margin-right: 2px;
}
.nctv_menu .nctv_container .nctv_menu_right .nctv_menu_favorites a .nctv_favorites_label {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #7b7b7b;
}
.nctv_menu .nctv_container .nctv_menu_right .nctv_menu_favorites:hover a .nctv_icon_star,
.nctv_menu .nctv_container .nctv_menu_right .nctv_menu_favorites.nctv_menu_current a .nctv_icon_star {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 11px;
  height: 11px;
  background-position: -149px -67px;
}
.nctv_menu .nctv_container .nctv_menu_right .nctv_menu_favorites:hover a .nctv_favorites_label,
.nctv_menu .nctv_container .nctv_menu_right .nctv_menu_favorites.nctv_menu_current a .nctv_favorites_label {
  color: #67a204;
}
/**
 * Desktop > 1025px width
 */
@media (min-width: 1025px) {
  .nctv_menu .nctv_container .nctv_menu_left {
    margin-left: 22px;
  }
  .nctv_menu .nctv_container .nctv_menu_right {
    margin-right: 22px;
  }
}
.nctv_menufilter {
  width: 100%;
  height: 76px;
  z-index: 100;
}
.nctv_menufilter > .nctv_container {
  position: relative;
  height: 100%;
}
.nctv_menufilter > .nctv_container > .nctv_menufilter_left {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 18px;
  left: 0;
}
.nctv_menufilter > .nctv_container > .nctv_menufilter_left > .nctv_linkedfilters {
  display: inline-block;
  vertical-align: top;
}
.nctv_menufilter > .nctv_container > .nctv_menufilter_left > .nctv_icon_dot-grey {
  display: inline-block;
  vertical-align: top;
  margin: 16px 10px 0 10px;
}
.nctv_menufilter > .nctv_container > .nctv_menufilter_left > .nctv_linkedDropdown {
  margin-right: 10px;
}
.nctv_menufilter > .nctv_container > .nctv_menufilter_left > .nctv_linkedDropdown .nctv_autocompletion {
  margin: 0 5px 6px 5px;
  padding-right: 8px;
}
.nctv_menufilter > .nctv_container > .nctv_menufilter_right {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 18px;
  left: auto;
}
.nctv_menufilter > .nctv_container > .nctv_menufilter_right > .nctv_checkboxComponent {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 7px;
  margin-left: 20px;
}
/**
 * Desktop > 1025px width
 */
/*
@media (min-width: 1025px)
{
	.nctv_menufilter
	{
		.nctv_container
		{
			.nctv_menufilter_left
			{
				//margin-left: 22px;
			}
			.nctv_menufilter_right
			{
				//margin-right: 22px;
			}
		}
	}
}
*/
.nctv_movie {
  width: 233px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  text-align: left;
  display: block;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.nctv_movie .nctv_movie_img {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /*.nctv_movie_logo{
				display: none;			
			}
			*/
}
.nctv_movie .nctv_movie_channelImg {
  background-image: url('../static/img/channel-background.png');
  background-size: 100% 100%;
  background-position: center center;
  position: relative;
}
.nctv_movie .nctv_movie_channelImg > img {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  margin-left: -94.5px;
  margin-top: -70px;
  width: 189px;
  height: 140px;
}
.nctv_movie .nctv_movie_info {
  position: relative;
}
.nctv_movie .nctv_movie_info .nctv_info_shadow {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(34, 34, 34, 0));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00222222', endColorstr='#e6000000', GradientType=0);
  width: 233px;
  height: 140px;
  margin-top: -140px;
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.nctv_movie .nctv_movie_info .nctv_info_shadow .nctv_info_title {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 10px;
  left: 10px;
  width: 215px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-align: left;
}
.nctv_movie .nctv_movie_info .nctv_info_shadow .nctv_info_title a {
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
}
.nctv_movie .nctv_movie_info .nctv_info_shadow .nctv_info_title a:hover {
  text-decoration: none;
}
.nctv_movie .nctv_movie_info .nctv_info_shadow .nctv_info_chaine {
  display: none;
}
.nctv_movie .nctv_movie_info .nctv_info_shadow .nctv_movie_serieNumber {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 33px;
  left: 7px;
  width: auto;
  height: 20px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 3px 6px;
  font-size: 11px;
  line-height: 13px;
  border-radius: 3px;
}
.nctv_movie .nctv_movie_info .nctv_info_bottom {
  background-color: #222222;
  height: 30px;
  line-height: 30px;
  padding: 2px 10px 0 10px;
  font-size: 0;
}
.nctv_movie .nctv_movie_info .nctv_info_bottom .nctv_movie_progress {
  display: none;
}
.nctv_movie .nctv_movie_info .nctv_info_bottom .nctv_info_pictos span {
  margin-right: 1px;
}
.nctv_movie .nctv_movie_info .nctv_info_bottom span {
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
}
.nctv_movie .nctv_movie_info .nctv_info_bottom span.nctv_info_txt {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #c6c6c6;
  margin-left: 10px;
  margin-top: -2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
}
.nctv_movie .nctv_movie_info .nctv_info_bottom span.nctv_info_favorite {
  float: right;
  cursor: pointer;
  position: relative;
  transition: transform 100ms ease-in-out;
}
.nctv_movie .nctv_movie_info .nctv_info_bottom span.nctv_info_favorite::after {
  content: '';
  display: block;
  position: absolute;
  top: -4px;
  right: -6px;
  bottom: 0px;
  left: -6px;
  background-color: transparent;
}
.nctv_movie .nctv_movie_info .nctv_info_bottom span.nctv_info_favorite > span {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 14px;
  height: 14px;
  background-position: -392px -168px;
  position: relative;
  overflow: visible;
}
.nctv_movie .nctv_movie_info .nctv_info_bottom span.nctv_info_favorite:hover {
  transform: scale(1.18) translate(0, 0.5px);
}
.nctv_movie .nctv_movie_links {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.9);
  padding: 12px 12px;
  overflow: hidden;
  opacity: 0;
}
.nctv_movie .nctv_movie_links a {
  margin-bottom: 6px;
}
.nctv_movie .nctv_movie_links a:first-child {
  margin-top: 0;
}
.nctv_movie .nctv_movie_links .nctv_links_infos {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 11px;
  color: #999999;
  margin-top: 10px;
}
.nctv_movie .nctv_movie_links .nctv_links_infos a {
  font-size: 12px;
  color: #67a204;
}
.nctv_movie .nctv_movie_links .nctv_links_channelPromo {
  display: inline-block;
  vertical-align: top;
  color: #dadada;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  margin-top: 6px;
  text-shadow: 0px 0px 6px #000000;
  position: absolute;
  top: auto;
  right: 60px;
  bottom: 10px;
  left: 10px;
  transition: all 0.5s 'ease-out';
}
.nctv_movie .nctv_movie_links .nctv_links_channelPromo:hover {
  color: #ffffff;
}
.nctv_movie .nctv_movie_links .nctv_links_channelPromo > span {
  vertical-align: top;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 9px;
  height: 15px;
  background-position: -404px -184px;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.6);
  margin-top: 2px;
  margin-left: 3px;
}
.nctv_movie .nctv_movie_links > div.nctv_movie_logo {
  width: 60px;
  height: 40px;
  position: absolute;
  top: auto;
  right: 10px;
  bottom: 10px;
  left: auto;
  display: block;
}
.nctv_movie.nctv_movie-small {
  height: 205px;
}
.nctv_movie.nctv_movie-small .nctv_movie_img,
.nctv_movie.nctv_movie-small .nctv_movie_channelImg {
  width: 100%;
  height: 175px;
}
.nctv_movie.nctv_movie-small .nctv_movie_links {
  height: 175px;
  width: 233px;
}
.nctv_movie.nctv_movie-big {
  height: 341px;
}
.nctv_movie.nctv_movie-big .nctv_movie_img,
.nctv_movie.nctv_movie-big .nctv_movie_channelImg {
  width: 100%;
  height: 311px;
}
.nctv_movie.nctv_movie-big .nctv_movie_links {
  height: 311px;
  width: 233px;
}
.nctv_movie.nctv_movie-hasprogress .nctv_movie_info .nctv_info_bottom .nctv_movie_progress {
  display: inline-block;
  vertical-align: top;
  width: 90px;
  vertical-align: middle;
  margin-left: 5px;
  height: 4px;
  border-radius: 3px;
  margin-top: 1px;
  background-color: #3a3a3a;
  overflow: hidden;
}
.nctv_movie.nctv_movie-hasprogress .nctv_movie_info .nctv_info_bottom .nctv_movie_progress > span {
  display: block;
  height: 4px;
  background-color: #a4a4a4;
}
.nctv_movie.nctv_movie-hasprogress .nctv_movie_info .nctv_info_bottom span.nctv_info_txt {
  width: auto;
  margin-right: 6px;
}
.nctv_movie.nctv_movie-haschaine .nctv_movie_info .nctv_info_shadow .nctv_info_title {
  width: 150px;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 30px;
  left: 10px;
}
.nctv_movie.nctv_movie-haschaine .nctv_movie_info .nctv_info_shadow .nctv_info_chaine {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 11px;
  color: #ffffff;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 10px;
  left: 10px;
  width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nctv_movie.nctv_movie-haschaine .nctv_movie_info .nctv_info_shadow .nctv_movie_serieNumber {
  bottom: 53px;
}
.nctv_movie.nctv_movie-haschaine .nctv_movie_img .nctv_movie_logo {
  width: 60px;
  height: 40px;
  position: absolute;
  top: auto;
  right: 10px;
  bottom: 10px;
  left: auto;
  display: block;
  outline: 1px solid #ff0000;
}
.nctv_movie.nctv_movie-haschaine .nctv_movie_logo {
  width: 60px;
  height: 40px;
  position: absolute;
  top: auto;
  right: 10px;
  bottom: 40px;
  left: auto;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.nctv_movie.nctv_movie-isfavorite .nctv_movie_info .nctv_info_bottom span.nctv_info_favorite > span {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 14px;
  height: 14px;
  background-position: -371px -226px;
}
.nctv_movie.nctv_movie-selection {
  cursor: pointer;
}
.nctv_movie.nctv_movie-selection .nctv_movie_contentContainer {
  position: absolute;
  top: 0;
  height: 310px;
  width: 210px;
}
.nctv_movie.nctv_movie-selection .nctv_movie_contentContainer .nctv_movie_content {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.nctv_movie.nctv_movie-selection .nctv_movie_contentContainer .nctv_movie_content .nctv_info_title {
  color: #ffffff;
  line-height: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
}
.nctv_movie.nctv_movie-selection .nctv_movie_contentContainer .nctv_movie_content .nctv_info_chaine {
  color: #dadada;
  font-size: 14px;
  height: 0;
  overflow: hidden;
  transition: all 200ms ease-out;
}
.nctv_movie.nctv_movie-selection .nctv_movie_info .nctv_info_shadow {
  padding-top: 100px;
  transition: all 200ms ease-out;
}
.nctv_movie.nctv_movie-selection .nctv_movie_info .nctv_info_bottom span {
  margin-right: 4px;
}
.nctv_movie.nctv_movie-selection:hover .nctv_movie_contentContainer .nctv_movie_content .nctv_info_chaine {
  height: 60px;
  margin-top: 10px;
}
.nctv_movie.nctv_movie-selection:hover .nctv_movie_info .nctv_info_shadow {
  background: linear-gradient(to top, #000000, rgba(34, 34, 34, 0));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00222222', endColorstr='#ff000000', GradientType=0);
  width: 233px;
  height: 200px;
  margin-top: -200px;
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  padding-top: 110px;
}
.nctv_movie.nctv_movie-bigButton {
  cursor: pointer;
}
.nctv_movie.nctv_movie-noBottom {
  height: 310px;
}
.nctv_movie.nctv_movie-noBottom .nctv_movie_info .nctv_info_shadow .nctv_info_title {
  bottom: 10px;
  width: 212px;
  font-size: 18px;
  white-space: inherit;
  text-overflow: initial;
  line-height: 22px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.nctv_movie.nctv_movie-noBottom .nctv_movie_info .nctv_info_shadow .nctv_info_title a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
}
.nctv_movie.nctv_movie-hasCountdown {
  height: 388px;
}
.nctv_movie.nctv_movie-hasCountdown .nctv_movie_countdown {
  background-color: #222222;
  height: 47px;
  line-height: 47px;
  color: #c6c6c6;
  padding: 0 12px;
  border-top: 1px solid #111111;
}
.nctv_movie.nctv_movie-hasCountdown .nctv_movie_countdown span {
  vertical-align: middle;
}
.nctv_movie.nctv_movie-hasCountdown .nctv_movie_countdown .nctv_icon_clock-grey-2 {
  display: none;
}
.nctv_movie.nctv_movie-hasCountdown .nctv_movie_countdown .nctv_movie_countdownTime {
  margin-left: 4px;
}
.nctv_movie.nctv_movie-hasCountdown .nctv_movie_links .nctv_button-countdownOver {
  display: none;
}
.nctv_movie.nctv_movie-hasCountdown.nctv_movie-countdownOver .nctv_movie_countdown {
  color: #666666;
}
.nctv_movie.nctv_movie-hasCountdown.nctv_movie-countdownOver .nctv_movie_countdown .nctv_icon_clock-grey-1 {
  display: none;
}
.nctv_movie.nctv_movie-hasCountdown.nctv_movie-countdownOver .nctv_movie_countdown .nctv_icon_clock-grey-2 {
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
}
.nctv_movie.nctv_movie-hasCountdown.nctv_movie-countdownOver .nctv_movie_links .nctv_button-countdownOver {
  display: block;
}
.nctv_movie.nctv_movie-record .nctv_movie_info .nctv_info_bottom .nctv_info_txt {
  margin-left: 0;
  width: auto;
}
.nctv_movie.nctv_movie-generated .nctv_movie_links {
  padding-top: 20px;
  transition: all 200ms ease-in-out;
}
.nctv_movie.nctv_movie-generated:hover .nctv_movie_links {
  padding-top: 12px;
  opacity: 1;
}
/**
 * Composant push
 */
.nctv_push {
  width: 233px;
  border-radius: 4px;
}
.nctv_push .nctv_push_title {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.nctv_push .nctv_push_title h3 {
  padding: 20px 15px;
  color: #ffffff;
}
.nctv_push .nctv_push_title h3 a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: normal;
  line-height: 24px;
  color: #333333;
  margin: 0;
  color: #ffffff;
}
.nctv_push .nctv_push_img img {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.nctv_push.nctv_push-red .nctv_push_title {
  background-color: #d85d4f;
}
.nctv_push.nctv_push-green .nctv_push_title {
  background-color: #139c4a;
}
/**
 * Dashboard header
 */
.nctv_dashboardheader {
  position: relative;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.nctv_dashboardheader .nctv_dashboardheader_left {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 233px;
  font-size: 14px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
}
.nctv_dashboardheader .nctv_dashboardheader_left .nctv_dashboardheader_img {
  position: relative;
}
.nctv_dashboardheader .nctv_dashboardheader_left .nctv_movie_channelImg {
  background-image: url('../static/img/channel-background.png');
  background-size: 100% 100%;
  background-position: center center;
  width: 100%;
  height: 100%;
}
.nctv_dashboardheader .nctv_dashboardheader_left .nctv_dashboardheader_shadow {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(34, 34, 34, 0));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00222222', endColorstr='#e6000000', GradientType=0);
  width: 233px;
  height: 140px;
  margin-top: -140px;
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.nctv_dashboardheader .nctv_dashboardheader_left .nctv_dashboardheader_shadow .nctv_img_title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
}
.nctv_dashboardheader .nctv_dashboardheader_content {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 249px;
  width: 488px;
  max-width: 731px;
  font-size: 14px;
  padding: 25px 14px 0px 14px;
}
.nctv_dashboardheader .nctv_dashboardheader_content h1 {
  margin-bottom: 20px;
}
.nctv_dashboardheader .nctv_dashboardheader_content p {
  margin: 0;
}
.nctv_dashboardheader .nctv_dashboardheader_content .nctv_button {
  margin-top: 10px;
}
.nctv_dashboardheader .nctv_dashboardheader_content .nctv_content_select {
  margin-top: 20px;
}
.nctv_dashboardheader .nctv_dashboardheader_content .nctv_content_select p {
  margin: 0 0 10px 0;
}
.nctv_dashboardheader .nctv_dashboardheader_content .nctv_content_chaines {
  margin-top: 20px;
  font-size: 0;
}
.nctv_dashboardheader .nctv_dashboardheader_content .nctv_content_chaines > a > img,
.nctv_dashboardheader .nctv_dashboardheader_content .nctv_content_chaines > img {
  margin-right: 20px;
  margin-bottom: 6px;
  width: 42px;
  /*width: 62px;
  height: 48px;*/
}
.nctv_dashboardheader .nctv_dashboardheader_right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: 233px;
  font-size: 14px;
  height: 100%;
  padding: 30px 20px;
  border-left: 1px solid #dadada;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_actionscontainer .nctv_price,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-promo .nctv_price {
  margin-bottom: 0px;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_actionscontainer .nctv_promo-big,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-promo .nctv_promo-big {
  margin-bottom: 10px;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_actionscontainer p,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-promo p {
  margin: 5px 0 5px 0;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_actionscontainer p.nctv_p-small,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-promo p.nctv_p-small {
  color: #a4a4a4;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_actionscontainer .nctv_button,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-promo .nctv_button {
  width: 100%;
  margin-bottom: 10px;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_actionscontainer p {
  margin: 0 0 20px 0;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-active {
  display: none;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-beingactive {
  display: none;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-onlypass {
  display: none;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-promo {
  display: none;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-active,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-beingactive,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-onlypass {
  height: 100%;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-active .nctv_passcontainer_state,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-beingactive .nctv_passcontainer_state,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-onlypass .nctv_passcontainer_state {
  margin-left: auto;
  margin-right: auto;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-active .nctv_passcontainer_state h4,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-beingactive .nctv_passcontainer_state h4,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-onlypass .nctv_passcontainer_state h4 {
  margin-top: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-active .nctv_passcontainer_state span,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-beingactive .nctv_passcontainer_state span,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-onlypass .nctv_passcontainer_state span {
  margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-active .nctv_link-small,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-beingactive .nctv_link-small,
.nctv_dashboardheader .nctv_dashboardheader_right .nctv_passcontainer-onlypass .nctv_link-small {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 20px;
  left: 20px;
}
.nctv_dashboardheader.nctv_dashboardheader-small {
  height: 273px;
}
.nctv_dashboardheader.nctv_dashboardheader-small .nctv_dashboardheader_left .nctv_dashboardheader_img {
  height: 273px;
  width: 233px;
  overflow: hidden;
  /*
				img{
					.place();
					margin-top: -40px; // (354 - 273) / 2
				}
				*/
}
.nctv_dashboardheader.nctv_dashboardheader-small .nctv_dashboardheader_left .nctv_dashboardheader_shadow .nctv_img_title {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 10px;
  left: 10px;
}
.nctv_dashboardheader.nctv_dashboardheader-big {
  height: 355px;
}
.nctv_dashboardheader.nctv_dashboardheader-big .nctv_dashboardheader_left .nctv_dashboardheader_img {
  height: 355px;
  width: 233px;
  overflow: hidden;
}
.nctv_dashboardheader.nctv_dashboardheader-big .nctv_dashboardheader_left .nctv_dashboardheader_img a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}
.nctv_dashboardheader.nctv_dashboardheader-big .nctv_dashboardheader_left .nctv_dashboardheader_img a > span {
  display: block;
  position: absolute;
  top: 152px;
  right: 96px;
  bottom: auto;
  left: auto;
}
.nctv_dashboardheader.nctv_dashboardheader-big .nctv_dashboardheader_left .nctv_dashboardheader_shadow {
  pointer-events: none;
}
.nctv_dashboardheader.nctv_dashboardheader-big .nctv_dashboardheader_left .nctv_dashboardheader_shadow .nctv_img_title {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 10px;
  left: 10px;
}
.nctv_dashboardheader.nctv_dashboardheader-big .nctv_dashboardheader_right .nctv_passcontainer-active .nctv_passcontainer_state h4,
.nctv_dashboardheader.nctv_dashboardheader-big .nctv_dashboardheader_right .nctv_passcontainer-beingactive .nctv_passcontainer_state h4 {
  margin-top: 80px;
}
.nctv_dashboardheader.nctv_dashboardheader-serie .nctv_dashboardheader_left {
  width: 482px;
}
.nctv_dashboardheader.nctv_dashboardheader-serie .nctv_dashboardheader_left .nctv_dashboardheader_shadow {
  width: 482px;
}
.nctv_dashboardheader.nctv_dashboardheader-serie .nctv_dashboardheader_left .nctv_dashboardheader_img {
  width: 482px;
}
.nctv_dashboardheader.nctv_dashboardheader-serie .nctv_dashboardheader_left .nctv_dashboardheader_img img {
  margin: 0;
}
.nctv_dashboardheader.nctv_dashboardheader-serie .nctv_dashboardheader_content {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 498px;
}
.nctv_dashboardheader.nctv_dashboardheader-active .nctv_dashboardheader_right .nctv_actionscontainer {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-active .nctv_dashboardheader_right .nctv_passcontainer-active {
  display: block;
}
.nctv_dashboardheader.nctv_dashboardheader-active .nctv_dashboardheader_right .nctv_passcontainer-onlypass {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-active .nctv_dashboardheader_right .nctv_passcontainer-promo {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-beingactive .nctv_dashboardheader_right .nctv_actionscontainer {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-beingactive .nctv_dashboardheader_right .nctv_passcontainer-beingactive {
  display: block;
}
.nctv_dashboardheader.nctv_dashboardheader-beingactive .nctv_dashboardheader_right .nctv_passcontainer-onlypass {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-beingactive .nctv_dashboardheader_right .nctv_passcontainer-promo {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-onlypass .nctv_dashboardheader_right .nctv_actionscontainer {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-onlypass .nctv_dashboardheader_right .nctv_passcontainer-beingactive {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-onlypass .nctv_dashboardheader_right .nctv_passcontainer-onlypass {
  display: block;
}
.nctv_dashboardheader.nctv_dashboardheader-onlypass .nctv_dashboardheader_right .nctv_passcontainer-promo {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-promo .nctv_dashboardheader_right .nctv_actionscontainer {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-promo .nctv_dashboardheader_right .nctv_passcontainer-beingactive {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-promo .nctv_dashboardheader_right .nctv_passcontainer-onlypass {
  display: none;
}
.nctv_dashboardheader.nctv_dashboardheader-promo .nctv_dashboardheader_right .nctv_passcontainer-promo {
  display: block;
}
@media (min-width: 1061px) {
  .nctv_dashboardheader .nctv_dashboardheader_content {
    width: 50.5%;
  }
}
@media (min-width: 1025px) and (max-width: 1060px) {
  .nctv_dashboardheader .nctv_dashboardheader_content {
    width: 463px;
  }
}
.nctv_fiche {
  width: 980px;
  padding-bottom: 100px;
}
.nctv_fiche .nctv_block {
  margin-bottom: 16px;
}
.nctv_fiche > .nctv_fiche_leftContainer {
  display: inline-block;
  vertical-align: top;
  width: 730px;
}
.nctv_fiche > .nctv_fiche_rightContainer {
  display: inline-block;
  vertical-align: top;
  width: 244px;
}
.nctv_fiche > .nctv_fiche_rightContainer > .nctv_ficheRight {
  float: right;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests > .nctv_ficheRight.nctv_ficheRight-vod {
  display: none;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests > .nctv_ficheRight.nctv_ficheRight-vod.nctv_ficheRight-available {
  display: none;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests > .nctv_ficheRight.nctv_ficheRight-serie {
  display: none;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests > .nctv_ficheRight.nctv_ficheRight-tv {
  display: none;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests > .nctv_ficheRight.nctv_ficheRight-tv.nctv_ficheRight-available {
  display: none;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests > .nctv_ficheRight.nctv_ficheRight-tv.nctv_ficheRight-limited {
  display: block;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-vodState > .nctv_ficheRight-vod {
  display: block;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-vodState > .nctv_ficheRight-vod.nctv_ficheRight-available {
  display: none;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-availableVodState > .nctv_ficheRight-vod {
  display: none;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-availableVodState > .nctv_ficheRight-vod.nctv_ficheRight-available {
  display: block;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-serie > .nctv_ficheRight-serie {
  display: block;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-tv > .nctv_ficheRight-tv {
  display: block;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-tv > .nctv_ficheRight-tv.nctv_ficheRight-available {
  display: none;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-tv > .nctv_ficheRight-tv.nctv_ficheRight-limited {
  display: none;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-availableTv > .nctv_ficheRight-tv {
  display: none;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-availableTv > .nctv_ficheRight-tv.nctv_ficheRight-available {
  display: block;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-availableTv > .nctv_ficheRight-tv.nctv_ficheRight-limited {
  display: none;
}
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-vodState > .nctv_ficheRight.nctv_ficheRight-tv.nctv_ficheRight-limited,
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-availableVodState > .nctv_ficheRight.nctv_ficheRight-tv.nctv_ficheRight-limited,
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-serie > .nctv_ficheRight.nctv_ficheRight-tv.nctv_ficheRight-limited,
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-tv > .nctv_ficheRight.nctv_ficheRight-tv.nctv_ficheRight-limited,
.nctv_fiche > .nctv_fiche_rightContainer.nctv_fiche_rightContainer-tests.nctv_fiche_rightContainer-availableTv > .nctv_ficheRight.nctv_ficheRight-tv.nctv_ficheRight-limited {
  display: none;
}
.nctv_fiche > .nctv_fiche_bottom {
  margin-top: 20px;
  display: block;
}
.nctv_fiche > .nctv_fiche_bottom > .nctv_fiche_dashboard_results {
  margin-top: 20px;
  width: 100%;
  height: auto;
}
.nctv_fiche > .nctv_fiche_bottom > .nctv_fiche_dashboard_results > .nctv_loaderComponent {
  margin-top: -100px;
}
.nctv_fiche > .nctv_fiche_bottom > .nctv_fiche_dashboard_results > .nctv_dashboard_results {
  min-height: 200px;
}
.nctv_fiche > .nctv_fiche_bottom > .nctv_fiche_dashboard_results > .nctv_dashboard_results > .nctv_dashboard_resultColumn {
  display: inline-block;
  vertical-align: top;
  width: 248px;
  height: 100%;
}
.nctv_fiche > .nctv_fiche_bottom > .nctv_fiche_dashboard_results > .nctv_dashboard_results > .nctv_dashboard_resultColumn .nctv_movie,
.nctv_fiche > .nctv_fiche_bottom > .nctv_fiche_dashboard_results > .nctv_dashboard_results > .nctv_dashboard_resultColumn .nctv_push {
  margin-bottom: 16px;
  text-align: left;
}
.nctv_choixVod {
  width: 730px;
}
.nctv_choixVod .nctv_block {
  margin-bottom: 16px;
}
.nctv_ficheSynopsis {
  background-color: #ffffff;
  padding: 30px 24px;
  border-radius: 4px;
  width: 730px;
}
.nctv_ficheSynopsis .nctv_ficheSynopsis_pictos span {
  margin-right: 3px;
}
.nctv_ficheSynopsis h1 {
  margin-top: 8px;
  margin-bottom: 12px;
}
.nctv_ficheSynopsis .nctv_ficheSynopsis_infos > span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #7b7b7b;
}
.nctv_ficheSynopsis .nctv_ficheSynopsis_infos > span:before {
  content: "|";
  margin-right: 6px;
  margin-left: 6px;
}
.nctv_ficheSynopsis .nctv_ficheSynopsis_infos > span:first-child:before {
  content: none;
}
.nctv_ficheSynopsis .nctv_ficheSynopsis_infos .nctv_starseval {
  display: inline-block;
  vertical-align: middle;
}
.nctv_ficheSynopsis .nctv_ficheSynopsis_synopsis {
  margin-top: 16px;
}
.nctv_ficheSynopsis .nctv_ficheSynopsis_buttons {
  margin-top: 34px;
}
.nctv_ficheSynopsis .nctv_ficheSynopsis_buttons > .nctv_button {
  margin-right: 10px;
}
.nctv_ficheTags {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  width: 730px;
}
.nctv_ficheTags .nctv_ficheTags_col {
  display: inline-block;
  vertical-align: top;
  margin-left: 58px;
}
.nctv_ficheTags .nctv_ficheTags_col:first-child {
  margin-left: 0;
}
.nctv_ficheTags .nctv_ficheTags_col .nctv_ficheTags_label {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #7b7b7b;
  margin-bottom: 8px;
  margin-left: 4px;
}
.nctv_ficheTags .nctv_ficheTags_col .nctv_button_filter {
  margin-bottom: 20px;
}
.nctv_ficheTags .nctv_ficheTags_col .nctv_button_filter.nctv_button_filter-notInteractive :hover {
  background-color: white;
}
.nctv_ficheTags .nctv_ficheTags_col .nctv_button_filter.nctv_button_filter-notInteractive .nctv_filter_link > a {
  cursor: default;
}
.nctv_ficheTags .nctv_ficheTags_col .nctv_button_filter.nctv_button_filter-notInteractive .nctv_filter_link > span {
  display: none;
}
.nctv_ficheCritique {
  background-color: #ffffff;
  padding: 24px 24px 42px 24px;
  border-radius: 4px;
  width: 730px;
}
.nctv_ficheCritique .nctv_ficheCritique_critique {
  margin-top: 16px;
}
.nctv_ficheCritique .nctv_ficheCritique_note {
  margin-top: 20px;
}
.nctv_ficheCritique .nctv_ficheCritique_note .nctv_starseval {
  display: inline-block;
  margin-left: 8px;
}
.nctv_ficheCommentaires {
  background-color: #ffffff;
  padding-top: 24px;
  border-radius: 4px;
  width: 730px;
}
.nctv_ficheCommentaires h1 {
  margin-left: 24px;
}
.nctv_ficheCommentaires .nctv_ficheCommentaires_commentaire {
  border-bottom: 1px solid #c6c6c6;
  padding: 18px 24px 36px 24px;
}
.nctv_ficheCommentaires .nctv_ficheCommentaires_commentaire.nctv_ficheCommentaires_commenter {
  border: none;
}
.nctv_ficheCommentaires .nctv_ficheCommentaires_commentaire .nctv_ficheCommentaires_name {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #333333;
  margin-right: 4px;
}
.nctv_ficheCommentaires .nctv_ficheCommentaires_commentaire .nctv_ficheCommentaires_date {
  font-size: 12px;
  color: #7b7b7b;
  padding-left: 8px;
  border-left: 1px solid #c6c6c6;
}
.nctv_ficheCommentaires .nctv_ficheCommentaires_commentaire textarea {
  margin: 14px 0;
}
.nctv_ficheCommentaires .nctv_ficheCommentaires_plus {
  text-align: center;
  border-top: 1px solid #dadada;
}
.nctv_ficheCommentaires .nctv_ficheCommentaires_plus a {
  line-height: 34px;
}
.nctv_ficheCommentaires .nctv_ficheCommentaires_plus a:after {
  content: "";
  vertical-align: middle;
  margin-left: 8px;
  width: 8px;
  height: 5px;
  background-position: -15px -249px;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
}
.nctv_ficheVideo {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  width: 730px;
}
.nctv_ficheVideo .nctv_ficheVideo_bandeAnnonce {
  border-radius: 4px;
  position: relative;
}
.nctv_ficheVideo .nctv_ficheVideo_bandeAnnonce a {
  position: absolute;
  top: 50%;
  margin-top: -49px;
  left: 50%;
  margin-left: -74.5px;
  color: #ffffff;
}
.nctv_ficheVideo .nctv_ficheVideo_bandeAnnonce a span {
  display: block;
  margin: 0 auto 8px auto;
}
.nctv_ficheRight {
  width: 233px;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}
.nctv_ficheRight .nctv_ficheRight_top .nctv_ficheRight_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 310px;
}
.nctv_ficheRight .nctv_ficheRight_top .nctv_ficheRight_shadow {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(34, 34, 34, 0));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00222222', endColorstr='#e6000000', GradientType=0);
  width: 233px;
  height: 140px;
  margin-top: -140px;
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  position: relative;
}
.nctv_ficheRight .nctv_ficheRight_top .nctv_ficheRight_shadow .nctv_ficheRight_info {
  position: absolute;
  width: 100%;
  bottom: 0;
  color: #ffffff;
  font-size: 11px;
  padding: 0 12px 12px 12px;
}
.nctv_ficheRight .nctv_ficheRight_top .nctv_ficheRight_shadow .nctv_ficheRight_info > span {
  width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.nctv_ficheRight .nctv_ficheRight_top .nctv_ficheRight_shadow .nctv_ficheRight_info .nctv_movie_logo {
  width: 60px;
  height: 40px;
  position: absolute;
  top: auto;
  right: 10px;
  bottom: 10px;
  left: auto;
  display: block;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.nctv_ficheRight .nctv_ficheRight_bottom {
  position: relative;
  padding: 12px 12px 20px 12px;
}
.nctv_ficheRight .nctv_ficheRight_bottom .nctv_promo-small {
  margin-top: 8px;
  margin-bottom: 16px;
}
.nctv_ficheRight .nctv_ficheRight_bottom.nctv_ficheRight_check p {
  width: 140px;
}
.nctv_ficheRight .nctv_ficheRight_bottom.nctv_ficheRight_check .nctv_icon_validate-small-green {
  position: absolute;
  right: 20px;
  top: 20px;
}
.nctv_ficheRight .nctv_ficheRight_bottom .nctv_miniLoader {
  margin: 30px auto;
}
.nctv_ficheRight .nctv_ficheRight_bottom .nctv_button {
  margin-top: 8px;
}
.nctv_ficheRight.nctv_ficheRight-tv .nctv_ficheRight_top .nctv_ficheRight_img {
  height: 175px;
}
.nctv_ficheRight.nctv_ficheRight-tv .nctv_ficheRight_date {
  line-height: 31px;
  font-size: 12px;
  padding: 0 12px;
  border-bottom: 1px solid #c6c6c6;
  position: relative;
}
.nctv_ficheRight.nctv_ficheRight-tv .nctv_ficheRight_date .nctv_ficheRight_number {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  background-color: #dadada;
  border-radius: 9px;
  height: 19px;
  padding: 3px 7px;
  position: absolute;
  top: 6px;
  right: 12px;
  bottom: auto;
  left: auto;
  line-height: 14px;
}
.nctv_ficheRight.nctv_ficheRight-tv .nctv_ficheRight_bottom .nctv_button {
  text-align: center;
}
.nctv_ficheRight.nctv_ficheRight-tv .nctv_ficheRight_bottom .nctv_button span {
  margin-right: 10px;
}
.nctv_profilHeader {
  background-color: #fafafa;
  border-radius: 4px;
  padding: 28px 30px 34px 30px;
  width: 100%;
  position: relative;
}
.nctv_profilHeader .nctv_profilHeader_infos {
  margin-top: 20px;
}
.nctv_profilHeader .nctv_profilHeader_infos p {
  margin: 0;
}
.nctv_profilHeader .nctv_profilHeader_button {
  position: absolute;
  right: 30px;
  top: 28px;
}
.nctv_tabs {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  border-bottom: 1px solid #c6c6c6;
  padding-top: 16px;
}
.nctv_tabs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nctv_tabs ul li {
  display: inline-block;
  vertical-align: top;
}
.nctv_tabs ul li a {
  color: #7b7b7b;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  padding: 0 16px 16px 16px;
  display: block;
}
.nctv_tabs ul li.nctv_tabs_tab-active a {
  border-bottom: 3px solid #67a204;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #545454;
}
.nctv_tabsContents > * {
  display: none;
}
.nctv_tabsContents > .nctv_content-active {
  display: block;
}
.nctv_profilFilter {
  line-height: 36px;
}
.nctv_profilFilter .nctv_linkedfilters {
  display: inline-block;
  vertical-align: top;
}
.nctv_profilFilter .nctv_profilFilter_separator {
  color: #a4a4a4;
  margin: 0 10px;
}
.nctv_profilParameter h3 {
  padding-left: 12px;
}
.nctv_profilParameter .nctv_profilParameter_options {
  border-radius: 4px;
  overflow: hidden;
  margin-top: 16px;
}
.nctv_profilParameter .nctv_profilParameter_options .nctv_profilParameter_line {
  padding: 0 30px;
  background-color: #f2f2f2;
  height: 50px;
  line-height: 50px;
  display: block;
  border-top: 1px solid #dadada;
  position: relative;
}
.nctv_profilParameter .nctv_profilParameter_options .nctv_profilParameter_line:first-child {
  border-top: none;
}
.nctv_profilParameter .nctv_profilParameter_options .nctv_profilParameter_line .nctv_profilParameter_text {
  vertical-align: middle;
}
.nctv_profilParameter .nctv_profilParameter_options .nctv_profilParameter_line .nctv_profilParameter_right {
  position: absolute;
  right: 30px;
  top: 0;
}
.nctv_profilParameter .nctv_profilParameter_options .nctv_profilParameter_line .nctv_profilParameter_right .nctv_checkboxComponent {
  margin-left: 34px;
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
}
.nctv_profilParameter .nctv_profilParameter_options .nctv_profilParameter_line .nctv_profilParameter_right .nctv_checkboxComponent .nctv_checkboxComponent_square {
  vertical-align: middle;
}
.nctv_profilParameter .nctv_profilParameter_options .nctv_profilParameter_line .nctv_profilParameter_right .nctv_checkboxComponent .nctv_checkboxComponent_label {
  margin-left: 6px;
  vertical-align: middle;
}
.nctv_popinVideoBottom {
  background-color: #ffffff;
  border-radius: 6px;
  width: 814px;
  height: 200px;
}
.nctv_popinVideoBottom.nctv_trailerContainer-twoColumns .nctv_popinVideoBottom_section.nctv_popinVideoBottom_left {
  width: 544px;
  margin-right: 0;
}
.nctv_popinVideoBottom.nctv_trailerContainer-twoColumns .nctv_popinVideoBottom_section.nctv_popinVideoBottom_middle {
  display: none;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section {
  display: inline-block;
  vertical-align: top;
  border-left: 1px solid #c6c6c6;
  padding: 24px;
  height: 100%;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_left {
  border: none;
  width: 353px;
  margin-right: 8px;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_left h2 {
  margin-top: 0px;
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_left .nctv_popinVideoBottom_infos {
  margin-top: 0px;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_left .nctv_popinVideoBottom_infos > span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #7b7b7b;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_left .nctv_popinVideoBottom_infos > span:before {
  content: "|";
  margin-right: 6px;
  margin-left: 6px;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_left .nctv_popinVideoBottom_infos > span:first-child:before {
  content: none;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_left .nctv_popinVideoBottom_infos .nctv_starseval_container {
  display: inline-block;
  vertical-align: middle;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_left .nctv_popinVideoBottom_infos .nctv_starseval_container .nctv_starseval {
  display: inline-block;
  vertical-align: middle;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_left .nctv_popinVideoBottom_pictos {
  margin-top: 10px;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_left .nctv_popinVideoBottom_pictos span {
  margin-right: 3px;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_middle {
  width: 186px;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_middle .nctv_price {
  margin-bottom: 8px;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_middle .nctv_button-209 {
  margin-top: 10px;
  width: auto;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_middle.nctv_popinVideoBottom_check {
  position: relative;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_middle.nctv_popinVideoBottom_check p {
  width: 140px;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_middle.nctv_popinVideoBottom_check .nctv_icon_validate-small-green {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_middle .nctv_promo-small {
  margin-top: 6px;
  font-size: 11px;
  font-weight: normal;
}
.nctv_popinVideoBottom .nctv_popinVideoBottom_section.nctv_popinVideoBottom_right {
  width: 259px;
}
.nctv_watchPopin_right .nctv_popinVideoBottom_table,
.nctv_popinVideoBottom_section .nctv_popinVideoBottom_table {
  margin-top: -3px;
  margin-bottom: 14px;
}
.nctv_watchPopin_right .nctv_popinVideoBottom_table .nctv_popinVideoBottom_tableLine,
.nctv_popinVideoBottom_section .nctv_popinVideoBottom_table .nctv_popinVideoBottom_tableLine {
  margin-bottom: 8px;
  width: 100%;
  font-size: 12px;
  height: 26px;
  border-bottom: 1px solid #dadada;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-right: 40px;
}
.nctv_watchPopin_right .nctv_popinVideoBottom_table .nctv_popinVideoBottom_tableLine .nctv_popinVideoBottom_number,
.nctv_popinVideoBottom_section .nctv_popinVideoBottom_table .nctv_popinVideoBottom_tableLine .nctv_popinVideoBottom_number {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  background-color: #dadada;
  border-radius: 9px;
  height: 19px;
  padding: 3px 7px;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: auto;
  left: auto;
  line-height: 14px;
}
.nctv_watchPopin_right > a,
.nctv_popinVideoBottom_section > a {
  display: block;
  margin-bottom: 7px;
  text-align: center;
}
.nctv_popinVodInfos {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  width: 730px;
}
.nctv_popinVodInfos .nctv_popinVodInfos_section {
  padding: 30px 24px;
}
.nctv_popinVodInfos .nctv_popinVodInfos_section.nctv_popinVodInfos_top .nctv_popinVodInfos_pictos span {
  margin-right: -3px;
}
.nctv_popinVodInfos .nctv_popinVodInfos_section.nctv_popinVodInfos_top h1 {
  margin-top: 8px;
  margin-bottom: 10px;
}
.nctv_popinVodInfos .nctv_popinVodInfos_section.nctv_popinVodInfos_top .nctv_popinVodInfos_infos > span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #7b7b7b;
}
.nctv_popinVodInfos .nctv_popinVodInfos_section.nctv_popinVodInfos_top .nctv_popinVodInfos_infos > span:before {
  content: "|";
  margin-right: 8px;
  margin-left: 4px;
}
.nctv_popinVodInfos .nctv_popinVodInfos_section.nctv_popinVodInfos_top .nctv_popinVodInfos_infos > span:first-child:before {
  content: none;
}
.nctv_popinVodInfos .nctv_popinVodInfos_section.nctv_popinVodInfos_top .nctv_popinVodInfos_infos .nctv_starseval {
  display: inline-block;
  vertical-align: middle;
}
.nctv_popinVodInfos .nctv_popinVodInfos_section.nctv_popinVodInfos_top .nctv_popinVodInfos_label {
  margin-top: 30px;
}
.nctv_popinVodInfos .nctv_popinVodInfos_section.nctv_popinVodInfos_bottom {
  padding: 24px;
  background-color: #fafafa;
}
.nctv_popinVodInfos .nctv_popinVodInfos_section.nctv_popinVodInfos_bottom .nctv_popinVodInfos_clock {
  vertical-align: middle;
}
.nctv_popinVodInfos .nctv_popinVodInfos_section.nctv_popinVodInfos_bottom .nctv_bottom_remainingTime {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-left: 8px;
  vertical-align: middle;
}
.nctv_popinVodChoice {
  background-color: #ffffff;
  border-radius: 6px;
  width: 731px;
  overflow: hidden;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section {
  border-top: 1px solid #c6c6c6;
  clear: both;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section:first-child {
  border: none;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section .nctv_popinVodChoice_validationPan {
  clear: both;
  padding-left: 24px;
  height: 0;
  overflow: hidden;
  line-height: 24px;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section .nctv_popinVodChoice_validationPan p {
  margin-top: 8px;
  line-height: 20px;
  width:500px;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section .nctv_popinVodChoice_validationPan .right > .nctv_button {
  margin-top: 0;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section .left {
  height: 66px;
  line-height: 66px;
  position: relative;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section .left .nctv_popinVodChoice_chaine {
  vertical-align: middle;
  margin-left: 30px;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section .left .nctv_popinVodChoice_chaine > img {
  width: 62px;
  height: 48px;
  margin-top: -5px;
  margin-right: 30px;
  vertical-align: middle;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section .left .nctv_popinVodChoice_chaine > * {
  vertical-align: middle;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section .left .nctv_popinVodChoice_quality {
  position: absolute;
  top: 22px;
  left: 190px;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section .right .nctv_price,
.nctv_popinVodChoice .nctv_popinVodChoice_section .right .nctv_button {
  display: inline-block;
  margin: 15px 24px 0 0;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section .right .nctv_button {
  width: 180px;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section.nctv_popinVodChoice_section-unselected {
  background-color: #fafafa;
}
.nctv_popinVodChoice .nctv_popinVodChoice_section.nctv_popinVodChoice_section-unselected .nctv_popinVodChoice_chaine,
.nctv_popinVodChoice .nctv_popinVodChoice_section.nctv_popinVodChoice_section-unselected .nctv_popinVodChoice_quality,
.nctv_popinVodChoice .nctv_popinVodChoice_section.nctv_popinVodChoice_section-unselected .nctv_price {
  opacity: 0.5;
}
.nctv_popinSouscription {
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 6px;
  width: 731px;
}
.nctv_popinSouscription .nctv_popinSouscription_top {
  overflow: hidden;
}
.nctv_popinSouscription .nctv_popinSouscription_top.nctv_popinSouscription-big {
  height: 352px;
}
.nctv_popinSouscription .nctv_popinSouscription_top.nctv_popinSouscription-small {
  height: 260px;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section {
  display: inline-block;
  vertical-align: top;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-left {
  width: 232px;
  height: 100%;
  position: relative;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-left .nctv_movie_channelImg {
  background-image: url('../static/img/channel-background.png');
  background-size: 100% 100%;
  background-position: center center;
  width: 100%;
  height: 100%;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-left .nctv_movie_channelImg > img {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  margin-left: -94.5px;
  margin-top: -70px;
  width: 189px;
  height: 140px;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-left .nctv_popinSouscription_shadow {
  position: absolute;
  width: 100%;
  height: 140px;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(34, 34, 34, 0));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00222222', endColorstr='#e6000000', GradientType=0);
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-left .nctv_popinSouscription_shadow .nctv_img_title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #ffffff;
  text-transform: uppercase;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-right {
  width: 494px;
  padding: 28px 30px 40px;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-right h1 {
  margin-bottom: 24px;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-right .nctv_popinSouscription_content {
  margin-bottom: 18px;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-right .nctv_content_select {
  margin-bottom: 18px;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-right .nctv_content_select > p {
  margin-bottom: 5px;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-right .nctv_field .nctv_label-block {
  margin-bottom: 4px;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-right .nctv_field_error {
  margin-left: 10px;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-right .nctv_miniLoader {
  display: none;
  vertical-align: middle;
  margin: 0 0 0 24px;
}
.nctv_popinSouscription .nctv_popinSouscription_top .nctv_popinSouscription_section.nctv_popinSouscription_section-right .nctv_icon_check-green {
  display: none;
  vertical-align: middle;
  margin: 0 0 0 24px;
}
.nctv_popinSouscription .nctv_popinSouscription_bottom {
  height: 85px;
  background-color: #f2f2f2;
  border-top: 1px solid #dadada;
  padding: 24px 30px 0 0;
}
.nctv_popinSouscription .nctv_popinSouscription_bottom .nctv_popinSouscription_element {
  float: right;
  margin-left: 20px;
  text-align: right;
}
.nctv_popin {
  background-color: #ffffff;
  border-radius: 6px;
  width: 730px;
  padding: 30px 24px 50px;
}
.nctv_popin .nctv_popin_title {
  margin-bottom: 30px;
}
.nctv_popin .nctv_popin_chapeau {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 16px;
}
.nctv_popin .nctv_popin_txtContent {
  margin-top: 20px;
}
/**
 * Le composant popin
 */
.nctv_popinComponent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  display: none;
}
.nctv_popinComponent > .nctv_popinDim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(218, 218, 218, 0.92);
}
.nctv_popinComponent > .nctv_popinCloseBtn {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 42px;
  height: 70px;
  background-color: #67a204;
  border-radius: 0 0 4px 4px;
  cursor: pointer;
  box-shadow: 0px 0 8px rgba(0, 0, 0, 0.3);
  transition: background-color 200ms ease-in-out, height 200ms ease-in-out;
  display: none;
}
.nctv_popinComponent > .nctv_popinCloseBtn > span {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 12px;
  left: 13px;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -356px -116px;
}
.nctv_popinComponent > .nctv_popinCloseBtn:hover {
  height: 76px;
  background-color: #588c01;
}
.nctv_popinComponent > .nctv_popinContentContainer {
  width: 100%;
  height: 100%;
  overflow: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: none;
}
.nctv_popinComponent > .nctv_popinContentContainer > .nctv_popinContent {
  width: auto;
  height: auto;
  margin: 30px auto;
}
.nctv_popinComponent > .nctv_loaderComponent {
  position: absolute;
  top: 43%;
  right: auto;
  bottom: auto;
  left: auto;
}
.nctv_popinComponent > .nctv_loaderComponent > .nctv_loaderComponent_spinner {
  background-color: #ffffff;
  border-radius: 200px;
  box-shadow: 0px 0 8px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1122px) {
  .nctv_popinComponent > .nctv_popinCloseBtn {
    position: absolute;
    right: 10px;
    left: auto;
    margin-left: 0;
  }
}
.nctv_errorPage .nctv_errorPage_wording {
  width: 420px;
  margin: 34px auto 38px auto;
  text-align: center;
}
.nctv_errorPage .nctv_errorPage_wording h1 {
  margin-bottom: 18px;
}
.nctv_errorPage .nctv_errorPage_wording p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 14px;
}
.nctv_errorPage.nctv_404 .nctv_404_tv {
  margin: 0 auto;
  width: 500px;
  position: relative;
}
.nctv_errorPage.nctv_404 .nctv_404_tv img {
  display: block;
}
.nctv_errorPage.nctv_404 .nctv_404_tv .nctv_404_screen {
  position: absolute;
  top: 4px;
  right: 50px;
  bottom: 51px;
  left: 50px;
  overflow: hidden;
  background-image: url('../static/img/tv-noise.jpg');
  background-size: 100% auto;
  cursor: none;
}
.nctv_errorPage.nctv_404 .nctv_404_tv .nctv_404_screen .nctv_404_artifact {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 10px;
  height: 10px;
  background-color: black;
  border-radius: 10px;
}
footer {
  min-width: 980px;
  max-width: 1600px;
  margin: 0 auto;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index:9999;
}
footer .nctv_footer_top {
  background-color: #2a2a2a;
  padding: 24px 12px 12px 12px;
}
footer .nctv_footer_top .nctv_footer_allStores {
  line-height: 16px;
}
footer .nctv_footer_top .nctv_footer_allStores .nctv_footer_store {
  width: 230px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
}
footer .nctv_footer_top .nctv_footer_bottomCols .nctv_footer_col {
  width: 230px;
  display: inline-block;
  vertical-align: top;
  margin-top: 30px;
}
footer .nctv_footer_top .nctv_footer_bottomCols .nctv_footer_col .nctv_footer_item {
  display: block;
}
footer .nctv_footer_top .nctv_footer_bottomCols .nctv_footer_col.nctv_footer_app {
  width: 274px;
  position: relative;
}
footer .nctv_footer_top .nctv_footer_bottomCols .nctv_footer_col.nctv_footer_app .nctv_icon_app {
  margin-top: 10px;
  margin-right: 8px;
}
footer .nctv_footer_top .nctv_footer_bottomCols .nctv_footer_col.nctv_footer_app .nctv_footer_visuelTablet {
  margin-left: 30px;
  position: absolute;
  top: 0;
  display: none;
}
footer .nctv_footer_top .nctv_footer_title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #dadada;
  margin-bottom: 12px;
}
footer .nctv_footer_top .nctv_footer_item {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #7b7b7b;
  margin: 0;
  line-height: 16px;
}
footer .nctv_footer_top a.nctv_footer_item:hover {
  color: #ffffff;
}
footer .nctv_footer_top .nctv_footer_copyright {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #666666;
  text-align: right;
}
footer .nctv_footer_top .nctv_footer_copyright > a {
  color: #666666;
  text-decoration: underline;
  font-weight: normal;
}
footer .nctv_footer_top .nctv_footer_copyright > a:hover {
  color: white;
}
footer .nctv_footer_push {
  height: 152px;
  background-color: #222222;
  position: relative;
}
footer .nctv_footer_push .nctv_footer_pushBackground {
  position: absolute;
}
footer .nctv_footer_push .nctv_footer_pushContent {
  width: 600px;
  margin-left: 390px;
  padding-top: 24px;
  position: relative;
}
footer .nctv_footer_push .nctv_footer_pushContent h2 {
  color: #ffffff;
}
footer .nctv_footer_push .nctv_footer_pushContent p {
  color: #7b7b7b;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  margin: 0;
}
footer .nctv_footer_push .nctv_footer_pushContent .nctv_button {
  position: absolute;
  right: 0;
  top: 56px;
}
footer .nctv_footer_borderBottom {
  height: 2px;
  background-image: url('../static/img/footerBorder.jpg');
  background-position: center;
}
footer .nctv_footer_buttons {
  position: absolute;
  right: 56px;
  top: -30px;
}
footer .nctv_footer_buttons .nctv_footer_btn {
  width: 36px;
  height: 30px;
  background-color: #2a2a2a;
  display: inline-block;
  vertical-align: top;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-left: 6px;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
}
footer .nctv_footer_buttons .nctv_footer_openClose.nctv_footer_openClose-opened .nctv_icon_plus-grey-2 {
  display: none;
}
footer .nctv_footer_buttons .nctv_footer_openClose.nctv_footer_openClose-closed .nctv_icon_moins-grey {
  display: none;
}
/**
 * Desktop > 1025px width
 */
@media (min-width: 1025px) {
  footer .nctv_footer_top {
    padding: 24px 22px 12px 22px;
  }
}
@media (min-width: 1080px) {
  footer .nctv_footer_top .nctv_footer_allStores .nctv_footer_store {
    width: 244px;
  }
  footer .nctv_footer_top .nctv_footer_bottomCols .nctv_footer_col {
    width: 244px;
  }
}
@media (min-width: 1300px) {
  footer .nctv_footer_top .nctv_footer_bottomCols .nctv_footer_col.nctv_footer_app {
    width: 488px;
  }
  footer .nctv_footer_top .nctv_footer_bottomCols .nctv_footer_col.nctv_footer_app .nctv_footer_visuelTablet {
    display: inline-block;
    vertical-align: top;
  }
}
.nctv_searchContainer {
  position: relative;
}
.nctv_searchContainer .nctv_icon_search-grey-1 {
  vertical-align: middle;
  margin-left: 30px;
}
.nctv_searchContainer .nctv_icon_search-grey-2 {
  display: none;
  margin-left: 30px;
}
.nctv_searchContainer .nctv_menu_search {
  display: inline-block;
  vertical-align: top;
  color: #eaeaea;
  border: none;
  background-color: #2a2a2a;
  width: 242px;
  margin: 8px 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 15px;
  color: #e3e3e3;
  padding-bottom: 4px;
}
.nctv_searchContainer .nctv_menu_search:focus {
  border-bottom: 1px solid #464646;
  outline: 0;
}
.nctv_searchContainer .nctv_menu_search:hover::-webkit-input-placeholder {
  color: #e3e3e3;
}
.nctv_searchContainer .nctv_menu_search:hover:-moz-placeholder {
  color: #e3e3e3;
}
.nctv_searchContainer .nctv_menu_search:hover::-moz-placeholder {
  color: #e3e3e3;
}
.nctv_searchContainer .nctv_menu_search:hover:-ms-input-placeholder {
  color: #e3e3e3;
}
.nctv_searchContainer .nctv_search_reset {
  position: absolute;
  right: 0;
  top: 14px;
  cursor: pointer;
  display: none;
  overflow: visible;
}
.nctv_searchContainer .nctv_search_reset > span {
  background-color: transparent;
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
}
.nctv_searchContainer .nctv_autocompletion_items {
  position: absolute;
  top: 41px;
  right: 0;
  bottom: auto;
  left: 54px;
  background-color: #f2f2f2;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  z-index: 20000;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.nctv_searchContainer .nctv_autocompletion_items .nctv_autocompletion_item {
  display: block;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #545454;
  padding: 4px 10px;
  cursor: pointer;
}
.nctv_searchContainer .nctv_autocompletion_items .nctv_autocompletion_item.nctv_autocompletion_item-focus {
  background-color: #67a204;
  color: #ffffff;
}
.nctv_shareButton {
  height: 39px;
  cursor: default;
  position: relative;
  width: 130px;
  transition: all 200ms ease-in-out;
}
.nctv_shareButton > .nctv_shareButton_icons {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 35px;
  background-color: #fafafa;
  overflow: hidden;
  opacity: 0;
  transition: all 200ms ease-in-out;
  white-space: nowrap;
  border-left: 1px solid #a4a4a4;
  font-size: 0;
}
.nctv_shareButton > .nctv_shareButton_icons > .nctv_shareButton_icon {
  display: inline-block;
  vertical-align: top;
  width: 37px;
  height: 37px;
  transition: all 100ms ease-in-out;
}
.nctv_shareButton > .nctv_shareButton_icons > .nctv_shareButton_icon:hover {
  background-color: #dadada;
}
.nctv_shareButton > .nctv_shareButton_icons > .nctv_shareButton_icon > span.nctv_shareButton_facebook {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 9px;
  height: 19px;
  background-position: -402px -205px;
  margin-top: 8px;
  margin-left: 13px;
}
.nctv_shareButton > .nctv_shareButton_icons > .nctv_shareButton_icon > span.nctv_shareButton_twitter {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 23px;
  height: 17px;
  background-position: -352px -134px;
  margin-top: 9px;
  margin-left: 8px;
}
.nctv_shareButton > .nctv_shareButton_icons > .nctv_shareButton_icon > span.nctv_shareButton_googlePlus {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 22px;
  height: 20px;
  background-position: -341px -74px;
  margin-top: 9px;
  margin-left: 10px;
}
.nctv_shareButton > .nctv_shareButton_icons > .nctv_shareButton_icon > span.nctv_shareButton_pinterest {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 17px;
  height: 19px;
  background-position: -352px -153px;
  margin-top: 9px;
  margin-left: 10px;
}
.nctv_shareButton:hover,
.nctv_shareButton.nctv_shareButton-open {
  width: 185px;
  background-color: white !important;
}
.nctv_shareButton:hover > .nctv_shareButton_icons,
.nctv_shareButton.nctv_shareButton-open > .nctv_shareButton_icons {
  opacity: 1;
}
.nctv_toastComponent {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  position: fixed;
  min-height: 80px;
  background-color: #666666;
}
.nctv_toastComponent > .nctv_toastComponent_container {
  width: 814px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.nctv_toastComponent > .nctv_toastComponent_container > .nctv_toastComponent_icon {
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 30px;
  height: 30px;
  background-position: -245px -109px;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: auto;
  margin-top: -15px;
}
.nctv_toastComponent > .nctv_toastComponent_container > .nctv_toastComponent_content {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  display: inline-block;
  vertical-align: top;
  margin: 14px 10px 14px 43px;
}
.nctv_toastComponent > .nctv_toastComponent_container > .nctv_button {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  margin-top: 20px;
}
.nctv_toastComponent:after {
  position: absolute;
  top: auto;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 15px;
  content: '';
  display: block;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4d000000', endColorstr='#00000000', GradientType=0);
}
.nctv_trailerBlock {
  width: 730px;
  height: 432px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
}
.nctv_trailerBlock > iframe {
  width: 100%;
  height: 100%;
}
.nctv_trailerBlock.nctv_trailerBlock-big {
  width: 814px;
  height: 480px;
}
.nctv_trailerContainer {
  width: 814px;
}
.nctv_trailerContainer .nctv_block {
  margin-bottom: 20px;
}
/**
 * Switch ios
 */
.nctv_switchComponent {
  width: 60px;
  height: 30px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.nctv_switchComponent.nctv_switchComponent-on > .nctv_switchComponent_mask {
  background-color: #67a204;
}
.nctv_switchComponent.nctv_switchComponent-on > .nctv_switchComponent_mask > .nctv_switchComponent_innerSlider {
  margin-left: 6px;
}
.nctv_switchComponent.nctv_switchComponent-on > .nctv_switchComponent_mask > .nctv_switchComponent_innerSlider > .nctv_switchComponent_innerButton > span {
  margin-left: 10px;
}
.nctv_switchComponent.nctv_switchComponent-on > a.nctv_switchComponent_whileOff {
  display: none;
}
.nctv_switchComponent.nctv_switchComponent-on > a.nctv_switchComponent_whileOn {
  display: block;
}
.nctv_switchComponent > a {
  margin-top: 5px;
  text-align: center;
}
.nctv_switchComponent > a.nctv_switchComponent_whileOff {
  display: block;
}
.nctv_switchComponent > a.nctv_switchComponent_whileOn {
  display: none;
}
.nctv_switchComponent > .nctv_switchComponent_mask {
  width: 60px;
  height: 30px;
  overflow: hidden;
  position: relative;
  background-color: #cccccc;
  border-radius: 25px;
  transition: background-color 300ms ease-in-out;
}
.nctv_switchComponent > .nctv_switchComponent_mask > .nctv_switchComponent_innerSlider {
  width: 120px;
  height: 100%;
  line-height: 25px;
  margin-left: -23px;
  padding-top: 1px;
  transition: margin-left 300ms ease-in-out;
  transform: translate3D(0px, 0px, 0px) !important;
}
.nctv_switchComponent > .nctv_switchComponent_mask > .nctv_switchComponent_innerSlider > .nctv_switchComponent_stateLabel > span,
.nctv_switchComponent > .nctv_switchComponent_mask > .nctv_switchComponent_innerSlider > .nctv_switchComponent_innerButton > span {
  display: block;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  margin-left: -5px;
  margin-top: -7px;
  transition: margin-left 300ms ease-in-out;
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
}
.nctv_switchComponent > .nctv_switchComponent_mask > .nctv_switchComponent_innerSlider > .nctv_switchComponent_stateLabel {
  display: inline-block;
  width: 20px;
  padding-top: 2px;
  vertical-align: top;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 10px;
  color: white;
  text-transform: uppercase;
}
.nctv_switchComponent > .nctv_switchComponent_mask > .nctv_switchComponent_innerSlider > .nctv_switchComponent_stateLabel > span {
  width: 16px;
  height: 14px;
  background-position: -205px -240px;
  margin-left: -57px;
}
.nctv_switchComponent > .nctv_switchComponent_mask > .nctv_switchComponent_innerSlider > .nctv_switchComponent_innerButton {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  vertical-align: top;
  border-radius: 13px;
  border: 2px solid #bebebe;
  background-color: white;
}
.nctv_switchComponent > .nctv_switchComponent_mask > .nctv_switchComponent_innerSlider > .nctv_switchComponent_innerButton > span {
  width: 9px;
  height: 15px;
  background-position: -404px -184px;
}
.nctv_tutorialView {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30000;
  cursor: pointer;
  min-width: 980px;
  max-width: 1600px;
  margin: 0 auto;
  /**
	 * Tous les fonds
	 */
  /**
	 * Tous les messages
	 */
}
.nctv_tutorialView > .nctv_tutorialView_background {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
}
.nctv_tutorialView > .nctv_tutorialView_background_1 {
  height: 45px;
}
.nctv_tutorialView > .nctv_tutorialView_background_2a {
  right: 360px;
  top: 45px;
  height: 42px;
}
.nctv_tutorialView > .nctv_tutorialView_background_2b {
  left: auto;
  right: 0;
  top: 45px;
  height: 42px;
  width: 360px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), #000000);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff000000', endColorstr='#00000000', GradientType=0);
}
.nctv_tutorialView > .nctv_tutorialView_background_2c {
  left: auto;
  right: 0;
  top: 45px;
  height: 42px;
  width: 360px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0), #000000);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff000000', endColorstr='#00000000', GradientType=0);
}
.nctv_tutorialView > .nctv_tutorialView_background_3 {
  top: 87px;
  height: 49px;
}
.nctv_tutorialView > .nctv_tutorialView_background_4 {
  top: 136px;
  height: 70px;
}
.nctv_tutorialView > .nctv_tutorialView_background_5 {
  top: 206px;
  bottom: 0px;
}
.nctv_tutorialView > .nctv_tutorialView_step {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  background-image: url("../static/img/tutorial-sprite.png");
  background-repeat: no-repeat;
  width: 951px;
}
.nctv_tutorialView > .nctv_tutorialView_step1 {
  top: 240px;
  left: 50%;
  margin-left: -280px;
  height: 311px;
  background-position: 0px 0px;
}
.nctv_tutorialView > .nctv_tutorialView_step2 {
  left: 100px;
  top: 210px;
  height: 207px;
  background-position: 0px -311px;
}
.nctv_tutorialView > .nctv_tutorialView_step3 {
  left: 3%;
  top: 140px;
  height: 171px;
  background-position: 0px -518px;
}
.nctv_tutorialView > .nctv_tutorialView_step4 {
  top: 64px;
  right: -430px;
  height: 332px;
  background-position: 0px -710px;
}
.nctv_popinFrustration {
  width: 816px;
  height: 277px;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}
.nctv_popinFrustration .nctv_popinFrustration_leftPanel {
  display: inline-block;
  vertical-align: top;
  width: 316px;
  height: 100%;
  background-image: url("../static/img/frustration.jpg");
  background-repeat: no-repeat;
}
.nctv_popinFrustration .nctv_popinFrustration_rightPanel {
  display: inline-block;
  vertical-align: top;
  width: 490px;
  height: 100%;
  padding: 24px;
}
.nctv_popinFrustration .nctv_popinFrustration_rightPanel > h2 {
  color: #333333;
}
.nctv_popinFrustration .nctv_popinFrustration_rightPanel > h4 {
  font-weight: bold;
  margin: 20px 0 0 0;
}
.nctv_popinFrustration .nctv_popinFrustration_rightPanel > p {
  margin: 0 0 20px 0;
}
.nctv_popinFrustration .nctv_popinFrustration_rightPanel > h4,
.nctv_popinFrustration .nctv_popinFrustration_rightPanel > p {
  color: #545454;
  font-size: 14px;
}
.nctv_connexionPopin {
  width: 816px;
  height: 400px;
  background-color: #ffffff;
  border-radius: 4px;
  white-space: nowrap;
}
.nctv_connexionPopin > .nctv_connexionPopin_panel {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  height: 100%;
  padding: 24px;
  position: relative;
  white-space: normal;
  text-align: center;
}
.nctv_connexionPopin > .nctv_connexionPopin_panel h2 {
  margin-top: 25px;
}
.nctv_connexionPopin > .nctv_connexionPopin_panel h5 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: normal;
  line-height: 24px;
  color: #333333;
  margin: 15px 0 0 0;
}
.nctv_connexionPopin > .nctv_connexionPopin_panel p {
  color: #7b7b7b;
  display: inline-block;
  vertical-align: top;
  width: 84%;
  line-height: 22px;
}
.nctv_connexionPopin > .nctv_connexionPopin_panel .nctv_button {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 110px;
  left: 50%;
  width: 160px;
  margin-left: -80px;
}
.nctv_connexionPopin > .nctv_connexionPopin_leftPanel {
  background-image: url('../static/img/connexion-labox.jpg');
  background-repeat: no-repeat;
  background-position: left 220px;
}
.nctv_connexionPopin > .nctv_connexionPopin_rightPanel {
  background-color: #f2f2f2;
}
.nctv_watchPopin {
  width: 810px;
  height: 380px;
  padding: 25px;
}
.nctv_watchPopin .nctv_watchPopin_left {
  width: 370px;
  height: 250px;
  float: left;
  background-image: url('../static/img/watch-app.jpg');
  background-repeat: no-repeat;
  background-position: top left;
}
.nctv_watchPopin .nctv_watchPopin_right {
  width: 390px;
  float: right;
}
.nctv_watchPopin .nctv_watchPopin_right > .nctv_popinVideoBottom_table {
  width: 300px;
}
.nctv_watchPopin .nctv_watchPopin_right > p {
  width: 300px;
  font-size: 18px;
  line-height: 24px;
}
.nctv_watchPopin .nctv_watchPopin_right > .nctv_icon_app {
  float: left;
  margin-top: 15px;
  margin-right: 12px;
}
/**
 * Le conteneur du dashboard
 */
#nctv_dashboard {
  position: relative;
  margin: 0 auto;
  min-height: 50%;
  min-width: 996px;
  padding-bottom: 200px;
  /**
	 * Headers
	 */
  /**
	 * Le contenu du dashboard
	 */
}
#nctv_dashboard > .nctv_dashboard_head {
  padding: 0 8px;
}
#nctv_dashboard > .nctv_dashboard_head > .nctv_dashboardheader {
  margin: 30px 0;
}
#nctv_dashboard .nctv_dashboard_head + .nctv_menufilter {
  margin-top: -30px;
}
#nctv_dashboard .nctv_menufilter {
  width: 100%;
  height: 76px;
  visibility: hidden;
  overflow: hidden;
}
#nctv_dashboard .nctv_menufilter .nctv_menufilter_left {
  margin-left: 8px;
}
#nctv_dashboard .nctv_menufilter .nctv_menufilter_right {
  margin-right: 8px;
}
#nctv_dashboard > .nctv_loaderComponent {
  position: absolute;
  top: 70%;
  right: 0;
  bottom: auto;
  left: 0;
}
#nctv_dashboard > .nctv_loaderComponent.nctv_loaderComponent-hasHorizontalBars {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 80px;
  left: 0;
}
#nctv_dashboard .nctv_dashboard_results {
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
}
#nctv_dashboard .nctv_dashboard_results > .nctv_dashboard_resultColumn {
  display: inline-block;
  vertical-align: top;
  width: 249px;
  height: 100%;
}
#nctv_dashboard .nctv_dashboard_results > .nctv_dashboard_resultColumn .nctv_movie,
#nctv_dashboard .nctv_dashboard_results > .nctv_dashboard_resultColumn .nctv_push {
  margin-bottom: 16px;
  margin-left: 8px;
  text-align: left;
}
#nctv_dashboard .nctv_dashboard_results > .nctv_noResult {
  position: absolute;
  top: 40px;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
}
.nctv_selection {
  padding-top: 36px;
  padding-bottom: 36px;
}
.nctv_selection .nctv_linkedDropdown {
  margin: 10px 0 6px 0;
}
.nctv_selection .nctv_menufilter + .nctv_selection_moviesContainer {
  margin-top: 0px;
}
.nctv_selection .nctv_selection_moviesContainer {
  margin: 24px 0 0 -12px;
}
.nctv_selection .nctv_selection_moviesContainer .nctv_movie {
  display: inline-block;
  margin: 0 0 10px 10px;
}
.content .nctv_profil {
  padding-top: 30px;
}
.content .nctv_profil .nctv_tabs {
  margin-top: 12px;
}
.content .nctv_profil .nctv_profilParameter_right .nctv_switchComponent {
  margin-top: 10px;
}
.content .nctv_profil .nctv_profil_filterTitle {
  display: inline-block;
  vertical-align: top;
  height: 21px;
  margin-left: 8px;
  margin-top: 11px;
  margin-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 11px;
  color: #7b7b7b;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.content .nctv_profil .nctv_autocompletion {
  display: inline-block;
  vertical-align: top;
  width: 200px;
  margin-left: 20px;
}
.content .nctv_profil .nctv_profil_content {
  padding-bottom: 70px;
}
.content .nctv_profil .nctv_profil_content .nctv_profil_filter {
  margin-top: 20px;
}
.content .nctv_profil .nctv_profil_content .nctv_profil_dashboard {
  margin-top: 16px;
  margin-left: -12px;
}
.content .nctv_profil .nctv_profil_content .nctv_profil_dashboard .nctv_movie {
  display: inline-block;
  vertical-align: top;
  margin-left: 12px;
  margin-bottom: 16px;
}
.content .nctv_profil .nctv_profil_content.nctv_profil_parameters .nctv_profilParameter {
  margin-top: 32px;
}
.nctv_home {
  position: relative;
  /**
	 * LES SECTIONS
	 */
  /**
	 * Le footer.
	 */
}
.nctv_home * {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}
.nctv_home h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 50px;
  letter-spacing: -0.025em;
  line-height: 54px;
  margin: 0 0 26px 0;
}
.nctv_home .nctv_section_title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 50px;
  letter-spacing: -0.025em;
  line-height: 54px;
  margin: 0 0 26px 0;
}
.nctv_home p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
.nctv_home .nctv_section_text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
.nctv_home .nctv_section {
  position: relative;
  width: 100%;
  background: #ffffff;
  height: 600px;
}
.nctv_home .nctv_section_container {
  position: relative;
  width: 979px;
  margin-left: auto;
  margin-right: auto;
}
.nctv_home .nctv_section_colContainer {
  overflow: hidden;
}
.nctv_home .nctv_section_content {
  text-align: center;
  padding: 70px 0 0 0;
}
.nctv_home .nctv_section_content h2,
.nctv_home .nctv_section_content p {
  color: #ffffff;
}
.nctv_home .nctv_section_content-dark h2,
.nctv_home .nctv_section_content-dark p {
  color: #333333;
}
.nctv_home .nctv_section_contentCaption {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  color: #545454;
  text-align: center;
}
.nctv_home .nctv_button-home {
  padding: 14px 34px 17px 34px;
  margin: 25px 0 0 0;
}
.nctv_home .nctv_sectionIntro {
  height: 800px;
  background: #ffffff url("../static/img/home/visuel-intro.jpg") center top no-repeat;
}
.nctv_home .nctv_sectionPrograms {
  height: 800px;
  background: #ffffff url("../static/img/home/visuel-programmes.jpg") center bottom no-repeat;
}
.nctv_home .nctv_sectionPrograms .nctv_section_content {
  padding: 50px 0 0 0;
}
.nctv_home .nctv_sectionInterface {
  background: #ffffff url("../static/img/home/visuel-interface.jpg") center top no-repeat;
}
.nctv_home .nctv_sectionInterface .nctv_section_content {
  text-align: left;
}
.nctv_home .nctv_sectionWhatPlay {
  background: #ffffff url("../static/img/home/visuel-play.jpg") center top no-repeat;
}
.nctv_home .nctv_sectionWhatPlay .nctv_section_content {
  text-align: left;
  padding: 310px 20px 0 0;
  width: 490px;
}
.nctv_home .nctv_sectionWhenPlay {
  background: #ffffff url("../static/img/home/visuel-when-play.jpg") center top no-repeat;
}
.nctv_home .nctv_sectionWhenPlay .nctv_section_content {
  text-align: left;
  padding: 70px 0px 0 425px;
}
.nctv_home .nctv_sectionWhenPlay img.nctv_sectionWhenPlay_visuel {
  margin: 30px 0 0 0;
}
.nctv_home .nctv_sectionWhenPlay .nctv_section_contentCaption {
  margin: 10px 0 0 0;
}
.nctv_home .nctv_sectionWhenPlay .nctv_sectionWhenPlay_stores {
  text-align: center;
  margin: 15px 0 0 0;
}
.nctv_home .nctv_sectionWhenPlay .nctv_sectionWhenPlay_stores > a > div {
  margin: 0 10px 0 0;
}
.nctv_home .nctv_sectionEmotions {
  background: #ffffff url("../static/img/home/visuel-emotions.jpg") center top no-repeat;
}
.nctv_home .nctv_sectionEmotions .nctv_section_content {
  text-align: left;
  padding: 350px 0px 0 425px;
}
.nctv_home .nctv_sectionClients {
  height: 400px;
  background: #eaeaea;
}
.nctv_home .nctv_sectionClients .nctv_section_colContainer {
  margin: 0 0 0 -41px;
}
.nctv_home .nctv_sectionClients .nctv_section_content {
  text-align: center;
  padding: 48px 0 0 0;
  margin: 0 0 0 41px;
  width: 469px;
  float: left;
}
.nctv_home .nctv_sectionClients .nctv_section_content h2 {
  font-size: 40px;
  margin: 0 0 11px 0;
}
.nctv_home .nctv_sectionClients .nctv_section_content h3 {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.nctv_home .nctv_sectionClients .nctv_section_content p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  margin-top: 8px;
  font-size: 14px;
  line-height: 22px;
}
.nctv_home .nctv_sectionClients .nctv_section_content a {
  z-index: 10;
}
.nctv_home .nctv_sectionClients .nctv_sectionContent_visuelBox {
  position: absolute;
  bottom: -70px;
  left: -23px;
  width: 290px;
  height: 148px;
  z-index: 2;
}
.nctv_home .nctv_homeFooter {
  height: auto;
  background: #222222;
}
.nctv_home .nctv_homeFooter .nctv_homeFooter_container {
  position: relative;
  width: 979px;
  margin-left: auto;
  margin-right: auto;
}
.nctv_home .nctv_homeFooter .nctv_homeFooter_content {
  text-align: center;
  font-size: 12px;
  color: #7b7b7b;
  height: 30px;
  line-height: 30px;
}
.nctv_home .nctv_homeFooter .nctv_homeFooter_raimbox {
  font-size: 0;
  line-height: 0;
  height: 2px;
  background: #ffffff url("../static/img/home/footer-raimbow.png") center top no-repeat;
}
.nctv_faq {
  /**
	 * Le bloc "faqHeader"
	 */
  /**
	 * Le bloc "faqBody"
	 */
}
.nctv_faq * {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}
.nctv_faq h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 50px;
  letter-spacing: normal;
  line-height: normal;
  color: #333333;
  margin: 38px 0 46px 0;
}
.nctv_faq .nctv_container,
.nctv_faq .nctv_faqHeader_container,
.nctv_faq .nctv_faqBody .nctv_faqBody_container {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.nctv_faq .nctv_faqHeader {
  overflow: hidden;
  background: transparent url("../static/img/faq/visuel-background-header.jpg") center top no-repeat;
}
.nctv_faq .nctv_faqHeader_container {
  text-align: center;
  padding: 0 0 40px 0;
}
.nctv_faq .nctv_faqHeader_sectionsContainer {
  overflow: hidden;
  position: relative;
}
.nctv_faq .nctv_faqHeaderSectionItem {
  position: relative;
  background: #ffffff;
  height: 100%;
  width: 233px;
  padding-bottom: 80px;
  border-radius: 4px;
}
.nctv_faq .nctv_faqHeaderSectionItem .nctv_button {
  position: absolute;
  bottom: 39px;
  display: block;
  left: 24px;
  right: 24px;
}
.nctv_faq .nctv_faqHeaderSectionItem_picto {
  margin: 25px auto;
}
.nctv_faq .nctv_faqHeaderSectionItem_title {
  line-height: 30px;
  margin: 0 0 25px 0;
}
.nctv_faq .nctv_faqHeaderSectionItem_link {
  display: block;
  text-align: left;
  margin: 15px 24px;
  line-height: 18px;
}
.nctv_faq .nctv_faqHeaderSectionItemSep {
  font-size: 0;
  line-height: 0;
  background: transparent;
  width: 16px;
}
.nctv_faq .nctv_faqBody .nctv_faqBody_container {
  width: 850px;
  text-align: center;
}
.nctv_faq .nctv_faqBody .nctv_faqBodyContent {
  text-align: left;
  padding: 0 0 100px 0;
}
.nctv_faq .nctv_faqBody .nctv_tabs {
  display: none;
  text-align: left;
}
.nctv_faq .nctv_faqBody .nctv_tabs_picto {
  margin: -4px 5px 0 0;
  vertical-align: middle;
}
.nctv_faq .nctv_faqBody .nctv_accordion {
  background: #ffffff;
  border-radius: 4px;
}
.nctv_faq .nctv_faqBody .nctv_accordionPanel {
  overflow: hidden;
}
.nctv_faq .nctv_faqBody .nctv_accordionPanel-active .nctv_accordionPanel-headingPicto {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -363px -96px;
}
.nctv_faq .nctv_faqBody .nctv_accordionPanel-heading {
  border: 0;
  border-top: 1px;
  border-style: solid;
  border-color: #dadada;
  padding: 26px 25px;
}
.nctv_faq .nctv_faqBody .nctv_accordionPanel-headingPicto {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url('../static/img/sprite-hd.png');
  background-size: 512px 256px;
  width: 16px;
  height: 16px;
  background-position: -374px -114px;
  vertical-align: middle;
  margin: -3px 6px 0 0;
}
.nctv_faq .nctv_faqBody .nctv_accordionPanel-title {
  font-size: 16px;
}
.nctv_faq .nctv_faqBody .nctv_accordionPanel-title > a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #545454;
}
.nctv_faq .nctv_faqBody .nctv_accordionPanel-collapse {
  background: #fafafa;
  height: auto;
}
.nctv_faq .nctv_faqBody .nctv_accordionPanel-body {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  padding: 32px 25px;
}
.annonceProfil{
	text-align: center;
    width: 100%;
}
.nctv_miniLoader2{
	margin: 92px auto;
}
