main {
    display: block;
}

header {
    display: block;
}

footer {
    display: block;
}

body {
    font-family: "Calibri";
    color: black;
    background-color: #a9a9a9;
}

main {    
    background-color: white;
    box-shadow: 10px 10px 5px #888888;
    margin: auto;
    padding: 0 50px;
	width: 90%
}

.accredite_m {
    background-image: url(/public_html/img/content/belac_25p.gif);
    background-position: center;
    background-repeat: no-repeat;
}

.accredite_a {
    float: left;
    margin-right: 5px;
}

footer {
    font-size: 0.8em;
    text-align: center;
    color: #58585a;
    padding: 10px;
}

header {
    border-bottom: 3px solid #005ea8;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h2 {
    font-size: 2em;
    color: #005ea8;
    text-align: center;
	margin: 15px
}

h3 {
    color: #005ea8;
    text-align: center;    
}

#compendium_wrapper {
    margin: auto;
}

#compendium_wrapper tbody td:last-child {
    text-align: center;
}

#logo {
    margin: 15px;
}

a {
    color: #005ea8;
}

a:hover {
    color: #93117e;
}

.site {    
    margin: 0px 50px;
    padding: 10px 10px;;
    /*border-Left: 2px solid #005ea8; */
    font-weight: bold;
    font-size: 20px;
    color: #005ea8;
    text-align: left;
}


#analyse {
    margin: 0px 50px;
    border-spacing: 0px;
    border-bottom: 1px solid #005ea8;
	width:  90%
}

#analyse td {
    padding: 5px 5px;
    border-top: 1px solid #005ea8;
}

#analyse td:first-child {
    vertical-align: top;    
}

#analyse td:last-child {
}

#analyse p {
    margin-bottom: 0px;
}

#analyse tr:hover {
    background-color: #ffff99;
}


#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #005ea8;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
    
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }