
    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_a34c86ac2700e6a24c7041e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979000;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_e748c0a8299363239a6d2102.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975000;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_415247c0a9db9dd07371e746.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.579000;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);}
.v2{vertical-align:-8.964000px;}
.v1{vertical-align:-7.476000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.946000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:29.928643px;}
.ls1{letter-spacing:29.934359px;}
.ls3{letter-spacing:46.314359px;}
.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;}
}
.ws0{word-spacing:-50.819861px;}
.wsc{word-spacing:-49.135872px;}
.ws8{word-spacing:-40.946286px;}
.ws9{word-spacing:-40.886510px;}
.ws11{word-spacing:-36.798106px;}
.ws4{word-spacing:-30.414029px;}
.ws6{word-spacing:-29.553254px;}
.wsb{word-spacing:-29.481523px;}
.wse{word-spacing:-25.942610px;}
.ws15{word-spacing:-25.703508px;}
.wsf{word-spacing:-25.583957px;}
.ws12{word-spacing:-25.404630px;}
.ws2{word-spacing:-25.344854px;}
.ws18{word-spacing:-25.343960px;}
.wsa{word-spacing:-25.285079px;}
.wsd{word-spacing:-24.627547px;}
.ws17{word-spacing:-24.567772px;}
.ws3{word-spacing:-22.810522px;}
.ws10{word-spacing:-22.756723px;}
.ws14{word-spacing:-21.041011px;}
.ws13{word-spacing:-20.981236px;}
.ws16{word-spacing:-20.921460px;}
.ws1{word-spacing:-16.946496px;}
.ws7{word-spacing:-10.994707px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-7.470053px;}
._9{margin-left:-5.953690px;}
._4{margin-left:-4.088678px;}
._0{margin-left:-2.375725px;}
._3{margin-left:-1.075961px;}
._2{width:1.291162px;}
._1{width:2.995480px;}
._6{width:14.569948px;}
._7{width:18.889090px;}
._5{width:20.742133px;}
._8{width:890.416370px;}
.fc2{color:rgb(51,51,178);}
.fc3{color:rgb(0,20,131);}
.fc1{color:rgb(0,20,131);}
.fc0{color:rgb(173,173,224);}
.fs0{font-size:29.887800px;}
.fs5{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1{bottom:3.429000px;}
.y6{bottom:52.114500px;}
.y57{bottom:52.312500px;}
.y18{bottom:69.763500px;}
.y17{bottom:78.729000px;}
.y47{bottom:81.988500px;}
.y5{bottom:89.554500px;}
.y51{bottom:92.889000px;}
.y6b{bottom:102.594000px;}
.y46{bottom:104.404500px;}
.y6a{bottom:106.330500px;}
.y38{bottom:108.022500px;}
.y68{bottom:108.198000px;}
.y20{bottom:108.783000px;}
.y69{bottom:109.491000px;}
.y50{bottom:113.437500px;}
.y2e{bottom:113.803500px;}
.y5f{bottom:122.275500px;}
.y14{bottom:123.718500px;}
.y4{bottom:124.036500px;}
.y37{bottom:124.461000px;}
.y45{bottom:126.820500px;}
.y67{bottom:130.614000px;}
.y4f{bottom:133.237500px;}
.y2d{bottom:134.352000px;}
.y1f{bottom:135.682500px;}
.y26{bottom:141.451500px;}
.y36{bottom:141.646500px;}
.y5e{bottom:142.077000px;}
.y3e{bottom:142.548000px;}
.y52{bottom:145.770000px;}
.y13{bottom:146.134500px;}
.y44{bottom:150.357000px;}
.y66{bottom:153.030000px;}
.y1e{bottom:153.615000px;}
.y4e{bottom:153.786000px;}
.y2c{bottom:154.153500px;}
.y3d{bottom:162.349500px;}
.y5d{bottom:162.624000px;}
.y25{bottom:163.867500px;}
.y35{bottom:164.809500px;}
.y16{bottom:166.278000px;}
.y12{bottom:168.550500px;}
.y1d{bottom:171.547500px;}
.y65{bottom:173.578500px;}
.y4d{bottom:173.586000px;}
.yd{bottom:176.419500px;}
.y2b{bottom:176.568000px;}
.ya{bottom:178.755000px;}
.y3{bottom:179.869500px;}
.y34{bottom:181.248000px;}
.y24{bottom:181.800000px;}
.y5c{bottom:182.425500px;}
.y3c{bottom:184.765500px;}
.y15{bottom:188.694000px;}
.y1c{bottom:189.481500px;}
.y11{bottom:190.966500px;}
.y64{bottom:193.378500px;}
.y4c{bottom:194.134500px;}
.y33{bottom:198.433500px;}
.yc{bottom:198.835500px;}
.y2a{bottom:198.984000px;}
.y43{bottom:200.911500px;}
.y9{bottom:201.171000px;}
.y5b{bottom:202.972500px;}
.y23{bottom:204.216000px;}
.y2{bottom:205.275000px;}
.y3b{bottom:207.181500px;}
.y1b{bottom:207.414000px;}
.y4b{bottom:212.067000px;}
.y10{bottom:213.382500px;}
.y63{bottom:213.927000px;}
.y42{bottom:218.844000px;}
.y5a{bottom:220.906500px;}
.yb{bottom:221.251500px;}
.y29{bottom:221.400000px;}
.y32{bottom:221.596500px;}
.y22{bottom:222.148500px;}
.y8{bottom:223.587000px;}
.y1a{bottom:225.346500px;}
.y3a{bottom:227.728500px;}
.y4a{bottom:231.868500px;}
.y62{bottom:233.727000px;}
.yf{bottom:235.798500px;}
.y31{bottom:238.035000px;}
.y41{bottom:238.645500px;}
.y59{bottom:238.839000px;}
.y19{bottom:243.279000px;}
.y28{bottom:243.816000px;}
.y21{bottom:244.564500px;}
.y39{bottom:247.530000px;}
.y56{bottom:247.623000px;}
.y49{bottom:252.415500px;}
.y61{bottom:254.275500px;}
.y30{bottom:254.473500px;}
.ye{bottom:258.214500px;}
.y58{bottom:258.639000px;}
.y40{bottom:261.061500px;}
.y27{bottom:266.232000px;}
.y55{bottom:270.037500px;}
.y2f{bottom:271.659000px;}
.y48{bottom:272.217000px;}
.y60{bottom:274.077000px;}
.y3f{bottom:284.598000px;}
.y54{bottom:292.453500px;}
.y53{bottom:314.869500px;}
.y7{bottom:359.962500px;}
.ha{height:22.356074px;}
.h2{height:22.475626px;}
.hc{height:31.277203px;}
.hf{height:31.298414px;}
.h9{height:37.236149px;}
.hb{height:37.242149px;}
.hd{height:37.475251px;}
.he{height:37.481251px;}
.h4{height:40.241203px;}
.h5{height:44.712149px;}
.h8{height:44.951251px;}
.h6{height:53.654938px;}
.h7{height:53.941862px;}
.h10{height:59.658149px;}
.h3{height:77.262715px;}
.h1{height:382.500000px;}
.h0{height:382.680000px;}
.w1{width:680.250000px;}
.w0{width:680.310000px;}
.x0{left:0.000000px;}
.x1c{left:19.296000px;}
.xc{left:39.139500px;}
.x5{left:40.864500px;}
.x10{left:42.519000px;}
.x8{left:52.561500px;}
.x12{left:72.408000px;}
.x19{left:83.074500px;}
.x15{left:84.363000px;}
.x1a{left:102.169500px;}
.x1f{left:112.840500px;}
.xf{left:130.039500px;}
.x20{left:131.935500px;}
.x9{left:156.256500px;}
.xb{left:173.875500px;}
.x4{left:199.461000px;}
.x3{left:204.838500px;}
.x11{left:206.083500px;}
.x7{left:218.116500px;}
.x18{left:229.843500px;}
.x2{left:250.800000px;}
.x14{left:254.842500px;}
.x6{left:256.000500px;}
.x13{left:257.022000px;}
.x1e{left:266.283000px;}
.x17{left:277.707000px;}
.x22{left:283.648500px;}
.x23{left:290.182500px;}
.x1b{left:293.820000px;}
.x21{left:296.634000px;}
.xa{left:299.629500px;}
.xe{left:447.262500px;}
.xd{left:455.350500px;}
.x1d{left:475.825500px;}
.x16{left:655.768500px;}
.x1{left:660.252000px;}
@media print{
.v2{vertical-align:-7.968000pt;}
.v1{vertical-align:-6.645333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:26.603238pt;}
.ls1{letter-spacing:26.608319pt;}
.ls3{letter-spacing:41.168319pt;}
.ws0{word-spacing:-45.173210pt;}
.wsc{word-spacing:-43.676331pt;}
.ws8{word-spacing:-36.396699pt;}
.ws9{word-spacing:-36.343565pt;}
.ws11{word-spacing:-32.709427pt;}
.ws4{word-spacing:-27.034692pt;}
.ws6{word-spacing:-26.269559pt;}
.wsb{word-spacing:-26.205798pt;}
.wse{word-spacing:-23.060098pt;}
.ws15{word-spacing:-22.847563pt;}
.wsf{word-spacing:-22.741295pt;}
.ws12{word-spacing:-22.581893pt;}
.ws2{word-spacing:-22.528759pt;}
.ws18{word-spacing:-22.527965pt;}
.wsa{word-spacing:-22.475626pt;}
.wsd{word-spacing:-21.891153pt;}
.ws17{word-spacing:-21.838019pt;}
.ws3{word-spacing:-20.276019pt;}
.ws10{word-spacing:-20.228198pt;}
.ws14{word-spacing:-18.703121pt;}
.ws13{word-spacing:-18.649987pt;}
.ws16{word-spacing:-18.596853pt;}
.ws1{word-spacing:-15.063552pt;}
.ws7{word-spacing:-9.773073pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-6.640047pt;}
._9{margin-left:-5.292169pt;}
._4{margin-left:-3.634381pt;}
._0{margin-left:-2.111756pt;}
._3{margin-left:-0.956410pt;}
._2{width:1.147699pt;}
._1{width:2.662649pt;}
._6{width:12.951065pt;}
._7{width:16.790302pt;}
._5{width:18.437452pt;}
._8{width:791.481218pt;}
.fs0{font-size:26.566933pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:3.048000pt;}
.y6{bottom:46.324000pt;}
.y57{bottom:46.500000pt;}
.y18{bottom:62.012000pt;}
.y17{bottom:69.981333pt;}
.y47{bottom:72.878667pt;}
.y5{bottom:79.604000pt;}
.y51{bottom:82.568000pt;}
.y6b{bottom:91.194667pt;}
.y46{bottom:92.804000pt;}
.y6a{bottom:94.516000pt;}
.y38{bottom:96.020000pt;}
.y68{bottom:96.176000pt;}
.y20{bottom:96.696000pt;}
.y69{bottom:97.325333pt;}
.y50{bottom:100.833333pt;}
.y2e{bottom:101.158667pt;}
.y5f{bottom:108.689333pt;}
.y14{bottom:109.972000pt;}
.y4{bottom:110.254667pt;}
.y37{bottom:110.632000pt;}
.y45{bottom:112.729333pt;}
.y67{bottom:116.101333pt;}
.y4f{bottom:118.433333pt;}
.y2d{bottom:119.424000pt;}
.y1f{bottom:120.606667pt;}
.y26{bottom:125.734667pt;}
.y36{bottom:125.908000pt;}
.y5e{bottom:126.290667pt;}
.y3e{bottom:126.709333pt;}
.y52{bottom:129.573333pt;}
.y13{bottom:129.897333pt;}
.y44{bottom:133.650667pt;}
.y66{bottom:136.026667pt;}
.y1e{bottom:136.546667pt;}
.y4e{bottom:136.698667pt;}
.y2c{bottom:137.025333pt;}
.y3d{bottom:144.310667pt;}
.y5d{bottom:144.554667pt;}
.y25{bottom:145.660000pt;}
.y35{bottom:146.497333pt;}
.y16{bottom:147.802667pt;}
.y12{bottom:149.822667pt;}
.y1d{bottom:152.486667pt;}
.y65{bottom:154.292000pt;}
.y4d{bottom:154.298667pt;}
.yd{bottom:156.817333pt;}
.y2b{bottom:156.949333pt;}
.ya{bottom:158.893333pt;}
.y3{bottom:159.884000pt;}
.y34{bottom:161.109333pt;}
.y24{bottom:161.600000pt;}
.y5c{bottom:162.156000pt;}
.y3c{bottom:164.236000pt;}
.y15{bottom:167.728000pt;}
.y1c{bottom:168.428000pt;}
.y11{bottom:169.748000pt;}
.y64{bottom:171.892000pt;}
.y4c{bottom:172.564000pt;}
.y33{bottom:176.385333pt;}
.yc{bottom:176.742667pt;}
.y2a{bottom:176.874667pt;}
.y43{bottom:178.588000pt;}
.y9{bottom:178.818667pt;}
.y5b{bottom:180.420000pt;}
.y23{bottom:181.525333pt;}
.y2{bottom:182.466667pt;}
.y3b{bottom:184.161333pt;}
.y1b{bottom:184.368000pt;}
.y4b{bottom:188.504000pt;}
.y10{bottom:189.673333pt;}
.y63{bottom:190.157333pt;}
.y42{bottom:194.528000pt;}
.y5a{bottom:196.361333pt;}
.yb{bottom:196.668000pt;}
.y29{bottom:196.800000pt;}
.y32{bottom:196.974667pt;}
.y22{bottom:197.465333pt;}
.y8{bottom:198.744000pt;}
.y1a{bottom:200.308000pt;}
.y3a{bottom:202.425333pt;}
.y4a{bottom:206.105333pt;}
.y62{bottom:207.757333pt;}
.yf{bottom:209.598667pt;}
.y31{bottom:211.586667pt;}
.y41{bottom:212.129333pt;}
.y59{bottom:212.301333pt;}
.y19{bottom:216.248000pt;}
.y28{bottom:216.725333pt;}
.y21{bottom:217.390667pt;}
.y39{bottom:220.026667pt;}
.y56{bottom:220.109333pt;}
.y49{bottom:224.369333pt;}
.y61{bottom:226.022667pt;}
.y30{bottom:226.198667pt;}
.ye{bottom:229.524000pt;}
.y58{bottom:229.901333pt;}
.y40{bottom:232.054667pt;}
.y27{bottom:236.650667pt;}
.y55{bottom:240.033333pt;}
.y2f{bottom:241.474667pt;}
.y48{bottom:241.970667pt;}
.y60{bottom:243.624000pt;}
.y3f{bottom:252.976000pt;}
.y54{bottom:259.958667pt;}
.y53{bottom:279.884000pt;}
.y7{bottom:319.966667pt;}
.ha{height:19.872066pt;}
.h2{height:19.978334pt;}
.hc{height:27.801958pt;}
.hf{height:27.820813pt;}
.h9{height:33.098799pt;}
.hb{height:33.104132pt;}
.hd{height:33.311334pt;}
.he{height:33.316668pt;}
.h4{height:35.769958pt;}
.h5{height:39.744132pt;}
.h8{height:39.956668pt;}
.h6{height:47.693278pt;}
.h7{height:47.948322pt;}
.h10{height:53.029466pt;}
.h3{height:68.677969pt;}
.h1{height:340.000000pt;}
.h0{height:340.160000pt;}
.w1{width:604.666667pt;}
.w0{width:604.720000pt;}
.x0{left:0.000000pt;}
.x1c{left:17.152000pt;}
.xc{left:34.790667pt;}
.x5{left:36.324000pt;}
.x10{left:37.794667pt;}
.x8{left:46.721333pt;}
.x12{left:64.362667pt;}
.x19{left:73.844000pt;}
.x15{left:74.989333pt;}
.x1a{left:90.817333pt;}
.x1f{left:100.302667pt;}
.xf{left:115.590667pt;}
.x20{left:117.276000pt;}
.x9{left:138.894667pt;}
.xb{left:154.556000pt;}
.x4{left:177.298667pt;}
.x3{left:182.078667pt;}
.x11{left:183.185333pt;}
.x7{left:193.881333pt;}
.x18{left:204.305333pt;}
.x2{left:222.933333pt;}
.x14{left:226.526667pt;}
.x6{left:227.556000pt;}
.x13{left:228.464000pt;}
.x1e{left:236.696000pt;}
.x17{left:246.850667pt;}
.x22{left:252.132000pt;}
.x23{left:257.940000pt;}
.x1b{left:261.173333pt;}
.x21{left:263.674667pt;}
.xa{left:266.337333pt;}
.xe{left:397.566667pt;}
.xd{left:404.756000pt;}
.x1d{left:422.956000pt;}
.x16{left:582.905333pt;}
.x1{left:586.890667pt;}
}




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