
    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_23017cb6aa291a3013d2b275.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_23aa9aba3d0d63b192d4e8c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_131f2c694b9d59033befa503.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.770000;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_5de16dfcfffd6f59019cba86.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.138000px;}
.v2{vertical-align:-7.308000px;}
.v3{vertical-align:-6.294000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:3.297042px;}
.ls2{letter-spacing:9.938394px;}
.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:-123.243120px;}
.ws9{word-spacing:-68.630640px;}
.ws3{word-spacing:-62.395320px;}
.wsa{word-spacing:-46.785960px;}
.ws2{word-spacing:-39.902958px;}
.ws4{word-spacing:-37.454040px;}
.ws8{word-spacing:-31.220280px;}
.ws7{word-spacing:-29.916000px;}
.ws5{word-spacing:-28.080000px;}
.ws6{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-24.478164px;}
._2{margin-left:-17.064432px;}
._5{margin-left:-15.054996px;}
._d{margin-left:-13.164408px;}
._6{margin-left:-12.038862px;}
._c{margin-left:-10.900374px;}
._a{margin-left:-9.833010px;}
._0{margin-left:-8.058204px;}
._1{margin-left:-6.162156px;}
._8{margin-left:-4.321620px;}
._3{margin-left:-3.025134px;}
._4{margin-left:-1.152432px;}
._9{width:1.008378px;}
._7{width:6.194322px;}
.fc3{color:rgb(80,180,200);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:102.048000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:120.078000px;}
.fs1{font-size:144.054000px;}
.fsa{font-size:179.946000px;}
.fs5{font-size:192.018000px;}
.fs7{font-size:216.000000px;}
.fs3{font-size:239.982000px;}
.fs9{font-size:263.964000px;}
.fs2{font-size:270.084000px;}
.fs0{font-size:474.012000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y46{bottom:49.068000px;}
.y6e{bottom:57.316500px;}
.y57{bottom:90.865500px;}
.y59{bottom:95.839500px;}
.y8{bottom:100.050000px;}
.y2d{bottom:111.232500px;}
.y56{bottom:118.417500px;}
.y1d{bottom:130.153500px;}
.y7{bottom:133.470000px;}
.y6d{bottom:134.404500px;}
.y2c{bottom:140.400000px;}
.y55{bottom:145.971000px;}
.y9{bottom:152.859000px;}
.y58{bottom:160.683000px;}
.y2b{bottom:169.569000px;}
.y54{bottom:173.523000px;}
.y1c{bottom:175.734000px;}
.y32{bottom:193.465500px;}
.y2a{bottom:198.738000px;}
.y53{bottom:201.076500px;}
.y6{bottom:215.916000px;}
.y31{bottom:223.696500px;}
.y52{bottom:228.628500px;}
.y1b{bottom:233.263500px;}
.y5{bottom:249.336000px;}
.y6c{bottom:251.164500px;}
.y30{bottom:253.927500px;}
.y15{bottom:260.178000px;}
.y48{bottom:277.951500px;}
.y1a{bottom:278.844000px;}
.y4a{bottom:279.184500px;}
.y6b{bottom:283.564500px;}
.y2f{bottom:284.160000px;}
.y73{bottom:292.918500px;}
.y14{bottom:301.975500px;}
.y47{bottom:308.182500px;}
.y19{bottom:336.373500px;}
.y72{bottom:344.920500px;}
.y29{bottom:345.004500px;}
.y13{bottom:347.556000px;}
.y1f{bottom:348.661500px;}
.y4{bottom:352.360500px;}
.y64{bottom:357.081000px;}
.y51{bottom:365.967000px;}
.y28{bottom:374.173500px;}
.y60{bottom:374.769000px;}
.y18{bottom:378.171000px;}
.yd{bottom:381.189000px;}
.y6a{bottom:384.166500px;}
.y50{bottom:393.520500px;}
.y71{bottom:396.922500px;}
.y45{bottom:399.133500px;}
.y44{bottom:401.854500px;}
.yc{bottom:402.151500px;}
.y27{bottom:403.342500px;}
.y12{bottom:408.870000px;}
.y5f{bottom:414.907500px;}
.y69{bottom:416.566500px;}
.y1e{bottom:418.138500px;}
.y4f{bottom:421.072500px;}
.y17{bottom:423.751500px;}
.y26{bottom:432.511500px;}
.y63{bottom:433.573500px;}
.y70{bottom:448.923000px;}
.y39{bottom:466.272000px;}
.y11{bottom:466.356000px;}
.y3{bottom:481.366500px;}
.y49{bottom:487.617000px;}
.y40{bottom:488.466000px;}
.y10{bottom:508.153500px;}
.y68{bottom:517.167000px;}
.y5e{bottom:517.465500px;}
.y38{bottom:525.927000px;}
.y3f{bottom:546.591000px;}
.y67{bottom:549.567000px;}
.y25{bottom:549.652500px;}
.yf{bottom:549.949500px;}
.y5d{bottom:557.604000px;}
.yb{bottom:567.978000px;}
.y3e{bottom:577.204500px;}
.y24{bottom:578.821500px;}
.y6f{bottom:582.307500px;}
.y37{bottom:584.901000px;}
.y4e{bottom:586.006500px;}
.y16{bottom:591.450000px;}
.ye{bottom:595.531500px;}
.y5c{bottom:597.742500px;}
.y23{bottom:607.989000px;}
.y3d{bottom:609.393000px;}
.y2{bottom:610.371000px;}
.y4d{bottom:613.560000px;}
.y36{bottom:618.916500px;}
.y22{bottom:637.158000px;}
.y4c{bottom:641.112000px;}
.y43{bottom:644.386500px;}
.y66{bottom:650.169000px;}
.y35{bottom:652.593000px;}
.y3c{bottom:659.182500px;}
.y21{bottom:666.327000px;}
.y62{bottom:667.644000px;}
.y4b{bottom:668.665500px;}
.y42{bottom:676.786500px;}
.y65{bottom:682.569000px;}
.y20{bottom:695.494500px;}
.ya{bottom:695.538000px;}
.y3b{bottom:695.920500px;}
.y5b{bottom:697.918500px;}
.y34{bottom:707.017500px;}
.y2e{bottom:708.081000px;}
.y61{bottom:723.175500px;}
.y41{bottom:731.211000px;}
.y3a{bottom:734.485500px;}
.y5a{bottom:738.057000px;}
.y33{bottom:745.582500px;}
.hd{height:78.066720px;}
.h9{height:78.257812px;}
.h7{height:82.620000px;}
.hb{height:87.009645px;}
.ha{height:91.859670px;}
.h5{height:104.382879px;}
.h3{height:110.201310px;}
.hf{height:137.658690px;}
.h8{height:146.893770px;}
.hc{height:165.240000px;}
.h6{height:183.586230px;}
.he{height:201.932460px;}
.h4{height:206.614260px;}
.h2{height:362.619180px;}
.h1{height:809.956500px;}
.h0{height:810.000000px;}
.w2{width:1439.971500px;}
.w1{width:1440.000000px;}
.w0{width:1440.014173px;}
.x0{left:0.000000px;}
.x21{left:19.219500px;}
.x20{left:61.824000px;}
.x25{left:64.672500px;}
.x1e{left:70.030500px;}
.x1b{left:73.092000px;}
.x1a{left:78.831000px;}
.x3{left:82.786500px;}
.x13{left:84.019500px;}
.x14{left:87.973500px;}
.x2b{left:89.589000px;}
.x1c{left:96.562500px;}
.x15{left:100.899000px;}
.x7{left:132.916500px;}
.x2c{left:151.795500px;}
.xb{left:156.387000px;}
.xd{left:163.488000px;}
.x2f{left:164.976000px;}
.x30{left:178.413000px;}
.x4{left:180.708000px;}
.xa{left:187.171500px;}
.x27{left:190.233000px;}
.xf{left:195.888000px;}
.x28{left:197.716500px;}
.xe{left:202.479000px;}
.x29{left:206.220000px;}
.x2a{left:214.725000px;}
.x10{left:222.378000px;}
.x31{left:249.420000px;}
.x2e{left:255.373500px;}
.x18{left:271.318500px;}
.xc{left:309.586500px;}
.x12{left:310.606500px;}
.x33{left:332.802000px;}
.x1d{left:348.661500px;}
.x32{left:356.697000px;}
.x5{left:359.292000px;}
.x17{left:377.703000px;}
.x34{left:478.347000px;}
.x1f{left:509.938500px;}
.x22{left:580.096500px;}
.x1{left:611.730000px;}
.x8{left:635.584500px;}
.x2{left:644.259000px;}
.x9{left:646.384500px;}
.x26{left:658.503000px;}
.x6{left:661.180500px;}
.x23{left:664.881000px;}
.x19{left:699.279000px;}
.x16{left:704.679000px;}
.x11{left:979.228500px;}
.x2d{left:1031.272500px;}
.x24{left:1168.696500px;}
@media print{
.v1{vertical-align:-13.456000pt;}
.v2{vertical-align:-6.496000pt;}
.v3{vertical-align:-5.594667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.930704pt;}
.ls2{letter-spacing:8.834128pt;}
.ws0{word-spacing:-109.549440pt;}
.ws9{word-spacing:-61.005013pt;}
.ws3{word-spacing:-55.462507pt;}
.wsa{word-spacing:-41.587520pt;}
.ws2{word-spacing:-35.469296pt;}
.ws4{word-spacing:-33.292480pt;}
.ws8{word-spacing:-27.751360pt;}
.ws7{word-spacing:-26.592000pt;}
.ws5{word-spacing:-24.960000pt;}
.ws6{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-21.758368pt;}
._2{margin-left:-15.168384pt;}
._5{margin-left:-13.382219pt;}
._d{margin-left:-11.701696pt;}
._6{margin-left:-10.701211pt;}
._c{margin-left:-9.689221pt;}
._a{margin-left:-8.740453pt;}
._0{margin-left:-7.162848pt;}
._1{margin-left:-5.477472pt;}
._8{margin-left:-3.841440pt;}
._3{margin-left:-2.689008pt;}
._4{margin-left:-1.024384pt;}
._9{width:0.896336pt;}
._7{width:5.506064pt;}
.fs8{font-size:90.709333pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:106.736000pt;}
.fs1{font-size:128.048000pt;}
.fsa{font-size:159.952000pt;}
.fs5{font-size:170.682667pt;}
.fs7{font-size:192.000000pt;}
.fs3{font-size:213.317333pt;}
.fs9{font-size:234.634667pt;}
.fs2{font-size:240.074667pt;}
.fs0{font-size:421.344000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y46{bottom:43.616000pt;}
.y6e{bottom:50.948000pt;}
.y57{bottom:80.769333pt;}
.y59{bottom:85.190667pt;}
.y8{bottom:88.933333pt;}
.y2d{bottom:98.873333pt;}
.y56{bottom:105.260000pt;}
.y1d{bottom:115.692000pt;}
.y7{bottom:118.640000pt;}
.y6d{bottom:119.470667pt;}
.y2c{bottom:124.800000pt;}
.y55{bottom:129.752000pt;}
.y9{bottom:135.874667pt;}
.y58{bottom:142.829333pt;}
.y2b{bottom:150.728000pt;}
.y54{bottom:154.242667pt;}
.y1c{bottom:156.208000pt;}
.y32{bottom:171.969333pt;}
.y2a{bottom:176.656000pt;}
.y53{bottom:178.734667pt;}
.y6{bottom:191.925333pt;}
.y31{bottom:198.841333pt;}
.y52{bottom:203.225333pt;}
.y1b{bottom:207.345333pt;}
.y5{bottom:221.632000pt;}
.y6c{bottom:223.257333pt;}
.y30{bottom:225.713333pt;}
.y15{bottom:231.269333pt;}
.y48{bottom:247.068000pt;}
.y1a{bottom:247.861333pt;}
.y4a{bottom:248.164000pt;}
.y6b{bottom:252.057333pt;}
.y2f{bottom:252.586667pt;}
.y73{bottom:260.372000pt;}
.y14{bottom:268.422667pt;}
.y47{bottom:273.940000pt;}
.y19{bottom:298.998667pt;}
.y72{bottom:306.596000pt;}
.y29{bottom:306.670667pt;}
.y13{bottom:308.938667pt;}
.y1f{bottom:309.921333pt;}
.y4{bottom:313.209333pt;}
.y64{bottom:317.405333pt;}
.y51{bottom:325.304000pt;}
.y28{bottom:332.598667pt;}
.y60{bottom:333.128000pt;}
.y18{bottom:336.152000pt;}
.yd{bottom:338.834667pt;}
.y6a{bottom:341.481333pt;}
.y50{bottom:349.796000pt;}
.y71{bottom:352.820000pt;}
.y45{bottom:354.785333pt;}
.y44{bottom:357.204000pt;}
.yc{bottom:357.468000pt;}
.y27{bottom:358.526667pt;}
.y12{bottom:363.440000pt;}
.y5f{bottom:368.806667pt;}
.y69{bottom:370.281333pt;}
.y1e{bottom:371.678667pt;}
.y4f{bottom:374.286667pt;}
.y17{bottom:376.668000pt;}
.y26{bottom:384.454667pt;}
.y63{bottom:385.398667pt;}
.y70{bottom:399.042667pt;}
.y39{bottom:414.464000pt;}
.y11{bottom:414.538667pt;}
.y3{bottom:427.881333pt;}
.y49{bottom:433.437333pt;}
.y40{bottom:434.192000pt;}
.y10{bottom:451.692000pt;}
.y68{bottom:459.704000pt;}
.y5e{bottom:459.969333pt;}
.y38{bottom:467.490667pt;}
.y3f{bottom:485.858667pt;}
.y67{bottom:488.504000pt;}
.y25{bottom:488.580000pt;}
.yf{bottom:488.844000pt;}
.y5d{bottom:495.648000pt;}
.yb{bottom:504.869333pt;}
.y3e{bottom:513.070667pt;}
.y24{bottom:514.508000pt;}
.y6f{bottom:517.606667pt;}
.y37{bottom:519.912000pt;}
.y4e{bottom:520.894667pt;}
.y16{bottom:525.733333pt;}
.ye{bottom:529.361333pt;}
.y5c{bottom:531.326667pt;}
.y23{bottom:540.434667pt;}
.y3d{bottom:541.682667pt;}
.y2{bottom:542.552000pt;}
.y4d{bottom:545.386667pt;}
.y36{bottom:550.148000pt;}
.y22{bottom:566.362667pt;}
.y4c{bottom:569.877333pt;}
.y43{bottom:572.788000pt;}
.y66{bottom:577.928000pt;}
.y35{bottom:580.082667pt;}
.y3c{bottom:585.940000pt;}
.y21{bottom:592.290667pt;}
.y62{bottom:593.461333pt;}
.y4b{bottom:594.369333pt;}
.y42{bottom:601.588000pt;}
.y65{bottom:606.728000pt;}
.y20{bottom:618.217333pt;}
.ya{bottom:618.256000pt;}
.y3b{bottom:618.596000pt;}
.y5b{bottom:620.372000pt;}
.y34{bottom:628.460000pt;}
.y2e{bottom:629.405333pt;}
.y61{bottom:642.822667pt;}
.y41{bottom:649.965333pt;}
.y3a{bottom:652.876000pt;}
.y5a{bottom:656.050667pt;}
.y33{bottom:662.740000pt;}
.hd{height:69.392640pt;}
.h9{height:69.562500pt;}
.h7{height:73.440000pt;}
.hb{height:77.341906pt;}
.ha{height:81.653040pt;}
.h5{height:92.784781pt;}
.h3{height:97.956720pt;}
.hf{height:122.363280pt;}
.h8{height:130.572240pt;}
.hc{height:146.880000pt;}
.h6{height:163.187760pt;}
.he{height:179.495520pt;}
.h4{height:183.657120pt;}
.h2{height:322.328160pt;}
.h1{height:719.961333pt;}
.h0{height:720.000000pt;}
.w2{width:1279.974667pt;}
.w1{width:1280.000000pt;}
.w0{width:1280.012598pt;}
.x0{left:0.000000pt;}
.x21{left:17.084000pt;}
.x20{left:54.954667pt;}
.x25{left:57.486667pt;}
.x1e{left:62.249333pt;}
.x1b{left:64.970667pt;}
.x1a{left:70.072000pt;}
.x3{left:73.588000pt;}
.x13{left:74.684000pt;}
.x14{left:78.198667pt;}
.x2b{left:79.634667pt;}
.x1c{left:85.833333pt;}
.x15{left:89.688000pt;}
.x7{left:118.148000pt;}
.x2c{left:134.929333pt;}
.xb{left:139.010667pt;}
.xd{left:145.322667pt;}
.x2f{left:146.645333pt;}
.x30{left:158.589333pt;}
.x4{left:160.629333pt;}
.xa{left:166.374667pt;}
.x27{left:169.096000pt;}
.xf{left:174.122667pt;}
.x28{left:175.748000pt;}
.xe{left:179.981333pt;}
.x29{left:183.306667pt;}
.x2a{left:190.866667pt;}
.x10{left:197.669333pt;}
.x31{left:221.706667pt;}
.x2e{left:226.998667pt;}
.x18{left:241.172000pt;}
.xc{left:275.188000pt;}
.x12{left:276.094667pt;}
.x33{left:295.824000pt;}
.x1d{left:309.921333pt;}
.x32{left:317.064000pt;}
.x5{left:319.370667pt;}
.x17{left:335.736000pt;}
.x34{left:425.197333pt;}
.x1f{left:453.278667pt;}
.x22{left:515.641333pt;}
.x1{left:543.760000pt;}
.x8{left:564.964000pt;}
.x2{left:572.674667pt;}
.x9{left:574.564000pt;}
.x26{left:585.336000pt;}
.x6{left:587.716000pt;}
.x23{left:591.005333pt;}
.x19{left:621.581333pt;}
.x16{left:626.381333pt;}
.x11{left:870.425333pt;}
.x2d{left:916.686667pt;}
.x24{left:1038.841333pt;}
}




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