
    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_f4738607dbcae79650348058.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_9e62a8d90a7c56f463e411d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_fbac8988c60502763f9b32c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_6cb3fc2c3e29bd4e2822aff9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_943fc0f9632be3d98fdd2586.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_cd0b841e349ccb6ff90a8d06.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_4f004cc186418bfbdd170a3c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.070795px;}
.ls1{letter-spacing:0.370287px;}
.ls6{letter-spacing:32.615251px;}
.ls4{letter-spacing:54.935246px;}
.ls2{letter-spacing:58.325857px;}
.ls5{letter-spacing:64.085852px;}
.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;}
}
.ws3{word-spacing:-59.762250px;}
.ws1{word-spacing:-18.000676px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._19{margin-left:-4.927427px;}
._14{margin-left:-3.611058px;}
._c{margin-left:-2.352625px;}
._1{margin-left:-1.007997px;}
._0{width:1.151997px;}
._b{width:2.244363px;}
._11{width:3.278893px;}
._13{width:4.741131px;}
._8{width:6.646750px;}
._9{width:7.847170px;}
._5{width:9.612080px;}
._4{width:10.921348px;}
._6{width:12.246459px;}
._2{width:14.385050px;}
._3{width:15.951715px;}
._26{width:16.953546px;}
._12{width:19.013495px;}
._f{width:20.097474px;}
._7{width:21.744254px;}
._18{width:23.293719px;}
._17{width:24.533247px;}
._1d{width:25.718185px;}
._1b{width:26.786031px;}
._1e{width:27.995362px;}
._22{width:29.429391px;}
._d{width:31.095887px;}
._e{width:33.320095px;}
._1a{width:35.279403px;}
._a{width:36.696675px;}
._1c{width:38.087180px;}
._1f{width:42.119638px;}
._10{width:43.400474px;}
._23{width:45.867982px;}
._27{width:47.164021px;}
._24{width:48.446977px;}
._25{width:51.974984px;}
._20{width:57.543390px;}
._15{width:173.707368px;}
._16{width:194.407302px;}
._21{width:195.526447px;}
._28{width:846.033466px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y91{bottom:102.060104px;}
.y95{bottom:106.020127px;}
.y3d{bottom:109.440033px;}
.y90{bottom:122.760064px;}
.y70{bottom:126.720085px;}
.y3c{bottom:130.140060px;}
.y8f{bottom:143.460091px;}
.y6f{bottom:147.420043px;}
.y3b{bottom:150.840088px;}
.y8e{bottom:164.160049px;}
.y6e{bottom:168.120072px;}
.y3a{bottom:171.540047px;}
.y8d{bottom:184.860077px;}
.y6d{bottom:188.820099px;}
.y39{bottom:192.240074px;}
.y8c{bottom:205.560036px;}
.y6c{bottom:209.520058px;}
.y38{bottom:212.940033px;}
.y8b{bottom:226.260064px;}
.y6b{bottom:230.220085px;}
.y37{bottom:233.640060px;}
.y8a{bottom:246.960091px;}
.y6a{bottom:250.920043px;}
.y36{bottom:254.340088px;}
.y89{bottom:267.660049px;}
.y69{bottom:271.620072px;}
.y35{bottom:274.680039px;}
.y88{bottom:288.360077px;}
.y68{bottom:292.320099px;}
.y34{bottom:295.740074px;}
.y87{bottom:309.060036px;}
.y67{bottom:313.020058px;}
.y33{bottom:316.440033px;}
.y86{bottom:329.760064px;}
.y66{bottom:333.720085px;}
.y32{bottom:337.140060px;}
.y85{bottom:350.460091px;}
.y65{bottom:354.420043px;}
.y31{bottom:357.840088px;}
.y84{bottom:371.160049px;}
.y64{bottom:375.120072px;}
.y30{bottom:378.540047px;}
.y83{bottom:391.860077px;}
.y63{bottom:395.820099px;}
.y2f{bottom:399.240074px;}
.y82{bottom:412.560036px;}
.y62{bottom:416.520058px;}
.y2e{bottom:419.940033px;}
.y81{bottom:433.260064px;}
.y61{bottom:437.220085px;}
.y2d{bottom:440.640060px;}
.y80{bottom:453.960091px;}
.y60{bottom:457.920043px;}
.y2c{bottom:461.340088px;}
.y7f{bottom:474.660049px;}
.y97{bottom:478.260064px;}
.y5f{bottom:478.620072px;}
.y2b{bottom:482.040047px;}
.y7e{bottom:495.360077px;}
.y94{bottom:498.960091px;}
.y5e{bottom:499.320099px;}
.y2a{bottom:502.740074px;}
.y7d{bottom:516.060036px;}
.y5d{bottom:520.020058px;}
.y29{bottom:523.440033px;}
.y7c{bottom:536.760064px;}
.y5c{bottom:540.720085px;}
.y28{bottom:544.140060px;}
.y7b{bottom:557.460091px;}
.y5b{bottom:561.420043px;}
.y27{bottom:564.840088px;}
.y7a{bottom:578.160049px;}
.y5a{bottom:582.120072px;}
.y26{bottom:585.540047px;}
.y79{bottom:598.860077px;}
.y59{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.y78{bottom:619.560036px;}
.y58{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.y77{bottom:640.260064px;}
.y57{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.y76{bottom:660.960091px;}
.y56{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.y75{bottom:681.660049px;}
.y55{bottom:685.620072px;}
.y21{bottom:689.040081px;}
.y74{bottom:702.360077px;}
.y54{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.y73{bottom:722.880066px;}
.y53{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.y72{bottom:745.020058px;}
.y52{bottom:747.720051px;}
.y1e{bottom:751.140060px;}
.y71{bottom:766.980079px;}
.y51{bottom:768.420078px;}
.y1d{bottom:771.840054px;}
.y50{bottom:789.120072px;}
.y1c{bottom:792.540081px;}
.y96{bottom:809.460056px;}
.y4f{bottom:809.820065px;}
.y1b{bottom:812.880066px;}
.y4e{bottom:830.520058px;}
.y1a{bottom:833.220051px;}
.y19{bottom:850.500068px;}
.y4d{bottom:851.220051px;}
.y18{bottom:867.780052px;}
.y4c{bottom:871.920078px;}
.y17{bottom:885.420078px;}
.y4b{bottom:892.620072px;}
.y16{bottom:906.480079px;}
.y4a{bottom:913.320065px;}
.y15{bottom:927.180073px;}
.y49{bottom:934.020058px;}
.y14{bottom:947.520058px;}
.y48{bottom:954.720051px;}
.y13{bottom:968.220051px;}
.y47{bottom:975.420061px;}
.y12{bottom:988.920061px;}
.y46{bottom:996.120072px;}
.y11{bottom:1009.620072px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.y92{bottom:1037.160067px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1051.020058px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1071.720068px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.940067px;}
.y93{bottom:1119.960065px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.h6{height:42.329353px;}
.h4{height:47.982689px;}
.h9{height:51.998047px;}
.hb{height:52.437873px;}
.ha{height:59.345979px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h2{height:63.178154px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.xe{left:89.280001px;}
.x8{left:93.058353px;}
.xc{left:104.219999px;}
.x16{left:111.959997px;}
.x14{left:127.439999px;}
.xb{left:132.299998px;}
.x15{left:138.060001px;}
.x1a{left:141.659998px;}
.x17{left:161.639992px;}
.x9{left:181.256368px;}
.x18{left:235.620002px;}
.x19{left:248.039996px;}
.xf{left:267.479994px;}
.x1b{left:311.759994px;}
.xd{left:380.339985px;}
.x2{left:432.899987px;}
.xa{left:446.399987px;}
.x12{left:522.360008px;}
.x13{left:564.480011px;}
.x10{left:605.700027px;}
.x11{left:673.200027px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x4{left:812.879998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.062929pt;}
.ls1{letter-spacing:0.329144pt;}
.ls6{letter-spacing:28.991334pt;}
.ls4{letter-spacing:48.831330pt;}
.ls2{letter-spacing:51.845206pt;}
.ls5{letter-spacing:56.965202pt;}
.ws3{word-spacing:-53.122000pt;}
.ws1{word-spacing:-16.000601pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._19{margin-left:-4.379935pt;}
._14{margin-left:-3.209830pt;}
._c{margin-left:-2.091222pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.023997pt;}
._b{width:1.994989pt;}
._11{width:2.914572pt;}
._13{width:4.214338pt;}
._8{width:5.908222pt;}
._9{width:6.975262pt;}
._5{width:8.544071pt;}
._4{width:9.707865pt;}
._6{width:10.885741pt;}
._2{width:12.786711pt;}
._3{width:14.179302pt;}
._26{width:15.069818pt;}
._12{width:16.900885pt;}
._f{width:17.864421pt;}
._7{width:19.328226pt;}
._18{width:20.705528pt;}
._17{width:21.807331pt;}
._1d{width:22.860609pt;}
._1b{width:23.809805pt;}
._1e{width:24.884767pt;}
._22{width:26.159459pt;}
._d{width:27.640788pt;}
._e{width:29.617862pt;}
._1a{width:31.359469pt;}
._a{width:32.619266pt;}
._1c{width:33.855272pt;}
._1f{width:37.439679pt;}
._10{width:38.578199pt;}
._23{width:40.771540pt;}
._27{width:41.923575pt;}
._24{width:43.063979pt;}
._25{width:46.199985pt;}
._20{width:51.149680pt;}
._15{width:154.406550pt;}
._16{width:172.806491pt;}
._21{width:173.801287pt;}
._28{width:752.029747pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y91{bottom:90.720093pt;}
.y95{bottom:94.240113pt;}
.y3d{bottom:97.280030pt;}
.y90{bottom:109.120057pt;}
.y70{bottom:112.640076pt;}
.y3c{bottom:115.680054pt;}
.y8f{bottom:127.520081pt;}
.y6f{bottom:131.040039pt;}
.y3b{bottom:134.080079pt;}
.y8e{bottom:145.920044pt;}
.y6e{bottom:149.440064pt;}
.y3a{bottom:152.480042pt;}
.y8d{bottom:164.320069pt;}
.y6d{bottom:167.840088pt;}
.y39{bottom:170.880066pt;}
.y8c{bottom:182.720032pt;}
.y6c{bottom:186.240052pt;}
.y38{bottom:189.280030pt;}
.y8b{bottom:201.120057pt;}
.y6b{bottom:204.640076pt;}
.y37{bottom:207.680054pt;}
.y8a{bottom:219.520081pt;}
.y6a{bottom:223.040039pt;}
.y36{bottom:226.080079pt;}
.y89{bottom:237.920044pt;}
.y69{bottom:241.440064pt;}
.y35{bottom:244.160035pt;}
.y88{bottom:256.320069pt;}
.y68{bottom:259.840088pt;}
.y34{bottom:262.880066pt;}
.y87{bottom:274.720032pt;}
.y67{bottom:278.240052pt;}
.y33{bottom:281.280030pt;}
.y86{bottom:293.120057pt;}
.y66{bottom:296.640076pt;}
.y32{bottom:299.680054pt;}
.y85{bottom:311.520081pt;}
.y65{bottom:315.040039pt;}
.y31{bottom:318.080079pt;}
.y84{bottom:329.920044pt;}
.y64{bottom:333.440064pt;}
.y30{bottom:336.480042pt;}
.y83{bottom:348.320069pt;}
.y63{bottom:351.840088pt;}
.y2f{bottom:354.880066pt;}
.y82{bottom:366.720032pt;}
.y62{bottom:370.240052pt;}
.y2e{bottom:373.280030pt;}
.y81{bottom:385.120057pt;}
.y61{bottom:388.640076pt;}
.y2d{bottom:391.680054pt;}
.y80{bottom:403.520081pt;}
.y60{bottom:407.040039pt;}
.y2c{bottom:410.080079pt;}
.y7f{bottom:421.920044pt;}
.y97{bottom:425.120057pt;}
.y5f{bottom:425.440064pt;}
.y2b{bottom:428.480042pt;}
.y7e{bottom:440.320069pt;}
.y94{bottom:443.520081pt;}
.y5e{bottom:443.840088pt;}
.y2a{bottom:446.880066pt;}
.y7d{bottom:458.720032pt;}
.y5d{bottom:462.240052pt;}
.y29{bottom:465.280030pt;}
.y7c{bottom:477.120057pt;}
.y5c{bottom:480.640076pt;}
.y28{bottom:483.680054pt;}
.y7b{bottom:495.520081pt;}
.y5b{bottom:499.040039pt;}
.y27{bottom:502.080079pt;}
.y7a{bottom:513.920044pt;}
.y5a{bottom:517.440064pt;}
.y26{bottom:520.480042pt;}
.y79{bottom:532.320069pt;}
.y59{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.y78{bottom:550.720032pt;}
.y58{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.y77{bottom:569.120057pt;}
.y57{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.y76{bottom:587.520081pt;}
.y56{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.y75{bottom:605.920044pt;}
.y55{bottom:609.440064pt;}
.y21{bottom:612.480072pt;}
.y74{bottom:624.320069pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.y73{bottom:642.560059pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.y72{bottom:662.240052pt;}
.y52{bottom:664.640046pt;}
.y1e{bottom:667.680054pt;}
.y71{bottom:681.760071pt;}
.y51{bottom:683.040070pt;}
.y1d{bottom:686.080048pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:704.480072pt;}
.y96{bottom:719.520050pt;}
.y4f{bottom:719.840058pt;}
.y1b{bottom:722.560059pt;}
.y4e{bottom:738.240052pt;}
.y1a{bottom:740.640046pt;}
.y19{bottom:756.000061pt;}
.y4d{bottom:756.640046pt;}
.y18{bottom:771.360047pt;}
.y4c{bottom:775.040070pt;}
.y17{bottom:787.040070pt;}
.y4b{bottom:793.440064pt;}
.y16{bottom:805.760071pt;}
.y4a{bottom:811.840058pt;}
.y15{bottom:824.160065pt;}
.y49{bottom:830.240052pt;}
.y14{bottom:842.240052pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:860.640046pt;}
.y47{bottom:867.040055pt;}
.y12{bottom:879.040055pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:897.440064pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.y92{bottom:921.920060pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:934.240052pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:952.640061pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:989.280060pt;}
.y93{bottom:995.520058pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.h6{height:37.626091pt;}
.h4{height:42.651279pt;}
.h9{height:46.220486pt;}
.hb{height:46.611442pt;}
.ha{height:52.751981pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h2{height:56.158359pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.xe{left:79.360001pt;}
.x8{left:82.718536pt;}
.xc{left:92.639999pt;}
.x16{left:99.519997pt;}
.x14{left:113.279999pt;}
.xb{left:117.599998pt;}
.x15{left:122.720001pt;}
.x1a{left:125.919998pt;}
.x17{left:143.679993pt;}
.x9{left:161.116772pt;}
.x18{left:209.440002pt;}
.x19{left:220.479996pt;}
.xf{left:237.759995pt;}
.x1b{left:277.119995pt;}
.xd{left:338.079987pt;}
.x2{left:384.799988pt;}
.xa{left:396.799988pt;}
.x12{left:464.320007pt;}
.x13{left:501.760010pt;}
.x10{left:538.400024pt;}
.x11{left:598.400024pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x4{left:722.559998pt;}
}




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