
    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_299387d6cc89cf39f5abbbab.woff')format("woff");}.ff1{font-family:ff1;line-height:1.057129;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_bc551bee27e2d76ae033eab8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001465;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_1af93684976be77ee879e5d6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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);}
.v1{vertical-align:-19.521000px;}
.v2{vertical-align:-10.512000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-11.487000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.054000px;}
.ls5{letter-spacing:85.896000px;}
.ls7{letter-spacing:85.896600px;}
.ls6{letter-spacing:85.896780px;}
.ls4{letter-spacing:85.897200px;}
.ls1{letter-spacing:111.831600px;}
.ls3{letter-spacing:133.222800px;}
.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;}
}
.ws7{word-spacing:-105.000000px;}
.ws8{word-spacing:-82.500000px;}
.ws0{word-spacing:-72.540000px;}
.ws3{word-spacing:-67.554000px;}
.ws2{word-spacing:-67.500000px;}
.ws5{word-spacing:-60.000000px;}
.ws4{word-spacing:-37.500000px;}
.ws6{word-spacing:-27.000000px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-24.840000px;}
._1{margin-left:-23.058000px;}
._6{margin-left:-16.605000px;}
._0{margin-left:-15.204000px;}
._b{margin-left:-11.988000px;}
._2{margin-left:-7.308000px;}
._3{margin-left:-5.164848px;}
._4{margin-left:-4.088304px;}
._5{margin-left:-2.625000px;}
._c{margin-left:-1.375200px;}
._8{width:181.500000px;}
._9{width:331.761000px;}
._7{width:1592.091048px;}
.fc6{color:rgb(0,113,188);}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(76,76,76);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(83,83,83);}
.fc1{color:rgb(83,83,83);}
.fc0{color:rgb(83,83,83);}
.fs9{font-size:108.000000px;}
.fs7{font-size:123.000000px;}
.fs8{font-size:150.000000px;}
.fs2{font-size:180.000000px;}
.fs3{font-size:210.000000px;}
.fs4{font-size:221.400000px;}
.fs6{font-size:240.000000px;}
.fs5{font-size:270.000000px;}
.fs1{font-size:290.160000px;}
.fsa{font-size:330.000000px;}
.fs0{font-size:420.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:6.925950px;}
.y7{bottom:19.743600px;}
.y3{bottom:28.746150px;}
.y25{bottom:28.914000px;}
.y2b{bottom:32.228250px;}
.y2d{bottom:33.142050px;}
.y19{bottom:33.803400px;}
.y31{bottom:36.200385px;}
.y8{bottom:43.056795px;}
.y1d{bottom:84.541800px;}
.y24{bottom:87.642000px;}
.y30{bottom:94.928325px;}
.y2a{bottom:108.200400px;}
.y2e{bottom:111.017625px;}
.y52{bottom:120.078360px;}
.y4e{bottom:128.615550px;}
.y17{bottom:146.366445px;}
.y1c{bottom:160.513800px;}
.y23{bottom:166.242000px;}
.y29{bottom:166.928250px;}
.y2f{bottom:173.528325px;}
.y48{bottom:175.556850px;}
.y13{bottom:177.360600px;}
.y41{bottom:182.128800px;}
.y1b{bottom:219.241800px;}
.y49{bottom:231.485700px;}
.y40{bottom:233.122200px;}
.y4d{bottom:239.695950px;}
.y51{bottom:241.278300px;}
.y22{bottom:244.842000px;}
.y28{bottom:245.528250px;}
.y16{bottom:270.186150px;}
.y5a{bottom:274.417650px;}
.y56{bottom:276.541950px;}
.y58{bottom:276.992100px;}
.y12{bottom:280.860600px;}
.y59{bottom:325.417650px;}
.y55{bottom:327.541950px;}
.y57{bottom:327.992100px;}
.y39{bottom:329.267550px;}
.y3f{bottom:361.822200px;}
.y2c{bottom:361.868550px;}
.y50{bottom:362.478450px;}
.y4c{bottom:368.395950px;}
.y47{bottom:375.095550px;}
.y6{bottom:380.682000px;}
.y15{bottom:381.266400px;}
.y11{bottom:384.360600px;}
.y38{bottom:417.767550px;}
.y27{bottom:422.657400px;}
.y21{bottom:423.000600px;}
.y4f{bottom:478.798050px;}
.y3e{bottom:490.522200px;}
.y5{bottom:496.425600px;}
.y4b{bottom:497.095950px;}
.y46{bottom:498.915300px;}
.y37{bottom:506.267550px;}
.y14{bottom:509.966400px;}
.y10{bottom:535.860600px;}
.y4{bottom:592.425600px;}
.y45{bottom:609.995550px;}
.y3d{bottom:619.222200px;}
.yf{bottom:634.480350px;}
.y4a{bottom:643.415550px;}
.y36{bottom:662.267550px;}
.ye{bottom:727.860600px;}
.y20{bottom:732.814200px;}
.y26{bottom:733.157400px;}
.y44{bottom:738.695550px;}
.y3c{bottom:747.922200px;}
.y35{bottom:750.767550px;}
.y2{bottom:754.100250px;}
.y1a{bottom:807.640350px;}
.yd{bottom:826.480350px;}
.y1e{bottom:826.528200px;}
.y43{bottom:862.515300px;}
.y3b{bottom:876.622200px;}
.y5c{bottom:889.180350px;}
.y34{bottom:906.767550px;}
.y54{bottom:910.554150px;}
.yc{bottom:919.860600px;}
.y1{bottom:920.846400px;}
.y53{bottom:996.294450px;}
.y5b{bottom:997.180350px;}
.y3a{bottom:1005.322200px;}
.y32{bottom:1067.773200px;}
.yb{bottom:1071.360600px;}
.y18{bottom:1073.853750px;}
.y42{bottom:1335.996150px;}
.ya{bottom:1340.997900px;}
.y33{bottom:1341.794850px;}
.y9{bottom:1460.721000px;}
.h16{height:84.216797px;}
.hd{height:106.455773px;}
.h12{height:106.456373px;}
.h13{height:114.001470px;}
.ha{height:114.662805px;}
.he{height:116.967773px;}
.h5{height:140.361328px;}
.h6{height:163.754883px;}
.hb{height:187.148438px;}
.h18{height:191.020392px;}
.h9{height:191.020872px;}
.h19{height:191.020932px;}
.h7{height:191.020992px;}
.h15{height:195.117188px;}
.h8{height:210.541992px;}
.h3{height:226.262461px;}
.hf{height:238.325550px;}
.h14{height:238.500000px;}
.h1a{height:257.329102px;}
.hc{height:267.526800px;}
.h4{height:287.625000px;}
.h10{height:300.813600px;}
.h11{height:301.500000px;}
.h1{height:327.509766px;}
.h2{height:503.625000px;}
.h17{height:822.132450px;}
.h0{height:1620.000000px;}
.w4{width:797.656800px;}
.w6{width:806.293350px;}
.w3{width:810.033000px;}
.w5{width:821.353200px;}
.w7{width:1220.529000px;}
.w2{width:2081.626500px;}
.w1{width:2393.205000px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x15{left:10.313400px;}
.x16{left:50.422200px;}
.x2f{left:80.064180px;}
.x1a{left:117.048000px;}
.x1c{left:123.236040px;}
.x2d{left:134.758470px;}
.x30{left:146.911980px;}
.x1b{left:162.247950px;}
.x2b{left:166.323600px;}
.x40{left:187.685250px;}
.x13{left:201.549600px;}
.x2c{left:233.171400px;}
.x2e{left:236.625030px;}
.xb{left:242.303400px;}
.x2{left:243.397200px;}
.x1d{left:257.140500px;}
.xf{left:290.524200px;}
.x3{left:301.462350px;}
.xc{left:303.803400px;}
.x18{left:310.804500px;}
.x1{left:356.674800px;}
.xd{left:365.303400px;}
.x21{left:398.818350px;}
.x10{left:401.791950px;}
.x6{left:407.549700px;}
.x22{left:427.500000px;}
.x25{left:447.463500px;}
.x32{left:508.093650px;}
.x20{left:513.157950px;}
.x23{left:523.500000px;}
.x41{left:527.675400px;}
.x3f{left:547.062750px;}
.x3e{left:572.697450px;}
.xa{left:580.645800px;}
.x11{left:647.116650px;}
.x2a{left:672.227850px;}
.xe{left:731.378100px;}
.x7{left:771.728550px;}
.x29{left:894.466500px;}
.x31{left:983.009100px;}
.x33{left:1000.543200px;}
.x12{left:1030.665300px;}
.x14{left:1036.853250px;}
.x1e{left:1043.736750px;}
.x5{left:1100.521950px;}
.x4{left:1138.793250px;}
.x37{left:1435.826850px;}
.x36{left:1447.921050px;}
.x28{left:1461.225000px;}
.x35{left:1498.833900px;}
.x34{left:1575.738000px;}
.x39{left:1793.413500px;}
.x38{left:1828.477500px;}
.x17{left:1944.282000px;}
.x19{left:1950.471000px;}
.x3b{left:2153.679000px;}
.x3a{left:2162.268000px;}
.x1f{left:2249.764500px;}
.x3d{left:2463.246000px;}
.x3c{left:2488.881000px;}
.x8{left:2511.018000px;}
.x27{left:2524.971000px;}
.x24{left:2707.077000px;}
.x26{left:2708.512500px;}
.x9{left:2720.202000px;}
@media print{
.v1{vertical-align:-17.352000pt;}
.v2{vertical-align:-9.344000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-10.210667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.048000pt;}
.ls5{letter-spacing:76.352000pt;}
.ls7{letter-spacing:76.352533pt;}
.ls6{letter-spacing:76.352693pt;}
.ls4{letter-spacing:76.353067pt;}
.ls1{letter-spacing:99.405867pt;}
.ls3{letter-spacing:118.420267pt;}
.ws7{word-spacing:-93.333333pt;}
.ws8{word-spacing:-73.333333pt;}
.ws0{word-spacing:-64.480000pt;}
.ws3{word-spacing:-60.048000pt;}
.ws2{word-spacing:-60.000000pt;}
.ws5{word-spacing:-53.333333pt;}
.ws4{word-spacing:-33.333333pt;}
.ws6{word-spacing:-24.000000pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-22.080000pt;}
._1{margin-left:-20.496000pt;}
._6{margin-left:-14.760000pt;}
._0{margin-left:-13.514667pt;}
._b{margin-left:-10.656000pt;}
._2{margin-left:-6.496000pt;}
._3{margin-left:-4.590976pt;}
._4{margin-left:-3.634048pt;}
._5{margin-left:-2.333333pt;}
._c{margin-left:-1.222400pt;}
._8{width:161.333333pt;}
._9{width:294.898667pt;}
._7{width:1415.192043pt;}
.fs9{font-size:96.000000pt;}
.fs7{font-size:109.333333pt;}
.fs8{font-size:133.333333pt;}
.fs2{font-size:160.000000pt;}
.fs3{font-size:186.666667pt;}
.fs4{font-size:196.800000pt;}
.fs6{font-size:213.333333pt;}
.fs5{font-size:240.000000pt;}
.fs1{font-size:257.920000pt;}
.fsa{font-size:293.333333pt;}
.fs0{font-size:373.333333pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:6.156400pt;}
.y7{bottom:17.549867pt;}
.y3{bottom:25.552133pt;}
.y25{bottom:25.701333pt;}
.y2b{bottom:28.647333pt;}
.y2d{bottom:29.459600pt;}
.y19{bottom:30.047467pt;}
.y31{bottom:32.178120pt;}
.y8{bottom:38.272707pt;}
.y1d{bottom:75.148267pt;}
.y24{bottom:77.904000pt;}
.y30{bottom:84.380733pt;}
.y2a{bottom:96.178133pt;}
.y2e{bottom:98.682333pt;}
.y52{bottom:106.736320pt;}
.y4e{bottom:114.324933pt;}
.y17{bottom:130.103507pt;}
.y1c{bottom:142.678933pt;}
.y23{bottom:147.770667pt;}
.y29{bottom:148.380667pt;}
.y2f{bottom:154.247400pt;}
.y48{bottom:156.050533pt;}
.y13{bottom:157.653867pt;}
.y41{bottom:161.892267pt;}
.y1b{bottom:194.881600pt;}
.y49{bottom:205.765067pt;}
.y40{bottom:207.219733pt;}
.y4d{bottom:213.063067pt;}
.y51{bottom:214.469600pt;}
.y22{bottom:217.637333pt;}
.y28{bottom:218.247333pt;}
.y16{bottom:240.165467pt;}
.y5a{bottom:243.926800pt;}
.y56{bottom:245.815067pt;}
.y58{bottom:246.215200pt;}
.y12{bottom:249.653867pt;}
.y59{bottom:289.260133pt;}
.y55{bottom:291.148400pt;}
.y57{bottom:291.548533pt;}
.y39{bottom:292.682267pt;}
.y3f{bottom:321.619733pt;}
.y2c{bottom:321.660933pt;}
.y50{bottom:322.203067pt;}
.y4c{bottom:327.463067pt;}
.y47{bottom:333.418267pt;}
.y6{bottom:338.384000pt;}
.y15{bottom:338.903467pt;}
.y11{bottom:341.653867pt;}
.y38{bottom:371.348933pt;}
.y27{bottom:375.695467pt;}
.y21{bottom:376.000533pt;}
.y4f{bottom:425.598267pt;}
.y3e{bottom:436.019733pt;}
.y5{bottom:441.267200pt;}
.y4b{bottom:441.863067pt;}
.y46{bottom:443.480267pt;}
.y37{bottom:450.015600pt;}
.y14{bottom:453.303467pt;}
.y10{bottom:476.320533pt;}
.y4{bottom:526.600533pt;}
.y45{bottom:542.218267pt;}
.y3d{bottom:550.419733pt;}
.yf{bottom:563.982533pt;}
.y4a{bottom:571.924933pt;}
.y36{bottom:588.682267pt;}
.ye{bottom:646.987200pt;}
.y20{bottom:651.390400pt;}
.y26{bottom:651.695467pt;}
.y44{bottom:656.618267pt;}
.y3c{bottom:664.819733pt;}
.y35{bottom:667.348933pt;}
.y2{bottom:670.311333pt;}
.y1a{bottom:717.902533pt;}
.yd{bottom:734.649200pt;}
.y1e{bottom:734.691733pt;}
.y43{bottom:766.680267pt;}
.y3b{bottom:779.219733pt;}
.y5c{bottom:790.382533pt;}
.y34{bottom:806.015600pt;}
.y54{bottom:809.381467pt;}
.yc{bottom:817.653867pt;}
.y1{bottom:818.530133pt;}
.y53{bottom:885.595067pt;}
.y5b{bottom:886.382533pt;}
.y3a{bottom:893.619733pt;}
.y32{bottom:949.131733pt;}
.yb{bottom:952.320533pt;}
.y18{bottom:954.536667pt;}
.y42{bottom:1187.552133pt;}
.ya{bottom:1191.998133pt;}
.y33{bottom:1192.706533pt;}
.y9{bottom:1298.418667pt;}
.h16{height:74.859375pt;}
.hd{height:94.627354pt;}
.h12{height:94.627888pt;}
.h13{height:101.334640pt;}
.ha{height:101.922493pt;}
.he{height:103.971354pt;}
.h5{height:124.765625pt;}
.h6{height:145.559896pt;}
.hb{height:166.354167pt;}
.h18{height:169.795904pt;}
.h9{height:169.796331pt;}
.h19{height:169.796384pt;}
.h7{height:169.796438pt;}
.h15{height:173.437500pt;}
.h8{height:187.148438pt;}
.h3{height:201.122187pt;}
.hf{height:211.844933pt;}
.h14{height:212.000000pt;}
.h1a{height:228.736979pt;}
.hc{height:237.801600pt;}
.h4{height:255.666667pt;}
.h10{height:267.389867pt;}
.h11{height:268.000000pt;}
.h1{height:291.119792pt;}
.h2{height:447.666667pt;}
.h17{height:730.784400pt;}
.h0{height:1440.000000pt;}
.w4{width:709.028267pt;}
.w6{width:716.705200pt;}
.w3{width:720.029333pt;}
.w5{width:730.091733pt;}
.w7{width:1084.914667pt;}
.w2{width:1850.334667pt;}
.w1{width:2127.293333pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x15{left:9.167467pt;}
.x16{left:44.819733pt;}
.x2f{left:71.168160pt;}
.x1a{left:104.042667pt;}
.x1c{left:109.543147pt;}
.x2d{left:119.785307pt;}
.x30{left:130.588427pt;}
.x1b{left:144.220400pt;}
.x2b{left:147.843200pt;}
.x40{left:166.831333pt;}
.x13{left:179.155200pt;}
.x2c{left:207.263467pt;}
.x2e{left:210.333360pt;}
.xb{left:215.380800pt;}
.x2{left:216.353067pt;}
.x1d{left:228.569333pt;}
.xf{left:258.243733pt;}
.x3{left:267.966533pt;}
.xc{left:270.047467pt;}
.x18{left:276.270667pt;}
.x1{left:317.044267pt;}
.xd{left:324.714133pt;}
.x21{left:354.505200pt;}
.x10{left:357.148400pt;}
.x6{left:362.266400pt;}
.x22{left:380.000000pt;}
.x25{left:397.745333pt;}
.x32{left:451.638800pt;}
.x20{left:456.140400pt;}
.x23{left:465.333333pt;}
.x41{left:469.044800pt;}
.x3f{left:486.278000pt;}
.x3e{left:509.064400pt;}
.xa{left:516.129600pt;}
.x11{left:575.214800pt;}
.x2a{left:597.535867pt;}
.xe{left:650.113867pt;}
.x7{left:685.980933pt;}
.x29{left:795.081333pt;}
.x31{left:873.785867pt;}
.x33{left:889.371733pt;}
.x12{left:916.146933pt;}
.x14{left:921.647333pt;}
.x1e{left:927.766000pt;}
.x5{left:978.241733pt;}
.x4{left:1012.260667pt;}
.x37{left:1276.290533pt;}
.x36{left:1287.040933pt;}
.x28{left:1298.866667pt;}
.x35{left:1332.296800pt;}
.x34{left:1400.656000pt;}
.x39{left:1594.145333pt;}
.x38{left:1625.313333pt;}
.x17{left:1728.250667pt;}
.x19{left:1733.752000pt;}
.x3b{left:1914.381333pt;}
.x3a{left:1922.016000pt;}
.x1f{left:1999.790667pt;}
.x3d{left:2189.552000pt;}
.x3c{left:2212.338667pt;}
.x8{left:2232.016000pt;}
.x27{left:2244.418667pt;}
.x24{left:2406.290667pt;}
.x26{left:2407.566667pt;}
.x9{left:2417.957333pt;}
}




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