body {
margin:0px;
padding:0px;
width:100%;
background-color:#a90300;
text-align:center;
font-family:Helvetica;
}

#conteneur {
width:800px;
margin-left:auto;
margin-right:auto;
text-align:left;
}

#bandeau {
float:left;
margin-right:1px;
background-image:url('img/bandeau.jpg');
background-repeat:no-repeat;
height:155px;
width:798px;
}

#lien-accueil {
display:block;
top:0px;
left:0px;
width:195px;
height:100%;
z-index:3;
}

#menu{
width:779px;
margin:3px 11px 0px 10px;
float:left;
background-color:white;
border-style:solid;
border-width:1px;
border-color:#8f8585;
}



#contenu 
{
width:779px;
margin:3px 11px 5px 10px;
float:left;
background-color:white;
border-style:solid;
border-width:1px;
border-color:#8f8585;
border-bottom:none;
background-image:url('img/bas-contenu.jpg');
background-position:bottom;
background-repeat:no-repeat;
}

#cadre-gauche {
float:left;
width:144px;
margin:5px 7px 10px 3px;
font-size:0.8em;

}

#actu, #trucs {
width:100%;
border-style:solid;
border-width:1px;
border-color:#a90300;
margin:0 0 5px 0;
}

#trucs {
margin-bottom:70px;
}

#cadre-gauche h2, #cadre-droite h2 {
font-size:1.15em;
font-weight:bold;
background-color:#a90300;
color:#ffbe16;
margin:0;
}

#contenu-page {
float:left;
width:444px;
margin:5px 5px 37px 7px;
border-style:solid;
border-width:1px;
border-color:#ffbe16;
font-size:0.95em;
}

#contenu-page h1{
font-size:1.15em;
font-weight:bold;
background-color:#ffbe16;
color:#a90300;
margin:0;
text-decoration:none;
}

#contenu-page p {
margin:0.3em;
}

.trait-jaune {
width:60%;
margin-left:20%;
margin-top:15px;
margin-bottom:15px;
border-bottom:solid 3px #ffbe16;
}

#contenu-page h1.titre-article-rubrique {
width:80%;
text-align:center;
font-size:1em;
font-weight:bold;
background-color:#EEE;
color:black;
border:solid 1px #a90300;
margin-left:10%;

}

#contenu-page table, #contenu-page table tr, #contenu-page table tr td {
border:none;
background-color:white;
}

#agenda #calendar table {
width:90%;
}

h1.titre-article-rubrique a {
text-decoration:none;
color:black;
}

#cadre-droite {
float:right;
width:155px;
margin:5px 5px 10px 5px;
font-size:0.8em;
}

#agenda, #infos {
width:100%;
border-style:solid;
border-width:1px;
border-color:#a90300;
margin:0 0 5px 0;
}


#agenda table {
margin-left:auto;
margin-right:auto;
}

#infos {
margin-bottom:89px;
}


\\ Le menu 

#menu, #menu ul /* Liste */     
{
        padding : 0; /* pas de marge intérieure */
        margin : 0; /* ni extérieure */
        list-style : none; /* on supprime le style par défaut de la liste */
        line-height : 21px; /* on définit une hauteur pour chaque élément */
        text-align : center; /* on centre le texte qui se trouve dans la liste */
}

#menu /* Ensemble du menu */
{
	margin-top:17px;
        font-weight : bold; /* on met le texte en gras */
        font-size : 12px; /* hauteur du texte : 12 pixels */
}

#menu a /* Contenu des listes */
{
        display : block; /* on change le type d'élément, les liens deviennent des balises de type block */
        padding : 0; /* aucune marge intérieure */
        background : #fff; /* couleur de fond */        
        color : black; /* couleur du texte */
        text-decoration : none; /* on supprime le style par défaut des liens (la plupart du temps = souligné) */
        width : 128.8px; /* largeur */
}

#menu li /* Elements des listes */      
{ 
        float : left; 
        /* pour IE qui ne reconnaît pas "transparent" */
	list-style:none;
        border-right : 1px solid #8f8585; /* on met une bordure blanche à droite de chaque élément */
}

/* IE ne reconnaissant pas le sélecteur ">" */
html>body #menu li
{
        border-right: 1px solid #8f8585 ; /* on met une bordure transparente à droite de chaque élément */
}

#menu li ul /* Sous-listes */
{ 
        position: absolute; /* Position absolue */
        width: 128.8px; /* Largeur des sous-listes */
        left: -999em; /* Hop, on envoie loin du champ de vision */
}


#menu li ul li /* Éléments de sous-listes */
{
        /* pour IE qui ne reconnaît pas "transparent" (comme précédemment) */
        border-top : 1px solid #8f8585; /* on met une bordure blanche en haut de chaque élément d'une sous liste */
}

/* IE ne reconnaissant pas le sélecteur ">" */
html>body #menu li ul li                
{
        border: 1px solid #8f8585; /* on met une bordure transparente en haut de chaque élément */
}

#menu li ul ul 
{
        margin    : -22px 0 0 128.8px ; /* On décale les sous-sous-listes pour qu'elles ne soient pas au dessus des sous-listes */ 
        /* pour IE qui ne reconnaît pas "transparent" (comme précédemment) */
        border-left     : 1px solid #fff ; /* Petite bordure à gauche pour ne pas coller ... */      
}

/* IE ne reconnaissant pas le sélecteur ">" ... je me répète ;-) */
html>body #menu li ul ul                
{
        border-left     : 1px solid transparent ; /* on met une bordure transparente sur la gauche de chaque élément */
}

#menu a:hover /* Lorsque la souris passe sur un des liens */    
{
        color: #fff; /* On passe le texte en noir... */
        background: #8f8585; solid 1px #a90300;/* ... et au contraire, le fond en blanc */
}

#menu li:hover ul ul, #menu li.sfhover ul ul /* Sous-sous-listes lorsque la souris passe sur un élément de liste */
{
        left: -999em; /* On expédie les sous-sous-listes hors du champ de vision */
}

#menu li:hover ul, #menu li li:hover ul, #menu li.sfhover ul, #menu li li.sfhover ul  /* Sous-listes lorsque la souris passe sur un élément de liste ET sous-sous-lites lorsque la souris passe sur un élément de sous-liste */
{
        left: auto; /* Repositionnement normal */
        min-height: 0; /* Corrige un bug sous IE */
}




h1.titre-actu, h1.titre-syndic {
font-size:0.85em;
font-variant:small-caps;
font-weight:bold;
text-align:center;
}

h1.titre-syndic a {
text-decoration:none;
color:black;
}

h1.titre-syndic a:hover {
text-decoration:underline;
color:black;
}

h3.auteur-syndic  {
width:80%;
border-top:none;
border-left:none;
border-right:none;
border-bottom:solid 1px #a90300;
font-size:0.8em;
color:black;
font-weight:bold;
background-color:transparent;
font-variant:small-caps;
}

p.contenu-syndic, p.contenu-actu {
font-size:0.77em;
}

h1.rubrique {
text-align:center;
margin-bottom:5px;
border-bottom:solid 2px #a90300;
text-decoration:none;
}

.aligne-droite {
text-align:right;
}

/*#langue label {
display:none;
} */

#langue {
width:195px;
height:20px;
margin-left:10px;
}

#france {
display:block;
width:22px;
height:15px;
background-image:url('img/drapeau-francais.jpg');
background-repeat:no-repeat;

}

#espagne {
display:block;
position:relative;
left:25px;
top:-15px;
width:21px;
height:15px;
background-image:url('img/drapeau-espagnol.gif');
background-repeat:no-repeat;

}


