#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 : 22px; /* 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-family : Arial; /* on utilise Arial, c'est plus beau ^^ */
        font-size : 13px; /* hauteur du texte : 12 pixels */
        /*text-shadow: 1px 2px 2px black;*/
}

#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 : #999999; /* 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 : 165px; /* largeur */
}

#menu li /* Elements des listes */      
{ 
        float : left; 
        /* pour IE qui ne reconnaît pas "transparent" */
        border-right : 1px solid #cccccc; /* 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: 165px; /* Largeur des sous-listes */
        left: -999em; /* Hop, on envoie loin du champ de vision */
        text-align: left; /* on centre le texte qui se trouve dans la liste */
		text-indent: 6px;
}


#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 165px ; /* 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     : 1px solid #fff ; /* 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     : 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: #fff; /* On passe le texte en... */
        background: #bbbbbb; /* ... et au contraire, le fond en... */
}

#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 */ 
}





body , table{
  font-family: Arial, Verdana, Helvetica, sans-serif;
  font-size: 13px;
  text-align: justify;
}

table{
  padding-right: 0px;
  padding-left: 0px;
}

/*
table{
  background: -moz-radial-gradient(#888888, #bbbbbb, #ffffff);
}
*/

h1 {
  font-family: Arial, Verdana, Helvetica, sans-serif;
  font-size:120%;
  color:#4EBDC6;
  text-transform: uppercase;	/* Let's have all titles in uppercase. */
  }

h2 {
  font-family: Arial, Verdana, Helvetica, sans-serif;
  font-size:100%;
  color:#4EBDC6;
  }

#PragmaTitle {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: larger;
	margin: 0;
	margin-top:0;
	margin-bottom:0;
  text-decoration:none;
	}

#PragmaTitleSelected {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	color: #4EBDC6;
	font-size: larger;
	margin: 0;
	margin-top:0;
	margin-bottom:0;
  text-decoration:none;
	}

SPAN.PragmaTitleActive {
	color: #4EBDC6;
	}

a:visited {
    color:#ED7283 ;
    text-decoration: none;
    }
a:link {
    color:#47BAEC ;
    text-decoration: none;
    }
a:hover {
    color:#ED7283 ;
    font-weight:bold;
    text-decoration:none;
    }

#PragmaGuide {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	color: #FFFFFF;
	border-width: 1px;
	border-style: solid;
	border-color: white;

	border-top-width: 1px;
  border-bottom-width: 0px;
  border-right-width: 0px;
  border-left-width: 1px;

  height:19px;
	max-height:19px;
	line-height:19px;
	vertical-align:middle;
	
  padding: 4px 5px 6px 5px;
	}
#PragmaGuide:hover {
	color: #FFFFFF;
	font-size: larger;
	}

#PragmaGuideTop {
	color: #FFFFFF;
    border-width: 1px;
    border-style: solid;
    border-color: white;

    border-top-width: 0px;
    border-bottom-width: 0px;
    border-right-width: 0px;
    border-left-width: 1px;

	font-size:6px;
	line-height:6px;
    height:6px;
	vertical-align:middle;
	}

#PragmaGuideBottom {
	color: #FFFFFF;
    border-width: 1px;
    border-style: solid;
    border-color: white;

    border-top-width: 1px;
    border-bottom-width: 0px;
    border-right-width: 0px;
    border-left-width: 1px;

    height:6px;
	}

#PragmaGuideLeft {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	color: #FFFFFF;
	border-width: 1px;
    border-style: solid;
    border-color: white;

    border-top-width: 0px;
    border-bottom-width: 1px;
    border-right-width: 0px;
    border-left-width: 0px;

    height:19px;
	max-height:19px;
	line-height:19px;
    width:13px;
      
    padding: 4px 0px 6px 0px;
	}

#PragmaGuideLeftTop {
	color: #FFFFFF;
    border-width: 1px;
    border-style: solid;
    border-color: white;

    border-top-width: 0px;
    border-bottom-width: 1px;
    border-right-width: 0px;
    border-left-width: 0px;

    height:6px;
	line-height:6px;
    width:13px;
	}

#PragmaEmptyExplorer{
	color: #FFFFFF;
    border-width: 1px;
    border-style: solid;
    border-color: white;

    border-top-width: 0px;
    border-bottom-width: 0px;
    border-right-width: 0px;
    border-left-width: 0px;

	font-size:1px;
	line-height:1px;
    height:1px;
	vertical-align:middle;
	}

#using-gradients { margin-left:100px; }
#using-gradients .box { width:100px; height:100px; margin:0 10px; -moz-border-radius: 5px; border:1px solid #777; float:left; }
#using-gradients .linear-gradient { background: -moz-linear-gradient(left 40deg, #340000, #B78330); }
#using-gradients .color-stops { background: -moz-linear-gradient(right, #340000, #B78330 70%, #FEFDA1); }
#using-gradients .transparency { background: -moz-linear-gradient(right, rgba(255,255,255,0), rgba(255,255,255,1)), url("../images/trans.jpg"); }
#using-gradients .radial { background: -moz-radial-gradient(#340000, #B78330, #FEFDA1); }
#using-gradients .repeating-linear { background: -moz-repeating-linear-gradient(top left -45deg, #340000, #B78330 5px, #B78330 5px, #EEE 10px); }
