

@media screen {

.style{
position: relative; 
width: 100%; 
height: 100%; 
font-family: verdana, arial, sans-serif;
font-weight: bold;
color: #000000;
}

.bandeau1{
position: absolute; 
left: 0px; top: 0px; 
width: 100%; 
height: 75px; 
background-color: #336699; 
}

.titre{
position: absolute; 
top: 25px; 
left:25%;
font-size: 20px; 
color:#ffffff;
}

.logo{
position: absolute; 
right: 10px; top: 5px; 
width:96px;
height:64px;
background-color: #ffffff; 
}

.bandeau_menu{
position: absolute; 
left: 0px; top: 75px; 
width: 100%; 
height: 50px; 
background-color: #003366;
}

.menuhori {
position: absolute; 
right: 10px;
top: 20px;
}

.menuhori a {
font-size: 11px;
font-weight: bold;
color: #ffffff;
text-decoration: none; /* pour éviter le soulignement au survol */
margin-left: 20px; /* espacement entre chaque sous-menu */
}

.colonne_gauche { 
position: absolute;
top:125px;
left:0px; 
background-color: #CCCCCC;
width: 200px;
height: 1000px;
}

.menu {     /* Positionnement du menu dans la colonne de gauche */
position: absolute; 
top:100px;
left: 15px;
}

.contenu{
position: absolute; 
left: 25%; 
top: 200px;
}

.centre {
position: absolute
top:120px;
left: 140px; 
background-color: #ffffff;
}

.tableau { /* on place le tableau dans le centre  */
position: absolute;
left: 210px;
top: 140px;
}

.projet_lien {
position: absolute;
top:180px;
left:150px; 
}

.imprimer{
position: absolute;
top:300px;
left:30px;
}

}
@media print {

		.bandeau1 { display:none;height: 0px;}
		.titre { display:none;}
		.logo { display:none;}
		.bandeau_menu { display:none;height: 0px;}
		.centre { margin-left:0px;}
		.colonne_gauche { display:none;width: 0px;height: 800px;}
		.menu{ display:none;}
		
}








