/*----------------------------------------------------------------------------
    main.css

    this css-file contains all definitions, that are independend from the
    colorschemes.

    defini les dimensions, marges etc. de toutes les boites
 ----------------------------------------------------------------------------*/



/*--- body -----------------------------------------------------------------*/

body#main_body {
    margin: 0;
    padding: 0;
    text-align: center;
   background-color: #9F9FFF;
}

/*--  main_container : tout ce qu'on met dans la page-------------------*/

#main_container {
    position: relative;
    padding: 0;
    margin: 0 auto; /* auto pour centrer le main_container sur la page web */
    text-align: left;
    width: 600px;
    top: 10px;
	/* border-radius: 7px; */
    border-style: solid;
    border-width: 4px;
    border-color: #99D; 
	background-color: #FFF;
}

