/*
defaut.css
2007-2010 © Carine DAZY PLANTEGENET - Traits de Vie - http://www.traitsdevie.net
Auteur  : Carine DAZY PLANTEGENET
-- Tous droits réservés --
Ce site et l'ensemble des éléments qu'il contient sont protégés par les droits d'auteur :
toute copie ou utilisation même partielle sans autorisation de l'auteur est interdite.
 */

/* Notes diverses :
	- Ordre mesures pour margin et padding : haut -  droite - bas - gauche */
/*__________________________________________________________________________________________*/


/*Essai de Cadre aux bords arrondis */


.presentation{ 
	background-color: #FFF;
	border: 2px solid #008080;
	-moz-border-radius: 20px;
	-khtml-border-radius: 20px;
	-webkit-border-radius: 20px;
	font-weight: bold;
	font-size: 1.1em;
	padding-top: 20px;
	margin: auto;
	width: 720px;
 }
       
	
/* Mise en forme générale de la page */	
body{
margin: 0;
font-family: Arial, "Trebuchet MS", Verdana, "Times New Roman", serif;
font-size: 0.9em;
background: #dabe91 url("../img/design/bgbody.gif") repeat-x;
}

ul li a{
	text-decoration: none;
}

.media {		 /* pour les photos centrées, et les vidéos embarquées type Youtube */
	margin: 25px 0;
	text-align: center;
}

/*------------------- En-tête et haut de page ---------------------*/

/* Header (bandeau) */
#header{
	height: 135px;
	background: url("../img/design/header.png") no-repeat;
	margin: auto;
	width: 790px;
}


/* Script date et heure courantes */
#date{
	color: #800;
	font-size: 0.8em;
	font-style: italic;
	height: 1.5em;
	padding-left: 20px;
}

/*------------------- Images --------------------------------------*/

img{
	border-bottom: 2px ridge #999;	
	border-left: 2px solid #CCC;
	border-right: 2px ridge #999;
	border-top: 2px solid #CCC;
}

.img-g{	/* Image positionnée à gauche */
	float: left;
	margin-right: 30px;
	margin-bottom: 20px;
}

.img-d{	/* Image positionnée à droite */
	float: right;
	margin-bottom: 20px;
	margin-left: 30px;
}

/*------------------- Menu Horizontal déroulant -------------------*/

#menu{
	padding-left : 1px;
	margin : 0;
	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 */
}

#menu ul /* Liste */     
{
	padding : 0;
    margin : 0;
	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 */
}

#menu /* Ensemble du menu */
{
	font-weight : bold; /* on met le texte en gras */
	font-size : 12px; /* hauteur du texte : 12 pixels */
	height: 200px;
}

#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-image : url('../img/design/menu/menu-bg.png'); /* couleur de fond */        
	color : #fff; /* couleur du texte */
	text-decoration : none; /* on supprime le style par défaut des liens (la plupart du temps = souligné) */
	width : 190px; /* largeur */ /* Pour 4 rubriques : 190px */
}

#menu li /* Elements des listes */      
{ 
        float : left; 
        /* pour IE qui ne reconnaît pas "transparent" */
        border-right : 1px solid #fff; /* on met une bordure blanche à droite de chaque élément */
}

/* IE ne reconnaissant pas le sélecteur ">" */
html>body #menu li
{
        border-right: 1px solid transparent ; /* on met une bordure transparente à droite de chaque élément */
}

#menu li ul /* Sous-listes */
{ 
        position: absolute; /* Position absolue */
        width: 190px; /* Largeur des sous-listes - pour 4 rubriques : 190px */
        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 : 1px solid #fff; /* 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 : 1px solid transparent; /* on met une bordure transparente en haut de chaque élément */
}

#menu li ul ul 
{
        margin: -22px 0 0 190px ; /* On décale les sous-sous-listes pour qu'elles ne soient pas au dessus des sous-listes - pour 4 rubriques : 190px */ 
        /* pour IE qui ne reconnaît pas "transparent" (comme précédemment) */
        border-left: 1px solid #fff; /* Petite bordure à gauche pour ne pas coller ... */      
}

/* IE ne reconnaissant pas le sélecteur ">" */
html>body #menu li ul ul                
{
        border-left : 1px solid transparent ; /* on met une bordure transparente sur la gauche de chaque élément */
}

#menu a:hover /* Lorsque la souris passe sur un des liens */    
{
        color: #800;
        background-image: url('../img/design/menu/menu-hover-green.gif');
}

#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-listes lorsque la souris passe sur un élément de sous-liste */
{
        left: auto; /* Repositionnement normal */
        min-height: 0; /* Corrige un bug sous IE */
}

#menu li li:hover ul, #menu li li.sfhover ul
{
border-left: 1px solid transparent;
}

/*------------------- Images de fond du menu horizontal -----------*/

#menu-index{
	background: transparent url("../img/design/menu/ecurieferme.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-quisommesnous{
	background: transparent url("../img/design/menu/carrousel.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-installations{
	background: transparent url("../img/design/menu/cavaliersponeys.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-cavalerie{
	background: transparent url("../img/design/menu/ecuriemanege.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-chevaux{
	background: transparent url("../img/design/menu/oeilhalala.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-poneys{
	background: transparent url("../img/design/menu/poneysparc.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-acces{
	background: transparent url("../img/design/menu/attelage.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-activites{
	background: transparent url("../img/design/menu/fantasio.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-tarifs{
	background: transparent url("../img/design/menu/galette2009.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-horaires{
	background: transparent url("../img/design/menu/hunter.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-agenda{
	background: transparent url("../img/design/menu/paulineibizza.jpg") no-repeat;

	margin-left: 12px;	
}

#menu-concours{
	background: transparent url("../img/design/menu/phoxer.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-actualites{
	background: transparent url("../img/design/menu/reconnaissance.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-journal{
	background: transparent url("../img/design/menu/jeuxaponey.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-photos{
	background: transparent url("../img/design/menu/phnelioth.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-presse{
	background: transparent url("../img/design/menu/menu-presse_photodchassagne.jpg") no-repeat;
	margin-left: 12px;
}


#menu-images{
	background: transparent url("../img/design/menu/menu-images_photomdavid.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-archives{
	background: transparent url("../img/design/menu/carrousel2.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-journal2010{
	background: transparent url("../img/design/menu/sarahdorphee.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-journal2009{
	background: transparent url("../img/design/menu/noemiesweety.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-journal2008{
	background: transparent url("../img/design/menu/carrousel3.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-journal2007{
	background: transparent url("../img/design/menu/carrousel4.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-concours{
	background: transparent url("../img/design/menu/yeuxmaestro-photoatouchard.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-archivesconcours{
	background: transparent url("../img/design/menu/noemiemaestro.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-presse2010{
	background: transparent url("../img/design/menu/menu-presse2010_photoatouchard.jpg") no-repeat;
	margin-left: 12px;
}

#menu-galops{
	background: transparent url("../img/design/menu/menu-galops_photomdavid.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-archivesimages{
	background: transparent url("../img/design/menu/sylvainnoblesse.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-liens{
	background: transparent url("../img/design/menu/obstacles.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-contact{
	background: transparent url("../img/design/menu/seichamps2.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-contactform{
	background: transparent url("../img/design/menu/oeilfan.jpg") no-repeat;
	margin-left: 12px;	
}

#menu-sitemap{
	background: transparent url("../img/design/menu/max.jpg") no-repeat;
	margin-left: 12px;	
}

/*------------------- Titres des paragraphes ----------------------*/


h1{
	font-size: 1.2em;
	font-weight: bold;
	line-height: 40px;
	margin-left: 1px;
	padding-left: 20px;
	color : #134734;
	background: transparent url("../img/design/barre-h1.png") repeat-x;
	border-bottom: 2px ridge #999;
}

h2{
	border-bottom: 1px solid #800;
	border-left: 4px solid #800;
	clear: both;
	color: #800;
	font-size: 1.2em;
	margin-left: 40px;
	margin-right: 50px;
	margin-top: 40px;
	padding-left: 5px;
}

h3{
	clear: both;
	color: #225C44;
	font-size: 1.1em;
	line-height: 1.1em;
	margin: 30px 0 10px 0;
	text-decoration: underline;
}

h4{
	border-bottom: 1px dotted #800;
	clear: both;
	color: #800;
	font-size: 1.1em;
	margin-bottom: 15px;
	margin-left: 15px;
	margin-top: 30px;
	padding-left: 0;
	width: 400px;
}

h5{
	border-bottom: 1px dotted #800;
	color: #800;
	font-weight: bold;
	font-size: 1.2em;
	font-style: italic;
	margin-top: 0;
	margin-bottom: 0;
	width: 350px;
}

h6 {
	border-bottom: 1px solid #328c56;
	color: #328c56;
	font-weight: bold;
	font-size: 1em;
	font-style: italic;
	margin: 30px 0 20px 15px;
	width: 400px;
}


/*------------------- Corps de page --------------------------------*/

/* Conteneur page complète */
#MainObject {
	margin: 0 auto;
	width: 790px;
}

/* Conteneur principal (corps de page) */
#MainContainer {
	background: transparent url("../img/design/bgcontainer.png") repeat-y;
	width: 790px;
}

/* Logo FFE en bas du conteneur principal */
#efelogo{
	margin-bottom: 20px;
	margin-top: 20px;
	text-align: center;
}

#efelogo img{
	border: none;
}

/* Conteneur de texte principal */
#MainContent {
	background: url("../img/design/bgcontent.png") repeat-y 2px 0 #EAEAEA;
	border-bottom: 1px solid #545454;
	margin: auto;
	width: 765px;
}

#MainContent a {
	color: #ff0000;
}

#MainContent a:hover {
	color: #225C44;
	text-decoration: underline;
}

/* Haut de page */
.top a{
	background: url("../img/design/hautpage.png") right no-repeat;
	clear: both;
	display: block;
	height: 20px;
	margin-left: 690px;
	margin-top: 15px;
	width: 50px;
}

.top a:hover{
	background: url("../img/design/hautpagehover.png") right no-repeat;
	color: #545454;
}

.top img{
	border: none;
}


/*------------------- Mise en forme du contenu --------------------*/

/* Mise en forme par défaut des paragraphes */

.contenu {
	margin: 30px 60px 30px 60px;
	padding: 5px 20px;
	text-align: justify;
}
  

/* Mise en forme occasionnelle de texte */

.center{
	text-align: center;
}

.right{
	text-align: right;
}

.italic{
	font-style: italic;
}

.justify{
	text-align: justify;
}

/*------------------- Mise en forme Page Galops.html --------------------*/

.galops{
	margin: 0;
	padding: 5px 70px;
	text-align: justify;
}

.galops h3{
	border-left: none;
	font-size: 1.1em;
	font-weight: bold; 
	margin: 20px 0 -5px 0;
	padding: 0 0 0 10px; 
	text-decoration: underline; 
	color: #2c7859;
}

.galops ul{
	padding-left: 50px;
}

.allures{
	list-style-type: none;
	margin-left: -25px; 
	font-weight: bold;
}

.galops table{ /* Mise en page des exemples de reprises, Galops 5 à 7 */
	background-color: #fffeb8;
	border: 3px ridge #545454;
	border-collapse: collapse;
	margin: 30px auto;
	width: 570px;
}

.galops th{
	background-color: #D6F5EC;
	border: 1px solid #999;
	text-align: center;
	width: 30px;
}

.galops td{
	padding: 5px 0 5px 0;
}

.galops .td1{
	background-color: rgb(239, 239, 239);
	border: 1px solid #999;
	text-align: center;
	width: 50px;
}

.galops .td2{
	border: 1px solid #999;
	padding-left: 10px;
	text-align: left;
}

.credits-galops{
	color: #545454;
	font-size: 0.9em;
	font-style: italic;
	margin-bottom: 30px;
	margin-top: -15px;
	text-align: right;
}

/*------------------- Mise en forme articles Revue de Presse --------------------*/

/* Mise en forme par défaut des paragraphes */

.presse {
	font-family: "Times New Roman";
	margin: 0;
	padding: 5px 70px;
	text-align: justify;
}

.photo-presse-gh{	/* Photo de l'article positionnée à gauche, et format paysage */
	float: left;
	margin-right: 30px;
	width: 300px;	
}

.photo-presse-gh img{
	margin-bottom: 3px;
}

.photo-presse-gh p{
	float: left;
	font-size: 0.9em;
	font-style: italic;
	font-weight: bold;
}


.photo-presse-dh{	/* Photo de l'article positionnée à droite, et format portrait */
	float: right;
	margin-left: 30px;
	width: 300px;	
}

.photo-presse-dh img{
	margin-bottom: 3px;
}

.photo-presse-dh p{
	float: right;
	font-size: 0.9em;
	font-style: italic;
	font-weight: bold;
}


.photo-presse-dv{	/* Photo de l'article positionnée à droite, et format portrait */
	float: right;
	margin-left: 30px;
	width: 150px;	
}

.photo-presse-dv img{
	margin-bottom: 3px;
}

.photo-presse-dv p{
	float: right;
	font-size: 0.9em;
	font-style: italic;
	font-weight: bold;
}

.credits{
	clear: both;
	font-style: italic;
	text-align: right;
}

/*------------------- Listes --------------------------------------*/

/* Mise en forme de base */



.ancre{ /* Pour la page archives.html, pour éviter plusieurs id */
	border-left: 1px solid #CCC;
	border-bottom: 2px solid #CCC;	
	clear: both;
	list-style-type: none;
	list-style-image: url("../img/puces/rond1.gif");
	margin: 30px 10px 50px 40px;
	width: 650px;
}

.ancre h3{
	border-bottom: 1px dotted #225C44;
	margin-left: 20px;
	text-decoration: none;
	width: 300px;
}

.liste {
	margin: 0;
	text-align: justify;
	padding-right: 20px;
}


.liste1 { /* Lien de bas de page "Retour à l'accueil" */
	border-top: 1px solid #800;
	clear: both;
	height: 1.5em;
	list-style-type: none;
	list-style-image: url("../img/puces/sphere.png");
	margin-left: 20px;
	margin-top: 50px;
	width: 250px;
}
.liste1 li{padding-top: 10px;}
.liste1 li a{text-decoration: none;}
.liste1 li a:hover{color: #225C44 !important; text-decoration: underline;}

.liste2 { /* Sous-menus de bas de page */
	clear: both;
	height: 1.5em;
	list-style-type: none;
	list-style-image: url("../img/puces/sphere.png");
	margin-left: 20px;
	padding-bottom: 50px;
	width: 200px;
}
.liste2 ul{margin-left: 50px}
.liste2 li a{text-decoration: none;}
.liste2 li a:hover{color: #225C44 !important; text-decoration: underline;}

.liste3{ /* Spécifique aux horaires attelage */
	margin-left: 320px !important;
}


.sousmenu{
	background-color: #efefd8;
	border: 1px solid #999;
	clear: both;
	margin: 30px 20px 0 20px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	padding: 5px 0 5px 0;
	list-style-type: none;
	list-style-image: url("../img/puces/sphere.png");

}

.sousmenu h3{
	border-top: 1px solid #800;
	border-left: none;
	color: #800;
	line-height: 1.5em;
	margin-top: 10px;
	margin-left: 3px;
	padding-left: 10px;
	width: 300px;
}

/*------------------- Page d'accueil (index.html) ----------*/

/* Cadre "Quoi de neuf ?" (class="news") */
.news{
	background-color: #fffeb8;
	border: 2px solid #008080;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	margin: 25px auto;
	width: 720px;
}

.news h2{
	margin-left: 20px;
}

.news .ancre{
	border: none;
}

.news .ancre li{
margin-left: -30px;
}


/* Cadre Actualités (class="actu") */
.actu{
	background-color: #FFF;
	border: 2px solid #CCC;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	margin: 25px auto;
	padding: 10px 0;
	width: 720px;
}


.actu h2{
	background: url("../img/puces/carreanim.gif") left no-repeat;
	border-bottom: 1px solid #225C44;
	border-left: none;
	color: #800;
	font-size: 1.1em;
	margin: 5px 0 20px 10px;
	padding: 0;
	padding-left: 15px;
	width: 400px;
}


.actu h3:first-letter{
	color: red;
}

.actu h3{
	border: none;
	color: red;
	font-size: 1em;
	font-style: normal;
	margin: 30px 0 20px 0;
	padding: 0;
	padding-left: 15px;
	text-align: center;
	text-decoration: underline;
}

.actu h4{
	background: url("../img/puces/carre1.gif") left no-repeat;
	color:  #225C44;
	border-bottom: none;
	margin-left: 20px;
	margin-bottom: 10px;
	padding-left: 10px;
	text-decoration: underline;
}

.actu ul li{
	margin: 0;
	margin-left: 25px;
	padding-right: 35px;
	text-align: justify;
}

.actu p{
	padding-left: 30px;
	padding-right: 20px;
	text-align: justify;
}

/*------------------- Like-button Facebook en page d'accueil (index.html) ----------*/

#network{
	color: #800;
	font-weight: bold;
	padding-top: 25px;
	text-align: center;
}
	
#network img{
	border: none;
	vertical-align: middle;
}


/*------------------- Mise en page spécifique page Archives images (archivesimages.html) ----------*/

.archh3{ /* Titre spécifique à archivesimages.html */
	background: url("../img/puces/carre2.gif") left no-repeat;
	color: #800;
	margin-top: 0;
	padding-left: 13px;
}

.archh4{ /* Titre spécifique à archivesimages.html */
	background: url("../img/puces/rond1.gif") left no-repeat;
	color: #225C44;
	padding-left: 13px;
	width: 550px;
}

.archphotos a{
	background: url("../img/puces/download.png") center no-repeat;
	clear: both;
	display: block;
	height: 20px;
	margin-top: 5px;
	text-align: center;
}

.archphotos a:hover{
	background: url("../img/puces/download-on.png") center no-repeat;
}

.archphotos a:visited{
	background: url("../img/puces/download-visited.png") center no-repeat;
}

.facebook a, .fbk-col3 a{
	background: url("../img/puces/facebook.png") center no-repeat;
	clear: both;
	display: block;
	height: 25px;
	margin-top: 0px;
	text-align: center;
}

.facebook a:hover, .fbk-col3 a:hover{
	background: url("../img/puces/facebook-on.png") center no-repeat;
}

.facebook a:visited, .fbk-col3 a:visited{
	background: url("../img/puces/facebook-visited.png") center no-repeat;
}

.archphotos img{
	border: none;
}

/*------------------- Page : Plan du site (sitemap.html) ----------*/

.sitemaplevel1{margin:0 0 25px 25px; padding:0;list-style-type:none;font-size:small;background: url("../img/sitemap/point1.gif") repeat-y 0px 0;}
.sitemaplevel2{margin:0 0 0 25px; padding:0;list-style-type:none;font-size:small;background: url("../img/sitemap/point1.gif")  repeat-y 0px 0;}
.sitemaplevel3{margin:0 0 0 25px; padding:0;list-style-type:none;font-size:small;background: url("../img/sitemap/point1.gif")  repeat-y 0px 0;}
.sitemaplevel4{margin:0 0 0 25px; padding:0;list-style-type:none;font-size:small;background: url("../img/sitemap/point1.gif")  repeat-y 0px 0;}
.sitemaplevel1 a{font-weight:normal;color:#800;background: url("../img/sitemap/point2.gif") no-repeat 0px 10px;padding-left:35px;color:#800 !important;text-decoration:none;}
.sitemaplevel2 a{font-weight:normal;color:#800;background: url("../img/sitemap/point2.gif") no-repeat 0px 10px;padding-left:35px;}
.sitemaplevel3 a{font-weight:normal;color:#800;background: url("../img/sitemap/point2.gif") no-repeat 0px 10px;padding-left:35px;}
.sitemaplevel4 a{font-weight:normal;color:#800;background: url("../img/sitemap/point2.gif") no-repeat 0px 10px;padding-left:35px;}
.sitemaplevel1 a:link,.sitemaplevel2 a:link,.sitemaplevel3 a:link,.sitemaplevel4 a:link,.sitemaplevel1 a:visited,.sitemaplevel2 a:visited,.sitemaplevel3 a:visited,.sitemaplevel4 a:visited{color:#800;}
.sitemaplevel1 a:active,.sitemaplevel2 a:active,.sitemaplevel3 a:active,.sitemaplevel4 a:active,.sitemaplevel1 a:hover,.sitemaplevel2 a:hover,.sitemaplevel3 a:hover,.sitemaplevel4 a:hover{color:#800; text-decoration: underline;}
.sitemaplevel1 li.doc{background: url("../img/sitemap/carre1.gif") no-repeat 22px 6px;}
.sitemaplevel1 li.docs{background: url("../img/sitemap/carre2.gif") no-repeat 22px 12px; padding-top: 6px;}
.sitemaplevel2 li.doc{background: url("../img/sitemap/carre1.gif") no-repeat 22px 6px;}
.sitemaplevel2 li.docs{background: url("../img/sitemap/carre2.gif") no-repeat 22px 12px; padding-top: 6px;}
.sitemaplevel3 li.doc{background: url("../img/sitemap/carre1.gif") no-repeat 22px 6px;}
.sitemaplevel3 li.docs{background: url("../img/sitemap/carre2.gif") no-repeat 22px 12px; padding-top: 6px;}
.sitemaplevel4 li.doc{background: url("../img/sitemap/carre1.gif") no-repeat 22px 6px;}
.sitemaplevel4 li.docs{background: url("../img/sitemap/carre2.gif") no-repeat 22px 12px; padding-top: 6px;}

/*------------------- Bas de page ---------------------------------*/

/* Fonction "dernière mise à jour" */
#maj{
	color: #545454;
	font-style: italic;
	font-size: 0.9em;
	list-style-type: none;
	margin: 0;
	text-align: right;
	padding-right: 30px;
}

/*------------------- Pied de page --------------------------------*/
#footer {
	background-image: url("../img/design/footer.png");
	height: 70px;
	margin: auto;
	width: 790px;
}

/* Pied de page : liens de gauche */
#copyright {
	border-top: #545454 1px solid;	
	float: left;
	font-size: 80%;
	margin-left: 10px;
	padding-top: 10px;
	padding-left: 21px;
	width: 226px;
}

/* Pied de page : liens de droite */
#FooterMenu {			
	border-top: #545454 1px solid;	
	float: right;
	margin-right: 13px;
	padding-top: 20px;
	padding-right: 20px;
	text-align: right;
	font-size: 80%;
	width: 500px;
}

#FooterMenu a, #copyright a {
	color: #545454;
	text-decoration: none;
}

#FooterMenu a:hover, #copyright a:hover {
	color: #800;
	text-decoration: underline;
}

/*------------------- Stats XiTi --------------------------------*/

#xiti-logo {
	text-align: center;
}

#xiti-logo img{
	border: none;
}
