
    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_6668944ad88e1af5a4c8416e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_805dd63f5fb11833c61dd14a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_fc49fb9d8ff65b00d2eaa774.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_0cce197ef2f53ac457c5b1a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_43d99abe5f454d9d080536c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_bd8ab873a25b7fa4a674d9c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_d4300a5342bbf7433fff608c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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;}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.122947px;}
.ls0{letter-spacing:0.187842px;}
.ls3{letter-spacing:0.378602px;}
.ls2{letter-spacing:64.076494px;}
.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;}
}
.ws4{word-spacing:-35.855986px;}
.ws1{word-spacing:-23.939990px;}
.ws2{word-spacing:-14.939994px;}
.ws0{word-spacing:-12.059995px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-3.797079px;}
._5{margin-left:-2.664945px;}
._0{margin-left:-1.440826px;}
._2{width:1.002396px;}
._6{width:2.882430px;}
._c{width:4.058678px;}
._10{width:5.966560px;}
._11{width:7.749874px;}
._17{width:8.808429px;}
._7{width:9.867381px;}
._8{width:11.087953px;}
._9{width:12.182532px;}
._a{width:13.329209px;}
._b{width:16.225860px;}
._13{width:17.718998px;}
._12{width:18.875046px;}
._d{width:20.320099px;}
._e{width:21.490743px;}
._14{width:22.931831px;}
._18{width:24.599793px;}
._15{width:29.389053px;}
._16{width:30.422354px;}
._1a{width:50.624475px;}
._19{width:51.889509px;}
._1c{width:79.421673px;}
._1b{width:80.451683px;}
._1{width:100.137638px;}
._3{width:231.194081px;}
._4{width:1036.867572px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:17.999993px;}
.fs4{font-size:23.759990px;}
.fsa{font-size:35.999986px;}
.fs5{font-size:45.359982px;}
.fs2{font-size:48.239981px;}
.fs0{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs9{font-size:66.239974px;}
.fs6{font-size:71.999971px;}
.fs8{font-size:84.239966px;}
.fs7{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.238927px;}
.y9{bottom:68.880272px;}
.y8{bottom:78.600269px;}
.y7{bottom:96.599961px;}
.yac{bottom:137.640245px;}
.y75{bottom:138.180245px;}
.y41{bottom:152.219939px;}
.yab{bottom:156.179938px;}
.y74{bottom:156.899937px;}
.y40{bottom:170.939932px;}
.yaa{bottom:174.899930px;}
.y73{bottom:175.439930px;}
.y3f{bottom:189.479924px;}
.ya9{bottom:193.619923px;}
.y72{bottom:194.159922px;}
.y3e{bottom:208.199917px;}
.ya8{bottom:212.159915px;}
.y71{bottom:212.699915px;}
.y3d{bottom:226.739909px;}
.ya7{bottom:230.879908px;}
.y70{bottom:231.419907px;}
.y3c{bottom:245.459902px;}
.ya6{bottom:249.419900px;}
.y6f{bottom:249.959900px;}
.y3b{bottom:263.999894px;}
.ya5{bottom:268.139893px;}
.y6e{bottom:268.679893px;}
.y3a{bottom:282.719887px;}
.ya4{bottom:286.679885px;}
.y6d{bottom:287.219885px;}
.y39{bottom:299.459880px;}
.ya3{bottom:305.399878px;}
.y6c{bottom:305.939878px;}
.y38{bottom:312.599875px;}
.ya2{bottom:323.759870px;}
.y6b{bottom:324.659870px;}
.y37{bottom:331.139868px;}
.ya1{bottom:341.939863px;}
.y6a{bottom:343.199863px;}
.y36{bottom:349.859860px;}
.ya0{bottom:360.119856px;}
.y69{bottom:361.919855px;}
.y35{bottom:368.399853px;}
.y9f{bottom:378.839848px;}
.y68{bottom:380.459848px;}
.y34{bottom:387.119845px;}
.y9e{bottom:397.559841px;}
.y67{bottom:399.179840px;}
.y33{bottom:405.659838px;}
.y9d{bottom:416.099834px;}
.y66{bottom:417.719833px;}
.y32{bottom:424.379830px;}
.y9c{bottom:434.819826px;}
.y65{bottom:436.439825px;}
.y31{bottom:443.099823px;}
.y9b{bottom:453.359819px;}
.y7e{bottom:454.799818px;}
.y64{bottom:454.979818px;}
.y30{bottom:458.939816px;}
.y2f{bottom:468.659813px;}
.y9a{bottom:472.079811px;}
.y7d{bottom:472.979811px;}
.y63{bottom:473.699811px;}
.y2e{bottom:488.639805px;}
.y99{bottom:490.619804px;}
.y7c{bottom:491.159804px;}
.y62{bottom:492.419803px;}
.y98{bottom:509.339796px;}
.y7b{bottom:509.879796px;}
.y61{bottom:510.779796px;}
.y2d{bottom:511.139796px;}
.y2c{bottom:524.279790px;}
.y97{bottom:527.879789px;}
.y7a{bottom:528.419789px;}
.y60{bottom:528.779788px;}
.y2b{bottom:543.359783px;}
.y96{bottom:546.599781px;}
.y5f{bottom:547.139781px;}
.y2a{bottom:560.459776px;}
.y95{bottom:565.319774px;}
.y5e{bottom:565.859774px;}
.y29{bottom:570.359772px;}
.y94{bottom:583.859766px;}
.y5d{bottom:584.399766px;}
.y28{bottom:588.899764px;}
.y93{bottom:602.579759px;}
.y5c{bottom:603.119759px;}
.y27{bottom:607.619757px;}
.y92{bottom:621.119752px;}
.y5b{bottom:621.659751px;}
.y26{bottom:626.159750px;}
.y91{bottom:639.839744px;}
.y5a{bottom:640.379744px;}
.y25{bottom:644.879742px;}
.y90{bottom:658.379737px;}
.y59{bottom:658.919736px;}
.y24{bottom:663.419735px;}
.y8f{bottom:677.099729px;}
.y58{bottom:677.639729px;}
.y23{bottom:682.139727px;}
.y8e{bottom:695.639722px;}
.y57{bottom:696.359721px;}
.y22{bottom:700.679720px;}
.y8d{bottom:714.359714px;}
.y56{bottom:714.899714px;}
.y21{bottom:719.399712px;}
.y8c{bottom:733.079707px;}
.y55{bottom:733.619707px;}
.y20{bottom:738.119705px;}
.y8b{bottom:751.619699px;}
.y54{bottom:752.159699px;}
.y1f{bottom:756.659697px;}
.y8a{bottom:770.339692px;}
.y53{bottom:770.879692px;}
.y1e{bottom:775.379690px;}
.y89{bottom:788.879684px;}
.y52{bottom:789.419684px;}
.y1d{bottom:793.919682px;}
.y88{bottom:807.599677px;}
.y51{bottom:808.139677px;}
.y1c{bottom:812.639675px;}
.yb8{bottom:823.079671px;}
.y87{bottom:826.139670px;}
.y50{bottom:826.679669px;}
.y1b{bottom:828.659669px;}
.y1a{bottom:838.559665px;}
.yb7{bottom:841.259663px;}
.y86{bottom:844.859662px;}
.y4f{bottom:845.399662px;}
.y19{bottom:858.539657px;}
.yb6{bottom:859.979656px;}
.y85{bottom:863.399655px;}
.y4e{bottom:864.119654px;}
.yb5{bottom:879.239648px;}
.y84{bottom:881.939647px;}
.y18{bottom:882.299647px;}
.y4d{bottom:882.659647px;}
.y17{bottom:897.779641px;}
.yb4{bottom:897.959641px;}
.y83{bottom:900.119640px;}
.y4c{bottom:901.379639px;}
.y16{bottom:916.499633px;}
.yb3{bottom:917.219633px;}
.y82{bottom:918.839632px;}
.y4b{bottom:919.919632px;}
.y15{bottom:935.039626px;}
.yb2{bottom:935.939626px;}
.y81{bottom:937.559625px;}
.y4a{bottom:938.639625px;}
.y14{bottom:953.759618px;}
.yb1{bottom:955.199618px;}
.y80{bottom:956.099618px;}
.y49{bottom:956.999617px;}
.y79{bottom:957.179617px;}
.y13{bottom:972.119611px;}
.yb0{bottom:974.459610px;}
.y7f{bottom:974.819610px;}
.y48{bottom:975.179610px;}
.y78{bottom:975.899610px;}
.y12{bottom:990.299604px;}
.yaf{bottom:993.179603px;}
.y47{bottom:993.359603px;}
.y77{bottom:994.259602px;}
.y11{bottom:1010.639596px;}
.y46{bottom:1012.079595px;}
.y76{bottom:1012.439595px;}
.y45{bottom:1030.619588px;}
.yae{bottom:1031.519587px;}
.y10{bottom:1039.799584px;}
.y44{bottom:1049.339580px;}
.yad{bottom:1049.699580px;}
.yf{bottom:1067.339573px;}
.y43{bottom:1067.879573px;}
.y42{bottom:1086.599565px;}
.ye{bottom:1088.039565px;}
.y6{bottom:1113.059555px;}
.y5{bottom:1125.479550px;}
.y4{bottom:1133.759546px;}
.y3{bottom:1150.499540px;}
.yd{bottom:1155.899538px;}
.y2{bottom:1163.639535px;}
.yc{bottom:1169.759532px;}
.ya{bottom:1180.380600px;}
.y1{bottom:1196.039522px;}
.h2{height:13.104487px;}
.h7{height:13.860000px;}
.h6{height:15.836126px;}
.h13{height:17.263118px;}
.hf{height:17.297923px;}
.h10{height:17.321126px;}
.h12{height:26.208974px;}
.h8{height:33.023307px;}
.h9{height:33.067604px;}
.h3{height:35.049361px;}
.h4{height:35.167134px;}
.h1{height:39.313461px;}
.hd{height:43.419358px;}
.h5{height:43.506897px;}
.h11{height:48.289199px;}
.ha{height:52.312479px;}
.h14{height:52.417948px;}
.he{height:61.328999px;}
.hc{height:69.575597px;}
.hb{height:69.809386px;}
.h0{height:1263.000000px;}
.w2{width:7.020000px;}
.w1{width:253.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x13{left:134.999946px;}
.x11{left:154.793938px;}
.x4{left:160.019662px;}
.xc{left:167.939933px;}
.x12{left:192.779923px;}
.x5{left:206.459917px;}
.xf{left:243.179951px;}
.x10{left:262.439895px;}
.xd{left:283.499887px;}
.xb{left:320.399872px;}
.x2{left:353.160301px;}
.xe{left:390.959999px;}
.x14{left:424.620306px;}
.x6{left:431.999827px;}
.x3{left:446.400357px;}
.x15{left:468.359813px;}
.x7{left:521.460000px;}
.x9{left:624.599750px;}
.xa{left:693.899699px;}
.x8{left:774.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.109286pt;}
.ls0{letter-spacing:0.166971pt;}
.ls3{letter-spacing:0.336535pt;}
.ls2{letter-spacing:56.956884pt;}
.ws4{word-spacing:-31.871987pt;}
.ws1{word-spacing:-21.279991pt;}
.ws2{word-spacing:-13.279995pt;}
.ws0{word-spacing:-10.719996pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-3.375182pt;}
._5{margin-left:-2.368840pt;}
._0{margin-left:-1.280735pt;}
._2{width:0.891019pt;}
._6{width:2.562160pt;}
._c{width:3.607714pt;}
._10{width:5.303609pt;}
._11{width:6.888777pt;}
._17{width:7.829715pt;}
._7{width:8.771006pt;}
._8{width:9.855958pt;}
._9{width:10.828917pt;}
._a{width:11.848186pt;}
._b{width:14.422986pt;}
._13{width:15.750220pt;}
._12{width:16.777819pt;}
._d{width:18.062310pt;}
._e{width:19.102883pt;}
._14{width:20.383850pt;}
._18{width:21.866483pt;}
._15{width:26.123603pt;}
._16{width:27.042092pt;}
._1a{width:44.999534pt;}
._19{width:46.124008pt;}
._1c{width:70.597043pt;}
._1b{width:71.512607pt;}
._1{width:89.011234pt;}
._3{width:205.505850pt;}
._4{width:921.660064pt;}
.fs1{font-size:15.999994pt;}
.fs4{font-size:21.119992pt;}
.fsa{font-size:31.999987pt;}
.fs5{font-size:40.319984pt;}
.fs2{font-size:42.879983pt;}
.fs0{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs9{font-size:58.879976pt;}
.fs6{font-size:63.999974pt;}
.fs8{font-size:74.879970pt;}
.fs7{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.879046pt;}
.y9{bottom:61.226909pt;}
.y8{bottom:69.866905pt;}
.y7{bottom:85.866632pt;}
.yac{bottom:122.346884pt;}
.y75{bottom:122.826884pt;}
.y41{bottom:135.306613pt;}
.yab{bottom:138.826611pt;}
.y74{bottom:139.466611pt;}
.y40{bottom:151.946606pt;}
.yaa{bottom:155.466604pt;}
.y73{bottom:155.946604pt;}
.y3f{bottom:168.426599pt;}
.ya9{bottom:172.106598pt;}
.y72{bottom:172.586598pt;}
.y3e{bottom:185.066593pt;}
.ya8{bottom:188.586591pt;}
.y71{bottom:189.066591pt;}
.y3d{bottom:201.546586pt;}
.ya7{bottom:205.226585pt;}
.y70{bottom:205.706584pt;}
.y3c{bottom:218.186579pt;}
.ya6{bottom:221.706578pt;}
.y6f{bottom:222.186578pt;}
.y3b{bottom:234.666573pt;}
.ya5{bottom:238.346571pt;}
.y6e{bottom:238.826571pt;}
.y3a{bottom:251.306566pt;}
.ya4{bottom:254.826565pt;}
.y6d{bottom:255.306565pt;}
.y39{bottom:266.186560pt;}
.ya3{bottom:271.466558pt;}
.y6c{bottom:271.946558pt;}
.y38{bottom:277.866556pt;}
.ya2{bottom:287.786552pt;}
.y6b{bottom:288.586551pt;}
.y37{bottom:294.346549pt;}
.ya1{bottom:303.946545pt;}
.y6a{bottom:305.066545pt;}
.y36{bottom:310.986542pt;}
.ya0{bottom:320.106539pt;}
.y69{bottom:321.706538pt;}
.y35{bottom:327.466536pt;}
.y9f{bottom:336.746532pt;}
.y68{bottom:338.186531pt;}
.y34{bottom:344.106529pt;}
.y9e{bottom:353.386525pt;}
.y67{bottom:354.826525pt;}
.y33{bottom:360.586522pt;}
.y9d{bottom:369.866519pt;}
.y66{bottom:371.306518pt;}
.y32{bottom:377.226516pt;}
.y9c{bottom:386.506512pt;}
.y65{bottom:387.946511pt;}
.y31{bottom:393.866509pt;}
.y9b{bottom:402.986505pt;}
.y7e{bottom:404.266505pt;}
.y64{bottom:404.426505pt;}
.y30{bottom:407.946503pt;}
.y2f{bottom:416.586500pt;}
.y9a{bottom:419.626499pt;}
.y7d{bottom:420.426498pt;}
.y63{bottom:421.066498pt;}
.y2e{bottom:434.346493pt;}
.y99{bottom:436.106492pt;}
.y7c{bottom:436.586492pt;}
.y62{bottom:437.706492pt;}
.y98{bottom:452.746486pt;}
.y7b{bottom:453.226485pt;}
.y61{bottom:454.026485pt;}
.y2d{bottom:454.346485pt;}
.y2c{bottom:466.026480pt;}
.y97{bottom:469.226479pt;}
.y7a{bottom:469.706479pt;}
.y60{bottom:470.026479pt;}
.y2b{bottom:482.986473pt;}
.y96{bottom:485.866472pt;}
.y5f{bottom:486.346472pt;}
.y2a{bottom:498.186467pt;}
.y95{bottom:502.506466pt;}
.y5e{bottom:502.986465pt;}
.y29{bottom:506.986464pt;}
.y94{bottom:518.986459pt;}
.y5d{bottom:519.466459pt;}
.y28{bottom:523.466457pt;}
.y93{bottom:535.626452pt;}
.y5c{bottom:536.106452pt;}
.y27{bottom:540.106451pt;}
.y92{bottom:552.106446pt;}
.y5b{bottom:552.586446pt;}
.y26{bottom:556.586444pt;}
.y91{bottom:568.746439pt;}
.y5a{bottom:569.226439pt;}
.y25{bottom:573.226437pt;}
.y90{bottom:585.226433pt;}
.y59{bottom:585.706432pt;}
.y24{bottom:589.706431pt;}
.y8f{bottom:601.866426pt;}
.y58{bottom:602.346426pt;}
.y23{bottom:606.346424pt;}
.y8e{bottom:618.346419pt;}
.y57{bottom:618.986419pt;}
.y22{bottom:622.826418pt;}
.y8d{bottom:634.986413pt;}
.y56{bottom:635.466412pt;}
.y21{bottom:639.466411pt;}
.y8c{bottom:651.626406pt;}
.y55{bottom:652.106406pt;}
.y20{bottom:656.106404pt;}
.y8b{bottom:668.106399pt;}
.y54{bottom:668.586399pt;}
.y1f{bottom:672.586398pt;}
.y8a{bottom:684.746393pt;}
.y53{bottom:685.226393pt;}
.y1e{bottom:689.226391pt;}
.y89{bottom:701.226386pt;}
.y52{bottom:701.706386pt;}
.y1d{bottom:705.706384pt;}
.y88{bottom:717.866380pt;}
.y51{bottom:718.346379pt;}
.y1c{bottom:722.346378pt;}
.yb8{bottom:731.626374pt;}
.y87{bottom:734.346373pt;}
.y50{bottom:734.826373pt;}
.y1b{bottom:736.586372pt;}
.y1a{bottom:745.386369pt;}
.yb7{bottom:747.786368pt;}
.y86{bottom:750.986366pt;}
.y4f{bottom:751.466366pt;}
.y19{bottom:763.146361pt;}
.yb6{bottom:764.426361pt;}
.y85{bottom:767.466360pt;}
.y4e{bottom:768.106359pt;}
.yb5{bottom:781.546354pt;}
.y84{bottom:783.946353pt;}
.y18{bottom:784.266353pt;}
.y4d{bottom:784.586353pt;}
.y17{bottom:798.026347pt;}
.yb4{bottom:798.186347pt;}
.y83{bottom:800.106347pt;}
.y4c{bottom:801.226346pt;}
.y16{bottom:814.666341pt;}
.yb3{bottom:815.306341pt;}
.y82{bottom:816.746340pt;}
.y4b{bottom:817.706340pt;}
.y15{bottom:831.146334pt;}
.yb2{bottom:831.946334pt;}
.y81{bottom:833.386333pt;}
.y4a{bottom:834.346333pt;}
.y14{bottom:847.786328pt;}
.yb1{bottom:849.066327pt;}
.y80{bottom:849.866327pt;}
.y49{bottom:850.666326pt;}
.y79{bottom:850.826326pt;}
.y13{bottom:864.106321pt;}
.yb0{bottom:866.186320pt;}
.y7f{bottom:866.506320pt;}
.y48{bottom:866.826320pt;}
.y78{bottom:867.466320pt;}
.y12{bottom:880.266315pt;}
.yaf{bottom:882.826314pt;}
.y47{bottom:882.986313pt;}
.y77{bottom:883.786313pt;}
.y11{bottom:898.346307pt;}
.y46{bottom:899.626307pt;}
.y76{bottom:899.946307pt;}
.y45{bottom:916.106300pt;}
.yae{bottom:916.906300pt;}
.y10{bottom:924.266297pt;}
.y44{bottom:932.746294pt;}
.yad{bottom:933.066293pt;}
.yf{bottom:948.746287pt;}
.y43{bottom:949.226287pt;}
.y42{bottom:965.866280pt;}
.ye{bottom:967.146280pt;}
.y6{bottom:989.386271pt;}
.y5{bottom:1000.426266pt;}
.y4{bottom:1007.786264pt;}
.y3{bottom:1022.666258pt;}
.yd{bottom:1027.466256pt;}
.y2{bottom:1034.346253pt;}
.yc{bottom:1039.786251pt;}
.ya{bottom:1049.227200pt;}
.y1{bottom:1063.146241pt;}
.h2{height:11.648433pt;}
.h7{height:12.320000pt;}
.h6{height:14.076557pt;}
.h13{height:15.344994pt;}
.hf{height:15.375931pt;}
.h10{height:15.396556pt;}
.h12{height:23.296866pt;}
.h8{height:29.354051pt;}
.h9{height:29.393426pt;}
.h3{height:31.154988pt;}
.h4{height:31.259675pt;}
.h1{height:34.945299pt;}
.hd{height:38.594985pt;}
.h5{height:38.672797pt;}
.h11{height:42.923733pt;}
.ha{height:46.499981pt;}
.h14{height:46.593731pt;}
.he{height:54.514666pt;}
.hc{height:61.844975pt;}
.hb{height:62.052788pt;}
.h0{height:1122.666667pt;}
.w2{width:6.240000pt;}
.w1{width:224.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x13{left:119.999952pt;}
.x11{left:137.594612pt;}
.x4{left:142.239699pt;}
.xc{left:149.279940pt;}
.x12{left:171.359931pt;}
.x5{left:183.519927pt;}
.xf{left:216.159957pt;}
.x10{left:233.279907pt;}
.xd{left:251.999899pt;}
.xb{left:284.799886pt;}
.x2{left:313.920268pt;}
.xe{left:347.519999pt;}
.x14{left:377.440272pt;}
.x6{left:383.999846pt;}
.x3{left:396.800317pt;}
.x15{left:416.319833pt;}
.x7{left:463.520000pt;}
.x9{left:555.199778pt;}
.xa{left:616.799733pt;}
.x8{left:688.480000pt;}
}




    .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; }
  