.test
{
   background-color: #E8FFFD;
   border: 1px solid black;
   width: 95px;
   height: 110px;
   
   position: fixed;
   left: 5px;
   top: 125px;
}

p
{
   width: 350px; /* On a indiqué une largeur (obligatoire) */
   text-indent: 30px;
   text-align: justify;
   padding: 12px;
   margin: auto; /* On peut donc demander à ce que le block soit centré avec "auto" */
   margin-bottom: 20px;
}

a:active /* Quand le visiteur clique sur le lien */
{
   background-color: #FFCC66;
}

a:hover /* Quand le visiteur pointe sur le lien */
{
   text-decoration: underline;
   color: green;
}

a /* Lien normal */
{
   text-decoration: none;
   color: red;
   font-style: italic;
}

ul
{
width: 350px; 
   text-align: justify;
   margin: auto;
}