
    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_50a7cff37dfabfb5616965fc.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_0f700278f8f62c856aa0d312.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916016;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_ba29bbd3d37b9b6f41bb5a94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061035;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_e38c98ff298cd7f8fc87b843.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061035;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_b5d5dfbaaba4fa1facaedd1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v5{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.405600px;}
.ls4{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.243600px;}
.lsa{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.090600px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls9{letter-spacing:0.144720px;}
.ls1{letter-spacing:0.178560px;}
.ls6{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.181200px;}
.ls2{letter-spacing:0.253440px;}
.lsc{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.269280px;}
.ls7{letter-spacing:0.360000px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.wse{word-spacing:-14.833200px;}
.ws6{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.241200px;}
.ws1{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.969400px;}
.ws0{word-spacing:-11.700000px;}
.wsc{word-spacing:-11.654400px;}
.ws4{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.720000px;}
.ws5{word-spacing:-7.560000px;}
.wsd{word-spacing:-7.316400px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-3.924960px;}
._3{margin-left:-2.787120px;}
._0{margin-left:-1.495440px;}
._1{width:1.041120px;}
._2{width:2.131440px;}
._8{width:3.240240px;}
._6{width:5.014320px;}
._5{width:6.102000px;}
._7{width:7.220880px;}
._b{width:8.246880px;}
._d{width:9.630720px;}
._c{width:10.936080px;}
._a{width:12.011760px;}
._9{width:13.565520px;}
._e{width:16.647840px;}
._f{width:30.776400px;}
.fc2{color:transparent;}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:12.240000px;}
.fs5{font-size:30.240000px;}
.fs8{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:2.520000px;}
.yc2{bottom:3.240000px;}
.y4c{bottom:5.040000px;}
.y4f{bottom:5.760000px;}
.y67{bottom:7.200000px;}
.y6d{bottom:7.380000px;}
.ycb{bottom:11.700000px;}
.y4{bottom:18.000000px;}
.yca{bottom:25.560000px;}
.yb{bottom:44.856000px;}
.y32{bottom:45.756000px;}
.ya{bottom:57.456000px;}
.y9{bottom:72.396000px;}
.y8{bottom:87.516000px;}
.y83{bottom:91.296000px;}
.y9d{bottom:92.556000px;}
.ybf{bottom:92.916000px;}
.y3{bottom:97.950000px;}
.y7{bottom:102.456000px;}
.yf4{bottom:103.176000px;}
.yc6{bottom:103.896000px;}
.y82{bottom:109.296000px;}
.y9c{bottom:110.556000px;}
.ybe{bottom:110.916000px;}
.y6{bottom:117.396000px;}
.y62{bottom:120.456000px;}
.yf3{bottom:122.976000px;}
.y81{bottom:127.296000px;}
.y9b{bottom:128.556000px;}
.ybd{bottom:128.916000px;}
.yc5{bottom:129.636000px;}
.y61{bottom:138.456000px;}
.yf2{bottom:142.956000px;}
.y80{bottom:145.296000px;}
.y9a{bottom:146.556000px;}
.ybc{bottom:146.916000px;}
.yc4{bottom:155.550000px;}
.y60{bottom:156.450000px;}
.y2f{bottom:157.350000px;}
.y7f{bottom:163.290000px;}
.y99{bottom:164.550000px;}
.ybb{bottom:164.910000px;}
.y5f{bottom:174.450000px;}
.y2e{bottom:175.350000px;}
.yf1{bottom:177.690000px;}
.y7e{bottom:181.290000px;}
.yc3{bottom:181.470000px;}
.y98{bottom:182.550000px;}
.yba{bottom:182.910000px;}
.y5e{bottom:192.450000px;}
.y2d{bottom:193.350000px;}
.yc1{bottom:195.510000px;}
.yf0{bottom:197.490000px;}
.y7d{bottom:199.290000px;}
.y97{bottom:200.550000px;}
.yb9{bottom:200.910000px;}
.y5d{bottom:210.450000px;}
.y2c{bottom:211.350000px;}
.yc0{bottom:212.790000px;}
.y7c{bottom:217.290000px;}
.y96{bottom:218.550000px;}
.yb8{bottom:218.910000px;}
.y5c{bottom:228.450000px;}
.y2b{bottom:229.350000px;}
.yef{bottom:232.410000px;}
.y7b{bottom:235.290000px;}
.y95{bottom:236.550000px;}
.yb7{bottom:236.910000px;}
.y5b{bottom:246.450000px;}
.y2a{bottom:247.350000px;}
.yee{bottom:252.210000px;}
.y7a{bottom:253.290000px;}
.y94{bottom:254.550000px;}
.yb6{bottom:254.910000px;}
.y5a{bottom:264.495000px;}
.y29{bottom:265.395000px;}
.y79{bottom:271.335000px;}
.yed{bottom:272.055000px;}
.y93{bottom:272.595000px;}
.yb5{bottom:272.955000px;}
.y28{bottom:283.395000px;}
.y78{bottom:289.335000px;}
.y92{bottom:290.595000px;}
.yb4{bottom:290.955000px;}
.y59{bottom:300.495000px;}
.y27{bottom:301.395000px;}
.y77{bottom:307.335000px;}
.yec{bottom:307.695000px;}
.y91{bottom:308.595000px;}
.yb3{bottom:308.955000px;}
.y26{bottom:319.395000px;}
.y76{bottom:325.335000px;}
.y90{bottom:326.595000px;}
.yb2{bottom:326.955000px;}
.y58{bottom:336.495000px;}
.y25{bottom:337.395000px;}
.yeb{bottom:343.695000px;}
.y8f{bottom:344.595000px;}
.yb1{bottom:344.955000px;}
.y57{bottom:351.795000px;}
.y24{bottom:355.395000px;}
.yea{bottom:361.695000px;}
.y8e{bottom:362.595000px;}
.yb0{bottom:362.955000px;}
.y56{bottom:368.715000px;}
.y23{bottom:373.395000px;}
.ye9{bottom:379.695000px;}
.y8d{bottom:380.595000px;}
.yaf{bottom:380.955000px;}
.y55{bottom:385.815000px;}
.y22{bottom:391.395000px;}
.ye8{bottom:397.695000px;}
.y8c{bottom:398.595000px;}
.yae{bottom:398.955000px;}
.y54{bottom:402.735000px;}
.y21{bottom:409.395000px;}
.ye7{bottom:415.695000px;}
.y8b{bottom:416.595000px;}
.yad{bottom:416.955000px;}
.y53{bottom:419.835000px;}
.ye6{bottom:433.695000px;}
.y8a{bottom:434.595000px;}
.yac{bottom:434.955000px;}
.y52{bottom:436.935000px;}
.y20{bottom:445.215000px;}
.ye5{bottom:451.695000px;}
.y89{bottom:452.595000px;}
.yab{bottom:452.955000px;}
.y51{bottom:453.855000px;}
.ye4{bottom:469.695000px;}
.y88{bottom:470.595000px;}
.y50{bottom:470.955000px;}
.ye3{bottom:487.695000px;}
.y4e{bottom:487.875000px;}
.y87{bottom:488.595000px;}
.yaa{bottom:488.955000px;}
.y1f{bottom:496.335000px;}
.y4d{bottom:505.005000px;}
.ye2{bottom:505.725000px;}
.y86{bottom:506.625000px;}
.ya9{bottom:506.985000px;}
.y4b{bottom:521.925000px;}
.ye1{bottom:523.725000px;}
.y85{bottom:524.625000px;}
.ya8{bottom:524.985000px;}
.y1e{bottom:529.485000px;}
.ye0{bottom:541.725000px;}
.y4a{bottom:542.625000px;}
.ya7{bottom:542.985000px;}
.y1d{bottom:544.425000px;}
.y1c{bottom:559.545000px;}
.ydf{bottom:559.725000px;}
.y49{bottom:560.625000px;}
.ya6{bottom:560.985000px;}
.y1b{bottom:574.485000px;}
.y48{bottom:578.625000px;}
.ya5{bottom:578.985000px;}
.y1a{bottom:589.425000px;}
.yde{bottom:595.725000px;}
.y47{bottom:596.625000px;}
.ya4{bottom:596.985000px;}
.y19{bottom:604.545000px;}
.y46{bottom:614.625000px;}
.ya3{bottom:614.985000px;}
.y18{bottom:619.485000px;}
.y75{bottom:620.565000px;}
.ydd{bottom:631.365000px;}
.y45{bottom:632.625000px;}
.ya2{bottom:632.985000px;}
.y17{bottom:634.425000px;}
.y74{bottom:635.685000px;}
.ydc{bottom:648.645000px;}
.y16{bottom:649.545000px;}
.y44{bottom:650.625000px;}
.ya1{bottom:650.985000px;}
.y73{bottom:654.225000px;}
.ydb{bottom:665.925000px;}
.y43{bottom:668.625000px;}
.ya0{bottom:668.985000px;}
.y72{bottom:673.485000px;}
.y15{bottom:682.845000px;}
.yda{bottom:683.205000px;}
.y42{bottom:686.625000px;}
.y71{bottom:692.745000px;}
.yd9{bottom:700.485000px;}
.y41{bottom:704.625000px;}
.y9f{bottom:704.805000px;}
.y70{bottom:712.005000px;}
.yfe{bottom:714.885000px;}
.yd8{bottom:717.585000px;}
.y40{bottom:722.625000px;}
.y14{bottom:723.165000px;}
.y6f{bottom:731.265000px;}
.yfd{bottom:734.685000px;}
.yd7{bottom:734.865000px;}
.y3f{bottom:740.625000px;}
.y9e{bottom:740.985000px;}
.y13{bottom:746.025000px;}
.y6e{bottom:749.850000px;}
.yd6{bottom:752.190000px;}
.y3e{bottom:758.670000px;}
.y12{bottom:764.430000px;}
.y6c{bottom:768.390000px;}
.yd5{bottom:769.470000px;}
.y11{bottom:773.790000px;}
.y3d{bottom:776.670000px;}
.yd4{bottom:786.750000px;}
.y6b{bottom:786.930000px;}
.y10{bottom:787.470000px;}
.yfc{bottom:789.270000px;}
.y3c{bottom:794.670000px;}
.yd3{bottom:803.850000px;}
.y6a{bottom:805.470000px;}
.yf{bottom:805.830000px;}
.y3b{bottom:812.670000px;}
.yd2{bottom:821.130000px;}
.y69{bottom:824.010000px;}
.yfb{bottom:824.190000px;}
.ye{bottom:829.050000px;}
.y3a{bottom:830.670000px;}
.y68{bottom:843.270000px;}
.yfa{bottom:843.990000px;}
.yd1{bottom:847.050000px;}
.y39{bottom:848.670000px;}
.yd0{bottom:861.810000px;}
.y66{bottom:862.530000px;}
.yd{bottom:863.610000px;}
.y38{bottom:866.670000px;}
.ycf{bottom:875.670000px;}
.yf9{bottom:878.910000px;}
.y37{bottom:884.670000px;}
.y65{bottom:885.390000px;}
.yc{bottom:886.110000px;}
.yce{bottom:889.350000px;}
.yf8{bottom:898.710000px;}
.y84{bottom:902.670000px;}
.y64{bottom:903.030000px;}
.ycc{bottom:903.210000px;}
.y5{bottom:904.830000px;}
.yc9{bottom:917.790000px;}
.yf7{bottom:918.510000px;}
.y36{bottom:920.670000px;}
.y63{bottom:938.670000px;}
.y2{bottom:940.110000px;}
.yf6{bottom:953.430000px;}
.y35{bottom:956.670000px;}
.yc8{bottom:967.110000px;}
.yf5{bottom:973.230000px;}
.y34{bottom:974.670000px;}
.y33{bottom:992.700000px;}
.yc7{bottom:993.060000px;}
.y31{bottom:1040.220000px;}
.y1{bottom:1072.980000px;}
.y30{bottom:1076.220000px;}
.h7{height:8.570391px;}
.h1e{height:13.680000px;}
.h1d{height:13.860000px;}
.h12{height:16.200000px;}
.h10{height:16.380000px;}
.h14{height:16.920000px;}
.h15{height:17.100000px;}
.h13{height:17.136000px;}
.h1b{height:17.280000px;}
.h16{height:18.540000px;}
.h17{height:18.576000px;}
.hb{height:25.234453px;}
.h5{height:33.777422px;}
.h11{height:34.036523px;}
.h8{height:34.847578px;}
.h1c{height:36.720000px;}
.hc{height:38.100586px;}
.h6{height:40.254961px;}
.h19{height:42.164648px;}
.h18{height:43.234453px;}
.he{height:43.506914px;}
.hd{height:45.061523px;}
.hf{height:49.868086px;}
.ha{height:58.607578px;}
.h9{height:64.888594px;}
.h3{height:65.884219px;}
.h4{height:110.376000px;}
.h1a{height:218.190000px;}
.h1{height:1105.500000px;}
.h2{height:1105.739908px;}
.h0{height:1105.740000px;}
.w10{width:42.480000px;}
.w11{width:53.316000px;}
.w13{width:84.960000px;}
.w5{width:92.340000px;}
.w7{width:94.680000px;}
.w6{width:94.716000px;}
.w12{width:95.796000px;}
.wf{width:106.200000px;}
.w14{width:107.496000px;}
.w15{width:109.440000px;}
.w9{width:122.220000px;}
.wa{width:122.256000px;}
.wb{width:122.436000px;}
.wd{width:165.630000px;}
.we{width:165.675000px;}
.w4{width:165.810000px;}
.w8{width:183.270000px;}
.wc{width:672.450000px;}
.w3{width:677.310000px;}
.w1{width:807.750000px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x3d{left:10.620000px;}
.x38{left:13.680000px;}
.x34{left:16.920000px;}
.x3b{left:19.980000px;}
.x1c{left:21.810000px;}
.x31{left:24.705000px;}
.x11{left:28.440000px;}
.x3e{left:34.380000px;}
.x15{left:37.080000px;}
.x16{left:38.340000px;}
.x17{left:40.140000px;}
.x18{left:41.220000px;}
.x19{left:43.200000px;}
.x1a{left:44.280000px;}
.x21{left:47.520000px;}
.x20{left:50.580000px;}
.x30{left:51.696000px;}
.x24{left:55.080000px;}
.x1{left:72.359988px;}
.x7{left:77.075988px;}
.x2{left:80.496000px;}
.x5{left:90.395988px;}
.x2a{left:94.535988px;}
.x2c{left:98.135988px;}
.x25{left:120.815988px;}
.x2b{left:122.435988px;}
.x27{left:123.875988px;}
.x2d{left:155.910000px;}
.xc{left:171.029988px;}
.x33{left:186.690000px;}
.x3{left:195.879000px;}
.x32{left:201.989988px;}
.x35{left:229.170000px;}
.x8{left:233.849988px;}
.x2e{left:238.350000px;}
.x23{left:243.039000px;}
.x10{left:246.315000px;}
.xd{left:256.214988px;}
.xb{left:264.134988px;}
.xa{left:274.574988px;}
.x36{left:282.495000px;}
.x1f{left:286.059000px;}
.x22{left:292.899000px;}
.x37{left:324.975000px;}
.x9{left:328.214988px;}
.x12{left:338.655000px;}
.x28{left:366.734988px;}
.x1b{left:385.995000px;}
.xe{left:396.614988px;}
.x29{left:404.024988px;}
.x26{left:413.024988px;}
.x39{left:420.765000px;}
.x13{left:433.365000px;}
.x3a{left:505.725000px;}
.x1d{left:508.245000px;}
.x14{left:528.045000px;}
.x2f{left:569.850000px;}
.x3c{left:613.230000px;}
.x1e{left:630.690000px;}
.x4{left:676.224000px;}
.x6{left:735.839988px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v5{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.360533pt;}
.ls4{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.216533pt;}
.lsa{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.080533pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls9{letter-spacing:0.128640pt;}
.ls1{letter-spacing:0.158720pt;}
.ls6{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.161067pt;}
.ls2{letter-spacing:0.225280pt;}
.lsc{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.239360pt;}
.ls7{letter-spacing:0.320000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.185067pt;}
.ws6{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.881067pt;}
.ws1{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.639467pt;}
.ws0{word-spacing:-10.400000pt;}
.wsc{word-spacing:-10.359467pt;}
.ws4{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws5{word-spacing:-6.720000pt;}
.wsd{word-spacing:-6.503467pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-3.488853pt;}
._3{margin-left:-2.477440pt;}
._0{margin-left:-1.329280pt;}
._1{width:0.925440pt;}
._2{width:1.894613pt;}
._8{width:2.880213pt;}
._6{width:4.457173pt;}
._5{width:5.424000pt;}
._7{width:6.418560pt;}
._b{width:7.330560pt;}
._d{width:8.560640pt;}
._c{width:9.720960pt;}
._a{width:10.677120pt;}
._9{width:12.058240pt;}
._e{width:14.798080pt;}
._f{width:27.356800pt;}
.fs2{font-size:10.880000pt;}
.fs5{font-size:26.880000pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:2.240000pt;}
.yc2{bottom:2.880000pt;}
.y4c{bottom:4.480000pt;}
.y4f{bottom:5.120000pt;}
.y67{bottom:6.400000pt;}
.y6d{bottom:6.560000pt;}
.ycb{bottom:10.400000pt;}
.y4{bottom:16.000000pt;}
.yca{bottom:22.720000pt;}
.yb{bottom:39.872000pt;}
.y32{bottom:40.672000pt;}
.ya{bottom:51.072000pt;}
.y9{bottom:64.352000pt;}
.y8{bottom:77.792000pt;}
.y83{bottom:81.152000pt;}
.y9d{bottom:82.272000pt;}
.ybf{bottom:82.592000pt;}
.y3{bottom:87.066667pt;}
.y7{bottom:91.072000pt;}
.yf4{bottom:91.712000pt;}
.yc6{bottom:92.352000pt;}
.y82{bottom:97.152000pt;}
.y9c{bottom:98.272000pt;}
.ybe{bottom:98.592000pt;}
.y6{bottom:104.352000pt;}
.y62{bottom:107.072000pt;}
.yf3{bottom:109.312000pt;}
.y81{bottom:113.152000pt;}
.y9b{bottom:114.272000pt;}
.ybd{bottom:114.592000pt;}
.yc5{bottom:115.232000pt;}
.y61{bottom:123.072000pt;}
.yf2{bottom:127.072000pt;}
.y80{bottom:129.152000pt;}
.y9a{bottom:130.272000pt;}
.ybc{bottom:130.592000pt;}
.yc4{bottom:138.266667pt;}
.y60{bottom:139.066667pt;}
.y2f{bottom:139.866667pt;}
.y7f{bottom:145.146667pt;}
.y99{bottom:146.266667pt;}
.ybb{bottom:146.586667pt;}
.y5f{bottom:155.066667pt;}
.y2e{bottom:155.866667pt;}
.yf1{bottom:157.946667pt;}
.y7e{bottom:161.146667pt;}
.yc3{bottom:161.306667pt;}
.y98{bottom:162.266667pt;}
.yba{bottom:162.586667pt;}
.y5e{bottom:171.066667pt;}
.y2d{bottom:171.866667pt;}
.yc1{bottom:173.786667pt;}
.yf0{bottom:175.546667pt;}
.y7d{bottom:177.146667pt;}
.y97{bottom:178.266667pt;}
.yb9{bottom:178.586667pt;}
.y5d{bottom:187.066667pt;}
.y2c{bottom:187.866667pt;}
.yc0{bottom:189.146667pt;}
.y7c{bottom:193.146667pt;}
.y96{bottom:194.266667pt;}
.yb8{bottom:194.586667pt;}
.y5c{bottom:203.066667pt;}
.y2b{bottom:203.866667pt;}
.yef{bottom:206.586667pt;}
.y7b{bottom:209.146667pt;}
.y95{bottom:210.266667pt;}
.yb7{bottom:210.586667pt;}
.y5b{bottom:219.066667pt;}
.y2a{bottom:219.866667pt;}
.yee{bottom:224.186667pt;}
.y7a{bottom:225.146667pt;}
.y94{bottom:226.266667pt;}
.yb6{bottom:226.586667pt;}
.y5a{bottom:235.106667pt;}
.y29{bottom:235.906667pt;}
.y79{bottom:241.186667pt;}
.yed{bottom:241.826667pt;}
.y93{bottom:242.306667pt;}
.yb5{bottom:242.626667pt;}
.y28{bottom:251.906667pt;}
.y78{bottom:257.186667pt;}
.y92{bottom:258.306667pt;}
.yb4{bottom:258.626667pt;}
.y59{bottom:267.106667pt;}
.y27{bottom:267.906667pt;}
.y77{bottom:273.186667pt;}
.yec{bottom:273.506667pt;}
.y91{bottom:274.306667pt;}
.yb3{bottom:274.626667pt;}
.y26{bottom:283.906667pt;}
.y76{bottom:289.186667pt;}
.y90{bottom:290.306667pt;}
.yb2{bottom:290.626667pt;}
.y58{bottom:299.106667pt;}
.y25{bottom:299.906667pt;}
.yeb{bottom:305.506667pt;}
.y8f{bottom:306.306667pt;}
.yb1{bottom:306.626667pt;}
.y57{bottom:312.706667pt;}
.y24{bottom:315.906667pt;}
.yea{bottom:321.506667pt;}
.y8e{bottom:322.306667pt;}
.yb0{bottom:322.626667pt;}
.y56{bottom:327.746667pt;}
.y23{bottom:331.906667pt;}
.ye9{bottom:337.506667pt;}
.y8d{bottom:338.306667pt;}
.yaf{bottom:338.626667pt;}
.y55{bottom:342.946667pt;}
.y22{bottom:347.906667pt;}
.ye8{bottom:353.506667pt;}
.y8c{bottom:354.306667pt;}
.yae{bottom:354.626667pt;}
.y54{bottom:357.986667pt;}
.y21{bottom:363.906667pt;}
.ye7{bottom:369.506667pt;}
.y8b{bottom:370.306667pt;}
.yad{bottom:370.626667pt;}
.y53{bottom:373.186667pt;}
.ye6{bottom:385.506667pt;}
.y8a{bottom:386.306667pt;}
.yac{bottom:386.626667pt;}
.y52{bottom:388.386667pt;}
.y20{bottom:395.746667pt;}
.ye5{bottom:401.506667pt;}
.y89{bottom:402.306667pt;}
.yab{bottom:402.626667pt;}
.y51{bottom:403.426667pt;}
.ye4{bottom:417.506667pt;}
.y88{bottom:418.306667pt;}
.y50{bottom:418.626667pt;}
.ye3{bottom:433.506667pt;}
.y4e{bottom:433.666667pt;}
.y87{bottom:434.306667pt;}
.yaa{bottom:434.626667pt;}
.y1f{bottom:441.186667pt;}
.y4d{bottom:448.893333pt;}
.ye2{bottom:449.533333pt;}
.y86{bottom:450.333333pt;}
.ya9{bottom:450.653333pt;}
.y4b{bottom:463.933333pt;}
.ye1{bottom:465.533333pt;}
.y85{bottom:466.333333pt;}
.ya8{bottom:466.653333pt;}
.y1e{bottom:470.653333pt;}
.ye0{bottom:481.533333pt;}
.y4a{bottom:482.333333pt;}
.ya7{bottom:482.653333pt;}
.y1d{bottom:483.933333pt;}
.y1c{bottom:497.373333pt;}
.ydf{bottom:497.533333pt;}
.y49{bottom:498.333333pt;}
.ya6{bottom:498.653333pt;}
.y1b{bottom:510.653333pt;}
.y48{bottom:514.333333pt;}
.ya5{bottom:514.653333pt;}
.y1a{bottom:523.933333pt;}
.yde{bottom:529.533333pt;}
.y47{bottom:530.333333pt;}
.ya4{bottom:530.653333pt;}
.y19{bottom:537.373333pt;}
.y46{bottom:546.333333pt;}
.ya3{bottom:546.653333pt;}
.y18{bottom:550.653333pt;}
.y75{bottom:551.613333pt;}
.ydd{bottom:561.213333pt;}
.y45{bottom:562.333333pt;}
.ya2{bottom:562.653333pt;}
.y17{bottom:563.933333pt;}
.y74{bottom:565.053333pt;}
.ydc{bottom:576.573333pt;}
.y16{bottom:577.373333pt;}
.y44{bottom:578.333333pt;}
.ya1{bottom:578.653333pt;}
.y73{bottom:581.533333pt;}
.ydb{bottom:591.933333pt;}
.y43{bottom:594.333333pt;}
.ya0{bottom:594.653333pt;}
.y72{bottom:598.653333pt;}
.y15{bottom:606.973333pt;}
.yda{bottom:607.293333pt;}
.y42{bottom:610.333333pt;}
.y71{bottom:615.773333pt;}
.yd9{bottom:622.653333pt;}
.y41{bottom:626.333333pt;}
.y9f{bottom:626.493333pt;}
.y70{bottom:632.893333pt;}
.yfe{bottom:635.453333pt;}
.yd8{bottom:637.853333pt;}
.y40{bottom:642.333333pt;}
.y14{bottom:642.813333pt;}
.y6f{bottom:650.013333pt;}
.yfd{bottom:653.053333pt;}
.yd7{bottom:653.213333pt;}
.y3f{bottom:658.333333pt;}
.y9e{bottom:658.653333pt;}
.y13{bottom:663.133333pt;}
.y6e{bottom:666.533333pt;}
.yd6{bottom:668.613333pt;}
.y3e{bottom:674.373333pt;}
.y12{bottom:679.493333pt;}
.y6c{bottom:683.013333pt;}
.yd5{bottom:683.973333pt;}
.y11{bottom:687.813333pt;}
.y3d{bottom:690.373333pt;}
.yd4{bottom:699.333333pt;}
.y6b{bottom:699.493333pt;}
.y10{bottom:699.973333pt;}
.yfc{bottom:701.573333pt;}
.y3c{bottom:706.373333pt;}
.yd3{bottom:714.533333pt;}
.y6a{bottom:715.973333pt;}
.yf{bottom:716.293333pt;}
.y3b{bottom:722.373333pt;}
.yd2{bottom:729.893333pt;}
.y69{bottom:732.453333pt;}
.yfb{bottom:732.613333pt;}
.ye{bottom:736.933333pt;}
.y3a{bottom:738.373333pt;}
.y68{bottom:749.573333pt;}
.yfa{bottom:750.213333pt;}
.yd1{bottom:752.933333pt;}
.y39{bottom:754.373333pt;}
.yd0{bottom:766.053333pt;}
.y66{bottom:766.693333pt;}
.yd{bottom:767.653333pt;}
.y38{bottom:770.373333pt;}
.ycf{bottom:778.373333pt;}
.yf9{bottom:781.253333pt;}
.y37{bottom:786.373333pt;}
.y65{bottom:787.013333pt;}
.yc{bottom:787.653333pt;}
.yce{bottom:790.533333pt;}
.yf8{bottom:798.853333pt;}
.y84{bottom:802.373333pt;}
.y64{bottom:802.693333pt;}
.ycc{bottom:802.853333pt;}
.y5{bottom:804.293333pt;}
.yc9{bottom:815.813333pt;}
.yf7{bottom:816.453333pt;}
.y36{bottom:818.373333pt;}
.y63{bottom:834.373333pt;}
.y2{bottom:835.653333pt;}
.yf6{bottom:847.493333pt;}
.y35{bottom:850.373333pt;}
.yc8{bottom:859.653333pt;}
.yf5{bottom:865.093333pt;}
.y34{bottom:866.373333pt;}
.y33{bottom:882.400000pt;}
.yc7{bottom:882.720000pt;}
.y31{bottom:924.640000pt;}
.y1{bottom:953.760000pt;}
.y30{bottom:956.640000pt;}
.h7{height:7.618125pt;}
.h1e{height:12.160000pt;}
.h1d{height:12.320000pt;}
.h12{height:14.400000pt;}
.h10{height:14.560000pt;}
.h14{height:15.040000pt;}
.h15{height:15.200000pt;}
.h13{height:15.232000pt;}
.h1b{height:15.360000pt;}
.h16{height:16.480000pt;}
.h17{height:16.512000pt;}
.hb{height:22.430625pt;}
.h5{height:30.024375pt;}
.h11{height:30.254687pt;}
.h8{height:30.975625pt;}
.h1c{height:32.640000pt;}
.hc{height:33.867188pt;}
.h6{height:35.782187pt;}
.h19{height:37.479688pt;}
.h18{height:38.430625pt;}
.he{height:38.672812pt;}
.hd{height:40.054688pt;}
.hf{height:44.327188pt;}
.ha{height:52.095625pt;}
.h9{height:57.678750pt;}
.h3{height:58.563750pt;}
.h4{height:98.112000pt;}
.h1a{height:193.946667pt;}
.h1{height:982.666667pt;}
.h2{height:982.879919pt;}
.h0{height:982.880000pt;}
.w10{width:37.760000pt;}
.w11{width:47.392000pt;}
.w13{width:75.520000pt;}
.w5{width:82.080000pt;}
.w7{width:84.160000pt;}
.w6{width:84.192000pt;}
.w12{width:85.152000pt;}
.wf{width:94.400000pt;}
.w14{width:95.552000pt;}
.w15{width:97.280000pt;}
.w9{width:108.640000pt;}
.wa{width:108.672000pt;}
.wb{width:108.832000pt;}
.wd{width:147.226667pt;}
.we{width:147.266667pt;}
.w4{width:147.386667pt;}
.w8{width:162.906667pt;}
.wc{width:597.733333pt;}
.w3{width:602.053333pt;}
.w1{width:718.000000pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x3d{left:9.440000pt;}
.x38{left:12.160000pt;}
.x34{left:15.040000pt;}
.x3b{left:17.760000pt;}
.x1c{left:19.386667pt;}
.x31{left:21.960000pt;}
.x11{left:25.280000pt;}
.x3e{left:30.560000pt;}
.x15{left:32.960000pt;}
.x16{left:34.080000pt;}
.x17{left:35.680000pt;}
.x18{left:36.640000pt;}
.x19{left:38.400000pt;}
.x1a{left:39.360000pt;}
.x21{left:42.240000pt;}
.x20{left:44.960000pt;}
.x30{left:45.952000pt;}
.x24{left:48.960000pt;}
.x1{left:64.319989pt;}
.x7{left:68.511989pt;}
.x2{left:71.552000pt;}
.x5{left:80.351989pt;}
.x2a{left:84.031989pt;}
.x2c{left:87.231989pt;}
.x25{left:107.391989pt;}
.x2b{left:108.831989pt;}
.x27{left:110.111989pt;}
.x2d{left:138.586667pt;}
.xc{left:152.026656pt;}
.x33{left:165.946667pt;}
.x3{left:174.114667pt;}
.x32{left:179.546656pt;}
.x35{left:203.706667pt;}
.x8{left:207.866656pt;}
.x2e{left:211.866667pt;}
.x23{left:216.034667pt;}
.x10{left:218.946667pt;}
.xd{left:227.746656pt;}
.xb{left:234.786656pt;}
.xa{left:244.066656pt;}
.x36{left:251.106667pt;}
.x1f{left:254.274667pt;}
.x22{left:260.354667pt;}
.x37{left:288.866667pt;}
.x9{left:291.746656pt;}
.x12{left:301.026667pt;}
.x28{left:325.986656pt;}
.x1b{left:343.106667pt;}
.xe{left:352.546656pt;}
.x29{left:359.133323pt;}
.x26{left:367.133323pt;}
.x39{left:374.013333pt;}
.x13{left:385.213333pt;}
.x3a{left:449.533333pt;}
.x1d{left:451.773333pt;}
.x14{left:469.373333pt;}
.x2f{left:506.533333pt;}
.x3c{left:545.093333pt;}
.x1e{left:560.613333pt;}
.x4{left:601.088000pt;}
.x6{left:654.079989pt;}
}




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