
    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_0599ced52a4ef31bfa78b264.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977539;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_d43948c44943d5fa642180fb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5958b64e88dbe88a6b6df36e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b05d5f497862cbb8a151d666.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_7fbbd7fc69e4e9de71f15e1c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4b0de9cfadb772e5545824d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939941;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_b269bbd3e5ee8182638878af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_338ee016fdc18977ae31499d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d76065fd2f5f81457566b8c5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d5ccd3b35adcec1392d9c7f0.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls11{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.350400px;}
.ls1a{letter-spacing:-0.341400px;}
.ls4{letter-spacing:-0.274800px;}
.ls1e{letter-spacing:-0.232800px;}
.ls9{letter-spacing:-0.225600px;}
.lsc{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.073200px;}
.ls10{letter-spacing:-0.037440px;}
.ls14{letter-spacing:-0.018720px;}
.ls1d{letter-spacing:-0.009360px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.172080px;}
.ls7{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.223200px;}
.ls16{letter-spacing:0.252720px;}
.ls0{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.341400px;}
.ls18{letter-spacing:0.350640px;}
.ls2{letter-spacing:0.360000px;}
.lse{letter-spacing:0.378600px;}
.lsb{letter-spacing:1.260000px;}
.ls15{letter-spacing:4.860000px;}
.ls17{letter-spacing:17.100000px;}
.ls19{letter-spacing:21.420000px;}
.lsa{letter-spacing:27.900000px;}
.ls1f{letter-spacing:87.461280px;}
.ls1c{letter-spacing:129.221280px;}
.ls13{letter-spacing:160.901280px;}
.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;}
}
.ws5{word-spacing:-21.438600px;}
.wsa{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.401400px;}
.wsc{word-spacing:-21.312720px;}
.ws9{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.wsf{word-spacing:-21.050640px;}
.ws8{word-spacing:-21.041280px;}
.ws7{word-spacing:-21.022560px;}
.wsb{word-spacing:-20.880000px;}
.wsd{word-spacing:-20.718600px;}
.ws6{word-spacing:-20.709600px;}
.wse{word-spacing:-20.700000px;}
.ws4{word-spacing:-19.500960px;}
.ws10{word-spacing:-19.493760px;}
.ws0{word-spacing:-19.451760px;}
.ws3{word-spacing:0.000000px;}
._39{margin-left:-5.981040px;}
._1d{margin-left:-4.633200px;}
._19{margin-left:-3.369600px;}
._1a{margin-left:-2.274480px;}
._2{margin-left:-1.095120px;}
._3{width:1.924320px;}
._18{width:3.169680px;}
._c{width:4.212000px;}
._d{width:6.025440px;}
._12{width:7.365360px;}
._13{width:8.688000px;}
._1e{width:9.954240px;}
._1f{width:11.288160px;}
._20{width:12.720240px;}
._7{width:13.908000px;}
._8{width:15.239040px;}
._1c{width:16.266720px;}
._f{width:17.361840px;}
._10{width:18.869760px;}
._11{width:19.880640px;}
._9{width:22.913280px;}
._a{width:24.092640px;}
._6{width:25.608960px;}
._2a{width:26.852880px;}
._29{width:28.590240px;}
._30{width:30.494880px;}
._31{width:31.784880px;}
._15{width:32.937840px;}
._14{width:34.201440px;}
._1b{width:35.268240px;}
._37{width:36.307440px;}
._33{width:37.823760px;}
._34{width:38.918880px;}
._4{width:40.293840px;}
._5{width:41.398080px;}
._2f{width:42.819120px;}
._17{width:44.310240px;}
._16{width:47.427120px;}
._2c{width:48.943440px;}
._28{width:50.291280px;}
._b{width:52.228800px;}
._2d{width:55.092960px;}
._2e{width:56.188080px;}
._25{width:57.451680px;}
._23{width:60.231600px;}
._24{width:61.424160px;}
._32{width:66.128400px;}
._38{width:69.245280px;}
._35{width:71.688240px;}
._3d{width:87.609600px;}
._41{width:89.045760px;}
._40{width:94.113840px;}
._2b{width:95.736720px;}
._3c{width:103.278240px;}
._e{width:104.963040px;}
._26{width:120.715920px;}
._27{width:121.753200px;}
._3b{width:124.085520px;}
._36{width:146.156400px;}
._3e{width:174.629520px;}
._3f{width:175.858320px;}
._22{width:192.488400px;}
._21{width:194.186400px;}
._3a{width:235.282320px;}
._0{width:292.222560px;}
._1{width:1555.426560px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,102,153);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,153,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y32{bottom:8.100000px;}
.y34{bottom:8.280000px;}
.y74{bottom:8.325000px;}
.y8{bottom:10.835850px;}
.y7{bottom:32.616000px;}
.y3a{bottom:35.820000px;}
.y36{bottom:35.865000px;}
.y31{bottom:36.000000px;}
.y6{bottom:54.936000px;}
.y3c{bottom:63.540000px;}
.y30{bottom:63.720000px;}
.y71{bottom:90.216000px;}
.y2f{bottom:91.440000px;}
.y9e{bottom:93.276000px;}
.y2d{bottom:94.716000px;}
.y7a{bottom:108.396000px;}
.y4f{bottom:112.896000px;}
.y4d{bottom:116.496000px;}
.y70{bottom:117.936000px;}
.y9d{bottom:120.996000px;}
.y2c{bottom:122.436000px;}
.y79{bottom:136.836000px;}
.y4c{bottom:144.216000px;}
.y6f{bottom:145.836000px;}
.y9c{bottom:148.716000px;}
.y2b{bottom:150.330000px;}
.y78{bottom:165.450000px;}
.y4e{bottom:169.050000px;}
.y4b{bottom:172.110000px;}
.y6e{bottom:173.550000px;}
.y9b{bottom:176.610000px;}
.y2a{bottom:178.050000px;}
.y77{bottom:193.890000px;}
.y4a{bottom:199.830000px;}
.y6d{bottom:201.270000px;}
.y9a{bottom:204.330000px;}
.y29{bottom:205.770000px;}
.y76{bottom:222.330000px;}
.y49{bottom:227.550000px;}
.y6c{bottom:228.990000px;}
.y99{bottom:232.050000px;}
.y28{bottom:233.490000px;}
.y75{bottom:250.950000px;}
.y48{bottom:255.270000px;}
.y6b{bottom:256.890000px;}
.y98{bottom:259.770000px;}
.y27{bottom:261.390000px;}
.y73{bottom:279.390000px;}
.y47{bottom:283.215000px;}
.y6a{bottom:284.655000px;}
.y97{bottom:287.715000px;}
.y26{bottom:289.155000px;}
.y72{bottom:308.055000px;}
.y46{bottom:310.935000px;}
.y69{bottom:312.375000px;}
.y96{bottom:315.435000px;}
.y25{bottom:316.875000px;}
.y45{bottom:338.655000px;}
.y68{bottom:340.275000px;}
.y95{bottom:343.155000px;}
.y24{bottom:344.775000px;}
.y44{bottom:366.375000px;}
.y67{bottom:367.995000px;}
.y94{bottom:370.875000px;}
.y23{bottom:372.495000px;}
.y43{bottom:394.275000px;}
.y66{bottom:395.715000px;}
.y93{bottom:398.775000px;}
.y22{bottom:400.215000px;}
.y42{bottom:421.995000px;}
.y65{bottom:423.435000px;}
.y92{bottom:426.495000px;}
.y21{bottom:427.935000px;}
.y41{bottom:449.715000px;}
.y64{bottom:451.335000px;}
.y91{bottom:454.215000px;}
.y20{bottom:455.835000px;}
.y40{bottom:477.615000px;}
.y63{bottom:479.055000px;}
.y90{bottom:482.115000px;}
.y1f{bottom:483.555000px;}
.y3f{bottom:505.335000px;}
.y62{bottom:506.775000px;}
.y8f{bottom:509.835000px;}
.y1e{bottom:511.275000px;}
.y3e{bottom:533.055000px;}
.y61{bottom:534.495000px;}
.y8e{bottom:537.555000px;}
.y1d{bottom:538.995000px;}
.y3d{bottom:560.775000px;}
.y60{bottom:562.395000px;}
.y8d{bottom:565.305000px;}
.y1c{bottom:566.925000px;}
.y3b{bottom:581.325000px;}
.y5f{bottom:590.145000px;}
.y8c{bottom:593.205000px;}
.y1b{bottom:594.645000px;}
.y5e{bottom:617.865000px;}
.y8b{bottom:620.925000px;}
.y1a{bottom:622.365000px;}
.y5d{bottom:645.765000px;}
.y8a{bottom:648.645000px;}
.y19{bottom:650.265000px;}
.y39{bottom:665.385000px;}
.y5c{bottom:673.485000px;}
.y89{bottom:676.545000px;}
.y18{bottom:677.985000px;}
.y5b{bottom:701.205000px;}
.y88{bottom:704.265000px;}
.y17{bottom:705.705000px;}
.y38{bottom:721.545000px;}
.y5a{bottom:728.925000px;}
.y87{bottom:731.985000px;}
.y16{bottom:733.425000px;}
.y59{bottom:756.825000px;}
.y86{bottom:759.705000px;}
.y15{bottom:761.325000px;}
.y37{bottom:777.885000px;}
.y58{bottom:784.545000px;}
.y85{bottom:787.605000px;}
.y14{bottom:789.045000px;}
.y57{bottom:812.265000px;}
.y84{bottom:815.325000px;}
.y13{bottom:816.765000px;}
.y35{bottom:834.225000px;}
.y56{bottom:840.165000px;}
.y83{bottom:843.045000px;}
.y12{bottom:844.665000px;}
.y55{bottom:867.930000px;}
.y82{bottom:870.810000px;}
.y11{bottom:872.430000px;}
.y54{bottom:888.270000px;}
.y33{bottom:890.430000px;}
.y81{bottom:898.710000px;}
.y10{bottom:900.150000px;}
.y80{bottom:926.430000px;}
.yf{bottom:927.870000px;}
.y53{bottom:944.610000px;}
.y2e{bottom:946.770000px;}
.y7f{bottom:954.150000px;}
.ye{bottom:955.770000px;}
.y7e{bottom:982.050000px;}
.yd{bottom:983.490000px;}
.y52{bottom:1000.770000px;}
.y7d{bottom:1009.770000px;}
.yc{bottom:1011.210000px;}
.y7c{bottom:1037.490000px;}
.yb{bottom:1038.930000px;}
.y51{bottom:1057.110000px;}
.y7b{bottom:1057.830000px;}
.ya{bottom:1066.830000px;}
.y50{bottom:1085.730000px;}
.y9{bottom:1094.550000px;}
.y5{bottom:1118.130000px;}
.y4{bottom:1139.040000px;}
.y3{bottom:1162.620000px;}
.y2{bottom:1186.200000px;}
.y1{bottom:1210.680000px;}
.h11{height:27.720000px;}
.h13{height:27.900000px;}
.h12{height:27.936000px;}
.h5{height:53.424000px;}
.hd{height:55.440000px;}
.hc{height:55.476000px;}
.hb{height:55.620000px;}
.h8{height:59.066719px;}
.h9{height:60.999961px;}
.h2{height:67.169883px;}
.h4{height:70.628906px;}
.h3{height:76.355508px;}
.h7{height:82.676953px;}
.he{height:83.160000px;}
.h10{height:83.340000px;}
.h6{height:84.898125px;}
.hf{height:86.585445px;}
.ha{height:111.060000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:68.760000px;}
.w6{width:76.500000px;}
.w13{width:79.920000px;}
.wa{width:100.116000px;}
.w4{width:106.776000px;}
.w8{width:114.660000px;}
.w5{width:125.136000px;}
.wb{width:125.280000px;}
.w11{width:129.996000px;}
.w10{width:131.940000px;}
.w9{width:135.576000px;}
.w7{width:137.196000px;}
.w12{width:137.916000px;}
.wc{width:142.776000px;}
.wd{width:145.116000px;}
.w3{width:157.530000px;}
.wf{width:238.755000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.776000px;}
.x6{left:42.479987px;}
.x5{left:84.959987px;}
.x17{left:87.119987px;}
.x14{left:91.475987px;}
.xa{left:95.075987px;}
.x25{left:97.415987px;}
.x10{left:104.795987px;}
.x1{left:106.415987px;}
.x16{left:112.355987px;}
.x18{left:113.615987px;}
.x13{left:124.055987px;}
.x7{left:130.715987px;}
.x1b{left:133.775987px;}
.xd{left:138.455987px;}
.x15{left:141.155987px;}
.xe{left:146.735987px;}
.x12{left:161.129987px;}
.x1a{left:164.549987px;}
.xb{left:204.869987px;}
.x26{left:222.330000px;}
.x8{left:228.269987px;}
.x11{left:242.669987px;}
.x20{left:244.110000px;}
.x1c{left:270.029987px;}
.xf{left:287.714987px;}
.x27{left:323.175000px;}
.x2b{left:325.335000px;}
.xc{left:328.574987px;}
.x21{left:351.615000px;}
.x1d{left:362.414987px;}
.x2f{left:372.314987px;}
.x19{left:380.414987px;}
.x1e{left:393.914987px;}
.x9{left:446.474987px;}
.x28{left:449.175000px;}
.x2c{left:457.995000px;}
.x22{left:477.465000px;}
.x2{left:550.544987px;}
.x23{left:554.685000px;}
.x2d{left:588.705000px;}
.x29{left:592.665000px;}
.x3{left:632.084987px;}
.x24{left:692.610000px;}
.x2e{left:727.350000px;}
.x2a{left:738.510000px;}
.x4{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.311467pt;}
.ls1a{letter-spacing:-0.303467pt;}
.ls4{letter-spacing:-0.244267pt;}
.ls1e{letter-spacing:-0.206933pt;}
.ls9{letter-spacing:-0.200533pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.065067pt;}
.ls10{letter-spacing:-0.033280pt;}
.ls14{letter-spacing:-0.016640pt;}
.ls1d{letter-spacing:-0.008320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.152960pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.198400pt;}
.ls16{letter-spacing:0.224640pt;}
.ls0{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.303467pt;}
.ls18{letter-spacing:0.311680pt;}
.ls2{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.336533pt;}
.lsb{letter-spacing:1.120000pt;}
.ls15{letter-spacing:4.320000pt;}
.ls17{letter-spacing:15.200000pt;}
.ls19{letter-spacing:19.040000pt;}
.lsa{letter-spacing:24.800000pt;}
.ls1f{letter-spacing:77.743360pt;}
.ls1c{letter-spacing:114.863360pt;}
.ls13{letter-spacing:143.023360pt;}
.ws5{word-spacing:-19.056533pt;}
.wsa{word-spacing:-19.040000pt;}
.ws2{word-spacing:-19.023467pt;}
.wsc{word-spacing:-18.944640pt;}
.ws9{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.wsf{word-spacing:-18.711680pt;}
.ws8{word-spacing:-18.703360pt;}
.ws7{word-spacing:-18.686720pt;}
.wsb{word-spacing:-18.560000pt;}
.wsd{word-spacing:-18.416533pt;}
.ws6{word-spacing:-18.408533pt;}
.wse{word-spacing:-18.400000pt;}
.ws4{word-spacing:-17.334187pt;}
.ws10{word-spacing:-17.327787pt;}
.ws0{word-spacing:-17.290453pt;}
.ws3{word-spacing:0.000000pt;}
._39{margin-left:-5.316480pt;}
._1d{margin-left:-4.118400pt;}
._19{margin-left:-2.995200pt;}
._1a{margin-left:-2.021760pt;}
._2{margin-left:-0.973440pt;}
._3{width:1.710507pt;}
._18{width:2.817493pt;}
._c{width:3.744000pt;}
._d{width:5.355947pt;}
._12{width:6.546987pt;}
._13{width:7.722667pt;}
._1e{width:8.848213pt;}
._1f{width:10.033920pt;}
._20{width:11.306880pt;}
._7{width:12.362667pt;}
._8{width:13.545813pt;}
._1c{width:14.459307pt;}
._f{width:15.432747pt;}
._10{width:16.773120pt;}
._11{width:17.671680pt;}
._9{width:20.367360pt;}
._a{width:21.415680pt;}
._6{width:22.763520pt;}
._2a{width:23.869227pt;}
._29{width:25.413547pt;}
._30{width:27.106560pt;}
._31{width:28.253227pt;}
._15{width:29.278080pt;}
._14{width:30.401280pt;}
._1b{width:31.349547pt;}
._37{width:32.273280pt;}
._33{width:33.621120pt;}
._34{width:34.594560pt;}
._4{width:35.816747pt;}
._5{width:36.798293pt;}
._2f{width:38.061440pt;}
._17{width:39.386880pt;}
._16{width:42.157440pt;}
._2c{width:43.505280pt;}
._28{width:44.703360pt;}
._b{width:46.425600pt;}
._2d{width:48.971520pt;}
._2e{width:49.944960pt;}
._25{width:51.068160pt;}
._23{width:53.539200pt;}
._24{width:54.599253pt;}
._32{width:58.780800pt;}
._38{width:61.551360pt;}
._35{width:63.722880pt;}
._3d{width:77.875200pt;}
._41{width:79.151787pt;}
._40{width:83.656747pt;}
._2b{width:85.099307pt;}
._3c{width:91.802880pt;}
._e{width:93.300480pt;}
._26{width:107.303040pt;}
._27{width:108.225067pt;}
._3b{width:110.298240pt;}
._36{width:129.916800pt;}
._3e{width:155.226240pt;}
._3f{width:156.318507pt;}
._22{width:171.100800pt;}
._21{width:172.610133pt;}
._3a{width:209.139840pt;}
._0{width:259.753387pt;}
._1{width:1382.601387pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:7.200000pt;}
.y34{bottom:7.360000pt;}
.y74{bottom:7.400000pt;}
.y8{bottom:9.631867pt;}
.y7{bottom:28.992000pt;}
.y3a{bottom:31.840000pt;}
.y36{bottom:31.880000pt;}
.y31{bottom:32.000000pt;}
.y6{bottom:48.832000pt;}
.y3c{bottom:56.480000pt;}
.y30{bottom:56.640000pt;}
.y71{bottom:80.192000pt;}
.y2f{bottom:81.280000pt;}
.y9e{bottom:82.912000pt;}
.y2d{bottom:84.192000pt;}
.y7a{bottom:96.352000pt;}
.y4f{bottom:100.352000pt;}
.y4d{bottom:103.552000pt;}
.y70{bottom:104.832000pt;}
.y9d{bottom:107.552000pt;}
.y2c{bottom:108.832000pt;}
.y79{bottom:121.632000pt;}
.y4c{bottom:128.192000pt;}
.y6f{bottom:129.632000pt;}
.y9c{bottom:132.192000pt;}
.y2b{bottom:133.626667pt;}
.y78{bottom:147.066667pt;}
.y4e{bottom:150.266667pt;}
.y4b{bottom:152.986667pt;}
.y6e{bottom:154.266667pt;}
.y9b{bottom:156.986667pt;}
.y2a{bottom:158.266667pt;}
.y77{bottom:172.346667pt;}
.y4a{bottom:177.626667pt;}
.y6d{bottom:178.906667pt;}
.y9a{bottom:181.626667pt;}
.y29{bottom:182.906667pt;}
.y76{bottom:197.626667pt;}
.y49{bottom:202.266667pt;}
.y6c{bottom:203.546667pt;}
.y99{bottom:206.266667pt;}
.y28{bottom:207.546667pt;}
.y75{bottom:223.066667pt;}
.y48{bottom:226.906667pt;}
.y6b{bottom:228.346667pt;}
.y98{bottom:230.906667pt;}
.y27{bottom:232.346667pt;}
.y73{bottom:248.346667pt;}
.y47{bottom:251.746667pt;}
.y6a{bottom:253.026667pt;}
.y97{bottom:255.746667pt;}
.y26{bottom:257.026667pt;}
.y72{bottom:273.826667pt;}
.y46{bottom:276.386667pt;}
.y69{bottom:277.666667pt;}
.y96{bottom:280.386667pt;}
.y25{bottom:281.666667pt;}
.y45{bottom:301.026667pt;}
.y68{bottom:302.466667pt;}
.y95{bottom:305.026667pt;}
.y24{bottom:306.466667pt;}
.y44{bottom:325.666667pt;}
.y67{bottom:327.106667pt;}
.y94{bottom:329.666667pt;}
.y23{bottom:331.106667pt;}
.y43{bottom:350.466667pt;}
.y66{bottom:351.746667pt;}
.y93{bottom:354.466667pt;}
.y22{bottom:355.746667pt;}
.y42{bottom:375.106667pt;}
.y65{bottom:376.386667pt;}
.y92{bottom:379.106667pt;}
.y21{bottom:380.386667pt;}
.y41{bottom:399.746667pt;}
.y64{bottom:401.186667pt;}
.y91{bottom:403.746667pt;}
.y20{bottom:405.186667pt;}
.y40{bottom:424.546667pt;}
.y63{bottom:425.826667pt;}
.y90{bottom:428.546667pt;}
.y1f{bottom:429.826667pt;}
.y3f{bottom:449.186667pt;}
.y62{bottom:450.466667pt;}
.y8f{bottom:453.186667pt;}
.y1e{bottom:454.466667pt;}
.y3e{bottom:473.826667pt;}
.y61{bottom:475.106667pt;}
.y8e{bottom:477.826667pt;}
.y1d{bottom:479.106667pt;}
.y3d{bottom:498.466667pt;}
.y60{bottom:499.906667pt;}
.y8d{bottom:502.493333pt;}
.y1c{bottom:503.933333pt;}
.y3b{bottom:516.733333pt;}
.y5f{bottom:524.573333pt;}
.y8c{bottom:527.293333pt;}
.y1b{bottom:528.573333pt;}
.y5e{bottom:549.213333pt;}
.y8b{bottom:551.933333pt;}
.y1a{bottom:553.213333pt;}
.y5d{bottom:574.013333pt;}
.y8a{bottom:576.573333pt;}
.y19{bottom:578.013333pt;}
.y39{bottom:591.453333pt;}
.y5c{bottom:598.653333pt;}
.y89{bottom:601.373333pt;}
.y18{bottom:602.653333pt;}
.y5b{bottom:623.293333pt;}
.y88{bottom:626.013333pt;}
.y17{bottom:627.293333pt;}
.y38{bottom:641.373333pt;}
.y5a{bottom:647.933333pt;}
.y87{bottom:650.653333pt;}
.y16{bottom:651.933333pt;}
.y59{bottom:672.733333pt;}
.y86{bottom:675.293333pt;}
.y15{bottom:676.733333pt;}
.y37{bottom:691.453333pt;}
.y58{bottom:697.373333pt;}
.y85{bottom:700.093333pt;}
.y14{bottom:701.373333pt;}
.y57{bottom:722.013333pt;}
.y84{bottom:724.733333pt;}
.y13{bottom:726.013333pt;}
.y35{bottom:741.533333pt;}
.y56{bottom:746.813333pt;}
.y83{bottom:749.373333pt;}
.y12{bottom:750.813333pt;}
.y55{bottom:771.493333pt;}
.y82{bottom:774.053333pt;}
.y11{bottom:775.493333pt;}
.y54{bottom:789.573333pt;}
.y33{bottom:791.493333pt;}
.y81{bottom:798.853333pt;}
.y10{bottom:800.133333pt;}
.y80{bottom:823.493333pt;}
.yf{bottom:824.773333pt;}
.y53{bottom:839.653333pt;}
.y2e{bottom:841.573333pt;}
.y7f{bottom:848.133333pt;}
.ye{bottom:849.573333pt;}
.y7e{bottom:872.933333pt;}
.yd{bottom:874.213333pt;}
.y52{bottom:889.573333pt;}
.y7d{bottom:897.573333pt;}
.yc{bottom:898.853333pt;}
.y7c{bottom:922.213333pt;}
.yb{bottom:923.493333pt;}
.y51{bottom:939.653333pt;}
.y7b{bottom:940.293333pt;}
.ya{bottom:948.293333pt;}
.y50{bottom:965.093333pt;}
.y9{bottom:972.933333pt;}
.y5{bottom:993.893333pt;}
.y4{bottom:1012.480000pt;}
.y3{bottom:1033.440000pt;}
.y2{bottom:1054.400000pt;}
.y1{bottom:1076.160000pt;}
.h11{height:24.640000pt;}
.h13{height:24.800000pt;}
.h12{height:24.832000pt;}
.h5{height:47.488000pt;}
.hd{height:49.280000pt;}
.hc{height:49.312000pt;}
.hb{height:49.440000pt;}
.h8{height:52.503750pt;}
.h9{height:54.222187pt;}
.h2{height:59.706562pt;}
.h4{height:62.781250pt;}
.h3{height:67.871563pt;}
.h7{height:73.490625pt;}
.he{height:73.920000pt;}
.h10{height:74.080000pt;}
.h6{height:75.465000pt;}
.hf{height:76.964840pt;}
.ha{height:98.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:61.120000pt;}
.w6{width:68.000000pt;}
.w13{width:71.040000pt;}
.wa{width:88.992000pt;}
.w4{width:94.912000pt;}
.w8{width:101.920000pt;}
.w5{width:111.232000pt;}
.wb{width:111.360000pt;}
.w11{width:115.552000pt;}
.w10{width:117.280000pt;}
.w9{width:120.512000pt;}
.w7{width:121.952000pt;}
.w12{width:122.592000pt;}
.wc{width:126.912000pt;}
.wd{width:128.992000pt;}
.w3{width:140.026667pt;}
.wf{width:212.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.912000pt;}
.x6{left:37.759988pt;}
.x5{left:75.519988pt;}
.x17{left:77.439988pt;}
.x14{left:81.311988pt;}
.xa{left:84.511988pt;}
.x25{left:86.591988pt;}
.x10{left:93.151988pt;}
.x1{left:94.591988pt;}
.x16{left:99.871988pt;}
.x18{left:100.991988pt;}
.x13{left:110.271988pt;}
.x7{left:116.191988pt;}
.x1b{left:118.911988pt;}
.xd{left:123.071988pt;}
.x15{left:125.471988pt;}
.xe{left:130.431988pt;}
.x12{left:143.226655pt;}
.x1a{left:146.266655pt;}
.xb{left:182.106655pt;}
.x26{left:197.626667pt;}
.x8{left:202.906655pt;}
.x11{left:215.706655pt;}
.x20{left:216.986667pt;}
.x1c{left:240.026655pt;}
.xf{left:255.746655pt;}
.x27{left:287.266667pt;}
.x2b{left:289.186667pt;}
.xc{left:292.066655pt;}
.x21{left:312.546667pt;}
.x1d{left:322.146655pt;}
.x2f{left:330.946655pt;}
.x19{left:338.146655pt;}
.x1e{left:350.146655pt;}
.x9{left:396.866655pt;}
.x28{left:399.266667pt;}
.x2c{left:407.106667pt;}
.x22{left:424.413333pt;}
.x2{left:489.373322pt;}
.x23{left:493.053333pt;}
.x2d{left:523.293333pt;}
.x29{left:526.813333pt;}
.x3{left:561.853322pt;}
.x24{left:615.653333pt;}
.x2e{left:646.533333pt;}
.x2a{left:656.453333pt;}
.x4{left:718.213322pt;}
}




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