
    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_dd50c005c7b968c4ae137530.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_3bec891f551774fc106ac129.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_ceb8c938ff780a3f4e1cf30b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932617;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;}
.m1{transform:matrix(0.196101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196101,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.209624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209624,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:0.000000px;}
._1{margin-left:-10.080379px;}
._2{margin-left:-8.163307px;}
._4{margin-left:-7.092317px;}
._a{margin-left:-5.582390px;}
._9{margin-left:-4.414921px;}
._5{margin-left:-3.221063px;}
._3{margin-left:-2.059952px;}
._8{margin-left:-1.021878px;}
._0{width:1.200420px;}
._6{width:3.024120px;}
._7{width:4.968197px;}
._b{width:6.552246px;}
._c{width:7.701467px;}
._d{width:8.761829px;}
._e{width:19.118687px;}
._f{width:20.221791px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760225px;}
.fs0{font-size:59.762250px;}
.fs9{font-size:66.240183px;}
.fs6{font-size:66.242700px;}
.fs8{font-size:72.002705px;}
.fs5{font-size:95.763600px;}
.fs2{font-size:120.244505px;}
.fs3{font-size:131.764946px;}
.fs1{font-size:144.005409px;}
.fs4{font-size:216.008550px;}
.y0{bottom:0.000000px;}
.y14{bottom:147.060036px;}
.y15{bottom:147.240074px;}
.y13{bottom:197.460091px;}
.y12{bottom:224.820099px;}
.y51{bottom:230.400055px;}
.y3f{bottom:249.840088px;}
.y50{bottom:257.580093px;}
.y11{bottom:258.300041px;}
.y3e{bottom:271.080093px;}
.y4f{bottom:291.240074px;}
.y3d{bottom:292.500068px;}
.y3c{bottom:311.400055px;}
.y10{bottom:332.100083px;}
.y3b{bottom:333.360077px;}
.y3a{bottom:354.600083px;}
.y4e{bottom:365.040047px;}
.y72{bottom:371.520058px;}
.y39{bottom:373.500068px;}
.yf{bottom:394.200096px;}
.y38{bottom:395.460091px;}
.y71{bottom:399.060036px;}
.y37{bottom:416.700096px;}
.y70{bottom:422.460091px;}
.y4d{bottom:427.140060px;}
.y36{bottom:437.760064px;}
.y6f{bottom:445.860077px;}
.ye{bottom:451.800041px;}
.y35{bottom:459.540047px;}
.y6e{bottom:469.260064px;}
.y34{bottom:478.440033px;}
.y4c{bottom:484.740074px;}
.y6d{bottom:492.660049px;}
.y33{bottom:499.860077px;}
.y6c{bottom:516.060036px;}
.y32{bottom:521.280052px;}
.yd{bottom:524.700096px;}
.y6b{bottom:539.280052px;}
.y31{bottom:542.880066px;}
.y4b{bottom:557.460091px;}
.y30{bottom:561.780052px;}
.yc{bottom:562.680039px;}
.y2f{bottom:583.560036px;}
.y6a{bottom:586.080093px;}
.y4a{bottom:595.440033px;}
.yb{bottom:600.660049px;}
.y2e{bottom:604.980079px;}
.y69{bottom:609.480079px;}
.y2d{bottom:623.880066px;}
.y68{bottom:632.880066px;}
.y49{bottom:633.420043px;}
.ya{bottom:638.460091px;}
.y2c{bottom:645.660049px;}
.y67{bottom:656.280052px;}
.y2b{bottom:667.080093px;}
.y48{bottom:671.400055px;}
.y66{bottom:679.680039px;}
.y2a{bottom:685.980079px;}
.y9{bottom:695.880066px;}
.y65{bottom:701.640060px;}
.y29{bottom:707.760064px;}
.y64{bottom:725.040081px;}
.y47{bottom:729.000068px;}
.y28{bottom:729.180073px;}
.y8{bottom:733.320065px;}
.y27{bottom:748.080059px;}
.y63{bottom:748.440067px;}
.y46{bottom:766.260064px;}
.y26{bottom:769.680073px;}
.y62{bottom:771.840054px;}
.y25{bottom:790.920078px;}
.y7{bottom:793.620072px;}
.y61{bottom:795.240074px;}
.y24{bottom:810.000068px;}
.y60{bottom:818.640060px;}
.y45{bottom:823.500068px;}
.y23{bottom:831.960056px;}
.y6{bottom:836.820065px;}
.y5f{bottom:841.860077px;}
.y44{bottom:862.020058px;}
.y5e{bottom:865.260064px;}
.y22{bottom:872.460056px;}
.y5d{bottom:888.660049px;}
.y5{bottom:897.660049px;}
.y5c{bottom:912.060070px;}
.y21{bottom:913.320065px;}
.y43{bottom:918.360077px;}
.y20{bottom:932.400055px;}
.y5b{bottom:935.460056px;}
.y4{bottom:948.960056px;}
.y1f{bottom:954.000068px;}
.y5a{bottom:958.860077px;}
.y42{bottom:965.160049px;}
.y1e{bottom:975.240074px;}
.y59{bottom:982.260064px;}
.y3{bottom:990.360060px;}
.y1d{bottom:996.660067px;}
.y41{bottom:1006.560070px;}
.y1c{bottom:1015.740074px;}
.y58{bottom:1019.880066px;}
.y57{bottom:1019.880805px;}
.y1b{bottom:1037.340070px;}
.y56{bottom:1041.120072px;}
.y55{bottom:1041.122613px;}
.y40{bottom:1045.620072px;}
.y2{bottom:1051.020058px;}
.y1a{bottom:1058.760064px;}
.y54{bottom:1079.280069px;}
.y19{bottom:1080.360060px;}
.y1{bottom:1084.680073px;}
.y18{bottom:1099.260064px;}
.y53{bottom:1117.980063px;}
.y17{bottom:1120.680064px;}
.y52{bottom:1141.380066px;}
.y16{bottom:1142.280069px;}
.ha{height:5.043009px;}
.hd{height:47.480756px;}
.he{height:47.482560px;}
.h2{height:52.321150px;}
.h9{height:59.029750px;}
.hc{height:63.037524px;}
.hb{height:64.162566px;}
.h8{height:85.336216px;}
.h5{height:107.151475px;}
.h6{height:117.417493px;}
.h3{height:126.075048px;}
.h4{height:128.325133px;}
.h7{height:192.488088px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:97.560001px;}
.xc{left:106.200002px;}
.x5{left:108.719999px;}
.x3{left:134.099997px;}
.x9{left:155.340002px;}
.x6{left:190.979994px;}
.x8{left:204.120002px;}
.xa{left:231.479994px;}
.x7{left:303.480011px;}
.x4{left:368.819996px;}
.xb{left:446.220017px;}
.x1{left:545.759994px;}
.xd{left:689.940033px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-8.960337pt;}
._2{margin-left:-7.256273pt;}
._4{margin-left:-6.304282pt;}
._a{margin-left:-4.962124pt;}
._9{margin-left:-3.924374pt;}
._5{margin-left:-2.863167pt;}
._3{margin-left:-1.831069pt;}
._8{margin-left:-0.908336pt;}
._0{width:1.067040pt;}
._6{width:2.688106pt;}
._7{width:4.416175pt;}
._b{width:5.824219pt;}
._c{width:6.845748pt;}
._d{width:7.788293pt;}
._e{width:16.994388pt;}
._f{width:17.974925pt;}
.fs7{font-size:5.120200pt;}
.fs0{font-size:53.122000pt;}
.fs9{font-size:58.880163pt;}
.fs6{font-size:58.882400pt;}
.fs8{font-size:64.002404pt;}
.fs5{font-size:85.123200pt;}
.fs2{font-size:106.884004pt;}
.fs3{font-size:117.124396pt;}
.fs1{font-size:128.004808pt;}
.fs4{font-size:192.007600pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:130.720032pt;}
.y15{bottom:130.880066pt;}
.y13{bottom:175.520081pt;}
.y12{bottom:199.840088pt;}
.y51{bottom:204.800049pt;}
.y3f{bottom:222.080079pt;}
.y50{bottom:228.960083pt;}
.y11{bottom:229.600037pt;}
.y3e{bottom:240.960083pt;}
.y4f{bottom:258.880066pt;}
.y3d{bottom:260.000061pt;}
.y3c{bottom:276.800049pt;}
.y10{bottom:295.200074pt;}
.y3b{bottom:296.320069pt;}
.y3a{bottom:315.200074pt;}
.y4e{bottom:324.480042pt;}
.y72{bottom:330.240052pt;}
.y39{bottom:332.000061pt;}
.yf{bottom:350.400086pt;}
.y38{bottom:351.520081pt;}
.y71{bottom:354.720032pt;}
.y37{bottom:370.400086pt;}
.y70{bottom:375.520081pt;}
.y4d{bottom:379.680054pt;}
.y36{bottom:389.120057pt;}
.y6f{bottom:396.320069pt;}
.ye{bottom:401.600037pt;}
.y35{bottom:408.480042pt;}
.y6e{bottom:417.120057pt;}
.y34{bottom:425.280030pt;}
.y4c{bottom:430.880066pt;}
.y6d{bottom:437.920044pt;}
.y33{bottom:444.320069pt;}
.y6c{bottom:458.720032pt;}
.y32{bottom:463.360047pt;}
.yd{bottom:466.400086pt;}
.y6b{bottom:479.360047pt;}
.y31{bottom:482.560059pt;}
.y4b{bottom:495.520081pt;}
.y30{bottom:499.360047pt;}
.yc{bottom:500.160035pt;}
.y2f{bottom:518.720032pt;}
.y6a{bottom:520.960083pt;}
.y4a{bottom:529.280030pt;}
.yb{bottom:533.920044pt;}
.y2e{bottom:537.760071pt;}
.y69{bottom:541.760071pt;}
.y2d{bottom:554.560059pt;}
.y68{bottom:562.560059pt;}
.y49{bottom:563.040039pt;}
.ya{bottom:567.520081pt;}
.y2c{bottom:573.920044pt;}
.y67{bottom:583.360047pt;}
.y2b{bottom:592.960083pt;}
.y48{bottom:596.800049pt;}
.y66{bottom:604.160035pt;}
.y2a{bottom:609.760071pt;}
.y9{bottom:618.560059pt;}
.y65{bottom:623.680054pt;}
.y29{bottom:629.120057pt;}
.y64{bottom:644.480072pt;}
.y47{bottom:648.000061pt;}
.y28{bottom:648.160065pt;}
.y8{bottom:651.840058pt;}
.y27{bottom:664.960053pt;}
.y63{bottom:665.280060pt;}
.y46{bottom:681.120057pt;}
.y26{bottom:684.160065pt;}
.y62{bottom:686.080048pt;}
.y25{bottom:703.040070pt;}
.y7{bottom:705.440064pt;}
.y61{bottom:706.880066pt;}
.y24{bottom:720.000061pt;}
.y60{bottom:727.680054pt;}
.y45{bottom:732.000061pt;}
.y23{bottom:739.520050pt;}
.y6{bottom:743.840058pt;}
.y5f{bottom:748.320069pt;}
.y44{bottom:766.240052pt;}
.y5e{bottom:769.120057pt;}
.y22{bottom:775.520050pt;}
.y5d{bottom:789.920044pt;}
.y5{bottom:797.920044pt;}
.y5c{bottom:810.720063pt;}
.y21{bottom:811.840058pt;}
.y43{bottom:816.320069pt;}
.y20{bottom:828.800049pt;}
.y5b{bottom:831.520050pt;}
.y4{bottom:843.520050pt;}
.y1f{bottom:848.000061pt;}
.y5a{bottom:852.320069pt;}
.y42{bottom:857.920044pt;}
.y1e{bottom:866.880066pt;}
.y59{bottom:873.120057pt;}
.y3{bottom:880.320054pt;}
.y1d{bottom:885.920060pt;}
.y41{bottom:894.720063pt;}
.y1c{bottom:902.880066pt;}
.y58{bottom:906.560059pt;}
.y57{bottom:906.560716pt;}
.y1b{bottom:922.080063pt;}
.y56{bottom:925.440064pt;}
.y55{bottom:925.442323pt;}
.y40{bottom:929.440064pt;}
.y2{bottom:934.240052pt;}
.y1a{bottom:941.120057pt;}
.y54{bottom:959.360062pt;}
.y19{bottom:960.320054pt;}
.y1{bottom:964.160065pt;}
.y18{bottom:977.120057pt;}
.y53{bottom:993.760056pt;}
.y17{bottom:996.160057pt;}
.y52{bottom:1014.560059pt;}
.y16{bottom:1015.360062pt;}
.ha{height:4.482675pt;}
.hd{height:42.205117pt;}
.he{height:42.206720pt;}
.h2{height:46.507688pt;}
.h9{height:52.470889pt;}
.hc{height:56.033355pt;}
.hb{height:57.033392pt;}
.h8{height:75.854414pt;}
.h5{height:95.245756pt;}
.h6{height:104.371105pt;}
.h3{height:112.066709pt;}
.h4{height:114.066784pt;}
.h7{height:171.100522pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:86.720001pt;}
.xc{left:94.400002pt;}
.x5{left:96.639999pt;}
.x3{left:119.199997pt;}
.x9{left:138.080002pt;}
.x6{left:169.759995pt;}
.x8{left:181.440002pt;}
.xa{left:205.759995pt;}
.x7{left:269.760010pt;}
.x4{left:327.839996pt;}
.xb{left:396.640015pt;}
.x1{left:485.119995pt;}
.xd{left:613.280029pt;}
}




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