<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#singlepage{
    height: 100%;
    width: 100%;
    /* background-color: tomato; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* overflow-y: auto; */
    position: relative;
    /* display: none; */
}
#singlepage.hidden{
    display: none;
}
.singlepage-header{
    height: auto;
    width: calc(100% - 40px);
    padding: 0px 20px;
    background-color: var(--MAIN_COLOR);
    /* background-color: lightgrey; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.singlepage-header &gt; .title{
    font-size: var(--MTITLE_SIZE);
    padding: 10px 0px;
    font-family: avant-garde-lg;
    letter-spacing: 5px;
    color: white;
}

.singlepage-content{
    height: auto;
    min-height: calc(100% - 120px);
    width: calc(100% - 40px);
    padding: 20px;
    /* background-color: lightsalmon; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.singlepage-content.hidden{
    display: none;
}
.singlepage-content &gt; .title{
    font-size: var(--TITLE_SIZE);
    color: var(--SUB_COLOR);
    letter-spacing: 3px;
    margin-bottom: 10px;
    line-height: 1.5em;
}
.singlepage-content &gt; .text{
    font-size: var(--TEXT_SIZE);
    color: black;
    margin-bottom: 10px;
    line-height: 1.5em;
}
.singlepage-content &gt; .video{
    width: 100%;
    min-width: 100%;
    height: 300px;
    min-height: 300px;
    align-self: center;
    margin-bottom: 10px;
}
.singlepage-content &gt; .image{
    width: 100%;
    height: 50vh;
    align-self: center;
    margin-bottom: 10px;
    object-fit: cover;
}
.singlepage-content &gt; .imagetext{
    height: auto;
    width: 100%;
}
.singlepage-content &gt; .imagetext.imagetext-l &gt; div{
    height: 60vh;
    max-height: 60vh;
    float: left;
    margin: 5px; 
}
.singlepage-content &gt; .imagetext.imagetext-r &gt; div{
    height: 60vh;
    max-height: 60vh;
    float: right;
    margin: 5px; 
}
.singlepage-content &gt; .imagetext &gt; div &gt; img{
    max-height: 100%;
}
.singlepage-content &gt; .imagetext &gt; span {
    /* text-align: justify;  */
    font-size: var(--TEXT_SIZE);
    line-height: 1.5em;
    /* font-size: 25px;  */
}
.singlepage-content &gt; .imagecontain{
    width: 100%;
    height: 50vh;
    align-self: center;
    margin-bottom: 10px;
    object-fit: contain;
}
.singlepage-content &gt; .list{
    font-size: var(--TEXT_SIZE);
    color: black;
    margin: 0px;
    /* padding: 0px; */
    margin-bottom: 10px;
    line-height: 1.5em;
}
.singlepage-content &gt; .space{
    height: 20px;
    min-height: 20px;
    width: 100%;
}

.singlepage-content &gt; .table{
    width: 100%;
    height: auto;
    border: thin solid var(--MAIN_COLOR);
}
.singlepage-content &gt; .table &gt; caption{
    font-size: var(--TITLE_SIZE);
    font-weight: bold;
    text-align: start;
    margin-bottom: 5px;
    letter-spacing: 2px;
}
.singlepage-content &gt; .table &gt; thead &gt; tr &gt; th{
    padding: 5px 0px;
    background-color: var(--SUB_COLOR);
    color: white;
    font-style: 1.2em;
    letter-spacing: 2px;
    font-size: var(--TEXT_SIZE);
}
.singlepage-content &gt; .table &gt; tbody &gt; tr{

    text-align: center;
}
.singlepage-content &gt; .table &gt; tbody &gt; tr:nth-child(even){
    background-color: rgb(207, 207, 207);
}
.singlepage-content &gt; .table &gt; tbody &gt; tr:nth-child(odd){
    background-color: rgb(235, 235, 235);
}
.singlepage-content &gt; .table &gt; tfoot{
    background-color: var(--BTN_COLOR);
    color: white;
    text-align: center;
}


.singlepage-content &gt; .list2{
    width: 100%;
    /* min-height: 100px; */
    height: auto;
    /* padding: 10px; */
    /* border: thin solid var(--MAIN_COLOR); */
    /* background-color: green; */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;

}
.singlepage-content &gt; .list2 &gt; .title{
    width: 100%;
    padding: 10px 0px;
    text-align: start;
    position: absolute;
    top: 0px;
    letter-spacing: 2px;
    font-size: var(--TITLE_SIZE);
    color: var(--SUB_COLOR);
    line-height: 1.5em;
}
.singlepage-content &gt; .list2 &gt; .left{
    width: calc(50% - 15px);
    height: auto;
    min-height: 100px;
    padding: 10px 5px 10px 10px;
    /* background-color: red; */
    margin-top: 40px;
}
.singlepage-content &gt; .list2 &gt; .right{
    width: calc(50% - 20px);
    height: auto;
    min-height: 100px;
    padding: 10px 10px 10px 5px;
    /* background-color: blue; */
    margin-top: 40px;
}

.singlepage-content &gt; .list2 &gt; .list2container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.singlepage-content &gt; .list2 &gt; .list2container &gt; .title{
    width: 100%;
    text-align: start;
    font-size: var(--TEXT_SIZE);
    /* margin-bottom: 10px; */
    color: black;
    margin-bottom: 10px;
    line-height: 1.5em;
}
.singlepage-content &gt; .list2 &gt; .list2container &gt; .text{
    width: 100%;
    text-align: start;
    font-size: var(--TEXT_SIZE);
    /* margin-bottom: 10px; */
    color: black;
    margin-bottom: 10px;
    line-height: 1.5em;
}
.singlepage-content &gt; .list2 &gt; .list2container &gt;  ul{
    font-size: var(--TEXT_SIZE);
    color: black;
    margin: 0px;
    /* padding: 0px; */
    margin-bottom: 10px;
    line-height: 1.5em;
}

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