a img {
    border: none
    }
a {
    text-decoration: none;
    color: white
    }
/* #works contient tous les travaux, le margin-top est Ã©levÃ© pour ne pas apparaitre sous le menu flottant */
#works1 {
    margin-bottom: 20px;
    overflow: hidden;
    margin-left: 165px;
    float: left
    }
#works .work {
    /* Voici le overflow:hidden qui permet de cacher les triangles et de ne les voir apparaitre que lorsqu'ils sont dedans la div */
    overflow: hidden;
    width: 311px;
    height: 292px;
    border: 4px solid #222;
    cursor: pointer;
    position: relative;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    float: left;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 40px
    }
#works .work:hover {
    border: 4px solid #FFF
    }
#works .work .triangle-droite {
    background: url(../img/triangle-droite.png);
    width: 312px;
    height: 293px;
    position: absolute;
    /* Voici le dÃ©calage du triangle Ã  droite lorsqu'on n'est pas en :hover */
    right: -312px;
    bottom: -293px;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s
    }
#works .work:hover .triangle-droite {
    /* Voici la position du triangle Ã  droite lorsqu'on est en :hover */
    right: 0;
    bottom: 0
    }
#works .work .triangle-gauche {
    background: url(../img/triangle-gauche.png);
    width: 312px;
    height: 293px;
    position: absolute;
    /* Voici le dÃ©calage du triangle Ã  gauche lorsqu'on n'est pas en :hover */
    left: -311px;
    top: -293px;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s
    }
#works .work:hover .triangle-gauche {
    /* Voici la position du triangle Ã  gauche lorsqu'on est en :hover */
    left: -1px;
    top: -1px
    }
#works .work span {
    color: #FFF;
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    position: absolute;
    /* Voici la position du span lorsqu'on n'est pas en :hover */
    top: 125px;
    left: -280px;
    font-family: "Din";
    background: #222;
    padding-left: 70px;
    padding-right: 8px;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
    }
#works .work:hover span {
    /* Voici la position du span lorsqu'on est en :hover */
    left: 0
    }
/*//////// FONTS /////////*/
@font-face {
    font-family: "Din";
    src: url(../fonts/din-webfont.eot);
    src: local("@"), url(../fonts/din-webfont.ttf) format("truetype")
    }
@font-face {
    font-family: "Din-medium";
    src: url(../fonts/din_medium-webfont.eot);
    src: local("@"), url(../fonts/din_medium-webfont.ttf) format("truetype")
    }