
    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_ca9fb7dd464e2ae0911dfc14.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_13e69ae91f191642040f2375.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9520c3bea4159a8332b1b89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_e73bf3361c54faf437789b80.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_272e23c60aea93a81647c235.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_e86d313ab77c35348eea1622.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_ffa3b5c250fa381614f277de.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_74832ff29ac353e5f929e7f9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_498a051407d1a28f9ac939b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.125488;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_6b0a42a7e8ca0c500bde9bde.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.125488;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_c6ebc3fdf2f350d7e8f9acfb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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:-91.440000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.lsc{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.085200px;}
.ls6{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.181440px;}
.ls9{letter-spacing:0.219000px;}
.ls8{letter-spacing:0.224400px;}
.lsf{letter-spacing:0.233400px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.540000px;}
.lsb{letter-spacing:39.905280px;}
.ls7{letter-spacing:59.345280px;}
.ls0{letter-spacing:232.716000px;}
.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;}
}
.ws7{word-spacing:-66.240000px;}
.ws8{word-spacing:-48.240000px;}
.ws6{word-spacing:-37.359360px;}
.wsa{word-spacing:-16.712400px;}
.ws9{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.831800px;}
.ws5{word-spacing:-10.527600px;}
.wsb{word-spacing:-10.440000px;}
.wsc{word-spacing:-7.560000px;}
.ws3{word-spacing:0.000000px;}
._11{margin-left:-14.496000px;}
._12{margin-left:-13.328880px;}
._e{margin-left:-11.268960px;}
._14{margin-left:-8.929680px;}
._f{margin-left:-7.741680px;}
._10{margin-left:-6.238320px;}
._13{margin-left:-4.922880px;}
._6{margin-left:-3.875040px;}
._3{margin-left:-2.664000px;}
._2{margin-left:-1.104000px;}
._0{width:1.059120px;}
._1{width:2.703360px;}
._b{width:4.289280px;}
._8{width:5.961120px;}
._7{width:7.709040px;}
._d{width:8.724960px;}
._c{width:10.218960px;}
._9{width:13.462560px;}
._15{width:15.079680px;}
._a{width:16.732800px;}
._16{width:20.335680px;}
._17{width:21.492720px;}
._5{width:24.023520px;}
._4{width:25.099200px;}
._1a{width:27.357120px;}
._1b{width:28.416960px;}
._19{width:34.643520px;}
._18{width:35.880000px;}
.fc1{color:rgb(46,116,181);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.240000px;}
.fs9{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:21.780000px;}
.y5{bottom:47.340000px;}
.y4{bottom:84.090000px;}
.y8{bottom:92.340000px;}
.y7{bottom:109.620000px;}
.yb4{bottom:121.320000px;}
.y6d{bottom:127.440000px;}
.y2c{bottom:138.600000px;}
.y8d{bottom:144.180000px;}
.y6c{bottom:149.400000px;}
.yb3{bottom:161.640000px;}
.y8c{bottom:163.260000px;}
.y2b{bottom:163.440000px;}
.y6b{bottom:171.210000px;}
.y2a{bottom:188.130000px;}
.y8b{bottom:188.490000px;}
.y6a{bottom:196.410000px;}
.yb2{bottom:209.550000px;}
.y29{bottom:212.790000px;}
.yb1{bottom:228.630000px;}
.y28{bottom:237.630000px;}
.y8a{bottom:238.170000px;}
.y69{bottom:247.170000px;}
.yb0{bottom:247.530000px;}
.y89{bottom:261.570000px;}
.y27{bottom:262.290000px;}
.yaf{bottom:266.430000px;}
.y68{bottom:268.950000px;}
.yae{bottom:285.510000px;}
.y26{bottom:287.130000px;}
.y67{bottom:290.730000px;}
.yad{bottom:311.250000px;}
.y25{bottom:311.790000px;}
.y66{bottom:312.510000px;}
.y4d{bottom:333.570000px;}
.y65{bottom:334.290000px;}
.y24{bottom:336.630000px;}
.y23{bottom:354.090000px;}
.yac{bottom:355.530000px;}
.y64{bottom:356.250000px;}
.y4c{bottom:356.610000px;}
.yab{bottom:374.610000px;}
.y22{bottom:376.950000px;}
.y63{bottom:378.030000px;}
.y4b{bottom:379.650000px;}
.yaa{bottom:393.510000px;}
.y62{bottom:399.810000px;}
.y4a{bottom:402.690000px;}
.ya9{bottom:412.590000px;}
.y61{bottom:421.635000px;}
.y49{bottom:425.595000px;}
.ya7{bottom:431.535000px;}
.ya8{bottom:437.475000px;}
.y21{bottom:439.455000px;}
.y48{bottom:448.635000px;}
.ya6{bottom:450.435000px;}
.y60{bottom:452.595000px;}
.y20{bottom:459.255000px;}
.ya5{bottom:469.515000px;}
.y47{bottom:471.675000px;}
.y5f{bottom:474.375000px;}
.y1f{bottom:479.055000px;}
.ya4{bottom:488.415000px;}
.y46{bottom:494.715000px;}
.y5e{bottom:496.155000px;}
.y1e{bottom:499.035000px;}
.ya3{bottom:513.615000px;}
.y45{bottom:517.755000px;}
.y5d{bottom:517.935000px;}
.y1d{bottom:518.835000px;}
.yd3{bottom:528.915000px;}
.yd2{bottom:533.415000px;}
.y1c{bottom:538.635000px;}
.y5c{bottom:539.715000px;}
.y44{bottom:540.615000px;}
.yd1{bottom:542.775000px;}
.yd0{bottom:547.275000px;}
.ycf{bottom:556.635000px;}
.y1b{bottom:558.435000px;}
.yce{bottom:561.135000px;}
.y5b{bottom:561.675000px;}
.ya2{bottom:563.295000px;}
.ycd{bottom:570.315000px;}
.y88{bottom:571.755000px;}
.y43{bottom:572.655000px;}
.ya1{bottom:574.635000px;}
.ycc{bottom:574.815000px;}
.y1a{bottom:578.235000px;}
.y5a{bottom:583.455000px;}
.ycb{bottom:584.175000px;}
.yca{bottom:588.675000px;}
.y42{bottom:594.435000px;}
.yc9{bottom:598.035000px;}
.y19{bottom:598.215000px;}
.y87{bottom:602.535000px;}
.y59{bottom:605.235000px;}
.yc8{bottom:611.715000px;}
.y41{bottom:616.215000px;}
.y18{bottom:618.015000px;}
.y86{bottom:624.495000px;}
.yc7{bottom:625.575000px;}
.y58{bottom:627.015000px;}
.yc6{bottom:630.075000px;}
.y17{bottom:637.815000px;}
.yc5{bottom:639.435000px;}
.y40{bottom:641.595000px;}
.yc4{bottom:643.935000px;}
.yc3{bottom:653.835000px;}
.y85{bottom:655.275000px;}
.y16{bottom:657.615000px;}
.y57{bottom:658.005000px;}
.yc2{bottom:671.685000px;}
.y84{bottom:677.085000px;}
.y15{bottom:677.445000px;}
.y56{bottom:679.785000px;}
.yc1{bottom:690.585000px;}
.y3e{bottom:692.205000px;}
.y14{bottom:697.425000px;}
.y3f{bottom:698.145000px;}
.y83{bottom:699.045000px;}
.y55{bottom:701.565000px;}
.yc0{bottom:709.485000px;}
.y3d{bottom:713.985000px;}
.y13{bottom:717.225000px;}
.y82{bottom:721.905000px;}
.y54{bottom:723.345000px;}
.y3c{bottom:735.765000px;}
.y12{bottom:737.025000px;}
.y81{bottom:743.865000px;}
.y52{bottom:745.125000px;}
.ybf{bottom:749.445000px;}
.y53{bottom:751.065000px;}
.y11{bottom:756.825000px;}
.y3b{bottom:766.725000px;}
.y80{bottom:766.905000px;}
.y51{bottom:767.085000px;}
.ybe{bottom:768.525000px;}
.ybd{bottom:787.425000px;}
.y3a{bottom:788.505000px;}
.y7f{bottom:789.765000px;}
.y10{bottom:791.025000px;}
.y50{bottom:792.465000px;}
.ya0{bottom:798.945000px;}
.y39{bottom:810.285000px;}
.y7e{bottom:811.725000px;}
.y9e{bottom:817.845000px;}
.y9f{bottom:823.785000px;}
.ybc{bottom:827.385000px;}
.y38{bottom:832.065000px;}
.y7d{bottom:834.585000px;}
.y9c{bottom:836.925000px;}
.y4f{bottom:842.145000px;}
.y9d{bottom:842.865000px;}
.ybb{bottom:846.465000px;}
.yf{bottom:848.265000px;}
.y37{bottom:853.845000px;}
.y9b{bottom:855.825000px;}
.y7c{bottom:856.365000px;}
.y4e{bottom:859.425000px;}
.yba{bottom:865.365000px;}
.ye{bottom:868.965000px;}
.y7b{bottom:878.325000px;}
.y9a{bottom:881.025000px;}
.y36{bottom:884.805000px;}
.yd{bottom:889.665000px;}
.y7a{bottom:901.365000px;}
.yb9{bottom:905.370000px;}
.y35{bottom:906.630000px;}
.yc{bottom:910.410000px;}
.y79{bottom:924.270000px;}
.y34{bottom:928.410000px;}
.y99{bottom:928.950000px;}
.y78{bottom:946.230000px;}
.yb{bottom:947.670000px;}
.y98{bottom:949.110000px;}
.y33{bottom:950.190000px;}
.yb8{bottom:964.230000px;}
.y97{bottom:968.010000px;}
.y77{bottom:969.090000px;}
.y32{bottom:972.150000px;}
.ya{bottom:975.930000px;}
.y96{bottom:988.170000px;}
.y76{bottom:990.870000px;}
.y31{bottom:997.530000px;}
.y9{bottom:1004.370000px;}
.y95{bottom:1007.070000px;}
.y75{bottom:1012.830000px;}
.yb7{bottom:1023.270000px;}
.y94{bottom:1027.410000px;}
.y74{bottom:1044.690000px;}
.y30{bottom:1045.410000px;}
.y93{bottom:1046.310000px;}
.yb6{bottom:1063.230000px;}
.y92{bottom:1065.390000px;}
.y6{bottom:1066.290000px;}
.y73{bottom:1066.650000px;}
.y2{bottom:1080.330000px;}
.yb5{bottom:1082.130000px;}
.y91{bottom:1084.290000px;}
.y2f{bottom:1092.930000px;}
.y71{bottom:1097.430000px;}
.y90{bottom:1103.190000px;}
.y72{bottom:1103.370000px;}
.y2e{bottom:1117.770000px;}
.y70{bottom:1119.210000px;}
.y8f{bottom:1122.270000px;}
.y6e{bottom:1140.990000px;}
.y8e{bottom:1141.170000px;}
.y2d{bottom:1142.430000px;}
.y6f{bottom:1146.930000px;}
.y1{bottom:1183.500000px;}
.h4{height:29.678906px;}
.hf{height:40.985156px;}
.h2{height:41.974453px;}
.h9{height:47.321367px;}
.h15{height:47.344922px;}
.h11{height:49.394180px;}
.hd{height:51.998203px;}
.h5{height:52.465078px;}
.h7{height:58.651172px;}
.hb{height:60.226875px;}
.ha{height:63.210938px;}
.he{height:65.010937px;}
.h12{height:65.884219px;}
.h13{height:67.824844px;}
.h10{height:68.084282px;}
.h6{height:76.317188px;}
.h8{height:84.070547px;}
.h14{height:84.898125px;}
.hc{height:91.177734px;}
.h3{height:98.316000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:92.880000px;}
.w4{width:598.425000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:49.680000px;}
.x2{left:85.134000px;}
.x1{left:106.415987px;}
.x7{left:109.475987px;}
.x28{left:110.735987px;}
.x29{left:112.895987px;}
.x2a{left:114.515987px;}
.x2b{left:116.675987px;}
.xc{left:121.355987px;}
.x1c{left:134.855987px;}
.xe{left:136.475987px;}
.x18{left:147.635973px;}
.x19{left:155.729987px;}
.xb{left:159.509987px;}
.x24{left:169.589987px;}
.x11{left:176.969987px;}
.x16{left:187.409987px;}
.xa{left:196.949987px;}
.x3{left:198.750000px;}
.x8{left:206.129987px;}
.x9{left:209.189987px;}
.x1f{left:217.289973px;}
.x20{left:228.269987px;}
.x5{left:247.725000px;}
.xf{left:255.269973px;}
.x10{left:258.149987px;}
.x17{left:263.909987px;}
.x1a{left:270.389973px;}
.x14{left:275.609973px;}
.x15{left:281.414987px;}
.x13{left:284.654987px;}
.xd{left:298.514987px;}
.x27{left:322.454987px;}
.x6{left:442.694987px;}
.x21{left:466.094973px;}
.x22{left:479.984987px;}
.x25{left:569.624973px;}
.x26{left:577.724987px;}
.x23{left:712.229987px;}
.x1d{left:720.509973px;}
.x1e{left:728.609987px;}
.x1b{left:757.049987px;}
.x12{left:765.329987px;}
@media print{
.v1{vertical-align:-81.280000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.lsc{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.075733pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.161280pt;}
.ls9{letter-spacing:0.194667pt;}
.ls8{letter-spacing:0.199467pt;}
.lsf{letter-spacing:0.207467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.480000pt;}
.lsb{letter-spacing:35.471360pt;}
.ls7{letter-spacing:52.751360pt;}
.ls0{letter-spacing:206.858667pt;}
.ws7{word-spacing:-58.880000pt;}
.ws8{word-spacing:-42.880000pt;}
.ws6{word-spacing:-33.208320pt;}
.wsa{word-spacing:-14.855467pt;}
.ws9{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.628267pt;}
.ws5{word-spacing:-9.357867pt;}
.wsb{word-spacing:-9.280000pt;}
.wsc{word-spacing:-6.720000pt;}
.ws3{word-spacing:0.000000pt;}
._11{margin-left:-12.885333pt;}
._12{margin-left:-11.847893pt;}
._e{margin-left:-10.016853pt;}
._14{margin-left:-7.937493pt;}
._f{margin-left:-6.881493pt;}
._10{margin-left:-5.545173pt;}
._13{margin-left:-4.375893pt;}
._6{margin-left:-3.444480pt;}
._3{margin-left:-2.368000pt;}
._2{margin-left:-0.981333pt;}
._0{width:0.941440pt;}
._1{width:2.402987pt;}
._b{width:3.812693pt;}
._8{width:5.298773pt;}
._7{width:6.852480pt;}
._d{width:7.755520pt;}
._c{width:9.083520pt;}
._9{width:11.966720pt;}
._15{width:13.404160pt;}
._a{width:14.873600pt;}
._16{width:18.076160pt;}
._17{width:19.104640pt;}
._5{width:21.354240pt;}
._4{width:22.310400pt;}
._1a{width:24.317440pt;}
._1b{width:25.259520pt;}
._19{width:30.794240pt;}
._18{width:31.893333pt;}
.fs1{font-size:26.880000pt;}
.fs9{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:19.360000pt;}
.y5{bottom:42.080000pt;}
.y4{bottom:74.746667pt;}
.y8{bottom:82.080000pt;}
.y7{bottom:97.440000pt;}
.yb4{bottom:107.840000pt;}
.y6d{bottom:113.280000pt;}
.y2c{bottom:123.200000pt;}
.y8d{bottom:128.160000pt;}
.y6c{bottom:132.800000pt;}
.yb3{bottom:143.680000pt;}
.y8c{bottom:145.120000pt;}
.y2b{bottom:145.280000pt;}
.y6b{bottom:152.186667pt;}
.y2a{bottom:167.226667pt;}
.y8b{bottom:167.546667pt;}
.y6a{bottom:174.586667pt;}
.yb2{bottom:186.266667pt;}
.y29{bottom:189.146667pt;}
.yb1{bottom:203.226667pt;}
.y28{bottom:211.226667pt;}
.y8a{bottom:211.706667pt;}
.y69{bottom:219.706667pt;}
.yb0{bottom:220.026667pt;}
.y89{bottom:232.506667pt;}
.y27{bottom:233.146667pt;}
.yaf{bottom:236.826667pt;}
.y68{bottom:239.066667pt;}
.yae{bottom:253.786667pt;}
.y26{bottom:255.226667pt;}
.y67{bottom:258.426667pt;}
.yad{bottom:276.666667pt;}
.y25{bottom:277.146667pt;}
.y66{bottom:277.786667pt;}
.y4d{bottom:296.506667pt;}
.y65{bottom:297.146667pt;}
.y24{bottom:299.226667pt;}
.y23{bottom:314.746667pt;}
.yac{bottom:316.026667pt;}
.y64{bottom:316.666667pt;}
.y4c{bottom:316.986667pt;}
.yab{bottom:332.986667pt;}
.y22{bottom:335.066667pt;}
.y63{bottom:336.026667pt;}
.y4b{bottom:337.466667pt;}
.yaa{bottom:349.786667pt;}
.y62{bottom:355.386667pt;}
.y4a{bottom:357.946667pt;}
.ya9{bottom:366.746667pt;}
.y61{bottom:374.786667pt;}
.y49{bottom:378.306667pt;}
.ya7{bottom:383.586667pt;}
.ya8{bottom:388.866667pt;}
.y21{bottom:390.626667pt;}
.y48{bottom:398.786667pt;}
.ya6{bottom:400.386667pt;}
.y60{bottom:402.306667pt;}
.y20{bottom:408.226667pt;}
.ya5{bottom:417.346667pt;}
.y47{bottom:419.266667pt;}
.y5f{bottom:421.666667pt;}
.y1f{bottom:425.826667pt;}
.ya4{bottom:434.146667pt;}
.y46{bottom:439.746667pt;}
.y5e{bottom:441.026667pt;}
.y1e{bottom:443.586667pt;}
.ya3{bottom:456.546667pt;}
.y45{bottom:460.226667pt;}
.y5d{bottom:460.386667pt;}
.y1d{bottom:461.186667pt;}
.yd3{bottom:470.146667pt;}
.yd2{bottom:474.146667pt;}
.y1c{bottom:478.786667pt;}
.y5c{bottom:479.746667pt;}
.y44{bottom:480.546667pt;}
.yd1{bottom:482.466667pt;}
.yd0{bottom:486.466667pt;}
.ycf{bottom:494.786667pt;}
.y1b{bottom:496.386667pt;}
.yce{bottom:498.786667pt;}
.y5b{bottom:499.266667pt;}
.ya2{bottom:500.706667pt;}
.ycd{bottom:506.946667pt;}
.y88{bottom:508.226667pt;}
.y43{bottom:509.026667pt;}
.ya1{bottom:510.786667pt;}
.ycc{bottom:510.946667pt;}
.y1a{bottom:513.986667pt;}
.y5a{bottom:518.626667pt;}
.ycb{bottom:519.266667pt;}
.yca{bottom:523.266667pt;}
.y42{bottom:528.386667pt;}
.yc9{bottom:531.586667pt;}
.y19{bottom:531.746667pt;}
.y87{bottom:535.586667pt;}
.y59{bottom:537.986667pt;}
.yc8{bottom:543.746667pt;}
.y41{bottom:547.746667pt;}
.y18{bottom:549.346667pt;}
.y86{bottom:555.106667pt;}
.yc7{bottom:556.066667pt;}
.y58{bottom:557.346667pt;}
.yc6{bottom:560.066667pt;}
.y17{bottom:566.946667pt;}
.yc5{bottom:568.386667pt;}
.y40{bottom:570.306667pt;}
.yc4{bottom:572.386667pt;}
.yc3{bottom:581.186667pt;}
.y85{bottom:582.466667pt;}
.y16{bottom:584.546667pt;}
.y57{bottom:584.893333pt;}
.yc2{bottom:597.053333pt;}
.y84{bottom:601.853333pt;}
.y15{bottom:602.173333pt;}
.y56{bottom:604.253333pt;}
.yc1{bottom:613.853333pt;}
.y3e{bottom:615.293333pt;}
.y14{bottom:619.933333pt;}
.y3f{bottom:620.573333pt;}
.y83{bottom:621.373333pt;}
.y55{bottom:623.613333pt;}
.yc0{bottom:630.653333pt;}
.y3d{bottom:634.653333pt;}
.y13{bottom:637.533333pt;}
.y82{bottom:641.693333pt;}
.y54{bottom:642.973333pt;}
.y3c{bottom:654.013333pt;}
.y12{bottom:655.133333pt;}
.y81{bottom:661.213333pt;}
.y52{bottom:662.333333pt;}
.ybf{bottom:666.173333pt;}
.y53{bottom:667.613333pt;}
.y11{bottom:672.733333pt;}
.y3b{bottom:681.533333pt;}
.y80{bottom:681.693333pt;}
.y51{bottom:681.853333pt;}
.ybe{bottom:683.133333pt;}
.ybd{bottom:699.933333pt;}
.y3a{bottom:700.893333pt;}
.y7f{bottom:702.013333pt;}
.y10{bottom:703.133333pt;}
.y50{bottom:704.413333pt;}
.ya0{bottom:710.173333pt;}
.y39{bottom:720.253333pt;}
.y7e{bottom:721.533333pt;}
.y9e{bottom:726.973333pt;}
.y9f{bottom:732.253333pt;}
.ybc{bottom:735.453333pt;}
.y38{bottom:739.613333pt;}
.y7d{bottom:741.853333pt;}
.y9c{bottom:743.933333pt;}
.y4f{bottom:748.573333pt;}
.y9d{bottom:749.213333pt;}
.ybb{bottom:752.413333pt;}
.yf{bottom:754.013333pt;}
.y37{bottom:758.973333pt;}
.y9b{bottom:760.733333pt;}
.y7c{bottom:761.213333pt;}
.y4e{bottom:763.933333pt;}
.yba{bottom:769.213333pt;}
.ye{bottom:772.413333pt;}
.y7b{bottom:780.733333pt;}
.y9a{bottom:783.133333pt;}
.y36{bottom:786.493333pt;}
.yd{bottom:790.813333pt;}
.y7a{bottom:801.213333pt;}
.yb9{bottom:804.773333pt;}
.y35{bottom:805.893333pt;}
.yc{bottom:809.253333pt;}
.y79{bottom:821.573333pt;}
.y34{bottom:825.253333pt;}
.y99{bottom:825.733333pt;}
.y78{bottom:841.093333pt;}
.yb{bottom:842.373333pt;}
.y98{bottom:843.653333pt;}
.y33{bottom:844.613333pt;}
.yb8{bottom:857.093333pt;}
.y97{bottom:860.453333pt;}
.y77{bottom:861.413333pt;}
.y32{bottom:864.133333pt;}
.ya{bottom:867.493333pt;}
.y96{bottom:878.373333pt;}
.y76{bottom:880.773333pt;}
.y31{bottom:886.693333pt;}
.y9{bottom:892.773333pt;}
.y95{bottom:895.173333pt;}
.y75{bottom:900.293333pt;}
.yb7{bottom:909.573333pt;}
.y94{bottom:913.253333pt;}
.y74{bottom:928.613333pt;}
.y30{bottom:929.253333pt;}
.y93{bottom:930.053333pt;}
.yb6{bottom:945.093333pt;}
.y92{bottom:947.013333pt;}
.y6{bottom:947.813333pt;}
.y73{bottom:948.133333pt;}
.y2{bottom:960.293333pt;}
.yb5{bottom:961.893333pt;}
.y91{bottom:963.813333pt;}
.y2f{bottom:971.493333pt;}
.y71{bottom:975.493333pt;}
.y90{bottom:980.613333pt;}
.y72{bottom:980.773333pt;}
.y2e{bottom:993.573333pt;}
.y70{bottom:994.853333pt;}
.y8f{bottom:997.573333pt;}
.y6e{bottom:1014.213333pt;}
.y8e{bottom:1014.373333pt;}
.y2d{bottom:1015.493333pt;}
.y6f{bottom:1019.493333pt;}
.y1{bottom:1052.000000pt;}
.h4{height:26.381250pt;}
.hf{height:36.431250pt;}
.h2{height:37.310625pt;}
.h9{height:42.063437pt;}
.h15{height:42.084375pt;}
.h11{height:43.905937pt;}
.hd{height:46.220625pt;}
.h5{height:46.635625pt;}
.h7{height:52.134375pt;}
.hb{height:53.535000pt;}
.ha{height:56.187500pt;}
.he{height:57.787500pt;}
.h12{height:58.563750pt;}
.h13{height:60.288750pt;}
.h10{height:60.519362pt;}
.h6{height:67.837500pt;}
.h8{height:74.729375pt;}
.h14{height:75.465000pt;}
.hc{height:81.046875pt;}
.h3{height:87.392000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:82.560000pt;}
.w4{width:531.933333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:44.160000pt;}
.x2{left:75.674667pt;}
.x1{left:94.591988pt;}
.x7{left:97.311988pt;}
.x28{left:98.431988pt;}
.x29{left:100.351988pt;}
.x2a{left:101.791988pt;}
.x2b{left:103.711988pt;}
.xc{left:107.871988pt;}
.x1c{left:119.871988pt;}
.xe{left:121.311988pt;}
.x18{left:131.231976pt;}
.x19{left:138.426655pt;}
.xb{left:141.786655pt;}
.x24{left:150.746655pt;}
.x11{left:157.306655pt;}
.x16{left:166.586655pt;}
.xa{left:175.066655pt;}
.x3{left:176.666667pt;}
.x8{left:183.226655pt;}
.x9{left:185.946655pt;}
.x1f{left:193.146643pt;}
.x20{left:202.906655pt;}
.x5{left:220.200000pt;}
.xf{left:226.906643pt;}
.x10{left:229.466655pt;}
.x17{left:234.586655pt;}
.x1a{left:240.346643pt;}
.x14{left:244.986643pt;}
.x15{left:250.146655pt;}
.x13{left:253.026655pt;}
.xd{left:265.346655pt;}
.x27{left:286.626655pt;}
.x6{left:393.506655pt;}
.x21{left:414.306643pt;}
.x22{left:426.653322pt;}
.x25{left:506.333310pt;}
.x26{left:513.533322pt;}
.x23{left:633.093322pt;}
.x1d{left:640.453310pt;}
.x1e{left:647.653322pt;}
.x1b{left:672.933322pt;}
.x12{left:680.293322pt;}
}




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