/*********************************************/
/* Outlander.css                             */
/* Last Updated: April 16, 2026               */
/*********************************************/

body {
    background-color: #000;
    background-color: #000000;
    margin: 0;
    padding: 0;
    color: #000;
    font: garamond;
}

body, td, th {
    font-family: Garamond;
    font-size: 14px;
    color: #DBCBBB;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Garamond;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    padding-right: 15px;
    padding-left: 15px;
    color: #FFFFFF;
}

h1 {
    color: #FFFFFF;
}

ul, ol, dl {
    padding: 0;
    margin: 0;
}

a img {
    border: none;
}

a {
    font-size: 14px;
    color: #DBCBBB;
}

a:link {
    color: #DBCBBB;
    text-decoration: none;
}

a:visited {
    color: #DBCBBB;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #FFF;
}

a:active {
    text-decoration: none;
    color: #DBCBBB;
}

map area {
    outline: none;
}

/*********************************************/
/* HEADER                                    */
/*********************************************/

.header {
    background-color: #000000;
    background-color: #272727;
    grid-area: header;
}

/*********************************************/
/* NAV                                       */
/*********************************************/
nav {
    grid-area: navbar;
}

nav ul {
    background-color: #272727;
    padding: 1rem 0 1rem 4rem;
}

ul.nav {
    list-style: none;
    border-top: 1px solid #666;
    margin-bottom: 15px;
}

ul.nav li {
    border-bottom: 1px solid #666;
}

ul.nav a, ul.nav a:visited {
    padding: 5px 5px 5px 15px;
    display: block;
    width: 160px;
    text-decoration: none;
}

ul.nav a:hover, ul.nav a:active, ul.nav a:focus {
    color: #FFF;
}

nav ul {
    display: flex;
    gap: 3rem;
    align-content: flex-start;
}


/* ~~ These are the columns for the layout. ~~ 
1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
    float: left;
    width: 240px;
    background-color: #554F46;
    padding-bottom: 10px;
    height: 800px;
    color: #FFF;
    padding-top: 10px;
}

/*********************************************/
/* MAIN                                      */
/*********************************************/
main {
    color: black;
    min-height: 1000px;
    min-height: 500px;
    padding: 0;
    margin: 0;
    background-color: #EDE5DA;
    grid-area: main;
    padding: 0;
    margin: 0;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p {
    margin-top: 0;
    padding-right: 15px;
    padding-left: 15px;
    color: black;
    line-height: 1.4;
}

main a:link,
main a:visited,
main a:hover,
main a:active {
    color: black;
    font-weight: bold;
}

main a:hover {
    text-decoration: underline;
}

.container {
    width: 1008px;
    background-color: #FFF;
    margin: 0 auto;
    color: #33271C;
    display: grid;
    grid-template-areas:
        'header header'
        'navbar navbar '
        'main main'
        'footer footer';
    grid-template-columns: 250px 1fr;
    width: 1008px;
}

.container-with-sidebar {
    width: 1008px;
    background-color: #FFF;
    margin: 0 auto;
    color: #33271C;
    display: grid;
    grid-template-areas:
        'header header'
        'navbar navbar '
        'aside main'
        'footer footer';
    grid-template-columns: 250px 1fr;
    width: 1008px;
}

.content {
    width: 1008px;
    float: left;
    background-color: #EDE5DA;
    color: #35281C;
    height: 800px;
    font-style: normal;
    /* overflow: scroll; */
    padding-top: 0px;
}

.content ul, .content ol {
    padding: 0 15px 15px 40px;
}

/*********************************************/
/* ASIDE                                     */
/*********************************************/
aside {
    background-color: #5C5955;
    grid-area: aside;
    color: black;
    padding: 2rem;
}

aside p {
    margin: 0px;
    padding: 10px 0px;
}

aside p.download {
    font-size: 100%;
}

aside img {
    width: 200px;
}

/*********************************************/
/* FOOTER                                    */
/*********************************************/
footer {
    background-color: #272727;
    grid-area: footer;
}


footer {
    background-color: black;
    color: white;
    box-sizing: border-box;
    width: 1008px;
    margin: auto;
    padding: 2rem;
    border: 1px solid white;
    border: none;
}

.footer {
    padding: 10px 0;
    background-color: #CCC49F;
    position: relative;
    clear: both;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 2rem;
    align-content: start;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.logo-container {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    align-items: center;
}

.logo-container > * {
}

.logo-container img {
    width: 60px;
}

.copyright-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: end;
    margin-top: 1rem;
}

.copyright-container > * {
}

.logo-right p {
    text-align: left;
}

.copyright-container {
    text-align: right;
}

.copyright-container .copyright {
    text-align: left;
}

/*********************************************/
/* OTHER                                     */
/*********************************************/
.fltrt {
    float: right;
    margin-left: 8px;
}

.fltlft {
    float: left;
    margin-right: 8px;
}

.clearfloat {
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}

.caption {
    font-size: 80%;
    font-style: italic;
}

.topmenu {
    background-color: #000000;
}

@media print {
    aside * {
        color: black;
    }
    footer * {
        color: black;
    }
}
