/*

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 { background-color: #990000; background-image: url(images/barre-menu-rouge-test.png); background-repeat: repeat-y; background-position: left 100%; margin: 5px 0 0; padding: 1px; width: 197px; border-color: black; list-style-type: none; list-style-position: outside; white-space: normal; /*border: solid 0 transparent; */}

/* Espacement entre les menus */
.menulist ul { background-image: url('images/barre-menu-rouge-gauche cont noir.png'); position: absolute; left: 197px; visibility: hidden; border: solid 2px #000; white-space: normal; }

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li { position: relative; border-color: #000; }

/* Liens dans le menu */
.menulist a { display: block; padding: 3px 4px 3px 5px; color: #fff; FONT-WEIGHT: normal; margin: 2px; border-color: black; border-width: 0; list-style-type: circle; }
/* IE fix because it doesn't support transparent borders */
* html .menulist a { margin: 2px; border-style: none; border-width: 0; }


/* Quand le curseur passe sur le menu */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus { color: #900; background-color: #fff; padding: 2px 5px 4px 2px; margin: 2px; border-color: #000000; border-width: 0; }
.menulist a.highlighted { color: #900; background-color: #fff; border-color: black; border-width: 0;
/* border: solid 0 #000000; */
/* margin: 2px; */
}
.menulist a.visited {
/* border: solid 2px #000000; */
 margin: 0; border-color: #000; border-width: 0; }
/*
 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="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* '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 */
.classic
{ 
font-family: arial;
	
	color:white;
}
.classic a
{ 
font-family: arial;
text-decoration: none;
color: white;

}
.classic a:link
{ 
font-family: arial;
text-decoration: none;	
color: white;
}
.classic a:active
{ 
font-family: arial;
text-decoration: none;	
color: white;
}
.classic a:hover
{
font-family: arial;

	color: white;
text-decoration: none;
font-weight: bold;
}

.classic a.highlighted {
font-family: arial;
text-decoration: none;	
	color: white;
}
.classic p {
font-family: arial;
text-decoration: none;	
	color: white;
}
.classic td
{
text-decoration: none;
color: #FFFFFF;
font-weight: bold;
}