@charset "UTF-8";
/* CSS Document */

/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.cataloguemenu, .cataloguemenu  ul {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:12px;
 margin: 0;
 padding: 0;
 list-style: none;
 text-align:center;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.cataloguemenu ul {
 display: none;
 text-align:left;
 position: absolute;
 background-color:#FFF;
 top: 1.0em; margin-top: 15px; /* I'm using ems and px to allow people to zoom their font */
 	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-webkit-border-top-left-radius: 15px; /* pour Chrome */
	-webkit-border-top-right-radius: 15px; /* pour Chrome */ 
	behavior: url(border-radius.htc);
}

/* Second and third etc. level submenus - position across from parent instead */
.cataloguemenu ul ul {
 top: 0px; margin-top: 0;
 left:140px;
 background-color:#FFF;
 	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-webkit-border-top-left-radius: 15px; /* pour Chrome */
	-webkit-border-top-right-radius: 15px; /* pour Chrome */ 
	behavior: url(border-radius.htc);
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.cataloguemenu li {
 float: left;
 display: block;
 position: relative;
 margin-right: 10px; 
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.cataloguemenu ul li {
 float: left;
 margin: 0;
 margin-bottom: -1px;
}
.cataloguemenu ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.cataloguemenu a {
 display: block;
 padding: 3px;
color: #4b4b4b;
 text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.cataloguemenu a:hover, .cataloguemenu a:focus {
 color: #FFF;
}

/*
 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:
    .cataloguemenu a#xyz {
      background-image: url(out.gif);
    }
    .cataloguemenu a#xyz:hover, .cataloguemenu a.highlighted#xyz, .cataloguemenu a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.cataloguemenu a .subind {
 display: none;
}
.cataloguemenu ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.cataloguemenu a {
 float: left;
}
.cataloguemenu ul a {
 float: none;
}
/* \*/
.cataloguemenu a {
 float: none;
}
/* */

#catalogue a{
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:12px;
padding:5px 10px 5px 10px;
	 background-color:#FC3;
	 color: #4b4b4b;
 	text-decoration: none;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-webkit-border-top-left-radius: 15px; /* pour Chrome */
	-webkit-border-top-right-radius: 15px; /* pour Chrome */ 
	behavior: url(border-radius.htc);
	}
#catalogue ul li a{
	background-color:#FFF;
	color:#4b4b4b;
	font-weight: bold;
	}	
#catalogue ul li a:hover{
	background-color:#FFF;
	color:#fC3;
	font-weight: bold;
	}	

#catalogue li a:hover, #catalogue li a:focus { 
        background: #FFF; 
        color: #4b4b4B; 
      }   
	
#catalogue #selected {
	color:#4b4b4b;
	background-color:#fff;
	}
#catalogue #selected a{
	color:#4b4b4b;
	background-color:#fff;`
	}
#catalogue #selected a:hover{
	color:#2E4560;
	background-color:#fff;
	}
