
    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_55db8efc84ae4c90f7266358.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_b6f09ef25ac071a831497b4f.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_394cb84897b35c1d3fa5720c.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;}
.wsf{word-spacing:566.092806px;}
._a{margin-left:-25.793268px;}
._4{margin-left:-24.771102px;}
._f{margin-left:-3.633175px;}
._0{margin-left:-1.703611px;}
._8{width:1.434620px;}
._1{width:2.668393px;}
._e{width:13.464278px;}
._5{width:18.615337px;}
._6{width:25.175105px;}
._9{width:30.897268px;}
._7{width:33.900016px;}
._c{width:37.996454px;}
._3{width:40.075397px;}
._33{width:64.970345px;}
._3d{width:83.172084px;}
._47{width:91.319528px;}
._48{width:138.309305px;}
._2b{width:140.688382px;}
._52{width:144.382529px;}
._4e{width:156.594729px;}
._45{width:168.962348px;}
._37{width:172.261973px;}
._46{width:186.835319px;}
._4a{width:188.108544px;}
._35{width:201.499524px;}
._41{width:204.080645px;}
._38{width:214.858225px;}
._50{width:237.045816px;}
._43{width:240.451868px;}
._11{width:251.871416px;}
._30{width:253.736422px;}
._2f{width:266.056220px;}
._1c{width:278.842268px;}
._51{width:290.988716px;}
._4d{width:298.160620px;}
._3a{width:301.653918px;}
._32{width:318.611125px;}
._13{width:320.237028px;}
._15{width:327.601409px;}
._39{width:331.427062px;}
._4f{width:344.769026px;}
._29{width:356.023618px;}
._2e{width:365.074874px;}
._17{width:369.940626px;}
._18{width:372.044735px;}
._3b{width:373.060925px;}
._10{width:379.170013px;}
._42{width:380.556812px;}
._44{width:386.390933px;}
._31{width:407.987939px;}
._3e{width:411.592421px;}
._53{width:415.591424px;}
._12{width:439.950072px;}
._1a{width:444.397393px;}
._1b{width:447.296521px;}
._28{width:449.352810px;}
._19{width:451.379210px;}
._36{width:456.113455px;}
._2a{width:470.985680px;}
._49{width:502.069109px;}
._34{width:504.394389px;}
._4b{width:515.145871px;}
._21{width:529.261133px;}
._20{width:537.199362px;}
._3f{width:546.924888px;}
._14{width:549.172459px;}
._1f{width:557.252956px;}
._23{width:568.444185px;}
._3c{width:573.543064px;}
._2d{width:575.904208px;}
._1d{width:584.063609px;}
._1e{width:586.359001px;}
._22{width:596.801837px;}
._25{width:602.296587px;}
._16{width:611.750576px;}
._4c{width:617.476083px;}
._27{width:621.619564px;}
._26{width:625.302950px;}
._40{width:630.945788px;}
._2c{width:632.619511px;}
._24{width:668.485006px;}
._2{width:2200.174770px;}
._d{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;}
.y2b{bottom:40.207500px;}
.y53{bottom:132.262500px;}
.y2a{bottom:146.334000px;}
.y52{bottom:147.207000px;}
.y51{bottom:162.150000px;}
.y29{bottom:165.760500px;}
.y28{bottom:180.705000px;}
.y50{bottom:181.578000px;}
.y4f{bottom:196.522500px;}
.y4e{bottom:215.949000px;}
.y27{bottom:216.592500px;}
.y4d{bottom:235.375500px;}
.y4c{bottom:250.320000px;}
.y4b{bottom:269.748000px;}
.y26{bottom:275.620500px;}
.y25{bottom:290.565000px;}
.y24{bottom:309.991500px;}
.y4a{bottom:310.693500px;}
.y23{bottom:324.936000px;}
.y49{bottom:331.317000px;}
.y22{bottom:344.362500px;}
.y48{bottom:351.340500px;}
.y21{bottom:359.307000px;}
.y47{bottom:370.768500px;}
.y20{bottom:374.251500px;}
.y46{bottom:390.195000px;}
.y1f{bottom:393.678000px;}
.y1e{bottom:413.104500px;}
.y45{bottom:426.082500px;}
.y1d{bottom:432.532500px;}
.y44{bottom:461.949000px;}
.y1c{bottom:468.420000px;}
.y1b{bottom:527.448000px;}
.y1a{bottom:542.392500px;}
.y43{bottom:561.574500px;}
.y19{bottom:561.819000px;}
.y42{bottom:581.001000px;}
.y41{bottom:595.945500px;}
.y18{bottom:597.706500px;}
.y40{bottom:615.373500px;}
.y3f{bottom:634.800000px;}
.y3e{bottom:654.226500px;}
.y17{bottom:656.736000px;}
.y16{bottom:671.679000px;}
.y3d{bottom:673.654500px;}
.y3c{bottom:688.597500px;}
.y15{bottom:691.107000px;}
.y14{bottom:706.050000px;}
.y3b{bottom:708.025500px;}
.y3a{bottom:722.970000px;}
.y13{bottom:725.478000px;}
.y39{bottom:737.913000px;}
.y12{bottom:740.421000px;}
.y11{bottom:760.446000px;}
.y38{bottom:773.800500px;}
.y10{bottom:796.333500px;}
.y37{bottom:809.665500px;}
.yf{bottom:832.200000px;}
.ye{bottom:893.697000px;}
.yd{bottom:908.641500px;}
.y36{bottom:909.507000px;}
.yc{bottom:923.584500px;}
.y35{bottom:924.451500px;}
.y34{bottom:943.878000px;}
.yb{bottom:953.472000px;}
.y33{bottom:958.822500px;}
.y59{bottom:967.662000px;}
.ya{bottom:968.416500px;}
.y58{bottom:987.088500px;}
.y32{bottom:994.710000px;}
.y9{bottom:998.304000px;}
.y57{bottom:1006.515000px;}
.y8{bottom:1013.248500px;}
.y56{bottom:1025.943000px;}
.y7{bottom:1028.193000px;}
.y6{bottom:1043.136000px;}
.y31{bottom:1053.738000px;}
.y5{bottom:1058.080500px;}
.y55{bottom:1066.890000px;}
.y4{bottom:1073.025000px;}
.y30{bottom:1073.166000px;}
.y54{bottom:1087.512000px;}
.y3{bottom:1087.968000px;}
.y2f{bottom:1092.592500px;}
.y1{bottom:1103.661000px;}
.y2e{bottom:1107.537000px;}
.y2{bottom:1117.855500px;}
.y2d{bottom:1126.963500px;}
.y2c{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;}
.wsf{word-spacing:503.193605pt;}
._a{margin-left:-22.927349pt;}
._4{margin-left:-22.018757pt;}
._f{margin-left:-3.229489pt;}
._0{margin-left:-1.514321pt;}
._8{width:1.275218pt;}
._1{width:2.371905pt;}
._e{width:11.968247pt;}
._5{width:16.546966pt;}
._6{width:22.377871pt;}
._9{width:27.464238pt;}
._7{width:30.133347pt;}
._c{width:33.774626pt;}
._3{width:35.622575pt;}
._33{width:57.751417pt;}
._3d{width:73.930741pt;}
._47{width:81.172914pt;}
._48{width:122.941604pt;}
._2b{width:125.056339pt;}
._52{width:128.340025pt;}
._4e{width:139.195315pt;}
._45{width:150.188754pt;}
._37{width:153.121754pt;}
._46{width:166.075839pt;}
._4a{width:167.207595pt;}
._35{width:179.110688pt;}
._41{width:181.405017pt;}
._38{width:190.985089pt;}
._50{width:210.707392pt;}
._43{width:213.734994pt;}
._11{width:223.885703pt;}
._30{width:225.543486pt;}
._2f{width:236.494418pt;}
._1c{width:247.859794pt;}
._51{width:258.656637pt;}
._4d{width:265.031662pt;}
._3a{width:268.136816pt;}
._32{width:283.209889pt;}
._13{width:284.655136pt;}
._15{width:291.201253pt;}
._39{width:294.601833pt;}
._4f{width:306.461357pt;}
._29{width:316.465439pt;}
._2e{width:324.511000pt;}
._17{width:328.836112pt;}
._18{width:330.706431pt;}
._3b{width:331.609711pt;}
._10{width:337.040012pt;}
._42{width:338.272722pt;}
._44{width:343.458607pt;}
._31{width:362.655946pt;}
._3e{width:365.859929pt;}
._53{width:369.414599pt;}
._12{width:391.066731pt;}
._1a{width:395.019905pt;}
._1b{width:397.596908pt;}
._28{width:399.424720pt;}
._19{width:401.225964pt;}
._36{width:405.434182pt;}
._2a{width:418.653938pt;}
._49{width:446.283653pt;}
._34{width:448.350568pt;}
._4b{width:457.907441pt;}
._21{width:470.454340pt;}
._20{width:477.510544pt;}
._3f{width:486.155456pt;}
._14{width:488.153297pt;}
._1f{width:495.335961pt;}
._23{width:505.283720pt;}
._3c{width:509.816057pt;}
._2d{width:511.914852pt;}
._1d{width:519.167652pt;}
._1e{width:521.208001pt;}
._22{width:530.490522pt;}
._25{width:535.374744pt;}
._16{width:543.778290pt;}
._4c{width:548.867630pt;}
._27{width:552.550724pt;}
._26{width:555.824845pt;}
._40{width:560.840700pt;}
._2c{width:562.328454pt;}
._24{width:594.208894pt;}
._2{width:1955.710906pt;}
._d{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;}
.y2b{bottom:35.740000pt;}
.y53{bottom:117.566667pt;}
.y2a{bottom:130.074667pt;}
.y52{bottom:130.850667pt;}
.y51{bottom:144.133333pt;}
.y29{bottom:147.342667pt;}
.y28{bottom:160.626667pt;}
.y50{bottom:161.402667pt;}
.y4f{bottom:174.686667pt;}
.y4e{bottom:191.954667pt;}
.y27{bottom:192.526667pt;}
.y4d{bottom:209.222667pt;}
.y4c{bottom:222.506667pt;}
.y4b{bottom:239.776000pt;}
.y26{bottom:244.996000pt;}
.y25{bottom:258.280000pt;}
.y24{bottom:275.548000pt;}
.y4a{bottom:276.172000pt;}
.y23{bottom:288.832000pt;}
.y49{bottom:294.504000pt;}
.y22{bottom:306.100000pt;}
.y48{bottom:312.302667pt;}
.y21{bottom:319.384000pt;}
.y47{bottom:329.572000pt;}
.y20{bottom:332.668000pt;}
.y46{bottom:346.840000pt;}
.y1f{bottom:349.936000pt;}
.y1e{bottom:367.204000pt;}
.y45{bottom:378.740000pt;}
.y1d{bottom:384.473333pt;}
.y44{bottom:410.621333pt;}
.y1c{bottom:416.373333pt;}
.y1b{bottom:468.842667pt;}
.y1a{bottom:482.126667pt;}
.y43{bottom:499.177333pt;}
.y19{bottom:499.394667pt;}
.y42{bottom:516.445333pt;}
.y41{bottom:529.729333pt;}
.y18{bottom:531.294667pt;}
.y40{bottom:546.998667pt;}
.y3f{bottom:564.266667pt;}
.y3e{bottom:581.534667pt;}
.y17{bottom:583.765333pt;}
.y16{bottom:597.048000pt;}
.y3d{bottom:598.804000pt;}
.y3c{bottom:612.086667pt;}
.y15{bottom:614.317333pt;}
.y14{bottom:627.600000pt;}
.y3b{bottom:629.356000pt;}
.y3a{bottom:642.640000pt;}
.y13{bottom:644.869333pt;}
.y39{bottom:655.922667pt;}
.y12{bottom:658.152000pt;}
.y11{bottom:675.952000pt;}
.y38{bottom:687.822667pt;}
.y10{bottom:707.852000pt;}
.y37{bottom:719.702667pt;}
.yf{bottom:739.733333pt;}
.ye{bottom:794.397333pt;}
.yd{bottom:807.681333pt;}
.y36{bottom:808.450667pt;}
.yc{bottom:820.964000pt;}
.y35{bottom:821.734667pt;}
.y34{bottom:839.002667pt;}
.yb{bottom:847.530667pt;}
.y33{bottom:852.286667pt;}
.y59{bottom:860.144000pt;}
.ya{bottom:860.814667pt;}
.y58{bottom:877.412000pt;}
.y32{bottom:884.186667pt;}
.y9{bottom:887.381333pt;}
.y57{bottom:894.680000pt;}
.y8{bottom:900.665333pt;}
.y56{bottom:911.949333pt;}
.y7{bottom:913.949333pt;}
.y6{bottom:927.232000pt;}
.y31{bottom:936.656000pt;}
.y5{bottom:940.516000pt;}
.y55{bottom:948.346667pt;}
.y4{bottom:953.800000pt;}
.y30{bottom:953.925333pt;}
.y54{bottom:966.677333pt;}
.y3{bottom:967.082667pt;}
.y2f{bottom:971.193333pt;}
.y1{bottom:981.032000pt;}
.y2e{bottom:984.477333pt;}
.y2{bottom:993.649333pt;}
.y2d{bottom:1001.745333pt;}
.y2c{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; }
  