@charset "iso-8859-1";
/* listmenu_o.css
Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want. All you have to do is ensure the script
has the correct CSS property name (like 'visibility' or 'display') that you want it to change.
One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
Consult your favourite CSS reference for editing fonts/borders/etc.
Otherwise, even if you're not very experienced at CSS, you can just go through and change
the #RGB border/background colours where suitable to customise for your site!*/
/* OFFICE-STYLE FREESTYLE MENU LAYOUT */
/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0px;
 padding: 1px; /* limite gauche de la boite des menus*/
 width: 129px;
 list-style: none;
 background: #ECD892; /* Couleur background du menu ajouter ceci pour image bacground :   url(listmenu_o.gif) left repeat-y*/ 
 border: 1px solid #51654B; /*Bordure des cadres des menus*/
}
/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 left: 28px;
}
/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
/* position: relative; */
 top: 0;
 margin-bottom: -1px;
/* left: 1px;*/
}
/* Links inside the menu */
.menulist a {
 display: block;
 padding: 3px 4px 3px 8px; /* x x x (x) position du lettrage menu*/
 color: #132C48;  /*Couleur du lettrage*/ 
 text-decoration: none;
 border: 1px solid #ECD892 ; /*Couleur de la Ligne de bordure des ITEMS sous NESCAPE ET OPERA*/
}
/* IE fix because it doesn't support transparent borders */
* html .menulist a {
 border: 0;
 margin: 1px;
}
/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #ECD892; /* COULEUR DU LETTRAGE*/
 background-color: #58654B; /*Fond vert foncé pointé menu*/
 padding: 3px 4px 3px 8px; /* x x x (x) position du lettrage pointé menu*/
 border: 1px solid #B19A49;
 margin: auto;
}
.menulist a.highlighted {
 color: #132C48; /* COULEUR DU LETTRAGE*/
 background-color: #BCA65A ; /*Fond or moyen foncé sur menu*/
 border: 1px solid #BCA65A;
 margin: auto;
}
/* -----------------Début LISTE IMAGES MENU ______________________________*/
/*If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="A" href="#">
 2) Copy and paste these next lines for each link you want to have an image:*/
/* Images MENU Accueil */
    .menulist a#A {
      background-image: url(MenuImages/MenuAccueilUP.gif);
    }
    .menulist a#A:hover, .menulist a.highlighted#A, .menulist a:focus {
     background-image: url(MenuImages/MenuAccueilOVER.gif);
    }
/* Images MENU TOURISME */
    .menulist a#T {
      background-image: url(MenuImages/MenuTourismeUP.gif);
    }
    .menulist a#T:hover, .menulist a.highlighted#T, .menulist a:focus {
     background-image: url(MenuImages/MenuTourismeOVER.gif);
    }
/* Images MENU HISTOIRE */
    .menulist a#H {
      background-image: url(MenuImages/MenuHistoireUP.gif);
    }
    .menulist a#H:hover, .menulist a.highlighted#H, .menulist a:focus {
     background-image: url(MenuImages/MenuHistoireOVER.gif);
    }
/* Images MENU Photos */
    .menulist a#P {
      background-image: url(MenuImages/MenuPhotosUP.gif);
    }
    .menulist a#P:hover, .menulist a.highlighted#P, .menulist a:focus {
     background-image: url(MenuImages/MenuPhotosOVER.gif);
    }
/* Images MENU Cartes routières */
    .menulist a#C {
      background-image: url(MenuImages/MenuCartesUP.gif);
    }
    .menulist a#C:hover, .menulist a.highlighted#C, .menulist a:focus {
     background-image: url(MenuImages/MenuCartesOVER.gif);
    }
/* Images MENU Municipalité */
    .menulist a#M {
      background-image: url(MenuImages/MenuMunicipaleUP.gif);
    }
    .menulist a#M:hover, .menulist a.highlighted#M, .menulist a:focus {
     background-image: url(MenuImages/MenuMunicipaleOVER.gif);
    }
/* Images MENU Nous Rejoindre */
    .menulist a#R {
      background-image: url(MenuImages/MenuRejoindreUP.gif);
    }
    .menulist a#R:hover, .menulist a.highlighted#R, .menulist a:focus {
     background-image: url(MenuImages/MenuRejoindreOVER.gif);
    }
/* Images backgroup sous MENU Texte */
    .menulist a#V {
      background-image: url(MenuImages/MenuVideUP.gif);
    }
    .menulist a#V:hover, .menulist a.highlighted#V, .menulist a:focus {
     background-image: url(MenuImages/MenuVideOver.gif);
    }
/* -----------------FIN LISTE IMAGES MENU ______________________________*/
/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}
/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). &*/
* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hack */