
    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_10c91af522ddbdbb1286cb61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_4c75aba550995b9393085154.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c0ba1e4316ecbf05ef125b6d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.746094;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_7347abd2bc93b85bba6b4ecb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_28d827b84b1a2bc540e488cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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;}
.v1{vertical-align:30.525337px;}
.v3{vertical-align:101.746356px;}
.v2{vertical-align:133.537837px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.056806px;}
.ls4{letter-spacing:0.056851px;}
.ls7{letter-spacing:0.056896px;}
.ls8{letter-spacing:77.972014px;}
.ls2{letter-spacing:78.000005px;}
.ls3{letter-spacing:107.972021px;}
.ls5{letter-spacing:126.731990px;}
.ls1{letter-spacing:704.145476px;}
.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;}
}
.ws5{word-spacing:-24.930001px;}
.ws3{word-spacing:-23.268000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:54.704014px;}
.ws1{word-spacing:54.704023px;}
.ws4{word-spacing:420.695767px;}
._4{margin-left:-3962.070712px;}
._0{margin-left:-11.583000px;}
._9{margin-left:-7.104000px;}
._1{margin-left:-5.940000px;}
._6{margin-left:-3.960000px;}
._3{margin-left:-2.664000px;}
._2{margin-left:-1.296000px;}
._8{width:77.972014px;}
._7{width:107.972021px;}
._5{width:1891.305860px;}
.fc6{color:rgb(132,167,76);}
.fc5{color:rgb(253,99,152);}
.fc2{color:rgb(89,89,91);}
.fc1{color:rgb(68,0,153);}
.fc7{color:rgb(38,38,38);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(136,136,136);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.000003px;}
.fs4{font-size:54.000002px;}
.fs5{font-size:60.000000px;}
.fsc{font-size:66.000004px;}
.fs2{font-size:72.000002px;}
.fse{font-size:73.500005px;}
.fsb{font-size:84.000000px;}
.fs6{font-size:90.000003px;}
.fs3{font-size:96.000006px;}
.fs1{font-size:108.000003px;}
.fsa{font-size:138.000001px;}
.fsd{font-size:156.000011px;}
.fs9{font-size:167.999999px;}
.fs0{font-size:210.600007px;}
.fs8{font-size:258.000002px;}
.y0{bottom:0.000000px;}
.y3a{bottom:20.303970px;}
.y8{bottom:20.303977px;}
.y5b{bottom:37.186013px;}
.y3e{bottom:51.216136px;}
.y1e{bottom:62.228730px;}
.y5e{bottom:70.116778px;}
.y15{bottom:96.191027px;}
.y5a{bottom:106.244905px;}
.y51{bottom:106.968883px;}
.y41{bottom:120.031885px;}
.y4e{bottom:120.474790px;}
.y50{bottom:133.968884px;}
.y40{bottom:140.731883px;}
.y14{bottom:145.870995px;}
.y4d{bottom:147.474791px;}
.y4f{bottom:160.968885px;}
.y39{bottom:163.760093px;}
.y59{bottom:164.571083px;}
.y1d{bottom:166.349652px;}
.y2d{bottom:171.618552px;}
.y2a{bottom:182.192746px;}
.y5f{bottom:187.166147px;}
.y38{bottom:192.740094px;}
.y2c{bottom:194.298548px;}
.y13{bottom:195.550974px;}
.y29{bottom:206.852725px;}
.y6{bottom:214.706573px;}
.y1c{bottom:216.029631px;}
.y12{bottom:220.390975px;}
.y37{bottom:221.720084px;}
.y58{bottom:231.880742px;}
.y28{bottom:235.832737px;}
.y45{bottom:239.292292px;}
.ya{bottom:239.490812px;}
.y54{bottom:245.382273px;}
.y36{bottom:250.700089px;}
.y9{bottom:256.410811px;}
.y57{bottom:258.880743px;}
.y27{bottom:264.812727px;}
.y5{bottom:265.051078px;}
.y1b{bottom:265.709633px;}
.y44{bottom:268.092282px;}
.y11{bottom:270.070977px;}
.y53{bottom:272.382274px;}
.y35{bottom:279.680086px;}
.y56{bottom:285.880744px;}
.y26{bottom:291.902739px;}
.y10{bottom:294.910977px;}
.yb{bottom:296.071764px;}
.y43{bottom:296.892274px;}
.y52{bottom:299.382274px;}
.y3d{bottom:300.636249px;}
.y34{bottom:308.660079px;}
.y55{bottom:312.880743px;}
.y1a{bottom:315.389634px;}
.y25{bottom:316.562728px;}
.y3b{bottom:318.906002px;}
.y3c{bottom:321.475030px;}
.y42{bottom:325.692272px;}
.y4{bottom:328.797162px;}
.y16{bottom:334.876272px;}
.yf{bottom:344.590990px;}
.y24{bottom:345.542729px;}
.y33{bottom:346.460079px;}
.y19{bottom:365.069647px;}
.ye{bottom:369.430991px;}
.y4c{bottom:370.289755px;}
.y23{bottom:374.522730px;}
.y3{bottom:379.119045px;}
.y48{bottom:383.789756px;}
.y4b{bottom:397.289756px;}
.y22{bottom:401.612725px;}
.y2e{bottom:408.272720px;}
.y47{bottom:410.789757px;}
.y32{bottom:410.933148px;}
.y18{bottom:414.749641px;}
.yd{bottom:419.110981px;}
.y4a{bottom:424.289757px;}
.y21{bottom:426.272720px;}
.y2{bottom:435.981035px;}
.y5c{bottom:437.252717px;}
.y46{bottom:437.789758px;}
.yc{bottom:443.950982px;}
.y3f{bottom:445.662872px;}
.y31{bottom:448.733147px;}
.y49{bottom:451.289756px;}
.y20{bottom:455.252718px;}
.y17{bottom:464.429639px;}
.y1f{bottom:484.232713px;}
.y30{bottom:486.533147px;}
.y1{bottom:492.843033px;}
.y2b{bottom:550.287047px;}
.y5d{bottom:550.287754px;}
.y7{bottom:552.591047px;}
.y2f{bottom:552.591754px;}
.hf{height:39.313478px;}
.h5{height:39.339845px;}
.h10{height:43.681641px;}
.hd{height:48.082034px;}
.ha{height:52.417970px;}
.h3{height:52.453127px;}
.h9{height:52.593752px;}
.h13{height:53.545902px;}
.hc{height:61.154297px;}
.hb{height:61.195312px;}
.h12{height:65.522463px;}
.h6{height:65.566408px;}
.h11{height:68.718754px;}
.h4{height:69.890629px;}
.h2{height:78.626956px;}
.h8{height:100.467774px;}
.he{height:141.059833px;}
.h1{height:153.425396px;}
.h7{height:286.371768px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x13{left:26.076255px;}
.x7{left:52.598150px;}
.x11{left:64.115319px;}
.x9{left:72.005909px;}
.x1b{left:73.082599px;}
.x17{left:74.795438px;}
.x1d{left:78.247209px;}
.x10{left:92.108485px;}
.x32{left:103.931864px;}
.x2e{left:106.475200px;}
.x29{left:110.831279px;}
.x18{left:114.472444px;}
.x1e{left:118.747212px;}
.x1a{left:130.972448px;}
.x28{left:137.088607px;}
.x1c{left:145.759606px;}
.x12{left:147.839933px;}
.x19{left:150.591709px;}
.xf{left:171.157314px;}
.x3{left:180.047728px;}
.x3c{left:195.565495px;}
.x14{left:202.182711px;}
.x2{left:257.590639px;}
.x37{left:263.276345px;}
.x15{left:265.235442px;}
.x38{left:295.974639px;}
.x1{left:308.848971px;}
.x5{left:313.567210px;}
.xe{left:321.041845px;}
.x4{left:374.203137px;}
.xd{left:390.774230px;}
.xb{left:393.774229px;}
.xc{left:431.274231px;}
.x6{left:452.794773px;}
.x24{left:463.727036px;}
.x26{left:475.062164px;}
.x25{left:476.391913px;}
.x27{left:493.063641px;}
.x22{left:619.225389px;}
.x3b{left:648.955073px;}
.x1f{left:776.683096px;}
.x21{left:782.707750px;}
.x2b{left:799.091090px;}
.x33{left:801.008204px;}
.x16{left:802.009736px;}
.x39{left:803.425708px;}
.x31{left:813.499659px;}
.x2c{left:815.977076px;}
.x36{left:823.497218px;}
.x35{left:832.253322px;}
.x2f{left:834.769191px;}
.x2a{left:847.881376px;}
.x34{left:852.885646px;}
.x30{left:854.572048px;}
.x2d{left:856.642971px;}
.x23{left:895.216585px;}
.xa{left:937.623461px;}
.x20{left:951.121043px;}
.x3a{left:1028.101060px;}
.x3d{left:1029.103019px;}
.x8{left:1035.609119px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.133633pt;}
.v3{vertical-align:90.441205pt;}
.v2{vertical-align:118.700300pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.050494pt;}
.ls4{letter-spacing:0.050534pt;}
.ls7{letter-spacing:0.050574pt;}
.ls8{letter-spacing:69.308457pt;}
.ls2{letter-spacing:69.333338pt;}
.ls3{letter-spacing:95.975130pt;}
.ls5{letter-spacing:112.650658pt;}
.ls1{letter-spacing:625.907090pt;}
.ws5{word-spacing:-22.160001pt;}
.ws3{word-spacing:-20.682667pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:48.625791pt;}
.ws1{word-spacing:48.625799pt;}
.ws4{word-spacing:373.951792pt;}
._4{margin-left:-3521.840633pt;}
._0{margin-left:-10.296000pt;}
._9{margin-left:-6.314667pt;}
._1{margin-left:-5.280000pt;}
._6{margin-left:-3.520000pt;}
._3{margin-left:-2.368000pt;}
._2{margin-left:-1.152000pt;}
._8{width:69.308457pt;}
._7{width:95.975130pt;}
._5{width:1681.160764pt;}
.fs7{font-size:42.666669pt;}
.fs4{font-size:48.000002pt;}
.fs5{font-size:53.333334pt;}
.fsc{font-size:58.666670pt;}
.fs2{font-size:64.000002pt;}
.fse{font-size:65.333338pt;}
.fsb{font-size:74.666666pt;}
.fs6{font-size:80.000003pt;}
.fs3{font-size:85.333339pt;}
.fs1{font-size:96.000003pt;}
.fsa{font-size:122.666668pt;}
.fsd{font-size:138.666676pt;}
.fs9{font-size:149.333333pt;}
.fs0{font-size:187.200006pt;}
.fs8{font-size:229.333335pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:18.047973pt;}
.y8{bottom:18.047979pt;}
.y5b{bottom:33.054234pt;}
.y3e{bottom:45.525454pt;}
.y1e{bottom:55.314426pt;}
.y5e{bottom:62.326025pt;}
.y15{bottom:85.503135pt;}
.y5a{bottom:94.439916pt;}
.y51{bottom:95.083452pt;}
.y41{bottom:106.695009pt;}
.y4e{bottom:107.088702pt;}
.y50{bottom:119.083453pt;}
.y40{bottom:125.095007pt;}
.y14{bottom:129.663107pt;}
.y4d{bottom:131.088703pt;}
.y4f{bottom:143.083453pt;}
.y39{bottom:145.564527pt;}
.y59{bottom:146.285407pt;}
.y1d{bottom:147.866357pt;}
.y2d{bottom:152.549824pt;}
.y2a{bottom:161.949108pt;}
.y5f{bottom:166.369908pt;}
.y38{bottom:171.324528pt;}
.y2c{bottom:172.709820pt;}
.y13{bottom:173.823088pt;}
.y29{bottom:183.869089pt;}
.y6{bottom:190.850287pt;}
.y1c{bottom:192.026339pt;}
.y12{bottom:195.903089pt;}
.y37{bottom:197.084519pt;}
.y58{bottom:206.116215pt;}
.y28{bottom:209.629099pt;}
.y45{bottom:212.704260pt;}
.ya{bottom:212.880722pt;}
.y54{bottom:218.117576pt;}
.y36{bottom:222.844524pt;}
.y9{bottom:227.920721pt;}
.y57{bottom:230.116216pt;}
.y27{bottom:235.389090pt;}
.y5{bottom:235.600958pt;}
.y1b{bottom:236.186340pt;}
.y44{bottom:238.304250pt;}
.y11{bottom:240.063090pt;}
.y53{bottom:242.117576pt;}
.y35{bottom:248.604521pt;}
.y56{bottom:254.116217pt;}
.y26{bottom:259.469101pt;}
.y10{bottom:262.143091pt;}
.yb{bottom:263.174901pt;}
.y43{bottom:263.904243pt;}
.y52{bottom:266.117577pt;}
.y3d{bottom:267.232222pt;}
.y34{bottom:274.364514pt;}
.y55{bottom:278.116216pt;}
.y1a{bottom:280.346342pt;}
.y25{bottom:281.389092pt;}
.y3b{bottom:283.472002pt;}
.y3c{bottom:285.755582pt;}
.y42{bottom:289.504242pt;}
.y4{bottom:292.264144pt;}
.y16{bottom:297.667797pt;}
.yf{bottom:306.303103pt;}
.y24{bottom:307.149093pt;}
.y33{bottom:307.964515pt;}
.y19{bottom:324.506353pt;}
.ye{bottom:328.383103pt;}
.y4c{bottom:329.146449pt;}
.y23{bottom:332.909093pt;}
.y3{bottom:336.994707pt;}
.y48{bottom:341.146450pt;}
.y4b{bottom:353.146450pt;}
.y22{bottom:356.989089pt;}
.y2e{bottom:362.909084pt;}
.y47{bottom:365.146450pt;}
.y32{bottom:365.273909pt;}
.y18{bottom:368.666348pt;}
.yd{bottom:372.543095pt;}
.y4a{bottom:377.146451pt;}
.y21{bottom:378.909085pt;}
.y2{bottom:387.538698pt;}
.y5c{bottom:388.669082pt;}
.y46{bottom:389.146451pt;}
.yc{bottom:394.623095pt;}
.y3f{bottom:396.144775pt;}
.y31{bottom:398.873908pt;}
.y49{bottom:401.146450pt;}
.y20{bottom:404.669083pt;}
.y17{bottom:412.826346pt;}
.y1f{bottom:430.429078pt;}
.y30{bottom:432.473909pt;}
.y1{bottom:438.082696pt;}
.y2b{bottom:489.144041pt;}
.y5d{bottom:489.144670pt;}
.y7{bottom:491.192041pt;}
.y2f{bottom:491.192670pt;}
.hf{height:34.945314pt;}
.h5{height:34.968751pt;}
.h10{height:38.828125pt;}
.hd{height:42.739586pt;}
.ha{height:46.593751pt;}
.h3{height:46.625001pt;}
.h9{height:46.750001pt;}
.h13{height:47.596358pt;}
.hc{height:54.359375pt;}
.hb{height:54.395833pt;}
.h12{height:58.242189pt;}
.h6{height:58.281252pt;}
.h11{height:61.083337pt;}
.h4{height:62.125004pt;}
.h2{height:69.890627pt;}
.h8{height:89.304688pt;}
.he{height:125.386519pt;}
.h1{height:136.378129pt;}
.h7{height:254.552682pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x13{left:23.178894pt;}
.x7{left:46.753911pt;}
.x11{left:56.991395pt;}
.x9{left:64.005252pt;}
.x1b{left:64.962310pt;}
.x17{left:66.484834pt;}
.x1d{left:69.553074pt;}
.x10{left:81.874209pt;}
.x32{left:92.383879pt;}
.x2e{left:94.644622pt;}
.x29{left:98.516692pt;}
.x18{left:101.753283pt;}
.x1e{left:105.553077pt;}
.x1a{left:116.419954pt;}
.x28{left:121.856540pt;}
.x1c{left:129.564094pt;}
.x12{left:131.413274pt;}
.x19{left:133.859297pt;}
.xf{left:152.139835pt;}
.x3{left:160.042425pt;}
.x3c{left:173.835996pt;}
.x14{left:179.717966pt;}
.x2{left:228.969457pt;}
.x37{left:234.023417pt;}
.x15{left:235.764838pt;}
.x38{left:263.088568pt;}
.x1{left:274.532419pt;}
.x5{left:278.726409pt;}
.xe{left:285.370529pt;}
.x4{left:332.625011pt;}
.xd{left:347.354871pt;}
.xb{left:350.021537pt;}
.xc{left:383.354872pt;}
.x6{left:402.484243pt;}
.x24{left:412.201810pt;}
.x26{left:422.277480pt;}
.x25{left:423.459479pt;}
.x27{left:438.278792pt;}
.x22{left:550.422568pt;}
.x3b{left:576.848953pt;}
.x1f{left:690.384975pt;}
.x21{left:695.740222pt;}
.x2b{left:710.303191pt;}
.x33{left:712.007293pt;}
.x16{left:712.897543pt;}
.x39{left:714.156185pt;}
.x31{left:723.110808pt;}
.x2c{left:725.312956pt;}
.x36{left:731.997527pt;}
.x35{left:739.780731pt;}
.x2f{left:742.017059pt;}
.x2a{left:753.672334pt;}
.x34{left:758.120574pt;}
.x30{left:759.619598pt;}
.x2d{left:761.460418pt;}
.x23{left:795.748075pt;}
.xa{left:833.443077pt;}
.x20{left:845.440927pt;}
.x3a{left:913.867609pt;}
.x3d{left:914.758239pt;}
.x8{left:920.541439pt;}
}




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