
    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_d4d6e9a7749989fc71572860.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_2d336c517b4a3abea8c54439.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0fb1daae9c396a2fd8bab035.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_eb17d9782f016655ec86effd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_c52394a70919743c59204e46.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_e2e70c824d72e79c72a4850d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6346b5255e5e5268dec9e782.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_17fe04381b88ce537a273d49.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cc2bc5651103113b3fe7e550.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_61ac86b96a074a5898fa7045.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_9b6b82060ebd232ad912ab20.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a265492289fc27a7998f41ac.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.097168;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_22db3419dafa0139dfb02afa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986816;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:ffe;src:url('chunks/assets/font_398bb0083ddb704e468c2f4f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.783691;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:fff;src:url('chunks/assets/font_ae43629424177e22dc95e311.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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);}
.v1{vertical-align:-82.800000px;}
.v3{vertical-align:-15.840000px;}
.v2{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-0.690000px;}
.ls19{letter-spacing:-0.684000px;}
.ls21{letter-spacing:-0.369600px;}
.ls13{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.ls11{letter-spacing:0.036000px;}
.lse{letter-spacing:0.037440px;}
.ls1a{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.171360px;}
.ls1f{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.252720px;}
.ls17{letter-spacing:0.253440px;}
.lsf{letter-spacing:0.254880px;}
.ls1b{letter-spacing:0.273600px;}
.ls22{letter-spacing:0.336000px;}
.ls26{letter-spacing:0.341280px;}
.ls1e{letter-spacing:0.341400px;}
.ls25{letter-spacing:0.350640px;}
.lsb{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.540000px;}
.lsc{letter-spacing:1.980000px;}
.ls23{letter-spacing:2.700000px;}
.ls24{letter-spacing:8.460000px;}
.ls4{letter-spacing:10.080000px;}
.ls28{letter-spacing:10.620000px;}
.ls16{letter-spacing:11.340000px;}
.lsd{letter-spacing:13.500000px;}
.ls15{letter-spacing:14.741280px;}
.ls9{letter-spacing:19.260000px;}
.ls3{letter-spacing:30.960000px;}
.ls29{letter-spacing:34.128000px;}
.ls1c{letter-spacing:42.101280px;}
.ls20{letter-spacing:51.461280px;}
.ls2{letter-spacing:77.040000px;}
.ls1{letter-spacing:122.520000px;}
.ls12{letter-spacing:161.964000px;}
.ls10{letter-spacing:191.484000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-84.240000px;}
.ws7{word-spacing:-70.717680px;}
.ws8{word-spacing:-69.997680px;}
.ws9{word-spacing:-21.088080px;}
.ws6{word-spacing:-21.060000px;}
.wsa{word-spacing:-20.376000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.712000px;}
.ws0{word-spacing:-0.120240px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-2.197680px;}
._0{margin-left:-1.010880px;}
._1{width:1.130880px;}
._a{width:2.186880px;}
._16{width:3.672000px;}
._15{width:4.815360px;}
._14{width:6.098880px;}
._10{width:7.850880px;}
._5{width:9.864000px;}
._4{width:11.090880px;}
._3{width:12.456000px;}
._18{width:14.310480px;}
._13{width:16.104000px;}
._1b{width:18.084000px;}
._12{width:19.245120px;}
._19{width:22.744800px;}
._1f{width:24.408720px;}
._e{width:25.632000px;}
._f{width:27.005760px;}
._2{width:28.128000px;}
._1c{width:29.129040px;}
._c{width:30.528000px;}
._d{width:31.980000px;}
._1e{width:33.448560px;}
._1d{width:34.882800px;}
._11{width:36.072000px;}
._6{width:37.656000px;}
._7{width:38.706240px;}
._9{width:41.592000px;}
._8{width:42.912000px;}
._20{width:43.983120px;}
._26{width:45.321120px;}
._17{width:48.720000px;}
._22{width:50.207040px;}
._28{width:52.565760px;}
._29{width:54.426480px;}
._25{width:63.264240px;}
._2a{width:69.498000px;}
._b{width:76.728000px;}
._23{width:87.609600px;}
._24{width:89.160960px;}
._21{width:161.964000px;}
._27{width:191.484000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y72{bottom:4.140000px;}
.y74{bottom:4.500000px;}
.y6{bottom:7.380000px;}
.y4{bottom:8.100000px;}
.y7{bottom:8.820000px;}
.y76{bottom:12.060000px;}
.y7a{bottom:13.860000px;}
.y78{bottom:14.400000px;}
.y7c{bottom:15.300000px;}
.y5{bottom:15.660000px;}
.y2{bottom:57.600000px;}
.y87{bottom:77.796000px;}
.y36{bottom:83.196000px;}
.y70{bottom:84.096000px;}
.y5a{bottom:88.596000px;}
.y86{bottom:98.496000px;}
.y84{bottom:99.936000px;}
.y35{bottom:111.096000px;}
.y6f{bottom:111.816000px;}
.y59{bottom:116.316000px;}
.y85{bottom:118.836000px;}
.y83{bottom:127.656000px;}
.y34{bottom:138.816000px;}
.y6e{bottom:139.536000px;}
.y58{bottom:144.036000px;}
.y82{bottom:155.370000px;}
.y33{bottom:166.530000px;}
.y6d{bottom:167.430000px;}
.y5e{bottom:171.570000px;}
.y57{bottom:171.930000px;}
.y81{bottom:183.090000px;}
.y32{bottom:194.250000px;}
.y6c{bottom:195.150000px;}
.y56{bottom:199.650000px;}
.y80{bottom:210.990000px;}
.y31{bottom:222.150000px;}
.y6b{bottom:222.870000px;}
.y55{bottom:227.370000px;}
.y7f{bottom:238.710000px;}
.y30{bottom:249.870000px;}
.y6a{bottom:250.590000px;}
.y54{bottom:255.270000px;}
.y7e{bottom:266.430000px;}
.y2f{bottom:277.590000px;}
.y69{bottom:278.490000px;}
.y53{bottom:282.990000px;}
.y7d{bottom:290.370000px;}
.y7b{bottom:302.250000px;}
.y2e{bottom:305.310000px;}
.y68{bottom:306.210000px;}
.y52{bottom:310.710000px;}
.y2d{bottom:328.575000px;}
.y67{bottom:333.975000px;}
.y79{bottom:334.695000px;}
.y51{bottom:338.475000px;}
.y2c{bottom:349.635000px;}
.y66{bottom:361.875000px;}
.y77{bottom:365.475000px;}
.y5f{bottom:366.015000px;}
.y50{bottom:366.375000px;}
.y2b{bottom:370.335000px;}
.y65{bottom:389.595000px;}
.y2a{bottom:391.035000px;}
.y4f{bottom:394.095000px;}
.y75{bottom:396.795000px;}
.y29{bottom:411.735000px;}
.y64{bottom:417.315000px;}
.y4e{bottom:421.815000px;}
.y73{bottom:425.775000px;}
.y28{bottom:432.435000px;}
.y63{bottom:445.035000px;}
.y71{bottom:447.195000px;}
.y4d{bottom:449.715000px;}
.y27{bottom:453.135000px;}
.y62{bottom:472.935000px;}
.y26{bottom:473.835000px;}
.y4c{bottom:477.435000px;}
.y25{bottom:494.535000px;}
.y61{bottom:502.275000px;}
.y4b{bottom:505.155000px;}
.y24{bottom:514.875000px;}
.y60{bottom:531.435000px;}
.y4a{bottom:532.875000px;}
.y23{bottom:535.935000px;}
.y22{bottom:556.635000px;}
.y49{bottom:560.775000px;}
.y21{bottom:577.335000px;}
.y48{bottom:588.495000px;}
.y20{bottom:598.065000px;}
.y47{bottom:616.245000px;}
.y1f{bottom:618.765000px;}
.y1e{bottom:639.465000px;}
.y46{bottom:644.145000px;}
.y1d{bottom:660.165000px;}
.y5c{bottom:671.505000px;}
.y45{bottom:671.865000px;}
.y1c{bottom:680.865000px;}
.y5b{bottom:699.225000px;}
.y44{bottom:699.585000px;}
.y1b{bottom:701.565000px;}
.y9c{bottom:704.985000px;}
.y1a{bottom:722.265000px;}
.y9b{bottom:725.685000px;}
.y43{bottom:727.305000px;}
.y19{bottom:742.965000px;}
.y9a{bottom:746.385000px;}
.y42{bottom:755.205000px;}
.y18{bottom:763.665000px;}
.y99{bottom:767.085000px;}
.y41{bottom:782.925000px;}
.y17{bottom:784.365000px;}
.y98{bottom:787.785000px;}
.y16{bottom:805.065000px;}
.y97{bottom:808.485000px;}
.y40{bottom:810.645000px;}
.y15{bottom:825.765000px;}
.y96{bottom:829.185000px;}
.y3f{bottom:838.365000px;}
.y14{bottom:846.465000px;}
.y95{bottom:849.885000px;}
.y3e{bottom:866.310000px;}
.y13{bottom:867.210000px;}
.y94{bottom:870.630000px;}
.y12{bottom:887.910000px;}
.y93{bottom:891.330000px;}
.y3d{bottom:894.030000px;}
.y11{bottom:908.610000px;}
.y92{bottom:912.030000px;}
.y3c{bottom:921.750000px;}
.y10{bottom:929.310000px;}
.y91{bottom:932.730000px;}
.yf{bottom:949.650000px;}
.y90{bottom:953.430000px;}
.y8f{bottom:974.130000px;}
.y3b{bottom:977.370000px;}
.ye{bottom:991.050000px;}
.y8e{bottom:994.830000px;}
.y3a{bottom:1005.090000px;}
.yd{bottom:1012.110000px;}
.y8d{bottom:1015.530000px;}
.yc{bottom:1032.810000px;}
.y8c{bottom:1036.230000px;}
.yb{bottom:1053.510000px;}
.y8b{bottom:1056.930000px;}
.y5d{bottom:1060.350000px;}
.y39{bottom:1060.710000px;}
.ya{bottom:1073.850000px;}
.y8a{bottom:1077.630000px;}
.y38{bottom:1088.430000px;}
.y9{bottom:1094.550000px;}
.y89{bottom:1098.330000px;}
.y8{bottom:1115.790000px;}
.y37{bottom:1116.150000px;}
.y88{bottom:1119.030000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1194.300000px;}
.h10{height:20.700000px;}
.h12{height:28.260000px;}
.h14{height:30.060000px;}
.h13{height:30.600000px;}
.h15{height:31.536000px;}
.h3{height:33.120000px;}
.h7{height:38.520000px;}
.h5{height:44.100000px;}
.h16{height:47.344922px;}
.hc{height:59.343750px;}
.h18{height:63.457031px;}
.h2{height:65.884219px;}
.hb{height:70.628906px;}
.h11{height:70.664062px;}
.ha{height:72.562500px;}
.h17{height:74.004654px;}
.he{height:74.244727px;}
.h8{height:78.626953px;}
.hd{height:82.676953px;}
.h9{height:84.898125px;}
.hf{height:86.585445px;}
.h6{height:102.832031px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:66.240000px;}
.w5{width:66.276000px;}
.w4{width:77.436000px;}
.w6{width:95.580000px;}
.w8{width:148.176000px;}
.w7{width:179.670000px;}
.w9{width:424.875000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x5{left:10.800000px;}
.x15{left:18.396000px;}
.x8{left:25.200000px;}
.x3{left:26.460000px;}
.x1{left:63.899987px;}
.x1b{left:68.939987px;}
.x14{left:85.500000px;}
.x11{left:90.899987px;}
.x1c{left:95.975987px;}
.x10{left:106.415987px;}
.xf{left:117.035987px;}
.x19{left:143.855987px;}
.x9{left:145.655987px;}
.x7{left:175.170000px;}
.xc{left:194.609987px;}
.x12{left:238.529987px;}
.x16{left:265.890000px;}
.x1a{left:313.994987px;}
.xe{left:326.594987px;}
.xd{left:342.254987px;}
.xb{left:384.014987px;}
.x18{left:414.795000px;}
.x4{left:427.755000px;}
.xa{left:452.054987px;}
.x2{left:714.390000px;}
.x6{left:821.850000px;}
.x13{left:825.809987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v3{vertical-align:-14.080000pt;}
.v2{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.613333pt;}
.ls19{letter-spacing:-0.608000pt;}
.ls21{letter-spacing:-0.328533pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.ls11{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.033280pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.152320pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.224640pt;}
.ls17{letter-spacing:0.225280pt;}
.lsf{letter-spacing:0.226560pt;}
.ls1b{letter-spacing:0.243200pt;}
.ls22{letter-spacing:0.298667pt;}
.ls26{letter-spacing:0.303360pt;}
.ls1e{letter-spacing:0.303467pt;}
.ls25{letter-spacing:0.311680pt;}
.lsb{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.480000pt;}
.lsc{letter-spacing:1.760000pt;}
.ls23{letter-spacing:2.400000pt;}
.ls24{letter-spacing:7.520000pt;}
.ls4{letter-spacing:8.960000pt;}
.ls28{letter-spacing:9.440000pt;}
.ls16{letter-spacing:10.080000pt;}
.lsd{letter-spacing:12.000000pt;}
.ls15{letter-spacing:13.103360pt;}
.ls9{letter-spacing:17.120000pt;}
.ls3{letter-spacing:27.520000pt;}
.ls29{letter-spacing:30.336000pt;}
.ls1c{letter-spacing:37.423360pt;}
.ls20{letter-spacing:45.743360pt;}
.ls2{letter-spacing:68.480000pt;}
.ls1{letter-spacing:108.906667pt;}
.ls12{letter-spacing:143.968000pt;}
.ls10{letter-spacing:170.208000pt;}
.ws5{word-spacing:-74.880000pt;}
.ws7{word-spacing:-62.860160pt;}
.ws8{word-spacing:-62.220160pt;}
.ws9{word-spacing:-18.744960pt;}
.ws6{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.112000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws0{word-spacing:-0.106880pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-1.953493pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.005227pt;}
._a{width:1.943893pt;}
._16{width:3.264000pt;}
._15{width:4.280320pt;}
._14{width:5.421227pt;}
._10{width:6.978560pt;}
._5{width:8.768000pt;}
._4{width:9.858560pt;}
._3{width:11.072000pt;}
._18{width:12.720427pt;}
._13{width:14.314667pt;}
._1b{width:16.074667pt;}
._12{width:17.106773pt;}
._19{width:20.217600pt;}
._1f{width:21.696640pt;}
._e{width:22.784000pt;}
._f{width:24.005120pt;}
._2{width:25.002667pt;}
._1c{width:25.892480pt;}
._c{width:27.136000pt;}
._d{width:28.426667pt;}
._1e{width:29.732053pt;}
._1d{width:31.006933pt;}
._11{width:32.064000pt;}
._6{width:33.472000pt;}
._7{width:34.405547pt;}
._9{width:36.970667pt;}
._8{width:38.144000pt;}
._20{width:39.096107pt;}
._26{width:40.285440pt;}
._17{width:43.306667pt;}
._22{width:44.628480pt;}
._28{width:46.725120pt;}
._29{width:48.379093pt;}
._25{width:56.234880pt;}
._2a{width:61.776000pt;}
._b{width:68.202667pt;}
._23{width:77.875200pt;}
._24{width:79.254187pt;}
._21{width:143.968000pt;}
._27{width:170.208000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:3.680000pt;}
.y74{bottom:4.000000pt;}
.y6{bottom:6.560000pt;}
.y4{bottom:7.200000pt;}
.y7{bottom:7.840000pt;}
.y76{bottom:10.720000pt;}
.y7a{bottom:12.320000pt;}
.y78{bottom:12.800000pt;}
.y7c{bottom:13.600000pt;}
.y5{bottom:13.920000pt;}
.y2{bottom:51.200000pt;}
.y87{bottom:69.152000pt;}
.y36{bottom:73.952000pt;}
.y70{bottom:74.752000pt;}
.y5a{bottom:78.752000pt;}
.y86{bottom:87.552000pt;}
.y84{bottom:88.832000pt;}
.y35{bottom:98.752000pt;}
.y6f{bottom:99.392000pt;}
.y59{bottom:103.392000pt;}
.y85{bottom:105.632000pt;}
.y83{bottom:113.472000pt;}
.y34{bottom:123.392000pt;}
.y6e{bottom:124.032000pt;}
.y58{bottom:128.032000pt;}
.y82{bottom:138.106667pt;}
.y33{bottom:148.026667pt;}
.y6d{bottom:148.826667pt;}
.y5e{bottom:152.506667pt;}
.y57{bottom:152.826667pt;}
.y81{bottom:162.746667pt;}
.y32{bottom:172.666667pt;}
.y6c{bottom:173.466667pt;}
.y56{bottom:177.466667pt;}
.y80{bottom:187.546667pt;}
.y31{bottom:197.466667pt;}
.y6b{bottom:198.106667pt;}
.y55{bottom:202.106667pt;}
.y7f{bottom:212.186667pt;}
.y30{bottom:222.106667pt;}
.y6a{bottom:222.746667pt;}
.y54{bottom:226.906667pt;}
.y7e{bottom:236.826667pt;}
.y2f{bottom:246.746667pt;}
.y69{bottom:247.546667pt;}
.y53{bottom:251.546667pt;}
.y7d{bottom:258.106667pt;}
.y7b{bottom:268.666667pt;}
.y2e{bottom:271.386667pt;}
.y68{bottom:272.186667pt;}
.y52{bottom:276.186667pt;}
.y2d{bottom:292.066667pt;}
.y67{bottom:296.866667pt;}
.y79{bottom:297.506667pt;}
.y51{bottom:300.866667pt;}
.y2c{bottom:310.786667pt;}
.y66{bottom:321.666667pt;}
.y77{bottom:324.866667pt;}
.y5f{bottom:325.346667pt;}
.y50{bottom:325.666667pt;}
.y2b{bottom:329.186667pt;}
.y65{bottom:346.306667pt;}
.y2a{bottom:347.586667pt;}
.y4f{bottom:350.306667pt;}
.y75{bottom:352.706667pt;}
.y29{bottom:365.986667pt;}
.y64{bottom:370.946667pt;}
.y4e{bottom:374.946667pt;}
.y73{bottom:378.466667pt;}
.y28{bottom:384.386667pt;}
.y63{bottom:395.586667pt;}
.y71{bottom:397.506667pt;}
.y4d{bottom:399.746667pt;}
.y27{bottom:402.786667pt;}
.y62{bottom:420.386667pt;}
.y26{bottom:421.186667pt;}
.y4c{bottom:424.386667pt;}
.y25{bottom:439.586667pt;}
.y61{bottom:446.466667pt;}
.y4b{bottom:449.026667pt;}
.y24{bottom:457.666667pt;}
.y60{bottom:472.386667pt;}
.y4a{bottom:473.666667pt;}
.y23{bottom:476.386667pt;}
.y22{bottom:494.786667pt;}
.y49{bottom:498.466667pt;}
.y21{bottom:513.186667pt;}
.y48{bottom:523.106667pt;}
.y20{bottom:531.613333pt;}
.y47{bottom:547.773333pt;}
.y1f{bottom:550.013333pt;}
.y1e{bottom:568.413333pt;}
.y46{bottom:572.573333pt;}
.y1d{bottom:586.813333pt;}
.y5c{bottom:596.893333pt;}
.y45{bottom:597.213333pt;}
.y1c{bottom:605.213333pt;}
.y5b{bottom:621.533333pt;}
.y44{bottom:621.853333pt;}
.y1b{bottom:623.613333pt;}
.y9c{bottom:626.653333pt;}
.y1a{bottom:642.013333pt;}
.y9b{bottom:645.053333pt;}
.y43{bottom:646.493333pt;}
.y19{bottom:660.413333pt;}
.y9a{bottom:663.453333pt;}
.y42{bottom:671.293333pt;}
.y18{bottom:678.813333pt;}
.y99{bottom:681.853333pt;}
.y41{bottom:695.933333pt;}
.y17{bottom:697.213333pt;}
.y98{bottom:700.253333pt;}
.y16{bottom:715.613333pt;}
.y97{bottom:718.653333pt;}
.y40{bottom:720.573333pt;}
.y15{bottom:734.013333pt;}
.y96{bottom:737.053333pt;}
.y3f{bottom:745.213333pt;}
.y14{bottom:752.413333pt;}
.y95{bottom:755.453333pt;}
.y3e{bottom:770.053333pt;}
.y13{bottom:770.853333pt;}
.y94{bottom:773.893333pt;}
.y12{bottom:789.253333pt;}
.y93{bottom:792.293333pt;}
.y3d{bottom:794.693333pt;}
.y11{bottom:807.653333pt;}
.y92{bottom:810.693333pt;}
.y3c{bottom:819.333333pt;}
.y10{bottom:826.053333pt;}
.y91{bottom:829.093333pt;}
.yf{bottom:844.133333pt;}
.y90{bottom:847.493333pt;}
.y8f{bottom:865.893333pt;}
.y3b{bottom:868.773333pt;}
.ye{bottom:880.933333pt;}
.y8e{bottom:884.293333pt;}
.y3a{bottom:893.413333pt;}
.yd{bottom:899.653333pt;}
.y8d{bottom:902.693333pt;}
.yc{bottom:918.053333pt;}
.y8c{bottom:921.093333pt;}
.yb{bottom:936.453333pt;}
.y8b{bottom:939.493333pt;}
.y5d{bottom:942.533333pt;}
.y39{bottom:942.853333pt;}
.ya{bottom:954.533333pt;}
.y8a{bottom:957.893333pt;}
.y38{bottom:967.493333pt;}
.y9{bottom:972.933333pt;}
.y89{bottom:976.293333pt;}
.y8{bottom:991.813333pt;}
.y37{bottom:992.133333pt;}
.y88{bottom:994.693333pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1061.600000pt;}
.h10{height:18.400000pt;}
.h12{height:25.120000pt;}
.h14{height:26.720000pt;}
.h13{height:27.200000pt;}
.h15{height:28.032000pt;}
.h3{height:29.440000pt;}
.h7{height:34.240000pt;}
.h5{height:39.200000pt;}
.h16{height:42.084375pt;}
.hc{height:52.750000pt;}
.h18{height:56.406250pt;}
.h2{height:58.563750pt;}
.hb{height:62.781250pt;}
.h11{height:62.812500pt;}
.ha{height:64.500000pt;}
.h17{height:65.781915pt;}
.he{height:65.995312pt;}
.h8{height:69.890625pt;}
.hd{height:73.490625pt;}
.h9{height:75.465000pt;}
.hf{height:76.964840pt;}
.h6{height:91.406250pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:58.880000pt;}
.w5{width:58.912000pt;}
.w4{width:68.832000pt;}
.w6{width:84.960000pt;}
.w8{width:131.712000pt;}
.w7{width:159.706667pt;}
.w9{width:377.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x5{left:9.600000pt;}
.x15{left:16.352000pt;}
.x8{left:22.400000pt;}
.x3{left:23.520000pt;}
.x1{left:56.799988pt;}
.x1b{left:61.279988pt;}
.x14{left:76.000000pt;}
.x11{left:80.799988pt;}
.x1c{left:85.311988pt;}
.x10{left:94.591988pt;}
.xf{left:104.031988pt;}
.x19{left:127.871988pt;}
.x9{left:129.471988pt;}
.x7{left:155.706667pt;}
.xc{left:172.986655pt;}
.x12{left:212.026655pt;}
.x16{left:236.346667pt;}
.x1a{left:279.106655pt;}
.xe{left:290.306655pt;}
.xd{left:304.226655pt;}
.xb{left:341.346655pt;}
.x18{left:368.706667pt;}
.x4{left:380.226667pt;}
.xa{left:401.826655pt;}
.x2{left:635.013333pt;}
.x6{left:730.533333pt;}
.x13{left:734.053322pt;}
}




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