/*
http://www.w3.org/TR/css3-fonts/

### Définition W3C

font-weight
			ultra light														ultra léger
	100	thin																mince, fin
	200	extra light														extra léger
	300	light, (book si 400 explicitement aussi défini)		léger
	400	Normal, regular, roman, plain, (book si seul)		normal, régulier
	500	medium															médium
	600	semi-bold														demi-gras, semi-gras
	700	bold																gras, épais
	800	extra bold, ultra bold										extra gras
	900	black, heavy													noir
			extra black														extra noir

font-style
	normal
	italic
	oblique

font-stretch
	ultra-condensed
	extra-condensed
	condensed
	semi-condensed
	normal
	semi-expanded
	expanded
	extra-expanded
	ultra-expanded

*/

/****************************************************************************
 * DejaVu Serif
 */

/* graisse 400 */
@font-face {
	font-family: "DejaVu Sans Serif";
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
	src: url(/Polices/DejaVuSerif.ttf);
}
@font-face {
	font-family: "DejaVu Sans Serif";
	font-weight: 400;
	font-style: italic;
	font-stretch: normal;
	src: url(/Polices/DejaVuSerif-Italic.ttf);
}
@font-face {
	font-family: "DejaVu Sans Serif";
	font-weight: 400;
	font-style: normal;
	font-stretch: condensed;
	src: url(/Polices/DejaVuSerifCondensed.ttf);
}
@font-face {
	font-family: "DejaVu Sans Serif";
	font-weight: 400;
	font-style: italic;
	font-stretch: condensed;
	src: url(/Polices/DejaVuSerifCondensed-Italic.ttf);
}

/* graisse 700 */
@font-face {
	font-family: "DejaVu Sans Serif";
	font-weight: 700;
	font-style: normal;
	font-stretch: normal;
	src: url(/Polices/DejaVuSerif-Bold.ttf);
}
@font-face {
	font-family: "DejaVu Sans Serif";
	font-weight: 700;
	font-style: italic;
	font-stretch: normal;
	src: url(/Polices/DejaVuSerif-BoldItalic.ttf);
}
@font-face {
	font-family: "DejaVu Sans Serif";
	font-weight: 700;
	font-style: normal;
	font-stretch: condensed;
	src: url(/Polices/DejaVuSerifCondensed-Bold.ttf);
}
@font-face {
	font-family: "DejaVu Sans Serif";
	font-weight: 700;
	font-style: italic;
	font-stretch: condensed;
	src: url(/Polices/DejaVuSerifCondensed-BoldItalic.ttf);
}

/****************************************************************************
 * DejaVu Sans
 */

/* graisse 200 */
@font-face {
	font-family: "DejaVu Sans";
	font-weight: 200;
	font-style: normal;
	font-stretch: normal;
	src: url(/Polices/DejaVuSans-ExtraLight.ttf);
}

/* graisse 400 */
@font-face {
	font-family: "DejaVu Sans";
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
	src: url(/Polices/DejaVuSans.ttf);
}
@font-face {
	font-family: "DejaVu Sans";
	font-weight: 400;
	font-style: italic;
	font-stretch: normal;
	src: url(/Polices/DejaVuSans-Oblique.ttf);
}
@font-face {
	font-family: "DejaVu Sans";
	font-weight: 400;
	font-style: normal;
	font-stretch: condensed;
	src: url(/Polices/DejaVuSansCondensed.ttf);
}
@font-face {
	font-family: "DejaVu Sans";
	font-weight: 400;
	font-style: italic;
	font-stretch: condensed;
	src: url(/Polices/DejaVuSansCondensed-Oblique.ttf);
}

/* graisse 700 */
@font-face {
	font-family: "DejaVu Sans";
	font-weight: 700;
	font-style: normal;
	font-stretch: normal;
	src: url(/Polices/DejaVuSans-Bold.ttf);
}
@font-face {
	font-family: "DejaVu Sans";
	font-weight: 700;
	font-style: italic;
	font-stretch: normal;
	src: url(/Polices/DejaVuSans-BoldOblique.ttf);
}
@font-face {
	font-family: "DejaVu Sans";
	font-weight: 700;
	font-style: normal;
	font-stretch: condensed;
	src: url(/Polices/DejaVuSansCondensed-Bold.ttf);
}
@font-face {
	font-family: "DejaVu Sans";
	font-weight: 700;
	font-style: italic;
	font-stretch: condensed;
	src: url(/Polices/DejaVuSansCondensed-BoldOblique.ttf);
}

/****************************************************************************
 * DejaVu Sans Mono
 */

/* graisse 400 */
@font-face {
	font-family: "DejaVu Sans Mono";
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
	src: url(/Polices/DejaVuSansMono.ttf);
}
@font-face {
	font-family: "DejaVu Sans Mono";
	font-weight: 400;
	font-style: italic;
	font-stretch: normal;
	src: url(/Polices/DejaVuSansMono-Oblique.ttf);
}

/* graisse 700 */
@font-face {
	font-family: "DejaVu Sans Mono";
	font-weight: 700;
	font-style: normal;
	font-stretch: normal;
	src: url(/Polices/DejaVuSansMono-Bold.ttf);
}
@font-face {
	font-family: "DejaVu Sans Mono";
	font-weight: 700;
	font-style: italic;
	font-stretch: normal;
	src: url(/Polices/DejaVuSansMono-BoldOblique.ttf);
}

