
    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_decd6b09dbd2cfc9fe928e67.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_87df33dcc8ad24a5e56d1de6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_895e869612b2cfc5c9150d1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5889ac5aeaeac8caeb89ed3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cb02a9699c1c854fe3f5d652.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d5ee21175138ddcc20740600.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.250560px;}
.ls4{letter-spacing:0.397461px;}
.ls1{letter-spacing:13.659276px;}
.ls5{letter-spacing:30.353778px;}
.ls3{letter-spacing:33.232051px;}
.ls0{letter-spacing:251.096942px;}
.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:-60.120000px;}
.ws4{word-spacing:-21.130560px;}
.ws1{word-spacing:-20.880000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._19{margin-left:-8.045867px;}
._c{margin-left:-6.893771px;}
._b{margin-left:-5.805635px;}
._8{margin-left:-3.860836px;}
._6{margin-left:-2.822400px;}
._3{margin-left:-1.033573px;}
._4{width:1.058400px;}
._5{width:2.495173px;}
._11{width:3.535239px;}
._e{width:4.654096px;}
._f{width:5.664107px;}
._13{width:6.787935px;}
._14{width:8.559331px;}
._15{width:9.883920px;}
._16{width:10.929918px;}
._10{width:13.113152px;}
._d{width:14.903468px;}
._7{width:16.474515px;}
._9{width:19.088966px;}
._a{width:20.731559px;}
._17{width:22.048406px;}
._18{width:23.394845px;}
._2{width:107.870478px;}
._12{width:111.135519px;}
._0{width:137.260955px;}
._1{width:161.870478px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs3{font-size:50.400000px;}
.fs6{font-size:66.239400px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.479400px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:240.480000px;}
.y0{bottom:0.000000px;}
.y2{bottom:35.640000px;}
.y3a{bottom:50.040000px;}
.y1d{bottom:95.040000px;}
.y6c{bottom:104.400000px;}
.y51{bottom:111.240000px;}
.y1c{bottom:118.800000px;}
.y6b{bottom:128.160000px;}
.y50{bottom:134.640000px;}
.y39{bottom:139.320000px;}
.y1b{bottom:142.560000px;}
.y6a{bottom:151.920000px;}
.y4f{bottom:158.400000px;}
.y1a{bottom:166.320000px;}
.y69{bottom:175.680000px;}
.y38{bottom:178.920000px;}
.y19{bottom:190.080000px;}
.y4e{bottom:197.280000px;}
.y68{bottom:199.440000px;}
.y18{bottom:213.840000px;}
.y37{bottom:221.040000px;}
.y4d{bottom:236.160000px;}
.y67{bottom:239.400000px;}
.y36{bottom:244.440000px;}
.y17{bottom:253.800000px;}
.y35{bottom:268.200000px;}
.y4c{bottom:275.040000px;}
.y66{bottom:281.160000px;}
.y34{bottom:291.959850px;}
.y16{bottom:295.920000px;}
.y65{bottom:304.920000px;}
.y4b{bottom:313.920000px;}
.y33{bottom:315.720000px;}
.y15{bottom:320.040000px;}
.y64{bottom:328.680000px;}
.y32{bottom:339.480000px;}
.y78{bottom:350.280000px;}
.y63{bottom:352.440000px;}
.y4a{bottom:352.800000px;}
.y14{bottom:362.520000px;}
.y77{bottom:373.680000px;}
.y62{bottom:376.200000px;}
.y31{bottom:379.440000px;}
.y13{bottom:385.919850px;}
.y49{bottom:391.320000px;}
.y76{bottom:397.440000px;}
.y61{bottom:399.960000px;}
.y12{bottom:409.680000px;}
.y75{bottom:421.200000px;}
.y30{bottom:421.560000px;}
.y48{bottom:430.200000px;}
.y11{bottom:433.440000px;}
.y60{bottom:439.200000px;}
.y2f{bottom:444.960000px;}
.y47{bottom:453.960000px;}
.y10{bottom:457.200000px;}
.y5f{bottom:462.600000px;}
.y2e{bottom:468.720000px;}
.y46{bottom:477.720000px;}
.yf{bottom:480.960000px;}
.y5e{bottom:486.360000px;}
.y2d{bottom:492.480000px;}
.y45{bottom:501.480000px;}
.ye{bottom:504.720000px;}
.y5d{bottom:510.120000px;}
.y2c{bottom:516.240000px;}
.yd{bottom:528.840000px;}
.y5c{bottom:533.880000px;}
.y2b{bottom:540.360000px;}
.yc{bottom:552.600000px;}
.y5b{bottom:557.640000px;}
.y2a{bottom:564.120000px;}
.yb{bottom:576.360000px;}
.y44{bottom:579.960000px;}
.y74{bottom:587.880000px;}
.y5a{bottom:597.600000px;}
.ya{bottom:600.120000px;}
.y29{bottom:603.000000px;}
.y73{bottom:611.640000px;}
.y43{bottom:622.080000px;}
.y28{bottom:626.759850px;}
.y59{bottom:639.720000px;}
.y9{bottom:640.080000px;}
.y42{bottom:645.480000px;}
.y27{bottom:650.520000px;}
.y72{bottom:651.600000px;}
.y58{bottom:663.120000px;}
.y26{bottom:674.280000px;}
.y8{bottom:681.120000px;}
.y41{bottom:684.720000px;}
.y57{bottom:686.880000px;}
.y71{bottom:693.360000px;}
.y25{bottom:698.040000px;}
.y7{bottom:703.080000px;}
.y40{bottom:708.120000px;}
.y56{bottom:710.640000px;}
.y70{bottom:717.120000px;}
.y24{bottom:721.800000px;}
.y6{bottom:726.120000px;}
.y3f{bottom:731.880000px;}
.y6f{bottom:740.880000px;}
.y23{bottom:745.560000px;}
.y55{bottom:749.520000px;}
.y3e{bottom:755.640000px;}
.y6e{bottom:764.640000px;}
.y5{bottom:770.400000px;}
.y3d{bottom:779.760000px;}
.y22{bottom:785.519850px;}
.y6d{bottom:788.400000px;}
.y54{bottom:788.760000px;}
.y4{bottom:801.720000px;}
.y3c{bottom:803.519850px;}
.y53{bottom:812.160000px;}
.y3b{bottom:827.280000px;}
.y21{bottom:827.640000px;}
.y3{bottom:833.400000px;}
.y52{bottom:835.920000px;}
.y20{bottom:851.040000px;}
.y1f{bottom:874.800000px;}
.y1{bottom:877.680000px;}
.y1e{bottom:923.040000px;}
.h2{height:34.157813px;}
.h5{height:45.992396px;}
.ha{height:47.988281px;}
.hd{height:48.796875px;}
.hc{height:49.042969px;}
.h7{height:49.992188px;}
.h9{height:51.679688px;}
.hb{height:52.031250px;}
.h4{height:56.604375px;}
.h8{height:57.990937px;}
.h6{height:59.235469px;}
.h3{height:65.387406px;}
.h1{height:162.981562px;}
.h0{height:972.000000px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x2{left:81.000000px;}
.x1{left:83.160000px;}
.x3{left:104.760000px;}
.xb{left:108.000000px;}
.xa{left:113.400000px;}
.x4{left:131.040000px;}
.x8{left:174.960000px;}
.x7{left:209.160000px;}
.x5{left:212.760000px;}
.x6{left:320.400000px;}
.x9{left:338.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.222720pt;}
.ls4{letter-spacing:0.353298pt;}
.ls1{letter-spacing:12.141579pt;}
.ls5{letter-spacing:26.981136pt;}
.ls3{letter-spacing:29.539601pt;}
.ls0{letter-spacing:223.197282pt;}
.ws0{word-spacing:-53.440000pt;}
.ws4{word-spacing:-18.782720pt;}
.ws1{word-spacing:-18.560000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._19{margin-left:-7.151882pt;}
._c{margin-left:-6.127797pt;}
._b{margin-left:-5.160564pt;}
._8{margin-left:-3.431854pt;}
._6{margin-left:-2.508800pt;}
._3{margin-left:-0.918732pt;}
._4{width:0.940800pt;}
._5{width:2.217932pt;}
._11{width:3.142435pt;}
._e{width:4.136974pt;}
._f{width:5.034762pt;}
._13{width:6.033720pt;}
._14{width:7.608294pt;}
._15{width:8.785707pt;}
._16{width:9.715483pt;}
._10{width:11.656135pt;}
._d{width:13.247527pt;}
._7{width:14.644014pt;}
._9{width:16.967970pt;}
._a{width:18.428052pt;}
._17{width:19.598583pt;}
._18{width:20.795418pt;}
._2{width:95.884869pt;}
._12{width:98.787128pt;}
._0{width:122.009738pt;}
._1{width:143.884869pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:44.800000pt;}
.fs6{font-size:58.879467pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.759467pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:213.760000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:31.680000pt;}
.y3a{bottom:44.480000pt;}
.y1d{bottom:84.480000pt;}
.y6c{bottom:92.800000pt;}
.y51{bottom:98.880000pt;}
.y1c{bottom:105.600000pt;}
.y6b{bottom:113.920000pt;}
.y50{bottom:119.680000pt;}
.y39{bottom:123.840000pt;}
.y1b{bottom:126.720000pt;}
.y6a{bottom:135.040000pt;}
.y4f{bottom:140.800000pt;}
.y1a{bottom:147.840000pt;}
.y69{bottom:156.160000pt;}
.y38{bottom:159.040000pt;}
.y19{bottom:168.960000pt;}
.y4e{bottom:175.360000pt;}
.y68{bottom:177.280000pt;}
.y18{bottom:190.080000pt;}
.y37{bottom:196.480000pt;}
.y4d{bottom:209.920000pt;}
.y67{bottom:212.800000pt;}
.y36{bottom:217.280000pt;}
.y17{bottom:225.600000pt;}
.y35{bottom:238.400000pt;}
.y4c{bottom:244.480000pt;}
.y66{bottom:249.920000pt;}
.y34{bottom:259.519867pt;}
.y16{bottom:263.040000pt;}
.y65{bottom:271.040000pt;}
.y4b{bottom:279.040000pt;}
.y33{bottom:280.640000pt;}
.y15{bottom:284.480000pt;}
.y64{bottom:292.160000pt;}
.y32{bottom:301.760000pt;}
.y78{bottom:311.360000pt;}
.y63{bottom:313.280000pt;}
.y4a{bottom:313.600000pt;}
.y14{bottom:322.240000pt;}
.y77{bottom:332.160000pt;}
.y62{bottom:334.400000pt;}
.y31{bottom:337.280000pt;}
.y13{bottom:343.039867pt;}
.y49{bottom:347.840000pt;}
.y76{bottom:353.280000pt;}
.y61{bottom:355.520000pt;}
.y12{bottom:364.160000pt;}
.y75{bottom:374.400000pt;}
.y30{bottom:374.720000pt;}
.y48{bottom:382.400000pt;}
.y11{bottom:385.280000pt;}
.y60{bottom:390.400000pt;}
.y2f{bottom:395.520000pt;}
.y47{bottom:403.520000pt;}
.y10{bottom:406.400000pt;}
.y5f{bottom:411.200000pt;}
.y2e{bottom:416.640000pt;}
.y46{bottom:424.640000pt;}
.yf{bottom:427.520000pt;}
.y5e{bottom:432.320000pt;}
.y2d{bottom:437.760000pt;}
.y45{bottom:445.760000pt;}
.ye{bottom:448.640000pt;}
.y5d{bottom:453.440000pt;}
.y2c{bottom:458.880000pt;}
.yd{bottom:470.080000pt;}
.y5c{bottom:474.560000pt;}
.y2b{bottom:480.320000pt;}
.yc{bottom:491.200000pt;}
.y5b{bottom:495.680000pt;}
.y2a{bottom:501.440000pt;}
.yb{bottom:512.320000pt;}
.y44{bottom:515.520000pt;}
.y74{bottom:522.560000pt;}
.y5a{bottom:531.200000pt;}
.ya{bottom:533.440000pt;}
.y29{bottom:536.000000pt;}
.y73{bottom:543.680000pt;}
.y43{bottom:552.960000pt;}
.y28{bottom:557.119867pt;}
.y59{bottom:568.640000pt;}
.y9{bottom:568.960000pt;}
.y42{bottom:573.760000pt;}
.y27{bottom:578.240000pt;}
.y72{bottom:579.200000pt;}
.y58{bottom:589.440000pt;}
.y26{bottom:599.360000pt;}
.y8{bottom:605.440000pt;}
.y41{bottom:608.640000pt;}
.y57{bottom:610.560000pt;}
.y71{bottom:616.320000pt;}
.y25{bottom:620.480000pt;}
.y7{bottom:624.960000pt;}
.y40{bottom:629.440000pt;}
.y56{bottom:631.680000pt;}
.y70{bottom:637.440000pt;}
.y24{bottom:641.600000pt;}
.y6{bottom:645.440000pt;}
.y3f{bottom:650.560000pt;}
.y6f{bottom:658.560000pt;}
.y23{bottom:662.720000pt;}
.y55{bottom:666.240000pt;}
.y3e{bottom:671.680000pt;}
.y6e{bottom:679.680000pt;}
.y5{bottom:684.800000pt;}
.y3d{bottom:693.120000pt;}
.y22{bottom:698.239867pt;}
.y6d{bottom:700.800000pt;}
.y54{bottom:701.120000pt;}
.y4{bottom:712.640000pt;}
.y3c{bottom:714.239867pt;}
.y53{bottom:721.920000pt;}
.y3b{bottom:735.360000pt;}
.y21{bottom:735.680000pt;}
.y3{bottom:740.800000pt;}
.y52{bottom:743.040000pt;}
.y20{bottom:756.480000pt;}
.y1f{bottom:777.600000pt;}
.y1{bottom:780.160000pt;}
.y1e{bottom:820.480000pt;}
.h2{height:30.362500pt;}
.h5{height:40.882130pt;}
.ha{height:42.656250pt;}
.hd{height:43.375000pt;}
.hc{height:43.593750pt;}
.h7{height:44.437500pt;}
.h9{height:45.937500pt;}
.hb{height:46.250000pt;}
.h4{height:50.315000pt;}
.h8{height:51.547500pt;}
.h6{height:52.653750pt;}
.h3{height:58.122139pt;}
.h1{height:144.872500pt;}
.h0{height:864.000000pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.000000pt;}
.x1{left:73.920000pt;}
.x3{left:93.120000pt;}
.xb{left:96.000000pt;}
.xa{left:100.800000pt;}
.x4{left:116.480000pt;}
.x8{left:155.520000pt;}
.x7{left:185.920000pt;}
.x5{left:189.120000pt;}
.x6{left:284.800000pt;}
.x9{left:301.120000pt;}
}




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