
    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_0b1f1d03690b3312795d4d2a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.194824;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_35f91c52aa31f7ffb3579cd9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.197754;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_49e7f56bf731865934ca97ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.881836;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_e0fc65c3bd83c0652c91f31a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.138672;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_c0c3cb06b55c9f3c9113089b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dfa89450b3eed1b19b3b0aec.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_b224541a5b3339756ac7f04b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.198730;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_bbc182888d5767af9e15ffb6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_e68ed880b26ff1d5e8a48c23.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls3{letter-spacing:-0.270000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000072px;}
.ls2{letter-spacing:0.840000px;}
.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;}
}
.ws1{word-spacing:-60.000000px;}
.ws5{word-spacing:-16.308000px;}
.ws0{word-spacing:-16.254000px;}
.ws4{word-spacing:-10.500000px;}
.ws3{word-spacing:-9.507564px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-5.616000px;}
._5{margin-left:-4.590000px;}
._8{margin-left:-3.402000px;}
._0{margin-left:-1.944000px;}
._1{width:1.026000px;}
._2{width:2.052000px;}
._6{width:3.078000px;}
._3{width:4.104000px;}
._4{width:5.778000px;}
._7{width:7.668000px;}
._b{width:8.964000px;}
._c{width:10.098000px;}
._9{width:11.340000px;}
._e{width:12.420000px;}
._d{width:15.282000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(110,29,135);}
.fs1{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:7.175850px;}
.y2a{bottom:111.081900px;}
.ya3{bottom:111.105300px;}
.y69{bottom:136.560300px;}
.y95{bottom:136.747350px;}
.y48{bottom:136.791300px;}
.y3f{bottom:136.807500px;}
.y5c{bottom:136.822800px;}
.y38{bottom:136.897950px;}
.y61{bottom:136.910700px;}
.y6b{bottom:136.915350px;}
.y9f{bottom:137.129850px;}
.y46{bottom:137.253300px;}
.y4c{bottom:137.297250px;}
.yab{bottom:137.725950px;}
.y52{bottom:138.408600px;}
.y2c{bottom:138.499500px;}
.y17{bottom:144.561600px;}
.yb4{bottom:146.089650px;}
.y68{bottom:149.160300px;}
.y94{bottom:149.347350px;}
.y47{bottom:149.391300px;}
.y3e{bottom:149.407500px;}
.y5b{bottom:149.422800px;}
.y37{bottom:149.497950px;}
.y60{bottom:149.510700px;}
.y6a{bottom:149.515350px;}
.y9e{bottom:149.729850px;}
.y45{bottom:149.853300px;}
.y4b{bottom:149.897250px;}
.yaa{bottom:150.325950px;}
.y51{bottom:151.008600px;}
.y2b{bottom:151.099500px;}
.yb0{bottom:160.135350px;}
.y16{bottom:160.761600px;}
.y67{bottom:161.760300px;}
.y93{bottom:161.947500px;}
.y3d{bottom:162.007500px;}
.y5a{bottom:162.022800px;}
.y36{bottom:162.097950px;}
.y5f{bottom:162.110550px;}
.y9d{bottom:162.329850px;}
.y44{bottom:162.453300px;}
.y4a{bottom:162.497250px;}
.ya9{bottom:162.925950px;}
.y50{bottom:163.608600px;}
.yaf{bottom:172.735350px;}
.y66{bottom:174.360300px;}
.y92{bottom:174.547500px;}
.y3c{bottom:174.607500px;}
.y59{bottom:174.622800px;}
.y35{bottom:174.697950px;}
.y5e{bottom:174.710550px;}
.y9c{bottom:174.929850px;}
.y43{bottom:175.053300px;}
.y4f{bottom:176.208600px;}
.y65{bottom:186.960300px;}
.y91{bottom:187.147500px;}
.y3b{bottom:187.207500px;}
.y58{bottom:187.222800px;}
.y5d{bottom:187.310550px;}
.y9b{bottom:187.529850px;}
.y42{bottom:187.653300px;}
.y4e{bottom:188.808600px;}
.y15{bottom:193.161600px;}
.y64{bottom:199.560300px;}
.y90{bottom:199.747350px;}
.y3a{bottom:199.807500px;}
.y57{bottom:199.822800px;}
.y9a{bottom:200.129850px;}
.y41{bottom:200.253300px;}
.y4d{bottom:201.408600px;}
.yad{bottom:206.907000px;}
.y14{bottom:209.361600px;}
.y63{bottom:212.160300px;}
.y8f{bottom:212.347350px;}
.y39{bottom:212.407500px;}
.y56{bottom:212.422800px;}
.y99{bottom:212.729850px;}
.yac{bottom:219.507000px;}
.y8e{bottom:224.947350px;}
.y55{bottom:225.022800px;}
.y98{bottom:225.329700px;}
.y13{bottom:225.561600px;}
.y8d{bottom:237.547350px;}
.y54{bottom:237.622800px;}
.y97{bottom:237.929700px;}
.y12{bottom:241.761600px;}
.y8c{bottom:250.147350px;}
.y53{bottom:250.222800px;}
.y96{bottom:250.529700px;}
.y11{bottom:257.961600px;}
.y8b{bottom:262.747350px;}
.y10{bottom:274.161600px;}
.yf{bottom:290.361600px;}
.y8a{bottom:290.385000px;}
.ye{bottom:306.561600px;}
.y89{bottom:306.585000px;}
.yd{bottom:322.761600px;}
.y88{bottom:322.785000px;}
.y26{bottom:338.961600px;}
.y87{bottom:338.985150px;}
.yb2{bottom:342.814050px;}
.yc{bottom:355.161600px;}
.y86{bottom:355.185000px;}
.yb{bottom:371.361600px;}
.y85{bottom:371.385000px;}
.y25{bottom:387.561600px;}
.y84{bottom:387.585000px;}
.ya{bottom:403.761600px;}
.y83{bottom:403.785000px;}
.y9{bottom:419.961600px;}
.y82{bottom:419.985150px;}
.y8{bottom:436.161600px;}
.y81{bottom:436.185000px;}
.y7{bottom:452.361600px;}
.y80{bottom:452.385150px;}
.y6{bottom:468.561600px;}
.y7f{bottom:468.585000px;}
.yb3{bottom:470.555250px;}
.yae{bottom:480.294450px;}
.y5{bottom:484.761600px;}
.y7e{bottom:484.785000px;}
.y2f{bottom:485.087850px;}
.ya6{bottom:485.111250px;}
.y4{bottom:500.961600px;}
.y7d{bottom:500.985150px;}
.y3{bottom:517.161600px;}
.y7c{bottom:517.185000px;}
.y2e{bottom:525.540600px;}
.ya5{bottom:525.564000px;}
.y2{bottom:533.361600px;}
.y7b{bottom:533.385000px;}
.y1{bottom:549.561600px;}
.y7a{bottom:549.585000px;}
.y2d{bottom:564.989400px;}
.ya4{bottom:565.012800px;}
.y24{bottom:565.761600px;}
.y79{bottom:565.785000px;}
.y34{bottom:581.961600px;}
.y78{bottom:581.985150px;}
.y23{bottom:598.161600px;}
.y77{bottom:598.185000px;}
.y31{bottom:610.337100px;}
.ya8{bottom:610.360500px;}
.y22{bottom:614.361600px;}
.y76{bottom:614.385000px;}
.y21{bottom:630.561600px;}
.y75{bottom:630.585000px;}
.y20{bottom:646.761600px;}
.y74{bottom:646.785000px;}
.y30{bottom:656.593800px;}
.ya7{bottom:656.617200px;}
.y1f{bottom:662.961600px;}
.y73{bottom:662.985150px;}
.y1e{bottom:679.161600px;}
.y72{bottom:679.185000px;}
.y1d{bottom:695.361600px;}
.y71{bottom:695.385000px;}
.y1c{bottom:711.561600px;}
.y70{bottom:711.585000px;}
.y1b{bottom:727.761600px;}
.y6f{bottom:727.785150px;}
.y1a{bottom:743.961600px;}
.y6e{bottom:743.985150px;}
.y19{bottom:760.161600px;}
.y6d{bottom:760.185000px;}
.y18{bottom:776.361600px;}
.y6c{bottom:776.385000px;}
.y29{bottom:807.241800px;}
.ya2{bottom:807.265200px;}
.y27{bottom:807.643200px;}
.ya0{bottom:807.666750px;}
.y32{bottom:817.831500px;}
.y49{bottom:817.873500px;}
.y62{bottom:818.037000px;}
.yb1{bottom:818.118000px;}
.y40{bottom:818.200500px;}
.y28{bottom:825.241800px;}
.ya1{bottom:825.265200px;}
.ha{height:27.436500px;}
.h7{height:36.852539px;}
.h6{height:36.955078px;}
.h5{height:40.400391px;}
.h2{height:51.943359px;}
.h3{height:57.714844px;}
.h8{height:63.175781px;}
.h4{height:69.257812px;}
.hb{height:69.328125px;}
.h9{height:84.234375px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w3{width:16.063500px;}
.w2{width:16.063547px;}
.w4{width:16.065000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xc{left:1.499976px;}
.xa{left:121.156650px;}
.x9{left:141.955650px;}
.x8{left:166.157400px;}
.x2{left:297.637800px;}
.xd{left:310.393650px;}
.x1{left:314.645700px;}
.xb{left:671.839476px;}
.x4{left:756.850350px;}
.x7{left:769.606200px;}
.x3{left:773.858250px;}
.x5{left:974.786700px;}
.x6{left:1128.350850px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls3{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000064pt;}
.ls2{letter-spacing:0.746667pt;}
.ws1{word-spacing:-53.333333pt;}
.ws5{word-spacing:-14.496000pt;}
.ws0{word-spacing:-14.448000pt;}
.ws4{word-spacing:-9.333333pt;}
.ws3{word-spacing:-8.451168pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-4.992000pt;}
._5{margin-left:-4.080000pt;}
._8{margin-left:-3.024000pt;}
._0{margin-left:-1.728000pt;}
._1{width:0.912000pt;}
._2{width:1.824000pt;}
._6{width:2.736000pt;}
._3{width:3.648000pt;}
._4{width:5.136000pt;}
._7{width:6.816000pt;}
._b{width:7.968000pt;}
._c{width:8.976000pt;}
._9{width:10.080000pt;}
._e{width:11.040000pt;}
._d{width:13.584000pt;}
.fs1{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:6.378533pt;}
.y2a{bottom:98.739467pt;}
.ya3{bottom:98.760267pt;}
.y69{bottom:121.386933pt;}
.y95{bottom:121.553200pt;}
.y48{bottom:121.592267pt;}
.y3f{bottom:121.606667pt;}
.y5c{bottom:121.620267pt;}
.y38{bottom:121.687067pt;}
.y61{bottom:121.698400pt;}
.y6b{bottom:121.702533pt;}
.y9f{bottom:121.893200pt;}
.y46{bottom:122.002933pt;}
.y4c{bottom:122.042000pt;}
.yab{bottom:122.423067pt;}
.y52{bottom:123.029867pt;}
.y2c{bottom:123.110667pt;}
.y17{bottom:128.499200pt;}
.yb4{bottom:129.857467pt;}
.y68{bottom:132.586933pt;}
.y94{bottom:132.753200pt;}
.y47{bottom:132.792267pt;}
.y3e{bottom:132.806667pt;}
.y5b{bottom:132.820267pt;}
.y37{bottom:132.887067pt;}
.y60{bottom:132.898400pt;}
.y6a{bottom:132.902533pt;}
.y9e{bottom:133.093200pt;}
.y45{bottom:133.202933pt;}
.y4b{bottom:133.242000pt;}
.yaa{bottom:133.623067pt;}
.y51{bottom:134.229867pt;}
.y2b{bottom:134.310667pt;}
.yb0{bottom:142.342533pt;}
.y16{bottom:142.899200pt;}
.y67{bottom:143.786933pt;}
.y93{bottom:143.953333pt;}
.y3d{bottom:144.006667pt;}
.y5a{bottom:144.020267pt;}
.y36{bottom:144.087067pt;}
.y5f{bottom:144.098267pt;}
.y9d{bottom:144.293200pt;}
.y44{bottom:144.402933pt;}
.y4a{bottom:144.442000pt;}
.ya9{bottom:144.823067pt;}
.y50{bottom:145.429867pt;}
.yaf{bottom:153.542533pt;}
.y66{bottom:154.986933pt;}
.y92{bottom:155.153333pt;}
.y3c{bottom:155.206667pt;}
.y59{bottom:155.220267pt;}
.y35{bottom:155.287067pt;}
.y5e{bottom:155.298267pt;}
.y9c{bottom:155.493200pt;}
.y43{bottom:155.602933pt;}
.y4f{bottom:156.629867pt;}
.y65{bottom:166.186933pt;}
.y91{bottom:166.353333pt;}
.y3b{bottom:166.406667pt;}
.y58{bottom:166.420267pt;}
.y5d{bottom:166.498267pt;}
.y9b{bottom:166.693200pt;}
.y42{bottom:166.802933pt;}
.y4e{bottom:167.829867pt;}
.y15{bottom:171.699200pt;}
.y64{bottom:177.386933pt;}
.y90{bottom:177.553200pt;}
.y3a{bottom:177.606667pt;}
.y57{bottom:177.620267pt;}
.y9a{bottom:177.893200pt;}
.y41{bottom:178.002933pt;}
.y4d{bottom:179.029867pt;}
.yad{bottom:183.917333pt;}
.y14{bottom:186.099200pt;}
.y63{bottom:188.586933pt;}
.y8f{bottom:188.753200pt;}
.y39{bottom:188.806667pt;}
.y56{bottom:188.820267pt;}
.y99{bottom:189.093200pt;}
.yac{bottom:195.117333pt;}
.y8e{bottom:199.953200pt;}
.y55{bottom:200.020267pt;}
.y98{bottom:200.293067pt;}
.y13{bottom:200.499200pt;}
.y8d{bottom:211.153200pt;}
.y54{bottom:211.220267pt;}
.y97{bottom:211.493067pt;}
.y12{bottom:214.899200pt;}
.y8c{bottom:222.353200pt;}
.y53{bottom:222.420267pt;}
.y96{bottom:222.693067pt;}
.y11{bottom:229.299200pt;}
.y8b{bottom:233.553200pt;}
.y10{bottom:243.699200pt;}
.yf{bottom:258.099200pt;}
.y8a{bottom:258.120000pt;}
.ye{bottom:272.499200pt;}
.y89{bottom:272.520000pt;}
.yd{bottom:286.899200pt;}
.y88{bottom:286.920000pt;}
.y26{bottom:301.299200pt;}
.y87{bottom:301.320133pt;}
.yb2{bottom:304.723600pt;}
.yc{bottom:315.699200pt;}
.y86{bottom:315.720000pt;}
.yb{bottom:330.099200pt;}
.y85{bottom:330.120000pt;}
.y25{bottom:344.499200pt;}
.y84{bottom:344.520000pt;}
.ya{bottom:358.899200pt;}
.y83{bottom:358.920000pt;}
.y9{bottom:373.299200pt;}
.y82{bottom:373.320133pt;}
.y8{bottom:387.699200pt;}
.y81{bottom:387.720000pt;}
.y7{bottom:402.099200pt;}
.y80{bottom:402.120133pt;}
.y6{bottom:416.499200pt;}
.y7f{bottom:416.520000pt;}
.yb3{bottom:418.271333pt;}
.yae{bottom:426.928400pt;}
.y5{bottom:430.899200pt;}
.y7e{bottom:430.920000pt;}
.y2f{bottom:431.189200pt;}
.ya6{bottom:431.210000pt;}
.y4{bottom:445.299200pt;}
.y7d{bottom:445.320133pt;}
.y3{bottom:459.699200pt;}
.y7c{bottom:459.720000pt;}
.y2e{bottom:467.147200pt;}
.ya5{bottom:467.168000pt;}
.y2{bottom:474.099200pt;}
.y7b{bottom:474.120000pt;}
.y1{bottom:488.499200pt;}
.y7a{bottom:488.520000pt;}
.y2d{bottom:502.212800pt;}
.ya4{bottom:502.233600pt;}
.y24{bottom:502.899200pt;}
.y79{bottom:502.920000pt;}
.y34{bottom:517.299200pt;}
.y78{bottom:517.320133pt;}
.y23{bottom:531.699200pt;}
.y77{bottom:531.720000pt;}
.y31{bottom:542.521867pt;}
.ya8{bottom:542.542667pt;}
.y22{bottom:546.099200pt;}
.y76{bottom:546.120000pt;}
.y21{bottom:560.499200pt;}
.y75{bottom:560.520000pt;}
.y20{bottom:574.899200pt;}
.y74{bottom:574.920000pt;}
.y30{bottom:583.638933pt;}
.ya7{bottom:583.659733pt;}
.y1f{bottom:589.299200pt;}
.y73{bottom:589.320133pt;}
.y1e{bottom:603.699200pt;}
.y72{bottom:603.720000pt;}
.y1d{bottom:618.099200pt;}
.y71{bottom:618.120000pt;}
.y1c{bottom:632.499200pt;}
.y70{bottom:632.520000pt;}
.y1b{bottom:646.899200pt;}
.y6f{bottom:646.920133pt;}
.y1a{bottom:661.299200pt;}
.y6e{bottom:661.320133pt;}
.y19{bottom:675.699200pt;}
.y6d{bottom:675.720000pt;}
.y18{bottom:690.099200pt;}
.y6c{bottom:690.120000pt;}
.y29{bottom:717.548267pt;}
.ya2{bottom:717.569067pt;}
.y27{bottom:717.905067pt;}
.ya0{bottom:717.926000pt;}
.y32{bottom:726.961333pt;}
.y49{bottom:726.998667pt;}
.y62{bottom:727.144000pt;}
.yb1{bottom:727.216000pt;}
.y40{bottom:727.289333pt;}
.y28{bottom:733.548267pt;}
.ya1{bottom:733.569067pt;}
.ha{height:24.388000pt;}
.h7{height:32.757812pt;}
.h6{height:32.848958pt;}
.h5{height:35.911458pt;}
.h2{height:46.171875pt;}
.h3{height:51.302083pt;}
.h8{height:56.156250pt;}
.h4{height:61.562500pt;}
.hb{height:61.625000pt;}
.h9{height:74.875000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w3{width:14.278667pt;}
.w2{width:14.278709pt;}
.w4{width:14.280000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xc{left:1.333312pt;}
.xa{left:107.694800pt;}
.x9{left:126.182800pt;}
.x8{left:147.695467pt;}
.x2{left:264.566933pt;}
.xd{left:275.905467pt;}
.x1{left:279.685067pt;}
.xb{left:597.190646pt;}
.x4{left:672.755867pt;}
.x7{left:684.094400pt;}
.x3{left:687.874000pt;}
.x5{left:866.477067pt;}
.x6{left:1002.978533pt;}
}




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