body {
    --display-width: 800px;
    --vertical-margin: 30px;
    --margin-top-out: 80px; /* top of page */
    --margin-top-in: 10px;
    --margin-bottom-out: 30px; /* bottom of page */
    --margin-bottom-in: 10px;
    --padding: 10px;
    /*
    display: flex;
    align-items: center;
    justify-content: center;
    */
    background-color: white;
}


.center {
    text-align: center;
    width: 100;
}


/***********/
/* IMAGES */
/********************************/
.img_scene {
    position: absolute;
}

.img_no_lnk {
    position: absolute;
    z-index: 1;
    /*display: block;*/
}

.img_lnk {
    position: absolute;
    z-index: 99;
}

.left {
    float: left;
}


.small_txt {
    font-size: 0.8em;
}

.footnote {
    font-size: 0.9em;
}


/********************************/
/* /IMAGES */
/**********/


/*********/
/* LINKS */
/********************************/

a {
   color: #000;
   text-decoration: none;
}

a.phone {
   color: #000;
   /*font-weight: bold;*/
   font-size: 1.3em;
   text-decoration: none;
}


/********************************/
/* /LINKS */
/**********/



/**********/
/* Check */
    img {
        border: 0px solid red;
    }

    div {
        border: 0px solid red;
    }
/* /Check */
/*********/

.width_pc_vw {
    max-width: var(--display-width);
    margin-left: auto;
    margin-right: auto;
    width: 80vw;
    padding: var(--padding);
}

.img_header {
    z-index: -1;
    width: 100%;
}

/****************/
/* Main layout */

.header {
    border-radius: 10px;
    margin-top: var(--margin-top-out);
    margin-bottom: var(--margin-bottom-in);
    position: relative;
    border: 1px solid black;
    height: 180px;
    width: 340px;
}

.footer {
    margin-top: var(--margin-top-in);
    margin-bottom: var(--margin-bottom-out);
    border-top: 2px solid black;

}

.content {
    margin-top: var(--margin-top-in);
    margin-bottom: var(--margin-bottom-in);
}

/* /Main layout */
/***************/


