/* CSS Document */
/* Feuille de style AlphOmega */
/*      © Patrick Perrotey 2008       */

@media print {
  /* Div qui ne sont pas imprimées : */
  .menu {display: none;}
  .context {display: none;}
  .dyn {display: none;}
  .pied {display: none;}
  
  /* Div imprimée : */
  .travail {
    margin : 5%;
  }
}

body {
	background :  #CCCCCC url(images/background.png) repeat-x;
  color: #003f7a;
  font-family: sans-serif;
  font-size: small;
}

hr {
  color: #00407b;
  background-color: #00407b;
  height: 2px;
  border: 0;
}

A:link {
  color: #005C87;
  text-decoration: none;
}

A:visited, A:active {
  color: #DD0000;
  text-decoration: none;
}
/*p:first-letter {
  color: green;
  font-size: x-large;
  font-weight: bold;
  padding: 1px;
  background-color: red;
  }*/

@media screen {
    /* Les 5 zones de l'espace de travail */
    
    div.bandeau {
      height: 130px;
      width: 980px;
      overflow: hidden;
      margin : 0;
      padding: 0;
      background-color: transparent;
	background: url(images/entete.png) no-repeat top right;  
    }
    div.menuhaut {
      height: 30px;
      text-align : center;	
      width: 980px;
      margin-left : 20px;
      padding: 0;
      background-color: transparent center;
	background: url(images/menuhaut.png) no-repeat top center;
    }
    
    div.menu {
      height: 200px;
      width: 170px;
      float: left;	
      margin : 0;
      padding: 0;
      background-color: transparent;
	background: url(images/menugauche.png) no-repeat top center;
    }
    
    div.travail {
      height: 500px;
      width: 760px;
      overflow: auto;
      padding:25;
      background-color: transparent;
	    background: url(images/travail.png) no-repeat top left;
    }
    div.travail:first-letter { color : #FF0000; font-size : 20px; font-weight : bold; }
    div.pied {
      height: 30px;
      width: 980px;
      font-family: serif;
      font-style: italic;
      font-weight: bold;
      font-size: small;
      text-align: bottom right;
      overflow: hidden;
      margin : 0;
      padding: 0;
      background-color: transparent;
    }
}

