
    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_8b9f463279adc5f1fd476187.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_4e5f6fc81685e19ec2e298d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_e32ec1d2cb911fee54e2810e.woff2')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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0ddac84ed84d358ef52e0a2d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_814e6009c581937e82d6ace9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_21070109f25364c0ea1eac73.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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_4b7e7c148ab8e11bb42c19c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_d09930a2c4073b4c50ec18e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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);}
.v3{vertical-align:-96.480000px;}
.v2{vertical-align:-76.464000px;}
.v4{vertical-align:-75.024000px;}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.134000px;}
.lse{letter-spacing:-0.828000px;}
.ls9{letter-spacing:-0.507000px;}
.ls10{letter-spacing:-0.457800px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.466560px;}
.ls8{letter-spacing:0.466800px;}
.lsa{letter-spacing:0.612000px;}
.ls5{letter-spacing:1.596000px;}
.lsb{letter-spacing:3.185280px;}
.lsf{letter-spacing:171.785280px;}
.ls3{letter-spacing:804.286560px;}
.ls1{letter-spacing:1779.989760px;}
.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:-20.304000px;}
.ws5{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.026720px;}
.ws7{word-spacing:-18.414720px;}
.ws9{word-spacing:-17.956920px;}
.ws8{word-spacing:-17.586720px;}
.ws3{word-spacing:-16.813440px;}
.ws0{word-spacing:-16.306440px;}
.ws1{word-spacing:-13.668480px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-6.015360px;}
._15{margin-left:-4.735200px;}
._a{margin-left:-3.583200px;}
._1{margin-left:-2.056320px;}
._0{margin-left:-1.028160px;}
._2{width:1.135200px;}
._3{width:2.312160px;}
._6{width:3.525600px;}
._5{width:4.752000px;}
._7{width:6.460320px;}
._f{width:8.172480px;}
._e{width:9.614400px;}
._11{width:10.787040px;}
._b{width:11.896800px;}
._c{width:12.961920px;}
._1b{width:14.120640px;}
._d{width:15.134880px;}
._2e{width:16.195200px;}
._10{width:17.315520px;}
._19{width:18.378240px;}
._2f{width:19.729920px;}
._17{width:21.568320px;}
._18{width:22.721760px;}
._14{width:24.222720px;}
._13{width:25.650720px;}
._12{width:26.968320px;}
._8{width:28.368000px;}
._9{width:30.272640px;}
._35{width:38.220480px;}
._36{width:39.668640px;}
._34{width:44.932320px;}
._22{width:45.964320px;}
._33{width:47.033760px;}
._21{width:48.084000px;}
._20{width:62.928000px;}
._1e{width:64.797120px;}
._1f{width:65.911680px;}
._25{width:67.034880px;}
._26{width:68.934240px;}
._2c{width:111.879360px;}
._2d{width:113.116320px;}
._30{width:147.043680px;}
._23{width:149.304960px;}
._24{width:150.825120px;}
._32{width:171.760320px;}
._31{width:174.147840px;}
._2a{width:187.272480px;}
._2b{width:189.088800px;}
._27{width:190.364640px;}
._29{width:191.832000px;}
._28{width:192.893760px;}
._1c{width:233.673120px;}
._1d{width:234.791520px;}
._1a{width:922.659360px;}
._4{width:1072.135680px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,0,64);}
.fs0{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y28{bottom:56.520000px;}
.y27{bottom:75.276000px;}
.y7{bottom:75.636000px;}
.y26{bottom:88.956000px;}
.y6{bottom:93.996000px;}
.y5{bottom:108.396000px;}
.y64{bottom:125.316000px;}
.ye0{bottom:133.236000px;}
.ybd{bottom:133.956000px;}
.y91{bottom:151.230000px;}
.y23{bottom:152.670000px;}
.ybc{bottom:153.390000px;}
.y63{bottom:154.110000px;}
.ydf{bottom:160.950000px;}
.y57{bottom:169.590000px;}
.y90{bottom:170.670000px;}
.ybb{bottom:172.470000px;}
.y22{bottom:173.190000px;}
.yde{bottom:180.390000px;}
.y8f{bottom:189.390000px;}
.y56{bottom:190.110000px;}
.yba{bottom:190.830000px;}
.y21{bottom:194.115000px;}
.ydd{bottom:199.515000px;}
.y62{bottom:209.955000px;}
.y55{bottom:211.035000px;}
.y20{bottom:214.635000px;}
.y8e{bottom:217.515000px;}
.ydc{bottom:217.875000px;}
.yb9{bottom:219.315000px;}
.y61{bottom:229.395000px;}
.y54{bottom:231.555000px;}
.y1f{bottom:235.515000px;}
.y8d{bottom:245.235000px;}
.ydb{bottom:246.315000px;}
.yb8{bottom:246.675000px;}
.y60{bottom:248.475000px;}
.y53{bottom:252.435000px;}
.y1e{bottom:256.035000px;}
.y8c{bottom:264.675000px;}
.yda{bottom:265.395000px;}
.yb7{bottom:266.115000px;}
.y52{bottom:272.955000px;}
.y5f{bottom:275.835000px;}
.y1d{bottom:276.915000px;}
.y8b{bottom:283.395000px;}
.yd9{bottom:283.755000px;}
.yb6{bottom:284.835000px;}
.y51{bottom:293.835000px;}
.y5e{bottom:295.275000px;}
.y1c{bottom:297.435000px;}
.y8a{bottom:302.115000px;}
.yd8{bottom:312.195000px;}
.yb5{bottom:313.275000px;}
.y50{bottom:314.355000px;}
.y1b{bottom:318.315000px;}
.y89{bottom:321.225000px;}
.yd7{bottom:331.305000px;}
.y4f{bottom:335.265000px;}
.y1a{bottom:338.865000px;}
.yb4{bottom:340.665000px;}
.y5d{bottom:342.825000px;}
.y88{bottom:348.945000px;}
.yd6{bottom:350.025000px;}
.y4e{bottom:355.785000px;}
.y19{bottom:359.745000px;}
.yb3{bottom:360.105000px;}
.y87{bottom:368.385000px;}
.y4d{bottom:376.665000px;}
.yd5{bottom:377.745000px;}
.yb2{bottom:379.185000px;}
.y18{bottom:380.265000px;}
.y86{bottom:387.105000px;}
.y4c{bottom:397.185000px;}
.y5c{bottom:398.265000px;}
.yb1{bottom:406.545000px;}
.y85{bottom:415.185000px;}
.y5b{bottom:415.905000px;}
.y17{bottom:419.505000px;}
.yb0{bottom:425.985000px;}
.y4b{bottom:436.065000px;}
.y5a{bottom:438.585000px;}
.y84{bottom:442.905000px;}
.yd4{bottom:443.985000px;}
.yaf{bottom:444.705000px;}
.y4a{bottom:456.630000px;}
.y83{bottom:462.390000px;}
.yd3{bottom:462.750000px;}
.yae{bottom:472.470000px;}
.y16{bottom:474.630000px;}
.y49{bottom:477.510000px;}
.y82{bottom:481.470000px;}
.yd2{bottom:482.190000px;}
.yad{bottom:491.910000px;}
.y48{bottom:498.030000px;}
.yd1{bottom:500.910000px;}
.y81{bottom:509.190000px;}
.yac{bottom:510.630000px;}
.y15{bottom:511.710000px;}
.y47{bottom:518.910000px;}
.yd0{bottom:519.630000px;}
.y80{bottom:527.910000px;}
.y14{bottom:530.430000px;}
.yab{bottom:539.070000px;}
.y46{bottom:539.430000px;}
.y7f{bottom:547.350000px;}
.ycf{bottom:548.070000px;}
.y13{bottom:549.150000px;}
.y45{bottom:560.310000px;}
.y7e{bottom:565.710000px;}
.yaa{bottom:566.430000px;}
.yce{bottom:567.150000px;}
.y12{bottom:567.510000px;}
.y44{bottom:580.860000px;}
.ycd{bottom:585.540000px;}
.ya9{bottom:585.900000px;}
.y7d{bottom:594.180000px;}
.y43{bottom:601.740000px;}
.ya8{bottom:604.980000px;}
.ycc{bottom:613.620000px;}
.y7c{bottom:621.900000px;}
.y42{bottom:622.260000px;}
.yf5{bottom:622.620000px;}
.y11{bottom:623.700000px;}
.ycb{bottom:633.060000px;}
.y10{bottom:640.980000px;}
.y7b{bottom:641.340000px;}
.yf4{bottom:642.060000px;}
.y41{bottom:643.140000px;}
.ya7{bottom:651.420000px;}
.yf{bottom:658.260000px;}
.y7a{bottom:660.060000px;}
.yf3{bottom:660.780000px;}
.y40{bottom:663.660000px;}
.yca{bottom:670.500000px;}
.ya6{bottom:670.860000px;}
.yf2{bottom:679.860000px;}
.y3f{bottom:684.540000px;}
.y79{bottom:688.140000px;}
.ya5{bottom:689.580000px;}
.ye{bottom:693.180000px;}
.yc9{bottom:698.970000px;}
.y3e{bottom:705.090000px;}
.yd{bottom:707.250000px;}
.yf1{bottom:707.610000px;}
.y78{bottom:715.530000px;}
.ya4{bottom:717.690000px;}
.y3d{bottom:725.970000px;}
.yc8{bottom:726.690000px;}
.yf0{bottom:727.050000px;}
.y77{bottom:734.970000px;}
.ya3{bottom:745.410000px;}
.yc7{bottom:745.770000px;}
.y3c{bottom:746.490000px;}
.y76{bottom:753.690000px;}
.yc6{bottom:764.490000px;}
.ya2{bottom:764.850000px;}
.y3b{bottom:767.370000px;}
.yc{bottom:767.730000px;}
.y75{bottom:781.770000px;}
.ya1{bottom:783.930000px;}
.yb{bottom:786.810000px;}
.y3a{bottom:787.890000px;}
.yef{bottom:792.210000px;}
.yc5{bottom:792.570000px;}
.y74{bottom:801.210000px;}
.ya0{bottom:802.290000px;}
.ya{bottom:805.530000px;}
.y39{bottom:808.770000px;}
.yc4{bottom:811.650000px;}
.y73{bottom:819.930000px;}
.y9{bottom:821.010000px;}
.y38{bottom:829.335000px;}
.yc3{bottom:830.415000px;}
.y9f{bottom:830.775000px;}
.y72{bottom:848.055000px;}
.yee{bottom:849.495000px;}
.y37{bottom:850.215000px;}
.y9e{bottom:858.135000px;}
.yc2{bottom:858.495000px;}
.y36{bottom:870.735000px;}
.y71{bottom:875.415000px;}
.yed{bottom:877.215000px;}
.y9d{bottom:877.575000px;}
.y35{bottom:891.615000px;}
.y70{bottom:894.855000px;}
.y9c{bottom:896.295000px;}
.yec{bottom:896.655000px;}
.y34{bottom:912.135000px;}
.y6f{bottom:913.935000px;}
.yeb{bottom:915.375000px;}
.y9b{bottom:924.735000px;}
.y6e{bottom:932.655000px;}
.y33{bottom:933.015000px;}
.yea{bottom:934.455000px;}
.y9a{bottom:943.815000px;}
.yc1{bottom:952.125000px;}
.ye9{bottom:953.205000px;}
.y32{bottom:953.565000px;}
.y6d{bottom:960.405000px;}
.y99{bottom:962.205000px;}
.yc0{bottom:971.565000px;}
.y31{bottom:974.445000px;}
.y6c{bottom:979.845000px;}
.ye8{bottom:981.645000px;}
.ybf{bottom:990.285000px;}
.y98{bottom:990.645000px;}
.y30{bottom:994.965000px;}
.y6b{bottom:998.565000px;}
.ye7{bottom:1009.365000px;}
.y2f{bottom:1015.845000px;}
.y97{bottom:1018.005000px;}
.y6a{bottom:1026.285000px;}
.ye6{bottom:1028.445000px;}
.y2e{bottom:1036.365000px;}
.y96{bottom:1037.445000px;}
.y69{bottom:1045.725000px;}
.ye5{bottom:1047.165000px;}
.y8{bottom:1056.525000px;}
.y2d{bottom:1057.245000px;}
.y68{bottom:1064.445000px;}
.ye4{bottom:1074.885000px;}
.y95{bottom:1075.245000px;}
.y2c{bottom:1077.810000px;}
.y67{bottom:1083.570000px;}
.ye3{bottom:1094.370000px;}
.y2b{bottom:1098.690000px;}
.y94{bottom:1103.010000px;}
.ybe{bottom:1103.370000px;}
.y66{bottom:1111.650000px;}
.ye2{bottom:1113.450000px;}
.y2a{bottom:1119.210000px;}
.y4{bottom:1120.650000px;}
.y93{bottom:1122.450000px;}
.y29{bottom:1140.090000px;}
.y65{bottom:1140.450000px;}
.y92{bottom:1141.170000px;}
.ye1{bottom:1141.530000px;}
.y3{bottom:1161.330000px;}
.y59{bottom:1169.250000px;}
.y25{bottom:1172.130000px;}
.y2{bottom:1178.250000px;}
.y58{bottom:1193.730000px;}
.y24{bottom:1195.530000px;}
.y1{bottom:1195.890000px;}
.h4{height:48.667500px;}
.h3{height:53.302500px;}
.h8{height:59.383125px;}
.h2{height:63.078750px;}
.h6{height:69.086250px;}
.h7{height:75.093750px;}
.h5{height:87.108750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:127.475987px;}
.x11{left:180.794987px;}
.x10{left:212.474987px;}
.x3{left:216.074987px;}
.x7{left:278.024987px;}
.x4{left:297.104987px;}
.x8{left:316.184987px;}
.xd{left:376.709987px;}
.x6{left:446.579987px;}
.xb{left:476.099987px;}
.x9{left:487.979987px;}
.x5{left:545.969987px;}
.xe{left:563.969987px;}
.xc{left:620.534987px;}
.xf{left:679.214987px;}
.xa{left:699.734987px;}
.x2{left:765.644987px;}
@media print{
.v3{vertical-align:-85.760000pt;}
.v2{vertical-align:-67.968000pt;}
.v4{vertical-align:-66.688000pt;}
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.008000pt;}
.lse{letter-spacing:-0.736000pt;}
.ls9{letter-spacing:-0.450667pt;}
.ls10{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.414720pt;}
.ls8{letter-spacing:0.414933pt;}
.lsa{letter-spacing:0.544000pt;}
.ls5{letter-spacing:1.418667pt;}
.lsb{letter-spacing:2.831360pt;}
.lsf{letter-spacing:152.698027pt;}
.ls3{letter-spacing:714.921387pt;}
.ls1{letter-spacing:1582.213120pt;}
.ws4{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws2{word-spacing:-16.912640pt;}
.ws7{word-spacing:-16.368640pt;}
.ws9{word-spacing:-15.961707pt;}
.ws8{word-spacing:-15.632640pt;}
.ws3{word-spacing:-14.945280pt;}
.ws0{word-spacing:-14.494613pt;}
.ws1{word-spacing:-12.149760pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-5.346987pt;}
._15{margin-left:-4.209067pt;}
._a{margin-left:-3.185067pt;}
._1{margin-left:-1.827840pt;}
._0{margin-left:-0.913920pt;}
._2{width:1.009067pt;}
._3{width:2.055253pt;}
._6{width:3.133867pt;}
._5{width:4.224000pt;}
._7{width:5.742507pt;}
._f{width:7.264427pt;}
._e{width:8.546133pt;}
._11{width:9.588480pt;}
._b{width:10.574933pt;}
._c{width:11.521707pt;}
._1b{width:12.551680pt;}
._d{width:13.453227pt;}
._2e{width:14.395733pt;}
._10{width:15.391573pt;}
._19{width:16.336213pt;}
._2f{width:17.537707pt;}
._17{width:19.171840pt;}
._18{width:20.197120pt;}
._14{width:21.531307pt;}
._13{width:22.800640pt;}
._12{width:23.971840pt;}
._8{width:25.216000pt;}
._9{width:26.909013pt;}
._35{width:33.973760pt;}
._36{width:35.261013pt;}
._34{width:39.939840pt;}
._22{width:40.857173pt;}
._33{width:41.807787pt;}
._21{width:42.741333pt;}
._20{width:55.936000pt;}
._1e{width:57.597440pt;}
._1f{width:58.588160pt;}
._25{width:59.586560pt;}
._26{width:61.274880pt;}
._2c{width:99.448320pt;}
._2d{width:100.547840pt;}
._30{width:130.705493pt;}
._23{width:132.715520pt;}
._24{width:134.066773pt;}
._32{width:152.675840pt;}
._31{width:154.798080pt;}
._2a{width:166.464427pt;}
._2b{width:168.078933pt;}
._27{width:169.213013pt;}
._29{width:170.517333pt;}
._28{width:171.461120pt;}
._1c{width:207.709440pt;}
._1d{width:208.703573pt;}
._1a{width:820.141653pt;}
._4{width:953.009493pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:50.240000pt;}
.y27{bottom:66.912000pt;}
.y7{bottom:67.232000pt;}
.y26{bottom:79.072000pt;}
.y6{bottom:83.552000pt;}
.y5{bottom:96.352000pt;}
.y64{bottom:111.392000pt;}
.ye0{bottom:118.432000pt;}
.ybd{bottom:119.072000pt;}
.y91{bottom:134.426667pt;}
.y23{bottom:135.706667pt;}
.ybc{bottom:136.346667pt;}
.y63{bottom:136.986667pt;}
.ydf{bottom:143.066667pt;}
.y57{bottom:150.746667pt;}
.y90{bottom:151.706667pt;}
.ybb{bottom:153.306667pt;}
.y22{bottom:153.946667pt;}
.yde{bottom:160.346667pt;}
.y8f{bottom:168.346667pt;}
.y56{bottom:168.986667pt;}
.yba{bottom:169.626667pt;}
.y21{bottom:172.546667pt;}
.ydd{bottom:177.346667pt;}
.y62{bottom:186.626667pt;}
.y55{bottom:187.586667pt;}
.y20{bottom:190.786667pt;}
.y8e{bottom:193.346667pt;}
.ydc{bottom:193.666667pt;}
.yb9{bottom:194.946667pt;}
.y61{bottom:203.906667pt;}
.y54{bottom:205.826667pt;}
.y1f{bottom:209.346667pt;}
.y8d{bottom:217.986667pt;}
.ydb{bottom:218.946667pt;}
.yb8{bottom:219.266667pt;}
.y60{bottom:220.866667pt;}
.y53{bottom:224.386667pt;}
.y1e{bottom:227.586667pt;}
.y8c{bottom:235.266667pt;}
.yda{bottom:235.906667pt;}
.yb7{bottom:236.546667pt;}
.y52{bottom:242.626667pt;}
.y5f{bottom:245.186667pt;}
.y1d{bottom:246.146667pt;}
.y8b{bottom:251.906667pt;}
.yd9{bottom:252.226667pt;}
.yb6{bottom:253.186667pt;}
.y51{bottom:261.186667pt;}
.y5e{bottom:262.466667pt;}
.y1c{bottom:264.386667pt;}
.y8a{bottom:268.546667pt;}
.yd8{bottom:277.506667pt;}
.yb5{bottom:278.466667pt;}
.y50{bottom:279.426667pt;}
.y1b{bottom:282.946667pt;}
.y89{bottom:285.533333pt;}
.yd7{bottom:294.493333pt;}
.y4f{bottom:298.013333pt;}
.y1a{bottom:301.213333pt;}
.yb4{bottom:302.813333pt;}
.y5d{bottom:304.733333pt;}
.y88{bottom:310.173333pt;}
.yd6{bottom:311.133333pt;}
.y4e{bottom:316.253333pt;}
.y19{bottom:319.773333pt;}
.yb3{bottom:320.093333pt;}
.y87{bottom:327.453333pt;}
.y4d{bottom:334.813333pt;}
.yd5{bottom:335.773333pt;}
.yb2{bottom:337.053333pt;}
.y18{bottom:338.013333pt;}
.y86{bottom:344.093333pt;}
.y4c{bottom:353.053333pt;}
.y5c{bottom:354.013333pt;}
.yb1{bottom:361.373333pt;}
.y85{bottom:369.053333pt;}
.y5b{bottom:369.693333pt;}
.y17{bottom:372.893333pt;}
.yb0{bottom:378.653333pt;}
.y4b{bottom:387.613333pt;}
.y5a{bottom:389.853333pt;}
.y84{bottom:393.693333pt;}
.yd4{bottom:394.653333pt;}
.yaf{bottom:395.293333pt;}
.y4a{bottom:405.893333pt;}
.y83{bottom:411.013333pt;}
.yd3{bottom:411.333333pt;}
.yae{bottom:419.973333pt;}
.y16{bottom:421.893333pt;}
.y49{bottom:424.453333pt;}
.y82{bottom:427.973333pt;}
.yd2{bottom:428.613333pt;}
.yad{bottom:437.253333pt;}
.y48{bottom:442.693333pt;}
.yd1{bottom:445.253333pt;}
.y81{bottom:452.613333pt;}
.yac{bottom:453.893333pt;}
.y15{bottom:454.853333pt;}
.y47{bottom:461.253333pt;}
.yd0{bottom:461.893333pt;}
.y80{bottom:469.253333pt;}
.y14{bottom:471.493333pt;}
.yab{bottom:479.173333pt;}
.y46{bottom:479.493333pt;}
.y7f{bottom:486.533333pt;}
.ycf{bottom:487.173333pt;}
.y13{bottom:488.133333pt;}
.y45{bottom:498.053333pt;}
.y7e{bottom:502.853333pt;}
.yaa{bottom:503.493333pt;}
.yce{bottom:504.133333pt;}
.y12{bottom:504.453333pt;}
.y44{bottom:516.320000pt;}
.ycd{bottom:520.480000pt;}
.ya9{bottom:520.800000pt;}
.y7d{bottom:528.160000pt;}
.y43{bottom:534.880000pt;}
.ya8{bottom:537.760000pt;}
.ycc{bottom:545.440000pt;}
.y7c{bottom:552.800000pt;}
.y42{bottom:553.120000pt;}
.yf5{bottom:553.440000pt;}
.y11{bottom:554.400000pt;}
.ycb{bottom:562.720000pt;}
.y10{bottom:569.760000pt;}
.y7b{bottom:570.080000pt;}
.yf4{bottom:570.720000pt;}
.y41{bottom:571.680000pt;}
.ya7{bottom:579.040000pt;}
.yf{bottom:585.120000pt;}
.y7a{bottom:586.720000pt;}
.yf3{bottom:587.360000pt;}
.y40{bottom:589.920000pt;}
.yca{bottom:596.000000pt;}
.ya6{bottom:596.320000pt;}
.yf2{bottom:604.320000pt;}
.y3f{bottom:608.480000pt;}
.y79{bottom:611.680000pt;}
.ya5{bottom:612.960000pt;}
.ye{bottom:616.160000pt;}
.yc9{bottom:621.306667pt;}
.y3e{bottom:626.746667pt;}
.yd{bottom:628.666667pt;}
.yf1{bottom:628.986667pt;}
.y78{bottom:636.026667pt;}
.ya4{bottom:637.946667pt;}
.y3d{bottom:645.306667pt;}
.yc8{bottom:645.946667pt;}
.yf0{bottom:646.266667pt;}
.y77{bottom:653.306667pt;}
.ya3{bottom:662.586667pt;}
.yc7{bottom:662.906667pt;}
.y3c{bottom:663.546667pt;}
.y76{bottom:669.946667pt;}
.yc6{bottom:679.546667pt;}
.ya2{bottom:679.866667pt;}
.y3b{bottom:682.106667pt;}
.yc{bottom:682.426667pt;}
.y75{bottom:694.906667pt;}
.ya1{bottom:696.826667pt;}
.yb{bottom:699.386667pt;}
.y3a{bottom:700.346667pt;}
.yef{bottom:704.186667pt;}
.yc5{bottom:704.506667pt;}
.y74{bottom:712.186667pt;}
.ya0{bottom:713.146667pt;}
.ya{bottom:716.026667pt;}
.y39{bottom:718.906667pt;}
.yc4{bottom:721.466667pt;}
.y73{bottom:728.826667pt;}
.y9{bottom:729.786667pt;}
.y38{bottom:737.186667pt;}
.yc3{bottom:738.146667pt;}
.y9f{bottom:738.466667pt;}
.y72{bottom:753.826667pt;}
.yee{bottom:755.106667pt;}
.y37{bottom:755.746667pt;}
.y9e{bottom:762.786667pt;}
.yc2{bottom:763.106667pt;}
.y36{bottom:773.986667pt;}
.y71{bottom:778.146667pt;}
.yed{bottom:779.746667pt;}
.y9d{bottom:780.066667pt;}
.y35{bottom:792.546667pt;}
.y70{bottom:795.426667pt;}
.y9c{bottom:796.706667pt;}
.yec{bottom:797.026667pt;}
.y34{bottom:810.786667pt;}
.y6f{bottom:812.386667pt;}
.yeb{bottom:813.666667pt;}
.y9b{bottom:821.986667pt;}
.y6e{bottom:829.026667pt;}
.y33{bottom:829.346667pt;}
.yea{bottom:830.626667pt;}
.y9a{bottom:838.946667pt;}
.yc1{bottom:846.333333pt;}
.ye9{bottom:847.293333pt;}
.y32{bottom:847.613333pt;}
.y6d{bottom:853.693333pt;}
.y99{bottom:855.293333pt;}
.yc0{bottom:863.613333pt;}
.y31{bottom:866.173333pt;}
.y6c{bottom:870.973333pt;}
.ye8{bottom:872.573333pt;}
.ybf{bottom:880.253333pt;}
.y98{bottom:880.573333pt;}
.y30{bottom:884.413333pt;}
.y6b{bottom:887.613333pt;}
.ye7{bottom:897.213333pt;}
.y2f{bottom:902.973333pt;}
.y97{bottom:904.893333pt;}
.y6a{bottom:912.253333pt;}
.ye6{bottom:914.173333pt;}
.y2e{bottom:921.213333pt;}
.y96{bottom:922.173333pt;}
.y69{bottom:929.533333pt;}
.ye5{bottom:930.813333pt;}
.y8{bottom:939.133333pt;}
.y2d{bottom:939.773333pt;}
.y68{bottom:946.173333pt;}
.ye4{bottom:955.453333pt;}
.y95{bottom:955.773333pt;}
.y2c{bottom:958.053333pt;}
.y67{bottom:963.173333pt;}
.ye3{bottom:972.773333pt;}
.y2b{bottom:976.613333pt;}
.y94{bottom:980.453333pt;}
.ybe{bottom:980.773333pt;}
.y66{bottom:988.133333pt;}
.ye2{bottom:989.733333pt;}
.y2a{bottom:994.853333pt;}
.y4{bottom:996.133333pt;}
.y93{bottom:997.733333pt;}
.y29{bottom:1013.413333pt;}
.y65{bottom:1013.733333pt;}
.y92{bottom:1014.373333pt;}
.ye1{bottom:1014.693333pt;}
.y3{bottom:1032.293333pt;}
.y59{bottom:1039.333333pt;}
.y25{bottom:1041.893333pt;}
.y2{bottom:1047.333333pt;}
.y58{bottom:1061.093333pt;}
.y24{bottom:1062.693333pt;}
.y1{bottom:1063.013333pt;}
.h4{height:43.260000pt;}
.h3{height:47.380000pt;}
.h8{height:52.785000pt;}
.h2{height:56.070000pt;}
.h6{height:61.410000pt;}
.h7{height:66.750000pt;}
.h5{height:77.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:113.311988pt;}
.x11{left:160.706655pt;}
.x10{left:188.866655pt;}
.x3{left:192.066655pt;}
.x7{left:247.133322pt;}
.x4{left:264.093322pt;}
.x8{left:281.053322pt;}
.xd{left:334.853322pt;}
.x6{left:396.959988pt;}
.xb{left:423.199988pt;}
.x9{left:433.759988pt;}
.x5{left:485.306655pt;}
.xe{left:501.306655pt;}
.xc{left:551.586655pt;}
.xf{left:603.746655pt;}
.xa{left:621.986655pt;}
.x2{left:680.573322pt;}
}




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