
    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_5492b1d2c8af0dadda410cc3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_2bbb575a2d753cb72410fe59.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_393528faaab6f51be83188f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_cca6f43a26210a9f6e27508c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_f6b7a766f84a820399bfa3fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_fe37e28a608c92406d80eac5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_47d1084e26dc9b65c93bfebc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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;}
.m3{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,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);}
.m2{transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371625,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);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.760000px;}
.ls15{letter-spacing:-2.880000px;}
.ls22{letter-spacing:-2.466000px;}
.lsb{letter-spacing:-2.214000px;}
.ls1d{letter-spacing:-2.160000px;}
.lsa{letter-spacing:-1.854000px;}
.lsc{letter-spacing:-1.800000px;}
.ls21{letter-spacing:-1.746000px;}
.ls18{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-1.290000px;}
.ls1e{letter-spacing:-1.176000px;}
.ls1f{letter-spacing:-1.026000px;}
.ls20{letter-spacing:-0.870000px;}
.ls10{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.223800px;}
.ls1c{letter-spacing:-0.109200px;}
.ls8{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.034560px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.204600px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:3.600000px;}
.lse{letter-spacing:4.320000px;}
.ls1b{letter-spacing:6.480000px;}
.ls19{letter-spacing:10.080000px;}
.ls11{letter-spacing:11.520000px;}
.ls1a{letter-spacing:12.960000px;}
.ls14{letter-spacing:16.865280px;}
.ls13{letter-spacing:20.465280px;}
.ls3{letter-spacing:157.140000px;}
.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;}
}
.ws9{word-spacing:-16.712400px;}
.wsb{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.450800px;}
.wsc{word-spacing:-16.254600px;}
.wsa{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.690000px;}
.ws12{word-spacing:-15.534000px;}
.ws11{word-spacing:-15.384000px;}
.ws4{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.270000px;}
.wse{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.814000px;}
.ws0{word-spacing:-14.777400px;}
.ws10{word-spacing:-14.400000px;}
.ws15{word-spacing:-14.094000px;}
.ws7{word-spacing:-13.140000px;}
.ws6{word-spacing:-13.086000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws8{word-spacing:0.000000px;}
._12{margin-left:-10.005600px;}
._10{margin-left:-8.959920px;}
._21{margin-left:-7.756560px;}
._7{margin-left:-6.755160px;}
._1{margin-left:-5.016960px;}
._6{margin-left:-3.225360px;}
._0{margin-left:-1.259880px;}
._4{width:1.106160px;}
._5{width:2.477040px;}
._8{width:3.946440px;}
._b{width:5.043840px;}
._9{width:6.124800px;}
._11{width:7.407120px;}
._13{width:8.762040px;}
._1a{width:9.772920px;}
._e{width:11.018160px;}
._1c{width:12.412560px;}
._f{width:13.660080px;}
._19{width:15.100200px;}
._a{width:17.419440px;}
._1e{width:18.485640px;}
._1b{width:19.607040px;}
._20{width:20.933160px;}
._d{width:22.287600px;}
._c{width:24.159360px;}
._14{width:25.566000px;}
._1d{width:27.028560px;}
._15{width:28.087080px;}
._17{width:31.738680px;}
._1f{width:32.843040px;}
._16{width:42.741120px;}
._18{width:50.433960px;}
._22{width:114.065280px;}
._26{width:138.282240px;}
._25{width:140.028720px;}
._24{width:141.401280px;}
._3{width:164.460000px;}
._23{width:167.665800px;}
._2{width:1104.791400px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.840000px;}
.y4{bottom:55.440000px;}
.y6e{bottom:113.796000px;}
.y3e{bottom:118.476000px;}
.y6d{bottom:135.576000px;}
.yba{bottom:136.656000px;}
.y3d{bottom:140.436000px;}
.y6c{bottom:157.350000px;}
.yb9{bottom:158.430000px;}
.y3c{bottom:162.210000px;}
.y6b{bottom:179.130000px;}
.yb8{bottom:180.390000px;}
.y3b{bottom:183.990000px;}
.y6a{bottom:201.090000px;}
.yb7{bottom:202.170000px;}
.y3a{bottom:205.950000px;}
.y98{bottom:221.250000px;}
.y69{bottom:222.870000px;}
.yb6{bottom:223.950000px;}
.y39{bottom:229.170000px;}
.y97{bottom:243.030000px;}
.y68{bottom:244.650000px;}
.yb5{bottom:245.730000px;}
.y38{bottom:250.950000px;}
.y96{bottom:264.990000px;}
.y67{bottom:266.430000px;}
.yb4{bottom:267.510000px;}
.y37{bottom:268.950000px;}
.y36{bottom:282.810000px;}
.y95{bottom:286.770000px;}
.y66{bottom:288.210000px;}
.yb3{bottom:289.470000px;}
.y35{bottom:297.210000px;}
.y94{bottom:308.550000px;}
.y65{bottom:310.170000px;}
.yb2{bottom:311.250000px;}
.y34{bottom:314.490000px;}
.y93{bottom:330.330000px;}
.y33{bottom:331.770000px;}
.y64{bottom:331.950000px;}
.yb1{bottom:333.030000px;}
.y32{bottom:349.095000px;}
.y92{bottom:352.155000px;}
.y63{bottom:353.775000px;}
.yb0{bottom:354.855000px;}
.y31{bottom:366.375000px;}
.y91{bottom:374.115000px;}
.y86{bottom:375.195000px;}
.y62{bottom:375.555000px;}
.yaf{bottom:376.815000px;}
.y30{bottom:383.475000px;}
.y90{bottom:395.895000px;}
.y85{bottom:396.975000px;}
.y61{bottom:397.515000px;}
.yae{bottom:398.595000px;}
.y2f{bottom:400.755000px;}
.y8f{bottom:417.675000px;}
.y2e{bottom:418.035000px;}
.y84{bottom:418.755000px;}
.y60{bottom:419.295000px;}
.yad{bottom:420.375000px;}
.y2d{bottom:435.315000px;}
.y8e{bottom:439.455000px;}
.y83{bottom:440.715000px;}
.y5f{bottom:441.075000px;}
.yac{bottom:442.155000px;}
.y2c{bottom:452.595000px;}
.y8d{bottom:457.815000px;}
.y82{bottom:462.495000px;}
.y5e{bottom:462.855000px;}
.yab{bottom:463.935000px;}
.y2b{bottom:469.875000px;}
.y81{bottom:484.275000px;}
.y5d{bottom:484.635000px;}
.yaa{bottom:485.895000px;}
.y2a{bottom:486.975000px;}
.y29{bottom:504.255000px;}
.y80{bottom:506.055000px;}
.y5c{bottom:506.595000px;}
.ya9{bottom:507.675000px;}
.y28{bottom:521.535000px;}
.y7f{bottom:527.835000px;}
.y5b{bottom:528.375000px;}
.ya8{bottom:529.455000px;}
.y27{bottom:538.815000px;}
.y7e{bottom:549.795000px;}
.y5a{bottom:550.155000px;}
.ya7{bottom:551.235000px;}
.y26{bottom:556.095000px;}
.y7d{bottom:571.575000px;}
.y59{bottom:571.935000px;}
.ya6{bottom:573.195000px;}
.y25{bottom:573.375000px;}
.y24{bottom:590.475000px;}
.y7c{bottom:593.355000px;}
.y58{bottom:593.895000px;}
.ya5{bottom:594.975000px;}
.y23{bottom:607.785000px;}
.y7b{bottom:615.165000px;}
.y57{bottom:615.705000px;}
.ya4{bottom:616.785000px;}
.y22{bottom:625.065000px;}
.y7a{bottom:636.945000px;}
.y56{bottom:637.485000px;}
.ya3{bottom:638.565000px;}
.y21{bottom:642.345000px;}
.y79{bottom:658.905000px;}
.y55{bottom:659.265000px;}
.y20{bottom:659.625000px;}
.ya2{bottom:660.345000px;}
.y1f{bottom:676.725000px;}
.y78{bottom:680.685000px;}
.y54{bottom:681.045000px;}
.ya1{bottom:682.305000px;}
.y1e{bottom:694.005000px;}
.y77{bottom:702.465000px;}
.y53{bottom:703.005000px;}
.ya0{bottom:704.085000px;}
.y1d{bottom:711.285000px;}
.y76{bottom:724.245000px;}
.y52{bottom:724.785000px;}
.y9f{bottom:725.865000px;}
.y1c{bottom:728.565000px;}
.y1b{bottom:745.845000px;}
.y75{bottom:746.205000px;}
.y51{bottom:746.565000px;}
.y9e{bottom:747.645000px;}
.y8c{bottom:754.485000px;}
.y1a{bottom:763.125000px;}
.y74{bottom:767.985000px;}
.y50{bottom:768.345000px;}
.y9d{bottom:769.605000px;}
.y8b{bottom:776.265000px;}
.y19{bottom:780.225000px;}
.y73{bottom:789.765000px;}
.y4f{bottom:790.125000px;}
.y9c{bottom:791.385000px;}
.y18{bottom:797.505000px;}
.y8a{bottom:798.045000px;}
.y72{bottom:811.545000px;}
.y4e{bottom:812.085000px;}
.y9b{bottom:813.165000px;}
.y17{bottom:814.785000px;}
.y89{bottom:819.825000px;}
.y16{bottom:832.065000px;}
.y71{bottom:833.325000px;}
.y4d{bottom:833.865000px;}
.y9a{bottom:834.945000px;}
.y88{bottom:841.785000px;}
.y15{bottom:849.345000px;}
.y99{bottom:853.305000px;}
.y70{bottom:855.285000px;}
.y4c{bottom:855.645000px;}
.y87{bottom:859.965000px;}
.y14{bottom:866.625000px;}
.y6f{bottom:873.510000px;}
.y4b{bottom:877.470000px;}
.y13{bottom:883.770000px;}
.y4a{bottom:899.430000px;}
.y12{bottom:901.590000px;}
.y11{bottom:920.670000px;}
.y49{bottom:921.210000px;}
.y10{bottom:939.210000px;}
.y48{bottom:942.990000px;}
.yf{bottom:957.210000px;}
.y47{bottom:964.770000px;}
.ye{bottom:972.150000px;}
.y46{bottom:986.550000px;}
.yd{bottom:991.230000px;}
.y45{bottom:1008.510000px;}
.yc{bottom:1010.670000px;}
.y44{bottom:1030.290000px;}
.yb{bottom:1032.990000px;}
.y43{bottom:1052.070000px;}
.ya{bottom:1054.590000px;}
.y9{bottom:1071.870000px;}
.y42{bottom:1073.850000px;}
.y8{bottom:1089.150000px;}
.y41{bottom:1095.810000px;}
.y7{bottom:1106.430000px;}
.y40{bottom:1117.590000px;}
.y6{bottom:1123.530000px;}
.y3f{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1168.020000px;}
.y1{bottom:1183.680000px;}
.h2{height:26.100000px;}
.he{height:34.036523px;}
.ha{height:39.760312px;}
.h6{height:42.164648px;}
.h5{height:42.233555px;}
.hb{height:46.736719px;}
.hd{height:49.255313px;}
.h7{height:52.319180px;}
.h9{height:54.596250px;}
.h8{height:54.864844px;}
.h4{height:55.825312px;}
.h3{height:56.084062px;}
.hc{height:57.992344px;}
.hf{height:63.752344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:61.200000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x2{left:11.700000px;}
.x1{left:108.036000px;}
.x7{left:127.835987px;}
.x11{left:129.275987px;}
.x1f{left:150.509987px;}
.x5{left:154.289987px;}
.x1c{left:156.809987px;}
.xe{left:161.129987px;}
.x3{left:169.230000px;}
.x1d{left:172.829987px;}
.xb{left:216.929987px;}
.x13{left:245.189987px;}
.x6{left:302.654987px;}
.x10{left:314.354987px;}
.xc{left:334.334987px;}
.x8{left:351.794987px;}
.xa{left:355.214987px;}
.xd{left:420.734987px;}
.x9{left:446.474987px;}
.x15{left:592.304987px;}
.x16{left:609.224987px;}
.x17{left:644.864987px;}
.x18{left:661.829987px;}
.x1e{left:669.389987px;}
.x14{left:712.409987px;}
.xf{left:719.969987px;}
.x12{left:721.409987px;}
.x19{left:727.169987px;}
.x1a{left:743.909987px;}
.x1b{left:785.129987px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.120000pt;}
.ls15{letter-spacing:-2.560000pt;}
.ls22{letter-spacing:-2.192000pt;}
.lsb{letter-spacing:-1.968000pt;}
.ls1d{letter-spacing:-1.920000pt;}
.lsa{letter-spacing:-1.648000pt;}
.lsc{letter-spacing:-1.600000pt;}
.ls21{letter-spacing:-1.552000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-1.146667pt;}
.ls1e{letter-spacing:-1.045333pt;}
.ls1f{letter-spacing:-0.912000pt;}
.ls20{letter-spacing:-0.773333pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.198933pt;}
.ls1c{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.181867pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:3.200000pt;}
.lse{letter-spacing:3.840000pt;}
.ls1b{letter-spacing:5.760000pt;}
.ls19{letter-spacing:8.960000pt;}
.ls11{letter-spacing:10.240000pt;}
.ls1a{letter-spacing:11.520000pt;}
.ls14{letter-spacing:14.991360pt;}
.ls13{letter-spacing:18.191360pt;}
.ls3{letter-spacing:139.680000pt;}
.ws9{word-spacing:-14.855467pt;}
.wsb{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.622933pt;}
.wsc{word-spacing:-14.448533pt;}
.wsa{word-spacing:-14.080000pt;}
.ws13{word-spacing:-13.946667pt;}
.ws12{word-spacing:-13.808000pt;}
.ws11{word-spacing:-13.674667pt;}
.ws4{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.573333pt;}
.wse{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.168000pt;}
.ws0{word-spacing:-13.135467pt;}
.ws10{word-spacing:-12.800000pt;}
.ws15{word-spacing:-12.528000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws6{word-spacing:-11.632000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws8{word-spacing:0.000000pt;}
._12{margin-left:-8.893867pt;}
._10{margin-left:-7.964373pt;}
._21{margin-left:-6.894720pt;}
._7{margin-left:-6.004587pt;}
._1{margin-left:-4.459520pt;}
._6{margin-left:-2.866987pt;}
._0{margin-left:-1.119893pt;}
._4{width:0.983253pt;}
._5{width:2.201813pt;}
._8{width:3.507947pt;}
._b{width:4.483413pt;}
._9{width:5.444267pt;}
._11{width:6.584107pt;}
._13{width:7.788480pt;}
._1a{width:8.687040pt;}
._e{width:9.793920pt;}
._1c{width:11.033387pt;}
._f{width:12.142293pt;}
._19{width:13.422400pt;}
._a{width:15.483947pt;}
._1e{width:16.431680pt;}
._1b{width:17.428480pt;}
._20{width:18.607253pt;}
._d{width:19.811200pt;}
._c{width:21.474987pt;}
._14{width:22.725333pt;}
._1d{width:24.025387pt;}
._15{width:24.966293pt;}
._17{width:28.212160pt;}
._1f{width:29.193813pt;}
._16{width:37.992107pt;}
._18{width:44.830187pt;}
._22{width:101.391360pt;}
._26{width:122.917547pt;}
._25{width:124.469973pt;}
._24{width:125.690027pt;}
._3{width:146.186667pt;}
._23{width:149.036267pt;}
._2{width:982.036800pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:6.080000pt;}
.y4{bottom:49.280000pt;}
.y6e{bottom:101.152000pt;}
.y3e{bottom:105.312000pt;}
.y6d{bottom:120.512000pt;}
.yba{bottom:121.472000pt;}
.y3d{bottom:124.832000pt;}
.y6c{bottom:139.866667pt;}
.yb9{bottom:140.826667pt;}
.y3c{bottom:144.186667pt;}
.y6b{bottom:159.226667pt;}
.yb8{bottom:160.346667pt;}
.y3b{bottom:163.546667pt;}
.y6a{bottom:178.746667pt;}
.yb7{bottom:179.706667pt;}
.y3a{bottom:183.066667pt;}
.y98{bottom:196.666667pt;}
.y69{bottom:198.106667pt;}
.yb6{bottom:199.066667pt;}
.y39{bottom:203.706667pt;}
.y97{bottom:216.026667pt;}
.y68{bottom:217.466667pt;}
.yb5{bottom:218.426667pt;}
.y38{bottom:223.066667pt;}
.y96{bottom:235.546667pt;}
.y67{bottom:236.826667pt;}
.yb4{bottom:237.786667pt;}
.y37{bottom:239.066667pt;}
.y36{bottom:251.386667pt;}
.y95{bottom:254.906667pt;}
.y66{bottom:256.186667pt;}
.yb3{bottom:257.306667pt;}
.y35{bottom:264.186667pt;}
.y94{bottom:274.266667pt;}
.y65{bottom:275.706667pt;}
.yb2{bottom:276.666667pt;}
.y34{bottom:279.546667pt;}
.y93{bottom:293.626667pt;}
.y33{bottom:294.906667pt;}
.y64{bottom:295.066667pt;}
.yb1{bottom:296.026667pt;}
.y32{bottom:310.306667pt;}
.y92{bottom:313.026667pt;}
.y63{bottom:314.466667pt;}
.yb0{bottom:315.426667pt;}
.y31{bottom:325.666667pt;}
.y91{bottom:332.546667pt;}
.y86{bottom:333.506667pt;}
.y62{bottom:333.826667pt;}
.yaf{bottom:334.946667pt;}
.y30{bottom:340.866667pt;}
.y90{bottom:351.906667pt;}
.y85{bottom:352.866667pt;}
.y61{bottom:353.346667pt;}
.yae{bottom:354.306667pt;}
.y2f{bottom:356.226667pt;}
.y8f{bottom:371.266667pt;}
.y2e{bottom:371.586667pt;}
.y84{bottom:372.226667pt;}
.y60{bottom:372.706667pt;}
.yad{bottom:373.666667pt;}
.y2d{bottom:386.946667pt;}
.y8e{bottom:390.626667pt;}
.y83{bottom:391.746667pt;}
.y5f{bottom:392.066667pt;}
.yac{bottom:393.026667pt;}
.y2c{bottom:402.306667pt;}
.y8d{bottom:406.946667pt;}
.y82{bottom:411.106667pt;}
.y5e{bottom:411.426667pt;}
.yab{bottom:412.386667pt;}
.y2b{bottom:417.666667pt;}
.y81{bottom:430.466667pt;}
.y5d{bottom:430.786667pt;}
.yaa{bottom:431.906667pt;}
.y2a{bottom:432.866667pt;}
.y29{bottom:448.226667pt;}
.y80{bottom:449.826667pt;}
.y5c{bottom:450.306667pt;}
.ya9{bottom:451.266667pt;}
.y28{bottom:463.586667pt;}
.y7f{bottom:469.186667pt;}
.y5b{bottom:469.666667pt;}
.ya8{bottom:470.626667pt;}
.y27{bottom:478.946667pt;}
.y7e{bottom:488.706667pt;}
.y5a{bottom:489.026667pt;}
.ya7{bottom:489.986667pt;}
.y26{bottom:494.306667pt;}
.y7d{bottom:508.066667pt;}
.y59{bottom:508.386667pt;}
.ya6{bottom:509.506667pt;}
.y25{bottom:509.666667pt;}
.y24{bottom:524.866667pt;}
.y7c{bottom:527.426667pt;}
.y58{bottom:527.906667pt;}
.ya5{bottom:528.866667pt;}
.y23{bottom:540.253333pt;}
.y7b{bottom:546.813333pt;}
.y57{bottom:547.293333pt;}
.ya4{bottom:548.253333pt;}
.y22{bottom:555.613333pt;}
.y7a{bottom:566.173333pt;}
.y56{bottom:566.653333pt;}
.ya3{bottom:567.613333pt;}
.y21{bottom:570.973333pt;}
.y79{bottom:585.693333pt;}
.y55{bottom:586.013333pt;}
.y20{bottom:586.333333pt;}
.ya2{bottom:586.973333pt;}
.y1f{bottom:601.533333pt;}
.y78{bottom:605.053333pt;}
.y54{bottom:605.373333pt;}
.ya1{bottom:606.493333pt;}
.y1e{bottom:616.893333pt;}
.y77{bottom:624.413333pt;}
.y53{bottom:624.893333pt;}
.ya0{bottom:625.853333pt;}
.y1d{bottom:632.253333pt;}
.y76{bottom:643.773333pt;}
.y52{bottom:644.253333pt;}
.y9f{bottom:645.213333pt;}
.y1c{bottom:647.613333pt;}
.y1b{bottom:662.973333pt;}
.y75{bottom:663.293333pt;}
.y51{bottom:663.613333pt;}
.y9e{bottom:664.573333pt;}
.y8c{bottom:670.653333pt;}
.y1a{bottom:678.333333pt;}
.y74{bottom:682.653333pt;}
.y50{bottom:682.973333pt;}
.y9d{bottom:684.093333pt;}
.y8b{bottom:690.013333pt;}
.y19{bottom:693.533333pt;}
.y73{bottom:702.013333pt;}
.y4f{bottom:702.333333pt;}
.y9c{bottom:703.453333pt;}
.y18{bottom:708.893333pt;}
.y8a{bottom:709.373333pt;}
.y72{bottom:721.373333pt;}
.y4e{bottom:721.853333pt;}
.y9b{bottom:722.813333pt;}
.y17{bottom:724.253333pt;}
.y89{bottom:728.733333pt;}
.y16{bottom:739.613333pt;}
.y71{bottom:740.733333pt;}
.y4d{bottom:741.213333pt;}
.y9a{bottom:742.173333pt;}
.y88{bottom:748.253333pt;}
.y15{bottom:754.973333pt;}
.y99{bottom:758.493333pt;}
.y70{bottom:760.253333pt;}
.y4c{bottom:760.573333pt;}
.y87{bottom:764.413333pt;}
.y14{bottom:770.333333pt;}
.y6f{bottom:776.453333pt;}
.y4b{bottom:779.973333pt;}
.y13{bottom:785.573333pt;}
.y4a{bottom:799.493333pt;}
.y12{bottom:801.413333pt;}
.y11{bottom:818.373333pt;}
.y49{bottom:818.853333pt;}
.y10{bottom:834.853333pt;}
.y48{bottom:838.213333pt;}
.yf{bottom:850.853333pt;}
.y47{bottom:857.573333pt;}
.ye{bottom:864.133333pt;}
.y46{bottom:876.933333pt;}
.yd{bottom:881.093333pt;}
.y45{bottom:896.453333pt;}
.yc{bottom:898.373333pt;}
.y44{bottom:915.813333pt;}
.yb{bottom:918.213333pt;}
.y43{bottom:935.173333pt;}
.ya{bottom:937.413333pt;}
.y9{bottom:952.773333pt;}
.y42{bottom:954.533333pt;}
.y8{bottom:968.133333pt;}
.y41{bottom:974.053333pt;}
.y7{bottom:983.493333pt;}
.y40{bottom:993.413333pt;}
.y6{bottom:998.693333pt;}
.y3f{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1038.240000pt;}
.y1{bottom:1052.160000pt;}
.h2{height:23.200000pt;}
.he{height:30.254687pt;}
.ha{height:35.342500pt;}
.h6{height:37.479688pt;}
.h5{height:37.540937pt;}
.hb{height:41.543750pt;}
.hd{height:43.782500pt;}
.h7{height:46.505938pt;}
.h9{height:48.530000pt;}
.h8{height:48.768750pt;}
.h4{height:49.622500pt;}
.h3{height:49.852500pt;}
.hc{height:51.548750pt;}
.hf{height:56.668750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:54.400000pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x2{left:10.400000pt;}
.x1{left:96.032000pt;}
.x7{left:113.631988pt;}
.x11{left:114.911988pt;}
.x1f{left:133.786655pt;}
.x5{left:137.146655pt;}
.x1c{left:139.386655pt;}
.xe{left:143.226655pt;}
.x3{left:150.426667pt;}
.x1d{left:153.626655pt;}
.xb{left:192.826655pt;}
.x13{left:217.946655pt;}
.x6{left:269.026655pt;}
.x10{left:279.426655pt;}
.xc{left:297.186655pt;}
.x8{left:312.706655pt;}
.xa{left:315.746655pt;}
.xd{left:373.986655pt;}
.x9{left:396.866655pt;}
.x15{left:526.493322pt;}
.x16{left:541.533322pt;}
.x17{left:573.213322pt;}
.x18{left:588.293322pt;}
.x1e{left:595.013322pt;}
.x14{left:633.253322pt;}
.xf{left:639.973322pt;}
.x12{left:641.253322pt;}
.x19{left:646.373322pt;}
.x1a{left:661.253322pt;}
.x1b{left:697.893322pt;}
}




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