With CSS, use "px" to define font size:
Code:
p
{
font-size: 10px;
}
Also, make sure if you defining how a font should look like, you end with a generic font and put "" around fonts with a space in the name:
Code:
p
{
font-family: "MS Trebuchet", Verdana, Arial, sans-serif;
}