/* Global Font Setting */
html, body, input, textarea, button, select, a {
    font-family: Verdana, Arial, sans-serif; /* Verdana is primary, with fallbacks */
}

/* Specific Layout Adjustments */
html, body {
    height: 100%;
    font-size: 12pt;
}

/* Structure ---------------------- */
#main, #header, #body, #sidebar, #content1, #footer {
    font-family: Verdana, Arial, sans-serif; /* Ensuring Verdana is used throughout */
    width: 90%; /* Example of a percentage width from previous adjustments */
    margin: 0 auto;
    background-color: #FFFFFF;
}

#header {
    height: 105px;
    padding: 5px;
}

#header .header-left, #header .header-right {
    width: 20%; /* Adjusted for consistency */
}

#sidebar {
    width: 15%; /* Sidebar specific width */
    height: 600px;
    padding: 23px 5px 15px 10px;
    border-right: 1px solid #DDD;
}

#content1 {
    width: 65%; /* Adjusted width to account for sidebar */
    padding-bottom: 25px;
}

#footer {
    width: 90%; /* Consistent width with other main elements */
    padding: 5px;
    clear: both;
    background-color: #F3F4EF;
    border-top: 1px solid #ddd;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: Verdana, Arial, sans-serif; /* Heading specific font-family */
    margin: 30px 0 0px 0;
    padding: 0;
    line-height: normal;
    font-weight: normal;
}

p, a, label, span { /* Ensuring text elements have Verdana */
    font-family: Verdana, Arial, sans-serif;
}
