/*    CSS Festival du Film Gay et Lesbien de Belgique - 2010  -  http://www.fglb.org/     */

/* http://www.queness.com/preview/1047/easy-to-style-jquery-drop-down-menu-tutorial */

/* remove the list style */
#nav {
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin:0;
	margin-left: 60px;
	padding:0;
	list-style:none;
	background: url('menu.jpg') no-repeat;
	background-position: -5px 0px;
	width: 890px;
	height: 31px;
}	

/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
#nav li {
	float:left;
	display:block;
	width:123px;
	position:relative;
	z-index:500;
	margin:0 1px;
}
	
/* this is the parent menu */
#nav li a { /* Intitulés du haut */
	display:block; 
	padding:0;
	padding-top:5px;
	padding-left:5px;
	height:23px; 
	text-decoration:none; 
	text-align:center; 
	color:#FFF;
}

#nav li a:hover {
	color:#000;
}

/* you can make a different style for default selected value */
#nav a.selected {
	color:#f00;
}

/* submenu, it's hidden by default */
#nav ul {
	position:absolute;
	left:0;
	display:none;
	margin:0 0 0 -1px;
	padding:0;
	list-style:none;
}

#nav ul li {
	width:135px; 
	float:left; 
	/*background-color: #D0CDC8;*/
	/*padding-left:5px;*/
}


/* display block will make the link fill the whole area of LI */
#nav ul a {
	display:block;
	height:20px;
	color:#666;
	padding-top: 5px;
	padding-left: 15px;
	text-align:left; 
	background: url('bg_drop_menu.png') repeat-y;
	background-position: -1px 0px; /* Pour ff et pas ie ... */
	*background-position: 0px 0px;
}

#nav ul a:hover {
	text-decoration:none;	
}

/* Afficher image de fin de colonne des menus déroulants*/
.bg_fin_menu {
	margin:0;
	padding:0;
	background: url('bg_fin_menu.png') no-repeat;
	padding-right:132px; 
}


/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
*html #nav ul {
	margin:0 0 0 -2px;
}