
    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_1bee676e1397acc3ef2abf33.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946777;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_deec0a4850278097676c6d52.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_6b792da3a58d17322cafc922.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.131836;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_cc18b931ee3dde562ab2f067.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.129395;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_2075fc7735ca627848845001.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088867;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_17d73fec1647667da8b9bf7d.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f51dcaa443208182871a3760.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_a903e917472bc6f7fb00718f.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v3{vertical-align:-23.759995px;}
.v4{vertical-align:-20.879793px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440031px;}
.v2{vertical-align:23.759995px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007763px;}
.ls8{letter-spacing:0.179437px;}
.ls6{letter-spacing:4.319392px;}
.lsd{letter-spacing:5.039271px;}
.ls5{letter-spacing:5.759424px;}
.lsf{letter-spacing:6.850732px;}
.ls3{letter-spacing:7.199181px;}
.ls2{letter-spacing:7.199320px;}
.lse{letter-spacing:11.519419px;}
.ls9{letter-spacing:12.239298px;}
.ls7{letter-spacing:23.039411px;}
.lsa{letter-spacing:37.090736px;}
.lsb{letter-spacing:39.970732px;}
.lsc{letter-spacing:39.970799px;}
.ls1{letter-spacing:41.410768px;}
.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;}
}
.ws6{word-spacing:-66.242700px;}
.ws0{word-spacing:-19.814330px;}
.ws1{word-spacing:-16.560675px;}
.ws5{word-spacing:-14.940563px;}
.ws3{word-spacing:-10.440405px;}
.ws4{word-spacing:-9.720371px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.080045px;}
._0{width:1.086373px;}
._1d{width:2.086752px;}
._2{width:3.149217px;}
._5{width:4.604644px;}
._16{width:5.818231px;}
._14{width:7.164303px;}
._17{width:8.255734px;}
._f{width:9.385245px;}
._12{width:10.623739px;}
._15{width:11.724958px;}
._1a{width:12.928584px;}
._11{width:13.948142px;}
._10{width:15.092209px;}
._6{width:17.686801px;}
._7{width:18.719235px;}
._4{width:20.590871px;}
._b{width:21.660845px;}
._c{width:22.776362px;}
._d{width:24.311071px;}
._21{width:25.472129px;}
._a{width:27.192370px;}
._19{width:28.415488px;}
._18{width:29.809215px;}
._23{width:30.967925px;}
._1f{width:32.037940px;}
._e{width:33.144757px;}
._9{width:34.822959px;}
._8{width:36.091662px;}
._24{width:37.937401px;}
._27{width:38.993747px;}
._1c{width:40.559659px;}
._1b{width:41.822950px;}
._1e{width:42.881798px;}
._20{width:48.633786px;}
._29{width:50.560055px;}
._2a{width:52.970957px;}
._26{width:76.982882px;}
._25{width:78.090585px;}
._3{width:87.983927px;}
._22{width:104.196035px;}
._13{width:109.976503px;}
._28{width:339.997400px;}
._2b{width:1594.338856px;}
.fc1{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760225px;}
.fs6{font-size:38.881485px;}
.fs5{font-size:41.761620px;}
.fs0{font-size:54.002250px;}
.fs4{font-size:59.762250px;}
.fs1{font-size:66.242700px;}
.fs2{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.599997px;}
.y11{bottom:3.600013px;}
.y8{bottom:3.779984px;}
.y7{bottom:301.500068px;}
.y6{bottom:305.280052px;}
.y5{bottom:322.380066px;}
.y6f{bottom:342.360077px;}
.y61{bottom:347.580093px;}
.y82{bottom:349.200096px;}
.y60{bottom:359.640060px;}
.y75{bottom:364.860077px;}
.y81{bottom:368.100083px;}
.y68{bottom:376.740074px;}
.y7d{bottom:377.640060px;}
.y5f{bottom:381.960091px;}
.y80{bottom:387.000068px;}
.y74{bottom:392.040047px;}
.y5e{bottom:394.020058px;}
.y37{bottom:398.520058px;}
.y67{bottom:399.240074px;}
.y7f{bottom:405.720085px;}
.y7c{bottom:406.080093px;}
.y73{bottom:410.940033px;}
.y5d{bottom:411.300041px;}
.y66{bottom:412.020058px;}
.y36{bottom:417.600083px;}
.y7b{bottom:424.980079px;}
.y6e{bottom:428.580093px;}
.y72{bottom:429.840088px;}
.y5c{bottom:433.800041px;}
.y35{bottom:436.500068px;}
.y7a{bottom:444.060036px;}
.y5b{bottom:446.580093px;}
.y71{bottom:448.920043px;}
.y6d{bottom:451.080093px;}
.y34{bottom:455.400055px;}
.y79{bottom:462.600083px;}
.y7e{bottom:462.960091px;}
.y6c{bottom:463.860077px;}
.y33{bottom:474.120072px;}
.y78{bottom:481.500068px;}
.y5a{bottom:481.860077px;}
.y32{bottom:493.020058px;}
.y77{bottom:500.580093px;}
.y59{bottom:500.940033px;}
.y31{bottom:513.180039px;}
.y58{bottom:519.840088px;}
.y30{bottom:532.080093px;}
.y57{bottom:538.920043px;}
.y2f{bottom:550.800041px;}
.y56{bottom:557.820099px;}
.y2e{bottom:570.420043px;}
.y55{bottom:576.720085px;}
.y2d{bottom:585.900055px;}
.y2c{bottom:589.500068px;}
.y54{bottom:595.800041px;}
.y2b{bottom:609.480079px;}
.y53{bottom:614.700096px;}
.y2a{bottom:628.560036px;}
.y65{bottom:633.420043px;}
.y52{bottom:633.780052px;}
.y29{bottom:647.460091px;}
.y51{bottom:652.680039px;}
.y28{bottom:666.360077px;}
.y50{bottom:671.760064px;}
.y27{bottom:685.440033px;}
.y4f{bottom:690.660049px;}
.y26{bottom:704.340054px;}
.y4e{bottom:709.560070px;}
.y25{bottom:723.420078px;}
.y4d{bottom:728.640060px;}
.y24{bottom:742.320065px;}
.y70{bottom:747.180073px;}
.y4c{bottom:747.540081px;}
.y23{bottom:761.220051px;}
.y4b{bottom:766.620072px;}
.y22{bottom:780.300076px;}
.y4a{bottom:785.520058px;}
.y21{bottom:799.200061px;}
.y49{bottom:804.420078px;}
.y20{bottom:818.280052px;}
.y76{bottom:823.140060px;}
.y48{bottom:823.500068px;}
.y1f{bottom:837.180073px;}
.y47{bottom:842.400055px;}
.y1e{bottom:856.080059px;}
.y46{bottom:861.480079px;}
.y1d{bottom:875.160049px;}
.y45{bottom:880.380066px;}
.y1c{bottom:894.060070px;}
.y44{bottom:899.280052px;}
.y1b{bottom:913.140060px;}
.y43{bottom:918.360077px;}
.y1a{bottom:931.680073px;}
.y6b{bottom:936.900055px;}
.y42{bottom:937.260064px;}
.y19{bottom:951.480079px;}
.y6a{bottom:955.980079px;}
.y41{bottom:956.340054px;}
.y18{bottom:970.380066px;}
.y69{bottom:974.880066px;}
.y40{bottom:975.240074px;}
.y17{bottom:987.660067px;}
.y3f{bottom:993.780069px;}
.y64{bottom:994.140060px;}
.y16{bottom:1006.560070px;}
.y3e{bottom:1012.860060px;}
.y63{bottom:1013.220068px;}
.y15{bottom:1025.640060px;}
.y3d{bottom:1031.760064px;}
.y62{bottom:1032.120072px;}
.y14{bottom:1044.540064px;}
.y83{bottom:1050.840070px;}
.y3c{bottom:1051.200061px;}
.y13{bottom:1062.180073px;}
.y12{bottom:1065.780069px;}
.y3b{bottom:1070.100065px;}
.y10{bottom:1081.080059px;}
.yf{bottom:1084.680073px;}
.y3a{bottom:1089.000068px;}
.ye{bottom:1100.160067px;}
.yd{bottom:1103.760064px;}
.y39{bottom:1108.080059px;}
.yb{bottom:1119.060070px;}
.ya{bottom:1122.660067px;}
.y38{bottom:1126.980063px;}
.y9{bottom:1140.660067px;}
.y4{bottom:1145.880066px;}
.y3{bottom:1164.420069px;}
.y2{bottom:1180.260064px;}
.y1{bottom:1196.100065px;}
.h6{height:5.043009px;}
.h8{height:18.539994px;}
.ha{height:18.539996px;}
.h9{height:18.540012px;}
.hf{height:18.720017px;}
.h5{height:19.259996px;}
.h13{height:34.040284px;}
.h2{height:38.682276px;}
.h3{height:47.450215px;}
.h15{height:52.116884px;}
.hc{height:52.321150px;}
.he{height:57.768292px;}
.h7{height:57.994708px;}
.hb{height:58.835679px;}
.hd{height:59.208324px;}
.h10{height:59.434739px;}
.h12{height:60.321665px;}
.h14{height:60.321669px;}
.h16{height:60.321800px;}
.h11{height:60.321804px;}
.h4{height:63.037524px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:4.139991px;}
.w2{width:4.320030px;}
.w5{width:7.739989px;}
.w3{width:8.099945px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:166.860008px;}
.x5{left:175.319996px;}
.xd{left:179.639992px;}
.x1a{left:193.860008px;}
.x18{left:202.319996px;}
.x14{left:215.099997px;}
.x17{left:220.860008px;}
.x2{left:223.560001px;}
.x13{left:229.319996px;}
.x1{left:237.240006px;}
.x11{left:252.360008px;}
.x10{left:268.560001px;}
.x1b{left:272.159998px;}
.x19{left:283.319996px;}
.xe{left:288.899987px;}
.x12{left:295.560001px;}
.x15{left:375.300007px;}
.x3{left:383.759994px;}
.x1c{left:406.620002px;}
.x6{left:427.500000px;}
.xf{left:442.439999px;}
.xa{left:448.920010px;}
.x4{left:450.540012px;}
.x7{left:458.279983px;}
.xc{left:562.680005px;}
.x8{left:568.259994px;}
.x9{left:725.940033px;}
.xb{left:729.899987px;}
@media print{
.v3{vertical-align:-21.119996pt;}
.v4{vertical-align:-18.559816pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280028pt;}
.v2{vertical-align:21.119996pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006900pt;}
.ls8{letter-spacing:0.159500pt;}
.ls6{letter-spacing:3.839460pt;}
.lsd{letter-spacing:4.479352pt;}
.ls5{letter-spacing:5.119488pt;}
.lsf{letter-spacing:6.089539pt;}
.ls3{letter-spacing:6.399272pt;}
.ls2{letter-spacing:6.399396pt;}
.lse{letter-spacing:10.239484pt;}
.ls9{letter-spacing:10.879376pt;}
.ls7{letter-spacing:20.479476pt;}
.lsa{letter-spacing:32.969543pt;}
.lsb{letter-spacing:35.529539pt;}
.lsc{letter-spacing:35.529599pt;}
.ls1{letter-spacing:36.809571pt;}
.ws6{word-spacing:-58.882400pt;}
.ws0{word-spacing:-17.612738pt;}
.ws1{word-spacing:-14.720600pt;}
.ws5{word-spacing:-13.280500pt;}
.ws3{word-spacing:-9.280360pt;}
.ws4{word-spacing:-8.640330pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-0.960040pt;}
._0{width:0.965665pt;}
._1d{width:1.854891pt;}
._2{width:2.799304pt;}
._5{width:4.093017pt;}
._16{width:5.171761pt;}
._14{width:6.368270pt;}
._17{width:7.338430pt;}
._f{width:8.342440pt;}
._12{width:9.443323pt;}
._15{width:10.422185pt;}
._1a{width:11.492074pt;}
._11{width:12.398349pt;}
._10{width:13.415297pt;}
._6{width:15.721601pt;}
._7{width:16.639320pt;}
._4{width:18.302996pt;}
._b{width:19.254085pt;}
._c{width:20.245655pt;}
._d{width:21.609841pt;}
._21{width:22.641893pt;}
._a{width:24.170995pt;}
._19{width:25.258211pt;}
._18{width:26.497080pt;}
._23{width:27.527045pt;}
._1f{width:28.478169pt;}
._e{width:29.462007pt;}
._9{width:30.953742pt;}
._8{width:32.081478pt;}
._24{width:33.722134pt;}
._27{width:34.661109pt;}
._1c{width:36.053030pt;}
._1b{width:37.175955pt;}
._1e{width:38.117154pt;}
._20{width:43.230032pt;}
._29{width:44.942271pt;}
._2a{width:47.085295pt;}
._26{width:68.429229pt;}
._25{width:69.413853pt;}
._3{width:78.207935pt;}
._22{width:92.618698pt;}
._13{width:97.756892pt;}
._28{width:302.219911pt;}
._2b{width:1417.190094pt;}
.fs3{font-size:5.120200pt;}
.fs6{font-size:34.561320pt;}
.fs5{font-size:37.121440pt;}
.fs0{font-size:48.002000pt;}
.fs4{font-size:53.122000pt;}
.fs1{font-size:58.882400pt;}
.fs2{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.199997pt;}
.y11{bottom:3.200012pt;}
.y8{bottom:3.359986pt;}
.y7{bottom:268.000061pt;}
.y6{bottom:271.360047pt;}
.y5{bottom:286.560059pt;}
.y6f{bottom:304.320069pt;}
.y61{bottom:308.960083pt;}
.y82{bottom:310.400086pt;}
.y60{bottom:319.680054pt;}
.y75{bottom:324.320069pt;}
.y81{bottom:327.200074pt;}
.y68{bottom:334.880066pt;}
.y7d{bottom:335.680054pt;}
.y5f{bottom:339.520081pt;}
.y80{bottom:344.000061pt;}
.y74{bottom:348.480042pt;}
.y5e{bottom:350.240052pt;}
.y37{bottom:354.240052pt;}
.y67{bottom:354.880066pt;}
.y7f{bottom:360.640076pt;}
.y7c{bottom:360.960083pt;}
.y73{bottom:365.280030pt;}
.y5d{bottom:365.600037pt;}
.y66{bottom:366.240052pt;}
.y36{bottom:371.200074pt;}
.y7b{bottom:377.760071pt;}
.y6e{bottom:380.960083pt;}
.y72{bottom:382.080079pt;}
.y5c{bottom:385.600037pt;}
.y35{bottom:388.000061pt;}
.y7a{bottom:394.720032pt;}
.y5b{bottom:396.960083pt;}
.y71{bottom:399.040039pt;}
.y6d{bottom:400.960083pt;}
.y34{bottom:404.800049pt;}
.y79{bottom:411.200074pt;}
.y7e{bottom:411.520081pt;}
.y6c{bottom:412.320069pt;}
.y33{bottom:421.440064pt;}
.y78{bottom:428.000061pt;}
.y5a{bottom:428.320069pt;}
.y32{bottom:438.240052pt;}
.y77{bottom:444.960083pt;}
.y59{bottom:445.280030pt;}
.y31{bottom:456.160035pt;}
.y58{bottom:462.080079pt;}
.y30{bottom:472.960083pt;}
.y57{bottom:479.040039pt;}
.y2f{bottom:489.600037pt;}
.y56{bottom:495.840088pt;}
.y2e{bottom:507.040039pt;}
.y55{bottom:512.640076pt;}
.y2d{bottom:520.800049pt;}
.y2c{bottom:524.000061pt;}
.y54{bottom:529.600037pt;}
.y2b{bottom:541.760071pt;}
.y53{bottom:546.400086pt;}
.y2a{bottom:558.720032pt;}
.y65{bottom:563.040039pt;}
.y52{bottom:563.360047pt;}
.y29{bottom:575.520081pt;}
.y51{bottom:580.160035pt;}
.y28{bottom:592.320069pt;}
.y50{bottom:597.120057pt;}
.y27{bottom:609.280030pt;}
.y4f{bottom:613.920044pt;}
.y26{bottom:626.080048pt;}
.y4e{bottom:630.720063pt;}
.y25{bottom:643.040070pt;}
.y4d{bottom:647.680054pt;}
.y24{bottom:659.840058pt;}
.y70{bottom:664.160065pt;}
.y4c{bottom:664.480072pt;}
.y23{bottom:676.640046pt;}
.y4b{bottom:681.440064pt;}
.y22{bottom:693.600068pt;}
.y4a{bottom:698.240052pt;}
.y21{bottom:710.400055pt;}
.y49{bottom:715.040070pt;}
.y20{bottom:727.360047pt;}
.y76{bottom:731.680054pt;}
.y48{bottom:732.000061pt;}
.y1f{bottom:744.160065pt;}
.y47{bottom:748.800049pt;}
.y1e{bottom:760.960053pt;}
.y46{bottom:765.760071pt;}
.y1d{bottom:777.920044pt;}
.y45{bottom:782.560059pt;}
.y1c{bottom:794.720063pt;}
.y44{bottom:799.360047pt;}
.y1b{bottom:811.680054pt;}
.y43{bottom:816.320069pt;}
.y1a{bottom:828.160065pt;}
.y6b{bottom:832.800049pt;}
.y42{bottom:833.120057pt;}
.y19{bottom:845.760071pt;}
.y6a{bottom:849.760071pt;}
.y41{bottom:850.080048pt;}
.y18{bottom:862.560059pt;}
.y69{bottom:866.560059pt;}
.y40{bottom:866.880066pt;}
.y17{bottom:877.920060pt;}
.y3f{bottom:883.360062pt;}
.y64{bottom:883.680054pt;}
.y16{bottom:894.720063pt;}
.y3e{bottom:900.320054pt;}
.y63{bottom:900.640061pt;}
.y15{bottom:911.680054pt;}
.y3d{bottom:917.120057pt;}
.y62{bottom:917.440064pt;}
.y14{bottom:928.480057pt;}
.y83{bottom:934.080063pt;}
.y3c{bottom:934.400055pt;}
.y13{bottom:944.160065pt;}
.y12{bottom:947.360062pt;}
.y3b{bottom:951.200058pt;}
.y10{bottom:960.960053pt;}
.yf{bottom:964.160065pt;}
.y3a{bottom:968.000061pt;}
.ye{bottom:977.920060pt;}
.yd{bottom:981.120057pt;}
.y39{bottom:984.960053pt;}
.yb{bottom:994.720063pt;}
.ya{bottom:997.920060pt;}
.y38{bottom:1001.760056pt;}
.y9{bottom:1013.920060pt;}
.y4{bottom:1018.560059pt;}
.y3{bottom:1035.040062pt;}
.y2{bottom:1049.120057pt;}
.y1{bottom:1063.200058pt;}
.h6{height:4.482675pt;}
.h8{height:16.479995pt;}
.ha{height:16.479996pt;}
.h9{height:16.480011pt;}
.hf{height:16.640015pt;}
.h5{height:17.119996pt;}
.h13{height:30.258031pt;}
.h2{height:34.384245pt;}
.h3{height:42.177969pt;}
.h15{height:46.326119pt;}
.hc{height:46.507688pt;}
.he{height:51.349593pt;}
.h7{height:51.550851pt;}
.hb{height:52.298382pt;}
.hd{height:52.629621pt;}
.h10{height:52.830879pt;}
.h12{height:53.619258pt;}
.h14{height:53.619262pt;}
.h16{height:53.619378pt;}
.h11{height:53.619382pt;}
.h4{height:56.033355pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:3.679992pt;}
.w2{width:3.840027pt;}
.w5{width:6.879990pt;}
.w3{width:7.199951pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:148.320007pt;}
.x5{left:155.839996pt;}
.xd{left:159.679993pt;}
.x1a{left:172.320007pt;}
.x18{left:179.839996pt;}
.x14{left:191.199997pt;}
.x17{left:196.320007pt;}
.x2{left:198.720001pt;}
.x13{left:203.839996pt;}
.x1{left:210.880005pt;}
.x11{left:224.320007pt;}
.x10{left:238.720001pt;}
.x1b{left:241.919998pt;}
.x19{left:251.839996pt;}
.xe{left:256.799988pt;}
.x12{left:262.720001pt;}
.x15{left:333.600006pt;}
.x3{left:341.119995pt;}
.x1c{left:361.440002pt;}
.x6{left:380.000000pt;}
.xf{left:393.279999pt;}
.xa{left:399.040009pt;}
.x4{left:400.480011pt;}
.x7{left:407.359985pt;}
.xc{left:500.160004pt;}
.x8{left:505.119995pt;}
.x9{left:645.280029pt;}
.xb{left:648.799988pt;}
}




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