/* CSS Document */
/**************** menu coding *****************/
/* this file is linked from the nav include file template to provide 
 * contextual styling support inside DW's code & design view.  It
 * contains empty rules to "shadow" all styles that need to be applied 
 * to the nav include files inside DW.
 *
 * shadow styles can contain any rules that developers need to see 
 * when building/editing menus inside DW.
 *
 * NOTE: generally, pseudo-classes such as ":hover" and contextual 
 *       selectors such as "#menu ul" do not need to be shadowed 
 *       because DW understands those rules implicitly.
 *
 * WARNING: shadow styles are linked along with nav menu code when it 
 *          is included on the server, so it gets the last word in terms
 *          of cascade order and style precedence.
 */
#menu {}
#menu a.currentNav {}
#menu ul li.parent a
{
	background: #fff url("/francais/images/arrow2.gif") no-repeat center right;
}
#menu ul li.parent a:hover
{
	background: #efefef url("/francais/images/arrow2.gif") no-repeat center right;
}
#menu ul li.parent li a
{
	background: #efefef none;
}
#menu ul li.parent li a:hover
{
	background: #fff none;
}
