/*
style.css
---------
 
Par Bob
*/

body
{
	background-color: gray; /* Le fond de la page sera noir */
    color: black; /* Le texte de la page sera blanc */
	background: url("images/avatar_bob.jpg") fixed no-repeat top right, url("images/background.jpg") fixed ;
	background-attachment: fixed; /* Le fond restera fixe */ 
	opacity: 1;
}
p
{
	
}

h1
{
    color: blue;
}
em
{
    color: red;
}
.introduction
{
    color: green;
}
.salutations
{
	color: blue;
}
@font-face { /* Définition d'une nouvelle police nommée CAC Champagne */
    font-family: 'cac_champagneregular';
    src: url('cac_champagne-webfont.eot');
    src: url('cac_champagne-webfont.eot?#iefix') format('embedded-opentype'),
         url('cac_champagne-webfont.woff') format('woff'),
         url('cac_champagne-webfont.ttf') format('truetype'),
         url('fonts\cac_champagne-webfont.svg#cac_champagneregular') format('svg');
}


h1 /* Utilisation de la police qu'on vient de définir sur les titres */
{
    font-family: 'cac_champagneregular', Arial, serif;
}
.imageflottante
{
    float: left;
}

