/* html.css
 *
 * Default styles for built-in HTML elements.
 *
 * guidelines:
 * - NO CLASSES!  Only HTML tags.  Classes go in "layout.css"
 * - NO FONTS!  Font faces, sizes, colors, line spacing, etc. go in "fonts.css"
 */

body {
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1.0em;
}

h1 { font-size: 2.0em; line-height: 1em; }
h2 { font-size: 1.4em; line-height: 1em; }
h3 { font-size: 1.2em; line-height: 1em; }

p {
    line-height: 1.2em;
    margin-bottom: 1.2em;
}

blockquote {
    margin: 16px 32px;
}

ul, ol {
    margin: 0px 0px 16px 32px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

input[type=text], input[type=password] {
    xborder: 1px solid #666;
    margin-top: 2px;
}

input[type=text].ghost, input[type=password].ghost {
    font-style: italic;
    color: #BBB;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus, .Pfocus_text_pseudo {
    xborder: 1px solid #000;
    xbackground-color: #FFD;
}

textarea {
    xborder: 1px solid #666;
    xfont-family: Courier New, monospace;
}

fieldset {
    border: 1px solid #AAA;
    padding: 12px;
}

table {
    border-collapse: collapse;
    border: 0px;
}
