1<?xml version="1.0" encoding="utf-8"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3
4/*
5 * gray.css -- A professional-looking stylesheet with gray background and
6 * sans-serif font.
7 *
8 * Contributed 2001 by Stewart Evans and Bruce Christensen
9 * http://xmlresume.sourceforge.net
10*/
11
12.dummy { background-color: white }
13
14.resume {
15    background-color: #eeeeee;
16    padding-left: 30pt;
17    padding-right: 30pt;
18}
19h2 {
20    margin-left: -20pt;
21    font-family: sans-serif;
22    color: black;
23    border-bottom: solid 1pt black;
24}
25p {
26    margin-bottom: 0.5em;
27    margin-top: 0.5em;
28}
29
30
31.awardTitle { font-weight: bold }
32.bookTitle { font-style: italic }
33.citation { font-style: italic }
34.clearanceLevel { font-weight: bold }
35.copyright { font-size: 75% }
36li.degree { margin-bottom: 0.5em; }
37.degreeTitle { font-weight: bold }
38.employer { font-style: italic }
39.headerBlock { text-align: center }
40.jobTitle { font-weight: bold }
41.lastModified { font-size: 75% }
42.nameHeading { text-align: center; font-family: sans-serif }
43div.referee { margin-bottom: 1em; }
44.refereeName { font-weight: bold }
45.skillsetTitle { font-weight: bold }
46.urlA { font-family:sans-serif; color:red; }
47table.referees { width: 80% ; }
48
49</xsl:stylesheet>
50