/* document_style_v2.css */
body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    color: #000000;
}

.document-container {
    max-width: 8.5in;
    min-height: 11in;
    margin: 20px auto;
    padding: 1in;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: 1px solid #ccc;
}

h1, h2, h3, h4, h5, h6 {
    color: #000000;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    line-height: 1.25;
}

h1 {
    font-size: 24pt;
    border-bottom: 1px solid #000000;
    padding-bottom: 0.2em;
}

h2 {
    font-size: 18pt;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 0.2em;
}

h3 {
    font-size: 14pt;
}

h4 {
    font-size: 12pt;
    font-style: italic;
}

p {
    margin-bottom: 1em;
    text-align: justify;
}

a {
    color: #0000EE;
    text-decoration: underline;
}

a:visited {
    color: #551A8B;
}

ul, ol {
    margin-bottom: 1em;
    padding-left: 40px;
}

li {
    margin-bottom: 0.3em;
}

blockquote {
    margin: 1.5em 40px;
    padding-left: 15px;
    border-left: 3px solid #ccc;
    font-style: italic;
    color: #555;
}

pre {
    background-color: #f5f5f5;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 10pt;
    white-space: pre-wrap;
    word-wrap: break-word;
}

code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95em;
}

pre code {
    background-color: transparent;
    padding: 0;
    border: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
    font-size: 10pt;
}

th, td {
    border: 1px solid #000000;
    padding: 6px 8px;
    text-align: left;
    vertical-align: top;
}

th {
    background-color: #e0e0e0;
    font-weight: bold;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
}

/* Specific for header IDs generated by markdown2 */
.headerlink {
    visibility: hidden;
    margin-left: 0.25em;
    color: #ccc;
    text-decoration: none;
}

h1:hover .headerlink, h2:hover .headerlink, h3:hover .headerlink, h4:hover .headerlink, h5:hover .headerlink, h6:hover .headerlink {
    visibility: visible;
}

