body, div, h1, h2, h3, p, ul, ol, li, img, header, section, aside, footer, button {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #464646;
}

a {
    text-decoration: none;
    color: #2e6bab;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 984px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.container.small {
    max-width: 950px;
}

.container.very_small {
    max-width: 600px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

#header {
    background: white;
}

.logo {
    padding: 10px 15px 10px 0;
}

h3 {
    padding-bottom: 20px;
    color: #2e6bab;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: bold;
}

h3.sousTitreService {
    color: #e9511c;
    font-weight: 400;
    font-size: 16px;
    padding: 0 0 20px;
    margin-top: -20px;
}

#formButtons {
    font-size: 14px;
}

h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

p {
    line-height: 30px;
    margin-bottom: 20px;
}

p.big {
    font-size: 16px;
}

#menu {
    background: #2e6bab;
    font-family: 'Oswald', sans-serif;
    width: 100%;
    z-index: 999;
    -webkit-transition: background .5s ease;
    -moz-transition: background .5s ease;
    -ms-transition: background .5s ease;
    -o-transition: background .5s ease;
    transition: background .5s ease;
}

#menu.fixed {
    position: fixed;
    top: 0;
    background: white;
}

#menu.fixed .home {
    display: none;
}

#menu li {
    display: inline-block;
    margin: 0 60px;
    position: relative;
}

#menu .liLogo {
    display: none;
    float: left;
    margin: 0 115px 0 0;
}

#menu .liLogo,
#menu .liLogo a {
    width: 102px !important;
}

#menu .liLogo img {
    padding-top: 10px;
    display: inline-block;
}

#menu li div {
    position: absolute;
    top: -4px;
    height: 4px;
    width: 100%;
    background: #e9511c;
    display: none;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

#menu.fixed li div {
    top: 0;
}

#menu.fixed .liLogo {
    display: block;
}

#menu li:hover div, 
#menu .selected div {
    display: block;
}

#menu a {
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
}

#menu.fixed li a {
    height: 60px;
    line-height: 60px;
    color: #2e6bab;
}

#menu a:hover {
    text-decoration: none;
}

#menu2 {
    position: absolute;
    top: -60px;
}

.sl_item>div {
    min-height: 250px;
    padding-top: 30px;
}

.sl_item {
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #2e6bab;
    padding-bottom: 20px;
}

body {
    min-width: 1024px;
}

.sl_slider h2 {
    color: white;
    font-size: 36px;
    padding-bottom: 40px;
    text-transform: uppercase;
}

.sl_slider .container div {
    margin: 0 auto 20px;
    max-width: 70%;
}

.sl_slider .container p {
    background: #2e6bab;
    background: rgba(46,107,171,.85);
    color: white;
    padding: 15px;
    display: inline-block;
}

.button {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    -moz-box-shadow: 0px 0px 0px 3px #e9511c inset;
    -webkit-box-shadow: 0px 0px 0px 3px #2e6bab inset;
    box-shadow: 0px 0px 0px 3px #2e6bab inset;
    border-radius: 50px;
    padding: 13px 23px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #2e6bab;
    text-transform: uppercase;
    margin: 15px 5px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.button:hover {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    color: white;
    background: #2e6bab;
 /* Old browsers */
    background: -moz-linear-gradient(top,  #0d97db 0%, #2d6cad 100%);
 /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0d97db), color-stop(100%,#2d6cad));
 /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #0d97db 0%,#2d6cad 100%);
 /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #0d97db 0%,#2d6cad 100%);
 /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #0d97db 0%,#2d6cad 100%);
 /* IE10+ */
    background: linear-gradient(to bottom,  #0d97db 0%,#2d6cad 100%);
 /* IE6-9 */
    ;
}

.button.orange {
    -moz-box-shadow: 0px 0px 0px 3px #e9511c inset;
    -webkit-box-shadow: 0px 0px 0px 3px #e9511c inset;
    box-shadow: 0px 0px 0px 3px #e9511c inset;
    color: #e9511c;
}

.button.orange:hover,.button.selected {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    background: #e9511c;
    color: white;
 /* Old browsers */
    background: -moz-linear-gradient(top,  #ef5c0d 0%, #f02411 100%);
 /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ef5c0d), color-stop(100%,#f02411));
 /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ef5c0d 0%,#f02411 100%);
 /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ef5c0d 0%,#f02411 100%);
 /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ef5c0d 0%,#f02411 100%);
 /* IE10+ */
    background: linear-gradient(to bottom,  #ef5c0d 0%,#f02411 100%);
 /* IE6-9 */
    ;
}

.sl_slider .button {
    color: white;
}

.content .button {
    margin: 0 0 50px;
}

.caption {
    display: none;
}

.sl_slider_btn {
    width: 62px;
    padding: 0 20px;
    height: 300px;
}

.bloc {
    padding: 25px 0;
}

.box {
    width: 50%;
    margin: -10px auto;
}

.hr {
    background: transparent;
    border-bottom: 1px solid #e1e1e1;
}

.div3>div {
    width: 30.6%;
    float: left;
    padding: 0 2%;
}

.bloc .first {
    padding-left: 0;
}

.bloc .last {
    padding-right: 0;
}

.clearfix {
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: both;
}

.blocImg {
    position: relative;
    text-align: center;
}

.blocImg img {
    width: 100%;
}

.blocImg .title {
    position: absolute;
    left: 0;
    right: 0;
    top: 12px;
    margin-left: auto;
    margin-right: auto;
}

.blocImg h3 {
    font-size: 16px;
    color: white;
    background: #2e6bab;
    background: rgba(46,107,171,.85);
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px;
    display: inline;
    vertical-align: top;
    white-space: nowrap;
}

#presentation p {
    min-height: 150px;
}

#presentation a {
    color: #464646;
}

.imgLink {
    position: relative;
    top: 0;
    display: block;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    text-decoration: none !important;
}

.imgLink:hover {
    top: -6px;
    opacity: .85;
}

.imgLink:hover h3 {
    background: #e9511c;
    background: rgba(233,81,28,.85);
}

.iconLink {
    padding-right: 33px;
    display: inline-block;
    height: 27px;
    background: url(../img/arrow.png) no-repeat right center;
    line-height: 27px;
    color: #2e6bab;
    font-weight: 600;
    float: right;
    margin-top: 15px;
}

.adv {
    background: url(../img/backgrounds/nextevent.jpg) center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 240px;
    display: block;
    border-top: 4px solid white;
}

.adv p {
    background: #2e6bab;
    background: rgba(46,107,171,.85);
    color: white;
    font-size: 26px;
    margin-top: 75px;
    padding: 15px;
    font-family: 'Oswald', sans-serif;
    display: inline-block;
    float: right;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.adv p span {
    max-width: 320px;
    display: inline-block;
}

.adv:hover p {
    background: #e9511c;
    background: rgba(233,81,28,.85);
}

.adv p img {
    float: right;
    margin-left: 10px;
}

#footer {
    background: #2e6bab url(../img/bluebg.png);
    color: white;
}

#footer .container > div {
    width: 21%;
    float: left;
    padding: 2%;
}

#footer a {
    color: #a4c3e3;
}

#footer h4 a {
    color: white;
}

#footer li {
    line-height: 1.6;
}

#footer2 {
    background: #2e6bab;
    color: white;
}

#footer2 p {
    padding-left: 2%;
    margin-bottom: 0;
}

#footer2 a {
    color: #a4c3e3;
}

.content {
    margin-left: 265px;
    padding: 40px 40px;
    background: white;
    background: rgba(255,255,255,.9);
    width: 679px;
}

.item {
    margin-bottom: 60px;
    opacity: 0;
    min-height: 300px;
    -webkit-transition: opacity .25s ease-in;
    -moz-transition: opacity .25s ease-in;
    -o-transition: opacity .25s ease-in;
    transition: opacity .25s ease-in;
}

.text {
    width: 365px;
    float: left;
}

.content.noside {
    width: 600px;
}

.content.noside .text {
    width: 560px;
}

.side {
    float: right;
    width: 274px;
}

.content li {
    padding-left: 30px;
    background: url(../img/arrow_list_orange.png) no-repeat 0 2px;
}

#header,#menu,#footer,#footer2,.adv {
    position: relative;
    z-index: 1;
}

html,body {
    height: 100%;
}

.fullbg {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #eee;
    opacity: 0;
    -webkit-transition: opacity .25s ease-in;
    -moz-transition: opacity .25s ease-in;
    -o-transition: opacity .25s ease-in;
    transition: opacity .25s ease-in;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    left: 0px;
    position: fixed;
    top: 0px;
    right: 0;
    bottom: 0;
}

.fullbg.tv {
    background-image: url(../img/backgrounds/tv.jpg);
}

.fullbg.sports {
    background-image: url(../img/backgrounds/sport.jpg);
}

.fullbg.film {
    background-image: url(../img/backgrounds/film.jpg);
}

.fullbg.music {
    background-image: url(../img/backgrounds/music.jpg);
}

.fullbg.tv {
    background-image: url(../img/backgrounds/tv.jpg);
}

.fullbg.sports {
    background-image: url(../img/backgrounds/sports.jpg);
}

.fullbg.film {
    background-image: url(../img/backgrounds/film.jpg);
}

.fullbg.music {
    background-image: url(../img/backgrounds/music.jpg);
}

.fullbg.ice {
    background-image: url(../img/backgrounds/ice.jpg);
}

.fullbg.bcompliance {
    background-image: url(../img/backgrounds/bcompliance.jpg);
}

.fullbg.livemonitoring {
    background-image: url(../img/backgrounds/livemonitoring.jpg);
}

.fullbg.webcompliance {
    background-image: url(../img/backgrounds/webcompliance.jpg);
}

.fullbg.nextevent {
    background-image: url(../img/backgrounds/nextevent.jpg);
}

.fullbg.aboutus {
    background-image: url(../img/backgrounds/aboutus.jpg);
}

.fullbg.guarantees {
    background-image: url(../img/backgrounds/guarantees.jpg);
}

.fullbg.onlinepiracy {
    background-image: url(../img/backgrounds/onlinepiracy.jpg);
}

#subMenu {
    width: 265px;
    top: 0;
    position: absolute;
}

#subMenu li {
    background: #2e6bab;
    background: rgba(46,107,171,.9);
    color: white;
    border-bottom: 1px solid rgba(0,0,0,.15);
}

#subMenu li:last-child {
    border: 0;
}

#subMenu li:hover, #subMenu .selected {
    background: url(../img/sub_sel.png) repeat-y left center #00adee;
    background: url(../img/sub_sel.png) repeat-y left center rgba(0,173,238,.9);
}

#subMenu a {
    color: white;
    display: block;
    padding: 13px 0 13px 20px;
    vertical-align: top;
    white-space: nowrap;
}

#subMenu.fixed {
    position: fixed;
    top: 60px;
}

.sl_imagecaption {
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.sl_imagecaption .sl_caption {
    position: absolute;
    background: #2e6bab;
    background: rgba(46,107,171,.9);
    width: 100%;
    padding: .5rem 1rem;
    bottom: 0;
    color: white;
    opacity: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: opacity .25s ease-in;
    -moz-transition: opacity .25s ease-in;
    -o-transition: opacity .25s ease-in;
    transition: opacity .25s ease-in;
}

.sl_imagecaption img {
    display: block;
}

.sl_imagecaption .sl_caption * {
    padding: 0;
    margin: 0;
}

.sl_imagecaption .sl_caption h3 {
    padding-bottom: .5rem;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
}

.sl_imagecaption p {
    line-height: 1.5;
    font-size: 11px;
}

.contactBox {
    width: 600px;
    float: left;
    margin-top: 100px;
}

.contactSide {
    float: right;
    width: 220px;
    margin: 60px 0;
    background: #eee;
    padding: 40px;
}

.contactSide h4 {
    margin-bottom: 0;
}

form input[type='text'],
form textarea {
    width: 100%;
    border: 0;
    background: #eee;
    padding: 10px;
    margin-bottom:20px;
}

form {
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding-right: 25px;
    -webkit-transition: opacity .25s ease-in;
    -moz-transition: opacity .25s ease-in;
    -o-transition: opacity .25s ease-in;
    transition: opacity .25s ease-in;
}

form p {
    margin: 0;
    text-align: left;
}

select {
    width: 50%;
    padding: 8px;
    margin-bottom: 30px;
}

#formHidden {
    display: none;
}

.btnContact,.send {
    margin: 0 2px 10px;
    font-size: 14px;
    display: inline;
    line-height: 50px;
}

.formLabel {
    padding: 40px 0;
}

.return {
    text-align: center;
    color: #39b54a;
}

.return.error {
    color: #ed1c24;
}

@media (min-width: 1400px) {
    .sl_slider_btn {
        height: 450px;
    }

    .sl_item > div {
        min-height: 350px;
        padding-top: 100px;
    }

    .bloc {
        padding: 50px 0;
    }

    h3 {
        padding-bottom: 40px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    #menu li {
        display: block;
        width: 20%;
        float: left;
        position: relative;
        margin: 0;
    }

    #menu a {
        display: block;
    }

    #menu.fixed li {
        width: 190px;
    }
}