/* invisible elements */

#navsite p {
    display: none;
}

/* Stylize the div element that encapsulates the set of menu links */

#navsite {
    font-family: Arial, Helvetica, sans-serif;
    width: 100%; /* largeur de la boite du menu */
    /* border-left: 1px solid #333300; */
    padding: 0;
    margin: 0;
}

/* Eliminates any potential problems with the indentation of lists and list markers */

#navsite ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Margins aren't applied to each list item and placing a border at bottom of list item */

#navsite ul li {
    margin: 0;
    border-top : 1px solid #003300;
}

/* h5 du menu */

#navsite h5 {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

/* Stylize the appearance of the borders, text color, text decoration, width and links of h5 */

#navsite ul li h5 a {
    display: block;
    padding: 2px 2px 2px 0.5em;
    border: 4px solid #E7E0B8;
    background-color: #006600;
    color: #E7E0B8;
    text-decoration: none;
    width: 100%; /* For IE so entire area is clickable */
}

/* Reset width of link for IE Mac & NN6 */
html>body #navsite ul li a {
    width: auto;
}

/* Roll over effect */
#navsite ul li h5 a:hover {
    border: 4px solid #006600;
    background-color: #E7E0B8;
    color: #006600;
}
