/* <system section="theme" selected="17179246901347596428"> */
@charset "UTF-8";
/*
  Theme: "Ten Days one"
  Author: saitoy05
  Responsive: yes
  Description: 
    全ページ１カラム、アーカイブページ カード型１列２枚横並び（画面幅768px以上）
    写真はより大きく（といっても大き過ぎない 横幅最大900px）
    記事本文の文字は少し大きめに（20px, 1行最大 全角45文字程度）
    ダークモード対応　レスポンシブデザイン対応
*/

/*! normalize.css v8.0.x | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%;}
body{margin:0;}
main{display:block;}
h1{font-size:2em;margin:0.67em 0;}
hr{box-sizing:content-box;height:0;overflow:visible;}
pre{font-family:monospace,monospace;font-size:1em;}
a{background-color:transparent;}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted;}
b,strong{font-weight:bolder;}
code,kbd,samp{font-family:monospace,monospace;font-size:1em;}
small{font-size:80%;}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
sub{bottom:-0.25em;}
sup{top:-0.5em;}
img{border-style:none;}
button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}
button,input{overflow:visible;}
button,select{text-transform:none;}
button,[type="button"],[type="reset"],[type="submit"]{appearance:button;}
button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0;}
button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText;}
fieldset{padding:0.35em 0.75em 0.625em;}
legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal;}
progress{vertical-align:baseline;}
textarea{overflow:auto;}
[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0;}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto;}
[type="search"]{appearance:textfield;outline-offset:-2px;}
[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}
details{display:block;}
summary{display:list-item;}
template{display:none;}
[hidden]{display:none;}

/* ===  Ten Days one  ======================================================= */
:root {
    --container: rgba(245,245,245,0.9);
    --text: #454545;
    --base: #f5f5f5;
    --trans-base: rgba(245,245,245,0.7);
    --bg-active: #ddd;
    --anchor: #008b8b;
    --hover: #0f668f;
    --h1-6: #333;
    --h1-6-a: #333;
    --h1-6-hover: #0f668f;
    --block-pre: rgba(237,237,237,0.8);
    --border: #c0c0c0;
    --shadow: #c0c0c0;
    --kword-border: #999;
}
@media (prefers-color-scheme: dark) {
    :root {
        --container: rgba(39,40,34,0.9);
        --text: #ccc;
        --base: #272822;
        --trans-base: rgba(39,40,34,0.7);
        --bg-active: #666;
        --anchor: #f5f5f5;
        --hover: #ffe295;
        --h1-6: #f2f2f2;
        --h1-6-a: #f2f2f2;
        --h1-6-hover: #fff;
        --block-pre: rgba(0,0,0,0.25);
        --border: #aaa;
        --shadow: #aaa;
        --kword-border: #999;
    }
}
*, *::before, *::after {
    box-sizing: border-box;
}
html, body {
    font-family: 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Meiryo', sans-serif;
    color: var(--text);
    background-color: var(--base);
    line-height: 1.6;
}
a {
    color: var(--anchor);
    text-decoration: none;
    &:hover {
        color: var(--hover);
        text-decoration: underline;
    }
    &.keyword {
        color: var(--text);
        text-decoration: none;
        border-bottom: 1px dotted var(--kword-border);
    }
}
h1, h2, h3, h4, h5, h6 {
    color: var(--h1-6);
    line-height: 1.3;
    a {
        color: var(--h1-6-a);
        &:hover {
            color: var(--h1-6-hover);
            text-decoration: none;
        }
    }
}
#container, #footer {
    padding: 2em;
    width: auto;
    background-color: var(--container);
}
#blog-title {
    margin: 0.5em 0 2em;
    text-align: center;
    #title {
        margin: 0;
        padding: 1em 0 0;
        font-size: 1.7em;
        a {
            color: var(--h1-6);
        }
    }
    #blog-description {
        margin: 1em 0 0;
        font-size: 0.9em;
        font-weight: normal;
    }
    .header-image-enable & {
        margin: 0.5em 0;
    }
}
#top-editarea, #bottom-editarea {
    margin: 0 auto 1em;
    max-width: 900px;
}
#top-box {
    margin: 2em auto 0;
    max-width: 900px;
    font-size: 0.9em;
}
#content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    #wrapper {
        width: 100%;
        max-width: 900px;
    }
    #box2 {
        width: 100%;
        max-width: 800px;
        margin-bottom: 1em;
        #box2-inner {
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            justify-content: flex-start;
            padding: 0.7em 1em;
            border: 1px solid var(--border);
            border-radius: 8px;
        }
    }
}
#footer {
    padding-top: 2em;
    padding-bottom: 2em;
    font-size: 0.9em;
    color: var(--text);
    text-align: center;
    a {
        color: #999;
    }
    p {
        margin: .5em auto;
    }
}
.entry {
    position: relative;
    margin-bottom: 4em;
}
.entry-header {
    position: relative;
    padding-bottom: 1em;
    border-bottom: 1px solid var(--border);
    .entry-header-menu {
        position: absolute;
        top: 0;
        right: 0;
    }
}
.entry-content {
    margin-bottom: 3em;
    font-size: 1.25rem;
}
.entry-content .table-of-contents {
    margin: auto;
    padding: 1em;
    font-size: 0.8em;
    overflow-wrap: break-word;
    border: 1px solid var(--border);
    border-radius: 6px;
    li {
        margin-left: 1em;
    }
    li ul li {
        margin-left: 0;
    }
}
@media (min-width: 768px) {
    .entry-content .table-of-contents {
        margin: 1em;
        column-count: 2;
        column-gap: 2em;
        column-rule: 2px dotted var(--border);
    }
}
.entry-content img, .entry-content video {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 800px;
}
.entry-content h1 {
    margin: 2em 0 1em;
    font-size: 1.3em;
}
.entry-content h2 {
    margin: 2em 0 1em -0.5em;
    padding: 0.3em 1em;
    font-size: 1.2em;
    border: 2px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 0 8px var(--shadow);
}
.entry-content h3 {
    margin: 2em 0 1em -0.5em;
    padding: 0.2em 1em;
    font-size: 1.2em;
    border-top: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 3px 3px var(--shadow);
    width: 85%;
}
.entry-content h4 {
    margin: 2em 0 1em -0.5em;
    padding: 0.1em 1em;
    font-size: 1.2em;
    border-radius: 4px;
    box-shadow: 0 2px 2px var(--shadow);
    width: 70%;
}
.entry-content h5 {
    margin: 1.3em 0 1em -0.2em;
    font-size: 1.1em;
}
.entry-content h6 {
    margin: 1.3em 0 1em -0.2em;
    font-size: 1em;
}
.entry-content ul, .entry-content ol, .entry-content dl {
    margin: 0 0 1em 2em;
    padding: 0;
}
.entry-content ul li ul, .entry-content ul li ol,
.entry-content ol li ul, .entry-content ol li ol,
.entry-content dd li ul, .entry-content dd li ol {
    margin-bottom: 0;
}
.entry-content table {
    display: block;
    margin: 1em;
    width: 100%;
    font-size: 0.9em;
    overflow: auto;
    border-collapse: collapse;
    border-spacing: 0;
    border-bottom: 1em;
}
.entry-content th, .entry-content td {
    padding: 5px 10px;
    border: 1px solid var(--border);
}
.entry-content th {
    background: var(--block-pre);
}
.entry-content blockquote {
    margin: 1em 0.5em; 
    padding: 1em;
    background: var(--block-pre);
    border: 1px solid var(--border);
    & p:first-child {
        margin-top: 0;
    }
    & p:last-child {
        margin-bottom: 0;
    }
}
.entry-content pre, .entry-content code {
    font-family: 'Monaco', 'Consolas', 'Courier New', 'Courier', monospace, sans-serif;
}
.entry-content pre {
    margin: 1em;
    padding: 1em;
    font-size: 0.9em;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: pre-wrap;
    background: var(--block-pre);
    border: none;
    > code {
        margin: 0;
        padding: 0;
        white-space: pre;
        background-color: transparent;
        border: none;
        font-family: 'Monaco', 'Consolas', 'Courier New', 'Courier', monospace, sans-serif;
    }
}
.entry-content code {
    margin: 0 2px;
    padding: 0px 5px;
    font-size: 0.9em;
    background-color: var(--block-pre);
    border-radius: 3px;
}
.entry-content hr {
    width: 50%;
    margin: 2em auto;
    box-sizing: content-box;
    border: none;
    border-top: 1px solid var(--border);
}
.entry-content .hatena-asin-detail {
    margin: 1em;
    border: none;
}
.entry-content {
    div.footnote {
        margin: 3em 0;
    }
    p.footnote {
        padding-left: 2em;
        text-indent: -0.7em;
    }
}
.entry-content {
    h1, h2, h3, h4, h5, h6, .footnote-number {
        scroll-margin-top: 0.5em;
        .page-entry:has(.navi) & {
            scroll-margin-top: 2.5em;
        }
    }
}
.entry-see-more {
    padding-left: 1em;
    font-size: 0.9em;
    &::before, &::after {
        content: ' 〜 ';
    }
}
.entry-fotter {
    margin-top: 3em;
}
.entry-footer-section {
    margin: 2em 0 1em;
    font-size: 0.9em;
    color: #999;
    a {
        color: #999;
    }
}
.entry-footer-subscribe {
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 3px;
}
.entry-footer, .entry-header {
    .social-buttons {
        margin: 1em;
    }
}
.comment-box {
    margin: 2em 1em;
}
.comment {
    margin: 0 0 0.9em 0;
    padding: 0;
    font-size: 0.9em;
    line-height: 1.7;
    list-style: none;
}
.entry-comment {
    padding: 1em 0 1em 3em;
    border-bottom: 1px solid var(--border);
    position: relative;
    &:first-child {
        margin-top: 1em;
        border-top: 1px solid var(--border);
    }
}
.comment-user-name {
    margin: 0 0 .4em 0;
    font-weight: bold;
    .hatena-id-icon {
        position: absolute;
        top: 10px;
        left: 0;
        width: 30px !important;
        height: 30px !important;
        border-radius: 3px;
    }
}
.comment-content {
    margin: 0 0 .4em 0;
    overflow-wrap: break-word;
    color: var(--text);
    p {
        margin: 0 0 .6em 0;
    }
}
.comment-metadata {
    margin: 0;
    font-size: 0.9em;
    color: #999;
    a {
        color: #999;
    }
}
.read-more-comments {
    padding: 0.5em 0;
}
.leave-comment-title {
    padding: .6em 1em;
    font-size: 0.9em;
    border: 1px solid var(--border);
}
.archive-header-category {
    margin-bottom: 1em;
    text-align: center;
}
.archive-entries {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.archive-entry {
    width: 100%;
    margin: 1em;
    line-height: 1.3;
    overflow: auto;
}
@media (min-width: 768px) {
    .archive-entry {
        width: 48%;
        margin: 1em auto;
        padding: 0.3em 1em;
        border: 1px solid var(--border);
        box-shadow: 2px 2px 4px var(--shadow);
        border-radius: 8px;
        .entry-thumb {
            margin-bottom: 0.5em;
            border-radius: 8px;
        }
    }
}
.archive-entry-body {
    font-size: 0.9em;
}
.date {
    margin-bottom: 0.5em;
    font-size: 0.9em;
}
.entry-title {
    .entry & {
        font-size: 1.5em;
    }
    .archive-entry & {
        margin: .3em auto;
        font-size: 1.2em;
    }
}
.categories {
    margin: .5em 0;
    font-size: 0.9em;
}
.entry-category-link, .archive-category-link {
    padding: 0 0.2em;
}
.pager {
    display: flex;
    margin: 2em 0;
    justify-content: space-between;
    .pager-next {
        margin-left: auto;
    }
}
.hatena-module {
    width: 100%;
    margin-bottom: 2em;
    padding: 0 10px;
}
@media (min-width: 480px) {
    .hatena-module {
        width: 50%;
    }
}
@media (min-width: 768px) {
    .hatena-module {
        width: 25%;
    }
}
.hatena-module-title {
    margin-bottom: .6em;
    padding-bottom: .2em;
    font-weight: bold;
    border-bottom: 1px solid var(--border);
    a {
        color: var(--text);
        text-decoration: none;
        &:hover {
            text-decoration: underline;
        }
    }
}
.hatena-module-body {
    max-height:  200px;
    overflow: auto;
    p {
        margin: 0;
    }
    .archive-module-calendar {
        font-family: monospace;
    }
}
.hatena-module-profile {
    .profile-icon {
        margin: 0 10px 10px 0;
        width: 40px !important;
        height: 40px !important;
        float: left;
    }
    .id {
        margin-bottom: .5em;
        display: block;
        font-weight: bold;
    }
    .profile-description p {
        margin-top: 0;
    }
}
.hatena-module-search-box {
    .search-form {
        display: flex;
        align-items: center;
        width: 100%;
        border: 1px solid var(--border);
        border-radius: 3px;
    }
    .search-module-input {
        flex: 1 0;
        width: 90%;
        padding: 5px;
        color: var(--text);
        background: none;
        border: none;
        outline: none;
        height: 20px;
    }
    .search-module-button {
        width: 24px;
        height: 24px;
        margin-right: 5px;
        background: #fff url(https://cdn.blog.st-hatena.com/images/theme/search.png) no-repeat center;
        background-size: 20px 20px;
        border: none;
        outline: none;
        color: transparent;
        overflow: hidden;
        opacity: .5;
        cursor: pointer;
        &:hover {
            opacity: .85;
        }
    }
}
.hatena-urllist {
    margin: 0;
    padding: 0;
    list-style: none;
}
.hatena-urllist li {
    padding: 0.2em;
    &:last-child {
        padding-bottom: 0;
    }
    a {
        text-decoration: none;
        &:hover {
            text-decoration: underline;
        }
    }
}
.urllist-category-link {
    padding: .1em .3em;
    a {
        color: #999;
    }
}
.urllist-entry-body {
    margin-top: .3em;
}
.archive-module-calendar {
    max-width: 200px;
    line-height: 1.2em;
    th {
        font-size: 0.7em;
    }
}
.entry-tag .entry-tag-link, .archive-entry-tag .archive-entry-tag-link {
    padding: 0 2px;
    color: var(--text);
    background-color: var(--base);
    &:hover {
        color: var(--hover);
        background-color: var(--bg-active);
    }
}
/* ===  ナビゲーションメニュー  === */
/* ヘッダ ブログタイトル下に HTML <div class="navi"><ul><li> を記述 */
#top-editarea {
    position: sticky;
    top: 0;
    z-index: 10;
}
.navi {
    margin: auto;
    max-width: 900px;
    background-color: var(--base);
    border-bottom: 4px double var(--border);
    overflow-x: auto;
}
.navi ul {
    display: flex;
    margin: auto;
    padding-left: 0;
    width: max-content;
    li {
        list-style: none;
        a {
            display: flex;
            padding: 3px;
            align-items: center;
            justify-content: center;
            color: var(--text);
            text-decoration: none;
            &:hover, &:focus {
                background-color: var(--bg-active);
            }
        }
    }
}
.navi button {
    margin-top: 0;
    padding: 2px;
    font-size: small;
    color: var(--text);
    background-color: var(--base);
    border: 2px var(--border) solid;
    border-radius: 5px;
    &:focus {
        outline: 1px var(--text) solid;
        outline-offset: 2px;
    }
    &.active {
        font-weight: bold;
        background-color: var(--bg-active);
    }
}

/* </system> */

/* =====  爺の時悠空間 カスタマイズ  ===== */
:root[data-theme='light'] {
    --container: rgba(245,245,245,0.9);
    --text: #454545;
    --base: #f5f5f5;
    --trans-base: rgba(245,245,245,0.7);
    --bg-active: #ddd;
    --anchor: #008b8b;
    --hover: #0f668f;
    --h1-6: #333;
    --h1-6-a: #333;
    --h1-6-hover: #0f668f;
    --block-pre: rgba(237,237,237,0.8);
    --border: #c0c0c0;
    --shadow: #c0c0c0;
    --kword-border: #999;
}
:root[data-theme='dark'] {
    --container: rgba(39,40,34,0.9);
    --text: #ccc;
    --base: #272822;
    --trans-base: rgba(39,40,34,0.7);
    --bg-active: #666;
    --anchor: #f5f5f5;
    --hover: #ffe295;
    --h1-6: #f2f2f2;
    --h1-6-a: #f2f2f2;
    --h1-6-hover: #fff;
    --block-pre: rgba(0,0,0,0.25);
    --border: #aaa;
    --shadow: #aaa;
    --kword-border: #999;
}
html, body {
    font-family: 'Noto Sans JP', sans-serif;
}
.entry-content pre, .entry-content code  {
    font-family: monospace, monospace;
}
.entry-content pre > code {
    font-family: monospace, monospace;
}
.breadcrumb,
.category-写真帖 .date-last-updated, .category-週間日記 .date-last-updated,
.page-entry #box2,
.hatena-module-profile .hatena-module-title,
.hatena-module-profile .profile-about,
.hatena-module-recent-entries,
.hatena-module-custom-category2,
.archive-entry[data-uuid="6801883189053289178"], 
.archive-entry[data-uuid="6801883189076224547"],
.archive-entry[data-uuid="6801883189076226228"] {
    display: none;
}
.page-index, .page-about {
    .hatena-star-container, .social-buttons, .comment-box, .pager {
        display: none;
    }
}
.hatena-module-custom-list-archive {
    .hatena-urllist > li:first-child {
        display: none;
    }
}
.page-entry.category-_PictureStory, .page-entry.category-🖼️PictureStory2 {
    .navi {
        display: none;
    }
}
.page-entry.category-時空間 {
    .entry-content {
        font-size: 1rem;
    }
}
.page-entry.category-週間日記 {
    #content-inner #wrapper {
        max-width: 800px;
    }
}
.hatena-module-custom-contents2 .hatena-module-title {
    border-bottom: 1px dotted var(--border);
}
.embed-group .embed-group-link {
    padding: 2px;
    min-width: 120px;
    max-width: 120px;
    background-color: #ddd;
}
.embed-group .embed-group-icon img {
    width: 24px;
    height: 24px;
}
.embed-group .embed-group-content {
    margin-left: 5px;
}
.embed-group .embed-group-title-label {
    font-size: 10px;
    font-weight: bold;
    color: purple;
}
.embed-group .embed-group-title {
    font-size: 13px;
}
.hatena-module-custom-bloglink .hatena-urllist li {
    padding: 0.2em 0;
}
.hatena-module-custom-bloglink li:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(https://cdn-ak.f.st-hatena.com/images/fotolife/s/saitoy05/20141217/20141217122944.png);
    background-size: contain;
    vertical-align: sub;
}
/* ===  PictureStory2  === */
/* HTML編集：以下の通り 画像1枚ごとに div を記述
  <div class="bg-fixed-1"><div class="bg-fixed-inner">
  <div class="bg-fixed-image" style="background-image: url(ここに画像URL);"></div>
  <div class="bg-fixed-text center">ここにテキスト</div>
  </div></div>
 （どう表現したいかによって bg-fixed, bg-fixed-text を組み合わせる）
  bg-fixed(-2),-1 ：1画面の高さ
    (-2)：記述省略可、テキスト入り2枚分（画像1枚＋テキスト1枚）
      -1：テキストなし
  bg-fixed-text(-10),-00,-01,-02,-11 ：10の桁 margin-top, 1の桁 height
   (-10)：記述省略可、画像表示後に下からテキスト
     -00：画像の上部にテキスト
     -01：画像の上部から1画面分のテキスト
     -02：画像の上部から2画面分のテキスト
     -11：画像表示後に下から1画面分のテキスト
*/
.bg-fixed, .bg-fixed-2 {
    position: relative;
    width: auto;
    height: 200vh;
}
.bg-fixed-1 {
    position: relative;
    width: auto;
    height: 100vh;
}
.bg-fixed-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 0 2px 0);
}
.bg-fixed-image {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.bg-fixed-text, .bg-fixed-text-10 {  /* 最大14行程度 for iPhone7 h:375px */
    position: relative;
    margin-top: 100vh;
    padding: 1em 2em;
    background-color: var(--trans-base);
}
.bg-fixed-text-00 {                  /* 数行程度 */
    position: relative;
    margin-top: 0;
    padding: 1em 2em;
    background-color: var(--trans-base);
}
.bg-fixed-text-01 {                  /* 最大14行程度 */
    position: relative;
    margin-top: 0;
    padding: 1em 2em;
    height: 100vh;
    background-color: var(--trans-base);
}
.bg-fixed-text-02 {                  /* 最大29行程度 */
    position: relative;
    margin-top: 0;
    padding: 1em 2em;
    height: 200vh;
    background-color: var(--trans-base);
}
.bg-fixed-text-11 {                  /* 最大14行程度 */
    position: relative;
    margin-top: 100vh;
    padding: 1em 2em;
    height: 100vh;
    background-color: var(--trans-base);
}
.bg-fixed-text, .bg-fixed-text-01, .bg-fixed-text-02, .bg-fixed-text-11 {
    font-size: 1em;
}
/* ===  _PictureStory  === */
/*  HTML編集：<div class="sticky"> stickyを適用する範囲 </div>  */
.entry-content .sticky p, .entry-content .sticky blockquote, .entry-content .sticky pre {
    position: sticky;
    margin: 0;
    padding: 1em 1em;
    display: block;
    top: 0;
    min-height: 0;
    background-color: var(--base);
}
.entry-content .sticky blockquote, .entry-content .sticky pre {
    top: 0.5em;
}
.entry-content .sticky img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-height: 47vw;
    border-radius: 6px;
}
.entry-content .sticky blockquote {
    margin: 0 0.9em;
    padding: 1em 2em;
}
.entry-content .sticky blockquote p {
    padding: 0.5em;
    background-color: transparent;
}
.entry-content .sticky .txt {              /* テキスト主体, 背景透過なし */
    padding: 2em 0 1em;
}
.entry-content .sticky .txt-s {            /* テキスト, 背景透過少し */
    margin-bottom: 80vh;
    padding: 1em 2em;
    min-height: 0;
    text-indent: 0;
    background-color: var(--trans-base);
}
.entry-content .sticky .txt-c, .entry-content .sticky figcaption {  /* 注釈, 背景透過 */
    min-height: 45vw;
    font-size: 1.5em;
    text-indent: 0;
    text-align: center;
    text-shadow: 1px 1px 1px white;
    background-color: transparent;
}
.entry-content .sticky .txt-t {            /* 記事タイトル, 背景透過 */
    padding-top: 4em;
    min-height: 100vh;
    font-size: 3em;
    text-indent: 0;
    text-align: center;
    text-shadow: 1px 1px 2px snow;
    background-color: transparent;
}
