
    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_68add9fa445968fa76fd9c35.woff')format("woff");}.ff1{font-family:ff1;line-height:0.937012;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_95edf41a779d7737ca9e2d84.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_02a96f0f3d65bf5b4212f4c1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_5a2cbc2d067b1f21bf41e717.woff')format("woff");}.ff4{font-family:ff4;line-height:0.863770;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_aa2a71cfac68b8bbd6facbd8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.ls11{letter-spacing:-0.198720px;}
.ls17{letter-spacing:-0.185472px;}
.ls16{letter-spacing:-0.178848px;}
.ls10{letter-spacing:-0.165600px;}
.ls4{letter-spacing:-0.158976px;}
.ls8{letter-spacing:-0.152352px;}
.ls7{letter-spacing:-0.145728px;}
.ls1c{letter-spacing:-0.139104px;}
.ls14{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.125856px;}
.ls1d{letter-spacing:-0.119232px;}
.ls15{letter-spacing:-0.112608px;}
.ls12{letter-spacing:-0.105984px;}
.ls9{letter-spacing:-0.099360px;}
.ls1b{letter-spacing:-0.092736px;}
.ls13{letter-spacing:-0.079488px;}
.ls6{letter-spacing:-0.066240px;}
.lsa{letter-spacing:-0.052992px;}
.lsb{letter-spacing:-0.046368px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.091872px;}
.lse{letter-spacing:0.125280px;}
.lsd{letter-spacing:0.183744px;}
.ls1{letter-spacing:0.192096px;}
.ls18{letter-spacing:0.200448px;}
.ls1a{letter-spacing:0.217152px;}
.ls0{letter-spacing:0.225504px;}
.ls2{letter-spacing:0.242208px;}
.ls19{letter-spacing:0.250560px;}
.lsc{letter-spacing:0.275616px;}
.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;}
}
.ws7{word-spacing:-19.151136px;}
.ws8{word-spacing:-19.117728px;}
.ws13{word-spacing:-19.092672px;}
.ws5{word-spacing:-0.066240px;}
.ws6{word-spacing:-0.019872px;}
.ws4{word-spacing:-0.013248px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.013248px;}
.ws14{word-spacing:0.026496px;}
.ws3{word-spacing:0.033120px;}
.wsc{word-spacing:0.039744px;}
.ws10{word-spacing:0.046368px;}
.ws16{word-spacing:0.052992px;}
.ws9{word-spacing:0.059616px;}
.wsf{word-spacing:0.066240px;}
.ws15{word-spacing:0.072864px;}
.ws1{word-spacing:0.079488px;}
.ws2{word-spacing:0.086112px;}
.wsd{word-spacing:0.092736px;}
.wsa{word-spacing:0.099360px;}
.ws11{word-spacing:0.112608px;}
.ws12{word-spacing:0.119232px;}
.wsb{word-spacing:0.132480px;}
._1{margin-left:-1.103040px;}
._0{width:1.059840px;}
.fc3{color:transparent;}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(54,95,145);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:83.520000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.780000px;}
.y13{bottom:3.840000px;}
.y36{bottom:3.960000px;}
.y49{bottom:4.020000px;}
.y31{bottom:4.080000px;}
.y5e{bottom:4.140000px;}
.y21{bottom:4.200000px;}
.yd{bottom:4.320000px;}
.y11{bottom:4.500000px;}
.y3e{bottom:4.740000px;}
.y29{bottom:4.800000px;}
.y3a{bottom:4.920000px;}
.y53{bottom:4.980000px;}
.y4e{bottom:5.100000px;}
.yf{bottom:5.160000px;}
.y18{bottom:5.220000px;}
.y35{bottom:23.040000px;}
.y30{bottom:23.160000px;}
.y48{bottom:23.460000px;}
.y5d{bottom:23.580000px;}
.y20{bottom:23.640000px;}
.y5a{bottom:23.760000px;}
.y44{bottom:23.820000px;}
.y55{bottom:23.880000px;}
.y3d{bottom:24.180000px;}
.y28{bottom:24.240000px;}
.y39{bottom:24.360000px;}
.y52{bottom:24.420000px;}
.y4d{bottom:24.540000px;}
.y34{bottom:42.480000px;}
.y47{bottom:42.540000px;}
.y2f{bottom:42.600000px;}
.y5c{bottom:42.660000px;}
.y1f{bottom:43.080000px;}
.y59{bottom:43.200000px;}
.y43{bottom:43.260000px;}
.y27{bottom:43.320000px;}
.y51{bottom:43.500000px;}
.y3c{bottom:43.620000px;}
.y38{bottom:43.800000px;}
.y33{bottom:61.920000px;}
.y2e{bottom:62.040000px;}
.y58{bottom:62.280000px;}
.y1e{bottom:62.520000px;}
.y26{bottom:62.760000px;}
.y50{bottom:62.940000px;}
.y2d{bottom:81.480000px;}
.y1d{bottom:81.600000px;}
.y57{bottom:81.720000px;}
.y25{bottom:82.200000px;}
.y1c{bottom:101.040000px;}
.y24{bottom:101.280000px;}
.y1b{bottom:120.480000px;}
.y23{bottom:120.720000px;}
.y1a{bottom:139.920000px;}
.y54{bottom:159.000000px;}
.y19{bottom:165.000000px;}
.y3b{bottom:178.500000px;}
.y4f{bottom:217.500000px;}
.y37{bottom:237.000000px;}
.y66{bottom:246.600000px;}
.y65{bottom:280.800000px;}
.y4c{bottom:295.500000px;}
.y32{bottom:297.000000px;}
.y64{bottom:315.360000px;}
.y17{bottom:319.500000px;}
.y4b{bottom:345.600000px;}
.y16{bottom:350.640000px;}
.y63{bottom:352.440000px;}
.y2c{bottom:375.000000px;}
.y4a{bottom:387.360000px;}
.y62{bottom:389.880000px;}
.y15{bottom:392.400000px;}
.y46{bottom:403.500000px;}
.y14{bottom:417.240000px;}
.y61{bottom:426.960000px;}
.y12{bottom:453.000000px;}
.y45{bottom:462.000000px;}
.y60{bottom:464.040000px;}
.y10{bottom:472.500000px;}
.ye{bottom:492.000000px;}
.y5f{bottom:501.480000px;}
.y2a{bottom:502.200000px;}
.yc{bottom:513.000000px;}
.y5b{bottom:517.500000px;}
.y42{bottom:520.500000px;}
.y22{bottom:537.000000px;}
.yb{bottom:542.880000px;}
.y56{bottom:576.000000px;}
.y41{bottom:579.000000px;}
.ya{bottom:584.640000px;}
.y40{bottom:609.480000px;}
.y9{bottom:612.720000px;}
.y3f{bottom:654.120000px;}
.y8{bottom:677.880000px;}
.y7{bottom:697.320000px;}
.y6{bottom:734.400000px;}
.y5{bottom:771.120000px;}
.y4{bottom:790.200000px;}
.y3{bottom:809.640000px;}
.y2{bottom:829.080000px;}
.y1{bottom:848.160000px;}
.h8{height:19.500000px;}
.h5{height:21.000000px;}
.hd{height:40.500000px;}
.h1{height:47.610000px;}
.h2{height:48.224531px;}
.h4{height:57.256875px;}
.hc{height:58.500000px;}
.hb{height:60.000000px;}
.h3{height:73.406250px;}
.ha{height:78.000000px;}
.he{height:79.500000px;}
.h9{height:97.500000px;}
.h7{height:136.500000px;}
.h6{height:156.000000px;}
.h0{height:918.000000px;}
.w9{width:55.500000px;}
.w6{width:96.000000px;}
.wf{width:102.000000px;}
.wd{width:105.000000px;}
.w8{width:115.500000px;}
.wb{width:123.000000px;}
.w11{width:135.000000px;}
.w3{width:159.000000px;}
.w7{width:162.000000px;}
.w4{width:171.000000px;}
.wa{width:183.000000px;}
.w10{width:196.500000px;}
.w2{width:250.500000px;}
.wc{width:256.500000px;}
.w1{width:400.500000px;}
.w12{width:439.500000px;}
.w5{width:486.000000px;}
.we{width:553.500000px;}
.w0{width:1188.000000px;}
.x0{left:0.000000px;}
.x5{left:8.640036px;}
.x1{left:108.000000px;}
.xa{left:204.000000px;}
.x11{left:208.500000px;}
.x7{left:265.500000px;}
.x4{left:280.322748px;}
.xb{left:366.000000px;}
.x3{left:390.453120px;}
.x2{left:397.800720px;}
.x12{left:405.000000px;}
.x8{left:423.000000px;}
.xc{left:480.000000px;}
.x6{left:507.000000px;}
.x10{left:526.500000px;}
.xd{left:534.000000px;}
.x13{left:540.000000px;}
.x9{left:594.000000px;}
.x14{left:640.500000px;}
.xe{left:717.000000px;}
.xf{left:838.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.176640pt;}
.ls17{letter-spacing:-0.164864pt;}
.ls16{letter-spacing:-0.158976pt;}
.ls10{letter-spacing:-0.147200pt;}
.ls4{letter-spacing:-0.141312pt;}
.ls8{letter-spacing:-0.135424pt;}
.ls7{letter-spacing:-0.129536pt;}
.ls1c{letter-spacing:-0.123648pt;}
.ls14{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.111872pt;}
.ls1d{letter-spacing:-0.105984pt;}
.ls15{letter-spacing:-0.100096pt;}
.ls12{letter-spacing:-0.094208pt;}
.ls9{letter-spacing:-0.088320pt;}
.ls1b{letter-spacing:-0.082432pt;}
.ls13{letter-spacing:-0.070656pt;}
.ls6{letter-spacing:-0.058880pt;}
.lsa{letter-spacing:-0.047104pt;}
.lsb{letter-spacing:-0.041216pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.081664pt;}
.lse{letter-spacing:0.111360pt;}
.lsd{letter-spacing:0.163328pt;}
.ls1{letter-spacing:0.170752pt;}
.ls18{letter-spacing:0.178176pt;}
.ls1a{letter-spacing:0.193024pt;}
.ls0{letter-spacing:0.200448pt;}
.ls2{letter-spacing:0.215296pt;}
.ls19{letter-spacing:0.222720pt;}
.lsc{letter-spacing:0.244992pt;}
.ws7{word-spacing:-17.023232pt;}
.ws8{word-spacing:-16.993536pt;}
.ws13{word-spacing:-16.971264pt;}
.ws5{word-spacing:-0.058880pt;}
.ws6{word-spacing:-0.017664pt;}
.ws4{word-spacing:-0.011776pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.011776pt;}
.ws14{word-spacing:0.023552pt;}
.ws3{word-spacing:0.029440pt;}
.wsc{word-spacing:0.035328pt;}
.ws10{word-spacing:0.041216pt;}
.ws16{word-spacing:0.047104pt;}
.ws9{word-spacing:0.052992pt;}
.wsf{word-spacing:0.058880pt;}
.ws15{word-spacing:0.064768pt;}
.ws1{word-spacing:0.070656pt;}
.ws2{word-spacing:0.076544pt;}
.wsd{word-spacing:0.082432pt;}
.wsa{word-spacing:0.088320pt;}
.ws11{word-spacing:0.100096pt;}
.ws12{word-spacing:0.105984pt;}
.wsb{word-spacing:0.117760pt;}
._1{margin-left:-0.980480pt;}
._0{width:0.942080pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:74.240000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:3.360000pt;}
.y13{bottom:3.413333pt;}
.y36{bottom:3.520000pt;}
.y49{bottom:3.573333pt;}
.y31{bottom:3.626667pt;}
.y5e{bottom:3.680000pt;}
.y21{bottom:3.733333pt;}
.yd{bottom:3.840000pt;}
.y11{bottom:4.000000pt;}
.y3e{bottom:4.213333pt;}
.y29{bottom:4.266667pt;}
.y3a{bottom:4.373333pt;}
.y53{bottom:4.426667pt;}
.y4e{bottom:4.533333pt;}
.yf{bottom:4.586667pt;}
.y18{bottom:4.640000pt;}
.y35{bottom:20.480000pt;}
.y30{bottom:20.586667pt;}
.y48{bottom:20.853333pt;}
.y5d{bottom:20.960000pt;}
.y20{bottom:21.013333pt;}
.y5a{bottom:21.120000pt;}
.y44{bottom:21.173333pt;}
.y55{bottom:21.226667pt;}
.y3d{bottom:21.493333pt;}
.y28{bottom:21.546667pt;}
.y39{bottom:21.653333pt;}
.y52{bottom:21.706667pt;}
.y4d{bottom:21.813333pt;}
.y34{bottom:37.760000pt;}
.y47{bottom:37.813333pt;}
.y2f{bottom:37.866667pt;}
.y5c{bottom:37.920000pt;}
.y1f{bottom:38.293333pt;}
.y59{bottom:38.400000pt;}
.y43{bottom:38.453333pt;}
.y27{bottom:38.506667pt;}
.y51{bottom:38.666667pt;}
.y3c{bottom:38.773333pt;}
.y38{bottom:38.933333pt;}
.y33{bottom:55.040000pt;}
.y2e{bottom:55.146667pt;}
.y58{bottom:55.360000pt;}
.y1e{bottom:55.573333pt;}
.y26{bottom:55.786667pt;}
.y50{bottom:55.946667pt;}
.y2d{bottom:72.426667pt;}
.y1d{bottom:72.533333pt;}
.y57{bottom:72.640000pt;}
.y25{bottom:73.066667pt;}
.y1c{bottom:89.813333pt;}
.y24{bottom:90.026667pt;}
.y1b{bottom:107.093333pt;}
.y23{bottom:107.306667pt;}
.y1a{bottom:124.373333pt;}
.y54{bottom:141.333333pt;}
.y19{bottom:146.666667pt;}
.y3b{bottom:158.666667pt;}
.y4f{bottom:193.333333pt;}
.y37{bottom:210.666667pt;}
.y66{bottom:219.200000pt;}
.y65{bottom:249.600000pt;}
.y4c{bottom:262.666667pt;}
.y32{bottom:264.000000pt;}
.y64{bottom:280.320000pt;}
.y17{bottom:284.000000pt;}
.y4b{bottom:307.200000pt;}
.y16{bottom:311.680000pt;}
.y63{bottom:313.280000pt;}
.y2c{bottom:333.333333pt;}
.y4a{bottom:344.320000pt;}
.y62{bottom:346.560000pt;}
.y15{bottom:348.800000pt;}
.y46{bottom:358.666667pt;}
.y14{bottom:370.880000pt;}
.y61{bottom:379.520000pt;}
.y12{bottom:402.666667pt;}
.y45{bottom:410.666667pt;}
.y60{bottom:412.480000pt;}
.y10{bottom:420.000000pt;}
.ye{bottom:437.333333pt;}
.y5f{bottom:445.760000pt;}
.y2a{bottom:446.400000pt;}
.yc{bottom:456.000000pt;}
.y5b{bottom:460.000000pt;}
.y42{bottom:462.666667pt;}
.y22{bottom:477.333333pt;}
.yb{bottom:482.560000pt;}
.y56{bottom:512.000000pt;}
.y41{bottom:514.666667pt;}
.ya{bottom:519.680000pt;}
.y40{bottom:541.760000pt;}
.y9{bottom:544.640000pt;}
.y3f{bottom:581.440000pt;}
.y8{bottom:602.560000pt;}
.y7{bottom:619.840000pt;}
.y6{bottom:652.800000pt;}
.y5{bottom:685.440000pt;}
.y4{bottom:702.400000pt;}
.y3{bottom:719.680000pt;}
.y2{bottom:736.960000pt;}
.y1{bottom:753.920000pt;}
.h8{height:17.333333pt;}
.h5{height:18.666667pt;}
.hd{height:36.000000pt;}
.h1{height:42.320000pt;}
.h2{height:42.866250pt;}
.h4{height:50.895000pt;}
.hc{height:52.000000pt;}
.hb{height:53.333333pt;}
.h3{height:65.250000pt;}
.ha{height:69.333333pt;}
.he{height:70.666667pt;}
.h9{height:86.666667pt;}
.h7{height:121.333333pt;}
.h6{height:138.666667pt;}
.h0{height:816.000000pt;}
.w9{width:49.333333pt;}
.w6{width:85.333333pt;}
.wf{width:90.666667pt;}
.wd{width:93.333333pt;}
.w8{width:102.666667pt;}
.wb{width:109.333333pt;}
.w11{width:120.000000pt;}
.w3{width:141.333333pt;}
.w7{width:144.000000pt;}
.w4{width:152.000000pt;}
.wa{width:162.666667pt;}
.w10{width:174.666667pt;}
.w2{width:222.666667pt;}
.wc{width:228.000000pt;}
.w1{width:356.000000pt;}
.w12{width:390.666667pt;}
.w5{width:432.000000pt;}
.we{width:492.000000pt;}
.w0{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680032pt;}
.x1{left:96.000000pt;}
.xa{left:181.333333pt;}
.x11{left:185.333333pt;}
.x7{left:236.000000pt;}
.x4{left:249.175776pt;}
.xb{left:325.333333pt;}
.x3{left:347.069440pt;}
.x2{left:353.600640pt;}
.x12{left:360.000000pt;}
.x8{left:376.000000pt;}
.xc{left:426.666667pt;}
.x6{left:450.666667pt;}
.x10{left:468.000000pt;}
.xd{left:474.666667pt;}
.x13{left:480.000000pt;}
.x9{left:528.000000pt;}
.x14{left:569.333333pt;}
.xe{left:637.333333pt;}
.xf{left:745.333333pt;}
}




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