html {
    font-family: Monospace
}
input {
    font-family: Monospace
}
body {
    background-color: RGB(200,200,200);
    text-align: center;
}
h1 {
    text-align: center;
}
canvas {
    background-color: white;
    border: solid 1px;
    border-radius: 5px;
}
#conteneur_canvas, #conteneur_canvas2 {
    width: 84%;
    float: left;
}
#conteneur_sens, #conteneur_sens2 {
    padding: 0 0 10px 0;
    font-size: x-large;
}
#conteneur_principal, #conteneur_principal2 {
    margin-top: 10px;
    text-align: center;
}
#conteneur_outils, #conteneur_outils2 {
    width: 12%;
    float: left;
    text-align: center;
    border: solid 1px;
    border-radius: 5px;
    padding: 10px;
}
#conteneur_anneau {
    text-align: center;
    text-align: -moz-center;
    padding: 10px;
}
.conteneur_outils {
    background-color: white
}
.cachee {
    display:none;
}
input[type="number"] {
    width: 3em;
    autocomplete: off;
}
optgroup {
    font-family: inherit
}


#tip_direct {
    width: 15%;
    position: relative;
    top: -355px;
    left: 40px;
}
#tip_inverse {
    width: 15%;
    position: relative;
    top: -395px;
    left: 425px;
}
.button {

}
/* ============================================================================================================================
== BUBBLE WITH AN OBTUSE TRIANGLE
** ============================================================================================================================ */

/* THE SPEECH BUBBLE
------------------------------------------------------------------------------------------------------------------------------- */

.triangle-obtuse {
    position:relative;
    padding:15px;
    margin:1em 0 3em;
    color: black;
    background: RGB(200,200,200);
    /* css3 */
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}
/* THE TRIANGLE
------------------------------------------------------------------------------------------------------------------------------- */

/* creates the wider right-angled triangle */
.triangle-obtuse:before {
    content:"";
    position:absolute;
    bottom:-20px; /* value = - border-top-width - border-bottom-width */
    left:60px; /* controls horizontal position */
    border:0;
    border-right-width:30px; /* vary this value to change the angle of the vertex */
    border-bottom-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :after */
    border-style:solid;
    border-color:transparent RGB(200,200,200);
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}

/* creates the narrower right-angled triangle */
.triangle-obtuse:after {
    content:"";
    position:absolute;
    bottom:-20px; /* value = - border-top-width - border-bottom-width */
    left:80px; /* value = (:before's left) + (:before's border-right/left-width)  - (:after's border-right/left-width) */
    border:0;
    border-right-width:10px; /* vary this value to change the angle of the vertex */
    border-bottom-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :before */
    border-style:solid;
    border-color:transparent #fff;
    /* reduce the damage in FF3.0 */
    display:block;
    width:0;
}
