<style type="text/css">
<!--

/* This is my first syle sheet */

/* The 5 pseudo classes */
A:link    {color: blue; text-decoration: underline}
A:active  {color: red; text-weight: bold}
A:visited {color: green}
P:first-line   {font-style: small caps}
P:first-letter {font-size:110%; float: right}

/* note that you can use multiple tag selectors to give the certain
   style properties */
H1,H2,H3,H4 {text-align: center}

H2,H3       {color: green}
H1,H4       {color: darkblue}
H1 EM       {color:green}

H1 EM, P STRONG, ADDRESS
            {color:red; font-style:italic}

BlockQuote  {color: blue; font-style: italic;
                         font-family: Comic Sans MS}


TABLE          {background-color: lightblue;
                float:right;
                width=96%
               }
TH             {color: black;
                font-family: Comic Sans MS;
                text-align: center;
                text-decoration:none;
                font-style:none;
                background-color: lightblue;
               }
TD             {color: darkblue;
                text-decoration:none;
                font-style:none;
               }
UL             {color: darkblue;
                font-family: Comic Sans MS;
                font-size:130%;
                font-style:bold;
                background-color: lightblue;
/*              text-decoration:underline; */
               }
UL LI          {color: darkblue;
                background-color: lightblue;
                font-family: Comic Sans MS;
                text-decoration:none;
                font-size:70%;
                font-style:italic;
                list-style:square;
               }
ul li li       {color: red}

/* CONTEXTUAL STYLES */
/* Ordered Lists : if we are two deep, it wil be lower roman */
OL LI             {list-style:upper-roman}
OL OL LI          {list-style:lower-roman}
OL OL OL LI       {list-style:lower-alpha}
OL OL OL OL LI    {list-style:decimal}

/*
P {background-image: url(p10.gif)}
TD.fill {background-image: url(p10.gif)}
LI          {background-color: rgb(30%,30%,60%)}
*/

/* OK - now we look at classes */
P.abstract {font-style: italic;
            margin-left: 0.5cm;
            margin-right: 1.5cm}
P.equation {font-family: Symbol;
            text-align: center}



SPAN {font-style: italic}


/* and generic classes - which you can use anywhere... */
.groot {font-family: Comic Sans MS;
        font-size: 40;
        margin-left: 1.5cm;
        font-style: bold;
}


/* mixin classes and pseudo classes are allowed */
A.fancy:link {text-style: italic}

</style>
