
    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_0a95717ab9228ab660895e1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_e14b3abaac2ce2c61905f271.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.139000;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_d2c50fb80f5b6faf0132d824.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_785152912e0e0abf74e65fa9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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_ccbfa2aba3eee2ffb2b39d64.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.137000;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_c0edc83ba6d30a7e0019bd57.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.062000;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_80496ad286b2d87e6bd44358.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062000;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_0f1e446a924864d2a8f04c08.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.075000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws8{word-spacing:-42.191998px;}
.ws0{word-spacing:-17.999999px;}
.ws3{word-spacing:-16.492499px;}
.ws7{word-spacing:-14.996249px;}
.ws1{word-spacing:-13.499999px;}
.ws5{word-spacing:-10.939724px;}
.ws6{word-spacing:-10.500723px;}
.ws4{word-spacing:-6.993414px;}
.ws2{word-spacing:0.000000px;}
._c{margin-left:-1.000050px;}
._2{width:1.108124px;}
._4{width:2.804047px;}
._6{width:4.767760px;}
._e{width:6.396428px;}
._1{width:8.086496px;}
._3{width:9.153324px;}
._a{width:10.233116px;}
._9{width:11.284488px;}
._d{width:12.746003px;}
._7{width:14.787115px;}
._25{width:17.581980px;}
._24{width:18.591535px;}
._2d{width:19.886219px;}
._b{width:21.132474px;}
._5{width:22.807034px;}
._17{width:24.672134px;}
._f{width:25.673938px;}
._2a{width:27.583594px;}
._16{width:28.645313px;}
._1c{width:29.753402px;}
._8{width:31.310542px;}
._14{width:32.909440px;}
._20{width:34.092007px;}
._19{width:35.180456px;}
._1a{width:36.967223px;}
._0{width:38.212767px;}
._12{width:39.368103px;}
._11{width:40.467194px;}
._18{width:42.420220px;}
._15{width:43.516054px;}
._1e{width:45.300385px;}
._23{width:46.390752px;}
._13{width:47.557426px;}
._1f{width:48.999973px;}
._21{width:50.308581px;}
._2c{width:52.195955px;}
._2f{width:53.583136px;}
._1b{width:55.418631px;}
._27{width:59.260202px;}
._2b{width:60.861264px;}
._30{width:62.358327px;}
._1d{width:64.656849px;}
._22{width:66.317717px;}
._26{width:67.903624px;}
._10{width:69.328832px;}
._29{width:70.886070px;}
._28{width:72.247378px;}
._2e{width:80.985936px;}
._32{width:85.324786px;}
._34{width:86.807478px;}
._33{width:106.147945px;}
._31{width:110.204909px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs5{font-size:18.668471px;}
.fs4{font-size:27.973655px;}
.fs6{font-size:29.739314px;}
.fs7{font-size:42.002892px;}
.fs9{font-size:48.001047px;}
.fs3{font-size:53.999998px;}
.fs8{font-size:59.984997px;}
.fs1{font-size:65.969996px;}
.fs2{font-size:71.999997px;}
.fs0{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y88{bottom:5.720482px;}
.y87{bottom:15.633587px;}
.y86{bottom:25.546692px;}
.y1d{bottom:26.727803px;}
.y83{bottom:30.015019px;}
.y85{bottom:35.459796px;}
.y81{bottom:35.977753px;}
.y84{bottom:45.372901px;}
.y1c{bottom:49.227802px;}
.y80{bottom:54.326772px;}
.y82{bottom:55.199585px;}
.y7f{bottom:71.458487px;}
.y28{bottom:96.056708px;}
.y76{bottom:115.095185px;}
.y68{bottom:117.449563px;}
.y27{bottom:118.556707px;}
.y75{bottom:137.595184px;}
.y7e{bottom:138.134010px;}
.y67{bottom:139.949562px;}
.y26{bottom:141.056706px;}
.y89{bottom:144.297559px;}
.y74{bottom:160.095183px;}
.y7d{bottom:160.634009px;}
.y66{bottom:162.449561px;}
.y36{bottom:163.556705px;}
.y39{bottom:174.596141px;}
.y73{bottom:182.595182px;}
.y7c{bottom:183.134008px;}
.y65{bottom:184.949560px;}
.y35{bottom:186.056704px;}
.y38{bottom:199.346140px;}
.y91{bottom:202.315168px;}
.y72{bottom:205.095181px;}
.y7b{bottom:205.634007px;}
.y64{bottom:207.449559px;}
.y34{bottom:208.556703px;}
.y71{bottom:227.595180px;}
.y7a{bottom:228.134006px;}
.y63{bottom:229.949558px;}
.y33{bottom:231.056702px;}
.y8f{bottom:232.964270px;}
.y70{bottom:250.095179px;}
.y79{bottom:250.634006px;}
.y62{bottom:252.449557px;}
.y32{bottom:253.556701px;}
.y25{bottom:257.632477px;}
.y6f{bottom:272.595178px;}
.y61{bottom:274.949557px;}
.y31{bottom:276.056700px;}
.y24{bottom:280.132476px;}
.y6e{bottom:295.095177px;}
.y78{bottom:295.170108px;}
.y60{bottom:297.449556px;}
.y30{bottom:298.556700px;}
.y23{bottom:302.632475px;}
.y6d{bottom:317.595176px;}
.y90{bottom:319.674983px;}
.y77{bottom:319.920107px;}
.y5f{bottom:319.949555px;}
.y2f{bottom:321.056699px;}
.y22{bottom:325.132474px;}
.y6c{bottom:340.095175px;}
.y2e{bottom:343.556698px;}
.y21{bottom:347.632474px;}
.y6b{bottom:362.595174px;}
.y5e{bottom:362.630901px;}
.y2d{bottom:366.056697px;}
.y20{bottom:370.132473px;}
.y9e{bottom:380.466962px;}
.y6a{bottom:385.095174px;}
.y5d{bottom:387.380900px;}
.y2c{bottom:388.556696px;}
.y1f{bottom:392.632472px;}
.y69{bottom:407.595173px;}
.y2b{bottom:411.056695px;}
.y1e{bottom:415.132471px;}
.y5c{bottom:430.095172px;}
.y2a{bottom:433.556694px;}
.y37{bottom:448.551809px;}
.y5b{bottom:452.595171px;}
.y29{bottom:456.056693px;}
.y5a{bottom:475.095170px;}
.y59{bottom:497.595169px;}
.y1b{bottom:509.254672px;}
.y58{bottom:520.095168px;}
.y1a{bottom:531.754671px;}
.y57{bottom:542.595167px;}
.y19{bottom:554.254670px;}
.y56{bottom:565.095166px;}
.y18{bottom:576.754669px;}
.y55{bottom:587.595165px;}
.y17{bottom:599.254668px;}
.y54{bottom:610.095164px;}
.y16{bottom:621.754667px;}
.y53{bottom:632.595163px;}
.y15{bottom:644.254666px;}
.y52{bottom:655.095162px;}
.y14{bottom:666.754665px;}
.y51{bottom:677.595161px;}
.y13{bottom:689.254664px;}
.y9d{bottom:690.310414px;}
.y50{bottom:700.095160px;}
.y9c{bottom:706.310764px;}
.y12{bottom:711.754664px;}
.y4f{bottom:722.595159px;}
.y11{bottom:734.254663px;}
.y4e{bottom:745.095159px;}
.y10{bottom:756.754662px;}
.y99{bottom:765.593954px;}
.y4d{bottom:767.595158px;}
.yf{bottom:779.254661px;}
.y98{bottom:788.093953px;}
.y4c{bottom:790.095157px;}
.ye{bottom:801.754660px;}
.y97{bottom:810.593952px;}
.y4b{bottom:812.595156px;}
.yd{bottom:824.254659px;}
.y96{bottom:833.093951px;}
.y4a{bottom:835.095155px;}
.yc{bottom:846.754658px;}
.y95{bottom:855.593950px;}
.y49{bottom:857.595154px;}
.yb{bottom:869.254657px;}
.y94{bottom:878.093949px;}
.y48{bottom:880.095153px;}
.ya{bottom:891.754656px;}
.y93{bottom:900.593948px;}
.y47{bottom:902.595152px;}
.y9{bottom:914.254655px;}
.y92{bottom:923.093947px;}
.y46{bottom:925.095151px;}
.y9b{bottom:931.789054px;}
.y8{bottom:936.754654px;}
.y45{bottom:947.595150px;}
.y7{bottom:959.254653px;}
.y44{bottom:970.095149px;}
.y9a{bottom:970.272140px;}
.y6{bottom:981.754652px;}
.y43{bottom:992.595148px;}
.y5{bottom:1004.254651px;}
.y42{bottom:1015.095147px;}
.y8e{bottom:1021.070150px;}
.y4{bottom:1026.754650px;}
.y41{bottom:1037.595146px;}
.y8d{bottom:1043.570149px;}
.y40{bottom:1060.095145px;}
.y3b{bottom:1070.362903px;}
.y3f{bottom:1082.595144px;}
.y3a{bottom:1088.362902px;}
.y8c{bottom:1088.570147px;}
.y3e{bottom:1105.095144px;}
.y8b{bottom:1111.070146px;}
.y3d{bottom:1127.595143px;}
.y3{bottom:1145.185725px;}
.y3c{bottom:1150.095142px;}
.y8a{bottom:1156.070144px;}
.y2{bottom:1174.435723px;}
.h9{height:15.457494px;}
.h8{height:22.770555px;}
.hb{height:24.207802px;}
.hc{height:34.190354px;}
.h10{height:39.072852px;}
.hf{height:43.955998px;}
.h6{height:48.113998px;}
.he{height:48.827788px;}
.h7{height:53.633607px;}
.ha{height:53.639998px;}
.hd{height:53.699577px;}
.h4{height:58.779267px;}
.h5{height:59.615998px;}
.h3{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:43.535941px;}
.x4{left:44.919271px;}
.x6{left:46.302603px;}
.xc{left:47.949052px;}
.x1{left:87.305470px;}
.xa{left:119.519995px;}
.xb{left:127.235486px;}
.x2{left:258.762494px;}
.x5{left:469.058798px;}
.x9{left:496.232558px;}
.x8{left:618.425974px;}
.x7{left:620.329942px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-37.503998pt;}
.ws0{word-spacing:-15.999999pt;}
.ws3{word-spacing:-14.659999pt;}
.ws7{word-spacing:-13.329999pt;}
.ws1{word-spacing:-12.000000pt;}
.ws5{word-spacing:-9.724199pt;}
.ws6{word-spacing:-9.333976pt;}
.ws4{word-spacing:-6.216368pt;}
.ws2{word-spacing:0.000000pt;}
._c{margin-left:-0.888933pt;}
._2{width:0.984999pt;}
._4{width:2.492486pt;}
._6{width:4.238009pt;}
._e{width:5.685714pt;}
._1{width:7.187996pt;}
._3{width:8.136288pt;}
._a{width:9.096103pt;}
._9{width:10.030656pt;}
._d{width:11.329781pt;}
._7{width:13.144102pt;}
._25{width:15.628427pt;}
._24{width:16.525809pt;}
._2d{width:17.676639pt;}
._b{width:18.784421pt;}
._5{width:20.272919pt;}
._17{width:21.930785pt;}
._f{width:22.821278pt;}
._2a{width:24.518750pt;}
._16{width:25.462500pt;}
._1c{width:26.447468pt;}
._8{width:27.831593pt;}
._14{width:29.252836pt;}
._20{width:30.304006pt;}
._19{width:31.271516pt;}
._1a{width:32.859754pt;}
._0{width:33.966904pt;}
._12{width:34.993869pt;}
._11{width:35.970839pt;}
._18{width:37.706862pt;}
._15{width:38.680937pt;}
._1e{width:40.267009pt;}
._23{width:41.236224pt;}
._13{width:42.273268pt;}
._1f{width:43.555532pt;}
._21{width:44.718739pt;}
._2c{width:46.396404pt;}
._2f{width:47.629454pt;}
._1b{width:49.261006pt;}
._27{width:52.675735pt;}
._2b{width:54.098902pt;}
._30{width:55.429624pt;}
._1d{width:57.472755pt;}
._22{width:58.949082pt;}
._26{width:60.358776pt;}
._10{width:61.625628pt;}
._29{width:63.009840pt;}
._28{width:64.219891pt;}
._2e{width:71.987499pt;}
._32{width:75.844254pt;}
._34{width:77.162202pt;}
._33{width:94.353729pt;}
._31{width:97.959919pt;}
.fs5{font-size:16.594196pt;}
.fs4{font-size:24.865471pt;}
.fs6{font-size:26.434946pt;}
.fs7{font-size:37.335904pt;}
.fs9{font-size:42.667598pt;}
.fs3{font-size:47.999998pt;}
.fs8{font-size:53.319997pt;}
.fs1{font-size:58.639997pt;}
.fs2{font-size:63.999997pt;}
.fs0{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y88{bottom:5.084873pt;}
.y87{bottom:13.896522pt;}
.y86{bottom:22.708170pt;}
.y1d{bottom:23.758047pt;}
.y83{bottom:26.680017pt;}
.y85{bottom:31.519819pt;}
.y81{bottom:31.980225pt;}
.y84{bottom:40.331468pt;}
.y1c{bottom:43.758046pt;}
.y80{bottom:48.290464pt;}
.y82{bottom:49.066298pt;}
.y7f{bottom:63.518656pt;}
.y28{bottom:85.383740pt;}
.y76{bottom:102.306831pt;}
.y68{bottom:104.399612pt;}
.y27{bottom:105.383740pt;}
.y75{bottom:122.306830pt;}
.y7e{bottom:122.785787pt;}
.y67{bottom:124.399611pt;}
.y26{bottom:125.383739pt;}
.y89{bottom:128.264497pt;}
.y74{bottom:142.306829pt;}
.y7d{bottom:142.785786pt;}
.y66{bottom:144.399610pt;}
.y36{bottom:145.383738pt;}
.y39{bottom:155.196570pt;}
.y73{bottom:162.306828pt;}
.y7c{bottom:162.785785pt;}
.y65{bottom:164.399609pt;}
.y35{bottom:165.383737pt;}
.y38{bottom:177.196569pt;}
.y91{bottom:179.835705pt;}
.y72{bottom:182.306828pt;}
.y7b{bottom:182.785784pt;}
.y64{bottom:184.399608pt;}
.y34{bottom:185.383736pt;}
.y71{bottom:202.306827pt;}
.y7a{bottom:202.785784pt;}
.y63{bottom:204.399607pt;}
.y33{bottom:205.383735pt;}
.y8f{bottom:207.079351pt;}
.y70{bottom:222.306826pt;}
.y79{bottom:222.785783pt;}
.y62{bottom:224.399607pt;}
.y32{bottom:225.383735pt;}
.y25{bottom:229.006646pt;}
.y6f{bottom:242.306825pt;}
.y61{bottom:244.399606pt;}
.y31{bottom:245.383734pt;}
.y24{bottom:249.006646pt;}
.y6e{bottom:262.306824pt;}
.y78{bottom:262.373429pt;}
.y60{bottom:264.399605pt;}
.y30{bottom:265.383733pt;}
.y23{bottom:269.006645pt;}
.y6d{bottom:282.306823pt;}
.y90{bottom:284.155540pt;}
.y77{bottom:284.373428pt;}
.y5f{bottom:284.399604pt;}
.y2f{bottom:285.383732pt;}
.y22{bottom:289.006644pt;}
.y6c{bottom:302.306823pt;}
.y2e{bottom:305.383731pt;}
.y21{bottom:309.006643pt;}
.y6b{bottom:322.306822pt;}
.y5e{bottom:322.338579pt;}
.y2d{bottom:325.383730pt;}
.y20{bottom:329.006642pt;}
.y9e{bottom:338.192855pt;}
.y6a{bottom:342.306821pt;}
.y5d{bottom:344.338578pt;}
.y2c{bottom:345.383730pt;}
.y1f{bottom:349.006641pt;}
.y69{bottom:362.306820pt;}
.y2b{bottom:365.383729pt;}
.y1e{bottom:369.006641pt;}
.y5c{bottom:382.306819pt;}
.y2a{bottom:385.383728pt;}
.y37{bottom:398.712719pt;}
.y5b{bottom:402.306818pt;}
.y29{bottom:405.383727pt;}
.y5a{bottom:422.306818pt;}
.y59{bottom:442.306817pt;}
.y1b{bottom:452.670820pt;}
.y58{bottom:462.306816pt;}
.y1a{bottom:472.670819pt;}
.y57{bottom:482.306815pt;}
.y19{bottom:492.670818pt;}
.y56{bottom:502.306814pt;}
.y18{bottom:512.670817pt;}
.y55{bottom:522.306813pt;}
.y17{bottom:532.670816pt;}
.y54{bottom:542.306813pt;}
.y16{bottom:552.670815pt;}
.y53{bottom:562.306812pt;}
.y15{bottom:572.670815pt;}
.y52{bottom:582.306811pt;}
.y14{bottom:592.670814pt;}
.y51{bottom:602.306810pt;}
.y13{bottom:612.670813pt;}
.y9d{bottom:613.609257pt;}
.y50{bottom:622.306809pt;}
.y9c{bottom:627.831790pt;}
.y12{bottom:632.670812pt;}
.y4f{bottom:642.306808pt;}
.y11{bottom:652.670811pt;}
.y4e{bottom:662.306808pt;}
.y10{bottom:672.670810pt;}
.y99{bottom:680.527959pt;}
.y4d{bottom:682.306807pt;}
.yf{bottom:692.670810pt;}
.y98{bottom:700.527958pt;}
.y4c{bottom:702.306806pt;}
.ye{bottom:712.670809pt;}
.y97{bottom:720.527957pt;}
.y4b{bottom:722.306805pt;}
.yd{bottom:732.670808pt;}
.y96{bottom:740.527956pt;}
.y4a{bottom:742.306804pt;}
.yc{bottom:752.670807pt;}
.y95{bottom:760.527956pt;}
.y49{bottom:762.306803pt;}
.yb{bottom:772.670806pt;}
.y94{bottom:780.527955pt;}
.y48{bottom:782.306803pt;}
.ya{bottom:792.670805pt;}
.y93{bottom:800.527954pt;}
.y47{bottom:802.306802pt;}
.y9{bottom:812.670805pt;}
.y92{bottom:820.527953pt;}
.y46{bottom:822.306801pt;}
.y9b{bottom:828.256937pt;}
.y8{bottom:832.670804pt;}
.y45{bottom:842.306800pt;}
.y7{bottom:852.670803pt;}
.y44{bottom:862.306799pt;}
.y9a{bottom:862.464124pt;}
.y6{bottom:872.670802pt;}
.y43{bottom:882.306798pt;}
.y5{bottom:892.670801pt;}
.y42{bottom:902.306798pt;}
.y8e{bottom:907.617911pt;}
.y4{bottom:912.670800pt;}
.y41{bottom:922.306797pt;}
.y8d{bottom:927.617910pt;}
.y40{bottom:942.306796pt;}
.y3b{bottom:951.433692pt;}
.y3f{bottom:962.306795pt;}
.y3a{bottom:967.433691pt;}
.y8c{bottom:967.617908pt;}
.y3e{bottom:982.306794pt;}
.y8b{bottom:987.617908pt;}
.y3d{bottom:1002.306793pt;}
.y3{bottom:1017.942866pt;}
.y3c{bottom:1022.306793pt;}
.y8a{bottom:1027.617906pt;}
.y2{bottom:1043.942865pt;}
.h9{height:13.739994pt;}
.h8{height:20.240493pt;}
.hb{height:21.518046pt;}
.hc{height:30.391426pt;}
.h10{height:34.731424pt;}
.hf{height:39.071998pt;}
.h6{height:42.767998pt;}
.he{height:43.402478pt;}
.h7{height:47.674317pt;}
.ha{height:47.679998pt;}
.hd{height:47.732957pt;}
.h4{height:52.248237pt;}
.h5{height:52.991998pt;}
.h3{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.698614pt;}
.x4{left:39.928241pt;}
.x6{left:41.157869pt;}
.xc{left:42.621380pt;}
.x1{left:77.604862pt;}
.xa{left:106.239996pt;}
.xb{left:113.098210pt;}
.x2{left:230.011106pt;}
.x5{left:416.941154pt;}
.x9{left:441.095607pt;}
.x8{left:549.711977pt;}
.x7{left:551.404393pt;}
}




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