1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
<style type="text/css">
/* default formatting
*
* we should be able to combine these as body,td,... but IE 5 isn't
* isn't standard compliant... (sigh)
*/
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
}
td {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
}
th {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
font-style: bold;
text-align: left;
}
p {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
}
ul {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
}
a { text-decoration: none }
.hi {
font-weight: bold;
color: #B82619;
background: #FFFFCC;
text-decoration: none;
}
.hi2 {
font-weight: bold;
color: #B82619;
background: #CCFFCC;
text-decoration: none;
}
.indent { margin: 3px; }
/* general styles */
.heading {
font-family: Arial, Helvetica, sans-serif;
font-size: 14pt;
font-weight: bold;
color: #B82619;
}
.subheading {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
font-weight: bold;
color: #B82619;
}
.err {
font-weight: bold;
color: #B82619;
}
.smallText{
font-size: 10px;
}
.notsosmallText {
font-size: 11px;
}
/* unordered list without bullets */
ul.sans {
list-style-type: none;
list-style-postition: inside;
}
</style>
|