/**
 * @file
 * Navigation Styling
 */


/*
 * The active item in a Drupal menu
 */

#nav a
{
	list-style-type: none; 
	height:34px; 
	background-image:url(../images/bouton_menu.gif); 
	width:159px; 
	float:left;
	color:#FFF;
	text-align:center;
	margin-left:3px;
	margin-top:-3px;
	padding-top: 6px;
	background-repeat:no-repeat;
	font-size:13px;
}

#nav a.active
{
	list-style-type: none; 
	height:34px; 
	background-image:url(../images/nav_selected.jpg); 
	width:159px; 
	float:left;
	color:#FFF;
	text-align:center;
	margin-left:3px;
	margin-top:-2px;
	padding-top: 6px;
	background-repeat:no-repeat;
	font-weight:bold;
	font-size:13px;
}

#nav a.active-trail
{
	list-style-type: none; 
	height:34px; 
	background-image:url(../images/nav_selected.jpg); 
	width:159px; 
	float:left;
	color:#FFF;
	text-align:center;
	margin-left:3px;
	margin-top:-2px;
	padding-top: 6px;
	background-repeat:no-repeat;
	font-weight:bold;
	font-size:13px;
}

li a {
  color: #999;
}

li a.active {
  color: #999;
  text-decoration:none;
}

/*
 * Navigation bar
 */
#navigation {
  /* overflow: hidden; /* Sometimes you want to prevent overlapping with main div. */
}

#navigation ul.links, /* Main menu and secondary menu links */
#navigation .content ul /* Menu block links */ {
  margin: 0;
  padding: 0;
  text-align: left; /* LTR */
}

#navigation ul.links li, /* A simple method to get navigation links to appear in one line. */
#navigation .content li {
  float: left; /* LTR */
  padding: 0 10px 0 0; /* LTR */
}

.region-navigation {
}

/*
 * Main menu and Secondary menu links
 */
#main-menu {
}

#secondary-menu {
  float: right;
}

/*
 * Menu blocks
 */
.block-menu {
}

/*
 * "Menu block" blocks
 *
 * Drupal core has limited ways in which it can display its menus. To get around
 * these limitations, see http://drupal.org/project/menu_block
 */
.block-menu-block {
}

/*
