/* 
   Lethe Pharmaceutical - 90s Aesthetic Styles 
   Uses older CSS patterns on purpose for realism. 
*/

body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    margin: 10px;
    padding: 0;
    zoom: 1.5;
}

.wrapper {
    width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #777;
    border-radius: 8px;
    /* Some early 2000s sites faked these with images, we use pure CSS */
    overflow: hidden;
    /* Box shadow to pop from the body background slightly */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

a {
    color: #003399;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #ff6600;
}

/* TOP NAV BAR */
.top-nav {
    background-color: #002244;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
}

.top-nav a {
    color: #ffcc00;
    /* Yellow links like the picture */
}

.top-nav a:hover {
    color: #ffffff;
}

.date-text {
    color: #ffffff;
}

/* MAIN HEADER */
.header-table {
    background: #004488;
    background: linear-gradient(to right, #004488, #002244);
    /* Simulating those classic header gradients */
    color: #ffffff;
    height: 120px;
    border-bottom: 2px solid #002244;
    border-radius: 0 0 10px 10px;
    /* Matching the rounded bottom corners */
}

.header-table h1 {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 48px;
    margin: 0;
    padding: 0;
    color: #ffffff;
    text-shadow: 2px 2px 0px #000, 3px 3px 0px #ccc;
    /* Trying to simulate the 3D Spotlight logo */
    font-style: italic;
    letter-spacing: -1px;
}

.header-table h1 em {
    color: #ffff00;
    font-style: italic;
}

.header-table .tagline {
    font-size: 11px;
    color: #ff9900;
    font-weight: bold;
    display: block;
    margin-top: -5px;
    margin-left: 20px;
}

.logo-graphic {
    border: 1px solid #ffcc00;
}

/* BANNER SECTION */
.banner-graphic-table {
    background-color: #e8edf0;
    padding: 10px 0;
}

.main-banner-graphic {
    display: block;
    border: 2px solid #002244;
    border-radius: 8px;
}

/* PAGE TITLE BAR */
.page-title-bar {
    background-color: #004488;
    color: #ffffff;
    border-radius: 8px 8px 0 0;
    font-size: 13px;
    padding: 3px 10px;
    margin-top: 5px;
}

/* CONTENT WRAPPER */
.content-wrapper {
    background-color: transparent;
}

/* LEFT SIDEBAR */
.sidebar {
    background-color: #004488;
    padding: 10px;
}

.menu-box {
    background-color: #ffffff;
    border: 2px solid #ce6005;
    /* Orange border around the menu */
}

.menu-header {
    background-color: #ce6005;
    /* Orange header */
    color: #ffffff;
    font-size: 12px;
    padding: 2px;
}

.menu-content {
    background-color: #004488;
    color: #ffffff;
    padding: 5px;
    line-height: 1.6;
}

.menu-content a {
    color: #ffff00;
    font-weight: bold;
    font-size: 11px;
}

.menu-content a.active-link {
    color: #aaddff;
    /* Lighter blue for active */
}

.sidebar-graphic {
    margin-top: 20px;
    text-align: center;
}

.sidebar-graphic img {
    border: none;
    max-width: 100%;
}

/* RIGHT CONTENT */
.main-content {
    padding: 10px 20px;
    background-color: #ffffff;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #002244;
}

.section-title {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #000000;
}

.list-box {
    background-color: #e8edf0;
    /* Light gray box for the lists */
    border: 1px solid #cccccc;
}

.list-box td {
    line-height: 1.6;
    font-size: 12px;
    font-weight: bold;
}

/* NEWS ITEMS */
.news-header {
    font-family: inherit;
    font-size: 18px;
    font-weight: bold;
    color: #004488;
    margin-top: 20px;
    margin-bottom: 10px;
}

.news-item {
    margin-bottom: 20px;
}

.news-title {
    font-size: 16px;
    color: #004488;
    margin-bottom: 2px;
}

.news-meta {
    font-size: 10px;
    color: #000000;
    font-weight: bold;
    margin-bottom: 8px;
}

.news-meta a {
    color: #cc6600;
    /* Orange links in the meta */
}

.news-body {
    font-size: 12px;
    line-height: 1.4;
    color: #333333;
}