/*
Media is used to define the application of the CSS to its end use. If more than one external style sheet is defined with the link element the Media type would set the proper file to be used for the proper use of the page. The Media definition is not implemented in IE4 or NS4. 

<LINK REL=stylesheet MEDIA="screen" HREF="mystyle.css" TYPE="text/css"> 

You can also define more than one profile with comas between the values. 

Media=Print,Screen,Aural 

PRINT - For documents viewed on screen in print preview mode. 
SCREEN - a continuous presentation for computer screens. 
PROJECTION - paged presentation for projected presentations. 
BRAILLE - for Braille tactile feedback devices. 
AURAL - aural presentation, e.g. for a speech synthesizer. 
ALL - the default value, the style sheet applies to all output devices.

------
Modificat 09/12/2005 19:02 @elpunt.com
Modificat 15/12/2006 19:02 mmassot@elpunt.com

*/


@media aural {
	html { voice-family: female;}

	h1, h2, h3, 
	h4, h5, h6    { voice-family: paul, male; stress: 20; richness: 90 }
	h1            { pitch: x-low; pitch-range: 90 }
	h2            { pitch: x-low; pitch-range: 80 }
	h3            { pitch: low; pitch-range: 70 }
	h4            { pitch: medium; pitch-range: 60 }
	h5            { pitch: medium; pitch-range: 50 }
	h6            { pitch: medium; pitch-range: 40 }
	li, dt, dd    { pitch: medium; richness: 60 }
	dt            { stress: 80 }
	pre, code, tt { pitch: medium; pitch-range: 0; stress: 0; richness: 80 }
	em            { pitch: medium; pitch-range: 60; stress: 60; richness: 50 }
	strong        { pitch: medium; pitch-range: 60; stress: 90; richness: 90 }
	dfn           { pitch: high; pitch-range: 60; stress: 60 }
	s, strike     { richness: 0 }
	i             { pitch: medium; pitch-range: 60; stress: 60; richness: 50 }
	b             { pitch: medium; pitch-range: 60; stress: 90; richness: 90 }
	u             { richness: 0 }
	a:link        { voice-family: harry, male }
	a:visited     { voice-family: betty, female }
	a:active      { voice-family: betty, female; pitch-range: 80; pitch: x-high }

	.titol1,
	.titol2,
	.titol2-altres,
	.titol3,
	.peufoto,
	.titol1-refrany						{ voice-family: paul, male; stress: 20; richness: 90 }
	.titol1										{ pitch: x-low; pitch-range: 90 }
	.titol2, .titol2-altres		{ pitch: x-low; pitch-range: 80 }
	.titol3, .peufoto, .titol1-refrany	{ pitch: low; pitch-range: 70 }

}
