
    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_aad3409d26e42ac5bb7e7f15.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.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_6cd590f0664b36e957b27bdb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_84c77d61fb8736495ab276f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_37cd56cb1cdd38ee750c5385.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_2075e8f405de2aca02837c15.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_814d61a72852a09ad882f71f.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_b2a401097c18cd4d718dd1fe.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b7e3906b8a6c52adc7e6fb6a.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-0.900000px;}
.ls24{letter-spacing:-0.882000px;}
.ls30{letter-spacing:-0.696000px;}
.ls20{letter-spacing:-0.378600px;}
.ls17{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.350400px;}
.ls18{letter-spacing:-0.341400px;}
.ls8{letter-spacing:-0.271200px;}
.lse{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.028080px;}
.ls7{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.004080px;}
.ls9{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.037440px;}
.ls1d{letter-spacing:0.148080px;}
.ls13{letter-spacing:0.148320px;}
.ls14{letter-spacing:0.252720px;}
.ls15{letter-spacing:0.291600px;}
.ls1a{letter-spacing:0.321840px;}
.ls23{letter-spacing:0.336000px;}
.ls31{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.540000px;}
.ls3{letter-spacing:1.260000px;}
.lsf{letter-spacing:3.420000px;}
.ls4{letter-spacing:4.860000px;}
.ls22{letter-spacing:7.020000px;}
.ls12{letter-spacing:9.900000px;}
.ls1c{letter-spacing:11.340000px;}
.ls1e{letter-spacing:12.780000px;}
.ls5{letter-spacing:16.380000px;}
.ls2b{letter-spacing:17.820000px;}
.lsd{letter-spacing:18.540000px;}
.ls21{letter-spacing:19.260000px;}
.ls29{letter-spacing:19.980000px;}
.ls28{letter-spacing:21.420000px;}
.ls2a{letter-spacing:22.140000px;}
.ls1b{letter-spacing:27.360000px;}
.ls2e{letter-spacing:30.060000px;}
.lsb{letter-spacing:32.940000px;}
.ls2d{letter-spacing:33.660000px;}
.ls2c{letter-spacing:34.380000px;}
.ls11{letter-spacing:35.820000px;}
.ls10{letter-spacing:45.900000px;}
.ls27{letter-spacing:48.060000px;}
.ls25{letter-spacing:48.240000px;}
.ls6{letter-spacing:48.780000px;}
.ls26{letter-spacing:50.220000px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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.420000px;}
.wsf{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.351600px;}
.ws9{word-spacing:-21.312720px;}
.wsa{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.031920px;}
.ws8{word-spacing:-20.718600px;}
.ws6{word-spacing:-20.709600px;}
.ws7{word-spacing:-20.700000px;}
.wsb{word-spacing:-20.681400px;}
.wse{word-spacing:-20.364000px;}
.wsc{word-spacing:-20.160000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._39{margin-left:-9.687600px;}
._36{margin-left:-8.062560px;}
._3a{margin-left:-4.380480px;}
._38{margin-left:-2.412000px;}
._1{margin-left:-1.126080px;}
._3{width:1.006320px;}
._4{width:2.452080px;}
._9{width:3.906000px;}
._a{width:5.056560px;}
._18{width:6.233760px;}
._35{width:7.275600px;}
._12{width:8.370720px;}
._5{width:9.940320px;}
._6{width:11.070960px;}
._2d{width:12.090480px;}
._1e{width:13.340880px;}
._32{width:14.341680px;}
._d{width:15.362400px;}
._1f{width:16.450080px;}
._e{width:17.463600px;}
._25{width:18.535200px;}
._24{width:19.614720px;}
._37{width:22.692480px;}
._15{width:23.785680px;}
._f{width:24.797520px;}
._16{width:25.837200px;}
._26{width:26.956800px;}
._1c{width:28.032480px;}
._1d{width:29.191920px;}
._20{width:30.947040px;}
._23{width:32.126400px;}
._27{width:33.642720px;}
._31{width:35.465040px;}
._13{width:36.981360px;}
._14{width:38.142960px;}
._22{width:41.530320px;}
._21{width:42.541200px;}
._3c{width:43.751520px;}
._30{width:45.183600px;}
._2f{width:46.447200px;}
._10{width:47.848800px;}
._c{width:49.058640px;}
._b{width:50.375520px;}
._2c{width:51.816240px;}
._1a{width:52.818480px;}
._1b{width:53.838000px;}
._2a{width:58.012320px;}
._3b{width:59.555760px;}
._3d{width:60.750720px;}
._28{width:61.947360px;}
._19{width:65.622960px;}
._11{width:70.424640px;}
._33{width:73.067040px;}
._34{width:74.331600px;}
._17{width:77.585040px;}
._2b{width:82.501920px;}
._2e{width:87.823200px;}
._8{width:97.904640px;}
._7{width:99.097200px;}
._29{width:327.303360px;}
._2{width:638.842080px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y73{bottom:31.680000px;}
.y9b{bottom:31.725000px;}
.y55{bottom:31.860000px;}
.ya2{bottom:31.896000px;}
.y5d{bottom:32.034000px;}
.y59{bottom:32.040000px;}
.y60{bottom:32.070000px;}
.y57{bottom:32.220000px;}
.y72{bottom:67.860000px;}
.y9a{bottom:67.905000px;}
.y77{bottom:68.040000px;}
.ya1{bottom:68.070000px;}
.y9f{bottom:68.400000px;}
.ya3{bottom:68.430000px;}
.y5e{bottom:79.020000px;}
.y96{bottom:82.440000px;}
.yae{bottom:83.160000px;}
.ya0{bottom:95.220000px;}
.y7a{bottom:104.220000px;}
.y76{bottom:104.265000px;}
.y7b{bottom:104.580000px;}
.y78{bottom:104.625000px;}
.y3c{bottom:112.860000px;}
.y1f{bottom:116.640000px;}
.y95{bottom:118.620000px;}
.yad{bottom:119.340000px;}
.y5c{bottom:131.076000px;}
.y4f{bottom:143.676000px;}
.y3b{bottom:149.256000px;}
.y94{bottom:155.010000px;}
.y79{bottom:167.070000px;}
.yac{bottom:170.670000px;}
.y1e{bottom:173.550000px;}
.y4e{bottom:179.670000px;}
.y5b{bottom:182.910000px;}
.y9e{bottom:183.450000px;}
.y3a{bottom:185.430000px;}
.y93{bottom:191.190000px;}
.yab{bottom:206.850000px;}
.y4d{bottom:215.850000px;}
.y39{bottom:221.610000px;}
.y92{bottom:227.370000px;}
.y1d{bottom:231.330000px;}
.y5a{bottom:234.930000px;}
.yaa{bottom:243.030000px;}
.y4c{bottom:252.030000px;}
.y38{bottom:257.790000px;}
.y91{bottom:263.550000px;}
.y1c{bottom:267.330000px;}
.y9d{bottom:271.650000px;}
.y58{bottom:286.950000px;}
.y4b{bottom:288.210000px;}
.y75{bottom:291.450000px;}
.y37{bottom:294.150000px;}
.ya9{bottom:294.330000px;}
.y90{bottom:299.910000px;}
.y1b{bottom:303.510000px;}
.y9c{bottom:323.670000px;}
.y4a{bottom:324.570000px;}
.ya8{bottom:330.510000px;}
.y8f{bottom:336.090000px;}
.y56{bottom:338.790000px;}
.y1a{bottom:339.690000px;}
.y36{bottom:351.390000px;}
.ya7{bottom:366.690000px;}
.y8e{bottom:372.270000px;}
.y99{bottom:375.690000px;}
.y49{bottom:382.035000px;}
.y35{bottom:387.615000px;}
.y54{bottom:390.855000px;}
.y19{bottom:396.795000px;}
.y8d{bottom:408.495000px;}
.y74{bottom:415.875000px;}
.y48{bottom:418.035000px;}
.y34{bottom:423.795000px;}
.y8c{bottom:444.855000px;}
.y18{bottom:454.215000px;}
.y53{bottom:459.615000px;}
.y33{bottom:459.975000px;}
.y71{bottom:467.895000px;}
.ya6{bottom:475.455000px;}
.y98{bottom:480.675000px;}
.y8b{bottom:481.035000px;}
.y17{bottom:490.395000px;}
.y52{bottom:495.795000px;}
.y32{bottom:496.155000px;}
.ya5{bottom:511.455000px;}
.y47{bottom:511.635000px;}
.y97{bottom:516.855000px;}
.y8a{bottom:517.215000px;}
.y16{bottom:526.755000px;}
.y51{bottom:532.155000px;}
.y31{bottom:532.515000px;}
.y46{bottom:547.635000px;}
.y89{bottom:553.395000px;}
.yba{bottom:555.375000px;}
.y15{bottom:562.935000px;}
.y30{bottom:568.695000px;}
.y70{bottom:572.835000px;}
.y45{bottom:583.815000px;}
.y88{bottom:589.755000px;}
.y14{bottom:599.115000px;}
.y2f{bottom:604.875000px;}
.yb9{bottom:606.675000px;}
.y6f{bottom:609.015000px;}
.y44{bottom:620.175000px;}
.y87{bottom:625.935000px;}
.y13{bottom:635.325000px;}
.y2e{bottom:641.085000px;}
.y6e{bottom:645.585000px;}
.yb8{bottom:653.325000px;}
.y43{bottom:656.385000px;}
.y86{bottom:662.145000px;}
.y12{bottom:671.505000px;}
.y2d{bottom:677.445000px;}
.y6d{bottom:681.945000px;}
.yb7{bottom:689.505000px;}
.y42{bottom:692.565000px;}
.y85{bottom:698.325000px;}
.y11{bottom:707.865000px;}
.y2c{bottom:713.625000px;}
.y6c{bottom:718.125000px;}
.yb6{bottom:725.865000px;}
.y41{bottom:728.745000px;}
.y84{bottom:734.505000px;}
.y10{bottom:744.045000px;}
.y2b{bottom:749.805000px;}
.y6b{bottom:754.305000px;}
.yb5{bottom:762.045000px;}
.y40{bottom:765.105000px;}
.y83{bottom:770.865000px;}
.yf{bottom:780.225000px;}
.ya4{bottom:785.805000px;}
.y2a{bottom:785.985000px;}
.y6a{bottom:790.485000px;}
.y3f{bottom:801.285000px;}
.y82{bottom:807.045000px;}
.yb4{bottom:813.165000px;}
.ye{bottom:816.405000px;}
.y29{bottom:822.165000px;}
.y69{bottom:826.665000px;}
.y3e{bottom:837.465000px;}
.y81{bottom:843.225000px;}
.yb3{bottom:849.525000px;}
.yd{bottom:852.765000px;}
.y28{bottom:858.525000px;}
.y68{bottom:863.025000px;}
.y80{bottom:879.405000px;}
.yb2{bottom:885.750000px;}
.yc{bottom:888.990000px;}
.y27{bottom:894.750000px;}
.y3d{bottom:894.930000px;}
.y67{bottom:899.250000px;}
.y7f{bottom:915.810000px;}
.yb1{bottom:921.930000px;}
.yb{bottom:924.810000px;}
.y26{bottom:930.930000px;}
.y66{bottom:935.430000px;}
.y7e{bottom:951.990000px;}
.y50{bottom:966.750000px;}
.y25{bottom:967.110000px;}
.y65{bottom:971.610000px;}
.yb0{bottom:973.230000px;}
.ya{bottom:982.230000px;}
.y7d{bottom:988.170000px;}
.y64{bottom:1007.970000px;}
.yaf{bottom:1009.410000px;}
.y7c{bottom:1024.350000px;}
.y24{bottom:1024.530000px;}
.y9{bottom:1039.470000px;}
.y63{bottom:1044.150000px;}
.y23{bottom:1060.710000px;}
.y62{bottom:1080.330000px;}
.y8{bottom:1096.710000px;}
.y22{bottom:1096.890000px;}
.y61{bottom:1116.510000px;}
.y7{bottom:1132.710000px;}
.y21{bottom:1133.070000px;}
.y5f{bottom:1136.490000px;}
.y6{bottom:1168.920000px;}
.y20{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.hb{height:51.120000px;}
.hc{height:51.156000px;}
.h9{height:51.300000px;}
.ha{height:51.336000px;}
.h8{height:59.066719px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h5{height:72.846211px;}
.h10{height:82.635820px;}
.h7{height:82.676953px;}
.h6{height:84.898125px;}
.hd{height:87.300000px;}
.h11{height:87.336000px;}
.h12{height:87.480000px;}
.h13{height:87.516000px;}
.hf{height:123.660000px;}
.he{height:123.696000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.wb{width:151.200000px;}
.w9{width:161.130000px;}
.wa{width:163.470000px;}
.w6{width:174.450000px;}
.w7{width:174.630000px;}
.w8{width:222.195000px;}
.w5{width:349.590000px;}
.w3{width:349.635000px;}
.w4{width:349.815000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.776000px;}
.x2d{left:9.216000px;}
.x10{left:10.650000px;}
.x2b{left:13.176000px;}
.x23{left:15.480000px;}
.x22{left:17.280000px;}
.x28{left:19.296000px;}
.x4{left:20.550000px;}
.x2c{left:23.076000px;}
.x2e{left:25.596000px;}
.x2a{left:28.620000px;}
.x26{left:33.660000px;}
.x29{left:37.980000px;}
.x19{left:41.220000px;}
.x27{left:46.260000px;}
.x20{left:55.476000px;}
.x12{left:68.250000px;}
.xe{left:88.020000px;}
.x1{left:95.796000px;}
.x1d{left:97.605000px;}
.x17{left:102.630000px;}
.x15{left:104.970000px;}
.x5{left:106.776000px;}
.x11{left:108.210000px;}
.x6{left:109.836000px;}
.x2{left:111.636000px;}
.xc{left:114.696000px;}
.x18{left:116.670000px;}
.x14{left:121.350000px;}
.xf{left:122.970000px;}
.x16{left:127.110000px;}
.x13{left:132.330000px;}
.xa{left:149.796000px;}
.x9{left:182.550000px;}
.x1f{left:248.970000px;}
.x1b{left:263.190000px;}
.x8{left:282.495000px;}
.x21{left:310.935000px;}
.xd{left:413.535000px;}
.x7{left:423.795000px;}
.x3{left:438.915000px;}
.x24{left:472.785000px;}
.x1c{left:613.725000px;}
.x25{left:636.990000px;}
.xb{left:726.990000px;}
.x1e{left:732.210000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.800000pt;}
.ls24{letter-spacing:-0.784000pt;}
.ls30{letter-spacing:-0.618667pt;}
.ls20{letter-spacing:-0.336533pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.311467pt;}
.ls18{letter-spacing:-0.303467pt;}
.ls8{letter-spacing:-0.241067pt;}
.lse{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.024960pt;}
.ls7{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.003627pt;}
.ls9{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.033280pt;}
.ls1d{letter-spacing:0.131627pt;}
.ls13{letter-spacing:0.131840pt;}
.ls14{letter-spacing:0.224640pt;}
.ls15{letter-spacing:0.259200pt;}
.ls1a{letter-spacing:0.286080pt;}
.ls23{letter-spacing:0.298667pt;}
.ls31{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls3{letter-spacing:1.120000pt;}
.lsf{letter-spacing:3.040000pt;}
.ls4{letter-spacing:4.320000pt;}
.ls22{letter-spacing:6.240000pt;}
.ls12{letter-spacing:8.800000pt;}
.ls1c{letter-spacing:10.080000pt;}
.ls1e{letter-spacing:11.360000pt;}
.ls5{letter-spacing:14.560000pt;}
.ls2b{letter-spacing:15.840000pt;}
.lsd{letter-spacing:16.480000pt;}
.ls21{letter-spacing:17.120000pt;}
.ls29{letter-spacing:17.760000pt;}
.ls28{letter-spacing:19.040000pt;}
.ls2a{letter-spacing:19.680000pt;}
.ls1b{letter-spacing:24.320000pt;}
.ls2e{letter-spacing:26.720000pt;}
.lsb{letter-spacing:29.280000pt;}
.ls2d{letter-spacing:29.920000pt;}
.ls2c{letter-spacing:30.560000pt;}
.ls11{letter-spacing:31.840000pt;}
.ls10{letter-spacing:40.800000pt;}
.ls27{letter-spacing:42.720000pt;}
.ls25{letter-spacing:42.880000pt;}
.ls6{letter-spacing:43.360000pt;}
.ls26{letter-spacing:44.640000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws5{word-spacing:-19.040000pt;}
.wsf{word-spacing:-19.023467pt;}
.wsd{word-spacing:-18.979200pt;}
.ws9{word-spacing:-18.944640pt;}
.wsa{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.695040pt;}
.ws8{word-spacing:-18.416533pt;}
.ws6{word-spacing:-18.408533pt;}
.ws7{word-spacing:-18.400000pt;}
.wsb{word-spacing:-18.383467pt;}
.wse{word-spacing:-18.101333pt;}
.wsc{word-spacing:-17.920000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._39{margin-left:-8.611200pt;}
._36{margin-left:-7.166720pt;}
._3a{margin-left:-3.893760pt;}
._38{margin-left:-2.144000pt;}
._1{margin-left:-1.000960pt;}
._3{width:0.894507pt;}
._4{width:2.179627pt;}
._9{width:3.472000pt;}
._a{width:4.494720pt;}
._18{width:5.541120pt;}
._35{width:6.467200pt;}
._12{width:7.440640pt;}
._5{width:8.835840pt;}
._6{width:9.840853pt;}
._2d{width:10.747093pt;}
._1e{width:11.858560pt;}
._32{width:12.748160pt;}
._d{width:13.655467pt;}
._1f{width:14.622293pt;}
._e{width:15.523200pt;}
._25{width:16.475733pt;}
._24{width:17.435307pt;}
._37{width:20.171093pt;}
._15{width:21.142827pt;}
._f{width:22.042240pt;}
._16{width:22.966400pt;}
._26{width:23.961600pt;}
._1c{width:24.917760pt;}
._1d{width:25.948373pt;}
._20{width:27.508480pt;}
._23{width:28.556800pt;}
._27{width:29.904640pt;}
._31{width:31.524480pt;}
._13{width:32.872320pt;}
._14{width:33.904853pt;}
._22{width:36.915840pt;}
._21{width:37.814400pt;}
._3c{width:38.890240pt;}
._30{width:40.163200pt;}
._2f{width:41.286400pt;}
._10{width:42.532267pt;}
._c{width:43.607680pt;}
._b{width:44.778240pt;}
._2c{width:46.058880pt;}
._1a{width:46.949760pt;}
._1b{width:47.856000pt;}
._2a{width:51.566507pt;}
._3b{width:52.938453pt;}
._3d{width:54.000640pt;}
._28{width:55.064320pt;}
._19{width:58.331520pt;}
._11{width:62.599680pt;}
._33{width:64.948480pt;}
._34{width:66.072533pt;}
._17{width:68.964480pt;}
._2b{width:73.335040pt;}
._2e{width:78.065067pt;}
._8{width:87.026347pt;}
._7{width:88.086400pt;}
._29{width:290.936320pt;}
._2{width:567.859627pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y73{bottom:28.160000pt;}
.y9b{bottom:28.200000pt;}
.y55{bottom:28.320000pt;}
.ya2{bottom:28.352000pt;}
.y5d{bottom:28.474667pt;}
.y59{bottom:28.480000pt;}
.y60{bottom:28.506667pt;}
.y57{bottom:28.640000pt;}
.y72{bottom:60.320000pt;}
.y9a{bottom:60.360000pt;}
.y77{bottom:60.480000pt;}
.ya1{bottom:60.506667pt;}
.y9f{bottom:60.800000pt;}
.ya3{bottom:60.826667pt;}
.y5e{bottom:70.240000pt;}
.y96{bottom:73.280000pt;}
.yae{bottom:73.920000pt;}
.ya0{bottom:84.640000pt;}
.y7a{bottom:92.640000pt;}
.y76{bottom:92.680000pt;}
.y7b{bottom:92.960000pt;}
.y78{bottom:93.000000pt;}
.y3c{bottom:100.320000pt;}
.y1f{bottom:103.680000pt;}
.y95{bottom:105.440000pt;}
.yad{bottom:106.080000pt;}
.y5c{bottom:116.512000pt;}
.y4f{bottom:127.712000pt;}
.y3b{bottom:132.672000pt;}
.y94{bottom:137.786667pt;}
.y79{bottom:148.506667pt;}
.yac{bottom:151.706667pt;}
.y1e{bottom:154.266667pt;}
.y4e{bottom:159.706667pt;}
.y5b{bottom:162.586667pt;}
.y9e{bottom:163.066667pt;}
.y3a{bottom:164.826667pt;}
.y93{bottom:169.946667pt;}
.yab{bottom:183.866667pt;}
.y4d{bottom:191.866667pt;}
.y39{bottom:196.986667pt;}
.y92{bottom:202.106667pt;}
.y1d{bottom:205.626667pt;}
.y5a{bottom:208.826667pt;}
.yaa{bottom:216.026667pt;}
.y4c{bottom:224.026667pt;}
.y38{bottom:229.146667pt;}
.y91{bottom:234.266667pt;}
.y1c{bottom:237.626667pt;}
.y9d{bottom:241.466667pt;}
.y58{bottom:255.066667pt;}
.y4b{bottom:256.186667pt;}
.y75{bottom:259.066667pt;}
.y37{bottom:261.466667pt;}
.ya9{bottom:261.626667pt;}
.y90{bottom:266.586667pt;}
.y1b{bottom:269.786667pt;}
.y9c{bottom:287.706667pt;}
.y4a{bottom:288.506667pt;}
.ya8{bottom:293.786667pt;}
.y8f{bottom:298.746667pt;}
.y56{bottom:301.146667pt;}
.y1a{bottom:301.946667pt;}
.y36{bottom:312.346667pt;}
.ya7{bottom:325.946667pt;}
.y8e{bottom:330.906667pt;}
.y99{bottom:333.946667pt;}
.y49{bottom:339.586667pt;}
.y35{bottom:344.546667pt;}
.y54{bottom:347.426667pt;}
.y19{bottom:352.706667pt;}
.y8d{bottom:363.106667pt;}
.y74{bottom:369.666667pt;}
.y48{bottom:371.586667pt;}
.y34{bottom:376.706667pt;}
.y8c{bottom:395.426667pt;}
.y18{bottom:403.746667pt;}
.y53{bottom:408.546667pt;}
.y33{bottom:408.866667pt;}
.y71{bottom:415.906667pt;}
.ya6{bottom:422.626667pt;}
.y98{bottom:427.266667pt;}
.y8b{bottom:427.586667pt;}
.y17{bottom:435.906667pt;}
.y52{bottom:440.706667pt;}
.y32{bottom:441.026667pt;}
.ya5{bottom:454.626667pt;}
.y47{bottom:454.786667pt;}
.y97{bottom:459.426667pt;}
.y8a{bottom:459.746667pt;}
.y16{bottom:468.226667pt;}
.y51{bottom:473.026667pt;}
.y31{bottom:473.346667pt;}
.y46{bottom:486.786667pt;}
.y89{bottom:491.906667pt;}
.yba{bottom:493.666667pt;}
.y15{bottom:500.386667pt;}
.y30{bottom:505.506667pt;}
.y70{bottom:509.186667pt;}
.y45{bottom:518.946667pt;}
.y88{bottom:524.226667pt;}
.y14{bottom:532.546667pt;}
.y2f{bottom:537.666667pt;}
.yb9{bottom:539.266667pt;}
.y6f{bottom:541.346667pt;}
.y44{bottom:551.266667pt;}
.y87{bottom:556.386667pt;}
.y13{bottom:564.733333pt;}
.y2e{bottom:569.853333pt;}
.y6e{bottom:573.853333pt;}
.yb8{bottom:580.733333pt;}
.y43{bottom:583.453333pt;}
.y86{bottom:588.573333pt;}
.y12{bottom:596.893333pt;}
.y2d{bottom:602.173333pt;}
.y6d{bottom:606.173333pt;}
.yb7{bottom:612.893333pt;}
.y42{bottom:615.613333pt;}
.y85{bottom:620.733333pt;}
.y11{bottom:629.213333pt;}
.y2c{bottom:634.333333pt;}
.y6c{bottom:638.333333pt;}
.yb6{bottom:645.213333pt;}
.y41{bottom:647.773333pt;}
.y84{bottom:652.893333pt;}
.y10{bottom:661.373333pt;}
.y2b{bottom:666.493333pt;}
.y6b{bottom:670.493333pt;}
.yb5{bottom:677.373333pt;}
.y40{bottom:680.093333pt;}
.y83{bottom:685.213333pt;}
.yf{bottom:693.533333pt;}
.ya4{bottom:698.493333pt;}
.y2a{bottom:698.653333pt;}
.y6a{bottom:702.653333pt;}
.y3f{bottom:712.253333pt;}
.y82{bottom:717.373333pt;}
.yb4{bottom:722.813333pt;}
.ye{bottom:725.693333pt;}
.y29{bottom:730.813333pt;}
.y69{bottom:734.813333pt;}
.y3e{bottom:744.413333pt;}
.y81{bottom:749.533333pt;}
.yb3{bottom:755.133333pt;}
.yd{bottom:758.013333pt;}
.y28{bottom:763.133333pt;}
.y68{bottom:767.133333pt;}
.y80{bottom:781.693333pt;}
.yb2{bottom:787.333333pt;}
.yc{bottom:790.213333pt;}
.y27{bottom:795.333333pt;}
.y3d{bottom:795.493333pt;}
.y67{bottom:799.333333pt;}
.y7f{bottom:814.053333pt;}
.yb1{bottom:819.493333pt;}
.yb{bottom:822.053333pt;}
.y26{bottom:827.493333pt;}
.y66{bottom:831.493333pt;}
.y7e{bottom:846.213333pt;}
.y50{bottom:859.333333pt;}
.y25{bottom:859.653333pt;}
.y65{bottom:863.653333pt;}
.yb0{bottom:865.093333pt;}
.ya{bottom:873.093333pt;}
.y7d{bottom:878.373333pt;}
.y64{bottom:895.973333pt;}
.yaf{bottom:897.253333pt;}
.y7c{bottom:910.533333pt;}
.y24{bottom:910.693333pt;}
.y9{bottom:923.973333pt;}
.y63{bottom:928.133333pt;}
.y23{bottom:942.853333pt;}
.y62{bottom:960.293333pt;}
.y8{bottom:974.853333pt;}
.y22{bottom:975.013333pt;}
.y61{bottom:992.453333pt;}
.y7{bottom:1006.853333pt;}
.y21{bottom:1007.173333pt;}
.y5f{bottom:1010.213333pt;}
.y6{bottom:1039.040000pt;}
.y20{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.hb{height:45.440000pt;}
.hc{height:45.472000pt;}
.h9{height:45.600000pt;}
.ha{height:45.632000pt;}
.h8{height:52.503750pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h5{height:64.752187pt;}
.h10{height:73.454062pt;}
.h7{height:73.490625pt;}
.h6{height:75.465000pt;}
.hd{height:77.600000pt;}
.h11{height:77.632000pt;}
.h12{height:77.760000pt;}
.h13{height:77.792000pt;}
.hf{height:109.920000pt;}
.he{height:109.952000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.wb{width:134.400000pt;}
.w9{width:143.226667pt;}
.wa{width:145.306667pt;}
.w6{width:155.066667pt;}
.w7{width:155.226667pt;}
.w8{width:197.506667pt;}
.w5{width:310.746667pt;}
.w3{width:310.786667pt;}
.w4{width:310.946667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.912000pt;}
.x2d{left:8.192000pt;}
.x10{left:9.466667pt;}
.x2b{left:11.712000pt;}
.x23{left:13.760000pt;}
.x22{left:15.360000pt;}
.x28{left:17.152000pt;}
.x4{left:18.266667pt;}
.x2c{left:20.512000pt;}
.x2e{left:22.752000pt;}
.x2a{left:25.440000pt;}
.x26{left:29.920000pt;}
.x29{left:33.760000pt;}
.x19{left:36.640000pt;}
.x27{left:41.120000pt;}
.x20{left:49.312000pt;}
.x12{left:60.666667pt;}
.xe{left:78.240000pt;}
.x1{left:85.152000pt;}
.x1d{left:86.760000pt;}
.x17{left:91.226667pt;}
.x15{left:93.306667pt;}
.x5{left:94.912000pt;}
.x11{left:96.186667pt;}
.x6{left:97.632000pt;}
.x2{left:99.232000pt;}
.xc{left:101.952000pt;}
.x18{left:103.706667pt;}
.x14{left:107.866667pt;}
.xf{left:109.306667pt;}
.x16{left:112.986667pt;}
.x13{left:117.626667pt;}
.xa{left:133.152000pt;}
.x9{left:162.266667pt;}
.x1f{left:221.306667pt;}
.x1b{left:233.946667pt;}
.x8{left:251.106667pt;}
.x21{left:276.386667pt;}
.xd{left:367.586667pt;}
.x7{left:376.706667pt;}
.x3{left:390.146667pt;}
.x24{left:420.253333pt;}
.x1c{left:545.533333pt;}
.x25{left:566.213333pt;}
.xb{left:646.213333pt;}
.x1e{left:650.853333pt;}
}




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