html, body {
    margin: 0;
    padding: 0;
    background: url("images/back.gif") repeat;
    background-color: #B0B090;
}

/* PAGE WIDTH — matches original FrontPage table */
#page-wrapper {
    display: flex;
    width: 100%;        /* center column only for now */
    margin: 0 auto;      /* centers the header on the page */
	align-items: stretch;   
}

#header-wrapper {
    width: 90%;
}
#left-column {
	width: 170px;
	display: flex;          
    flex-direction: column; 
}
#center-column {
    flex: 1;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
	border: 0px solid orange; /*change this to 1px to see the border of the main box*/
}


#right-column {
	width: 10%
}

#logo-menu-row {
    display: flex;
    align-items: flex-end;     /* <-- bottom aligned */
    justify-content: space-between;
    width: 100%;
}

/* LOGO AREA */
#logo-area {
    background-color: #909070;
    width: 170px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 0 0px;
}

#logo-area img {
    width: 170px;
    height: 50px;
    display: block;
}
#top-menu-wrapper {
    width: 100%;
    text-align: center;          /* moves menu to the right of the logo */
    padding: 0px 0;             /* spacing above banner */
    bottom:0;
	font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.top-menu-button {
    display: inline-block;
    height: 20px;
    line-height: 20px;
    padding-left: 26px;

    background-image: url("images/top_menu_button.png");
    background-repeat: no-repeat;
    background-size: 20px 20px;   /* force visible size */
    background-position: left center; /* centers vertically beside text */

    text-decoration: none;
    color: black;
    margin: 0 8px;
}


#banner-row {
    display: flex;
    align-items: flex-end;
    height: 43px;
	width: 100%;
	position: relative;
}

/* This is the repeating background part */
#banner-strip {
    flex: 1; /* fills available space */
    height: 43px;
    background-image: url("images/title_back_top.jpg");
    background-repeat: repeat-x;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#banner-title-wrapper {
    position: absolute;
    left: 50vw;
    transform: translateX(-50%);
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}

#banner-title {
    height: 29px;
    color: #FFFFCC;
    font-size: 24px;
    font-family: Helvetica;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Right-cap image sits immediately to the right of the strip */
.banner-right {
    width: 13px;
    height: 43px;
    display: block;
}
#main-row {
    display: flex;
    width: 100%;
}#content-wrapper {
    display: flex;
    width: 90%;
    background-color: #cdcdb4;   /* your requested color */
}


#left-menu {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 170px;
    background-color: #b0b090;
    padding: 15px 0;
}

/* Each menu link */
.left-menu-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* centers text horizontally within the menu */
    width: 170px;
    height: 35px;
    text-decoration: none;
    background-color: #b0b090;
}

/* Icon stays fixed on the left */
.menu-icon {
    position: absolute;
    left: 8px;
}

/* Text centered relative to the whole menu */
.menu-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: black;
    text-decoration: none;
}
.left-menu-button:hover > div {
    background: linear-gradient(to right, #c1c2a5 0%, #c1c2a5 90%, transparent 100%);
}

.left-menu-button:hover .menu-icon {
    filter: brightness(1.2);
}
#left_contact_icons {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

#left_contact_icons a {
    display: inline-block;   /* keeps them side-by-side */
}

#left_contact_icons img {
    display: block;          /* removes the underline/baseline gap */
    margin: 0 5px;
}
.Links-of-interest table {
    margin: 0 auto;          /* centers the table itself */
    text-align: center;      /* centers text inside the cells */
}

.Links-of-interest td {
    text-align: center;      /* ensures cell text is centered */
}
#left-gray-table {
    flex-grow: 1; 
    gap: 170px;
    width: auto;
	background-color: #a0a0a0;
    padding: 0px 0;	
}
.copyright {
    text-align: center;
    font-family: "MS Sans Serif", Arial, Helvetica, sans-serif;
    font-size: 11px; /* FrontPage size="1" */
    color: #eeeeee; /* light gray like original */
    margin-top: 0px;
}

.home-table {
    width: 100%;        /* fills the center column */
    max-width: 100%;   /* keeps original proportions */
    margin: 0 auto;     /* centers the table itself */
    border-collapse: collapse;
	border: 0px solid red; /*change this to 1px to see the border of the main table*/
}

.home-table td {
    width: ;        /* removes rigid pixel widths */
    text-align: center; /* centers text and images */
    vertical-align: top;
}

.home-table img {
    display: block;
    margin: 0 auto;
    max-width: 100%;    /* scales images if needed */
    height: auto;
}
#ads-column {
	max-width:10%;
    width: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#footer-wrapper {
    width: 100%;
    display: flex;
    justify-content: left;
    margin-top: 0px;
}

/* Main footer bar */
#footer-bar {
    width: 90%;                 
    height: 60px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
#footer-repeat {
    flex: 1;
    height: 60px;
    background-image: url("images/title_back_bottom.gif");
    background-repeat: repeat-x;
}

/* Company box */
#footer-company-box {
    width: 293px;
    height: 50px;
    background-image: url("images/company_back_bottom.gif");
    background-repeat: no-repeat;
	top: 0;
    margin-right: 13px;          /* space for the right-cap */
}
.footer-buttons {
    width: 100%;
    text-align: center;   /* centers the buttons */
    padding-top: 10px;    /* adjust vertical alignment */
}

.footer-buttons a {
    display: inline-block;
    width: 100px;          /* your button width */
    height: 25px;         /* your button height */
    background-repeat: no-repeat;
    background-size: contain;
}

/* Back button */
.footer-back {
    background-image: url("images/back_cmp_102-cool-3d-gold010_back.gif");
}
.footer-back:hover {
    background-image: url("images/back_cmp_102-cool-3d-gold010_back_a.gif");
}

/* Next button */
.footer-next {
    background-image: url("images/next_cmp_102-cool-3d-gold010_next.gif");
}
.footer-next:hover {
    background-image: url("images/next_cmp_102-cool-3d-gold010_next_a.gif");
}
/* Right-cap image */
.footer-right {
    position: absolute;
    right: 0;
    width: 13px;
    height: 23px;
}

