
    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_b65126556dffc643f57e3a0b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_d724d44116fbd71d9d46719f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_e223fdcf2dab33e0af433149.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_998060918bc56eb6303a192a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a67bd0b309925cf7bd27bc91.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_92c45b4d78067d1a0f153258.woff')format("woff");}.ff6{font-family:ff6;line-height:0.768555;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_ec5f2cde831ebd08fb098945.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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:-96.480000px;}
.v2{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.684000px;}
.lse{letter-spacing:-0.378600px;}
.ls12{letter-spacing:-0.350400px;}
.lsf{letter-spacing:-0.341400px;}
.ls6{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.161400px;}
.ls10{letter-spacing:-0.037440px;}
.ls13{letter-spacing:-0.028080px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.ls7{letter-spacing:0.157440px;}
.ls8{letter-spacing:0.360000px;}
.ls17{letter-spacing:2.700000px;}
.ls16{letter-spacing:3.420000px;}
.lsa{letter-spacing:35.820000px;}
.lsb{letter-spacing:35.940000px;}
.ls9{letter-spacing:36.000000px;}
.lsc{letter-spacing:68.220000px;}
.ls14{letter-spacing:168.101280px;}
.ls1{letter-spacing:293.760000px;}
.ls3{letter-spacing:354.036000px;}
.ls0{letter-spacing:449.796000px;}
.ls2{letter-spacing:1258.716000px;}
.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;}
}
.ws3{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.wsa{word-spacing:-21.031920px;}
.ws7{word-spacing:-21.022560px;}
.ws8{word-spacing:-20.898600px;}
.ws6{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.709600px;}
.ws5{word-spacing:-20.681400px;}
.ws4{word-spacing:-20.376000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._22{margin-left:-6.552240px;}
._3{margin-left:-5.064480px;}
._2{margin-left:-3.875040px;}
._13{margin-left:-2.695680px;}
._0{margin-left:-1.432080px;}
._1{width:1.273680px;}
._4{width:2.402640px;}
._c{width:3.959280px;}
._19{width:5.559840px;}
._1f{width:6.739200px;}
._6{width:7.750080px;}
._7{width:8.835120px;}
._18{width:9.970560px;}
._1e{width:11.039040px;}
._10{width:12.046320px;}
._5{width:13.983840px;}
._e{width:15.331680px;}
._23{width:16.511040px;}
._29{width:17.554800px;}
._9{width:18.701280px;}
._8{width:19.880640px;}
._11{width:22.155120px;}
._12{width:23.155680px;}
._a{width:24.536160px;}
._b{width:25.746960px;}
._d{width:26.826960px;}
._f{width:28.181760px;}
._1d{width:29.224320px;}
._28{width:31.068960px;}
._27{width:32.111040px;}
._1c{width:33.274800px;}
._24{width:35.128080px;}
._21{width:37.908000px;}
._20{width:38.918880px;}
._2a{width:40.930560px;}
._15{width:43.383600px;}
._14{width:44.731440px;}
._26{width:46.311840px;}
._25{width:47.679840px;}
._2c{width:60.821280px;}
._2b{width:62.506080px;}
._1b{width:74.468160px;}
._2d{width:77.669280px;}
._38{width:83.387520px;}
._31{width:84.408480px;}
._30{width:85.587840px;}
._36{width:94.180320px;}
._35{width:112.291920px;}
._34{width:113.306400px;}
._16{width:121.979520px;}
._17{width:123.664320px;}
._1a{width:159.466320px;}
._37{width:272.516400px;}
._2f{width:324.239760px;}
._2e{width:368.708400px;}
._33{width:464.499360px;}
._32{width:466.099920px;}
.fc4{color:rgb(46,116,181);}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y10{bottom:76.176000px;}
.yf{bottom:95.256000px;}
.ye{bottom:114.156000px;}
.yd{bottom:133.056000px;}
.yc{bottom:152.130000px;}
.y5a{bottom:183.090000px;}
.y53{bottom:193.890000px;}
.y40{bottom:196.410000px;}
.y2a{bottom:199.470000px;}
.y59{bottom:210.810000px;}
.y52{bottom:230.070000px;}
.y3f{bottom:232.590000px;}
.y29{bottom:235.650000px;}
.y58{bottom:238.710000px;}
.y51{bottom:266.250000px;}
.y57{bottom:266.430000px;}
.y3e{bottom:268.770000px;}
.y28{bottom:272.010000px;}
.y56{bottom:294.150000px;}
.y50{bottom:302.610000px;}
.y3d{bottom:304.950000px;}
.y27{bottom:308.190000px;}
.y55{bottom:321.870000px;}
.y4f{bottom:338.835000px;}
.y3c{bottom:341.355000px;}
.y26{bottom:344.415000px;}
.y54{bottom:349.815000px;}
.y4e{bottom:375.015000px;}
.y3b{bottom:377.535000px;}
.y25{bottom:380.595000px;}
.y4d{bottom:411.195000px;}
.y3a{bottom:413.715000px;}
.y24{bottom:416.955000px;}
.y4c{bottom:447.555000px;}
.y39{bottom:449.895000px;}
.y23{bottom:453.135000px;}
.y4b{bottom:483.735000px;}
.y38{bottom:486.255000px;}
.y22{bottom:489.315000px;}
.y4a{bottom:519.915000px;}
.y37{bottom:522.435000px;}
.y21{bottom:525.495000px;}
.y20{bottom:549.615000px;}
.y49{bottom:556.095000px;}
.y36{bottom:558.615000px;}
.y1f{bottom:573.915000px;}
.y48{bottom:592.455000px;}
.y35{bottom:594.795000px;}
.y1e{bottom:598.035000px;}
.y1d{bottom:622.185000px;}
.y66{bottom:627.945000px;}
.y47{bottom:628.665000px;}
.y34{bottom:631.185000px;}
.y1c{bottom:646.305000px;}
.y65{bottom:651.705000px;}
.y46{bottom:664.845000px;}
.y33{bottom:667.365000px;}
.y1b{bottom:670.425000px;}
.y64{bottom:679.425000px;}
.y1a{bottom:694.545000px;}
.y45{bottom:701.025000px;}
.y32{bottom:703.545000px;}
.y63{bottom:707.145000px;}
.y19{bottom:718.845000px;}
.y62{bottom:734.865000px;}
.y44{bottom:737.205000px;}
.y31{bottom:739.725000px;}
.y18{bottom:742.965000px;}
.y61{bottom:762.765000px;}
.y43{bottom:773.565000px;}
.y30{bottom:775.905000px;}
.y60{bottom:790.485000px;}
.y17{bottom:791.205000px;}
.y42{bottom:809.745000px;}
.y2f{bottom:812.265000px;}
.y16{bottom:815.325000px;}
.y5f{bottom:818.205000px;}
.y15{bottom:839.085000px;}
.y41{bottom:845.925000px;}
.y5e{bottom:846.105000px;}
.y2e{bottom:848.445000px;}
.y14{bottom:863.205000px;}
.y5d{bottom:873.870000px;}
.y2d{bottom:884.670000px;}
.y5c{bottom:901.590000px;}
.y13{bottom:908.430000px;}
.y2c{bottom:920.850000px;}
.y5b{bottom:929.310000px;}
.y12{bottom:932.550000px;}
.y11{bottom:956.850000px;}
.y2b{bottom:957.210000px;}
.yb{bottom:980.250000px;}
.ya{bottom:999.150000px;}
.y9{bottom:1018.230000px;}
.y8{bottom:1055.850000px;}
.y7{bottom:1094.010000px;}
.y6{bottom:1112.730000px;}
.y5{bottom:1131.630000px;}
.y4{bottom:1150.740000px;}
.y3{bottom:1169.640000px;}
.y2{bottom:1188.720000px;}
.y1{bottom:1232.820000px;}
.h8{height:59.117344px;}
.h3{height:64.978594px;}
.h5{height:65.010937px;}
.h4{height:66.757500px;}
.h7{height:74.244727px;}
.h6{height:82.676953px;}
.h2{height:84.898125px;}
.h9{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x8{left:145.655987px;}
.x9{left:160.049987px;}
.xd{left:168.329987px;}
.xf{left:180.749987px;}
.xe{left:221.429987px;}
.x5{left:270.209987px;}
.xc{left:308.774987px;}
.x4{left:324.074987px;}
.x6{left:344.234987px;}
.xa{left:353.954987px;}
.x2{left:364.934987px;}
.x3{left:382.574987px;}
.x10{left:452.594987px;}
.x11{left:470.264987px;}
.x7{left:474.404987px;}
.xb{left:478.544987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v2{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.608000pt;}
.lse{letter-spacing:-0.336533pt;}
.ls12{letter-spacing:-0.311467pt;}
.lsf{letter-spacing:-0.303467pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.143467pt;}
.ls10{letter-spacing:-0.033280pt;}
.ls13{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.ls7{letter-spacing:0.139947pt;}
.ls8{letter-spacing:0.320000pt;}
.ls17{letter-spacing:2.400000pt;}
.ls16{letter-spacing:3.040000pt;}
.lsa{letter-spacing:31.840000pt;}
.lsb{letter-spacing:31.946667pt;}
.ls9{letter-spacing:32.000000pt;}
.lsc{letter-spacing:60.640000pt;}
.ls14{letter-spacing:149.423360pt;}
.ls1{letter-spacing:261.120000pt;}
.ls3{letter-spacing:314.698667pt;}
.ls0{letter-spacing:399.818667pt;}
.ls2{letter-spacing:1118.858667pt;}
.ws3{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.695040pt;}
.ws7{word-spacing:-18.686720pt;}
.ws8{word-spacing:-18.576533pt;}
.ws6{word-spacing:-18.416533pt;}
.ws9{word-spacing:-18.408533pt;}
.ws5{word-spacing:-18.383467pt;}
.ws4{word-spacing:-18.112000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._22{margin-left:-5.824213pt;}
._3{margin-left:-4.501760pt;}
._2{margin-left:-3.444480pt;}
._13{margin-left:-2.396160pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.132160pt;}
._4{width:2.135680pt;}
._c{width:3.519360pt;}
._19{width:4.942080pt;}
._1f{width:5.990400pt;}
._6{width:6.888960pt;}
._7{width:7.853440pt;}
._18{width:8.862720pt;}
._1e{width:9.812480pt;}
._10{width:10.707840pt;}
._5{width:12.430080pt;}
._e{width:13.628160pt;}
._23{width:14.676480pt;}
._29{width:15.604267pt;}
._9{width:16.623360pt;}
._8{width:17.671680pt;}
._11{width:19.693440pt;}
._12{width:20.582827pt;}
._a{width:21.809920pt;}
._b{width:22.886187pt;}
._d{width:23.846187pt;}
._f{width:25.050453pt;}
._1d{width:25.977173pt;}
._28{width:27.616853pt;}
._27{width:28.543147pt;}
._1c{width:29.577600pt;}
._24{width:31.224960pt;}
._21{width:33.696000pt;}
._20{width:34.594560pt;}
._2a{width:36.382720pt;}
._15{width:38.563200pt;}
._14{width:39.761280pt;}
._26{width:41.166080pt;}
._25{width:42.382080pt;}
._2c{width:54.063360pt;}
._2b{width:55.560960pt;}
._1b{width:66.193920pt;}
._2d{width:69.039360pt;}
._38{width:74.122240pt;}
._31{width:75.029760pt;}
._30{width:76.078080pt;}
._36{width:83.715840pt;}
._35{width:99.815040pt;}
._34{width:100.716800pt;}
._16{width:108.426240pt;}
._17{width:109.923840pt;}
._1a{width:141.747840pt;}
._37{width:242.236800pt;}
._2f{width:288.213120pt;}
._2e{width:327.740800pt;}
._33{width:412.888320pt;}
._32{width:414.311040pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:67.712000pt;}
.yf{bottom:84.672000pt;}
.ye{bottom:101.472000pt;}
.yd{bottom:118.272000pt;}
.yc{bottom:135.226667pt;}
.y5a{bottom:162.746667pt;}
.y53{bottom:172.346667pt;}
.y40{bottom:174.586667pt;}
.y2a{bottom:177.306667pt;}
.y59{bottom:187.386667pt;}
.y52{bottom:204.506667pt;}
.y3f{bottom:206.746667pt;}
.y29{bottom:209.466667pt;}
.y58{bottom:212.186667pt;}
.y51{bottom:236.666667pt;}
.y57{bottom:236.826667pt;}
.y3e{bottom:238.906667pt;}
.y28{bottom:241.786667pt;}
.y56{bottom:261.466667pt;}
.y50{bottom:268.986667pt;}
.y3d{bottom:271.066667pt;}
.y27{bottom:273.946667pt;}
.y55{bottom:286.106667pt;}
.y4f{bottom:301.186667pt;}
.y3c{bottom:303.426667pt;}
.y26{bottom:306.146667pt;}
.y54{bottom:310.946667pt;}
.y4e{bottom:333.346667pt;}
.y3b{bottom:335.586667pt;}
.y25{bottom:338.306667pt;}
.y4d{bottom:365.506667pt;}
.y3a{bottom:367.746667pt;}
.y24{bottom:370.626667pt;}
.y4c{bottom:397.826667pt;}
.y39{bottom:399.906667pt;}
.y23{bottom:402.786667pt;}
.y4b{bottom:429.986667pt;}
.y38{bottom:432.226667pt;}
.y22{bottom:434.946667pt;}
.y4a{bottom:462.146667pt;}
.y37{bottom:464.386667pt;}
.y21{bottom:467.106667pt;}
.y20{bottom:488.546667pt;}
.y49{bottom:494.306667pt;}
.y36{bottom:496.546667pt;}
.y1f{bottom:510.146667pt;}
.y48{bottom:526.626667pt;}
.y35{bottom:528.706667pt;}
.y1e{bottom:531.586667pt;}
.y1d{bottom:553.053333pt;}
.y66{bottom:558.173333pt;}
.y47{bottom:558.813333pt;}
.y34{bottom:561.053333pt;}
.y1c{bottom:574.493333pt;}
.y65{bottom:579.293333pt;}
.y46{bottom:590.973333pt;}
.y33{bottom:593.213333pt;}
.y1b{bottom:595.933333pt;}
.y64{bottom:603.933333pt;}
.y1a{bottom:617.373333pt;}
.y45{bottom:623.133333pt;}
.y32{bottom:625.373333pt;}
.y63{bottom:628.573333pt;}
.y19{bottom:638.973333pt;}
.y62{bottom:653.213333pt;}
.y44{bottom:655.293333pt;}
.y31{bottom:657.533333pt;}
.y18{bottom:660.413333pt;}
.y61{bottom:678.013333pt;}
.y43{bottom:687.613333pt;}
.y30{bottom:689.693333pt;}
.y60{bottom:702.653333pt;}
.y17{bottom:703.293333pt;}
.y42{bottom:719.773333pt;}
.y2f{bottom:722.013333pt;}
.y16{bottom:724.733333pt;}
.y5f{bottom:727.293333pt;}
.y15{bottom:745.853333pt;}
.y41{bottom:751.933333pt;}
.y5e{bottom:752.093333pt;}
.y2e{bottom:754.173333pt;}
.y14{bottom:767.293333pt;}
.y5d{bottom:776.773333pt;}
.y2d{bottom:786.373333pt;}
.y5c{bottom:801.413333pt;}
.y13{bottom:807.493333pt;}
.y2c{bottom:818.533333pt;}
.y5b{bottom:826.053333pt;}
.y12{bottom:828.933333pt;}
.y11{bottom:850.533333pt;}
.y2b{bottom:850.853333pt;}
.yb{bottom:871.333333pt;}
.ya{bottom:888.133333pt;}
.y9{bottom:905.093333pt;}
.y8{bottom:938.533333pt;}
.y7{bottom:972.453333pt;}
.y6{bottom:989.093333pt;}
.y5{bottom:1005.893333pt;}
.y4{bottom:1022.880000pt;}
.y3{bottom:1039.680000pt;}
.y2{bottom:1056.640000pt;}
.y1{bottom:1095.840000pt;}
.h8{height:52.548750pt;}
.h3{height:57.758750pt;}
.h5{height:57.787500pt;}
.h4{height:59.340000pt;}
.h7{height:65.995312pt;}
.h6{height:73.490625pt;}
.h2{height:75.465000pt;}
.h9{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x8{left:129.471988pt;}
.x9{left:142.266655pt;}
.xd{left:149.626655pt;}
.xf{left:160.666655pt;}
.xe{left:196.826655pt;}
.x5{left:240.186655pt;}
.xc{left:274.466655pt;}
.x4{left:288.066655pt;}
.x6{left:305.986655pt;}
.xa{left:314.626655pt;}
.x2{left:324.386655pt;}
.x3{left:340.066655pt;}
.x10{left:402.306655pt;}
.x11{left:418.013322pt;}
.x7{left:421.693322pt;}
.xb{left:425.373322pt;}
}




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