
    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_c95b029d8b82fc6a5aa8ad30.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893000;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_50f5355675cdf8d3d8038e82.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_80cef1e999288da3fb0649a6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.846000;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_5c08bf57f84adc4445478a33.woff')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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;}
.m6{transform:matrix(-0.102677,0.227942,0.227942,0.102677,0,0);-ms-transform:matrix(-0.102677,0.227942,0.227942,0.102677,0,0);-webkit-transform:matrix(-0.102677,0.227942,0.227942,0.102677,0,0);}
.m7{transform:matrix(0.029475,-0.248256,0.248256,0.029475,0,0);-ms-transform:matrix(0.029475,-0.248256,0.248256,0.029475,0,0);-webkit-transform:matrix(0.029475,-0.248256,0.248256,0.029475,0,0);}
.m4{transform:matrix(0.149288,0.199682,-0.196726,0.154268,0,0);-ms-transform:matrix(0.149288,0.199682,-0.196726,0.154268,0,0);-webkit-transform:matrix(0.149288,0.199682,-0.196726,0.154268,0,0);}
.m3{transform:matrix(0.160974,0.171086,-0.168215,0.184942,0,0);-ms-transform:matrix(0.160974,0.171086,-0.168215,0.184942,0,0);-webkit-transform:matrix(0.160974,0.171086,-0.168215,0.184942,0,0);}
.m2{transform:matrix(0.186824,0.161580,-0.159760,0.192293,0,0);-ms-transform:matrix(0.186824,0.161580,-0.159760,0.192293,0,0);-webkit-transform:matrix(0.186824,0.161580,-0.159760,0.192293,0,0);}
.m1{transform:matrix(0.190678,0.126296,-0.128558,0.214413,0,0);-ms-transform:matrix(0.190678,0.126296,-0.128558,0.214413,0,0);-webkit-transform:matrix(0.190678,0.126296,-0.128558,0.214413,0,0);}
.m8{transform:matrix(0.225386,0.108172,-0.108172,0.225386,0,0);-ms-transform:matrix(0.225386,0.108172,-0.108172,0.225386,0,0);-webkit-transform:matrix(0.225386,0.108172,-0.108172,0.225386,0,0);}
.m5{transform:matrix(0.243228,0.057795,-0.057795,0.243228,0,0);-ms-transform:matrix(0.243228,0.057795,-0.057795,0.243228,0,0);-webkit-transform:matrix(0.243228,0.057795,-0.057795,0.243228,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);}
.v2{vertical-align:-97.410000px;}
.v1{vertical-align:-31.026000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.056001px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:54.009600px;}
.ls0{letter-spacing:59.830200px;}
.ls2{letter-spacing:394.463324px;}
.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.496000px;}
.ws2{word-spacing:-20.515066px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-12.024927px;}
._e{margin-left:-6.264000px;}
._2{margin-left:-4.512000px;}
._5{margin-left:-3.136337px;}
._0{margin-left:-1.740463px;}
._1{width:1.632000px;}
._9{width:2.712738px;}
._4{width:4.505263px;}
._c{width:5.659475px;}
._b{width:7.242000px;}
._3{width:8.309726px;}
._d{width:10.866001px;}
._a{width:12.018001px;}
._8{width:22.512002px;}
._7{width:23.988001px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,57,128);}
.fc1{color:rgb(9,58,128);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:54.462963px;}
.fs7{font-size:54.462973px;}
.fse{font-size:60.000000px;}
.fs0{font-size:68.793000px;}
.fs18{font-size:72.377966px;}
.fs19{font-size:72.377986px;}
.fs1a{font-size:73.795200px;}
.fs4{font-size:75.896794px;}
.fs2{font-size:78.000000px;}
.fs3{font-size:87.006802px;}
.fs15{font-size:89.302800px;}
.fsa{font-size:89.946000px;}
.fs11{font-size:90.324000px;}
.fsc{font-size:91.038000px;}
.fs12{font-size:91.151400px;}
.fs14{font-size:91.447800px;}
.fs13{font-size:91.569600px;}
.fs16{font-size:92.065800px;}
.fs17{font-size:92.078400px;}
.fsb{font-size:92.388000px;}
.fs6{font-size:100.396519px;}
.fs10{font-size:108.000000px;}
.fs5{font-size:114.205251px;}
.fsf{font-size:120.000000px;}
.fsd{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:28.387950px;}
.y46{bottom:52.842750px;}
.y39{bottom:77.255400px;}
.y38{bottom:90.755400px;}
.y37{bottom:104.255400px;}
.y36{bottom:117.755400px;}
.ya{bottom:121.705500px;}
.yb{bottom:146.133750px;}
.y2a{bottom:165.492000px;}
.y9{bottom:167.983500px;}
.yd{bottom:176.981824px;}
.yf{bottom:179.445840px;}
.y29{bottom:186.792000px;}
.y28{bottom:208.092000px;}
.y27{bottom:229.392000px;}
.y26{bottom:250.692000px;}
.y5{bottom:264.249000px;}
.y8{bottom:268.860000px;}
.y25{bottom:271.992000px;}
.yc{bottom:283.306384px;}
.ye{bottom:285.515096px;}
.y24{bottom:293.292000px;}
.y7{bottom:302.901000px;}
.y6{bottom:311.029500px;}
.y23{bottom:314.592000px;}
.y4{bottom:327.844500px;}
.y2d{bottom:335.874000px;}
.y2{bottom:385.431000px;}
.y1{bottom:402.628500px;}
.y45{bottom:465.033000px;}
.y44{bottom:486.391500px;}
.y13{bottom:491.913000px;}
.y3c{bottom:497.935500px;}
.y10{bottom:505.022422px;}
.y3e{bottom:505.658035px;}
.y43{bottom:507.748500px;}
.y3b{bottom:509.385000px;}
.y3d{bottom:512.369318px;}
.y11{bottom:516.621596px;}
.y12{bottom:527.541000px;}
.y42{bottom:529.105500px;}
.y3a{bottom:532.164000px;}
.y41{bottom:550.464000px;}
.y14{bottom:554.884500px;}
.y40{bottom:571.821000px;}
.y3f{bottom:593.178000px;}
.y2c{bottom:621.063000px;}
.y35{bottom:679.879500px;}
.y30{bottom:691.132500px;}
.y34{bottom:697.078500px;}
.y2f{bottom:713.650500px;}
.y16{bottom:740.319000px;}
.y22{bottom:743.089500px;}
.y21{bottom:764.446500px;}
.y32{bottom:766.002000px;}
.y20{bottom:785.803500px;}
.y1f{bottom:807.160500px;}
.y2e{bottom:807.424500px;}
.y33{bottom:816.663000px;}
.y1e{bottom:828.519000px;}
.y1d{bottom:849.876000px;}
.y1c{bottom:871.233000px;}
.y31{bottom:876.847500px;}
.y15{bottom:882.766500px;}
.y1b{bottom:892.591500px;}
.y2b{bottom:914.749500px;}
.y17{bottom:916.834500px;}
.y1a{bottom:1002.597000px;}
.y19{bottom:1058.856000px;}
.y18{bottom:1115.115000px;}
.h3{height:35.367188px;}
.hb{height:42.390000px;}
.ha{height:42.753426px;}
.h9{height:42.753434px;}
.h10{height:47.100000px;}
.h2{height:54.002505px;}
.h1b{height:54.373514px;}
.h19{height:56.816703px;}
.h1a{height:56.816719px;}
.h6{height:59.578984px;}
.h4{height:61.230000px;}
.h5{height:68.300339px;}
.hc{height:70.607610px;}
.h13{height:70.904340px;}
.he{height:71.464830px;}
.h14{height:71.553849px;}
.h16{height:71.786523px;}
.h15{height:71.882136px;}
.h18{height:72.281544px;}
.hd{height:72.524580px;}
.h8{height:78.811267px;}
.h12{height:84.780000px;}
.h7{height:89.651122px;}
.h11{height:94.200000px;}
.h17{height:94.327654px;}
.hf{height:150.720000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:22.574700px;}
.x1c{left:32.027400px;}
.x11{left:34.716000px;}
.x7{left:49.243650px;}
.x1{left:55.525200px;}
.x6{left:61.764900px;}
.xb{left:65.334565px;}
.x8{left:75.628200px;}
.x4{left:79.467450px;}
.x3{left:89.470800px;}
.xd{left:96.042528px;}
.xc{left:98.879693px;}
.x12{left:107.798550px;}
.x22{left:124.657800px;}
.x5{left:132.462900px;}
.x13{left:142.322700px;}
.x9{left:147.364950px;}
.x20{left:157.773000px;}
.xa{left:169.857000px;}
.x21{left:190.006500px;}
.x1f{left:193.843500px;}
.x14{left:265.065000px;}
.x16{left:288.118500px;}
.x1e{left:292.155000px;}
.x24{left:294.795000px;}
.x1d{left:304.320000px;}
.x19{left:305.700000px;}
.x1a{left:307.200000px;}
.x23{left:339.855000px;}
.x1b{left:341.439000px;}
.x17{left:345.024000px;}
.x18{left:346.524000px;}
.x29{left:355.911000px;}
.x15{left:386.878500px;}
.x25{left:749.437500px;}
.x27{left:757.840500px;}
.x28{left:761.347489px;}
.xe{left:764.000850px;}
.x10{left:784.920000px;}
.xf{left:794.302850px;}
.x26{left:796.209000px;}
@media print{
.v2{vertical-align:-86.586667pt;}
.v1{vertical-align:-27.578667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.605335pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:48.008533pt;}
.ls0{letter-spacing:53.182400pt;}
.ls2{letter-spacing:350.634065pt;}
.ws0{word-spacing:-44.885333pt;}
.ws2{word-spacing:-18.235614pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-10.688824pt;}
._e{margin-left:-5.568000pt;}
._2{margin-left:-4.010667pt;}
._5{margin-left:-2.787855pt;}
._0{margin-left:-1.547078pt;}
._1{width:1.450667pt;}
._9{width:2.411322pt;}
._4{width:4.004678pt;}
._c{width:5.030645pt;}
._b{width:6.437334pt;}
._3{width:7.386423pt;}
._d{width:9.658667pt;}
._a{width:10.682667pt;}
._8{width:20.010668pt;}
._7{width:21.322668pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:48.411523pt;}
.fs7{font-size:48.411531pt;}
.fse{font-size:53.333333pt;}
.fs0{font-size:61.149333pt;}
.fs18{font-size:64.335970pt;}
.fs19{font-size:64.335988pt;}
.fs1a{font-size:65.595733pt;}
.fs4{font-size:67.463817pt;}
.fs2{font-size:69.333333pt;}
.fs3{font-size:77.339379pt;}
.fs15{font-size:79.380267pt;}
.fsa{font-size:79.952000pt;}
.fs11{font-size:80.288000pt;}
.fsc{font-size:80.922667pt;}
.fs12{font-size:81.023467pt;}
.fs14{font-size:81.286933pt;}
.fs13{font-size:81.395200pt;}
.fs16{font-size:81.836267pt;}
.fs17{font-size:81.847467pt;}
.fsb{font-size:82.122667pt;}
.fs6{font-size:89.241350pt;}
.fs10{font-size:96.000000pt;}
.fs5{font-size:101.515779pt;}
.fsf{font-size:106.666667pt;}
.fsd{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:25.233733pt;}
.y46{bottom:46.971333pt;}
.y39{bottom:68.671467pt;}
.y38{bottom:80.671467pt;}
.y37{bottom:92.671467pt;}
.y36{bottom:104.671467pt;}
.ya{bottom:108.182667pt;}
.yb{bottom:129.896667pt;}
.y2a{bottom:147.104000pt;}
.y9{bottom:149.318667pt;}
.yd{bottom:157.317177pt;}
.yf{bottom:159.507414pt;}
.y29{bottom:166.037333pt;}
.y28{bottom:184.970667pt;}
.y27{bottom:203.904000pt;}
.y26{bottom:222.837333pt;}
.y5{bottom:234.888000pt;}
.y8{bottom:238.986667pt;}
.y25{bottom:241.770667pt;}
.yc{bottom:251.827897pt;}
.ye{bottom:253.791197pt;}
.y24{bottom:260.704000pt;}
.y7{bottom:269.245333pt;}
.y6{bottom:276.470667pt;}
.y23{bottom:279.637333pt;}
.y4{bottom:291.417333pt;}
.y2d{bottom:298.554667pt;}
.y2{bottom:342.605333pt;}
.y1{bottom:357.892000pt;}
.y45{bottom:413.362667pt;}
.y44{bottom:432.348000pt;}
.y13{bottom:437.256000pt;}
.y3c{bottom:442.609333pt;}
.y10{bottom:448.908819pt;}
.y3e{bottom:449.473809pt;}
.y43{bottom:451.332000pt;}
.y3b{bottom:452.786667pt;}
.y3d{bottom:455.439394pt;}
.y11{bottom:459.219196pt;}
.y12{bottom:468.925333pt;}
.y42{bottom:470.316000pt;}
.y3a{bottom:473.034667pt;}
.y41{bottom:489.301333pt;}
.y14{bottom:493.230667pt;}
.y40{bottom:508.285333pt;}
.y3f{bottom:527.269333pt;}
.y2c{bottom:552.056000pt;}
.y35{bottom:604.337333pt;}
.y30{bottom:614.340000pt;}
.y34{bottom:619.625333pt;}
.y2f{bottom:634.356000pt;}
.y16{bottom:658.061333pt;}
.y22{bottom:660.524000pt;}
.y21{bottom:679.508000pt;}
.y32{bottom:680.890667pt;}
.y20{bottom:698.492000pt;}
.y1f{bottom:717.476000pt;}
.y2e{bottom:717.710667pt;}
.y33{bottom:725.922667pt;}
.y1e{bottom:736.461333pt;}
.y1d{bottom:755.445333pt;}
.y1c{bottom:774.429333pt;}
.y31{bottom:779.420000pt;}
.y15{bottom:784.681333pt;}
.y1b{bottom:793.414667pt;}
.y2b{bottom:813.110667pt;}
.y17{bottom:814.964000pt;}
.y1a{bottom:891.197333pt;}
.y19{bottom:941.205333pt;}
.y18{bottom:991.213333pt;}
.h3{height:31.437500pt;}
.hb{height:37.680000pt;}
.ha{height:38.003046pt;}
.h9{height:38.003052pt;}
.h10{height:41.866667pt;}
.h2{height:48.002227pt;}
.h1b{height:48.332012pt;}
.h19{height:50.503736pt;}
.h1a{height:50.503751pt;}
.h6{height:52.959097pt;}
.h4{height:54.426667pt;}
.h5{height:60.711413pt;}
.hc{height:62.762320pt;}
.h13{height:63.026080pt;}
.he{height:63.524293pt;}
.h14{height:63.603421pt;}
.h16{height:63.810243pt;}
.h15{height:63.895232pt;}
.h18{height:64.250261pt;}
.hd{height:64.466293pt;}
.h8{height:70.054460pt;}
.h12{height:75.360000pt;}
.h7{height:79.689887pt;}
.h11{height:83.733333pt;}
.h17{height:83.846804pt;}
.hf{height:133.973333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:20.066400pt;}
.x1c{left:28.468800pt;}
.x11{left:30.858667pt;}
.x7{left:43.772133pt;}
.x1{left:49.355733pt;}
.x6{left:54.902133pt;}
.xb{left:58.075169pt;}
.x8{left:67.225067pt;}
.x4{left:70.637733pt;}
.x3{left:79.529600pt;}
.xd{left:85.371136pt;}
.xc{left:87.893060pt;}
.x12{left:95.820933pt;}
.x22{left:110.806933pt;}
.x5{left:117.744800pt;}
.x13{left:126.509067pt;}
.x9{left:130.991067pt;}
.x20{left:140.242667pt;}
.xa{left:150.984000pt;}
.x21{left:168.894667pt;}
.x1f{left:172.305333pt;}
.x14{left:235.613333pt;}
.x16{left:256.105333pt;}
.x1e{left:259.693333pt;}
.x24{left:262.040000pt;}
.x1d{left:270.506667pt;}
.x19{left:271.733333pt;}
.x1a{left:273.066667pt;}
.x23{left:302.093333pt;}
.x1b{left:303.501333pt;}
.x17{left:306.688000pt;}
.x18{left:308.021333pt;}
.x29{left:316.365333pt;}
.x15{left:343.892000pt;}
.x25{left:666.166667pt;}
.x27{left:673.636000pt;}
.x28{left:676.753324pt;}
.xe{left:679.111866pt;}
.x10{left:697.706667pt;}
.xf{left:706.046977pt;}
.x26{left:707.741333pt;}
}




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