
    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_6faa010285059250420052cd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bf1a9e0e2f4466087d473016.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_b17909fc1947408270144d07.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_16638d31f93b56186d770f56.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f72b1e2acae68d51ad10ab60.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_b936552fa90ee6d0226ed707.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c26981c70ae8cd52ef32acfe.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_002333b6d796f90d72e1ee74.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-87.840000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.018000px;}
.ls8{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:25.308000px;}
.lsa{letter-spacing:52.668000px;}
.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:-19.457280px;}
.ws7{word-spacing:-19.431360px;}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.482000px;}
.ws9{word-spacing:-13.140000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.170000px;}
._1{width:1.002000px;}
._7{width:2.390400px;}
._6{width:4.141440px;}
._9{width:5.377680px;}
._3{width:6.756480px;}
._8{width:7.779120px;}
._4{width:9.630960px;}
._5{width:11.189040px;}
._18{width:12.295920px;}
._16{width:15.156000px;}
._17{width:17.118000px;}
._1d{width:18.198000px;}
._19{width:19.278000px;}
._d{width:20.358000px;}
._e{width:22.248000px;}
._c{width:23.328000px;}
._b{width:24.588000px;}
._a{width:25.758000px;}
._f{width:27.810000px;}
._20{width:28.920000px;}
._1a{width:29.988000px;}
._10{width:31.536000px;}
._11{width:32.802000px;}
._1f{width:33.810000px;}
._22{width:35.262000px;}
._14{width:36.450000px;}
._15{width:37.566000px;}
._1e{width:39.420000px;}
._13{width:40.896000px;}
._12{width:42.282000px;}
._21{width:47.520000px;}
._23{width:55.278000px;}
._1c{width:63.234000px;}
._1b{width:64.260000px;}
._2{width:1169.580000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y3c{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y3a{bottom:39.270000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y38{bottom:68.430000px;}
.y37{bottom:88.410000px;}
.y10b{bottom:105.660000px;}
.y36{bottom:108.210000px;}
.y76{bottom:109.980000px;}
.y2c{bottom:114.480000px;}
.y10a{bottom:123.840000px;}
.y75{bottom:127.980000px;}
.y35{bottom:128.010000px;}
.yde{bottom:129.960000px;}
.yae{bottom:135.720000px;}
.y2b{bottom:142.380000px;}
.y74{bottom:147.780000px;}
.y34{bottom:147.810000px;}
.y109{bottom:150.660000px;}
.yad{bottom:153.540000px;}
.ydd{bottom:165.600000px;}
.y33{bottom:167.610000px;}
.y2a{bottom:170.280000px;}
.yac{bottom:171.360000px;}
.y108{bottom:177.480000px;}
.y73{bottom:180.540000px;}
.ydc{bottom:183.420000px;}
.y32{bottom:187.590000px;}
.yab{bottom:189.180000px;}
.y2d{bottom:194.220000px;}
.y29{bottom:198.180000px;}
.y72{bottom:198.360000px;}
.ydb{bottom:201.240000px;}
.y107{bottom:204.480000px;}
.yaa{bottom:207.210000px;}
.y31{bottom:207.390000px;}
.y3b{bottom:213.690000px;}
.y71{bottom:216.210000px;}
.yda{bottom:219.270000px;}
.ya9{bottom:225.030000px;}
.y30{bottom:227.190000px;}
.y106{bottom:231.330000px;}
.y39{bottom:233.490000px;}
.y70{bottom:234.210000px;}
.yd9{bottom:237.090000px;}
.ya8{bottom:242.850000px;}
.y28{bottom:244.290000px;}
.y6f{bottom:252.030000px;}
.yd8{bottom:254.910000px;}
.y105{bottom:258.150000px;}
.ya7{bottom:260.670000px;}
.y6e{bottom:269.850000px;}
.yd7{bottom:272.730000px;}
.y2e{bottom:277.455000px;}
.ya6{bottom:278.490000px;}
.y104{bottom:284.970000px;}
.y6d{bottom:287.670000px;}
.y27{bottom:290.190000px;}
.yd6{bottom:292.530000px;}
.ya5{bottom:298.470000px;}
.y6c{bottom:305.490000px;}
.y103{bottom:311.790000px;}
.y6b{bottom:323.490000px;}
.yd5{bottom:325.470000px;}
.ya4{bottom:331.230000px;}
.y26{bottom:337.530000px;}
.y102{bottom:338.610000px;}
.y6a{bottom:341.310000px;}
.yd4{bottom:343.290000px;}
.ya3{bottom:349.050000px;}
.y69{bottom:359.130000px;}
.y25{bottom:360.930000px;}
.yd3{bottom:361.110000px;}
.y101{bottom:365.610000px;}
.ya2{bottom:366.870000px;}
.y24{bottom:378.930000px;}
.ya1{bottom:384.690000px;}
.y68{bottom:385.950000px;}
.y100{bottom:392.430000px;}
.y23{bottom:396.750000px;}
.ya0{bottom:402.690000px;}
.y67{bottom:403.770000px;}
.yd2{bottom:414.570000px;}
.y22{bottom:416.370000px;}
.yff{bottom:419.250000px;}
.y9f{bottom:420.510000px;}
.y66{bottom:421.590000px;}
.yd1{bottom:432.570000px;}
.y65{bottom:439.590000px;}
.y21{bottom:440.130000px;}
.y2f{bottom:441.210000px;}
.yfe{bottom:446.115000px;}
.y9e{bottom:447.375000px;}
.yd0{bottom:450.435000px;}
.y64{bottom:457.455000px;}
.y20{bottom:464.115000px;}
.y9d{bottom:465.195000px;}
.ycf{bottom:468.255000px;}
.yfd{bottom:472.935000px;}
.y63{bottom:475.275000px;}
.y9c{bottom:483.015000px;}
.yce{bottom:486.075000px;}
.y1f{bottom:487.875000px;}
.y62{bottom:493.095000px;}
.yfc{bottom:499.935000px;}
.y9b{bottom:500.835000px;}
.ycd{bottom:503.895000px;}
.y61{bottom:510.915000px;}
.y1e{bottom:511.635000px;}
.y9a{bottom:518.835000px;}
.ycc{bottom:521.895000px;}
.yfb{bottom:526.755000px;}
.y60{bottom:528.915000px;}
.y1d{bottom:535.215000px;}
.y99{bottom:536.655000px;}
.ycb{bottom:539.715000px;}
.y5f{bottom:546.735000px;}
.yfa{bottom:553.575000px;}
.y98{bottom:554.475000px;}
.y1c{bottom:556.995000px;}
.yca{bottom:557.535000px;}
.y5e{bottom:564.555000px;}
.yc9{bottom:575.355000px;}
.yf9{bottom:580.395000px;}
.y97{bottom:581.295000px;}
.y1b{bottom:583.455000px;}
.y5d{bottom:591.375000px;}
.yc8{bottom:593.175000px;}
.y96{bottom:599.115000px;}
.yf8{bottom:607.215000px;}
.y5c{bottom:609.195000px;}
.yc7{bottom:613.155000px;}
.y1a{bottom:614.235000px;}
.y95{bottom:617.115000px;}
.y5b{bottom:627.015000px;}
.yf7{bottom:634.035000px;}
.y94{bottom:634.935000px;}
.yc6{bottom:636.915000px;}
.y5a{bottom:645.015000px;}
.y93{bottom:652.755000px;}
.yc5{bottom:654.735000px;}
.yf6{bottom:661.035000px;}
.y59{bottom:662.835000px;}
.y19{bottom:663.015000px;}
.y92{bottom:670.575000px;}
.yc4{bottom:672.555000px;}
.yf5{bottom:678.885000px;}
.y58{bottom:680.685000px;}
.y18{bottom:684.825000px;}
.yc3{bottom:690.405000px;}
.yf4{bottom:696.705000px;}
.y91{bottom:697.425000px;}
.y57{bottom:698.505000px;}
.yc2{bottom:708.225000px;}
.yf3{bottom:714.525000px;}
.y90{bottom:715.245000px;}
.y56{bottom:718.305000px;}
.yc1{bottom:726.225000px;}
.yf2{bottom:732.345000px;}
.y8f{bottom:733.245000px;}
.y17{bottom:733.425000px;}
.yc0{bottom:744.045000px;}
.yf1{bottom:750.165000px;}
.y8e{bottom:751.065000px;}
.y55{bottom:751.245000px;}
.ybf{bottom:761.865000px;}
.yf0{bottom:768.165000px;}
.y8d{bottom:768.885000px;}
.y54{bottom:769.065000px;}
.ybe{bottom:781.665000px;}
.yef{bottom:785.985000px;}
.y8c{bottom:786.705000px;}
.y53{bottom:786.885000px;}
.y16{bottom:787.065000px;}
.yee{bottom:803.805000px;}
.y8b{bottom:804.525000px;}
.y52{bottom:804.705000px;}
.y15{bottom:814.785000px;}
.yed{bottom:821.625000px;}
.y51{bottom:822.525000px;}
.ybd{bottom:823.425000px;}
.y8a{bottom:824.505000px;}
.yec{bottom:839.445000px;}
.y50{bottom:840.345000px;}
.ybc{bottom:841.425000px;}
.y14{bottom:851.865000px;}
.y89{bottom:857.265000px;}
.yeb{bottom:857.445000px;}
.y4f{bottom:858.345000px;}
.ybb{bottom:859.245000px;}
.y13{bottom:874.725000px;}
.y88{bottom:875.085000px;}
.yea{bottom:875.265000px;}
.y4e{bottom:876.165000px;}
.yba{bottom:877.065000px;}
.y12{bottom:892.005000px;}
.y87{bottom:892.905000px;}
.ye9{bottom:893.085000px;}
.y4d{bottom:893.985000px;}
.yb9{bottom:894.885000px;}
.y11{bottom:909.465000px;}
.y86{bottom:910.770000px;}
.ye8{bottom:910.950000px;}
.y4c{bottom:911.850000px;}
.yb8{bottom:914.730000px;}
.y10{bottom:927.870000px;}
.y85{bottom:928.590000px;}
.ye7{bottom:928.770000px;}
.y4b{bottom:929.670000px;}
.yf{bottom:945.510000px;}
.y84{bottom:946.590000px;}
.y4a{bottom:947.670000px;}
.y83{bottom:964.410000px;}
.ye6{bottom:964.590000px;}
.yb7{bottom:965.490000px;}
.y49{bottom:974.490000px;}
.y82{bottom:982.230000px;}
.ye5{bottom:982.410000px;}
.yb6{bottom:983.310000px;}
.ye{bottom:985.650000px;}
.y48{bottom:992.310000px;}
.yd{bottom:997.710000px;}
.ye4{bottom:1000.230000px;}
.yb5{bottom:1001.130000px;}
.y81{bottom:1009.050000px;}
.yc{bottom:1009.770000px;}
.y47{bottom:1010.130000px;}
.ye3{bottom:1018.050000px;}
.yb4{bottom:1018.950000px;}
.yb{bottom:1021.830000px;}
.y80{bottom:1026.870000px;}
.y46{bottom:1027.950000px;}
.ye2{bottom:1035.870000px;}
.ya{bottom:1036.410000px;}
.yb3{bottom:1036.770000px;}
.y7f{bottom:1044.870000px;}
.y45{bottom:1045.770000px;}
.ye1{bottom:1053.870000px;}
.yb2{bottom:1054.770000px;}
.y9{bottom:1061.970000px;}
.y7e{bottom:1062.690000px;}
.y44{bottom:1063.770000px;}
.ye0{bottom:1071.690000px;}
.yb1{bottom:1074.570000px;}
.y7d{bottom:1080.510000px;}
.y43{bottom:1081.590000px;}
.y8{bottom:1087.170000px;}
.ydf{bottom:1089.510000px;}
.y7c{bottom:1098.330000px;}
.y42{bottom:1099.410000px;}
.yb0{bottom:1107.330000px;}
.y7b{bottom:1116.150000px;}
.y7{bottom:1116.870000px;}
.y41{bottom:1117.230000px;}
.yaf{bottom:1125.150000px;}
.y40{bottom:1135.050000px;}
.y7a{bottom:1142.970000px;}
.y3f{bottom:1153.080000px;}
.y79{bottom:1161.000000px;}
.y6{bottom:1165.860000px;}
.y3e{bottom:1170.900000px;}
.y78{bottom:1178.820000px;}
.y3d{bottom:1190.700000px;}
.y77{bottom:1196.640000px;}
.h2{height:31.135500px;}
.h16{height:37.705078px;}
.h9{height:40.985156px;}
.h3{height:52.998047px;}
.h10{height:54.421875px;}
.h12{height:55.291992px;}
.h17{height:55.503491px;}
.h14{height:58.621992px;}
.ha{height:58.651172px;}
.h15{height:58.763250px;}
.hb{height:60.226875px;}
.he{height:65.010937px;}
.h4{height:65.884219px;}
.hd{height:66.757500px;}
.hf{height:72.562500px;}
.h11{height:78.367500px;}
.hc{height:82.676953px;}
.h7{height:84.898125px;}
.h8{height:90.703125px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h13{height:307.620000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x13{left:10.800000px;}
.x12{left:40.140000px;}
.x1{left:45.364500px;}
.x14{left:50.940000px;}
.x7{left:54.000000px;}
.x10{left:65.160000px;}
.xd{left:72.000000px;}
.x15{left:80.856000px;}
.x17{left:108.036000px;}
.x2{left:220.210500px;}
.xe{left:249.870000px;}
.xa{left:269.715000px;}
.x3{left:271.330500px;}
.xb{left:290.955000px;}
.x11{left:314.355000px;}
.x8{left:322.275000px;}
.x9{left:364.395000px;}
.xc{left:378.795000px;}
.xf{left:396.975000px;}
.x6{left:446.505000px;}
.x16{left:473.505000px;}
.x19{left:500.505000px;}
.x18{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:22.496000pt;}
.lsa{letter-spacing:46.816000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws7{word-spacing:-17.272320pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.984000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.040000pt;}
._1{width:0.890667pt;}
._7{width:2.124800pt;}
._6{width:3.681280pt;}
._9{width:4.780160pt;}
._3{width:6.005760pt;}
._8{width:6.914773pt;}
._4{width:8.560853pt;}
._5{width:9.945813pt;}
._18{width:10.929707pt;}
._16{width:13.472000pt;}
._17{width:15.216000pt;}
._1d{width:16.176000pt;}
._19{width:17.136000pt;}
._d{width:18.096000pt;}
._e{width:19.776000pt;}
._c{width:20.736000pt;}
._b{width:21.856000pt;}
._a{width:22.896000pt;}
._f{width:24.720000pt;}
._20{width:25.706667pt;}
._1a{width:26.656000pt;}
._10{width:28.032000pt;}
._11{width:29.157333pt;}
._1f{width:30.053333pt;}
._22{width:31.344000pt;}
._14{width:32.400000pt;}
._15{width:33.392000pt;}
._1e{width:35.040000pt;}
._13{width:36.352000pt;}
._12{width:37.584000pt;}
._21{width:42.240000pt;}
._23{width:49.136000pt;}
._1c{width:56.208000pt;}
._1b{width:57.120000pt;}
._2{width:1039.626667pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y3c{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y3a{bottom:34.906667pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y38{bottom:60.826667pt;}
.y37{bottom:78.586667pt;}
.y10b{bottom:93.920000pt;}
.y36{bottom:96.186667pt;}
.y76{bottom:97.760000pt;}
.y2c{bottom:101.760000pt;}
.y10a{bottom:110.080000pt;}
.y75{bottom:113.760000pt;}
.y35{bottom:113.786667pt;}
.yde{bottom:115.520000pt;}
.yae{bottom:120.640000pt;}
.y2b{bottom:126.560000pt;}
.y74{bottom:131.360000pt;}
.y34{bottom:131.386667pt;}
.y109{bottom:133.920000pt;}
.yad{bottom:136.480000pt;}
.ydd{bottom:147.200000pt;}
.y33{bottom:148.986667pt;}
.y2a{bottom:151.360000pt;}
.yac{bottom:152.320000pt;}
.y108{bottom:157.760000pt;}
.y73{bottom:160.480000pt;}
.ydc{bottom:163.040000pt;}
.y32{bottom:166.746667pt;}
.yab{bottom:168.160000pt;}
.y2d{bottom:172.640000pt;}
.y29{bottom:176.160000pt;}
.y72{bottom:176.320000pt;}
.ydb{bottom:178.880000pt;}
.y107{bottom:181.760000pt;}
.yaa{bottom:184.186667pt;}
.y31{bottom:184.346667pt;}
.y3b{bottom:189.946667pt;}
.y71{bottom:192.186667pt;}
.yda{bottom:194.906667pt;}
.ya9{bottom:200.026667pt;}
.y30{bottom:201.946667pt;}
.y106{bottom:205.626667pt;}
.y39{bottom:207.546667pt;}
.y70{bottom:208.186667pt;}
.yd9{bottom:210.746667pt;}
.ya8{bottom:215.866667pt;}
.y28{bottom:217.146667pt;}
.y6f{bottom:224.026667pt;}
.yd8{bottom:226.586667pt;}
.y105{bottom:229.466667pt;}
.ya7{bottom:231.706667pt;}
.y6e{bottom:239.866667pt;}
.yd7{bottom:242.426667pt;}
.y2e{bottom:246.626667pt;}
.ya6{bottom:247.546667pt;}
.y104{bottom:253.306667pt;}
.y6d{bottom:255.706667pt;}
.y27{bottom:257.946667pt;}
.yd6{bottom:260.026667pt;}
.ya5{bottom:265.306667pt;}
.y6c{bottom:271.546667pt;}
.y103{bottom:277.146667pt;}
.y6b{bottom:287.546667pt;}
.yd5{bottom:289.306667pt;}
.ya4{bottom:294.426667pt;}
.y26{bottom:300.026667pt;}
.y102{bottom:300.986667pt;}
.y6a{bottom:303.386667pt;}
.yd4{bottom:305.146667pt;}
.ya3{bottom:310.266667pt;}
.y69{bottom:319.226667pt;}
.y25{bottom:320.826667pt;}
.yd3{bottom:320.986667pt;}
.y101{bottom:324.986667pt;}
.ya2{bottom:326.106667pt;}
.y24{bottom:336.826667pt;}
.ya1{bottom:341.946667pt;}
.y68{bottom:343.066667pt;}
.y100{bottom:348.826667pt;}
.y23{bottom:352.666667pt;}
.ya0{bottom:357.946667pt;}
.y67{bottom:358.906667pt;}
.yd2{bottom:368.506667pt;}
.y22{bottom:370.106667pt;}
.yff{bottom:372.666667pt;}
.y9f{bottom:373.786667pt;}
.y66{bottom:374.746667pt;}
.yd1{bottom:384.506667pt;}
.y65{bottom:390.746667pt;}
.y21{bottom:391.226667pt;}
.y2f{bottom:392.186667pt;}
.yfe{bottom:396.546667pt;}
.y9e{bottom:397.666667pt;}
.yd0{bottom:400.386667pt;}
.y64{bottom:406.626667pt;}
.y20{bottom:412.546667pt;}
.y9d{bottom:413.506667pt;}
.ycf{bottom:416.226667pt;}
.yfd{bottom:420.386667pt;}
.y63{bottom:422.466667pt;}
.y9c{bottom:429.346667pt;}
.yce{bottom:432.066667pt;}
.y1f{bottom:433.666667pt;}
.y62{bottom:438.306667pt;}
.yfc{bottom:444.386667pt;}
.y9b{bottom:445.186667pt;}
.ycd{bottom:447.906667pt;}
.y61{bottom:454.146667pt;}
.y1e{bottom:454.786667pt;}
.y9a{bottom:461.186667pt;}
.ycc{bottom:463.906667pt;}
.yfb{bottom:468.226667pt;}
.y60{bottom:470.146667pt;}
.y1d{bottom:475.746667pt;}
.y99{bottom:477.026667pt;}
.ycb{bottom:479.746667pt;}
.y5f{bottom:485.986667pt;}
.yfa{bottom:492.066667pt;}
.y98{bottom:492.866667pt;}
.y1c{bottom:495.106667pt;}
.yca{bottom:495.586667pt;}
.y5e{bottom:501.826667pt;}
.yc9{bottom:511.426667pt;}
.yf9{bottom:515.906667pt;}
.y97{bottom:516.706667pt;}
.y1b{bottom:518.626667pt;}
.y5d{bottom:525.666667pt;}
.yc8{bottom:527.266667pt;}
.y96{bottom:532.546667pt;}
.yf8{bottom:539.746667pt;}
.y5c{bottom:541.506667pt;}
.yc7{bottom:545.026667pt;}
.y1a{bottom:545.986667pt;}
.y95{bottom:548.546667pt;}
.y5b{bottom:557.346667pt;}
.yf7{bottom:563.586667pt;}
.y94{bottom:564.386667pt;}
.yc6{bottom:566.146667pt;}
.y5a{bottom:573.346667pt;}
.y93{bottom:580.226667pt;}
.yc5{bottom:581.986667pt;}
.yf6{bottom:587.586667pt;}
.y59{bottom:589.186667pt;}
.y19{bottom:589.346667pt;}
.y92{bottom:596.066667pt;}
.yc4{bottom:597.826667pt;}
.yf5{bottom:603.453333pt;}
.y58{bottom:605.053333pt;}
.y18{bottom:608.733333pt;}
.yc3{bottom:613.693333pt;}
.yf4{bottom:619.293333pt;}
.y91{bottom:619.933333pt;}
.y57{bottom:620.893333pt;}
.yc2{bottom:629.533333pt;}
.yf3{bottom:635.133333pt;}
.y90{bottom:635.773333pt;}
.y56{bottom:638.493333pt;}
.yc1{bottom:645.533333pt;}
.yf2{bottom:650.973333pt;}
.y8f{bottom:651.773333pt;}
.y17{bottom:651.933333pt;}
.yc0{bottom:661.373333pt;}
.yf1{bottom:666.813333pt;}
.y8e{bottom:667.613333pt;}
.y55{bottom:667.773333pt;}
.ybf{bottom:677.213333pt;}
.yf0{bottom:682.813333pt;}
.y8d{bottom:683.453333pt;}
.y54{bottom:683.613333pt;}
.ybe{bottom:694.813333pt;}
.yef{bottom:698.653333pt;}
.y8c{bottom:699.293333pt;}
.y53{bottom:699.453333pt;}
.y16{bottom:699.613333pt;}
.yee{bottom:714.493333pt;}
.y8b{bottom:715.133333pt;}
.y52{bottom:715.293333pt;}
.y15{bottom:724.253333pt;}
.yed{bottom:730.333333pt;}
.y51{bottom:731.133333pt;}
.ybd{bottom:731.933333pt;}
.y8a{bottom:732.893333pt;}
.yec{bottom:746.173333pt;}
.y50{bottom:746.973333pt;}
.ybc{bottom:747.933333pt;}
.y14{bottom:757.213333pt;}
.y89{bottom:762.013333pt;}
.yeb{bottom:762.173333pt;}
.y4f{bottom:762.973333pt;}
.ybb{bottom:763.773333pt;}
.y13{bottom:777.533333pt;}
.y88{bottom:777.853333pt;}
.yea{bottom:778.013333pt;}
.y4e{bottom:778.813333pt;}
.yba{bottom:779.613333pt;}
.y12{bottom:792.893333pt;}
.y87{bottom:793.693333pt;}
.ye9{bottom:793.853333pt;}
.y4d{bottom:794.653333pt;}
.yb9{bottom:795.453333pt;}
.y11{bottom:808.413333pt;}
.y86{bottom:809.573333pt;}
.ye8{bottom:809.733333pt;}
.y4c{bottom:810.533333pt;}
.yb8{bottom:813.093333pt;}
.y10{bottom:824.773333pt;}
.y85{bottom:825.413333pt;}
.ye7{bottom:825.573333pt;}
.y4b{bottom:826.373333pt;}
.yf{bottom:840.453333pt;}
.y84{bottom:841.413333pt;}
.y4a{bottom:842.373333pt;}
.y83{bottom:857.253333pt;}
.ye6{bottom:857.413333pt;}
.yb7{bottom:858.213333pt;}
.y49{bottom:866.213333pt;}
.y82{bottom:873.093333pt;}
.ye5{bottom:873.253333pt;}
.yb6{bottom:874.053333pt;}
.ye{bottom:876.133333pt;}
.y48{bottom:882.053333pt;}
.yd{bottom:886.853333pt;}
.ye4{bottom:889.093333pt;}
.yb5{bottom:889.893333pt;}
.y81{bottom:896.933333pt;}
.yc{bottom:897.573333pt;}
.y47{bottom:897.893333pt;}
.ye3{bottom:904.933333pt;}
.yb4{bottom:905.733333pt;}
.yb{bottom:908.293333pt;}
.y80{bottom:912.773333pt;}
.y46{bottom:913.733333pt;}
.ye2{bottom:920.773333pt;}
.ya{bottom:921.253333pt;}
.yb3{bottom:921.573333pt;}
.y7f{bottom:928.773333pt;}
.y45{bottom:929.573333pt;}
.ye1{bottom:936.773333pt;}
.yb2{bottom:937.573333pt;}
.y9{bottom:943.973333pt;}
.y7e{bottom:944.613333pt;}
.y44{bottom:945.573333pt;}
.ye0{bottom:952.613333pt;}
.yb1{bottom:955.173333pt;}
.y7d{bottom:960.453333pt;}
.y43{bottom:961.413333pt;}
.y8{bottom:966.373333pt;}
.ydf{bottom:968.453333pt;}
.y7c{bottom:976.293333pt;}
.y42{bottom:977.253333pt;}
.yb0{bottom:984.293333pt;}
.y7b{bottom:992.133333pt;}
.y7{bottom:992.773333pt;}
.y41{bottom:993.093333pt;}
.yaf{bottom:1000.133333pt;}
.y40{bottom:1008.933333pt;}
.y7a{bottom:1015.973333pt;}
.y3f{bottom:1024.960000pt;}
.y79{bottom:1032.000000pt;}
.y6{bottom:1036.320000pt;}
.y3e{bottom:1040.800000pt;}
.y78{bottom:1047.840000pt;}
.y3d{bottom:1058.400000pt;}
.y77{bottom:1063.680000pt;}
.h2{height:27.676000pt;}
.h16{height:33.515625pt;}
.h9{height:36.431250pt;}
.h3{height:47.109375pt;}
.h10{height:48.375000pt;}
.h12{height:49.148438pt;}
.h17{height:49.336436pt;}
.h14{height:52.108438pt;}
.ha{height:52.134375pt;}
.h15{height:52.234000pt;}
.hb{height:53.535000pt;}
.he{height:57.787500pt;}
.h4{height:58.563750pt;}
.hd{height:59.340000pt;}
.hf{height:64.500000pt;}
.h11{height:69.660000pt;}
.hc{height:73.490625pt;}
.h7{height:75.465000pt;}
.h8{height:80.625000pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h13{height:273.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x13{left:9.600000pt;}
.x12{left:35.680000pt;}
.x1{left:40.324000pt;}
.x14{left:45.280000pt;}
.x7{left:48.000000pt;}
.x10{left:57.920000pt;}
.xd{left:64.000000pt;}
.x15{left:71.872000pt;}
.x17{left:96.032000pt;}
.x2{left:195.742667pt;}
.xe{left:222.106667pt;}
.xa{left:239.746667pt;}
.x3{left:241.182667pt;}
.xb{left:258.626667pt;}
.x11{left:279.426667pt;}
.x8{left:286.466667pt;}
.x9{left:323.906667pt;}
.xc{left:336.706667pt;}
.xf{left:352.866667pt;}
.x6{left:396.893333pt;}
.x16{left:420.893333pt;}
.x19{left:444.893333pt;}
.x18{left:468.893333pt;}
.x4{left:682.213333pt;}
}




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