<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*  GREEN CITY CHARTER - CREATED BY RS 12/5/25 */

/* Below rule makes background colours automatically printable */

body {
  -webkit-print-color-adjust:exact !important;
  print-color-adjust:exact !important;
}

.green-charter {
    border: 10px solid rgb(66, 189, 173);
    border-radius: 5px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.green-charter img {
    width: 100%;
}

.charter-intro {
    padding: 20px 30px 0;
    font-weight: bold;
}

.charter-intro hr {
    border-top: 1px solid #B8D12D;
    display: none;
    padding-bottom: 5px;
}

.charter-text {
    padding: 0 20px 20px;
}

.charter-strap {
    background: rgb(66, 189, 173);
    color: #fff;
    text-align: center;
    font-size: 1.3em;
    line-height: 1.5;
    padding: 10px 10px 20px 10px;
    width: 101%;
    position: relative;
    left: -1px;
}

.charter-bottom {
    background: rgb(66, 189, 173);
    padding: 20px 10px 5px 10px;
    width: 101%;
    position: relative;
    left: -1px;
    top: 1px;
    display: flex;
    flex-direction: column;
}

.charter-bottom  p {
    font-size: 1.5em;
    color: #fff;
    line-height: 120%;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.charter-strap hr {
      height: 1px;
    background: #fff;
}

.green-charter ol {
    list-style-type: none;
    counter-reset: section;
    padding-left: 10px;
    margin-top: 0;
    display: table;
    border-spacing: 0 15px;
}
 
.green-charter li {
    display: table-row;
    position: relative;
}

.green-charter li::before {
    display: table-cell;
    padding: 0 20px 0 0;
    counter-increment: section;
    content: counter(section);
    font-weight: bold;
}

.green-charter li::after {
    content: "";
    border: 3px solid #222;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    position: absolute;
    left: -9px;
    top: 0;
    display: inline-block;
}  

/* PRINT CHARTER LIKE OLD PDF VERSION */

@media print {
    
    /* Make things unprintable here */
    .page-body h1, p, .charter-strap hr, .header-wrapper, .breadcrumb, .feedback, footer, div.year .transaction, .ad-wrapper, #key1, .alert {
         display: none;
     }
     
     .green-charter {
         margin-bottom: 0
     }
    
     .green-charter p {
        display: block;
    }

    .page-body {
        margin-top: 0;
    }
    
    .charter-strap {
        padding: 0 10px;
    }
    
    .charter-strap h2 {
        color: #fff;
        font-size: 90px;
        line-height: 120%;
        margin: 15px 0 5px;
    }
    
    .charter-intro {
        background: rgb(66, 189, 173);
        color: #fff;
        width: 101%;
        position: relative;
        left: -1px;
        font-size: 1.2em;
        font-weight: normal;
    }
    
    .charter-intro hr {
        display: block;
    }
    
    .charter-intro span {
        font-size: 1.5em;
        color: #B8D12D;
        line-height: 0;
        font-weight: bold;
    }
   
    
    .charter-text {
        background: #d1ebec;
        display: inline-block;
        margin: 0;
        padding-top: 40px;
     }
     
    .green-charter li::before {
         padding-top: 0;
         vertical-align: top;
     }
    
    .green-charter li::after {
        border: 3px solid #B8D12D;
        top: 0;
    }
    
    .charter-bottom p {
        font-size: 1.8em;
    }
}





</pre></body></html>