
    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_e5ff86925738e7c62086ef37.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_45a88e4677232cc2e72e71d4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2f9b4770e68039b7916c40d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_d1d75a38a6a8a1638c58da58.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_7a69a279c3a2372b1c0d07a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_54c2fa5ca0cd303d873c4990.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942871;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:ff7;src:url('chunks/assets/font_2ebc40703d923843a7f82ef3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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:ff8;src:url('chunks/assets/font_144fc910d1774a7f63f5034a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.083008;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;}
.ls4{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012645px;}
.ls3{letter-spacing:107.972016px;}
.ls2{letter-spacing:107.986179px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,54,96),0 0.015em rgb(0,54,96),0.015em 0 rgb(0,54,96),0 -0.015em  rgb(0,54,96);}
.sc4{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(183,183,183),0 0.015em rgb(183,183,183),0.015em 0 rgb(183,183,183),0 -0.015em  rgb(183,183,183);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,54,96);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(183,183,183);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-480.000150px;}
.ws0{word-spacing:-120.000015px;}
.ws6{word-spacing:-45.360000px;}
.ws4{word-spacing:-33.600004px;}
.ws1{word-spacing:-26.687996px;}
.wsb{word-spacing:-23.520004px;}
.ws7{word-spacing:-18.282004px;}
.ws9{word-spacing:-14.958000px;}
.wsa{word-spacing:-14.904000px;}
.ws8{word-spacing:-13.440004px;}
.ws5{word-spacing:0.000000px;}
.ws2{word-spacing:2757.642390px;}
._3{margin-left:-7.103999px;}
._2{margin-left:-2.256000px;}
._0{margin-left:-1.104000px;}
._4{width:1.140450px;}
._1{width:2.750692px;}
.fc5{color:rgb(7,81,140);}
.fc4{color:rgb(4,133,155);}
.fc3{color:rgb(0,54,96);}
.fc2{color:transparent;}
.fc8{color:rgb(239,86,69);}
.fc7{color:rgb(0,0,0);}
.fc6{color:rgb(0,75,131);}
.fc1{color:rgb(183,183,183);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:48.000015px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:66.000015px;}
.fsd{font-size:77.999985px;}
.fsb{font-size:84.000015px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:95.999985px;}
.fsa{font-size:108.000000px;}
.fs1{font-size:120.000015px;}
.fse{font-size:138.000015px;}
.fs6{font-size:162.000000px;}
.fs3{font-size:180.000000px;}
.fs0{font-size:275.999985px;}
.fsf{font-size:299.999970px;}
.fs4{font-size:360.000000px;}
.fs5{font-size:480.000150px;}
.y0{bottom:0.000000px;}
.y36{bottom:12.959265px;}
.y2f{bottom:14.696089px;}
.y10{bottom:28.328828px;}
.y35{bottom:29.159265px;}
.yf{bottom:42.953828px;}
.y8{bottom:55.448550px;}
.ye{bottom:57.578828px;}
.y37{bottom:58.193145px;}
.y53{bottom:74.992500px;}
.y9{bottom:77.454911px;}
.y21{bottom:80.794650px;}
.y40{bottom:86.194395px;}
.y3f{bottom:102.394395px;}
.yd{bottom:105.486079px;}
.y5{bottom:105.977288px;}
.y47{bottom:106.492500px;}
.y20{bottom:112.294650px;}
.y52{bottom:118.867500px;}
.yc{bottom:125.286068px;}
.y2a{bottom:127.867500px;}
.y3e{bottom:132.544650px;}
.y4{bottom:143.102288px;}
.y1f{bottom:143.794650px;}
.y22{bottom:153.801874px;}
.y51{bottom:162.742500px;}
.y46{bottom:163.867500px;}
.y3d{bottom:164.044650px;}
.y3{bottom:180.227288px;}
.y29{bottom:188.617500px;}
.y1e{bottom:192.169650px;}
.y3c{bottom:195.544650px;}
.y45{bottom:202.117500px;}
.y50{bottom:206.617500px;}
.y1d{bottom:223.669650px;}
.y15{bottom:225.607500px;}
.y34{bottom:225.742500px;}
.y3b{bottom:227.044650px;}
.y28{bottom:249.367500px;}
.y4f{bottom:250.492500px;}
.y1c{bottom:255.169650px;}
.y3a{bottom:258.544650px;}
.y44{bottom:259.492500px;}
.y4a{bottom:262.824825px;}
.y33{bottom:263.617537px;}
.y2{bottom:263.689613px;}
.y14{bottom:273.982500px;}
.y1b{bottom:286.669650px;}
.y27{bottom:287.617500px;}
.y4e{bottom:294.367500px;}
.y2e{bottom:301.867537px;}
.y31{bottom:310.117500px;}
.y39{bottom:312.544650px;}
.y32{bottom:316.867500px;}
.y1{bottom:324.499575px;}
.y1a{bottom:335.044650px;}
.y4d{bottom:338.242500px;}
.y38{bottom:344.044650px;}
.y13{bottom:344.857500px;}
.y26{bottom:348.367500px;}
.y2d{bottom:355.117500px;}
.y19{bottom:366.544650px;}
.y30{bottom:370.867500px;}
.y43{bottom:374.242500px;}
.y49{bottom:375.324870px;}
.y4c{bottom:382.117500px;}
.y12{bottom:393.232500px;}
.y2c{bottom:393.367500px;}
.y18{bottom:398.044650px;}
.y25{bottom:409.117500px;}
.y42{bottom:412.492500px;}
.y48{bottom:416.779350px;}
.y4b{bottom:425.992500px;}
.y17{bottom:429.544650px;}
.y2b{bottom:431.617500px;}
.yb{bottom:452.728084px;}
.y16{bottom:461.044650px;}
.y11{bottom:464.107500px;}
.y24{bottom:469.867500px;}
.y7{bottom:479.855846px;}
.y6{bottom:510.999600px;}
.y54{bottom:538.563172px;}
.ya{bottom:540.443250px;}
.y23{bottom:540.444000px;}
.y41{bottom:545.628000px;}
.hb{height:36.000011px;}
.he{height:40.500000px;}
.ha{height:49.500011px;}
.hf{height:62.876964px;}
.hd{height:63.000011px;}
.h9{height:67.500000px;}
.h3{height:69.984364px;}
.hc{height:81.000000px;}
.h2{height:89.040011px;}
.h7{height:90.000011px;}
.h10{height:103.500011px;}
.h8{height:121.500000px;}
.h4{height:131.044922px;}
.h1{height:206.999989px;}
.h11{height:239.941382px;}
.h5{height:239.941406px;}
.h6{height:319.921975px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x12{left:14.731169px;}
.x8{left:36.511125px;}
.x5{left:38.239414px;}
.x6{left:39.983265px;}
.xe{left:50.217525px;}
.x10{left:64.540519px;}
.x1{left:65.867314px;}
.x7{left:87.341378px;}
.x11{left:104.217525px;}
.x18{left:119.623879px;}
.x9{left:153.681169px;}
.xa{left:155.716545px;}
.x17{left:168.725078px;}
.x4{left:253.640970px;}
.x2{left:446.107178px;}
.x13{left:559.857300px;}
.xb{left:609.320966px;}
.xd{left:628.461600px;}
.xc{left:636.732300px;}
.x14{left:653.387617px;}
.x16{left:685.008900px;}
.x3{left:693.399300px;}
.x15{left:751.882200px;}
.xf{left:805.988700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011240pt;}
.ls3{letter-spacing:95.975125pt;}
.ls2{letter-spacing:95.987715pt;}
.ws3{word-spacing:-426.666800pt;}
.ws0{word-spacing:-106.666680pt;}
.ws6{word-spacing:-40.320000pt;}
.ws4{word-spacing:-29.866670pt;}
.ws1{word-spacing:-23.722663pt;}
.wsb{word-spacing:-20.906670pt;}
.ws7{word-spacing:-16.250670pt;}
.ws9{word-spacing:-13.296000pt;}
.wsa{word-spacing:-13.248000pt;}
.ws8{word-spacing:-11.946670pt;}
.ws5{word-spacing:0.000000pt;}
.ws2{word-spacing:2451.237680pt;}
._3{margin-left:-6.314666pt;}
._2{margin-left:-2.005334pt;}
._0{margin-left:-0.981333pt;}
._4{width:1.013733pt;}
._1{width:2.445060pt;}
.fs9{font-size:42.666680pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:58.666680pt;}
.fsd{font-size:69.333320pt;}
.fsb{font-size:74.666680pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:85.333320pt;}
.fsa{font-size:96.000000pt;}
.fs1{font-size:106.666680pt;}
.fse{font-size:122.666680pt;}
.fs6{font-size:144.000000pt;}
.fs3{font-size:160.000000pt;}
.fs0{font-size:245.333320pt;}
.fsf{font-size:266.666640pt;}
.fs4{font-size:320.000000pt;}
.fs5{font-size:426.666800pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:11.519347pt;}
.y2f{bottom:13.063190pt;}
.y10{bottom:25.181180pt;}
.y35{bottom:25.919347pt;}
.yf{bottom:38.181180pt;}
.y8{bottom:49.287600pt;}
.ye{bottom:51.181180pt;}
.y37{bottom:51.727240pt;}
.y53{bottom:66.660000pt;}
.y9{bottom:68.848810pt;}
.y21{bottom:71.817467pt;}
.y40{bottom:76.617240pt;}
.y3f{bottom:91.017240pt;}
.yd{bottom:93.765403pt;}
.y5{bottom:94.202033pt;}
.y47{bottom:94.660000pt;}
.y20{bottom:99.817467pt;}
.y52{bottom:105.660000pt;}
.yc{bottom:111.365393pt;}
.y2a{bottom:113.660000pt;}
.y3e{bottom:117.817467pt;}
.y4{bottom:127.202033pt;}
.y1f{bottom:127.817467pt;}
.y22{bottom:136.712777pt;}
.y51{bottom:144.660000pt;}
.y46{bottom:145.660000pt;}
.y3d{bottom:145.817467pt;}
.y3{bottom:160.202033pt;}
.y29{bottom:167.660000pt;}
.y1e{bottom:170.817467pt;}
.y3c{bottom:173.817467pt;}
.y45{bottom:179.660000pt;}
.y50{bottom:183.660000pt;}
.y1d{bottom:198.817467pt;}
.y15{bottom:200.540000pt;}
.y34{bottom:200.660000pt;}
.y3b{bottom:201.817467pt;}
.y28{bottom:221.660000pt;}
.y4f{bottom:222.660000pt;}
.y1c{bottom:226.817467pt;}
.y3a{bottom:229.817467pt;}
.y44{bottom:230.660000pt;}
.y4a{bottom:233.622067pt;}
.y33{bottom:234.326700pt;}
.y2{bottom:234.390767pt;}
.y14{bottom:243.540000pt;}
.y1b{bottom:254.817467pt;}
.y27{bottom:255.660000pt;}
.y4e{bottom:261.660000pt;}
.y2e{bottom:268.326700pt;}
.y31{bottom:275.660000pt;}
.y39{bottom:277.817467pt;}
.y32{bottom:281.660000pt;}
.y1{bottom:288.444067pt;}
.y1a{bottom:297.817467pt;}
.y4d{bottom:300.660000pt;}
.y38{bottom:305.817467pt;}
.y13{bottom:306.540000pt;}
.y26{bottom:309.660000pt;}
.y2d{bottom:315.660000pt;}
.y19{bottom:325.817467pt;}
.y30{bottom:329.660000pt;}
.y43{bottom:332.660000pt;}
.y49{bottom:333.622107pt;}
.y4c{bottom:339.660000pt;}
.y12{bottom:349.540000pt;}
.y2c{bottom:349.660000pt;}
.y18{bottom:353.817467pt;}
.y25{bottom:363.660000pt;}
.y42{bottom:366.660000pt;}
.y48{bottom:370.470533pt;}
.y4b{bottom:378.660000pt;}
.y17{bottom:381.817467pt;}
.y2b{bottom:383.660000pt;}
.yb{bottom:402.424963pt;}
.y16{bottom:409.817467pt;}
.y11{bottom:412.540000pt;}
.y24{bottom:417.660000pt;}
.y7{bottom:426.538530pt;}
.y6{bottom:454.221867pt;}
.y54{bottom:478.722820pt;}
.ya{bottom:480.394000pt;}
.y23{bottom:480.394667pt;}
.y41{bottom:485.002667pt;}
.hb{height:32.000010pt;}
.he{height:36.000000pt;}
.ha{height:44.000010pt;}
.hf{height:55.890635pt;}
.hd{height:56.000010pt;}
.h9{height:60.000000pt;}
.h3{height:62.208324pt;}
.hc{height:72.000000pt;}
.h2{height:79.146677pt;}
.h7{height:80.000010pt;}
.h10{height:92.000010pt;}
.h8{height:108.000000pt;}
.h4{height:116.484375pt;}
.h1{height:183.999990pt;}
.h11{height:213.281229pt;}
.h5{height:213.281250pt;}
.h6{height:284.375089pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x12{left:13.094372pt;}
.x8{left:32.454333pt;}
.x5{left:33.990590pt;}
.x6{left:35.540680pt;}
.xe{left:44.637800pt;}
.x10{left:57.369350pt;}
.x1{left:58.548723pt;}
.x7{left:77.636780pt;}
.x11{left:92.637800pt;}
.x18{left:106.332337pt;}
.x9{left:136.605483pt;}
.xa{left:138.414707pt;}
.x17{left:149.977847pt;}
.x4{left:225.458640pt;}
.x2{left:396.539713pt;}
.x13{left:497.650933pt;}
.xb{left:541.618637pt;}
.xd{left:558.632533pt;}
.xc{left:565.984267pt;}
.x14{left:580.788993pt;}
.x16{left:608.896800pt;}
.x3{left:616.354933pt;}
.x15{left:668.339733pt;}
.xf{left:716.434400pt;}
}




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