/* CSS Document */
body {
font-family:	'Courier New', Times, Verdana;
}

/*p {
font-family:	Arial, sans-serif;
font-style:	italic;
font-weight:	bold;
font-size:	120%;
line-height:	140%;
}*/

#p1 {
font:	40px "times new roman", serif;
letter-spacing:	5px;
border-bottom:	4px solid gray;
}

#p2 {
font:	bold small-caps 30px "Bitstream Vera Sans", arial, sans-serif;
letter-spacing:	-4px;
}

#p3 {
font:	40px monospace;
}

#p4 {
font:	italic 25px verdana, arial, sans-serif;
text-decoration:	line-through;
}

em {
font-style:	normal;
background-color:	yellow;
}

img {
border-width:	0;
border-style:	none;
}

/* Ou encore:
img {border: 0 none;} */

.bordure {
width:	20em;
border-right:	1px solid red;
}

div {
position:	relative;
width:	300px;
height:	200px;
background:	yellow;
}
p#premier {
position:	absolute;
top:	0;
left:	0;
width:	150px;
background:	#ccc;
}
p#second {
position:	absolute;
top:	40;
left:	50;
width:	100px;
background:	green;
}