/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.cataloguemenu, .cataloguemenu  ul {
 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;
 position: absolute;
 top: 1.0em; margin-top: 15px; /* I'm using ems and px to allow people to zoom their font */
}

/* Second and third etc. level submenus - position across from parent instead */
.cataloguemenu ul ul {
 top: 0px; margin-top: 0;
 left:140px;
}

/*
 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: -1px;
 width:115px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.cataloguemenu ul li {
 float: none;
 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: #033554;
 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-weight: bold;
	padding:5px 10px 5px 10px;
	background-color:#84011f;
	color: #FFF;
	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: #84011f; 
      }   
	
#catalogue #selected {
	color:#033554;
	background-color:#fff;
	}
#catalogue #selected a{
	color:#033554;
	background-color:#fff;`
	}
#catalogue #selected a:hover{
	color:#2E4560;
	background-color:#fff;
	}
	/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
\*/
*:first-child+html .cataloguemenu ul li {
 float: left;
 width: 100%;
}

* html .cataloguemenu ul li {
 float: left;
 height: 1%;
}
* html .cataloguemenu ul a {
 height: 1%;
}
/* End Hacks */
