/* 
Css Pour les listes alphabétiques 
Loïc-Cyril Colson <l.colson@idel.fr>
www.boiteapuzzle.fr
*/
/***********************************/
/* Liste des lettres de l'alphabet */
/***********************************/
div#lettre a, div#lettre a:visited, div#lettre p
{
	display				: block;
/*	height				: 20px;*/
/*	line-height			: 11px;*/
	font-size			: 11px;
	font-weight			: bold;
	color					: black;
	width					: 20px;
	float					: left;
	text-decoration	: none;
	background-color	: #F0BB21;
	margin				: 15px 5px 5px 5px;
	padding				: 0 0 0 0;
	text-align			: center;
	/*
	vertical-align		: middle; 	
	*/
}
div#lettre a:hover
{
	color					: #B22222;
	text-decoration	: none;
	background-color	: #F7D97F;
}

div#lettre p
{
	background-color	: #F7D97F;
}

/**************************************/
/* Liste triée par ordre alphabétique */
/**************************************/
ul.listeAlpha
{
	margin-top			: 20px;
	margin-right		: auto;
	margin-left			: auto;
}
ul.listeAlpha li
{
	list-style			: none;
	float					: left;
	background-image	: url(/images/puce.gif);
	background-repeat	: no-repeat;
	width					: 250px;
	margin-left			: 20px;
	padding				: 3px 0 3px 30px;

}
ul.listeAlpha a
{
	font-family			: verdana;
	font-weight			: bold;
	font-size			: 12px;
	color					: black;
	text-decoration	: none;
}
ul.listeAlpha a:hover
{
	color					: #7082C9;
}

/* Lettre sélectionnée */
div#lettre a.selectAlpha, div#lettre a.selectAlpha:hover
{
	color					: white !important;	
}