
  body {
    background-color: #36246D;  
  }

  p {
    font-size: 20px;
    
  }

  .zemm {
    width:400px; /* taille image */
    height:400px;
  }

 

  #menu-deroulant, #menu-deroulant ul {
    padding: 0; /* écarts de remplissage*/ 
    margin: 0;  /* marge extérieure */
    list-style: none;
   
}
#menu-deroulant {
/* on centre le menu dans la page */
    text-align: right;
    margin-right: 20px;
    margin-bottom: 20px;
}
#menu-deroulant li {
/* on place les liens du menu horizontalement */
    display: inline-block;
}
#menu-deroulant ul li {
/* on enlève ce comportement pour les liens du sous menu */
    display: inherit;
}
#menu-deroulant a {
    text-decoration: none;
    display: block;
	color:#000;
}
#menu-deroulant ul {
    position: absolute;
/* on cache les sous menus complètement sur la gauche */
    left: -999em;
    text-align: left;
    z-index: 1000;
}
#menu-deroulant li:hover ul {
/* Au survol des li du menu on replace les sous menus */
    left: auto;
}