
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f1a14;
    background: white;
    margin: 0;
    padding: 24px;
    font-size: 11px;
}
.header {
    border-bottom: 4px solid #e84d27;
    margin-bottom: 18px;
    padding-bottom: 12px;
}
.header h1 {
    margin: 0;
    color: #072b52;
    font-size: 24px;
}
.actions {
    background: #fff4df;
    border: 1px solid #f4c46b;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.actions button,
.actions a {
    background: #072b52;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 6px;
    cursor: pointer;
}
.day {
    margin-bottom: 14px;
    border: 1px solid #d7c097;
    border-radius: 10px;
    overflow: hidden;
    page-break-inside: avoid;
}
.day-title {
    background: #072b52;
    color: white;
    padding: 8px 10px;
    font-weight: bold;
    font-size: 13px;
}
.menu-print {
    background: #fff8ec;
    border-top: 1px solid #d7c097;
    padding: 8px 10px;
    white-space: pre-wrap;
}
table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
th {
    background: #fff4df;
    color: #072b52;
    text-align: left;
    padding: 6px;
    font-size: 10px;
    border-bottom: 1px solid #d7c097;
}
td {
    padding: 6px;
    border-bottom: 1px solid #eadfca;
    vertical-align: top;
    font-size: 10px;
    line-height: 1.3;
    word-wrap: break-word;
}
tr:last-child td {
    border-bottom: none;
}
a {
    color: #064c8f;
    font-weight: bold;
}
.empty {
    padding: 8px 10px;
    font-style: italic;
}
.attention-pulse {
    display: inline-block;
    font-weight: 900;
    animation: agendaAttentionPulse 1.15s ease-in-out infinite;
    transform-origin: center;
}
@keyframes agendaAttentionPulse {
    0%, 100% { transform: scale(1); opacity: 1; text-shadow: none; }
    50% { transform: scale(1.08); opacity: .58; text-shadow: 0 0 8px rgba(232,77,39,.75); }
}
@media print {
    body { padding: 0; }
    .actions { display: none; }
    .attention-pulse { animation: none !important; transform: none !important; opacity: 1 !important; }
}

:root {
    --navy: #072b52;
    --orange: #e84d27;
    --gold: #f4c46b;
    --gold-dark: #b7771f;
    --green: #4f9b36;
    --green-light: #e8f8dc;
    --text: #20160c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top, rgba(255,222,148,.24), transparent 26%),
        linear-gradient(180deg,#fff0ca 0%,#291405 34%,#050302 100%);
    color: var(--text);
}

.hero {
    min-height: 420px;
    background:
        linear-gradient(90deg,rgba(255,250,235,.98),rgba(255,250,235,.88),rgba(255,250,235,.25)),
        url('Roots3.png');
    background-size: cover;
    background-position: center top;
    padding: 40px;
    border-bottom: 4px solid rgba(244,196,107,.85);
}

.brand {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--navy);
}

.utrgv {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -2px;
    color: #555;
}

.utrgv span { color: var(--orange); }

.brand-line {
    width: 2px;
    height: 54px;
    background: rgba(7,43,82,.3);
}

.ehs {
    font-size: 27px;
    font-weight: 900;
    line-height: 1.05;
}

.ehs span { color: var(--orange); }

.hero h1 {
    font-size: 42px;
    line-height: 1.08;
    color: var(--navy);
    margin: 22px 0 12px;
}

.hero h1 span { color: var(--orange); }

.hero p {
    max-width: 760px;
    color: #092c51;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}

.month-switcher {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(7,43,82,.18);
    border-radius: 15px;
    padding: 13px;
    margin-top: 18px;
    max-width: 780px;
}

.month-switcher form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.month-switcher select,
.month-switcher input {
    padding: 9px;
    border-radius: 9px;
    border: 1px solid rgba(7,43,82,.25);
    font-weight: bold;
}

button,
.button {
    border: none;
    border-radius: 999px;
    background: linear-gradient(180deg,var(--gold),var(--gold-dark));
    color: #160d04;
    font-weight: 900;
    padding: 9px 13px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
}

.button.navy,
button.navy {
    background: linear-gradient(180deg,#154c82,#072b52);
    color: white;
}

.button.red,
button.red {
    background: linear-gradient(180deg,#c74430,#7d1b13);
    color: white;
}

.button.green,
button.green {
    background: linear-gradient(180deg,#78bf58,#3f852c);
    color: white;
}

.top-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.text-link {
    color: var(--navy);
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid var(--orange);
}

.day-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5,3,2,.97);
    border-top: 1px solid rgba(244,196,107,.45);
    border-bottom: 1px solid rgba(244,196,107,.45);
    padding: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.45);
}

.day-nav-title {
    color: var(--gold);
    text-align: center;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 7px;
}

.day-nav-tools {
    max-width: 1200px;
    margin: 0 auto 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.day-nav-tools form {
    display: flex;
    align-items: center;
    gap: 4px;
}

.day-nav-tools select,
.day-nav-tools input {
    height: 27px;
    padding: 3px 6px;
    border-radius: 7px;
    border: 1px solid rgba(244,196,107,.55);
    background: #fff8e8;
    color: #20160c;
    font-size: 11px;
    font-weight: 800;
}

.day-nav-tools input { width: 70px; }
.day-nav-tools button { padding: 6px 10px; font-size: 10px; }

.day-nav {
    display: flex;
    overflow-x: auto;
    gap: 5px;
    max-width: 1200px;
    margin: 0 auto;
}

.day-nav a {
    flex: 0 0 auto;
    color: #fff6df;
    border: 1px solid rgba(244,196,107,.35);
    border-radius: 7px;
    padding: 6px 9px;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    background: rgba(255,255,255,.06);
}

.day-nav a.today-link {
    background: var(--green-light);
    color: #173c0f;
    border-color: var(--green);
}

.wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 34px 16px 60px;
}

.month-title {
    text-align: center;
    margin-bottom: 24px;
}

.month-title h2 {
    color: var(--gold);
    font-size: 32px;
    margin: 0;
    text-shadow: 0 0 16px rgba(244,196,107,.35);
}

.month-title p {
    color: #fff3d8;
    font-size: 14px;
    line-height: 1.45;
    max-width: 900px;
    margin: 10px auto 0;
    font-weight: 700;
}

.day-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(244,196,107,.55);
    border-radius: 20px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0,0,0,.45);
    scroll-margin-top: 96px;
}

.day-card.today-card {
    background: linear-gradient(180deg,#ecffe5,#d9f3cf);
    border: 4px solid var(--green);
    box-shadow: 0 0 38px rgba(92,166,64,.42),0 14px 34px rgba(0,0,0,.45);
}

.day-header {
    background:
        linear-gradient(90deg,rgba(244,196,107,.35),rgba(232,77,39,.18),rgba(7,43,82,.25)),
        #160d05;
    padding: 15px 18px;
    color: white;
}

.today-card .day-header {
    background:
        linear-gradient(90deg,rgba(92,166,64,.8),rgba(244,196,107,.25),rgba(7,43,82,.18)),
        #23411b;
}

.day-header-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.day-header h3 {
    margin: 0;
    color: #ffe39d;
    font-size: 23px;
    line-height: 1.15;
}

.today-card .day-header h3 { color: white; }

.day-header small {
    color: #fff8e8;
    font-size: 12px;
    font-weight: 800;
}

.day-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.day-badge {
    background: rgba(255,246,223,.97);
    color: var(--navy);
    padding: 7px 10px;
    border-radius: 9px;
    font-weight: 900;
    font-size: 11px;
    border: 2px solid rgba(244,196,107,.75);
}

.today-card .day-badge {
    background: #f3ffed;
    border-color: var(--green);
    color: #173c0f;
}

.header-menu-button {
    background: linear-gradient(180deg,#fff36d,#ffb000);
    color: #221200;
    border: 2px solid #fff7b0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    padding: 9px 14px;
    box-shadow: 0 0 18px rgba(255,224,70,.55);
    cursor: pointer;
}

.header-menu-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(255,224,70,.75);
}

.entries { padding: 12px; }

.empty {
    color: #fff5df;
    font-size: 13px;
    line-height: 1.4;
    font-style: italic;
    padding: 12px;
    background: rgba(0,0,0,.35);
    border: 1px dashed rgba(244,196,107,.55);
    border-radius: 12px;
}

.today-card .empty {
    color: #173c0f;
    background: rgba(255,255,255,.68);
    border-color: var(--green);
}

.day-agenda-box {
    background: #fffdf7;
    border: 1px solid rgba(183,119,31,.35);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,.16);
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.agenda-table th {
    background: #f7ead1;
    color: var(--navy);
    text-align: left;
    padding: 6px 7px;
    font-size: 10px;
    border-bottom: 1px solid rgba(183,119,31,.35);
}

.agenda-table td {
    padding: 6px 7px;
    vertical-align: top;
    border-bottom: 1px solid #ead8b8;
    font-size: 10.5px;
    line-height: 1.32;
    color: #20160c;
    word-wrap: break-word;
    text-align: left !important;
}

/* Keep entry information left-aligned by default. Rich-text alignment choices may override this. */
.agenda-table,
.agenda-table th,
.agenda-table td,
.session-title,
.mini-box,
.instruction-box,
.entry-links,
.inline-admin {
    text-align: left;
}

.rich-output { text-align: left; }
.rich-output [style*="text-align: center"] { text-align: center !important; }
.rich-output [style*="text-align: right"] { text-align: right !important; }
.rich-output [style*="text-align: justify"] { text-align: justify !important; }

.attention-pulse {
    display: inline-block;
    font-weight: 900;
    animation: agendaAttentionPulse 1.15s ease-in-out infinite;
    transform-origin: center;
    will-change: transform, opacity;
}
@keyframes agendaAttentionPulse {
    0%, 100% { transform: scale(1); opacity: 1; text-shadow: none; }
    50% { transform: scale(1.08); opacity: .58; text-shadow: 0 0 8px rgba(232,77,39,.75); }
}
@media (prefers-reduced-motion: reduce) {
    .attention-pulse { animation: none; text-decoration: underline 3px #e84d27; }
}
@media print {
    .attention-pulse { animation: none !important; transform: none !important; opacity: 1 !important; text-shadow: none !important; }
}

.entry-links,
.inline-admin {
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

.agenda-table tr:last-child td { border-bottom: none; }

.time-cell strong {
    color: #1d1309;
    font-size: 11.5px;
}

.duration {
    color: var(--navy);
    font-weight: 800;
    font-size: 10px;
}

.type-pill {
    display: inline-block;
    padding: 3px 6px;
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 900;
    color: white;
    background: #6b4418;
}

.type-class { background: #b7771f; }
.type-break { background: #2f7d4f; }
.type-lunch { background: #c86518; }
.type-meeting { background: #154c82; }
.type-other { background: #7b4a8f; }

.session-title {
    color: var(--navy);
    font-weight: 900;
    font-size: 11.5px;
    line-height: 1.22;
    margin-bottom: 4px;
}

.mini-box {
    margin-top: 5px;
    background: #fff8ec;
    border: 1px solid #ead8b8;
    border-radius: 8px;
    padding: 5px;
    font-size: 10px;
    line-height: 1.32;
}

.instruction-box {
    background: #eef8ff;
    border: 1px solid #b9d8ef;
    color: #092c51;
    border-radius: 8px;
    padding: 6px;
    font-size: 10px;
    line-height: 1.32;
}

.entry-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 7px;
}

.entry-links a {
    color: var(--navy);
    font-weight: 900;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-dark);
    font-size: 10.2px;
}

.entry-links a.pdf {
    color: #176339;
    border-bottom-color: #176339;
}

.entry-links a.resource {
    color: #154c82;
    border-bottom-color: #154c82;
}

.entry-links a.survey {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.inline-admin {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-action,
.delete-button {
    background: none;
    border: none;
    padding: 0;
    font-size: 10.5px;
    font-weight: 900;
    cursor: pointer;
    text-align: left;
}

.admin-action {
    color: var(--navy);
    border-bottom: 1px solid var(--orange);
    width: fit-content;
}

.delete-button {
    color: #9b1f15;
    border-bottom: 1px solid #9b1f15;
    width: fit-content;
}

.delete-form { display: inline; }

.edit-panel {
    display: none;
    padding: 12px;
    background: #fffaf0;
    border-top: 1px solid #ead8b8;
}

.edit-panel.open { display: block; }

.admin-form {
    background: linear-gradient(180deg,rgba(0,0,0,.72),rgba(0,0,0,.52));
    border: 1px solid rgba(244,196,107,.7);
    padding: 14px;
    border-radius: 14px;
    color: #fff5df;
    margin-top: 12px;
}

.admin-form h4 {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 9px;
}

.admin-form label {
    display: block;
    font-weight: 900;
    color: #ffe4a3;
    margin-bottom: 4px;
    font-size: 11px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 9px;
    border-radius: 9px;
    border: 1px solid rgba(244,196,107,.68);
    font-size: 12px;
    background: #fffaf0;
    color: #1d1309;
}



/* Thin rich-text toolbar used inside entry forms. */
.rich-editor-shell {
    border: 1px solid rgba(244,196,107,.68);
    border-radius: 9px;
    overflow: hidden;
    background: #fffaf0;
}
.rich-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1px;
    min-height: 24px;
    padding: 2px 4px;
    background: #f5ead5;
    border-bottom: 1px solid #dfc79c;
}
.rich-toolbar button,
.rich-toolbar select,
.mini-media-button {
    min-width: 24px;
    height: 21px;
    padding: 1px 5px;
    border: 0;
    border-radius: 3px;
    background: transparent;
    color: #2b1b0c;
    font: 600 9.5px/1 Arial, sans-serif;
    box-shadow: none;
}
.rich-toolbar select {
    width: auto;
    max-width: 92px;
    border: 1px solid #caae7c;
    background: #fffaf0;
    padding-right: 2px;
}
.rich-toolbar button:hover,
.rich-toolbar select:hover,
.mini-media-button:hover { background: #ead7b5; }
.rich-toolbar .pulse-button {
    color: #9b1f15;
    font-weight: 900;
    border: 1px solid #d4a075;
    background: #fff4df;
}
.rich-toolbar .pulse-button:hover { background: #ffe0a8; }
.rich-color-group {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 0 2px;
}
.rich-color-swatch {
    min-width: 15px !important;
    width: 15px;
    height: 15px !important;
    padding: 0 !important;
    border: 1px solid rgba(0,0,0,.35) !important;
    border-radius: 2px !important;
}
.rich-toolbar .separator {
    width: 1px;
    height: 14px;
    background: #caae7c;
    margin: 0 2px;
}
.rich-editor-area {
    min-height: 72px;
    padding: 8px;
    color: #1d1309;
    font-size: 11px;
    line-height: 1.35;
    text-align: left !important;
    outline: none;
}
.rich-editor-area:empty:before {
    content: attr(data-placeholder);
    color: #8c7a60;
}
.media-upload-row { text-align: left; }
.mini-media-button {
    display: inline-block;
    border: 1px solid #caae7c;
    background: #f5ead5;
    width: auto;
    vertical-align: middle;
}
.media-selection-text {
    margin-left: 6px;
    font-size: 9.5px;
    color: #f6e5c3;
}
.existing-media-list { text-align: left; }
.remove-media-item {
    display: block !important;
    margin: 3px 0 !important;
    color: #fff5df !important;
    font-size: 10px !important;
}
.remove-media-item input { width: auto !important; margin: 0 5px 0 0 !important; }
.entry-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(90px,1fr));
    gap: 5px;
    margin-top: 6px;
}
.entry-media-grid img,
.entry-media-grid video {
    display: block;
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    border: 1px solid #dac59f;
    border-radius: 6px;
    background: #111;
}
.menu-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 10px;
    margin-top: 12px;
}
.menu-media-grid img,
.menu-media-grid video {
    display: block;
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    border: 1px solid #dac59f;
    border-radius: 8px;
    background: #111;
}
.rich-output p, .rich-output div { margin: 0 0 4px; }
.rich-output ul, .rich-output ol { margin: 3px 0 3px 18px; padding: 0; }

.admin-form textarea {
    min-height: 75px;
    resize: vertical;
}

.full { grid-column: 1 / -1; }

.form-actions {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,.72);
    padding: 30px;
}

.menu-modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-box {
    background: #fffdf7;
    color: #20160c;
    max-width: 680px;
    width: 100%;
    border-radius: 18px;
    border: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,.55);
    padding: 22px;
}

.menu-box h2 {
    margin-top: 0;
    color: var(--navy);
    font-size: 24px;
}

.menu-text {
    white-space: pre-wrap;
    font-size: 16px;
    line-height: 1.55;
    background: #fff8ec;
    border: 1px solid #ead8b8;
    border-radius: 12px;
    padding: 14px;
}

.menu-close { margin-top: 15px; }

.admin-bottom {
    background:
        radial-gradient(circle at top,rgba(244,196,107,.17),transparent 35%),
        linear-gradient(180deg,#150c05,#050302);
    color: #fff6df;
    border-top: 3px solid var(--gold);
    padding: 34px 16px;
}

.admin-box {
    max-width: 1120px;
    margin: 0 auto 18px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(244,196,107,.5);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 0 28px rgba(0,0,0,.35);
}

.admin-box.center { text-align: center; }

.admin-box h2 {
    color: var(--gold);
    margin-top: 0;
    font-size: 24px;
}

.admin-box h3 {
    color: #ffe4a3;
    font-size: 16px;
    margin-bottom: 8px;
}

.admin-box p {
    font-size: 13px;
    line-height: 1.45;
}

.admin-box input {
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--gold);
    width: 240px;
    max-width: 100%;
    font-size: 12px;
    margin: 5px;
}

.message,
.error {
    padding: 11px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 13px;
}

.message {
    background: rgba(111,143,47,.25);
    border: 1px solid rgba(111,143,47,.7);
    color: #dfffbd;
}

.error {
    background: rgba(152,41,31,.25);
    border: 1px solid rgba(255,120,100,.7);
    color: #ffd3ca;
}

.table-wrap { overflow-x: auto; }

.manage-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,.96);
    color: #1d1309;
    border-radius: 14px;
    overflow: hidden;
}

.manage-table th {
    background: #fff0ca;
    color: var(--navy);
    text-align: left;
    padding: 8px;
    font-size: 11px;
}

.manage-table td {
    padding: 8px;
    border-top: 1px solid #ecd8ae;
    vertical-align: top;
    font-size: 11px;
}

.check {
    display: inline-block;
    width: 23px;
    height: 23px;
    border-radius: 7px;
    text-align: center;
    line-height: 23px;
    font-weight: 900;
    background: #d8f4c9;
    color: #235d14;
    border: 1px solid #75b75b;
}

.pending {
    display: inline-block;
    padding: 4px 7px;
    border-radius: 7px;
    background: #fff1c4;
    color: #7b4a00;
    font-weight: 900;
    border: 1px solid #e7b84d;
}

.disabled {
    display: inline-block;
    padding: 4px 7px;
    border-radius: 7px;
    background: #ffd5d0;
    color: #8b1a10;
    font-weight: 900;
    border: 1px solid #d66b5d;
}

.footer {
    background: #030201;
    text-align: center;
    padding: 26px 16px;
    color: #eadfca;
}

.footer h2 {
    color: var(--gold);
    margin-top: 0;
    font-size: 22px;
}

.footer p {
    max-width: 900px;
    margin: 10px auto;
    line-height: 1.5;
    font-size: 12px;
}

@media print {
    .hero,
    .day-nav-wrap,
    .admin-bottom,
    .footer,
    .admin-form,
    .inline-admin,
    .top-actions,
    .menu-modal,
    .header-menu-button {
        display: none !important;
    }

    body { background: white; }

    .wrapper { padding: 0; }

    .day-card {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}

@media(max-width:1050px) {
    .agenda-table {
        table-layout: auto;
        min-width: 1050px;
    }

    .day-agenda-box { overflow-x: auto; }
}

@media(max-width:760px) {
    .hero {
        padding: 26px 18px;
        min-height: 390px;
    }

    .brand-line { display: none; }

    .utrgv { font-size: 36px; }

    .ehs { font-size: 23px; }

    .hero h1 { font-size: 32px; }

    .hero p { font-size: 15px; }

    .month-title h2 { font-size: 27px; }

    .day-header h3 { font-size: 20px; }

    .form-grid { grid-template-columns: 1fr; }

    .full { grid-column: auto; }
}
div#container
{
   width: 800px;
   position: relative;
   margin: 0 auto 0 auto;
   text-align: left;
}
body
{
   background-color: #87CEFA;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 11px;
   line-height: 1.1875;
   margin: 0;
   text-align: center;
}
