
    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_4665a8af8b4b7f162a09ab2e.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9ff27458c837a5089ae0f427.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_c6252e4ec2d15d31b8271fd2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_2610f58ed26bcc5edbada6ad.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_63dc0f267c55e8ec3c509af5.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_845335e1c38e126fba40b65d.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls2{letter-spacing:-0.414600px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.109440px;}
.ls3{letter-spacing:0.360000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.145400px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-6.431040px;}
._0{margin-left:-5.318640px;}
._3{margin-left:-3.318480px;}
._1{margin-left:-1.640160px;}
._2{width:1.261440px;}
._4{width:2.950800px;}
._6{width:4.825440px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:3.594000px;}
.y4{bottom:3.600000px;}
.ye{bottom:3.645000px;}
.y54{bottom:3.780000px;}
.y71{bottom:3.960000px;}
.y6c{bottom:4.500000px;}
.y9c{bottom:4.545000px;}
.y5{bottom:4.860000px;}
.y60{bottom:4.905000px;}
.y69{bottom:5.034000px;}
.y55{bottom:5.040000px;}
.y6b{bottom:5.394000px;}
.y6a{bottom:5.400000px;}
.y4b{bottom:6.294000px;}
.y7{bottom:6.300000px;}
.y19{bottom:6.330000px;}
.yf{bottom:6.345000px;}
.y68{bottom:57.096000px;}
.y90{bottom:60.336000px;}
.y4f{bottom:61.236000px;}
.y29{bottom:72.036000px;}
.y6e{bottom:72.756000px;}
.yb3{bottom:72.936000px;}
.y67{bottom:78.696000px;}
.y8f{bottom:81.036000px;}
.y4e{bottom:82.836000px;}
.y28{bottom:93.636000px;}
.y66{bottom:100.296000px;}
.y8e{bottom:101.736000px;}
.y4d{bottom:104.436000px;}
.y6d{bottom:107.136000px;}
.yb2{bottom:114.336000px;}
.y27{bottom:115.236000px;}
.y65{bottom:121.896000px;}
.y8d{bottom:122.436000px;}
.y4c{bottom:126.036000px;}
.yb1{bottom:135.036000px;}
.y26{bottom:136.836000px;}
.y8c{bottom:143.136000px;}
.y64{bottom:143.496000px;}
.y49{bottom:147.636000px;}
.yb0{bottom:155.730000px;}
.y25{bottom:158.430000px;}
.y8b{bottom:163.830000px;}
.y63{bottom:165.090000px;}
.y48{bottom:169.230000px;}
.yaf{bottom:176.430000px;}
.y24{bottom:180.030000px;}
.y8a{bottom:184.530000px;}
.y62{bottom:186.690000px;}
.y47{bottom:190.830000px;}
.yae{bottom:197.130000px;}
.y23{bottom:201.630000px;}
.y89{bottom:205.230000px;}
.y61{bottom:208.290000px;}
.y46{bottom:212.430000px;}
.yad{bottom:217.830000px;}
.y22{bottom:223.230000px;}
.y88{bottom:225.930000px;}
.y5f{bottom:229.890000px;}
.y45{bottom:234.075000px;}
.yac{bottom:238.575000px;}
.y21{bottom:244.875000px;}
.y87{bottom:246.675000px;}
.y5e{bottom:251.535000px;}
.y44{bottom:255.675000px;}
.yab{bottom:259.275000px;}
.y20{bottom:266.475000px;}
.y86{bottom:267.375000px;}
.y5d{bottom:273.135000px;}
.y43{bottom:277.275000px;}
.yaa{bottom:279.975000px;}
.y1f{bottom:288.075000px;}
.y5c{bottom:294.735000px;}
.y42{bottom:298.875000px;}
.ya9{bottom:300.675000px;}
.y85{bottom:308.775000px;}
.y1e{bottom:309.675000px;}
.y5b{bottom:316.335000px;}
.y41{bottom:320.475000px;}
.ya8{bottom:321.375000px;}
.y84{bottom:329.475000px;}
.y1d{bottom:331.275000px;}
.y5a{bottom:337.935000px;}
.y40{bottom:342.075000px;}
.yb4{bottom:343.695000px;}
.y83{bottom:350.175000px;}
.y1c{bottom:352.875000px;}
.y59{bottom:359.535000px;}
.ya7{bottom:362.775000px;}
.y3f{bottom:363.675000px;}
.y82{bottom:370.875000px;}
.y1b{bottom:374.475000px;}
.y58{bottom:381.135000px;}
.ya6{bottom:383.475000px;}
.y3e{bottom:385.275000px;}
.y81{bottom:391.575000px;}
.y1a{bottom:396.075000px;}
.y57{bottom:402.735000px;}
.ya5{bottom:404.175000px;}
.y3d{bottom:406.875000px;}
.y80{bottom:412.275000px;}
.y18{bottom:417.675000px;}
.y56{bottom:424.365000px;}
.ya4{bottom:424.905000px;}
.y3c{bottom:428.505000px;}
.y7f{bottom:433.005000px;}
.y17{bottom:439.305000px;}
.ya3{bottom:445.605000px;}
.y53{bottom:448.125000px;}
.y3b{bottom:450.105000px;}
.y7e{bottom:453.705000px;}
.y16{bottom:460.905000px;}
.ya2{bottom:466.305000px;}
.y3a{bottom:471.705000px;}
.y7d{bottom:474.405000px;}
.y15{bottom:482.505000px;}
.ya1{bottom:487.005000px;}
.y52{bottom:490.245000px;}
.y39{bottom:493.305000px;}
.y7c{bottom:495.105000px;}
.y14{bottom:504.105000px;}
.y51{bottom:507.525000px;}
.ya0{bottom:507.705000px;}
.y38{bottom:514.905000px;}
.y7b{bottom:515.805000px;}
.y13{bottom:525.705000px;}
.y9f{bottom:528.405000px;}
.y37{bottom:536.505000px;}
.y50{bottom:539.205000px;}
.y12{bottom:547.305000px;}
.y9e{bottom:549.105000px;}
.y7a{bottom:557.205000px;}
.y36{bottom:558.105000px;}
.y11{bottom:568.905000px;}
.y9d{bottom:569.805000px;}
.y79{bottom:577.905000px;}
.y35{bottom:579.705000px;}
.y10{bottom:590.505000px;}
.y78{bottom:598.605000px;}
.y34{bottom:601.305000px;}
.y9b{bottom:611.205000px;}
.yd{bottom:612.105000px;}
.y77{bottom:619.350000px;}
.y33{bottom:622.950000px;}
.y9a{bottom:631.950000px;}
.yc{bottom:633.750000px;}
.y76{bottom:640.050000px;}
.y32{bottom:644.550000px;}
.y99{bottom:652.650000px;}
.yb{bottom:655.350000px;}
.y75{bottom:660.750000px;}
.y31{bottom:666.150000px;}
.y98{bottom:673.350000px;}
.ya{bottom:676.950000px;}
.y74{bottom:681.450000px;}
.y30{bottom:687.750000px;}
.y97{bottom:694.050000px;}
.y9{bottom:698.550000px;}
.y73{bottom:702.150000px;}
.y2f{bottom:709.350000px;}
.y96{bottom:714.750000px;}
.y8{bottom:720.150000px;}
.y72{bottom:722.850000px;}
.y2e{bottom:730.950000px;}
.y95{bottom:735.450000px;}
.y6{bottom:741.750000px;}
.y70{bottom:743.550000px;}
.y2d{bottom:752.550000px;}
.y94{bottom:756.150000px;}
.y3{bottom:765.690000px;}
.y6f{bottom:766.590000px;}
.y2c{bottom:774.150000px;}
.y93{bottom:776.850000px;}
.y2b{bottom:795.750000px;}
.y92{bottom:797.550000px;}
.y2{bottom:807.660000px;}
.y2a{bottom:817.380000px;}
.y91{bottom:818.280000px;}
.y1{bottom:824.940000px;}
.h9{height:20.700000px;}
.ha{height:20.736000px;}
.h3{height:21.600000px;}
.h6{height:21.636000px;}
.h4{height:46.736719px;}
.h2{height:53.573906px;}
.h7{height:54.596250px;}
.h5{height:59.383125px;}
.h8{height:64.546875px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.we{width:62.136000px;}
.w12{width:62.316000px;}
.w7{width:62.496000px;}
.w10{width:67.140000px;}
.wa{width:67.680000px;}
.w9{width:67.860000px;}
.w13{width:68.040000px;}
.w11{width:70.380000px;}
.w8{width:70.560000px;}
.w6{width:70.740000px;}
.wd{width:70.920000px;}
.wf{width:71.100000px;}
.w5{width:71.280000px;}
.w4{width:71.460000px;}
.wc{width:71.640000px;}
.w3{width:672.945000px;}
.wb{width:673.125000px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.xb{left:12.600000px;}
.x8{left:14.040000px;}
.x12{left:15.300000px;}
.x11{left:16.740000px;}
.x4{left:18.540000px;}
.x14{left:19.620000px;}
.x10{left:20.880000px;}
.x13{left:28.980000px;}
.xe{left:31.140000px;}
.xf{left:33.840000px;}
.xd{left:35.640000px;}
.x1{left:53.999981px;}
.x3{left:726.945000px;}
.x5{left:798.405000px;}
.x6{left:869.685000px;}
.x7{left:940.425000px;}
.x9{left:1002.930000px;}
.xa{left:1073.490000px;}
.xc{left:1141.350000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.368533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.097280pt;}
.ls3{letter-spacing:0.320000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.351467pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-5.716480pt;}
._0{margin-left:-4.727680pt;}
._3{margin-left:-2.949760pt;}
._1{margin-left:-1.457920pt;}
._2{width:1.121280pt;}
._4{width:2.622933pt;}
._6{width:4.289280pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:3.194667pt;}
.y4{bottom:3.200000pt;}
.ye{bottom:3.240000pt;}
.y54{bottom:3.360000pt;}
.y71{bottom:3.520000pt;}
.y6c{bottom:4.000000pt;}
.y9c{bottom:4.040000pt;}
.y5{bottom:4.320000pt;}
.y60{bottom:4.360000pt;}
.y69{bottom:4.474667pt;}
.y55{bottom:4.480000pt;}
.y6b{bottom:4.794667pt;}
.y6a{bottom:4.800000pt;}
.y4b{bottom:5.594667pt;}
.y7{bottom:5.600000pt;}
.y19{bottom:5.626667pt;}
.yf{bottom:5.640000pt;}
.y68{bottom:50.752000pt;}
.y90{bottom:53.632000pt;}
.y4f{bottom:54.432000pt;}
.y29{bottom:64.032000pt;}
.y6e{bottom:64.672000pt;}
.yb3{bottom:64.832000pt;}
.y67{bottom:69.952000pt;}
.y8f{bottom:72.032000pt;}
.y4e{bottom:73.632000pt;}
.y28{bottom:83.232000pt;}
.y66{bottom:89.152000pt;}
.y8e{bottom:90.432000pt;}
.y4d{bottom:92.832000pt;}
.y6d{bottom:95.232000pt;}
.yb2{bottom:101.632000pt;}
.y27{bottom:102.432000pt;}
.y65{bottom:108.352000pt;}
.y8d{bottom:108.832000pt;}
.y4c{bottom:112.032000pt;}
.yb1{bottom:120.032000pt;}
.y26{bottom:121.632000pt;}
.y8c{bottom:127.232000pt;}
.y64{bottom:127.552000pt;}
.y49{bottom:131.232000pt;}
.yb0{bottom:138.426667pt;}
.y25{bottom:140.826667pt;}
.y8b{bottom:145.626667pt;}
.y63{bottom:146.746667pt;}
.y48{bottom:150.426667pt;}
.yaf{bottom:156.826667pt;}
.y24{bottom:160.026667pt;}
.y8a{bottom:164.026667pt;}
.y62{bottom:165.946667pt;}
.y47{bottom:169.626667pt;}
.yae{bottom:175.226667pt;}
.y23{bottom:179.226667pt;}
.y89{bottom:182.426667pt;}
.y61{bottom:185.146667pt;}
.y46{bottom:188.826667pt;}
.yad{bottom:193.626667pt;}
.y22{bottom:198.426667pt;}
.y88{bottom:200.826667pt;}
.y5f{bottom:204.346667pt;}
.y45{bottom:208.066667pt;}
.yac{bottom:212.066667pt;}
.y21{bottom:217.666667pt;}
.y87{bottom:219.266667pt;}
.y5e{bottom:223.586667pt;}
.y44{bottom:227.266667pt;}
.yab{bottom:230.466667pt;}
.y20{bottom:236.866667pt;}
.y86{bottom:237.666667pt;}
.y5d{bottom:242.786667pt;}
.y43{bottom:246.466667pt;}
.yaa{bottom:248.866667pt;}
.y1f{bottom:256.066667pt;}
.y5c{bottom:261.986667pt;}
.y42{bottom:265.666667pt;}
.ya9{bottom:267.266667pt;}
.y85{bottom:274.466667pt;}
.y1e{bottom:275.266667pt;}
.y5b{bottom:281.186667pt;}
.y41{bottom:284.866667pt;}
.ya8{bottom:285.666667pt;}
.y84{bottom:292.866667pt;}
.y1d{bottom:294.466667pt;}
.y5a{bottom:300.386667pt;}
.y40{bottom:304.066667pt;}
.yb4{bottom:305.506667pt;}
.y83{bottom:311.266667pt;}
.y1c{bottom:313.666667pt;}
.y59{bottom:319.586667pt;}
.ya7{bottom:322.466667pt;}
.y3f{bottom:323.266667pt;}
.y82{bottom:329.666667pt;}
.y1b{bottom:332.866667pt;}
.y58{bottom:338.786667pt;}
.ya6{bottom:340.866667pt;}
.y3e{bottom:342.466667pt;}
.y81{bottom:348.066667pt;}
.y1a{bottom:352.066667pt;}
.y57{bottom:357.986667pt;}
.ya5{bottom:359.266667pt;}
.y3d{bottom:361.666667pt;}
.y80{bottom:366.466667pt;}
.y18{bottom:371.266667pt;}
.y56{bottom:377.213333pt;}
.ya4{bottom:377.693333pt;}
.y3c{bottom:380.893333pt;}
.y7f{bottom:384.893333pt;}
.y17{bottom:390.493333pt;}
.ya3{bottom:396.093333pt;}
.y53{bottom:398.333333pt;}
.y3b{bottom:400.093333pt;}
.y7e{bottom:403.293333pt;}
.y16{bottom:409.693333pt;}
.ya2{bottom:414.493333pt;}
.y3a{bottom:419.293333pt;}
.y7d{bottom:421.693333pt;}
.y15{bottom:428.893333pt;}
.ya1{bottom:432.893333pt;}
.y52{bottom:435.773333pt;}
.y39{bottom:438.493333pt;}
.y7c{bottom:440.093333pt;}
.y14{bottom:448.093333pt;}
.y51{bottom:451.133333pt;}
.ya0{bottom:451.293333pt;}
.y38{bottom:457.693333pt;}
.y7b{bottom:458.493333pt;}
.y13{bottom:467.293333pt;}
.y9f{bottom:469.693333pt;}
.y37{bottom:476.893333pt;}
.y50{bottom:479.293333pt;}
.y12{bottom:486.493333pt;}
.y9e{bottom:488.093333pt;}
.y7a{bottom:495.293333pt;}
.y36{bottom:496.093333pt;}
.y11{bottom:505.693333pt;}
.y9d{bottom:506.493333pt;}
.y79{bottom:513.693333pt;}
.y35{bottom:515.293333pt;}
.y10{bottom:524.893333pt;}
.y78{bottom:532.093333pt;}
.y34{bottom:534.493333pt;}
.y9b{bottom:543.293333pt;}
.yd{bottom:544.093333pt;}
.y77{bottom:550.533333pt;}
.y33{bottom:553.733333pt;}
.y9a{bottom:561.733333pt;}
.yc{bottom:563.333333pt;}
.y76{bottom:568.933333pt;}
.y32{bottom:572.933333pt;}
.y99{bottom:580.133333pt;}
.yb{bottom:582.533333pt;}
.y75{bottom:587.333333pt;}
.y31{bottom:592.133333pt;}
.y98{bottom:598.533333pt;}
.ya{bottom:601.733333pt;}
.y74{bottom:605.733333pt;}
.y30{bottom:611.333333pt;}
.y97{bottom:616.933333pt;}
.y9{bottom:620.933333pt;}
.y73{bottom:624.133333pt;}
.y2f{bottom:630.533333pt;}
.y96{bottom:635.333333pt;}
.y8{bottom:640.133333pt;}
.y72{bottom:642.533333pt;}
.y2e{bottom:649.733333pt;}
.y95{bottom:653.733333pt;}
.y6{bottom:659.333333pt;}
.y70{bottom:660.933333pt;}
.y2d{bottom:668.933333pt;}
.y94{bottom:672.133333pt;}
.y3{bottom:680.613333pt;}
.y6f{bottom:681.413333pt;}
.y2c{bottom:688.133333pt;}
.y93{bottom:690.533333pt;}
.y2b{bottom:707.333333pt;}
.y92{bottom:708.933333pt;}
.y2{bottom:717.920000pt;}
.y2a{bottom:726.560000pt;}
.y91{bottom:727.360000pt;}
.y1{bottom:733.280000pt;}
.h9{height:18.400000pt;}
.ha{height:18.432000pt;}
.h3{height:19.200000pt;}
.h6{height:19.232000pt;}
.h4{height:41.543750pt;}
.h2{height:47.621250pt;}
.h7{height:48.530000pt;}
.h5{height:52.785000pt;}
.h8{height:57.375000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.we{width:55.232000pt;}
.w12{width:55.392000pt;}
.w7{width:55.552000pt;}
.w10{width:59.680000pt;}
.wa{width:60.160000pt;}
.w9{width:60.320000pt;}
.w13{width:60.480000pt;}
.w11{width:62.560000pt;}
.w8{width:62.720000pt;}
.w6{width:62.880000pt;}
.wd{width:63.040000pt;}
.wf{width:63.200000pt;}
.w5{width:63.360000pt;}
.w4{width:63.520000pt;}
.wc{width:63.680000pt;}
.w3{width:598.173333pt;}
.wb{width:598.333333pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.xb{left:11.200000pt;}
.x8{left:12.480000pt;}
.x12{left:13.600000pt;}
.x11{left:14.880000pt;}
.x4{left:16.480000pt;}
.x14{left:17.440000pt;}
.x10{left:18.560000pt;}
.x13{left:25.760000pt;}
.xe{left:27.680000pt;}
.xf{left:30.080000pt;}
.xd{left:31.680000pt;}
.x1{left:47.999983pt;}
.x3{left:646.173333pt;}
.x5{left:709.693333pt;}
.x6{left:773.053333pt;}
.x7{left:835.933333pt;}
.x9{left:891.493333pt;}
.xa{left:954.213333pt;}
.xc{left:1014.533333pt;}
}




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