
    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_942abce8cee0813583bea8c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_c56861cf57c44e06a077e5d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_10d8bba875df138ef654be38.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_8217da261bb8b3c42e78af9e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_70271d36e2fd20eb55083355.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_f8592ff6fe28bcfe7cf552fa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c6a672bdd6008b5358fa2c19.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_fd7ad8ec92c6f82b5da8dfd8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_52bcd314d2a35bdd65d172cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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;}
.ls8{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.252720px;}
.ls3{letter-spacing:0.360000px;}
.ls2{letter-spacing:21.221280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-84.240000px;}
.ws2{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.312720px;}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-2.310960px;}
._1{margin-left:-1.204800px;}
._0{width:1.915200px;}
._7{width:3.230880px;}
._e{width:4.633200px;}
._6{width:6.233760px;}
._8{width:7.413120px;}
._b{width:9.207600px;}
._1c{width:10.218480px;}
._22{width:11.625120px;}
._16{width:12.990480px;}
._f{width:14.573520px;}
._5{width:16.258320px;}
._10{width:17.463120px;}
._21{width:18.628080px;}
._4{width:19.923600px;}
._c{width:22.576320px;}
._d{width:23.865360px;}
._11{width:25.052640px;}
._12{width:26.333760px;}
._2{width:28.902960px;}
._3{width:30.267600px;}
._a{width:31.345200px;}
._28{width:32.516640px;}
._1b{width:33.527520px;}
._1a{width:34.791120px;}
._14{width:36.391680px;}
._15{width:38.065440px;}
._2b{width:39.289200px;}
._13{width:41.640000px;}
._18{width:42.903600px;}
._17{width:43.911360px;}
._1d{width:44.912400px;}
._1f{width:47.595600px;}
._1e{width:48.968880px;}
._9{width:51.049440px;}
._2c{width:53.492400px;}
._26{width:55.266240px;}
._27{width:56.604480px;}
._29{width:58.100160px;}
._2a{width:59.414640px;}
._24{width:65.866560px;}
._25{width:66.970800px;}
._19{width:73.482720px;}
._23{width:169.144800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,103,152);}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:16.731000px;}
.y32{bottom:16.740000px;}
.y4f{bottom:17.085000px;}
.y3e{bottom:17.100000px;}
.y38{bottom:17.265000px;}
.y51{bottom:17.271000px;}
.y6{bottom:24.480000px;}
.y2a{bottom:34.905000px;}
.y46{bottom:35.100000px;}
.y4e{bottom:35.265000px;}
.y56{bottom:35.280000px;}
.y31{bottom:52.920000px;}
.y2b{bottom:53.085000px;}
.y44{bottom:53.280000px;}
.y3c{bottom:53.310000px;}
.y36{bottom:53.445000px;}
.y53{bottom:53.460000px;}
.y5{bottom:60.660000px;}
.y4b{bottom:71.445000px;}
.y42{bottom:71.460000px;}
.y34{bottom:71.490000px;}
.y4{bottom:84.600000px;}
.y30{bottom:89.100000px;}
.y40{bottom:89.460000px;}
.y49{bottom:89.625000px;}
.y55{bottom:89.640000px;}
.y35{bottom:89.670000px;}
.y4a{bottom:107.625000px;}
.y41{bottom:107.640000px;}
.y3a{bottom:107.670000px;}
.y2f{bottom:125.280000px;}
.y43{bottom:125.640000px;}
.y4c{bottom:125.805000px;}
.y57{bottom:125.820000px;}
.y37{bottom:125.850000px;}
.y29{bottom:127.845000px;}
.y50{bottom:129.825000px;}
.y45{bottom:143.820000px;}
.y4d{bottom:144.030000px;}
.y22{bottom:151.590000px;}
.y2e{bottom:161.640000px;}
.y47{bottom:162.000000px;}
.y3b{bottom:162.030000px;}
.y78{bottom:186.510000px;}
.y21{bottom:187.770000px;}
.y3d{bottom:198.210000px;}
.y77{bottom:222.690000px;}
.y20{bottom:223.950000px;}
.y28{bottom:239.070000px;}
.y48{bottom:239.265000px;}
.y76{bottom:258.870000px;}
.y1f{bottom:260.130000px;}
.y27{bottom:275.070000px;}
.y75{bottom:294.870000px;}
.y1e{bottom:296.310000px;}
.y74{bottom:331.410000px;}
.y1d{bottom:332.670000px;}
.y73{bottom:367.635000px;}
.y1c{bottom:368.895000px;}
.y72{bottom:403.815000px;}
.y1b{bottom:405.075000px;}
.y69{bottom:410.475000px;}
.y3f{bottom:421.275000px;}
.y71{bottom:440.175000px;}
.y1a{bottom:441.255000px;}
.y68{bottom:446.655000px;}
.y70{bottom:476.355000px;}
.y19{bottom:477.615000px;}
.y67{bottom:482.835000px;}
.y5e{bottom:510.735000px;}
.y6f{bottom:512.535000px;}
.y18{bottom:513.795000px;}
.y66{bottom:519.195000px;}
.y5d{bottom:546.915000px;}
.y6e{bottom:548.715000px;}
.y17{bottom:549.975000px;}
.y65{bottom:555.375000px;}
.y5c{bottom:583.275000px;}
.y6d{bottom:584.895000px;}
.y16{bottom:586.155000px;}
.y64{bottom:591.555000px;}
.y39{bottom:603.075000px;}
.y5b{bottom:619.455000px;}
.y6c{bottom:621.255000px;}
.y15{bottom:622.515000px;}
.y63{bottom:627.765000px;}
.y5a{bottom:655.665000px;}
.y6b{bottom:657.465000px;}
.y14{bottom:658.725000px;}
.y62{bottom:664.125000px;}
.y59{bottom:691.845000px;}
.y13{bottom:694.905000px;}
.y61{bottom:700.305000px;}
.y6a{bottom:709.665000px;}
.y58{bottom:711.825000px;}
.y12{bottom:731.085000px;}
.y60{bottom:736.485000px;}
.y11{bottom:767.445000px;}
.y5f{bottom:788.685000px;}
.y10{bottom:803.625000px;}
.y33{bottom:821.100000px;}
.yf{bottom:839.805000px;}
.ye{bottom:875.985000px;}
.y54{bottom:893.670000px;}
.yd{bottom:912.210000px;}
.yc{bottom:948.570000px;}
.y2d{bottom:966.930000px;}
.yb{bottom:984.750000px;}
.ya{bottom:1020.570000px;}
.y26{bottom:1020.930000px;}
.y9{bottom:1056.750000px;}
.y25{bottom:1057.110000px;}
.y52{bottom:1075.470000px;}
.y8{bottom:1093.110000px;}
.y24{bottom:1093.470000px;}
.y7{bottom:1129.290000px;}
.y23{bottom:1129.650000px;}
.y3{bottom:1168.740000px;}
.y2{bottom:1193.760000px;}
.y1{bottom:1225.620000px;}
.h6{height:58.819922px;}
.h2{height:70.884844px;}
.h8{height:72.531000px;}
.hf{height:72.570000px;}
.h3{height:82.676953px;}
.h5{height:84.898125px;}
.h4{height:86.255508px;}
.h7{height:86.585445px;}
.he{height:108.711000px;}
.ha{height:144.921000px;}
.hc{height:181.065000px;}
.hd{height:181.095000px;}
.h9{height:181.110000px;}
.hb{height:217.290000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:33.651000px;}
.w5{width:84.420000px;}
.w4{width:89.280000px;}
.w8{width:105.825000px;}
.w7{width:119.541000px;}
.w3{width:140.205000px;}
.w6{width:144.396000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.731000px;}
.x16{left:9.180000px;}
.x21{left:10.800000px;}
.x10{left:11.880000px;}
.x1f{left:14.040000px;}
.x1b{left:15.660000px;}
.x14{left:18.000000px;}
.x13{left:20.160000px;}
.x26{left:21.225000px;}
.x1e{left:22.860000px;}
.x25{left:25.185000px;}
.xe{left:26.985000px;}
.x11{left:28.440000px;}
.x22{left:30.945000px;}
.x20{left:32.205000px;}
.x1d{left:34.020000px;}
.xd{left:35.805000px;}
.x1a{left:36.885000px;}
.x23{left:39.420000px;}
.x1c{left:40.500000px;}
.x24{left:47.010000px;}
.x19{left:48.240000px;}
.x27{left:50.430000px;}
.x28{left:55.830000px;}
.xb{left:119.925000px;}
.x3{left:127.656000px;}
.x4{left:140.436000px;}
.xa{left:154.650000px;}
.x9{left:180.750000px;}
.x1{left:183.270000px;}
.x8{left:259.590000px;}
.x5{left:270.390000px;}
.xf{left:295.275000px;}
.x2{left:315.615000px;}
.x7{left:332.715000px;}
.x12{left:385.275000px;}
.x2b{left:429.555000px;}
.x15{left:470.415000px;}
.x6{left:478.515000px;}
.x17{left:615.540000px;}
.x18{left:735.810000px;}
.x2a{left:755.250000px;}
.x29{left:777.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.224640pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2{letter-spacing:18.863360pt;}
.ws3{word-spacing:-74.880000pt;}
.ws2{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.944640pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-2.054187pt;}
._1{margin-left:-1.070933pt;}
._0{width:1.702400pt;}
._7{width:2.871893pt;}
._e{width:4.118400pt;}
._6{width:5.541120pt;}
._8{width:6.589440pt;}
._b{width:8.184533pt;}
._1c{width:9.083093pt;}
._22{width:10.333440pt;}
._16{width:11.547093pt;}
._f{width:12.954240pt;}
._5{width:14.451840pt;}
._10{width:15.522773pt;}
._21{width:16.558293pt;}
._4{width:17.709867pt;}
._c{width:20.067840pt;}
._d{width:21.213653pt;}
._11{width:22.269013pt;}
._12{width:23.407787pt;}
._2{width:25.691520pt;}
._3{width:26.904533pt;}
._a{width:27.862400pt;}
._28{width:28.903680pt;}
._1b{width:29.802240pt;}
._1a{width:30.925440pt;}
._14{width:32.348160pt;}
._15{width:33.835947pt;}
._2b{width:34.923733pt;}
._13{width:37.013333pt;}
._18{width:38.136533pt;}
._17{width:39.032320pt;}
._1d{width:39.922133pt;}
._1f{width:42.307200pt;}
._1e{width:43.527893pt;}
._9{width:45.377280pt;}
._2c{width:47.548800pt;}
._26{width:49.125547pt;}
._27{width:50.315093pt;}
._29{width:51.644587pt;}
._2a{width:52.813013pt;}
._24{width:58.548053pt;}
._25{width:59.529600pt;}
._19{width:65.317973pt;}
._23{width:150.350933pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:14.872000pt;}
.y32{bottom:14.880000pt;}
.y4f{bottom:15.186667pt;}
.y3e{bottom:15.200000pt;}
.y38{bottom:15.346667pt;}
.y51{bottom:15.352000pt;}
.y6{bottom:21.760000pt;}
.y2a{bottom:31.026667pt;}
.y46{bottom:31.200000pt;}
.y4e{bottom:31.346667pt;}
.y56{bottom:31.360000pt;}
.y31{bottom:47.040000pt;}
.y2b{bottom:47.186667pt;}
.y44{bottom:47.360000pt;}
.y3c{bottom:47.386667pt;}
.y36{bottom:47.506667pt;}
.y53{bottom:47.520000pt;}
.y5{bottom:53.920000pt;}
.y4b{bottom:63.506667pt;}
.y42{bottom:63.520000pt;}
.y34{bottom:63.546667pt;}
.y4{bottom:75.200000pt;}
.y30{bottom:79.200000pt;}
.y40{bottom:79.520000pt;}
.y49{bottom:79.666667pt;}
.y55{bottom:79.680000pt;}
.y35{bottom:79.706667pt;}
.y4a{bottom:95.666667pt;}
.y41{bottom:95.680000pt;}
.y3a{bottom:95.706667pt;}
.y2f{bottom:111.360000pt;}
.y43{bottom:111.680000pt;}
.y4c{bottom:111.826667pt;}
.y57{bottom:111.840000pt;}
.y37{bottom:111.866667pt;}
.y29{bottom:113.640000pt;}
.y50{bottom:115.400000pt;}
.y45{bottom:127.840000pt;}
.y4d{bottom:128.026667pt;}
.y22{bottom:134.746667pt;}
.y2e{bottom:143.680000pt;}
.y47{bottom:144.000000pt;}
.y3b{bottom:144.026667pt;}
.y78{bottom:165.786667pt;}
.y21{bottom:166.906667pt;}
.y3d{bottom:176.186667pt;}
.y77{bottom:197.946667pt;}
.y20{bottom:199.066667pt;}
.y28{bottom:212.506667pt;}
.y48{bottom:212.680000pt;}
.y76{bottom:230.106667pt;}
.y1f{bottom:231.226667pt;}
.y27{bottom:244.506667pt;}
.y75{bottom:262.106667pt;}
.y1e{bottom:263.386667pt;}
.y74{bottom:294.586667pt;}
.y1d{bottom:295.706667pt;}
.y73{bottom:326.786667pt;}
.y1c{bottom:327.906667pt;}
.y72{bottom:358.946667pt;}
.y1b{bottom:360.066667pt;}
.y69{bottom:364.866667pt;}
.y3f{bottom:374.466667pt;}
.y71{bottom:391.266667pt;}
.y1a{bottom:392.226667pt;}
.y68{bottom:397.026667pt;}
.y70{bottom:423.426667pt;}
.y19{bottom:424.546667pt;}
.y67{bottom:429.186667pt;}
.y5e{bottom:453.986667pt;}
.y6f{bottom:455.586667pt;}
.y18{bottom:456.706667pt;}
.y66{bottom:461.506667pt;}
.y5d{bottom:486.146667pt;}
.y6e{bottom:487.746667pt;}
.y17{bottom:488.866667pt;}
.y65{bottom:493.666667pt;}
.y5c{bottom:518.466667pt;}
.y6d{bottom:519.906667pt;}
.y16{bottom:521.026667pt;}
.y64{bottom:525.826667pt;}
.y39{bottom:536.066667pt;}
.y5b{bottom:550.626667pt;}
.y6c{bottom:552.226667pt;}
.y15{bottom:553.346667pt;}
.y63{bottom:558.013333pt;}
.y5a{bottom:582.813333pt;}
.y6b{bottom:584.413333pt;}
.y14{bottom:585.533333pt;}
.y62{bottom:590.333333pt;}
.y59{bottom:614.973333pt;}
.y13{bottom:617.693333pt;}
.y61{bottom:622.493333pt;}
.y6a{bottom:630.813333pt;}
.y58{bottom:632.733333pt;}
.y12{bottom:649.853333pt;}
.y60{bottom:654.653333pt;}
.y11{bottom:682.173333pt;}
.y5f{bottom:701.053333pt;}
.y10{bottom:714.333333pt;}
.y33{bottom:729.866667pt;}
.yf{bottom:746.493333pt;}
.ye{bottom:778.653333pt;}
.y54{bottom:794.373333pt;}
.yd{bottom:810.853333pt;}
.yc{bottom:843.173333pt;}
.y2d{bottom:859.493333pt;}
.yb{bottom:875.333333pt;}
.ya{bottom:907.173333pt;}
.y26{bottom:907.493333pt;}
.y9{bottom:939.333333pt;}
.y25{bottom:939.653333pt;}
.y52{bottom:955.973333pt;}
.y8{bottom:971.653333pt;}
.y24{bottom:971.973333pt;}
.y7{bottom:1003.813333pt;}
.y23{bottom:1004.133333pt;}
.y3{bottom:1038.880000pt;}
.y2{bottom:1061.120000pt;}
.y1{bottom:1089.440000pt;}
.h6{height:52.284375pt;}
.h2{height:63.008750pt;}
.h8{height:64.472000pt;}
.hf{height:64.506667pt;}
.h3{height:73.490625pt;}
.h5{height:75.465000pt;}
.h4{height:76.671562pt;}
.h7{height:76.964840pt;}
.he{height:96.632000pt;}
.ha{height:128.818667pt;}
.hc{height:160.946667pt;}
.hd{height:160.973333pt;}
.h9{height:160.986667pt;}
.hb{height:193.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:29.912000pt;}
.w5{width:75.040000pt;}
.w4{width:79.360000pt;}
.w8{width:94.066667pt;}
.w7{width:106.258667pt;}
.w3{width:124.626667pt;}
.w6{width:128.352000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.872000pt;}
.x16{left:8.160000pt;}
.x21{left:9.600000pt;}
.x10{left:10.560000pt;}
.x1f{left:12.480000pt;}
.x1b{left:13.920000pt;}
.x14{left:16.000000pt;}
.x13{left:17.920000pt;}
.x26{left:18.866667pt;}
.x1e{left:20.320000pt;}
.x25{left:22.386667pt;}
.xe{left:23.986667pt;}
.x11{left:25.280000pt;}
.x22{left:27.506667pt;}
.x20{left:28.626667pt;}
.x1d{left:30.240000pt;}
.xd{left:31.826667pt;}
.x1a{left:32.786667pt;}
.x23{left:35.040000pt;}
.x1c{left:36.000000pt;}
.x24{left:41.786667pt;}
.x19{left:42.880000pt;}
.x27{left:44.826667pt;}
.x28{left:49.626667pt;}
.xb{left:106.600000pt;}
.x3{left:113.472000pt;}
.x4{left:124.832000pt;}
.xa{left:137.466667pt;}
.x9{left:160.666667pt;}
.x1{left:162.906667pt;}
.x8{left:230.746667pt;}
.x5{left:240.346667pt;}
.xf{left:262.466667pt;}
.x2{left:280.546667pt;}
.x7{left:295.746667pt;}
.x12{left:342.466667pt;}
.x2b{left:381.826667pt;}
.x15{left:418.146667pt;}
.x6{left:425.346667pt;}
.x17{left:547.146667pt;}
.x18{left:654.053333pt;}
.x2a{left:671.333333pt;}
.x29{left:691.493333pt;}
}




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