#menu, #menu ul /* Liste */     
{
        padding : 0; /* pas de marge intérieure */
        margin : 0; /* ni extérieure */
        list-style : none; /* on supprime le style par défaut de la liste */
        line-height : 21px; /* on définit une hauteur pour chaque élément */
        text-align : center; /* on centre le texte qui se trouve dans la liste */        background-image:url(photos-site/general/parchemin.jpg);

}

#menu /* Ensemble du menu */
{
        font-weight : bold; /* on met le texte en gras */
        font-family : Arial; /* on utilise Arial, c'est plus beau ^^ */
        font-size : 15px; /* hauteur du texte : 12 pixels */

}

#menu a /* Contenu des listes */
{
        display : block; /* on change le type d'élément, les liens deviennent des balises de type block */
        padding : 0; /* aucune marge intérieure */
        background : #000; /* couleur de fond */        
        background-image:url(parchemin.jpg);
		color : purple; /* couleur du texte */
        text-decoration : none; /* on supprime le style par défaut des liens (la plupart du temps = souligné) */
        width : 155px; /* largeur */
}

#menu li /* Elements des listes */      
{ 
        float : left; 
        /* pour IE qui ne reconnaît pas "transparent" */
        border-right : 4px solid #333399; /* on met une bordure blanche à droite de chaque élément */
}

/* IE ne reconnaissant pas le sélecteur ">" */
html>body #menu li
{
        border-right: 4px solid #333399 ; /* on met une bordure transparente à droite de chaque élément */
}

#menu li ul /* Sous-listes */
{ 
        position: absolute; /* Position absolue */
        width: 155px; /* Largeur des sous-listes */
        left: -999em; /* Hop, on envoie loin du champ de vision */
}


#menu li ul li /* Éléments de sous-listes */
{
        /* pour IE qui ne reconnaît pas "transparent" (comme précédemment) */
        border-top : 2px solid #333399; /* on met une bordure blanche en haut de chaque élément d'une sous liste */
}

/* IE ne reconnaissant pas le sélecteur ">" */
html>body #menu li ul li                
{
        border-top : 2px solid #333399; /* on met une bordure transparente en haut de chaque élément */
}

#menu li ul ul 
{
        margin    : -23px 0 0 158px ; /* On décale les sous-sous-listes pour qu'elles ne soient pas au dessus des sous-listes */ 
        /* pour IE qui ne reconnaît pas "transparent" (comme précédemment) */
        border-left     : 0px solid #333399 ; /* Petite bordure à gauche pour ne pas coller ... */      
}

/* IE ne reconnaissant pas le sélecteur ">" ... je me répète ;-) */
html>body #menu li ul ul                
{
        border-left     : 0px solid #333399 ; /* on met une bordure transparente sur la gauche de chaque élément */
}

#menu a:hover /* Lorsque la souris passe sur un des liens */    
{
        color: yellow; /* On passe le texte en noir... */
        background: #993366; /* ... et au contraire, le fond en blanc */
		font-style : italic;
		font-size : 15px;
}

#menu li:hover ul ul, #menu li.sfhover ul ul /* Sous-sous-listes lorsque la souris passe sur un élément de liste */
{
        left: -999em; /* On expédie les sous-sous-listes hors du champ de vision */
}

#menu li:hover ul, #menu li li:hover ul, #menu li.sfhover ul, #menu li li.sfhover ul  /* Sous-listes lorsque la souris passe sur un élément de liste ET sous-sous-lites lorsque la souris passe sur un élément de sous-liste */
{
        left: auto; /* Repositionnement normal */
        min-height: 0; /* Corrige un bug sous IE */
}


/* Style des pages du site */


.fond /* Fond des pages */
{
        background-color: #333399; /* on met le fond en bleu */
        
}

td.titrepage /* Titre des pages */
{
        color: #993366; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 30px;
		font-family:Times New Roman;
		text-align:center;
		text-decoration:underline;
        
}

td.titrepagejaune /* Titre des pagesjaunes */
{
        color: white; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 30px;
		font-family:Times New Roman;
		text-align:center;
		text-decoration:underline;
        
}

td.titrepageindex /* Titre de la page index */
{
        color: #993366; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 45px;
		font-family:Times New Roman;
		text-align:center;
		text-decoration:underline;
        
}

.textgeneral /* Texte courant */
{
        color: white; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		        
}

.textrecherche /* Texte courant */
{
        color: white; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 14px;
		font-family:Times New Roman;
		        
}

.textgeneralcentrer /* Texte courant centrer */
{
        color: white; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		text-align:center;
		        
}

.textlien /* Texte des liens */
{
        color: white; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 12px;
		font-family:Times New Roman;
		        
}

.textobdirige /* Texte general ob dirige */
{
        color: #33CCCC; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 20px;
		font-family:Times New Roman;
		        
}

a:link
{
        color: yellow; /* On passe le texte en noir... */
        font-family:Times New Roman;
		text-decoration:underline;
		        
}

a:visited
{
        color: yellow; /* On passe le texte en noir... */
        font-family:Times New Roman;
		text-decoration:underline;
		        
}

.tableau1 /* Texte tableau inscription */
{
        color: #CCFF00; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		        
}

.tableau2 /* Texte tableau inscription */
{
        color: #CC66FF; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		        
}

/* Texte page membre */

.membrepermanent /* Texte page membre permanent */
{
        color: #33CCCC; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 20px;
		font-family:Times New Roman;
		        
}

.membreponctuel /* Texte page membre ponctuel */
{
        color: #FFCC66; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 20px;
		font-family:Times New Roman;
		        
}

.membrevous /* Texte page membre section pour vous */
{
        color: #66FF00; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 20px;
		font-family:Times New Roman;
		        
}

.textorangenourriture /* Texte courant */
{
        color: #FF8800; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 22px;
		font-family:Times New Roman;
				        
}

.texttabnourriture /* Texte tableau composition nourriture */
{
        color: white; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 13px;
		font-family:Times New Roman;
		text-align:center;
		        
}

.titrerencontre /* Texte courant */
{
        color: lime; /* On passe le texte en noir... */
        font-weight : bold;
		font-style : italic;
		font-size : 20px;
		font-family:Lucida Handwriting;
		        
}

.rencontretab1 /* Texte tableau inscription */
{
        color: #FFFFCC; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		        
}

.rencontretab2 /* Texte tableau inscription */
{
        color: #FF6600; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		        
}

.rencontretab3 /* Texte tableau inscription */
{
        color: #FF0000; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		        
}

.rencontretab4 /* Texte tableau inscription */
{
        color: #9999FF; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		        
}

.rencontretab5 /* Texte tableau inscription */
{
        color: #33FFFF; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		        
}

.rencontretab6 /* Texte tableau inscription */
{
        color: #00FF00; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		        
}

.titrerevision /* Texte courant */
{
        color: #FFCC99; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 20px;
		font-family:Lucida Handwriting;
		        
}

.revisiontab1 /* Texte tableau inscription */
{
        color: #33FFFF; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		        
}

.revisiontab2 /* Texte tableau inscription */
{
        color: #00FF00; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		        
}

.tarif1 /* Texte page membre permanent */
{
        color: #CC99FF; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 18px;
		font-family:Times New Roman;
		        
}

.tarif2 /* Texte page membre permanent */
{
        color: #FF6600; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 18px;
		font-family:Times New Roman;
		        
}

.tarif3 /* Texte page membre permanent */
{
        color: #66FFFF; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 18px;
		font-family:Times New Roman;
		        
}

.tarif4 /* Texte page membre permanent */
{
        color: #33FF00; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 18px;
		font-family:Times New Roman;
		        
}

.tarif5 /* Texte page membre permanent */
{
        color: #00CCFF; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 18px;
		font-family:Times New Roman;
		        
}

table.tarif
{
        border: 6px solid #6495ed;
        border-collapse: collapse;
		font-weight : bold;
		text-align:center;
        width: 100%;
}

tr.tarif
{
        border-bottom: solid 3px white;
        border-collapse: collapse;
		text-align:center;
}

td.tarif
{
        border-right: solid 3px #6A6F6F;
		border-bottom: solid 3px white;
        border-collapse: collapse;
		text-align:center;
}

tr.tarif1
{
        border-bottom: solid 2px #6A6F6F;
        border-collapse: collapse;
		text-align:center;
}

td.tarif1
{
        border-right: solid 3px #6A6F6F;
		border-bottom: solid 2px #6A6F6F;
        border-collapse: collapse;
		text-align:center;
}

.textforum /* Texte courant */
{
        color: white; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
		margin-left:36pt;
		        
}

.textrose /* Texte courant */
{
        color: fuchsia; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
				        
}

.textorange /* Texte courant */
{
        color: #FF8800; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 17px;
		font-family:Times New Roman;
				        
}

.textorangedirige /* Texte courant */
{
        color: #FF8800; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 20px;
		font-family:Times New Roman;
				        
}

.textvioletdirige /* Texte courant */
{
        color: #CC66FF; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 20px;
		font-family:Times New Roman;
				        
}

.textorangecentrer /* Texte courant */
{
        color: #FF8800; /* On passe le texte en noir... */
        font-weight : bold;
		font-size : 22px;
		font-family:Times New Roman;
		text-align:center;
				        
}



#lightbox{	position: absolute;	left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }

#outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }

#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(photos-site/litebox/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(photos-site/litebox/nextlabel.gif) right 15% no-repeat; }

#imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100%	; }

#imageData{	padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em; outline: none;}	 	

#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }
