html {
   background-color: #fff;
   color: #000;
}

body {
    /* font-family: MS courier new, monospace; */
    /* font-family: Times New Roman, serif; */
    /* font-family: newspaper; */
   font-family: sans-serif;
   background-color: #fff;
   color: #000;
}

/* Header */
h1 {
    counter-reset: chapter;
    font-style: italic;
    /* text-align: center; */
}

h2 {
    counter-reset: section;
    border: solid blue 1px ;
    color: #000;
    background-color: #D0E3FA;
}

h2:before {
    content: counter(chapter) ". ";
    counter-increment: chapter;
}

h3 {
    font-style: italic;
}
    
h3:before { 
    content: counter(chapter) "." counter(section) ". ";
    counter-increment: section;
}

h4.hilight {
    color: #000;
    background-color: #D0E3FA;
}

table {
    border: solid #6495ed 2px;
/*    border-collapse: separate ; */
    border-spacing: 5px ;
    margin-left: 3% ; 
    empty-cells:hide;
    font-size: 85%;
/*    margin: auto; */
}

table.clean {
    border: none;
}

caption {
    color: #6495ed;
    background-color: #fff;
    font-weight: bold;
    margin-left: 3%;
}

th {
    font-family: monospace;
    border: thin solid #6495ed;
    padding: 5px;
    color: #000;
    background-color: #D0E3FA;
}

td {
    font-family: sans-serif;
    margin:12px;
    text-align: center;
}

td.left {
    border: thin solid #6495ed;
    vertical-align: top;
    text-align: left;
}

th.left {
    border: thin solid #6495ed;
    vertical-align: top;
    text-align: left;
}

a:link {
   background-color: #fff;
   color: #037;
}

a:visited {
   background-color: #fff;
   color: #636;
}

pre {
    /* border: solid black 1px ; */
    border-left: solid black 2px;
    color: #000;
    background-color:#EEE;
    font-family: Courier, monospace;
    font-size: 85%;
    margin-left: 3%; 
    padding: 5px;
}

/* CLASS */

span.c_include {
    color: #a020f0;
    background-color:#EEE;
}

span.c_type {
    color: #2e8b57;
    font-weight: bold;
    background-color:#EEE;
}

span.c_const {
    color: #ff00ff;
    background-color:#EEE;
}

.ok {
    color: #0A0;
}

.ko {
    color: #A00;
}

.bug_fixed {
    color: #0A0;
    background-color: #D0E3FA;
    margin: 1px ; 
    padding: 0px;
    border-spacing: 0px ;
}

.bug_opened {
    color: #A00;
    background-color: #D0E3FA;
    margin: 1px ; 
    padding: 0px;
    border-spacing: 0px ;
}

.container {
    margin-top: 10px ; 
    margin-right: 5% ; 
    margin-bottom: 5px ; 
    margin-left: 3% ; 
}

.review {
    border-left: solid black 2px;
    margin-left: 3%; 
    padding: 5px;
    color: #000;
    background-color:#FFC;
    text-align:justify
}

.table_notes {
    font-size: 70%;
    border-spacing: 5px ;
}

.titre {
    color: #999; 
    background-color: #FFF; 
    font-size: 8pt; 
    font-style: italic;
}

