
    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_c0b9202f91b39a306c42fd94.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.162000;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_d03dc3fee79a50fe0cd934eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.158000;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_478d5f1f85f46fac45a09c83.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_5d1dd2654d94366b8e263d3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.992000;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_a8f9158c373035415634b5a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.756000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_365ccf302be923c3defe648b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.134000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d980589f3f5716da370f4e09.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_902112019874e5bd03c16447.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.994000;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:ff9;src:url('chunks/assets/font_28356942ddea30815693a58c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.980000;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:ffa;src:url('chunks/assets/font_21abd69a60a322ed7eae7207.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.943000;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;}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237502,0.000000,0.000000,0.250000,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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001220px;}
.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;}
}
.ws4{word-spacing:-18.667721px;}
.ws6{word-spacing:-17.778809px;}
.ws0{word-spacing:-16.000950px;}
.ws2{word-spacing:-14.415634px;}
.ws5{word-spacing:-14.000790px;}
.ws3{word-spacing:-13.334107px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-12.091678px;}
._16{margin-left:-11.021187px;}
._3{margin-left:-9.852534px;}
._14{margin-left:-8.201793px;}
._6{margin-left:-6.667205px;}
._1{margin-left:-5.355711px;}
._4{margin-left:-3.629527px;}
._0{margin-left:-2.222351px;}
._9{margin-left:-1.129089px;}
._5{width:1.027090px;}
._2{width:2.222791px;}
._7{width:3.379834px;}
._8{width:4.443306px;}
._10{width:5.590725px;}
._d{width:6.645112px;}
._c{width:7.979009px;}
._e{width:9.878269px;}
._f{width:10.968585px;}
._12{width:12.429614px;}
._11{width:13.767833px;}
._18{width:15.151814px;}
._19{width:16.257295px;}
._17{width:23.939756px;}
._15{width:24.967173px;}
._a{width:35.144782px;}
._b{width:90.967462px;}
._1a{width:552.332039px;}
.fc1{color:rgb(16,14,13);}
.fc0{color:rgb(16,14,13);}
.fs7{font-size:51.854799px;}
.fs6{font-size:59.262576px;}
.fsa{font-size:66.670173px;}
.fs4{font-size:74.078370px;}
.fs9{font-size:77.782169px;}
.fs3{font-size:88.894164px;}
.fs5{font-size:96.301761px;}
.fs2{font-size:103.709359px;}
.fs8{font-size:118.525153px;}
.fs1{font-size:133.340947px;}
.fs0{font-size:222.235111px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.603125px;}
.ye{bottom:79.628443px;}
.y30{bottom:84.698140px;}
.y9e{bottom:106.498382px;}
.y7b{bottom:109.544731px;}
.yd2{bottom:110.617680px;}
.y2f{bottom:110.754480px;}
.yd{bottom:111.545430px;}
.yb0{bottom:111.882330px;}
.y53{bottom:123.075475px;}
.y2e{bottom:126.311124px;}
.yf0{bottom:127.706723px;}
.y9d{bottom:129.834322px;}
.yd1{bottom:130.618822px;}
.y7a{bottom:132.880071px;}
.yaf{bottom:135.216170px;}
.y2d{bottom:141.867768px;}
.y52{bottom:146.409316px;}
.yd0{bottom:150.619964px;}
.yef{bottom:151.042064px;}
.y9c{bottom:153.168163px;}
.y79{bottom:156.213912px;}
.yc{bottom:166.685108px;}
.y51{bottom:169.744656px;}
.ycf{bottom:170.621106px;}
.yae{bottom:171.667506px;}
.yee{bottom:174.375905px;}
.y9b{bottom:176.503504px;}
.y2c{bottom:178.417653px;}
.y78{bottom:179.549853px;}
.yce{bottom:190.622248px;}
.y50{bottom:193.078497px;}
.y2b{bottom:196.196846px;}
.yed{bottom:197.711245px;}
.yad{bottom:198.336295px;}
.y9a{bottom:199.837344px;}
.y77{bottom:202.883693px;}
.ycd{bottom:210.623390px;}
.y2a{bottom:213.976039px;}
.y4f{bottom:216.414438px;}
.yec{bottom:221.045086px;}
.y99{bottom:223.172685px;}
.y76{bottom:226.217534px;}
.ycc{bottom:230.624532px;}
.y29{bottom:231.753882px;}
.y4e{bottom:239.748278px;}
.yeb{bottom:244.381027px;}
.y98{bottom:246.506526px;}
.y28{bottom:249.533825px;}
.y75{bottom:249.552875px;}
.ycb{bottom:250.625674px;}
.y119{bottom:252.714723px;}
.y4d{bottom:263.083619px;}
.yac{bottom:264.383669px;}
.y27{bottom:267.311667px;}
.yea{bottom:267.714867px;}
.y97{bottom:269.840366px;}
.y74{bottom:272.886715px;}
.y118{bottom:276.050664px;}
.yca{bottom:281.126512px;}
.y26{bottom:285.090860px;}
.y4c{bottom:286.417460px;}
.ye9{bottom:291.048708px;}
.y96{bottom:293.175707px;}
.y73{bottom:296.222656px;}
.y117{bottom:299.384505px;}
.y25{bottom:302.870053px;}
.yc9{bottom:304.460353px;}
.y4b{bottom:309.752800px;}
.y10b{bottom:310.337200px;}
.ye8{bottom:314.384049px;}
.y95{bottom:316.509548px;}
.y72{bottom:319.556497px;}
.y24{bottom:320.649246px;}
.y116{bottom:322.719845px;}
.yc8{bottom:327.795693px;}
.y4a{bottom:333.086641px;}
.y10a{bottom:333.672541px;}
.ye7{bottom:337.717889px;}
.yab{bottom:338.294789px;}
.y23{bottom:338.427089px;}
.y94{bottom:339.844888px;}
.y115{bottom:346.053686px;}
.yc7{bottom:351.129534px;}
.y71{bottom:356.007832px;}
.y22{bottom:356.207032px;}
.y49{bottom:356.421982px;}
.y109{bottom:357.007882px;}
.ye6{bottom:361.053230px;}
.yaa{bottom:361.630130px;}
.y114{bottom:369.389027px;}
.y21{bottom:373.984875px;}
.yc6{bottom:374.465475px;}
.y93{bottom:376.304024px;}
.y48{bottom:379.757322px;}
.y70{bottom:382.676021px;}
.ya9{bottom:384.963970px;}
.y108{bottom:385.592020px;}
.y20{bottom:391.764068px;}
.y113{bottom:392.722867px;}
.yc5{bottom:397.799315px;}
.y47{bottom:403.091163px;}
.ye5{bottom:405.386012px;}
.ya8{bottom:408.297811px;}
.y107{bottom:408.927361px;}
.y112{bottom:416.058208px;}
.yc4{bottom:421.134656px;}
.ye4{bottom:425.387154px;}
.y46{bottom:426.426504px;}
.y106{bottom:432.261201px;}
.ya7{bottom:436.883300px;}
.y111{bottom:439.393549px;}
.yc3{bottom:444.468497px;}
.ye3{bottom:445.388296px;}
.y6f{bottom:448.723995px;}
.y45{bottom:449.760344px;}
.y92{bottom:450.217844px;}
.yb{bottom:456.664992px;}
.ya6{bottom:460.217140px;}
.y105{bottom:460.846690px;}
.y110{bottom:462.727389px;}
.ye2{bottom:465.389438px;}
.y91{bottom:470.218986px;}
.y44{bottom:473.096285px;}
.ya5{bottom:483.552481px;}
.y104{bottom:484.180531px;}
.ye1{bottom:485.390580px;}
.y10f{bottom:486.062730px;}
.yc2{bottom:488.802629px;}
.y90{bottom:490.221478px;}
.ya{bottom:493.014477px;}
.y43{bottom:496.430126px;}
.y1f{bottom:498.792325px;}
.ye0{bottom:505.391722px;}
.y103{bottom:507.515871px;}
.yc1{bottom:508.803771px;}
.y8f{bottom:510.222620px;}
.ya4{bottom:512.137970px;}
.y1e{bottom:516.571518px;}
.y42{bottom:519.765466px;}
.y10e{bottom:522.521865px;}
.y6e{bottom:522.637815px;}
.ydf{bottom:525.394214px;}
.yc0{bottom:528.804913px;}
.y9{bottom:529.365313px;}
.y102{bottom:530.849712px;}
.y1d{bottom:534.349361px;}
.ya3{bottom:535.471810px;}
.y8e{bottom:540.720608px;}
.y41{bottom:543.099307px;}
.yde{bottom:545.395356px;}
.y6d{bottom:545.971656px;}
.ybf{bottom:548.806055px;}
.y101{bottom:554.185653px;}
.y8d{bottom:564.056549px;}
.y8{bottom:565.726648px;}
.y40{bottom:566.434648px;}
.ybe{bottom:568.807197px;}
.y6c{bottom:569.307597px;}
.ydd{bottom:570.646646px;}
.y100{bottom:582.769041px;}
.y8c{bottom:587.390389px;}
.ybd{bottom:588.808339px;}
.y3f{bottom:589.768488px;}
.ydc{bottom:590.647788px;}
.y6b{bottom:592.641437px;}
.yff{bottom:606.104982px;}
.ybc{bottom:608.809481px;}
.y8b{bottom:610.725730px;}
.y3e{bottom:613.102329px;}
.y6a{bottom:615.976778px;}
.y10d{bottom:617.434627px;}
.ydb{bottom:621.147276px;}
.yfe{bottom:629.438823px;}
.y3d{bottom:636.438270px;}
.ybb{bottom:639.308969px;}
.y8a{bottom:639.309869px;}
.y69{bottom:639.310619px;}
.yda{bottom:644.482617px;}
.yfd{bottom:652.774163px;}
.y3c{bottom:659.772110px;}
.yba{bottom:662.644309px;}
.y89{bottom:662.645209px;}
.y68{bottom:662.645959px;}
.yd9{bottom:667.816457px;}
.y3b{bottom:683.107451px;}
.yb9{bottom:685.978150px;}
.y88{bottom:685.979050px;}
.y67{bottom:685.979800px;}
.yfc{bottom:686.609950px;}
.yd8{bottom:691.151798px;}
.yb8{bottom:709.314091px;}
.y87{bottom:709.314991px;}
.y66{bottom:709.315741px;}
.yfb{bottom:709.943790px;}
.yd7{bottom:714.485639px;}
.y3a{bottom:719.566587px;}
.yb7{bottom:732.648681px;}
.y86{bottom:732.648831px;}
.ya2{bottom:732.649581px;}
.yfa{bottom:733.277631px;}
.y65{bottom:737.899129px;}
.y1c{bottom:751.615274px;}
.y85{bottom:755.982672px;}
.yb6{bottom:755.983272px;}
.ya1{bottom:755.983422px;}
.yf9{bottom:756.612972px;}
.yd6{bottom:758.818421px;}
.y64{bottom:761.235070px;}
.y1b{bottom:773.837465px;}
.yd5{bottom:778.820913px;}
.yb5{bottom:779.317863px;}
.y84{bottom:779.318013px;}
.ya0{bottom:779.318763px;}
.yf8{bottom:779.946812px;}
.y63{bottom:784.568911px;}
.y39{bottom:788.231609px;}
.yd4{bottom:798.822055px;}
.y7{bottom:802.381553px;}
.y83{bottom:802.651853px;}
.yb4{bottom:802.652453px;}
.y9f{bottom:802.652603px;}
.yf7{bottom:803.282153px;}
.y62{bottom:807.904251px;}
.y38{bottom:810.454550px;}
.yd3{bottom:824.072595px;}
.yb3{bottom:825.987044px;}
.y82{bottom:825.987194px;}
.yf6{bottom:826.617494px;}
.y61{bottom:831.238092px;}
.y37{bottom:832.678241px;}
.y1a{bottom:848.571935px;}
.yb2{bottom:849.321635px;}
.y81{bottom:849.321785px;}
.yf5{bottom:849.952834px;}
.y6{bottom:852.882183px;}
.y60{bottom:854.573433px;}
.y19{bottom:866.351878px;}
.yb1{bottom:872.656975px;}
.y80{bottom:872.657125px;}
.yf4{bottom:873.286675px;}
.y5f{bottom:877.907273px;}
.y18{bottom:884.131821px;}
.y5{bottom:892.885817px;}
.y7f{bottom:895.990966px;}
.yf3{bottom:896.622016px;}
.y5e{bottom:901.241114px;}
.y36{bottom:901.344014px;}
.y17{bottom:901.909664px;}
.y7e{bottom:919.326307px;}
.y35{bottom:923.566205px;}
.y5d{bottom:924.576455px;}
.yf2{bottom:933.079801px;}
.y16{bottom:940.681348px;}
.y7d{bottom:942.660147px;}
.y4{bottom:943.386297px;}
.y34{bottom:945.789896px;}
.y5c{bottom:947.910295px;}
.y15{bottom:958.461291px;}
.yf1{bottom:959.747990px;}
.y7c{bottom:965.996088px;}
.y5b{bottom:971.245636px;}
.y5a{bottom:994.579477px;}
.y14{bottom:997.232975px;}
.y33{bottom:1009.205371px;}
.y3{bottom:1010.056620px;}
.y13{bottom:1015.012918px;}
.y59{bottom:1017.915417px;}
.y12{bottom:1032.791361px;}
.y58{bottom:1041.249258px;}
.y32{bottom:1044.763156px;}
.y11{bottom:1050.569804px;}
.y57{bottom:1064.583099px;}
.y10{bottom:1068.348247px;}
.y2{bottom:1076.726944px;}
.y31{bottom:1080.320942px;}
.y10c{bottom:1081.720442px;}
.y56{bottom:1087.918439px;}
.yf{bottom:1107.121432px;}
.y54{bottom:1155.007412px;}
.y55{bottom:1155.805412px;}
.h16{height:45.335871px;}
.h11{height:45.869079px;}
.hc{height:46.980448px;}
.h14{height:51.002683px;}
.hf{height:51.484467px;}
.ha{height:55.232721px;}
.h15{height:55.781013px;}
.h7{height:56.595875px;}
.h5{height:61.781444px;}
.hb{height:67.115004px;}
.h13{height:67.115094px;}
.h12{height:69.041041px;}
.h8{height:71.648511px;}
.h10{height:72.492981px;}
.h9{height:82.849361px;}
.he{height:83.027150px;}
.h4{height:96.657122px;}
.h6{height:96.864541px;}
.hd{height:110.702493px;}
.h3{height:124.540444px;}
.h2{height:207.567594px;}
.h1{height:1259.915400px;}
.h0{height:1263.000000px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x14{left:120.742002px;}
.x1d{left:140.194594px;}
.x3{left:142.177293px;}
.x1b{left:146.988991px;}
.x12{left:157.485087px;}
.x1e{left:162.751585px;}
.x21{left:173.234931px;}
.x22{left:180.923928px;}
.x13{left:183.737627px;}
.x2{left:191.401573px;}
.x20{left:199.486120px;}
.xe{left:209.984916px;}
.x4{left:217.027713px;}
.x8{left:228.160934px;}
.x9{left:233.605932px;}
.x1{left:242.849903px;}
.x10{left:284.516886px;}
.x5{left:307.032627px;}
.x23{left:335.081416px;}
.xb{left:338.279040px;}
.x1a{left:340.281914px;}
.xf{left:348.984310px;}
.xc{left:374.250225px;}
.xd{left:388.721845px;}
.x11{left:393.706493px;}
.x6{left:405.409338px;}
.x7{left:407.451212px;}
.xa{left:425.626855px;}
.x1c{left:448.826820px;}
.x18{left:525.153540px;}
.x15{left:530.930338px;}
.x16{left:581.799367px;}
.x17{left:651.673839px;}
.x19{left:655.896788px;}
.x1f{left:745.870202px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001084pt;}
.ws4{word-spacing:-16.593529pt;}
.ws6{word-spacing:-15.803386pt;}
.ws0{word-spacing:-14.223066pt;}
.ws2{word-spacing:-12.813897pt;}
.ws5{word-spacing:-12.445147pt;}
.ws3{word-spacing:-11.852539pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-10.748158pt;}
._16{margin-left:-9.796611pt;}
._3{margin-left:-8.757808pt;}
._14{margin-left:-7.290483pt;}
._6{margin-left:-5.926404pt;}
._1{margin-left:-4.760632pt;}
._4{margin-left:-3.226246pt;}
._0{margin-left:-1.975423pt;}
._9{margin-left:-1.003634pt;}
._5{width:0.912969pt;}
._2{width:1.975814pt;}
._7{width:3.004297pt;}
._8{width:3.949606pt;}
._10{width:4.969533pt;}
._d{width:5.906766pt;}
._c{width:7.092453pt;}
._e{width:8.780684pt;}
._f{width:9.749853pt;}
._12{width:11.048546pt;}
._11{width:12.238074pt;}
._18{width:13.468280pt;}
._19{width:14.450929pt;}
._17{width:21.279783pt;}
._15{width:22.193043pt;}
._a{width:31.239806pt;}
._b{width:80.859966pt;}
._1a{width:490.961812pt;}
.fs7{font-size:46.093155pt;}
.fs6{font-size:52.677846pt;}
.fsa{font-size:59.262376pt;}
.fs4{font-size:65.847440pt;}
.fs9{font-size:69.139706pt;}
.fs3{font-size:79.017035pt;}
.fs5{font-size:85.601566pt;}
.fs2{font-size:92.186096pt;}
.fs8{font-size:105.355691pt;}
.fs1{font-size:118.525286pt;}
.fs0{font-size:197.542321pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.425000pt;}
.ye{bottom:70.780838pt;}
.y30{bottom:75.287236pt;}
.y9e{bottom:94.665228pt;}
.y7b{bottom:97.373094pt;}
.yd2{bottom:98.326827pt;}
.y2f{bottom:98.448427pt;}
.yd{bottom:99.151493pt;}
.yb0{bottom:99.450960pt;}
.y53{bottom:109.400422pt;}
.y2e{bottom:112.276555pt;}
.yf0{bottom:113.517087pt;}
.y9d{bottom:115.408287pt;}
.yd1{bottom:116.105620pt;}
.y7a{bottom:118.115619pt;}
.yaf{bottom:120.192151pt;}
.y2d{bottom:126.104682pt;}
.y52{bottom:130.141614pt;}
.yd0{bottom:133.884413pt;}
.yef{bottom:134.259612pt;}
.y9c{bottom:136.149478pt;}
.y79{bottom:138.856811pt;}
.yc{bottom:148.164540pt;}
.y51{bottom:150.884139pt;}
.ycf{bottom:151.663205pt;}
.yae{bottom:152.593338pt;}
.yee{bottom:155.000804pt;}
.y9b{bottom:156.892003pt;}
.y2c{bottom:158.593469pt;}
.y78{bottom:159.599869pt;}
.yce{bottom:169.441998pt;}
.y50{bottom:171.625331pt;}
.y2b{bottom:174.397196pt;}
.yed{bottom:175.743329pt;}
.yad{bottom:176.298929pt;}
.y9a{bottom:177.633195pt;}
.y77{bottom:180.341061pt;}
.ycd{bottom:187.220791pt;}
.y2a{bottom:190.200923pt;}
.y4f{bottom:192.368389pt;}
.yec{bottom:196.484521pt;}
.y99{bottom:198.375720pt;}
.y76{bottom:201.082252pt;}
.ycc{bottom:204.999584pt;}
.y29{bottom:206.003450pt;}
.y4e{bottom:213.109581pt;}
.yeb{bottom:217.227579pt;}
.y98{bottom:219.116912pt;}
.y28{bottom:221.807844pt;}
.y75{bottom:221.824777pt;}
.ycb{bottom:222.778377pt;}
.y119{bottom:224.635310pt;}
.y4d{bottom:233.852106pt;}
.yac{bottom:235.007705pt;}
.y27{bottom:237.610371pt;}
.yea{bottom:237.968771pt;}
.y97{bottom:239.858103pt;}
.y74{bottom:242.565969pt;}
.y118{bottom:245.378368pt;}
.yca{bottom:249.890233pt;}
.y26{bottom:253.414098pt;}
.y4c{bottom:254.593298pt;}
.ye9{bottom:258.709963pt;}
.y96{bottom:260.600629pt;}
.y73{bottom:263.309027pt;}
.y117{bottom:266.119560pt;}
.y25{bottom:269.217825pt;}
.yc9{bottom:270.631425pt;}
.y4b{bottom:275.335823pt;}
.y10b{bottom:275.855289pt;}
.ye8{bottom:279.452488pt;}
.y95{bottom:281.341820pt;}
.y72{bottom:284.050219pt;}
.y24{bottom:285.021552pt;}
.y116{bottom:286.862085pt;}
.yc8{bottom:291.373950pt;}
.y4a{bottom:296.077014pt;}
.y10a{bottom:296.597814pt;}
.ye7{bottom:300.193679pt;}
.yab{bottom:300.706479pt;}
.y23{bottom:300.824079pt;}
.y94{bottom:302.084345pt;}
.y115{bottom:307.603276pt;}
.yc7{bottom:312.115141pt;}
.y71{bottom:316.451406pt;}
.y22{bottom:316.628473pt;}
.y49{bottom:316.819539pt;}
.y109{bottom:317.340339pt;}
.ye6{bottom:320.936204pt;}
.yaa{bottom:321.449004pt;}
.y114{bottom:328.345801pt;}
.y21{bottom:332.431000pt;}
.yc6{bottom:332.858200pt;}
.y93{bottom:334.492466pt;}
.y48{bottom:337.562064pt;}
.y70{bottom:340.156463pt;}
.ya9{bottom:342.190196pt;}
.y108{bottom:342.748462pt;}
.y20{bottom:348.234727pt;}
.y113{bottom:349.086993pt;}
.yc5{bottom:353.599391pt;}
.y47{bottom:358.303256pt;}
.ye5{bottom:360.343122pt;}
.ya8{bottom:362.931388pt;}
.y107{bottom:363.490987pt;}
.y112{bottom:369.829518pt;}
.yc4{bottom:374.341916pt;}
.ye4{bottom:378.121915pt;}
.y46{bottom:379.045781pt;}
.y106{bottom:384.232179pt;}
.ya7{bottom:388.340711pt;}
.y111{bottom:390.572043pt;}
.yc3{bottom:395.083108pt;}
.ye3{bottom:395.900708pt;}
.y6f{bottom:398.865773pt;}
.y45{bottom:399.786973pt;}
.y92{bottom:400.193639pt;}
.yb{bottom:405.924437pt;}
.ya6{bottom:409.081902pt;}
.y105{bottom:409.641502pt;}
.y110{bottom:411.313235pt;}
.ye2{bottom:413.679501pt;}
.y91{bottom:417.972432pt;}
.y44{bottom:420.530031pt;}
.ya5{bottom:429.824428pt;}
.y104{bottom:430.382694pt;}
.ye1{bottom:431.458294pt;}
.y10f{bottom:432.055760pt;}
.yc2{bottom:434.491226pt;}
.y90{bottom:435.752425pt;}
.ya{bottom:438.235091pt;}
.y43{bottom:441.271223pt;}
.y1f{bottom:443.370955pt;}
.ye0{bottom:449.237086pt;}
.y103{bottom:451.125219pt;}
.yc1{bottom:452.270019pt;}
.y8f{bottom:453.531218pt;}
.ya4{bottom:455.233751pt;}
.y1e{bottom:459.174682pt;}
.y42{bottom:462.013748pt;}
.y10e{bottom:464.463880pt;}
.y6e{bottom:464.566947pt;}
.ydf{bottom:467.017079pt;}
.yc0{bottom:470.048811pt;}
.y9{bottom:470.546945pt;}
.y102{bottom:471.866411pt;}
.y1d{bottom:474.977209pt;}
.ya3{bottom:475.974942pt;}
.y8e{bottom:480.640541pt;}
.y41{bottom:482.754940pt;}
.yde{bottom:484.795872pt;}
.y6d{bottom:485.308139pt;}
.ybf{bottom:487.827604pt;}
.y101{bottom:492.609469pt;}
.y8d{bottom:501.383599pt;}
.y8{bottom:502.868132pt;}
.y40{bottom:503.497465pt;}
.ybe{bottom:505.606397pt;}
.y6c{bottom:506.051197pt;}
.ydd{bottom:507.241463pt;}
.y100{bottom:518.016926pt;}
.y8c{bottom:522.124791pt;}
.ybd{bottom:523.385190pt;}
.y3f{bottom:524.238656pt;}
.ydc{bottom:525.020256pt;}
.y6b{bottom:526.792389pt;}
.yff{bottom:538.759984pt;}
.ybc{bottom:541.163983pt;}
.y8b{bottom:542.867316pt;}
.y3e{bottom:544.979848pt;}
.y6a{bottom:547.534914pt;}
.y10d{bottom:548.830780pt;}
.ydb{bottom:552.130912pt;}
.yfe{bottom:559.501176pt;}
.y3d{bottom:565.722906pt;}
.ybb{bottom:568.274639pt;}
.y8a{bottom:568.275439pt;}
.y69{bottom:568.276105pt;}
.yda{bottom:572.873437pt;}
.yfd{bottom:580.243701pt;}
.y3c{bottom:586.464098pt;}
.yba{bottom:589.017164pt;}
.y89{bottom:589.017964pt;}
.y68{bottom:589.018630pt;}
.yd9{bottom:593.614629pt;}
.y3b{bottom:607.206623pt;}
.yb9{bottom:609.758356pt;}
.y88{bottom:609.759156pt;}
.y67{bottom:609.759822pt;}
.yfc{bottom:610.319955pt;}
.yd8{bottom:614.357154pt;}
.yb8{bottom:630.501414pt;}
.y87{bottom:630.502214pt;}
.y66{bottom:630.502881pt;}
.yfb{bottom:631.061147pt;}
.yd7{bottom:635.098345pt;}
.y3a{bottom:639.614744pt;}
.yb7{bottom:651.243272pt;}
.y86{bottom:651.243406pt;}
.ya2{bottom:651.244072pt;}
.yfa{bottom:651.802339pt;}
.y65{bottom:655.910337pt;}
.y1c{bottom:668.102466pt;}
.y85{bottom:671.984597pt;}
.yb6{bottom:671.985131pt;}
.ya1{bottom:671.985264pt;}
.yf9{bottom:672.544864pt;}
.yd6{bottom:674.505263pt;}
.y64{bottom:676.653395pt;}
.y1b{bottom:687.855524pt;}
.yd5{bottom:692.285256pt;}
.yb5{bottom:692.726989pt;}
.y84{bottom:692.727122pt;}
.ya0{bottom:692.727789pt;}
.yf8{bottom:693.286055pt;}
.y63{bottom:697.394587pt;}
.y39{bottom:700.650319pt;}
.yd4{bottom:710.064049pt;}
.y7{bottom:713.228047pt;}
.y83{bottom:713.468314pt;}
.yb4{bottom:713.468847pt;}
.y9f{bottom:713.468981pt;}
.yf7{bottom:714.028580pt;}
.y62{bottom:718.137112pt;}
.y38{bottom:720.404045pt;}
.yd3{bottom:732.508973pt;}
.yb3{bottom:734.210706pt;}
.y82{bottom:734.210839pt;}
.yf6{bottom:734.771106pt;}
.y61{bottom:738.878304pt;}
.y37{bottom:740.158437pt;}
.y1a{bottom:754.286164pt;}
.yb2{bottom:754.952564pt;}
.y81{bottom:754.952697pt;}
.yf5{bottom:755.513631pt;}
.y6{bottom:758.117496pt;}
.y60{bottom:759.620829pt;}
.y19{bottom:770.090558pt;}
.yb1{bottom:775.695089pt;}
.y80{bottom:775.695222pt;}
.yf4{bottom:776.254822pt;}
.y5f{bottom:780.362021pt;}
.y18{bottom:785.894952pt;}
.y5{bottom:793.676282pt;}
.y7f{bottom:796.436414pt;}
.yf3{bottom:796.997347pt;}
.y5e{bottom:801.103212pt;}
.y36{bottom:801.194679pt;}
.y17{bottom:801.697479pt;}
.y7e{bottom:817.178939pt;}
.y35{bottom:820.947738pt;}
.y5d{bottom:821.845737pt;}
.yf2{bottom:829.404268pt;}
.y16{bottom:836.161198pt;}
.y7d{bottom:837.920131pt;}
.y4{bottom:838.565597pt;}
.y34{bottom:840.702130pt;}
.y5c{bottom:842.586929pt;}
.y15{bottom:851.965592pt;}
.yf1{bottom:853.109325pt;}
.y7c{bottom:858.663189pt;}
.y5b{bottom:863.329454pt;}
.y5a{bottom:884.070646pt;}
.y14{bottom:886.429312pt;}
.y33{bottom:897.071441pt;}
.y3{bottom:897.828107pt;}
.y13{bottom:902.233705pt;}
.y59{bottom:904.813704pt;}
.y12{bottom:918.036766pt;}
.y58{bottom:925.554896pt;}
.y32{bottom:928.678361pt;}
.y11{bottom:933.839826pt;}
.y57{bottom:946.296088pt;}
.y10{bottom:949.642886pt;}
.y2{bottom:957.090617pt;}
.y31{bottom:960.285282pt;}
.y10c{bottom:961.529281pt;}
.y56{bottom:967.038613pt;}
.yf{bottom:984.107939pt;}
.y54{bottom:1026.673255pt;}
.y55{bottom:1027.382588pt;}
.h16{height:40.298552pt;}
.h11{height:40.772515pt;}
.hc{height:41.760398pt;}
.h14{height:45.335718pt;}
.hf{height:45.763971pt;}
.ha{height:49.095752pt;}
.h15{height:49.583123pt;}
.h7{height:50.307444pt;}
.h5{height:54.916839pt;}
.hb{height:59.657781pt;}
.h13{height:59.657861pt;}
.h12{height:61.369814pt;}
.h8{height:63.687565pt;}
.h10{height:64.438206pt;}
.h9{height:73.643877pt;}
.he{height:73.801911pt;}
.h4{height:85.917442pt;}
.h6{height:86.101814pt;}
.hd{height:98.402216pt;}
.h3{height:110.702617pt;}
.h2{height:184.504528pt;}
.h1{height:1119.924800pt;}
.h0{height:1122.666667pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x14{left:107.326224pt;}
.x1d{left:124.617417pt;}
.x3{left:126.379816pt;}
.x1b{left:130.656881pt;}
.x12{left:139.986744pt;}
.x1e{left:144.668075pt;}
.x21{left:153.986605pt;}
.x22{left:160.821269pt;}
.x13{left:163.322335pt;}
.x2{left:170.134732pt;}
.x20{left:177.320996pt;}
.xe{left:186.653259pt;}
.x4{left:192.913523pt;}
.x8{left:202.809719pt;}
.x9{left:207.649717pt;}
.x1{left:215.866580pt;}
.x10{left:252.903899pt;}
.x5{left:272.917891pt;}
.x23{left:297.850148pt;}
.xb{left:300.692480pt;}
.x1a{left:302.472812pt;}
.xf{left:310.208276pt;}
.xc{left:332.666867pt;}
.xd{left:345.530528pt;}
.x11{left:349.961327pt;}
.x6{left:360.363856pt;}
.x7{left:362.178855pt;}
.xa{left:378.334982pt;}
.x1c{left:398.957174pt;}
.x18{left:466.803147pt;}
.x15{left:471.938078pt;}
.x16{left:517.154993pt;}
.x17{left:579.265635pt;}
.x19{left:583.019367pt;}
.x1f{left:662.995735pt;}
}




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