/* ================================ */
/* By Atypic - www.atypic.be
/* ================================ */

*, *:before, *:after { 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box; 
    box-sizing: border-box;
}

/* ===== html, body ===== */

html, body {
    height: 100%;
}
html {
    overflow-y: scroll;
}
body {
    color: #333;
    font: 1em/1.5em arial, sans-serif;
}

/* ===== Containers ===== */

#global {
    overflow: hidden;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    min-width: 320px;
}
.container-1920 {
    max-width: 1920px;
    margin: 0 auto;
}
.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
}
.container-1024 {
    max-width: 1024px;
    margin: 0 auto;
}

.container-1010 {
    margin: 0 auto;
    max-width: 1010px;
}

.container-800 {
    margin: 0 auto;
    max-width: 800px;
}

#container.container {
    padding: 0;
}
#container .container,
.container .container {
    min-width: 0;
    padding: 0;
}

/* ===== Liens ===== */

a {
    cursor: pointer;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ===== Images ===== */

img {
    max-width:100%;
    height: auto;
}
a img {
    border: 0;
    display: inline-block;
}

/* ===== Paragraphes ===== */

p {
    margin: 15px 0;
}
p:empty {
    display: none;
}

/* ===== Styles ===== */

strong, b {
    font-weight: bold; 
}
em, i {
    font-style: italic;
}
small {
    font-size: 0.85em;
}
sup {
    font-size: 0.85em;
    position: relative;
    top: -3px;
}
sub {
    font-size: 0.85em;
    position: relative;
    top: 3px;
}
time {
    font-weight: bold;
}
hr {
    background: #cccccc;
    border: 0 none;
    height: 1px;
    margin: 20px 0;
}

/* ===== Titres ===== */

h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
    line-height: normal;
    margin: 30px 0 20px;
}
h1,.h1 {
    font-size: 1.6em;
}
h2,.h2 {
    font-size: 1.5em;
}
h3,.h3 {
    font-size: 1.4em;
}
h4,.h4 {
    font-size: 1.3em;
}
h5,.h5 {
    font-size: 1.2em;
}
h6,.h6 {
    font-size: 1.1em;
}

h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child,
h1.first,h2.first,h3.first,h4.first,h5.first,h6.first {
    margin-top: 0 !important;
}

/* ===== Blocs ===== */

blockquote {
    background: #eeeeee;
    border-left: 5px solid #777777;
    color: #666666;
    margin: 20px 0;
    padding: 20px;
}

/* ===== iframe ===== */

iframe {
    display: block;
    margin: 40px auto;
}

/* ===== iframe responsive ===== */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin: 40px auto;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}