 
 
* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}
 
a {
    text-decoration: none;
    color: #fff;
    -webkit-tap-highlight-color: transparent;
}


ul {
    list-style: none;
}

h1 h2 h3 {
    font-weight: 100;
}

pre {
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    white-space: pre-wrap;
  }

body {
    font-family: Arial, Helvetica, sans-serif;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.0;
    height: 100vh;
    background-color: #000;
}

#container {    

    width: 100%;
    height: 100%;
    
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    grid-template-areas: 
    "main main main"    
    "footer footer footer"
    ;

   
}

.site-header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2200;
    background-color: #000;
    border-bottom: 1px solid #202020;
}

.site-header-banner {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
    position: relative;
    color: #fff;
}

.site-header-place,
.site-header-menu-area {
    flex: 1 1 0;
    min-width: 0;
}

.site-header-place h1 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header-logo {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    background-color: #fff;
    z-index: 2300;
}

.site-header-logo img {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50px;
}

.site-header-menu-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1200;
}

.header-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: #050505;
    border: 1px solid #2d2d2d;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
}

.header-menu-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background-color: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.header-menu-toggle:hover,
.header-menu-toggle[aria-expanded="true"] {
    background-color: #161616;
}

.header-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.header-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.header-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.header-menu[hidden] {
    display: none;
}

.header-menu {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2100;
    width: 100%;
    max-height: none;
    padding: 22px 16px 42px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #111;
}

.header-menu-section-title {
    width: min(680px, 100%);
    margin: 18px auto 5px;
    padding: 0 10px;
    color: #666;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
}

.header-menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    width: min(680px, 100%);
    min-height: 42px;
    margin: 0 auto;
    padding: 8px 10px;
    background-color: #fff;
    border-bottom: 1px solid #ececec;
    color: #111;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
}

.header-menu-item:last-child {
    border-bottom: none;
}

.header-menu-item:visited {
    color: #111;
}

.header-menu-item:hover {
    background-color: #f4f4f4;
}

.header-menu-login {
    margin-top: 0;
    border-top: 0;
}

.header-menu-arrow {
    color: #777;
    font-size: 18px;
    line-height: 1;
}

body.header-menu-open {
    overflow: hidden;
}

body.header-menu-open #container {
    overflow: hidden;
}

html.header-menu-open,
html.header-menu-open body,
body.header-menu-open {
    overflow: hidden !important;
}

html.header-menu-open header {
    left: 0;
    right: var(--scrollbar-width, 0px);
    width: auto;
}

.header-menu {
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 768px) {
    .header-menu {
        padding-top: 36px;
    }

    .header-menu-section-title,
    .header-menu-item {
        width: min(760px, 100%);
    }

    .header-menu-item {
        min-height: 44px;
        font-size: 14px;
    }
}


#header{ 
    position: fixed;

    width: 100%;
    height: 60px;
    padding-top: 15px;
    background-color: #000;
}


        #logo {
            position:fixed;
            
            width: 100%;   
            background-color: #000;
            height: 40px;
            padding-top: 3px;
            
        }
        
            #logo img {
                margin:auto;
                display: block;  
                height: 35px;
               
            }

            #hauptnav {
                position: fixed;
                display: inline-block;
                
                font-size: 40px;
                background-color: #000; 
                width: 100%;
                
                z-index: 100;
            }
    
                #hauptnav a {
                   display: inline-block;
                   margin-left: 0px; 
                   font-size: 40px;
                   height: 40px;
                   width: 100%;
                   padding-top: 3px;
                   padding-left: 20px; 
                }
    

    main {
        grid-area: main;
        margin-top: 0;   
        padding-bottom: 100px;
    }



        main ul li {  
            padding-top: 20px;
            /*border: 1px solid #ddd;*/
            border-radius: 5px;
            margin-left: 10px;
            margin-right: 10px;
            margin-top: 10px;
            padding-bottom: 10px;
            
        }

        main ul li a {
            display: grid;
            grid-template-columns: 80px 80px 1fr; 
            grid-template-areas: 
            "when when when"          
            "betreff betreff betreff"
            "vbs vbs vbs"
            "pdfs pdfs pdfs"
           ;
        }

        main ul p {
            margin-left: 20px;
        }


        .user_portrait {
            margin-top: 100px;
        }

        .user_portrait h2 {
            font-size: 26px;
            margin: 30px 0 30px 0;
            padding: 10px;
            text-align: center;
            font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
            font-weight: 300;
            color: #fff;
        }


        .logo_user_portrait {
            height: 250px;
            width: 250px;
            display: block;
            margin: auto;
            border-radius: 50%;
            object-fit: cover;
        }


        address {
            width: 100%;
            font-size: 14px;
            font-style: normal;
            color: #fff;
            line-height: 24px;
            margin-top:20px;
            padding-top: 10px;
            padding-left: 10px;
            padding-right: 10px;;
            padding-bottom: 20px;
            border-top: 1px solid #5e5e5e;
        }

        address h3 {
            color: #5e5e5e;
            font-size: 20px;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        address p {
            color: #fff;
        }

        address a {
            display: block;
            padding-top: 20px;
            text-decoration: underline;
           
            border: 1px solid #222;
            border-radius: 50px;
            margin-top: 10px;
            margin-bottom: 10px;
            padding: 6px;
            text-align: center;
            color: #fff;
            background-color: #000;
        }

        address a:hover {
            background-color: #000000;
        }

        .phone {
            padding-bottom: 20px;
        }

        .phone a {
            display: block;
            padding-top: 20px;
            text-decoration: underline;
            background-color: #484848;
            color: #fff;
            border: 1px solid #222;
            border-radius: 50px;
            margin-top: 10px;
            margin-bottom: 10px;
            margin-left: 10px;
            margin-right: 10px;
            padding: 10px;
            text-align: center;
            font-size: 14px;
        }
   

        .oeffnungszeiten {
            width: 100%;
            font-size: 14px;
            color: #fff;
            line-height: 24px;
            margin-top:20px;
            padding: 0 10px 20px 10px;
            
        }

        .oeffnungszeiten h3 {
            color: #5e5e5e;  
            font-size: 20px;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

            

        .absatz {
            width: 100%;
            font-size: 15px;
            color: #fff;
            line-height: 24px;
            margin-top:20px;
            padding: 20px 10px 20px 10px;
            border-bottom: 1px solid #5e5e5e;
            border-top: 1px solid #5e5e5e;
        }


        ul h3 {
            color: #fff;  
            font-size: 16px;
            letter-spacing: 0.5px;
            margin: 30px 0 30px 0;
            padding: 10px;
        }

        .pdf {
            width: 100%;
            margin-top: 15px;
            margin-right: 10px;
            margin-left: 10px;
            padding-top: 5px;
            border-bottom: 1px solid #d7d7d7;
        }

        .pdf h3 {
            color: #222;
            font-size: 16px;
            letter-spacing: 0.5px;
            margin-top: 10px;
            
        }

        .pdf img {
            width: 95%;
            margin-top: 10px;
            margin-bottom: 10px;
        }


        .pictures {
            grid-area: vbs;
            margin-top: 5px;
            margin-right: 10px;
            margin-left: 10px;
            padding-top: 5px;
            
        }

        .pictures img {
            height: 200px;
            width: 100%;
            margin-top:5px;
            border-radius: 10px;
            object-fit: cover;
        }


        .pdf_vbs {
            grid-area: pdfs;
            margin-top: 5px;
            margin-right: 10px;
            margin-left: 10px;
            padding-top: 5px;
            
        }

        .pdf_vbs img {
            width: 100%;
            margin-top:5px;
            border-radius: 10px;
            object-fit: cover;
        }


        .when {
            grid-area: when;
            display: grid;
            grid-template-columns: 80px 10px 1fr;
            grid-template-areas: "date . time";
            padding-left: 10px;
        }

        .date{
            grid-area: date;  
            font-size: 14px;
            color: #7d7d7d;
            letter-spacing: 0.1px;
        }

        .time{
            grid-area: time;
            font-size: 14px;
            color: #7d7d7d;
            letter-spacing: 0.1px;
        }

        .betreff{
            grid-area: betreff;
            font-size: 20px;
            color: #fff;
            padding-right: 5px;
            margin: 10px 10px 0 10px;           
            max-width: 30ch;
            line-height: 1.15;
            letter-spacing: 0.0px;
            padding: 5px 0 5px 10px;
            border-bottom: 1px solid #d7d7d7;
            border-top: 1px solid #d7d7d7;
        }

        #ad {
            display: none;
        }

    


        footer {
            grid-area: footer;
            margin-top: 50px;
            padding-bottom: 50px;
            background-color: #e4e4e4;
            padding-top: 20px;
        }

        footer h2 {
            letter-spacing: 1px;
        }

        footer a{
            display: block;
            padding: 20px;
            margin: 0 20px;
            font-size: 11px;
            color: #000;
            border-bottom: 1px solid #c9c9c9;
            
        }

        footer p {
            font-size: 12px;
            margin: 10px;
        }
 

    @media screen and (min-width: 375px) {


        #profile a {
            padding: 3px 50px 0px 50px;
        }

        #hauptnav ul a {        
            font-size: 12px;
        }


        main ul li a {
            display: grid;
            grid-template-columns: 80px 80px 1fr; 
            grid-template-areas: 
            "when when when"          
            "betreff betreff betreff"
            "vbs vbs vbs"
            "pdfs pdfs pdfs"
           ;
        }


        main ul li a h3 {
            grid-area: sender;
            font-size: 15px;
            margin-right:20px;
            margin-bottom: 0px;
            max-width: 30ch;
            
        }


        .betreff{
            grid-area: betreff;
            font-size: 18px;
            margin-left:0;
            margin-right:20px;
            max-width: 100%;
            color: #fff;
            padding: 5px 0 5px 10px;
            border-bottom: 1px solid #5e5e5e;
            border-top: 1px solid #5e5e5e;
        }

        .pictures {
            grid-area: vbs;
            margin-top: 5px;
            margin-right: 0px;
            margin-left: 0;
            padding-top: 10px;
        }

        .pictures img {
            height: 250px;
            width: 100%;
            margin-top:5px;
            border-radius: 0px;
            object-fit: cover;
        }

    }

    @media screen and (min-width: 467px) {

        
        main ul li a {
            display: grid;
            grid-template-columns: 80px 80px 1fr; 
            grid-template-areas: 
            "when when when"          
            "betreff betreff betreff"
            "vbs vbs vbs"
            "pdfs pdfs pdfs"
           ;
        }



        .pictures {
            grid-area: vbs;
            margin-top: 5px;
            margin-right: 0px;
            margin-left: 0;
            padding-top: 10px;
        }

        .pictures img {
            height: 250px;
            width: 100%;
            margin-top:5px;
            border-radius: 0px;
            object-fit: cover;
        }

    }




    @media screen and (min-width: 510px) {

        #container {    

            width: 100%;
            height: 100%;
            
            display: grid;
            grid-template-columns: 1fr 500px 1fr;
            grid-template-areas: 
            ". main ."    
            "footer footer footer"
            ;
        }

       
        #logo {
            heighT: 45px;
        }

            #logo img {
                height: 35px;
                margin-top: 5px;
            }

        main {
            margin-top: 0px;
        }

    }

    @media screen and (min-width: 630px) {

  
        #logo img {

            margin-left: 80px;
    }


    #profile a {
        position: absolute;
        right: 70px;
    }


        #hauptnav ul a {        
            font-size: 14px;
        }

        #hauptnav ul li div {
            padding-top: 5px;
        }

        #nav_list {
            width: 75%;
        }

        .pictures img {
            height: 300px;
            width: 100%;
            margin-top:5px;
            border-radius: 0px;
            object-fit: cover;
        }


 

    }




    @media screen and (min-width: 1024px) {

        #container {    

            width: 100%;
            height: 100%;
            
            display: grid;
            grid-template-columns: 1fr 600px 1fr;
            grid-template-areas: 
            ". main . "    
            
            ;
        }
     
        main {
            max-width: 500px;
            margin-left: 50px;
        }

       
        main ul li a {
            display: grid;
            grid-template-columns: 80px 80px 1fr; 
            grid-template-areas: 
            "when when when"          
            "betreff betreff betreff"
            "vbs vbs vbs"
            "pdfs pdfs pdfs"
           ;
        
        }


        .pictures {
            grid-area: vbs;
            margin-top: 5px;
            margin-right: 20px;
            
            padding-top: 5px;
            padding-left: 10px;
            
        }

        .pictures img {
            height: 250px;
            width: 100%;
            margin-top:5px;
            border-radius: 10px;
            object-fit: cover;
        }


        footer {
            position: fixed;
            bottom: 0;
            height: 120px;
            display: inline-block;
            width: 20%;
            background-color: #000;
            padding-bottom: 40px;
            border-top: none;
            color: #aaaaaa;
            margin-bottom: 10px;
            margin-left: 20px;
        }

        footer a {
            display: inline-block;
            padding: 0;
            margin: 0;
           
            border: none;
            margin-left: 5px;
            padding-top: 5px;
            color: #777;
            
        }

        footer a  h2 {
            font-size: 15px;
            letter-spacing: 0;
            font-weight: 400;     
            color: #777;
        }
    
        footer a:hover {
            text-decoration: underline;
        }

        footer a p{
            display: none;
        }
       
    }

/* Finaler Profil-Detail-Override */

html,
body {
    min-height: 100vh;
    height: auto;
    background: #000;
    color: #f2f2f2;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.45;
}

html:not(.header-menu-open) {
    scrollbar-gutter: stable;
    overflow-y: scroll;
}

.header-menu {
    width: 100%;
}

#logo {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: calc(100% - 8px);
    max-height: calc(100% - 8px);
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: center;
    position: static;
    transform: none;
}

#container {
    display: block;
    width: 100%;
    min-height: 100vh;
    height: auto;
    background: #000;
}

.site-header-menu {
    z-index: 2200;
    background-color: #000;
    border-bottom: 1px solid #5e5e5e;
}

.site-header-banner {
    height: 60px;
    gap: 10px;
    padding: 0 12px;
}

.site-header-place h1 {
    font-size: 16px;
    font-weight: 400;
}

.site-header-logo {
    left: 50%;
    top: 8px;
    width: 44px;
    height: 44px;
    background: #fff;
    z-index: 2300;
}

.site-header-logo img {
    width: 44px;
    height: 44px;
}

.site-header-menu-area {
    z-index: 2300;
}

#hauptnav {
    display: none;
}

main {
    display: block;
    width: min(680px, calc(100% - 24px));
    max-width: none;
    margin: 0 auto;
    padding: 92px 0 56px;
}

.user_portrait {
    margin: 0;
    padding: 22px 18px;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    border: 1px solid #242424;
    border-radius: 22px;
    background: #080808;
}

.logo_user_portrait {
    width: 82px;
    height: 82px;
    margin: 0;
    border-radius: 50%;
    object-fit: cover;
    background: #151515;
    border: 1px solid #303030;
}

.user_portrait h2 {
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 700;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

address,
.phone,
.oeffnungszeiten,
.absatz,
.pdf {
    width: 100%;
    margin: 16px 0 0;
    padding: 18px;
    border: 1px solid #242424;
    border-radius: 18px;
    background: #080808;
    color: #f2f2f2;
}

address {
    font-style: normal;
    line-height: 1.55;
}

address h3,
.oeffnungszeiten h3,
.pdf h3,
ul h3 {
    margin: 0 0 10px;
    padding: 0;
    color: #d8d8d8;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
}

address p {
    margin: 4px 0;
    color: #f2f2f2;
}

.phone {
    display: grid;
    gap: 10px;
}

.phone a,
address a {
    display: block;
    margin: 0;
    padding: 11px 14px;
    color: #fff;
    background: #161616;
    border: 1px solid #303030;
    border-radius: 999px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.phone a:visited,
address a:visited {
    color: #fff;
}

.phone a:hover,
address a:hover,
.phone a:focus-visible,
address a:focus-visible {
    background: #222;
    border-color: #444;
}

.phone a:focus-visible,
address a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.oeffnungszeiten pre,
.absatz pre {
    margin: 0;
    color: #f2f2f2;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.pdf {
    border-bottom: 1px solid #242424;
}

.pdf h3 {
    color: #d8d8d8;
}

.pdf img {
    display: block;
    width: 100%;
    margin: 10px 0 0;
    border-radius: 14px;
}

main > ul {
    margin: 28px 0 0;
    padding: 0;
}

main > ul > h3 {
    margin: 0 0 12px;
    color: #d8d8d8;
}

main ul li {
    margin: 0 0 14px;
    padding: 14px;
    border: 1px solid #242424;
    border-radius: 18px;
    background: #080808;
}

main ul li a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.when {
    padding: 0;
    display: flex;
    gap: 10px;
}

.date,
.time {
    color: #a8a8a8;
    font-size: 13px;
}

.betreff {
    max-width: none;
    margin: 0;
    padding: 0;
    color: #fff;
    border: 0;
    font-size: 17px;
    line-height: 1.3;
}

.pictures,
.pdf_vbs {
    margin: 0;
    padding: 0;
}

.pictures img,
.pdf_vbs img {
    width: 100%;
    height: auto;
    margin-top: 8px;
    border-radius: 14px;
    object-fit: cover;
}

footer {
    display: none;
}

@media screen and (min-width: 768px) {
    main {
        width: min(720px, calc(100% - 40px));
        padding-top: 104px;
    }

    .user_portrait {
        grid-template-columns: 104px minmax(0, 1fr);
        padding: 26px;
    }

    .logo_user_portrait {
        width: 104px;
        height: 104px;
    }

    .phone {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (min-width: 1100px) {
    main {
        width: min(760px, calc(100% - 64px));
    }
}

/* Profilseiten-Header: exakt wie Beitragsstartseite. */

:root {
    --body-background: #000;
}

header {
    position: fixed;
    width: 100%;
    z-index: 2200;
    background-color: var(--body-background);
    border-bottom: 1px solid #5e5e5e;
}

#banner {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 auto;
    padding: 0 12px;
    color: #fff;
    position: relative;
    background-color: var(--body-background);
    z-index: 1400;
}

#echoseite {
    flex: 1 1 0;
    display: block;
    position: static;
    min-width: 0;
    padding-right: 0;
}

#echoseite h1 {
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    color: #fff;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#logo {
    flex: 0 0 auto;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: none;
    z-index: 1200;
}

#logo img {
    display: block;
    width: 44px;
    height: 44px;
    max-width: none;
    margin: 0;
    border-radius: 50px;
}

#header-menu-area {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    z-index: 2300;
}

.header-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: #050505;
    border: 1px solid #2d2d2d;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
}

.header-menu-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background-color: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

@media screen and (min-width: 630px) {
    #banner {
        width: 500px;
    }
}

/* Header-Fix final: Logozentrierung nach allen Header-Regeln. */

#logo {
    overflow: hidden;
}

#logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: calc(100% - 8px);
    max-height: calc(100% - 8px);
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: center;
    position: static;
    transform: none;
}

    



      
    