
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_3e2e5b4479f557430b812d32.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752000;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_aef42b52ac854cdfc9c80277.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_70a8943d40f69ad67c66478d.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_7a9b848a4def379b13695684.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_940e501da8114180db6bfcab.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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:ffb;src:url('chunks/assets/font_536cf7a42e37f87f49c28d52.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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:ffc;src:url('chunks/assets/font_2944da63f4b55639f3a9e016.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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:ffd;src:url('chunks/assets/font_2de83cd75442279a427a5309.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-0.900000px;}
.ls12{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.690000px;}
.ls5{letter-spacing:-0.560400px;}
.ls7{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.271200px;}
.lsb{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.034560px;}
.ls2{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.149760px;}
.ls14{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.378600px;}
.ls9{letter-spacing:5.760000px;}
.ls17{letter-spacing:9.900000px;}
.lsa{letter-spacing:10.800000px;}
.ls15{letter-spacing:12.060000px;}
.lsf{letter-spacing:19.980000px;}
.ls10{letter-spacing:22.860000px;}
.lse{letter-spacing:33.660000px;}
.lsc{letter-spacing:45.900000px;}
.lsd{letter-spacing:56.100000px;}
.ls18{letter-spacing:80.261280px;}
.ls16{letter-spacing:122.021280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,51,0),0 0.015em rgb(255,51,0),0.015em 0 rgb(255,51,0),0 -0.015em  rgb(255,51,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,51,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.700000px;}
.ws1{word-spacing:-19.455360px;}
.ws8{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.950640px;}
.ws3{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.832000px;}
.ws7{word-spacing:0.000000px;}
._17{margin-left:-6.689520px;}
._16{margin-left:-5.609520px;}
._5{margin-left:-3.564960px;}
._4{margin-left:-2.527200px;}
._1{margin-left:-1.045440px;}
._0{width:1.436400px;}
._15{width:3.060960px;}
._1b{width:4.127760px;}
._1c{width:5.429760px;}
._10{width:6.562560px;}
._f{width:7.581600px;}
._2b{width:8.711280px;}
._11{width:10.277280px;}
._19{width:11.540880px;}
._1f{width:12.888720px;}
._20{width:13.934160px;}
._2{width:15.668640px;}
._3{width:16.900320px;}
._46{width:18.648960px;}
._14{width:19.964880px;}
._27{width:21.158640px;}
._b{width:22.487760px;}
._12{width:24.008400px;}
._23{width:25.693200px;}
._24{width:26.872560px;}
._c{width:28.136160px;}
._36{width:29.484000px;}
._e{width:30.507600px;}
._d{width:31.590000px;}
._25{width:33.009360px;}
._22{width:34.622640px;}
._42{width:35.717760px;}
._18{width:37.555920px;}
._1d{width:38.994480px;}
._2c{width:40.880160px;}
._4c{width:43.839360px;}
._21{width:45.102960px;}
._13{width:46.370880px;}
._a{width:47.794320px;}
._9{width:49.265280px;}
._1a{width:50.410080px;}
._6{width:52.734240px;}
._7{width:53.997840px;}
._1e{width:55.127520px;}
._28{width:56.323920px;}
._34{width:57.565440px;}
._47{width:58.581360px;}
._38{width:61.074000px;}
._8{width:63.298800px;}
._43{width:65.791440px;}
._41{width:68.402880px;}
._3e{width:70.003440px;}
._29{width:71.098560px;}
._2a{width:72.396720px;}
._39{width:77.585040px;}
._40{width:85.875120px;}
._35{width:88.957440px;}
._2e{width:94.566960px;}
._3b{width:98.545680px;}
._44{width:102.098880px;}
._48{width:118.862640px;}
._3a{width:128.634480px;}
._32{width:136.108800px;}
._37{width:143.158320px;}
._2d{width:145.756320px;}
._3f{width:147.167280px;}
._26{width:201.417840px;}
._31{width:202.710960px;}
._3d{width:243.790560px;}
._4b{width:275.415120px;}
._30{width:276.797520px;}
._3c{width:280.093680px;}
._33{width:290.915280px;}
._49{width:359.655120px;}
._2f{width:403.064640px;}
._45{width:421.031520px;}
._4a{width:425.193840px;}
.fc5{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc4{color:rgb(255,51,0);}
.fc3{color:rgb(51,102,153);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(204,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y44{bottom:8.100000px;}
.y57{bottom:8.280000px;}
.y7{bottom:10.440000px;}
.y49{bottom:21.960000px;}
.y45{bottom:22.140000px;}
.y6{bottom:31.140000px;}
.y4b{bottom:35.820000px;}
.y43{bottom:36.000000px;}
.y47{bottom:49.680000px;}
.y58{bottom:49.860000px;}
.y52{bottom:63.540000px;}
.y4e{bottom:63.570000px;}
.y4a{bottom:63.720000px;}
.y5b{bottom:63.765000px;}
.y48{bottom:77.580000px;}
.y3b{bottom:88.920000px;}
.y55{bottom:91.080000px;}
.y4c{bottom:91.440000px;}
.y5c{bottom:91.485000px;}
.y60{bottom:105.300000px;}
.y2b{bottom:116.100000px;}
.y3a{bottom:117.540000px;}
.y54{bottom:119.160000px;}
.y5f{bottom:133.020000px;}
.y73{bottom:143.100000px;}
.y2a{bottom:143.820000px;}
.y5e{bottom:147.060000px;}
.y39{bottom:148.500000px;}
.y38{bottom:155.370000px;}
.y37{bottom:169.230000px;}
.y3d{bottom:169.770000px;}
.y72{bottom:170.850000px;}
.y29{bottom:171.570000px;}
.y41{bottom:179.670000px;}
.y53{bottom:180.390000px;}
.y40{bottom:186.510000px;}
.y36{bottom:198.030000px;}
.y71{bottom:198.570000px;}
.y28{bottom:199.290000px;}
.y3f{bottom:200.910000px;}
.y70{bottom:226.470000px;}
.y27{bottom:227.190000px;}
.y35{bottom:228.990000px;}
.y34{bottom:235.830000px;}
.y33{bottom:249.690000px;}
.y6f{bottom:254.190000px;}
.y26{bottom:254.910000px;}
.y32{bottom:278.310000px;}
.y6e{bottom:281.910000px;}
.y25{bottom:282.630000px;}
.y31{bottom:309.450000px;}
.y6d{bottom:309.630000px;}
.y24{bottom:310.350000px;}
.y30{bottom:316.290000px;}
.y51{bottom:325.290000px;}
.y2f{bottom:330.690000px;}
.y6c{bottom:337.530000px;}
.y23{bottom:338.250000px;}
.y6b{bottom:365.250000px;}
.y22{bottom:365.970000px;}
.y6a{bottom:392.970000px;}
.y21{bottom:393.690000px;}
.y69{bottom:420.915000px;}
.y20{bottom:421.635000px;}
.y68{bottom:448.635000px;}
.y1f{bottom:449.355000px;}
.y67{bottom:476.355000px;}
.y1e{bottom:477.075000px;}
.y66{bottom:504.075000px;}
.y1d{bottom:504.795000px;}
.y50{bottom:504.975000px;}
.y4f{bottom:529.455000px;}
.y65{bottom:531.975000px;}
.y1c{bottom:532.695000px;}
.y64{bottom:559.695000px;}
.y1b{bottom:560.415000px;}
.y63{bottom:587.415000px;}
.y1a{bottom:588.135000px;}
.y4d{bottom:591.015000px;}
.y62{bottom:615.135000px;}
.y19{bottom:616.035000px;}
.y61{bottom:643.035000px;}
.y18{bottom:643.755000px;}
.y5d{bottom:667.545000px;}
.y17{bottom:671.505000px;}
.y46{bottom:680.325000px;}
.y16{bottom:699.225000px;}
.y15{bottom:727.125000px;}
.y14{bottom:754.845000px;}
.y13{bottom:782.565000px;}
.y42{bottom:797.325000px;}
.y12{bottom:810.285000px;}
.y2e{bottom:817.845000px;}
.y11{bottom:838.185000px;}
.y5a{bottom:840.165000px;}
.y10{bottom:865.905000px;}
.yf{bottom:893.625000px;}
.ye{bottom:921.570000px;}
.y2d{bottom:929.130000px;}
.yd{bottom:949.290000px;}
.y59{bottom:957.210000px;}
.yc{bottom:977.010000px;}
.yb{bottom:1004.730000px;}
.y2c{bottom:1012.290000px;}
.y56{bottom:1019.490000px;}
.ya{bottom:1032.630000px;}
.y3e{bottom:1040.190000px;}
.y9{bottom:1060.350000px;}
.y3c{bottom:1067.910000px;}
.y8{bottom:1088.070000px;}
.y5{bottom:1112.190000px;}
.y4{bottom:1131.990000px;}
.y3{bottom:1155.600000px;}
.y2{bottom:1179.900000px;}
.y1{bottom:1207.800000px;}
.hc{height:47.344922px;}
.h5{height:49.150080px;}
.h4{height:50.229844px;}
.ha{height:52.998047px;}
.h13{height:55.440000px;}
.h10{height:55.620000px;}
.h9{height:58.819922px;}
.he{height:59.439023px;}
.hb{height:65.884219px;}
.h3{height:67.169883px;}
.hd{height:70.664062px;}
.hf{height:72.562500px;}
.h2{height:76.355508px;}
.h7{height:82.635820px;}
.h8{height:82.676953px;}
.h12{height:83.196000px;}
.h15{height:83.340000px;}
.h6{height:84.898125px;}
.h18{height:86.585445px;}
.h11{height:111.060000px;}
.h16{height:111.096000px;}
.h14{height:138.780000px;}
.h17{height:166.680000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:85.140000px;}
.w8{width:127.980000px;}
.w6{width:159.510000px;}
.w5{width:198.030000px;}
.w7{width:262.290000px;}
.w9{width:277.815000px;}
.wa{width:302.970000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:1.080000px;}
.x6{left:42.479987px;}
.x5{left:84.995987px;}
.x20{left:88.416000px;}
.x1c{left:91.115987px;}
.x7{left:103.175987px;}
.x27{left:138.995987px;}
.x8{left:156.449987px;}
.x22{left:177.330000px;}
.x25{left:220.170000px;}
.x16{left:248.069973px;}
.x19{left:253.469973px;}
.x17{left:254.909987px;}
.x1a{left:260.309987px;}
.x14{left:262.109987px;}
.xa{left:273.134987px;}
.xe{left:275.834987px;}
.x12{left:279.074987px;}
.x1b{left:301.034987px;}
.xf{left:302.114987px;}
.xd{left:303.194987px;}
.xc{left:314.174987px;}
.xb{left:328.214987px;}
.x11{left:341.894987px;}
.x13{left:350.534987px;}
.x10{left:363.314987px;}
.x1f{left:369.434987px;}
.x23{left:379.155000px;}
.x15{left:408.494987px;}
.x18{left:415.514987px;}
.x9{left:446.504987px;}
.x2{left:490.784987px;}
.x26{left:501.765000px;}
.x1d{left:523.724973px;}
.x1e{left:530.564987px;}
.x24{left:542.445000px;}
.x1{left:557.204987px;}
.x3{left:641.669987px;}
.x4{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.800000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.613333pt;}
.ls5{letter-spacing:-0.498133pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.241067pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.030720pt;}
.ls2{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls14{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.336533pt;}
.ls9{letter-spacing:5.120000pt;}
.ls17{letter-spacing:8.800000pt;}
.lsa{letter-spacing:9.600000pt;}
.ls15{letter-spacing:10.720000pt;}
.lsf{letter-spacing:17.760000pt;}
.ls10{letter-spacing:20.320000pt;}
.lse{letter-spacing:29.920000pt;}
.lsc{letter-spacing:40.800000pt;}
.lsd{letter-spacing:49.866667pt;}
.ls18{letter-spacing:71.343360pt;}
.ls16{letter-spacing:108.463360pt;}
.ws9{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.400000pt;}
.ws1{word-spacing:-17.293653pt;}
.ws8{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.178347pt;}
.ws3{word-spacing:-13.248000pt;}
.ws2{word-spacing:-13.184000pt;}
.ws7{word-spacing:0.000000pt;}
._17{margin-left:-5.946240pt;}
._16{margin-left:-4.986240pt;}
._5{margin-left:-3.168853pt;}
._4{margin-left:-2.246400pt;}
._1{margin-left:-0.929280pt;}
._0{width:1.276800pt;}
._15{width:2.720853pt;}
._1b{width:3.669120pt;}
._1c{width:4.826453pt;}
._10{width:5.833387pt;}
._f{width:6.739200pt;}
._2b{width:7.743360pt;}
._11{width:9.135360pt;}
._19{width:10.258560pt;}
._1f{width:11.456640pt;}
._20{width:12.385920pt;}
._2{width:13.927680pt;}
._3{width:15.022507pt;}
._46{width:16.576853pt;}
._14{width:17.746560pt;}
._27{width:18.807680pt;}
._b{width:19.989120pt;}
._12{width:21.340800pt;}
._23{width:22.838400pt;}
._24{width:23.886720pt;}
._c{width:25.009920pt;}
._36{width:26.208000pt;}
._e{width:27.117867pt;}
._d{width:28.080000pt;}
._25{width:29.341653pt;}
._22{width:30.775680pt;}
._42{width:31.749120pt;}
._18{width:33.383040pt;}
._1d{width:34.661760pt;}
._2c{width:36.337920pt;}
._4c{width:38.968320pt;}
._21{width:40.091520pt;}
._13{width:41.218560pt;}
._a{width:42.483840pt;}
._9{width:43.791360pt;}
._1a{width:44.808960pt;}
._6{width:46.874880pt;}
._7{width:47.998080pt;}
._1e{width:49.002240pt;}
._28{width:50.065707pt;}
._34{width:51.169280pt;}
._47{width:52.072320pt;}
._38{width:54.288000pt;}
._8{width:56.265600pt;}
._43{width:58.481280pt;}
._41{width:60.802560pt;}
._3e{width:62.225280pt;}
._29{width:63.198720pt;}
._2a{width:64.352640pt;}
._39{width:68.964480pt;}
._40{width:76.333440pt;}
._35{width:79.073280pt;}
._2e{width:84.059520pt;}
._3b{width:87.596160pt;}
._44{width:90.754560pt;}
._48{width:105.655680pt;}
._3a{width:114.341760pt;}
._32{width:120.985600pt;}
._37{width:127.251840pt;}
._2d{width:129.561173pt;}
._3f{width:130.815360pt;}
._26{width:179.038080pt;}
._31{width:180.187520pt;}
._3d{width:216.702720pt;}
._4b{width:244.813440pt;}
._30{width:246.042240pt;}
._3c{width:248.972160pt;}
._33{width:258.591360pt;}
._49{width:319.693440pt;}
._2f{width:358.279680pt;}
._45{width:374.250240pt;}
._4a{width:377.950080pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:7.200000pt;}
.y57{bottom:7.360000pt;}
.y7{bottom:9.280000pt;}
.y49{bottom:19.520000pt;}
.y45{bottom:19.680000pt;}
.y6{bottom:27.680000pt;}
.y4b{bottom:31.840000pt;}
.y43{bottom:32.000000pt;}
.y47{bottom:44.160000pt;}
.y58{bottom:44.320000pt;}
.y52{bottom:56.480000pt;}
.y4e{bottom:56.506667pt;}
.y4a{bottom:56.640000pt;}
.y5b{bottom:56.680000pt;}
.y48{bottom:68.960000pt;}
.y3b{bottom:79.040000pt;}
.y55{bottom:80.960000pt;}
.y4c{bottom:81.280000pt;}
.y5c{bottom:81.320000pt;}
.y60{bottom:93.600000pt;}
.y2b{bottom:103.200000pt;}
.y3a{bottom:104.480000pt;}
.y54{bottom:105.920000pt;}
.y5f{bottom:118.240000pt;}
.y73{bottom:127.200000pt;}
.y2a{bottom:127.840000pt;}
.y5e{bottom:130.720000pt;}
.y39{bottom:132.000000pt;}
.y38{bottom:138.106667pt;}
.y37{bottom:150.426667pt;}
.y3d{bottom:150.906667pt;}
.y72{bottom:151.866667pt;}
.y29{bottom:152.506667pt;}
.y41{bottom:159.706667pt;}
.y53{bottom:160.346667pt;}
.y40{bottom:165.786667pt;}
.y36{bottom:176.026667pt;}
.y71{bottom:176.506667pt;}
.y28{bottom:177.146667pt;}
.y3f{bottom:178.586667pt;}
.y70{bottom:201.306667pt;}
.y27{bottom:201.946667pt;}
.y35{bottom:203.546667pt;}
.y34{bottom:209.626667pt;}
.y33{bottom:221.946667pt;}
.y6f{bottom:225.946667pt;}
.y26{bottom:226.586667pt;}
.y32{bottom:247.386667pt;}
.y6e{bottom:250.586667pt;}
.y25{bottom:251.226667pt;}
.y31{bottom:275.066667pt;}
.y6d{bottom:275.226667pt;}
.y24{bottom:275.866667pt;}
.y30{bottom:281.146667pt;}
.y51{bottom:289.146667pt;}
.y2f{bottom:293.946667pt;}
.y6c{bottom:300.026667pt;}
.y23{bottom:300.666667pt;}
.y6b{bottom:324.666667pt;}
.y22{bottom:325.306667pt;}
.y6a{bottom:349.306667pt;}
.y21{bottom:349.946667pt;}
.y69{bottom:374.146667pt;}
.y20{bottom:374.786667pt;}
.y68{bottom:398.786667pt;}
.y1f{bottom:399.426667pt;}
.y67{bottom:423.426667pt;}
.y1e{bottom:424.066667pt;}
.y66{bottom:448.066667pt;}
.y1d{bottom:448.706667pt;}
.y50{bottom:448.866667pt;}
.y4f{bottom:470.626667pt;}
.y65{bottom:472.866667pt;}
.y1c{bottom:473.506667pt;}
.y64{bottom:497.506667pt;}
.y1b{bottom:498.146667pt;}
.y63{bottom:522.146667pt;}
.y1a{bottom:522.786667pt;}
.y4d{bottom:525.346667pt;}
.y62{bottom:546.786667pt;}
.y19{bottom:547.586667pt;}
.y61{bottom:571.586667pt;}
.y18{bottom:572.226667pt;}
.y5d{bottom:593.373333pt;}
.y17{bottom:596.893333pt;}
.y46{bottom:604.733333pt;}
.y16{bottom:621.533333pt;}
.y15{bottom:646.333333pt;}
.y14{bottom:670.973333pt;}
.y13{bottom:695.613333pt;}
.y42{bottom:708.733333pt;}
.y12{bottom:720.253333pt;}
.y2e{bottom:726.973333pt;}
.y11{bottom:745.053333pt;}
.y5a{bottom:746.813333pt;}
.y10{bottom:769.693333pt;}
.yf{bottom:794.333333pt;}
.ye{bottom:819.173333pt;}
.y2d{bottom:825.893333pt;}
.yd{bottom:843.813333pt;}
.y59{bottom:850.853333pt;}
.yc{bottom:868.453333pt;}
.yb{bottom:893.093333pt;}
.y2c{bottom:899.813333pt;}
.y56{bottom:906.213333pt;}
.ya{bottom:917.893333pt;}
.y3e{bottom:924.613333pt;}
.y9{bottom:942.533333pt;}
.y3c{bottom:949.253333pt;}
.y8{bottom:967.173333pt;}
.y5{bottom:988.613333pt;}
.y4{bottom:1006.213333pt;}
.y3{bottom:1027.200000pt;}
.y2{bottom:1048.800000pt;}
.y1{bottom:1073.600000pt;}
.hc{height:42.084375pt;}
.h5{height:43.688960pt;}
.h4{height:44.648750pt;}
.ha{height:47.109375pt;}
.h13{height:49.280000pt;}
.h10{height:49.440000pt;}
.h9{height:52.284375pt;}
.he{height:52.834688pt;}
.hb{height:58.563750pt;}
.h3{height:59.706562pt;}
.hd{height:62.812500pt;}
.hf{height:64.500000pt;}
.h2{height:67.871563pt;}
.h7{height:73.454062pt;}
.h8{height:73.490625pt;}
.h12{height:73.952000pt;}
.h15{height:74.080000pt;}
.h6{height:75.465000pt;}
.h18{height:76.964840pt;}
.h11{height:98.720000pt;}
.h16{height:98.752000pt;}
.h14{height:123.360000pt;}
.h17{height:148.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:75.680000pt;}
.w8{width:113.760000pt;}
.w6{width:141.786667pt;}
.w5{width:176.026667pt;}
.w7{width:233.146667pt;}
.w9{width:246.946667pt;}
.wa{width:269.306667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:0.960000pt;}
.x6{left:37.759988pt;}
.x5{left:75.551988pt;}
.x20{left:78.592000pt;}
.x1c{left:80.991988pt;}
.x7{left:91.711988pt;}
.x27{left:123.551988pt;}
.x8{left:139.066655pt;}
.x22{left:157.626667pt;}
.x25{left:195.706667pt;}
.x16{left:220.506643pt;}
.x19{left:225.306643pt;}
.x17{left:226.586655pt;}
.x1a{left:231.386655pt;}
.x14{left:232.986655pt;}
.xa{left:242.786655pt;}
.xe{left:245.186655pt;}
.x12{left:248.066655pt;}
.x1b{left:267.586655pt;}
.xf{left:268.546655pt;}
.xd{left:269.506655pt;}
.xc{left:279.266655pt;}
.xb{left:291.746655pt;}
.x11{left:303.906655pt;}
.x13{left:311.586655pt;}
.x10{left:322.946655pt;}
.x1f{left:328.386655pt;}
.x23{left:337.026667pt;}
.x15{left:363.106655pt;}
.x18{left:369.346655pt;}
.x9{left:396.893322pt;}
.x2{left:436.253322pt;}
.x26{left:446.013333pt;}
.x1d{left:465.533310pt;}
.x1e{left:471.613322pt;}
.x24{left:482.173333pt;}
.x1{left:495.293322pt;}
.x3{left:570.373322pt;}
.x4{left:718.239988pt;}
}




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