A document-level style is next most local type of style and is given
the second highest order of precedence. The style is applied to a single file
and is written in the head of the html file between and open and close style tag.
For example the current doucment has the following class selectors as part of its
document-level style. It allows one to make a distinction between a list item that poses
a question and a list item that provides an answer.
li.ques
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: large;
font-weight: bold
}
li.ans
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: medium;
font-weight: normal;
margin-left: 3em;
}