
    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_7ed4dd12671f914d072d90d1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_a8a79f391f94e48e0934ad94.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_23e94f1cbfb15f3309286eb9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.878000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:19.913430px;}
.ls0{letter-spacing:25.392770px;}
.ls5{letter-spacing:209.747430px;}
.ls4{letter-spacing:219.599430px;}
.ls1{letter-spacing:377.219430px;}
.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;}
}
.wsd{word-spacing:-71.731020px;}
.ws1{word-spacing:-54.486868px;}
.ws9{word-spacing:-47.820660px;}
.ws8{word-spacing:-45.405736px;}
.ws6{word-spacing:-30.939967px;}
.ws3{word-spacing:-30.892146px;}
.ws2{word-spacing:-30.270478px;}
.ws5{word-spacing:-25.344950px;}
.ws4{word-spacing:-25.297129px;}
.ws7{word-spacing:-22.307732px;}
.ws0{word-spacing:-19.337484px;}
.wsb{word-spacing:0.000000px;}
.wsa{word-spacing:460.130391px;}
.wse{word-spacing:462.760527px;}
.wsc{word-spacing:526.792391px;}
._a{margin-left:-25.793268px;}
._4{margin-left:-24.771102px;}
._36{margin-left:-6.599254px;}
._c{margin-left:-4.208218px;}
._0{margin-left:-1.703611px;}
._8{width:1.434620px;}
._1{width:2.668393px;}
._f{width:13.464278px;}
._5{width:18.615337px;}
._6{width:25.175105px;}
._9{width:30.897268px;}
._7{width:33.900016px;}
._10{width:37.008177px;}
._3{width:40.075397px;}
._11{width:41.264216px;}
._d{width:47.606432px;}
._37{width:64.970345px;}
._41{width:83.172084px;}
._4a{width:91.319528px;}
._4b{width:138.309305px;}
._2e{width:140.688382px;}
._56{width:144.382529px;}
._52{width:156.594729px;}
._48{width:169.823120px;}
._49{width:186.835319px;}
._4d{width:188.108544px;}
._39{width:202.628092px;}
._45{width:204.080645px;}
._3c{width:214.858225px;}
._3b{width:223.047514px;}
._54{width:237.889851px;}
._47{width:239.323300px;}
._13{width:251.871416px;}
._33{width:253.736422px;}
._32{width:266.056220px;}
._20{width:278.842268px;}
._55{width:290.988716px;}
._51{width:297.301043px;}
._3e{width:302.782487px;}
._35{width:318.611125px;}
._15{width:320.237028px;}
._17{width:327.601409px;}
._3d{width:331.427062px;}
._53{width:344.769026px;}
._2d{width:355.164042px;}
._31{width:365.074874px;}
._19{width:369.940626px;}
._1a{width:372.044735px;}
._3f{width:373.060925px;}
._12{width:379.170013px;}
._46{width:380.556812px;}
._1e{width:385.530161px;}
._34{width:407.987939px;}
._42{width:411.592421px;}
._57{width:415.591424px;}
._14{width:439.950072px;}
._1c{width:444.349573px;}
._1d{width:447.296521px;}
._2c{width:449.352810px;}
._1b{width:451.379210px;}
._3a{width:456.113455px;}
._1f{width:470.603115px;}
._4c{width:502.069109px;}
._38{width:504.394389px;}
._4e{width:515.145871px;}
._25{width:529.261133px;}
._24{width:537.199362px;}
._43{width:546.924888px;}
._16{width:549.172459px;}
._59{width:554.137641px;}
._23{width:557.827999px;}
._27{width:568.444185px;}
._40{width:573.543064px;}
._30{width:575.904208px;}
._21{width:584.063609px;}
._22{width:586.359001px;}
._26{width:596.801837px;}
._29{width:602.296587px;}
._18{width:612.325619px;}
._50{width:613.913466px;}
._4f{width:617.476083px;}
._2b{width:622.194607px;}
._2a{width:625.302950px;}
._44{width:630.945788px;}
._2f{width:632.619511px;}
._58{width:635.201827px;}
._28{width:668.485006px;}
._2{width:2200.174770px;}
._e{width:2225.430054px;}
._b{width:2300.938877px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:29.887920px;}
.fs4{font-size:35.865480px;}
.fs2{font-size:47.820660px;}
.fs5{font-size:59.775840px;}
.fs3{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y2d{bottom:40.207500px;}
.y54{bottom:103.122000px;}
.y53{bottom:118.066500px;}
.y2c{bottom:137.389500px;}
.y52{bottom:137.493000px;}
.y51{bottom:156.921000px;}
.y50{bottom:171.864000px;}
.y4f{bottom:191.292000px;}
.y2b{bottom:196.417500px;}
.y2a{bottom:211.362000px;}
.y29{bottom:230.788500px;}
.y4e{bottom:232.237500px;}
.y74{bottom:241.789500px;}
.y28{bottom:245.733000px;}
.y4d{bottom:252.861000px;}
.y73{bottom:261.216000px;}
.y27{bottom:265.159500px;}
.y4c{bottom:272.886000px;}
.y26{bottom:280.104000px;}
.y72{bottom:280.644000px;}
.y4b{bottom:292.312500px;}
.y25{bottom:295.048500px;}
.y71{bottom:300.070500px;}
.y4a{bottom:311.740500px;}
.y24{bottom:314.475000px;}
.y23{bottom:333.901500px;}
.y70{bottom:341.017500px;}
.y49{bottom:347.626500px;}
.y22{bottom:353.329500px;}
.y6f{bottom:361.639500px;}
.y6e{bottom:381.664500px;}
.y48{bottom:383.493000px;}
.y21{bottom:389.217000px;}
.y6d{bottom:401.092500px;}
.y6c{bottom:436.980000px;}
.y20{bottom:448.245000px;}
.y1f{bottom:463.189500px;}
.y1e{bottom:478.132500px;}
.y47{bottom:483.118500px;}
.y6b{bottom:496.008000px;}
.y1d{bottom:497.560500px;}
.y46{bottom:502.546500px;}
.y1c{bottom:512.505000px;}
.y6a{bottom:515.434500px;}
.y45{bottom:517.489500px;}
.y69{bottom:530.379000px;}
.y1b{bottom:531.931500px;}
.y44{bottom:536.917500px;}
.y68{bottom:549.805500px;}
.y43{bottom:556.344000px;}
.y1a{bottom:567.819000px;}
.y67{bottom:569.233500px;}
.y42{bottom:575.772000px;}
.y66{bottom:584.178000px;}
.y41{bottom:595.198500px;}
.y65{bottom:603.604500px;}
.y40{bottom:610.143000px;}
.y19{bottom:626.847000px;}
.y3f{bottom:629.569500px;}
.y18{bottom:641.791500px;}
.y3e{bottom:644.514000px;}
.y64{bottom:644.551500px;}
.y17{bottom:661.218000px;}
.y63{bottom:665.173500px;}
.y16{bottom:676.162500px;}
.y3d{bottom:680.401500px;}
.y62{bottom:685.198500px;}
.y15{bottom:695.590500px;}
.y61{bottom:704.625000px;}
.y14{bottom:710.533500px;}
.y3c{bottom:716.266500px;}
.y60{bottom:724.053000px;}
.y13{bottom:730.558500px;}
.y5f{bottom:759.940500px;}
.y12{bottom:766.446000px;}
.y11{bottom:802.311000px;}
.y3b{bottom:816.108000px;}
.y3a{bottom:831.051000px;}
.y39{bottom:850.479000px;}
.y10{bottom:863.809500px;}
.y38{bottom:865.422000px;}
.y5e{bottom:878.745000px;}
.yf{bottom:878.752500px;}
.ye{bottom:893.697000px;}
.y5d{bottom:898.171500px;}
.y37{bottom:901.309500px;}
.yd{bottom:908.641500px;}
.y5c{bottom:917.599500px;}
.yc{bottom:923.584500px;}
.y5b{bottom:937.026000px;}
.yb{bottom:953.472000px;}
.y36{bottom:960.339000px;}
.ya{bottom:968.416500px;}
.y5a{bottom:977.973000px;}
.y35{bottom:979.765500px;}
.y9{bottom:998.304000px;}
.y59{bottom:998.595000px;}
.y34{bottom:999.193500px;}
.y8{bottom:1013.248500px;}
.y33{bottom:1014.136500px;}
.y58{bottom:1018.620000px;}
.y7{bottom:1028.193000px;}
.y32{bottom:1033.564500px;}
.y57{bottom:1038.048000px;}
.y6{bottom:1043.136000px;}
.y5{bottom:1058.080500px;}
.y31{bottom:1069.452000px;}
.y4{bottom:1073.025000px;}
.y56{bottom:1073.934000px;}
.y3{bottom:1087.968000px;}
.y1{bottom:1103.661000px;}
.y2{bottom:1117.855500px;}
.y30{bottom:1128.480000px;}
.y55{bottom:1132.963500px;}
.y2f{bottom:1147.908000px;}
.y2e{bottom:1162.851000px;}
.h2{height:22.415940px;}
.h4{height:35.865495px;}
.h7{height:40.528020px;}
.h8{height:43.771110px;}
.h6{height:43.777110px;}
.h5{height:53.798265px;}
.h3{height:64.557900px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x9{left:110.094000px;}
.x3{left:114.927000px;}
.x4{left:138.837000px;}
.x6{left:276.595500px;}
.x8{left:442.720500px;}
.x7{left:450.069000px;}
.x1{left:618.369000px;}
.x5{left:641.619000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.002667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:17.700827pt;}
.ls0{letter-spacing:22.571352pt;}
.ls5{letter-spacing:186.442160pt;}
.ls4{letter-spacing:195.199493pt;}
.ls1{letter-spacing:335.306160pt;}
.wsd{word-spacing:-63.760907pt;}
.ws1{word-spacing:-48.432771pt;}
.ws9{word-spacing:-42.507253pt;}
.ws8{word-spacing:-40.360654pt;}
.ws6{word-spacing:-27.502193pt;}
.ws3{word-spacing:-27.459686pt;}
.ws2{word-spacing:-26.907091pt;}
.ws5{word-spacing:-22.528844pt;}
.ws4{word-spacing:-22.486337pt;}
.ws7{word-spacing:-19.829095pt;}
.ws0{word-spacing:-17.188875pt;}
.wsb{word-spacing:0.000000pt;}
.wsa{word-spacing:409.004792pt;}
.wse{word-spacing:411.342691pt;}
.wsc{word-spacing:468.259903pt;}
._a{margin-left:-22.927349pt;}
._4{margin-left:-22.018757pt;}
._36{margin-left:-5.866003pt;}
._c{margin-left:-3.740638pt;}
._0{margin-left:-1.514321pt;}
._8{width:1.275218pt;}
._1{width:2.371905pt;}
._f{width:11.968247pt;}
._5{width:16.546966pt;}
._6{width:22.377871pt;}
._9{width:27.464238pt;}
._7{width:30.133347pt;}
._10{width:32.896158pt;}
._3{width:35.622575pt;}
._11{width:36.679303pt;}
._d{width:42.316828pt;}
._37{width:57.751417pt;}
._41{width:73.930741pt;}
._4a{width:81.172914pt;}
._4b{width:122.941604pt;}
._2e{width:125.056339pt;}
._56{width:128.340025pt;}
._52{width:139.195315pt;}
._48{width:150.953884pt;}
._49{width:166.075839pt;}
._4d{width:167.207595pt;}
._39{width:180.113860pt;}
._45{width:181.405017pt;}
._3c{width:190.985089pt;}
._3b{width:198.264457pt;}
._54{width:211.457645pt;}
._47{width:212.731822pt;}
._13{width:223.885703pt;}
._33{width:225.543486pt;}
._32{width:236.494418pt;}
._20{width:247.859794pt;}
._55{width:258.656637pt;}
._51{width:264.267594pt;}
._3e{width:269.139988pt;}
._35{width:283.209889pt;}
._15{width:284.655136pt;}
._17{width:291.201253pt;}
._3d{width:294.601833pt;}
._53{width:306.461357pt;}
._2d{width:315.701371pt;}
._31{width:324.511000pt;}
._19{width:328.836112pt;}
._1a{width:330.706431pt;}
._3f{width:331.609711pt;}
._12{width:337.040012pt;}
._46{width:338.272722pt;}
._1e{width:342.693476pt;}
._34{width:362.655946pt;}
._42{width:365.859929pt;}
._57{width:369.414599pt;}
._14{width:391.066731pt;}
._1c{width:394.977398pt;}
._1d{width:397.596908pt;}
._2c{width:399.424720pt;}
._1b{width:401.225964pt;}
._3a{width:405.434182pt;}
._1f{width:418.313880pt;}
._4c{width:446.283653pt;}
._38{width:448.350568pt;}
._4e{width:457.907441pt;}
._25{width:470.454340pt;}
._24{width:477.510544pt;}
._43{width:486.155456pt;}
._16{width:488.153297pt;}
._59{width:492.566792pt;}
._23{width:495.847110pt;}
._27{width:505.283720pt;}
._40{width:509.816057pt;}
._30{width:511.914852pt;}
._21{width:519.167652pt;}
._22{width:521.208001pt;}
._26{width:530.490522pt;}
._29{width:535.374744pt;}
._18{width:544.289439pt;}
._50{width:545.700859pt;}
._4f{width:548.867630pt;}
._2b{width:553.061873pt;}
._2a{width:555.824845pt;}
._44{width:560.840700pt;}
._2f{width:562.328454pt;}
._58{width:564.623846pt;}
._28{width:594.208894pt;}
._2{width:1955.710906pt;}
._e{width:1978.160048pt;}
._b{width:2045.279001pt;}
.fs0{font-size:26.567040pt;}
.fs4{font-size:31.880427pt;}
.fs2{font-size:42.507253pt;}
.fs5{font-size:53.134080pt;}
.fs3{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:35.740000pt;}
.y54{bottom:91.664000pt;}
.y53{bottom:104.948000pt;}
.y2c{bottom:122.124000pt;}
.y52{bottom:122.216000pt;}
.y51{bottom:139.485333pt;}
.y50{bottom:152.768000pt;}
.y4f{bottom:170.037333pt;}
.y2b{bottom:174.593333pt;}
.y2a{bottom:187.877333pt;}
.y29{bottom:205.145333pt;}
.y4e{bottom:206.433333pt;}
.y74{bottom:214.924000pt;}
.y28{bottom:218.429333pt;}
.y4d{bottom:224.765333pt;}
.y73{bottom:232.192000pt;}
.y27{bottom:235.697333pt;}
.y4c{bottom:242.565333pt;}
.y26{bottom:248.981333pt;}
.y72{bottom:249.461333pt;}
.y4b{bottom:259.833333pt;}
.y25{bottom:262.265333pt;}
.y71{bottom:266.729333pt;}
.y4a{bottom:277.102667pt;}
.y24{bottom:279.533333pt;}
.y23{bottom:296.801333pt;}
.y70{bottom:303.126667pt;}
.y49{bottom:309.001333pt;}
.y22{bottom:314.070667pt;}
.y6f{bottom:321.457333pt;}
.y6e{bottom:339.257333pt;}
.y48{bottom:340.882667pt;}
.y21{bottom:345.970667pt;}
.y6d{bottom:356.526667pt;}
.y6c{bottom:388.426667pt;}
.y20{bottom:398.440000pt;}
.y1f{bottom:411.724000pt;}
.y1e{bottom:425.006667pt;}
.y47{bottom:429.438667pt;}
.y6b{bottom:440.896000pt;}
.y1d{bottom:442.276000pt;}
.y46{bottom:446.708000pt;}
.y1c{bottom:455.560000pt;}
.y6a{bottom:458.164000pt;}
.y45{bottom:459.990667pt;}
.y69{bottom:471.448000pt;}
.y1b{bottom:472.828000pt;}
.y44{bottom:477.260000pt;}
.y68{bottom:488.716000pt;}
.y43{bottom:494.528000pt;}
.y1a{bottom:504.728000pt;}
.y67{bottom:505.985333pt;}
.y42{bottom:511.797333pt;}
.y66{bottom:519.269333pt;}
.y41{bottom:529.065333pt;}
.y65{bottom:536.537333pt;}
.y40{bottom:542.349333pt;}
.y19{bottom:557.197333pt;}
.y3f{bottom:559.617333pt;}
.y18{bottom:570.481333pt;}
.y3e{bottom:572.901333pt;}
.y64{bottom:572.934667pt;}
.y17{bottom:587.749333pt;}
.y63{bottom:591.265333pt;}
.y16{bottom:601.033333pt;}
.y3d{bottom:604.801333pt;}
.y62{bottom:609.065333pt;}
.y15{bottom:618.302667pt;}
.y61{bottom:626.333333pt;}
.y14{bottom:631.585333pt;}
.y3c{bottom:636.681333pt;}
.y60{bottom:643.602667pt;}
.y13{bottom:649.385333pt;}
.y5f{bottom:675.502667pt;}
.y12{bottom:681.285333pt;}
.y11{bottom:713.165333pt;}
.y3b{bottom:725.429333pt;}
.y3a{bottom:738.712000pt;}
.y39{bottom:755.981333pt;}
.y10{bottom:767.830667pt;}
.y38{bottom:769.264000pt;}
.y5e{bottom:781.106667pt;}
.yf{bottom:781.113333pt;}
.ye{bottom:794.397333pt;}
.y5d{bottom:798.374667pt;}
.y37{bottom:801.164000pt;}
.yd{bottom:807.681333pt;}
.y5c{bottom:815.644000pt;}
.yc{bottom:820.964000pt;}
.y5b{bottom:832.912000pt;}
.yb{bottom:847.530667pt;}
.y36{bottom:853.634667pt;}
.ya{bottom:860.814667pt;}
.y5a{bottom:869.309333pt;}
.y35{bottom:870.902667pt;}
.y9{bottom:887.381333pt;}
.y59{bottom:887.640000pt;}
.y34{bottom:888.172000pt;}
.y8{bottom:900.665333pt;}
.y33{bottom:901.454667pt;}
.y58{bottom:905.440000pt;}
.y7{bottom:913.949333pt;}
.y32{bottom:918.724000pt;}
.y57{bottom:922.709333pt;}
.y6{bottom:927.232000pt;}
.y5{bottom:940.516000pt;}
.y31{bottom:950.624000pt;}
.y4{bottom:953.800000pt;}
.y56{bottom:954.608000pt;}
.y3{bottom:967.082667pt;}
.y1{bottom:981.032000pt;}
.y2{bottom:993.649333pt;}
.y30{bottom:1003.093333pt;}
.y55{bottom:1007.078667pt;}
.y2f{bottom:1020.362667pt;}
.y2e{bottom:1033.645333pt;}
.h2{height:19.925280pt;}
.h4{height:31.880440pt;}
.h7{height:36.024906pt;}
.h8{height:38.907653pt;}
.h6{height:38.912987pt;}
.h5{height:47.820680pt;}
.h3{height:57.384800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x9{left:97.861333pt;}
.x3{left:102.157333pt;}
.x4{left:123.410667pt;}
.x6{left:245.862667pt;}
.x8{left:393.529333pt;}
.x7{left:400.061333pt;}
.x1{left:549.661333pt;}
.x5{left:570.328000pt;}
}




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