
    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_7fcc5b4dd0305902e52431c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.256000;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_6a656f1df13a32994fd4d027.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_e2b5b90ec9daf66aff9fa34e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.237029;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;}
.m5{transform:matrix(0.000000,0.250140,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250140,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250140,-0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.132912px;}
.ls4{letter-spacing:39.974245px;}
.ls2{letter-spacing:39.977243px;}
.ls3{letter-spacing:40.693851px;}
.ls1{letter-spacing:40.696850px;}
.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;}
}
.ws1{word-spacing:-40.031984px;}
.ws3{word-spacing:-30.023988px;}
.ws4{word-spacing:-23.418711px;}
.ws2{word-spacing:-20.015992px;}
.ws5{word-spacing:-0.641088px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-2010.580512px;}
._5{margin-left:-1317.876805px;}
._6{margin-left:-916.374366px;}
._2{margin-left:-2.874779px;}
._0{margin-left:-1.624923px;}
._1{width:1.137916px;}
._3{width:2.787115px;}
._7{width:48.080332px;}
.fc7{color:transparent;}
.fc5{color:rgb(123,168,0);}
.fc4{color:rgb(154,205,0);}
.fc6{color:rgb(240,255,197);}
.fc1{color:rgb(101,101,50);}
.fc8{color:rgb(16,16,16);}
.fc3{color:rgb(56,86,59);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:71.999971px;}
.fs6{font-size:84.239966px;}
.fs5{font-size:95.759962px;}
.fs4{font-size:107.999957px;}
.fs0{font-size:120.239952px;}
.fs3{font-size:143.999942px;}
.fs1{font-size:167.759933px;}
.y0{bottom:0.000000px;}
.y39{bottom:3.960295px;}
.y64{bottom:80.880271px;}
.y98{bottom:99.240317px;}
.y47{bottom:100.860317px;}
.y63{bottom:105.900172px;}
.yb{bottom:112.020312px;}
.y73{bottom:131.100445px;}
.y3a{bottom:132.360304px;}
.y46{bottom:133.260304px;}
.ya{bottom:133.620304px;}
.y31{bottom:134.880303px;}
.y3e{bottom:135.780303px;}
.y38{bottom:150.000000px;}
.y53{bottom:153.420296px;}
.y9{bottom:155.040295px;}
.y62{bottom:156.120039px;}
.y72{bottom:156.120347px;}
.y30{bottom:156.480294px;}
.y3d{bottom:157.380294px;}
.y16{bottom:170.340289px;}
.y8{bottom:176.640286px;}
.y97{bottom:178.980285px;}
.y61{bottom:181.320004px;}
.y99{bottom:189.240281px;}
.y22{bottom:196.440278px;}
.y85{bottom:204.720275px;}
.y71{bottom:206.520276px;}
.y37{bottom:208.860273px;}
.y2c{bottom:210.120273px;}
.y45{bottom:218.400270px;}
.y96{bottom:222.000268px;}
.y27{bottom:222.540268px;}
.y36{bottom:230.460265px;}
.y60{bottom:231.540081px;}
.y70{bottom:231.540178px;}
.y2b{bottom:231.540264px;}
.y8c{bottom:238.920261px;}
.y52{bottom:239.640261px;}
.y7c{bottom:247.380258px;}
.y84{bottom:247.920258px;}
.y15{bottom:256.560254px;}
.y5f{bottom:256.740046px;}
.y95{bottom:265.200251px;}
.y3c{bottom:268.620250px;}
.y1b{bottom:274.020247px;}
.y4c{bottom:279.960245px;}
.y6f{bottom:281.760255px;}
.y8b{bottom:282.120244px;}
.y21{bottom:282.660244px;}
.y51{bottom:282.840244px;}
.y2e{bottom:290.040241px;}
.y7b{bottom:290.580241px;}
.y83{bottom:291.120241px;}
.y44{bottom:303.360236px;}
.y5e{bottom:306.960123px;}
.y6e{bottom:306.960220px;}
.y94{bottom:308.220234px;}
.y26{bottom:308.940233px;}
.y1a{bottom:317.040230px;}
.y8a{bottom:325.140227px;}
.y5d{bottom:332.160087px;}
.y7a{bottom:333.600224px;}
.y82{bottom:334.140223px;}
.y14{bottom:342.780220px;}
.y32{bottom:345.120219px;}
.y2d{bottom:345.300219px;}
.y3b{bottom:346.740218px;}
.y93{bottom:351.420216px;}
.y3{bottom:356.820502px;}
.y6d{bottom:357.180297px;}
.y89{bottom:368.340210px;}
.y20{bottom:368.880209px;}
.y50{bottom:369.060209px;}
.y79{bottom:376.800206px;}
.y81{bottom:377.340206px;}
.y5c{bottom:382.380164px;}
.y6c{bottom:382.380262px;}
.ye{bottom:384.720007px;}
.y43{bottom:388.500202px;}
.y2{bottom:392.820344px;}
.y92{bottom:394.620199px;}
.y25{bottom:395.160199px;}
.y2a{bottom:396.060199px;}
.y19{bottom:403.440196px;}
.y7{bottom:404.340195px;}
.y5b{bottom:407.400066px;}
.y9c{bottom:408.300194px;}
.y88{bottom:411.360192px;}
.y1f{bottom:412.080192px;}
.y78{bottom:419.820189px;}
.y80{bottom:420.360189px;}
.y1{bottom:428.820185px;}
.y13{bottom:429.000185px;}
.y6b{bottom:432.600339px;}
.yd{bottom:435.120124px;}
.y91{bottom:437.640182px;}
.y9b{bottom:438.180182px;}
.y18{bottom:446.460178px;}
.y35{bottom:447.180178px;}
.y29{bottom:448.620178px;}
.y87{bottom:454.560175px;}
.y4f{bottom:455.280175px;}
.y5a{bottom:457.620143px;}
.y6a{bottom:457.620241px;}
.y77{bottom:463.020172px;}
.y7f{bottom:463.560172px;}
.y42{bottom:473.640168px;}
.y90{bottom:480.840165px;}
.y24{bottom:481.380164px;}
.y59{bottom:482.820108px;}
.yc{bottom:485.700163px;}
.y1e{bottom:498.300158px;}
.y34{bottom:499.920157px;}
.y76{bottom:506.040155px;}
.y7e{bottom:506.760154px;}
.y69{bottom:508.020170px;}
.y12{bottom:515.220151px;}
.y74{bottom:515.400151px;}
.y8f{bottom:523.860147px;}
.y9a{bottom:524.580147px;}
.y17{bottom:532.680144px;}
.y68{bottom:533.040072px;}
.y58{bottom:533.040185px;}
.y86{bottom:540.780141px;}
.y1d{bottom:541.320140px;}
.y4e{bottom:541.500140px;}
.y6{bottom:545.819874px;}
.y75{bottom:549.240137px;}
.y7d{bottom:549.780137px;}
.y33{bottom:554.820135px;}
.y2f{bottom:555.360135px;}
.y28{bottom:556.260134px;}
.y57{bottom:558.240150px;}
.y41{bottom:558.600134px;}
.y8e{bottom:567.060130px;}
.y23{bottom:567.600130px;}
.y67{bottom:583.260149px;}
.y4d{bottom:584.700123px;}
.y65{bottom:595.500119px;}
.y11{bottom:601.620116px;}
.y66{bottom:608.460114px;}
.y56{bottom:608.460227px;}
.y8d{bottom:610.260113px;}
.y5{bottom:621.599972px;}
.y55{bottom:633.660192px;}
.y40{bottom:643.560100px;}
.y54{bottom:658.680094px;}
.y1c{bottom:661.020093px;}
.y4{bottom:672.000088px;}
.y3f{bottom:728.520066px;}
.y10{bottom:730.500065px;}
.y49{bottom:741.300060px;}
.y48{bottom:749.940057px;}
.yf{bottom:765.780051px;}
.y4b{bottom:775.319702px;}
.y4a{bottom:775.320047px;}
.h7{height:20.700000px;}
.h3{height:68.327973px;}
.h6{height:68.615973px;}
.h9{height:79.943728px;}
.ha{height:80.280688px;}
.h8{height:90.876204px;}
.h5{height:102.491959px;}
.h1{height:114.107714px;}
.hb{height:136.655945px;}
.h4{height:137.231945px;}
.h2{height:159.204176px;}
.hc{height:159.875216px;}
.h0{height:892.500000px;}
.w1{width:83.880000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.xf{left:102.225709px;}
.x13{left:115.005704px;}
.x12{left:116.265703px;}
.x2b{left:131.925697px;}
.x30{left:140.565694px;}
.x10{left:149.025690px;}
.x26{left:157.306437px;}
.x2f{left:166.126434px;}
.xd{left:168.105222px;}
.x11{left:174.406430px;}
.x7{left:179.986428px;}
.x2e{left:203.026419px;}
.x32{left:206.806417px;}
.x3{left:218.325116px;}
.x1{left:233.266407px;}
.x2{left:262.426600px;}
.x4{left:264.586394px;}
.x24{left:268.006393px;}
.xc{left:275.566390px;}
.x6{left:290.326893px;}
.x27{left:302.206379px;}
.x14{left:310.666376px;}
.x33{left:319.126372px;}
.x5{left:418.667455px;}
.x29{left:438.106325px;}
.x25{left:461.505966px;}
.xe{left:463.844759px;}
.x28{left:466.906313px;}
.x23{left:500.566300px;}
.x1e{left:543.946282px;}
.x1f{left:547.186281px;}
.x21{left:548.806280px;}
.x22{left:570.046272px;}
.x20{left:620.626252px;}
.xa{left:787.485825px;}
.x9{left:802.246193px;}
.x31{left:842.926163px;}
.x2d{left:875.866150px;}
.x2c{left:897.466141px;}
.x2a{left:904.666138px;}
.xb{left:911.866576px;}
.x8{left:938.506125px;}
.x19{left:1001.506099px;}
.x1c{left:1036.606085px;}
.x18{left:1073.686071px;}
.x1b{left:1087.545600px;}
.x15{left:1092.046063px;}
.x1d{left:1093.306073px;}
.x16{left:1095.646062px;}
.x17{left:1117.066053px;}
.x1a{left:1151.446039px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.118144pt;}
.ls4{letter-spacing:35.532662pt;}
.ls2{letter-spacing:35.535327pt;}
.ls3{letter-spacing:36.172312pt;}
.ls1{letter-spacing:36.174978pt;}
.ws1{word-spacing:-35.583986pt;}
.ws3{word-spacing:-26.687989pt;}
.ws4{word-spacing:-20.816632pt;}
.ws2{word-spacing:-17.791993pt;}
.ws5{word-spacing:-0.569856pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-1787.182677pt;}
._5{margin-left:-1171.446049pt;}
._6{margin-left:-814.554992pt;}
._2{margin-left:-2.555359pt;}
._0{margin-left:-1.444376pt;}
._1{width:1.011481pt;}
._3{width:2.477435pt;}
._7{width:42.738073pt;}
.fs2{font-size:63.999974pt;}
.fs6{font-size:74.879970pt;}
.fs5{font-size:85.119966pt;}
.fs4{font-size:95.999962pt;}
.fs0{font-size:106.879957pt;}
.fs3{font-size:127.999949pt;}
.fs1{font-size:149.119940pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:3.520263pt;}
.y64{bottom:71.893574pt;}
.y98{bottom:88.213615pt;}
.y47{bottom:89.653615pt;}
.y63{bottom:94.133487pt;}
.yb{bottom:99.573611pt;}
.y73{bottom:116.533729pt;}
.y3a{bottom:117.653604pt;}
.y46{bottom:118.453603pt;}
.ya{bottom:118.773603pt;}
.y31{bottom:119.893603pt;}
.y3e{bottom:120.693602pt;}
.y38{bottom:133.333333pt;}
.y53{bottom:136.373596pt;}
.y9{bottom:137.813596pt;}
.y62{bottom:138.773368pt;}
.y72{bottom:138.773642pt;}
.y30{bottom:139.093595pt;}
.y3d{bottom:139.893595pt;}
.y16{bottom:151.413590pt;}
.y8{bottom:157.013588pt;}
.y97{bottom:159.093587pt;}
.y61{bottom:161.173337pt;}
.y99{bottom:168.213583pt;}
.y22{bottom:174.613581pt;}
.y85{bottom:181.973578pt;}
.y71{bottom:183.573579pt;}
.y37{bottom:185.653576pt;}
.y2c{bottom:186.773576pt;}
.y45{bottom:194.133573pt;}
.y96{bottom:197.333572pt;}
.y27{bottom:197.813572pt;}
.y36{bottom:204.853569pt;}
.y60{bottom:205.813405pt;}
.y70{bottom:205.813492pt;}
.y2b{bottom:205.813568pt;}
.y8c{bottom:212.373566pt;}
.y52{bottom:213.013565pt;}
.y7c{bottom:219.893563pt;}
.y84{bottom:220.373563pt;}
.y15{bottom:228.053559pt;}
.y5f{bottom:228.213374pt;}
.y95{bottom:235.733556pt;}
.y3c{bottom:238.773555pt;}
.y1b{bottom:243.573553pt;}
.y4c{bottom:248.853551pt;}
.y6f{bottom:250.453560pt;}
.y8b{bottom:250.773550pt;}
.y21{bottom:251.253550pt;}
.y51{bottom:251.413550pt;}
.y2e{bottom:257.813548pt;}
.y7b{bottom:258.293547pt;}
.y83{bottom:258.773547pt;}
.y44{bottom:269.653543pt;}
.y5e{bottom:272.853442pt;}
.y6e{bottom:272.853529pt;}
.y94{bottom:273.973541pt;}
.y26{bottom:274.613541pt;}
.y1a{bottom:281.813538pt;}
.y8a{bottom:289.013535pt;}
.y5d{bottom:295.253411pt;}
.y7a{bottom:296.533532pt;}
.y82{bottom:297.013532pt;}
.y14{bottom:304.693529pt;}
.y32{bottom:306.773528pt;}
.y2d{bottom:306.933528pt;}
.y3b{bottom:308.213527pt;}
.y93{bottom:312.373526pt;}
.y3{bottom:317.173780pt;}
.y6d{bottom:317.493597pt;}
.y89{bottom:327.413520pt;}
.y20{bottom:327.893520pt;}
.y50{bottom:328.053519pt;}
.y79{bottom:334.933517pt;}
.y81{bottom:335.413517pt;}
.y5c{bottom:339.893480pt;}
.y6c{bottom:339.893566pt;}
.ye{bottom:341.973339pt;}
.y43{bottom:345.333513pt;}
.y2{bottom:349.173639pt;}
.y92{bottom:350.773510pt;}
.y25{bottom:351.253510pt;}
.y2a{bottom:352.053510pt;}
.y19{bottom:358.613507pt;}
.y7{bottom:359.413507pt;}
.y5b{bottom:362.133392pt;}
.y9c{bottom:362.933505pt;}
.y88{bottom:365.653504pt;}
.y1f{bottom:366.293504pt;}
.y78{bottom:373.173501pt;}
.y80{bottom:373.653501pt;}
.y1{bottom:381.173498pt;}
.y13{bottom:381.333498pt;}
.y6b{bottom:384.533634pt;}
.yd{bottom:386.773443pt;}
.y91{bottom:389.013495pt;}
.y9b{bottom:389.493495pt;}
.y18{bottom:396.853492pt;}
.y35{bottom:397.493492pt;}
.y29{bottom:398.773491pt;}
.y87{bottom:404.053489pt;}
.y4f{bottom:404.693489pt;}
.y5a{bottom:406.773461pt;}
.y6a{bottom:406.773547pt;}
.y77{bottom:411.573486pt;}
.y7f{bottom:412.053486pt;}
.y42{bottom:421.013482pt;}
.y90{bottom:427.413480pt;}
.y24{bottom:427.893480pt;}
.y59{bottom:429.173429pt;}
.yc{bottom:431.733478pt;}
.y1e{bottom:442.933473pt;}
.y34{bottom:444.373473pt;}
.y76{bottom:449.813471pt;}
.y7e{bottom:450.453470pt;}
.y69{bottom:451.573484pt;}
.y12{bottom:457.973467pt;}
.y74{bottom:458.133467pt;}
.y8f{bottom:465.653464pt;}
.y9a{bottom:466.293464pt;}
.y17{bottom:473.493461pt;}
.y68{bottom:473.813397pt;}
.y58{bottom:473.813498pt;}
.y86{bottom:480.693458pt;}
.y1d{bottom:481.173458pt;}
.y4e{bottom:481.333458pt;}
.y6{bottom:485.173221pt;}
.y75{bottom:488.213455pt;}
.y7d{bottom:488.693455pt;}
.y33{bottom:493.173453pt;}
.y2f{bottom:493.653453pt;}
.y28{bottom:494.453453pt;}
.y57{bottom:496.213467pt;}
.y41{bottom:496.533452pt;}
.y8e{bottom:504.053449pt;}
.y23{bottom:504.533449pt;}
.y67{bottom:518.453466pt;}
.y4d{bottom:519.733443pt;}
.y65{bottom:529.333439pt;}
.y11{bottom:534.773437pt;}
.y66{bottom:540.853434pt;}
.y56{bottom:540.853535pt;}
.y8d{bottom:542.453434pt;}
.y5{bottom:552.533308pt;}
.y55{bottom:563.253504pt;}
.y40{bottom:572.053422pt;}
.y54{bottom:585.493416pt;}
.y1c{bottom:587.573416pt;}
.y4{bottom:597.333412pt;}
.y3f{bottom:647.573392pt;}
.y10{bottom:649.333391pt;}
.y49{bottom:658.933387pt;}
.y48{bottom:666.613384pt;}
.yf{bottom:680.693378pt;}
.y4b{bottom:689.173068pt;}
.y4a{bottom:689.173375pt;}
.h7{height:18.400000pt;}
.h3{height:60.735976pt;}
.h6{height:60.991976pt;}
.h9{height:71.061092pt;}
.ha{height:71.360611pt;}
.h8{height:80.778848pt;}
.h5{height:91.103964pt;}
.h1{height:101.429079pt;}
.hb{height:121.471951pt;}
.h4{height:121.983951pt;}
.h2{height:141.514823pt;}
.hc{height:142.111303pt;}
.h0{height:793.333333pt;}
.w1{width:74.560000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xf{left:90.867297pt;}
.x13{left:102.227292pt;}
.x12{left:103.347292pt;}
.x2b{left:117.267286pt;}
.x30{left:124.947283pt;}
.x10{left:132.467280pt;}
.x26{left:139.827944pt;}
.x2f{left:147.667941pt;}
.xd{left:149.426864pt;}
.x11{left:155.027938pt;}
.x7{left:159.987936pt;}
.x2e{left:180.467928pt;}
.x32{left:183.827926pt;}
.x3{left:194.066770pt;}
.x1{left:207.347917pt;}
.x2{left:233.268089pt;}
.x4{left:235.187906pt;}
.x24{left:238.227905pt;}
.xc{left:244.947902pt;}
.x6{left:258.068350pt;}
.x27{left:268.627893pt;}
.x14{left:276.147890pt;}
.x33{left:283.667887pt;}
.x5{left:372.148849pt;}
.x29{left:389.427844pt;}
.x25{left:410.227525pt;}
.xe{left:412.306452pt;}
.x28{left:415.027834pt;}
.x23{left:444.947822pt;}
.x1e{left:483.507807pt;}
.x1f{left:486.387805pt;}
.x21{left:487.827805pt;}
.x22{left:506.707797pt;}
.x20{left:551.667779pt;}
.xa{left:699.987400pt;}
.x9{left:713.107727pt;}
.x31{left:749.267700pt;}
.x2d{left:778.547689pt;}
.x2c{left:797.747681pt;}
.x2a{left:804.147678pt;}
.xb{left:810.548067pt;}
.x8{left:834.227666pt;}
.x19{left:890.227644pt;}
.x1c{left:921.427631pt;}
.x18{left:954.387618pt;}
.x1b{left:966.707200pt;}
.x15{left:970.707612pt;}
.x1d{left:971.827620pt;}
.x16{left:973.907610pt;}
.x17{left:992.947603pt;}
.x1a{left:1023.507591pt;}
}




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