
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_2366200f49ffaaf2d47fabae.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3c44826915e79e4e624a74c7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_df9c128a2771605277825c2a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_df040d56ee252083bdad25e0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_727fd7febeac7db07c51a3cf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_33f407d160691475d2613489.woff')format("woff");}.ff6{font-family:ff6;line-height:0.530000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b41dceedd7aad03029c5527b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_79498994dafb4966a4794a5d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_516a959037c9c545e52018c6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e76223ccb292a0355f4776ac.woff')format("woff");}.ffa{font-family:ffa;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01fcc49f409f931e8c35c014.woff')format("woff");}.ffb{font-family:ffb;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7c996f950e2188d74534188b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_89a8edea2893cda331ae7810.woff')format("woff");}.ffd{font-family:ffd;line-height:0.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8cd6f27e86899cd7ce29c04d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.550000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-22.452000px;}
.v2{vertical-align:-15.048000px;}
.v3{vertical-align:-9.444000px;}
.v4{vertical-align:-8.436000px;}
.v9{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:16.878000px;}
.v8{vertical-align:20.556000px;}
.v1{vertical-align:23.754000px;}
.v7{vertical-align:28.992000px;}
.v6{vertical-align:67.188000px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.003315px;}
.lsa{letter-spacing:2.729168px;}
.ls3{letter-spacing:2.984915px;}
.ls4{letter-spacing:2.990612px;}
.ls2{letter-spacing:2.990915px;}
.lsd{letter-spacing:3.885337px;}
.ls1{letter-spacing:8.466421px;}
.ls6{letter-spacing:12.701418px;}
.ls16{letter-spacing:12.703064px;}
.ls5{letter-spacing:12.707418px;}
.ls10{letter-spacing:14.115056px;}
.lsf{letter-spacing:17.999377px;}
.lse{letter-spacing:19.926607px;}
.ls13{letter-spacing:20.653730px;}
.ls17{letter-spacing:21.812712px;}
.ls15{letter-spacing:23.410800px;}
.ls14{letter-spacing:23.416800px;}
.ls11{letter-spacing:29.883764px;}
.ls9{letter-spacing:35.479200px;}
.ls0{letter-spacing:46.792298px;}
.ls12{letter-spacing:49.429920px;}
.ls8{letter-spacing:51.955920px;}
.lsc{letter-spacing:77.107920px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-16.763595px;}
.wse{word-spacing:-16.730196px;}
.wsd{word-spacing:-16.519695px;}
.ws41{word-spacing:-15.637104px;}
.ws31{word-spacing:-15.278643px;}
.ws32{word-spacing:-13.750871px;}
.ws2b{word-spacing:-9.091930px;}
.wsa{word-spacing:-0.086077px;}
.ws29{word-spacing:-0.047821px;}
.ws10{word-spacing:-0.035866px;}
.ws19{word-spacing:-0.032793px;}
.ws1{word-spacing:-0.029888px;}
.ws9{word-spacing:0.000000px;}
.ws0{word-spacing:2.403015px;}
.ws12{word-spacing:3.098788px;}
.ws18{word-spacing:3.295660px;}
.ws6{word-spacing:3.602481px;}
.ws7{word-spacing:3.604493px;}
.ws8{word-spacing:3.640358px;}
.ws21{word-spacing:4.701867px;}
.ws1c{word-spacing:4.751653px;}
.ws13{word-spacing:4.766538px;}
.ws3b{word-spacing:4.786490px;}
.ws1b{word-spacing:4.800842px;}
.ws1e{word-spacing:4.805970px;}
.ws3c{word-spacing:4.809068px;}
.ws39{word-spacing:4.809075px;}
.ws28{word-spacing:4.812772px;}
.wsf{word-spacing:5.046550px;}
.ws11{word-spacing:5.196925px;}
.ws14{word-spacing:5.250724px;}
.ws2e{word-spacing:5.624884px;}
.ws3d{word-spacing:5.738468px;}
.ws36{word-spacing:5.831296px;}
.ws38{word-spacing:5.846911px;}
.ws3a{word-spacing:5.893265px;}
.ws40{word-spacing:6.149658px;}
.ws5{word-spacing:6.159278px;}
.ws4{word-spacing:6.224732px;}
.ws16{word-spacing:6.276510px;}
.ws1a{word-spacing:6.342096px;}
.ws35{word-spacing:6.499132px;}
.ws30{word-spacing:6.599226px;}
.ws2f{word-spacing:6.659002px;}
.ws37{word-spacing:6.841393px;}
.wsc{word-spacing:6.864676px;}
.ws3f{word-spacing:6.890028px;}
.ws3e{word-spacing:6.891748px;}
.ws34{word-spacing:6.903362px;}
.ws2c{word-spacing:6.936407px;}
.ws2d{word-spacing:7.226188px;}
.wsb{word-spacing:7.291642px;}
.ws15{word-spacing:7.836634px;}
.ws2a{word-spacing:8.013266px;}
.ws33{word-spacing:9.145728px;}
.ws2{word-spacing:9.502923px;}
.ws3{word-spacing:9.589000px;}
.ws27{word-spacing:28.027259px;}
.ws1f{word-spacing:61.899573px;}
.ws22{word-spacing:61.899735px;}
.ws1d{word-spacing:61.901685px;}
.ws20{word-spacing:61.902034px;}
.ws24{word-spacing:76.872364px;}
.ws23{word-spacing:88.713412px;}
.ws26{word-spacing:90.629363px;}
.ws25{word-spacing:97.199246px;}
._4{margin-left:-32.063790px;}
._6{margin-left:-19.042621px;}
._10{margin-left:-15.900430px;}
._8{margin-left:-7.919102px;}
._9{margin-left:-6.021823px;}
._11{margin-left:-4.208213px;}
._2{margin-left:-2.496239px;}
._5{margin-left:-1.090814px;}
._7{width:1.090814px;}
._1{width:2.958892px;}
._f{width:10.559229px;}
._d{width:12.747134px;}
._e{width:15.510917px;}
._b{width:16.979275px;}
._a{width:22.433336px;}
._c{width:29.446399px;}
._3{width:41.661365px;}
._18{width:59.775750px;}
._17{width:91.461338px;}
._15{width:97.390411px;}
._16{width:112.556746px;}
._13{width:119.996915px;}
._14{width:125.141830px;}
._12{width:137.846915px;}
._19{width:278.628437px;}
._0{width:1391.663704px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc6{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(153,153,153);}
.fs0{font-size:23.910600px;}
.fs1{font-size:29.887800px;}
.fs9{font-size:32.792635px;}
.fs5{font-size:35.865600px;}
.fsa{font-size:43.723331px;}
.fs4{font-size:47.820600px;}
.fsb{font-size:49.188953px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:59.775600px;}
.fsd{font-size:61.969143px;}
.fs3{font-size:65.454600px;}
.fs8{font-size:65.585271px;}
.fse{font-size:67.911514px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1{bottom:5.022000px;}
.y6e{bottom:18.319500px;}
.y75{bottom:18.735000px;}
.y5d{bottom:18.995129px;}
.yb4{bottom:19.145061px;}
.y7d{bottom:23.494500px;}
.y97{bottom:30.481500px;}
.y21{bottom:31.570500px;}
.y82{bottom:32.206500px;}
.y6d{bottom:32.517000px;}
.y5c{bottom:32.657813px;}
.y65{bottom:32.928000px;}
.y74{bottom:32.931000px;}
.y88{bottom:34.216500px;}
.y31{bottom:34.459500px;}
.y7c{bottom:37.690500px;}
.yb3{bottom:38.386335px;}
.y96{bottom:40.941000px;}
.y87{bottom:41.166000px;}
.ya6{bottom:42.835500px;}
.y30{bottom:44.920500px;}
.y81{bottom:46.404000px;}
.y20{bottom:46.513500px;}
.y6c{bottom:46.713000px;}
.y64{bottom:47.722500px;}
.y73{bottom:47.725500px;}
.y9{bottom:48.487500px;}
.y7b{bottom:51.888000px;}
.ya5{bottom:53.296500px;}
.y5b{bottom:53.950040px;}
.y2f{bottom:55.381500px;}
.y95{bottom:55.885500px;}
.y54{bottom:59.061000px;}
.y6b{bottom:60.910500px;}
.y80{bottom:61.198500px;}
.y63{bottom:61.920000px;}
.y72{bottom:61.923000px;}
.yb9{bottom:62.277000px;}
.y33{bottom:63.115500px;}
.ya4{bottom:63.757500px;}
.y2e{bottom:65.842500px;}
.y7a{bottom:66.084000px;}
.y42{bottom:66.112500px;}
.y1f{bottom:66.838500px;}
.y8{bottom:68.811000px;}
.y53{bottom:69.571500px;}
.y86{bottom:69.792000px;}
.ya3{bottom:74.217000px;}
.y6a{bottom:75.106500px;}
.y7f{bottom:75.394500px;}
.y44{bottom:75.738000px;}
.y94{bottom:76.209000px;}
.y41{bottom:76.573500px;}
.y62{bottom:76.714500px;}
.y71{bottom:76.717500px;}
.y52{bottom:80.032500px;}
.y79{bottom:80.281500px;}
.yb2{bottom:83.632937px;}
.y85{bottom:83.989500px;}
.yb8{bottom:85.596000px;}
.y40{bottom:87.034500px;}
.y1e{bottom:87.162000px;}
.y7{bottom:89.134500px;}
.y69{bottom:89.304000px;}
.y2d{bottom:90.148500px;}
.y7e{bottom:90.189000px;}
.y51{bottom:90.493500px;}
.y61{bottom:90.910500px;}
.y70{bottom:90.913500px;}
.y5a{bottom:92.705322px;}
.y78{bottom:94.477500px;}
.ya2{bottom:95.908500px;}
.y3f{bottom:97.495500px;}
.y93{bottom:100.773000px;}
.y50{bottom:100.954500px;}
.yb1{bottom:102.874211px;}
.y68{bottom:103.500000px;}
.y6{bottom:105.696000px;}
.y60{bottom:105.705000px;}
.y6f{bottom:105.708000px;}
.y84{bottom:106.155000px;}
.y2c{bottom:106.587000px;}
.y3e{bottom:107.956500px;}
.y4f{bottom:111.414000px;}
.y59{bottom:111.833353px;}
.y1d{bottom:112.635000px;}
.y77{bottom:117.781500px;}
.ya1{bottom:118.324500px;}
.y5f{bottom:120.499500px;}
.yb0{bottom:122.115485px;}
.y3d{bottom:122.899500px;}
.y2b{bottom:123.025500px;}
.y4e{bottom:126.358500px;}
.yb7{bottom:127.981500px;}
.y67{bottom:129.444000px;}
.y3c{bottom:133.360500px;}
.y4d{bottom:136.819500px;}
.y2a{bottom:139.464000px;}
.ya0{bottom:140.740500px;}
.yaf{bottom:141.356758px;}
.y3b{bottom:143.821500px;}
.y92{bottom:143.823000px;}
.y4c{bottom:147.280500px;}
.y17{bottom:151.477500px;}
.y5{bottom:151.531500px;}
.y58{bottom:152.530651px;}
.y3a{bottom:154.282500px;}
.y29{bottom:155.902500px;}
.y4b{bottom:157.741500px;}
.yae{bottom:160.599452px;}
.y91{bottom:162.295500px;}
.y9f{bottom:163.156500px;}
.y57{bottom:166.193334px;}
.y16{bottom:171.802500px;}
.y28{bottom:172.341000px;}
.y39{bottom:175.974000px;}
.y4{bottom:178.431000px;}
.y4a{bottom:179.431500px;}
.y9e{bottom:179.595000px;}
.y90{bottom:180.229500px;}
.yad{bottom:184.084059px;}
.y56{bottom:185.118387px;}
.y38{bottom:192.412500px;}
.y15{bottom:194.487000px;}
.y27{bottom:194.881500px;}
.y49{bottom:195.870000px;}
.y9d{bottom:202.011000px;}
.y8f{bottom:202.972500px;}
.y3{bottom:205.329000px;}
.yac{bottom:207.570086px;}
.y37{bottom:208.849500px;}
.y48{bottom:212.308500px;}
.y26{bottom:214.738500px;}
.y14{bottom:216.933000px;}
.y8e{bottom:218.544000px;}
.y9c{bottom:224.427000px;}
.y36{bottom:225.288000px;}
.yab{bottom:226.812780px;}
.y47{bottom:228.747000px;}
.y2{bottom:232.228500px;}
.y13{bottom:237.256500px;}
.y8d{bottom:241.228500px;}
.y35{bottom:246.583500px;}
.y9b{bottom:246.843000px;}
.yaa{bottom:250.298807px;}
.y46{bottom:251.287500px;}
.ye{bottom:252.108000px;}
.y12{bottom:257.580000px;}
.y25{bottom:260.467500px;}
.y9a{bottom:263.281500px;}
.y8c{bottom:264.067500px;}
.y43{bottom:266.541000px;}
.y34{bottom:267.505500px;}
.y32{bottom:271.000500px;}
.y45{bottom:272.209500px;}
.ya9{bottom:272.376071px;}
.yb6{bottom:280.086000px;}
.y11{bottom:280.264500px;}
.y24{bottom:280.791000px;}
.yd{bottom:284.205000px;}
.y99{bottom:285.697500px;}
.y8b{bottom:296.163000px;}
.y10{bottom:303.105000px;}
.yb5{bottom:303.403500px;}
.y23{bottom:304.110000px;}
.yc{bottom:304.528500px;}
.y98{bottom:312.604500px;}
.ya8{bottom:313.394961px;}
.y8a{bottom:316.488000px;}
.y5e{bottom:320.746500px;}
.y83{bottom:322.698000px;}
.yf{bottom:324.025500px;}
.y76{bottom:324.030000px;}
.yb{bottom:324.852000px;}
.y55{bottom:327.787965px;}
.y66{bottom:331.209000px;}
.ya7{bottom:332.636235px;}
.y89{bottom:336.811500px;}
.y22{bottom:346.282500px;}
.ya{bottom:366.606000px;}
.y1c{bottom:3031.609185px;}
.y1b{bottom:3046.552185px;}
.y1a{bottom:3066.877185px;}
.y19{bottom:3087.200685px;}
.y18{bottom:3112.673685px;}
.h16{height:5.810227px;}
.h5{height:22.415850px;}
.h2{height:22.787850px;}
.hc{height:24.594477px;}
.h17{height:24.890726px;}
.h9{height:26.899200px;}
.hf{height:35.865450px;}
.he{height:36.891715px;}
.h12{height:39.640950px;}
.h8{height:39.646950px;}
.ha{height:40.348800px;}
.h13{height:42.671700px;}
.h14{height:42.677700px;}
.h10{height:43.777200px;}
.h15{height:44.831700px;}
.h18{height:46.476857px;}
.h6{height:49.090950px;}
.hb{height:49.188953px;}
.h19{height:50.933635px;}
.h7{height:53.798400px;}
.hd{height:56.595905px;}
.h4{height:59.619450px;}
.h3{height:64.557900px;}
.h11{height:69.339927px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x1{left:21.993000px;}
.x8{left:25.512000px;}
.x1b{left:32.598000px;}
.x2{left:42.519000px;}
.x11{left:43.936500px;}
.x3{left:46.771500px;}
.x17{left:57.327000px;}
.xb{left:59.064535px;}
.x4{left:61.578000px;}
.x1e{left:73.504707px;}
.x18{left:75.247500px;}
.x5{left:79.498500px;}
.x19{left:90.685500px;}
.x1a{left:107.974500px;}
.xa{left:192.842808px;}
.x12{left:254.163000px;}
.x14{left:258.198000px;}
.x13{left:259.842000px;}
.xd{left:315.108000px;}
.x10{left:318.462000px;}
.xc{left:321.684000px;}
.xe{left:325.503000px;}
.x7{left:327.402000px;}
.x15{left:334.488000px;}
.x1c{left:341.575500px;}
.x9{left:348.661500px;}
.xf{left:359.209500px;}
.x1d{left:374.302500px;}
.x16{left:377.509500px;}
.x6{left:3042.557685px;}
@media print{
.va{vertical-align:-19.957333pt;}
.v2{vertical-align:-13.376000pt;}
.v3{vertical-align:-8.394667pt;}
.v4{vertical-align:-7.498667pt;}
.v9{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.002667pt;}
.v8{vertical-align:18.272000pt;}
.v1{vertical-align:21.114667pt;}
.v7{vertical-align:25.770667pt;}
.v6{vertical-align:59.722667pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.002947pt;}
.lsa{letter-spacing:2.425927pt;}
.ls3{letter-spacing:2.653258pt;}
.ls4{letter-spacing:2.658322pt;}
.ls2{letter-spacing:2.658591pt;}
.lsd{letter-spacing:3.453633pt;}
.ls1{letter-spacing:7.525708pt;}
.ls6{letter-spacing:11.290150pt;}
.ls16{letter-spacing:11.291612pt;}
.ls5{letter-spacing:11.295483pt;}
.ls10{letter-spacing:12.546717pt;}
.lsf{letter-spacing:15.999446pt;}
.lse{letter-spacing:17.712539pt;}
.ls13{letter-spacing:18.358871pt;}
.ls17{letter-spacing:19.389077pt;}
.ls15{letter-spacing:20.809600pt;}
.ls14{letter-spacing:20.814933pt;}
.ls11{letter-spacing:26.563346pt;}
.ls9{letter-spacing:31.537067pt;}
.ls0{letter-spacing:41.593154pt;}
.ls12{letter-spacing:43.937707pt;}
.ls8{letter-spacing:46.183040pt;}
.lsc{letter-spacing:68.540373pt;}
.ws17{word-spacing:-14.900974pt;}
.wse{word-spacing:-14.871285pt;}
.wsd{word-spacing:-14.684174pt;}
.ws41{word-spacing:-13.899648pt;}
.ws31{word-spacing:-13.581016pt;}
.ws32{word-spacing:-12.222996pt;}
.ws2b{word-spacing:-8.081715pt;}
.wsa{word-spacing:-0.076513pt;}
.ws29{word-spacing:-0.042507pt;}
.ws10{word-spacing:-0.031881pt;}
.ws19{word-spacing:-0.029149pt;}
.ws1{word-spacing:-0.026567pt;}
.ws9{word-spacing:0.000000pt;}
.ws0{word-spacing:2.136014pt;}
.ws12{word-spacing:2.754478pt;}
.ws18{word-spacing:2.929475pt;}
.ws6{word-spacing:3.202205pt;}
.ws7{word-spacing:3.203994pt;}
.ws8{word-spacing:3.235874pt;}
.ws21{word-spacing:4.179437pt;}
.ws1c{word-spacing:4.223691pt;}
.ws13{word-spacing:4.236923pt;}
.ws3b{word-spacing:4.254658pt;}
.ws1b{word-spacing:4.267415pt;}
.ws1e{word-spacing:4.271974pt;}
.ws3c{word-spacing:4.274727pt;}
.ws39{word-spacing:4.274733pt;}
.ws28{word-spacing:4.278020pt;}
.wsf{word-spacing:4.485822pt;}
.ws11{word-spacing:4.619489pt;}
.ws14{word-spacing:4.667310pt;}
.ws2e{word-spacing:4.999897pt;}
.ws3d{word-spacing:5.100860pt;}
.ws36{word-spacing:5.183375pt;}
.ws38{word-spacing:5.197254pt;}
.ws3a{word-spacing:5.238458pt;}
.ws40{word-spacing:5.466363pt;}
.ws5{word-spacing:5.474914pt;}
.ws4{word-spacing:5.533096pt;}
.ws16{word-spacing:5.579120pt;}
.ws1a{word-spacing:5.637418pt;}
.ws35{word-spacing:5.777006pt;}
.ws30{word-spacing:5.865979pt;}
.ws2f{word-spacing:5.919113pt;}
.ws37{word-spacing:6.081239pt;}
.wsc{word-spacing:6.101934pt;}
.ws3f{word-spacing:6.124469pt;}
.ws3e{word-spacing:6.125998pt;}
.ws34{word-spacing:6.136322pt;}
.ws2c{word-spacing:6.165695pt;}
.ws2d{word-spacing:6.423278pt;}
.wsb{word-spacing:6.481460pt;}
.ws15{word-spacing:6.965897pt;}
.ws2a{word-spacing:7.122903pt;}
.ws33{word-spacing:8.129536pt;}
.ws2{word-spacing:8.447043pt;}
.ws3{word-spacing:8.523556pt;}
.ws27{word-spacing:24.913119pt;}
.ws1f{word-spacing:55.021843pt;}
.ws22{word-spacing:55.021986pt;}
.ws1d{word-spacing:55.023720pt;}
.ws20{word-spacing:55.024030pt;}
.ws24{word-spacing:68.330991pt;}
.ws23{word-spacing:78.856366pt;}
.ws26{word-spacing:80.559433pt;}
.ws25{word-spacing:86.399329pt;}
._4{margin-left:-28.501147pt;}
._6{margin-left:-16.926775pt;}
._10{margin-left:-14.133715pt;}
._8{margin-left:-7.039202pt;}
._9{margin-left:-5.352732pt;}
._11{margin-left:-3.740634pt;}
._2{margin-left:-2.218879pt;}
._5{margin-left:-0.969613pt;}
._7{width:0.969613pt;}
._1{width:2.630126pt;}
._f{width:9.385981pt;}
._d{width:11.330786pt;}
._e{width:13.787481pt;}
._b{width:15.092689pt;}
._a{width:19.940743pt;}
._c{width:26.174577pt;}
._3{width:37.032324pt;}
._18{width:53.134000pt;}
._17{width:81.298967pt;}
._15{width:86.569254pt;}
._16{width:100.050441pt;}
._13{width:106.663925pt;}
._14{width:111.237183pt;}
._12{width:122.530591pt;}
._19{width:247.669721pt;}
._0{width:1237.034404pt;}
.fs0{font-size:21.253867pt;}
.fs1{font-size:26.566933pt;}
.fs9{font-size:29.149009pt;}
.fs5{font-size:31.880533pt;}
.fsa{font-size:38.865183pt;}
.fs4{font-size:42.507200pt;}
.fsb{font-size:43.723514pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:53.133867pt;}
.fsd{font-size:55.083682pt;}
.fs3{font-size:58.181867pt;}
.fs8{font-size:58.298018pt;}
.fse{font-size:60.365790pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:4.464000pt;}
.y6e{bottom:16.284000pt;}
.y75{bottom:16.653333pt;}
.y5d{bottom:16.884559pt;}
.yb4{bottom:17.017832pt;}
.y7d{bottom:20.884000pt;}
.y97{bottom:27.094667pt;}
.y21{bottom:28.062667pt;}
.y82{bottom:28.628000pt;}
.y6d{bottom:28.904000pt;}
.y5c{bottom:29.029167pt;}
.y65{bottom:29.269333pt;}
.y74{bottom:29.272000pt;}
.y88{bottom:30.414667pt;}
.y31{bottom:30.630667pt;}
.y7c{bottom:33.502667pt;}
.yb3{bottom:34.121186pt;}
.y96{bottom:36.392000pt;}
.y87{bottom:36.592000pt;}
.ya6{bottom:38.076000pt;}
.y30{bottom:39.929333pt;}
.y81{bottom:41.248000pt;}
.y20{bottom:41.345333pt;}
.y6c{bottom:41.522667pt;}
.y64{bottom:42.420000pt;}
.y73{bottom:42.422667pt;}
.y9{bottom:43.100000pt;}
.y7b{bottom:46.122667pt;}
.ya5{bottom:47.374667pt;}
.y5b{bottom:47.955591pt;}
.y2f{bottom:49.228000pt;}
.y95{bottom:49.676000pt;}
.y54{bottom:52.498667pt;}
.y6b{bottom:54.142667pt;}
.y80{bottom:54.398667pt;}
.y63{bottom:55.040000pt;}
.y72{bottom:55.042667pt;}
.yb9{bottom:55.357333pt;}
.y33{bottom:56.102667pt;}
.ya4{bottom:56.673333pt;}
.y2e{bottom:58.526667pt;}
.y7a{bottom:58.741333pt;}
.y42{bottom:58.766667pt;}
.y1f{bottom:59.412000pt;}
.y8{bottom:61.165333pt;}
.y53{bottom:61.841333pt;}
.y86{bottom:62.037333pt;}
.ya3{bottom:65.970667pt;}
.y6a{bottom:66.761333pt;}
.y7f{bottom:67.017333pt;}
.y44{bottom:67.322667pt;}
.y94{bottom:67.741333pt;}
.y41{bottom:68.065333pt;}
.y62{bottom:68.190667pt;}
.y71{bottom:68.193333pt;}
.y52{bottom:71.140000pt;}
.y79{bottom:71.361333pt;}
.yb2{bottom:74.340389pt;}
.y85{bottom:74.657333pt;}
.yb8{bottom:76.085333pt;}
.y40{bottom:77.364000pt;}
.y1e{bottom:77.477333pt;}
.y7{bottom:79.230667pt;}
.y69{bottom:79.381333pt;}
.y2d{bottom:80.132000pt;}
.y7e{bottom:80.168000pt;}
.y51{bottom:80.438667pt;}
.y61{bottom:80.809333pt;}
.y70{bottom:80.812000pt;}
.y5a{bottom:82.404730pt;}
.y78{bottom:83.980000pt;}
.ya2{bottom:85.252000pt;}
.y3f{bottom:86.662667pt;}
.y93{bottom:89.576000pt;}
.y50{bottom:89.737333pt;}
.yb1{bottom:91.443743pt;}
.y68{bottom:92.000000pt;}
.y6{bottom:93.952000pt;}
.y60{bottom:93.960000pt;}
.y6f{bottom:93.962667pt;}
.y84{bottom:94.360000pt;}
.y2c{bottom:94.744000pt;}
.y3e{bottom:95.961333pt;}
.y4f{bottom:99.034667pt;}
.y59{bottom:99.407425pt;}
.y1d{bottom:100.120000pt;}
.y77{bottom:104.694667pt;}
.ya1{bottom:105.177333pt;}
.y5f{bottom:107.110667pt;}
.yb0{bottom:108.547097pt;}
.y3d{bottom:109.244000pt;}
.y2b{bottom:109.356000pt;}
.y4e{bottom:112.318667pt;}
.yb7{bottom:113.761333pt;}
.y67{bottom:115.061333pt;}
.y3c{bottom:118.542667pt;}
.y4d{bottom:121.617333pt;}
.y2a{bottom:123.968000pt;}
.ya0{bottom:125.102667pt;}
.yaf{bottom:125.650452pt;}
.y3b{bottom:127.841333pt;}
.y92{bottom:127.842667pt;}
.y4c{bottom:130.916000pt;}
.y17{bottom:134.646667pt;}
.y5{bottom:134.694667pt;}
.y58{bottom:135.582801pt;}
.y3a{bottom:137.140000pt;}
.y29{bottom:138.580000pt;}
.y4b{bottom:140.214667pt;}
.yae{bottom:142.755068pt;}
.y91{bottom:144.262667pt;}
.y9f{bottom:145.028000pt;}
.y57{bottom:147.727408pt;}
.y16{bottom:152.713333pt;}
.y28{bottom:153.192000pt;}
.y39{bottom:156.421333pt;}
.y4{bottom:158.605333pt;}
.y4a{bottom:159.494667pt;}
.y9e{bottom:159.640000pt;}
.y90{bottom:160.204000pt;}
.yad{bottom:163.630275pt;}
.y56{bottom:164.549677pt;}
.y38{bottom:171.033333pt;}
.y15{bottom:172.877333pt;}
.y27{bottom:173.228000pt;}
.y49{bottom:174.106667pt;}
.y9d{bottom:179.565333pt;}
.y8f{bottom:180.420000pt;}
.y3{bottom:182.514667pt;}
.yac{bottom:184.506743pt;}
.y37{bottom:185.644000pt;}
.y48{bottom:188.718667pt;}
.y26{bottom:190.878667pt;}
.y14{bottom:192.829333pt;}
.y8e{bottom:194.261333pt;}
.y9c{bottom:199.490667pt;}
.y36{bottom:200.256000pt;}
.yab{bottom:201.611360pt;}
.y47{bottom:203.330667pt;}
.y2{bottom:206.425333pt;}
.y13{bottom:210.894667pt;}
.y8d{bottom:214.425333pt;}
.y35{bottom:219.185333pt;}
.y9b{bottom:219.416000pt;}
.yaa{bottom:222.487829pt;}
.y46{bottom:223.366667pt;}
.ye{bottom:224.096000pt;}
.y12{bottom:228.960000pt;}
.y25{bottom:231.526667pt;}
.y9a{bottom:234.028000pt;}
.y8c{bottom:234.726667pt;}
.y43{bottom:236.925333pt;}
.y34{bottom:237.782667pt;}
.y32{bottom:240.889333pt;}
.y45{bottom:241.964000pt;}
.ya9{bottom:242.112063pt;}
.yb6{bottom:248.965333pt;}
.y11{bottom:249.124000pt;}
.y24{bottom:249.592000pt;}
.yd{bottom:252.626667pt;}
.y99{bottom:253.953333pt;}
.y8b{bottom:263.256000pt;}
.y10{bottom:269.426667pt;}
.yb5{bottom:269.692000pt;}
.y23{bottom:270.320000pt;}
.yc{bottom:270.692000pt;}
.y98{bottom:277.870667pt;}
.ya8{bottom:278.573299pt;}
.y8a{bottom:281.322667pt;}
.y5e{bottom:285.108000pt;}
.y83{bottom:286.842667pt;}
.yf{bottom:288.022667pt;}
.y76{bottom:288.026667pt;}
.yb{bottom:288.757333pt;}
.y55{bottom:291.367080pt;}
.y66{bottom:294.408000pt;}
.ya7{bottom:295.676653pt;}
.y89{bottom:299.388000pt;}
.y22{bottom:307.806667pt;}
.ya{bottom:325.872000pt;}
.y1c{bottom:2694.763720pt;}
.y1b{bottom:2708.046387pt;}
.y1a{bottom:2726.113053pt;}
.y19{bottom:2744.178387pt;}
.y18{bottom:2766.821053pt;}
.h16{height:5.164646pt;}
.h5{height:19.925200pt;}
.h2{height:20.255867pt;}
.hc{height:21.861757pt;}
.h17{height:22.125090pt;}
.h9{height:23.910400pt;}
.hf{height:31.880400pt;}
.he{height:32.792635pt;}
.h12{height:35.236400pt;}
.h8{height:35.241733pt;}
.ha{height:35.865600pt;}
.h13{height:37.930400pt;}
.h14{height:37.935733pt;}
.h10{height:38.913067pt;}
.h15{height:39.850400pt;}
.h18{height:41.312762pt;}
.h6{height:43.636400pt;}
.hb{height:43.723514pt;}
.h19{height:45.274342pt;}
.h7{height:47.820800pt;}
.hd{height:50.307471pt;}
.h4{height:52.995067pt;}
.h3{height:57.384800pt;}
.h11{height:61.635491pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x1{left:19.549333pt;}
.x8{left:22.677333pt;}
.x1b{left:28.976000pt;}
.x2{left:37.794667pt;}
.x11{left:39.054667pt;}
.x3{left:41.574667pt;}
.x17{left:50.957333pt;}
.xb{left:52.501809pt;}
.x4{left:54.736000pt;}
.x1e{left:65.337518pt;}
.x18{left:66.886667pt;}
.x5{left:70.665333pt;}
.x19{left:80.609333pt;}
.x1a{left:95.977333pt;}
.xa{left:171.415830pt;}
.x12{left:225.922667pt;}
.x14{left:229.509333pt;}
.x13{left:230.970667pt;}
.xd{left:280.096000pt;}
.x10{left:283.077333pt;}
.xc{left:285.941333pt;}
.xe{left:289.336000pt;}
.x7{left:291.024000pt;}
.x15{left:297.322667pt;}
.x1c{left:303.622667pt;}
.x9{left:309.921333pt;}
.xf{left:319.297333pt;}
.x1d{left:332.713333pt;}
.x16{left:335.564000pt;}
.x6{left:2704.495720pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  