
    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_971e248ce95c4f3b98c81655.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_8ef340910e9fbf6ea5e5b994.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_df39115310f61972c002a375.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;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.987430px;}
.ls6{letter-spacing:19.913430px;}
.ls8{letter-spacing:19.919430px;}
.ls0{letter-spacing:25.392770px;}
.ls2{letter-spacing:119.651430px;}
.ls4{letter-spacing:119.657430px;}
.ls3{letter-spacing:124.817430px;}
.ls9{letter-spacing:209.747430px;}
.ls7{letter-spacing:219.599430px;}
.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;}
}
.wsc{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:411.114214px;}
.wsd{word-spacing:462.760527px;}
._a{margin-left:-25.793268px;}
._4{margin-left:-24.771102px;}
._2d{margin-left:-6.599254px;}
._c{margin-left:-4.208218px;}
._0{margin-left:-1.703611px;}
._8{width:1.434620px;}
._1{width:2.668393px;}
._5{width:18.615337px;}
._6{width:25.175105px;}
._9{width:30.897268px;}
._7{width:33.900016px;}
._3{width:40.075397px;}
._2e{width:52.650569px;}
._2f{width:64.970345px;}
._3b{width:83.172084px;}
._45{width:91.319528px;}
._46{width:138.309305px;}
._44{width:168.962348px;}
._32{width:202.723734px;}
._3f{width:204.080645px;}
._35{width:214.858225px;}
._34{width:223.047514px;}
._41{width:239.323300px;}
._f{width:251.871416px;}
._2a{width:253.736422px;}
._29{width:266.056220px;}
._1a{width:269.786231px;}
._37{width:302.878128px;}
._2c{width:318.611125px;}
._11{width:320.237028px;}
._13{width:327.601409px;}
._36{width:331.427062px;}
._15{width:369.940626px;}
._16{width:372.044735px;}
._38{width:373.060925px;}
._e{width:379.170013px;}
._40{width:380.556812px;}
._43{width:386.390933px;}
._2b{width:407.987939px;}
._3c{width:411.592421px;}
._48{width:415.591424px;}
._25{width:423.882330px;}
._10{width:439.950072px;}
._18{width:444.397393px;}
._19{width:447.296521px;}
._28{width:449.352810px;}
._17{width:451.379210px;}
._33{width:456.113455px;}
._47{width:502.069109px;}
._30{width:504.394389px;}
._1d{width:514.263378px;}
._1f{width:529.261133px;}
._1e{width:537.199362px;}
._24{width:541.516453px;}
._3d{width:546.924888px;}
._12{width:549.172459px;}
._31{width:557.732358px;}
._21{width:568.444185px;}
._39{width:573.543133px;}
._1b{width:584.063609px;}
._1c{width:586.359001px;}
._20{width:596.801837px;}
._14{width:612.373440px;}
._27{width:622.194607px;}
._26{width:625.302950px;}
._23{width:628.985141px;}
._3e{width:630.945788px;}
._3a{width:632.619511px;}
._42{width:633.650863px;}
._22{width:668.484937px;}
._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;}
.y2d{bottom:40.207500px;}
.y2c{bottom:107.479500px;}
.y2b{bottom:126.906000px;}
.y52{bottom:145.713000px;}
.y51{bottom:160.656000px;}
.y2a{bottom:162.793500px;}
.y50{bottom:175.600500px;}
.y4f{bottom:195.027000px;}
.y4e{bottom:209.971500px;}
.y29{bottom:221.823000px;}
.y4d{bottom:229.398000px;}
.y28{bottom:236.766000px;}
.y4c{bottom:248.826000px;}
.y27{bottom:256.194000px;}
.y4b{bottom:263.769000px;}
.y26{bottom:275.620500px;}
.y4a{bottom:283.197000px;}
.y25{bottom:290.565000px;}
.y49{bottom:302.623500px;}
.y24{bottom:305.508000px;}
.y23{bottom:324.936000px;}
.y22{bottom:339.879000px;}
.y48{bottom:343.570500px;}
.y21{bottom:359.307000px;}
.y47{bottom:364.192500px;}
.y20{bottom:374.251500px;}
.y46{bottom:384.217500px;}
.y1f{bottom:393.678000px;}
.y45{bottom:403.645500px;}
.y1e{bottom:413.104500px;}
.y44{bottom:423.072000px;}
.y1d{bottom:432.532500px;}
.y43{bottom:442.500000px;}
.y1c{bottom:468.420000px;}
.y42{bottom:478.387500px;}
.y41{bottom:514.252500px;}
.y1b{bottom:527.448000px;}
.y1a{bottom:542.392500px;}
.y19{bottom:561.819000px;}
.y18{bottom:597.706500px;}
.y40{bottom:613.878000px;}
.y3f{bottom:633.306000px;}
.y3e{bottom:648.249000px;}
.y17{bottom:656.736000px;}
.y3d{bottom:667.677000px;}
.y16{bottom:671.679000px;}
.y3c{bottom:687.103500px;}
.y15{bottom:691.107000px;}
.y14{bottom:706.050000px;}
.y3b{bottom:706.531500px;}
.y13{bottom:725.478000px;}
.y3a{bottom:725.958000px;}
.y12{bottom:740.421000px;}
.y39{bottom:740.902500px;}
.y38{bottom:760.329000px;}
.y11{bottom:760.446000px;}
.y37{bottom:775.273500px;}
.y10{bottom:796.333500px;}
.y36{bottom:811.161000px;}
.yf{bottom:832.200000px;}
.y35{bottom:847.026000px;}
.ye{bottom:893.697000px;}
.yd{bottom:908.641500px;}
.yc{bottom:923.584500px;}
.y34{bottom:946.867500px;}
.yb{bottom:953.472000px;}
.y33{bottom:961.812000px;}
.ya{bottom:968.416500px;}
.y32{bottom:981.238500px;}
.y31{bottom:996.183000px;}
.y9{bottom:998.304000px;}
.y8{bottom:1013.248500px;}
.y7{bottom:1028.193000px;}
.y30{bottom:1032.070500px;}
.y6{bottom:1043.136000px;}
.y5{bottom:1058.080500px;}
.y4{bottom:1073.025000px;}
.y3{bottom:1087.968000px;}
.y2f{bottom:1091.098500px;}
.y1{bottom:1103.661000px;}
.y55{bottom:1107.537000px;}
.y2{bottom:1117.855500px;}
.y54{bottom:1126.963500px;}
.y2e{bottom:1126.986000px;}
.y53{bottom:1162.851000px;}
.h2{height:22.415940px;}
.h4{height:35.865495px;}
.h8{height:40.528020px;}
.h7{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;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.655493pt;}
.ls6{letter-spacing:17.700827pt;}
.ls8{letter-spacing:17.706160pt;}
.ls0{letter-spacing:22.571352pt;}
.ls2{letter-spacing:106.356827pt;}
.ls4{letter-spacing:106.362160pt;}
.ls3{letter-spacing:110.948827pt;}
.ls9{letter-spacing:186.442160pt;}
.ls7{letter-spacing:195.199493pt;}
.wsc{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:365.434857pt;}
.wsd{word-spacing:411.342691pt;}
._a{margin-left:-22.927349pt;}
._4{margin-left:-22.018757pt;}
._2d{margin-left:-5.866003pt;}
._c{margin-left:-3.740638pt;}
._0{margin-left:-1.514321pt;}
._8{width:1.275218pt;}
._1{width:2.371905pt;}
._5{width:16.546966pt;}
._6{width:22.377871pt;}
._9{width:27.464238pt;}
._7{width:30.133347pt;}
._3{width:35.622575pt;}
._2e{width:46.800505pt;}
._2f{width:57.751417pt;}
._3b{width:73.930741pt;}
._45{width:81.172914pt;}
._46{width:122.941604pt;}
._44{width:150.188754pt;}
._32{width:180.198874pt;}
._3f{width:181.405017pt;}
._35{width:190.985089pt;}
._34{width:198.264457pt;}
._41{width:212.731822pt;}
._f{width:223.885703pt;}
._2a{width:225.543486pt;}
._29{width:236.494418pt;}
._1a{width:239.809983pt;}
._37{width:269.225003pt;}
._2c{width:283.209889pt;}
._11{width:284.655136pt;}
._13{width:291.201253pt;}
._36{width:294.601833pt;}
._15{width:328.836112pt;}
._16{width:330.706431pt;}
._38{width:331.609711pt;}
._e{width:337.040012pt;}
._40{width:338.272722pt;}
._43{width:343.458607pt;}
._2b{width:362.655946pt;}
._3c{width:365.859929pt;}
._48{width:369.414599pt;}
._25{width:376.784294pt;}
._10{width:391.066731pt;}
._18{width:395.019905pt;}
._19{width:397.596908pt;}
._28{width:399.424720pt;}
._17{width:401.225964pt;}
._33{width:405.434182pt;}
._47{width:446.283653pt;}
._30{width:448.350568pt;}
._1d{width:457.123002pt;}
._1f{width:470.454340pt;}
._1e{width:477.510544pt;}
._24{width:481.347959pt;}
._3d{width:486.155456pt;}
._12{width:488.153297pt;}
._31{width:495.762096pt;}
._21{width:505.283720pt;}
._39{width:509.816118pt;}
._1b{width:519.167652pt;}
._1c{width:521.208001pt;}
._20{width:530.490522pt;}
._14{width:544.331946pt;}
._27{width:553.061873pt;}
._26{width:555.824845pt;}
._23{width:559.097903pt;}
._3e{width:560.840700pt;}
._3a{width:562.328454pt;}
._42{width:563.245212pt;}
._22{width:594.208833pt;}
._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;}
.y2d{bottom:35.740000pt;}
.y2c{bottom:95.537333pt;}
.y2b{bottom:112.805333pt;}
.y52{bottom:129.522667pt;}
.y51{bottom:142.805333pt;}
.y2a{bottom:144.705333pt;}
.y50{bottom:156.089333pt;}
.y4f{bottom:173.357333pt;}
.y4e{bottom:186.641333pt;}
.y29{bottom:197.176000pt;}
.y4d{bottom:203.909333pt;}
.y28{bottom:210.458667pt;}
.y4c{bottom:221.178667pt;}
.y27{bottom:227.728000pt;}
.y4b{bottom:234.461333pt;}
.y26{bottom:244.996000pt;}
.y4a{bottom:251.730667pt;}
.y25{bottom:258.280000pt;}
.y49{bottom:268.998667pt;}
.y24{bottom:271.562667pt;}
.y23{bottom:288.832000pt;}
.y22{bottom:302.114667pt;}
.y48{bottom:305.396000pt;}
.y21{bottom:319.384000pt;}
.y47{bottom:323.726667pt;}
.y20{bottom:332.668000pt;}
.y46{bottom:341.526667pt;}
.y1f{bottom:349.936000pt;}
.y45{bottom:358.796000pt;}
.y1e{bottom:367.204000pt;}
.y44{bottom:376.064000pt;}
.y1d{bottom:384.473333pt;}
.y43{bottom:393.333333pt;}
.y1c{bottom:416.373333pt;}
.y42{bottom:425.233333pt;}
.y41{bottom:457.113333pt;}
.y1b{bottom:468.842667pt;}
.y1a{bottom:482.126667pt;}
.y19{bottom:499.394667pt;}
.y18{bottom:531.294667pt;}
.y40{bottom:545.669333pt;}
.y3f{bottom:562.938667pt;}
.y3e{bottom:576.221333pt;}
.y17{bottom:583.765333pt;}
.y3d{bottom:593.490667pt;}
.y16{bottom:597.048000pt;}
.y3c{bottom:610.758667pt;}
.y15{bottom:614.317333pt;}
.y14{bottom:627.600000pt;}
.y3b{bottom:628.028000pt;}
.y13{bottom:644.869333pt;}
.y3a{bottom:645.296000pt;}
.y12{bottom:658.152000pt;}
.y39{bottom:658.580000pt;}
.y38{bottom:675.848000pt;}
.y11{bottom:675.952000pt;}
.y37{bottom:689.132000pt;}
.y10{bottom:707.852000pt;}
.y36{bottom:721.032000pt;}
.yf{bottom:739.733333pt;}
.y35{bottom:752.912000pt;}
.ye{bottom:794.397333pt;}
.yd{bottom:807.681333pt;}
.yc{bottom:820.964000pt;}
.y34{bottom:841.660000pt;}
.yb{bottom:847.530667pt;}
.y33{bottom:854.944000pt;}
.ya{bottom:860.814667pt;}
.y32{bottom:872.212000pt;}
.y31{bottom:885.496000pt;}
.y9{bottom:887.381333pt;}
.y8{bottom:900.665333pt;}
.y7{bottom:913.949333pt;}
.y30{bottom:917.396000pt;}
.y6{bottom:927.232000pt;}
.y5{bottom:940.516000pt;}
.y4{bottom:953.800000pt;}
.y3{bottom:967.082667pt;}
.y2f{bottom:969.865333pt;}
.y1{bottom:981.032000pt;}
.y55{bottom:984.477333pt;}
.y2{bottom:993.649333pt;}
.y54{bottom:1001.745333pt;}
.y2e{bottom:1001.765333pt;}
.y53{bottom:1033.645333pt;}
.h2{height:19.925280pt;}
.h4{height:31.880440pt;}
.h8{height:36.024906pt;}
.h7{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; }
  