
    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_7d005108d5570638f538bdef.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_331bdbf921f585cb59c66fdb.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_f2f71d5b7e810419ce806ed5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_433c3ccb6c03a4ff39e54e9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_6a42dc0572d82e692767e610.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_379ec98ee8bbb8442d7cd4af.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;}
.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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.119520px;}
.lsa{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.576000px;}
.lse{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.900000px;}
.ls11{letter-spacing:12.240000px;}
.lsf{letter-spacing:12.960000px;}
.ls12{letter-spacing:66.240000px;}
.ls13{letter-spacing:215.280000px;}
.ls14{letter-spacing:215.400000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.wsa{word-spacing:-18.576000px;}
.wsc{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.784000px;}
.ws4{word-spacing:-16.669200px;}
.wsb{word-spacing:-15.300000px;}
.ws0{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.518000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._1e{margin-left:-5.112000px;}
._4{margin-left:-3.600000px;}
._b{margin-left:-2.306400px;}
._0{margin-left:-1.134000px;}
._1{width:1.182000px;}
._19{width:2.562000px;}
._5{width:4.061520px;}
._6{width:5.139360px;}
._7{width:6.211680px;}
._22{width:7.228320px;}
._d{width:8.246880px;}
._8{width:9.860400px;}
._9{width:11.009040px;}
._23{width:12.030000px;}
._15{width:13.032000px;}
._17{width:14.163600px;}
._16{width:15.236400px;}
._c{width:16.387440px;}
._18{width:19.322400px;}
._1a{width:20.683200px;}
._1d{width:22.342800px;}
._1f{width:24.120000px;}
._e{width:25.218720px;}
._f{width:26.593200px;}
._2b{width:27.648000px;}
._24{width:29.664000px;}
._a{width:30.668640px;}
._27{width:32.187360px;}
._21{width:33.390000px;}
._20{width:34.560000px;}
._1b{width:35.640000px;}
._1c{width:36.918000px;}
._11{width:38.724480px;}
._10{width:40.039200px;}
._2d{width:43.992000px;}
._25{width:45.432000px;}
._26{width:46.488000px;}
._3{width:56.275920px;}
._2{width:57.688320px;}
._29{width:65.592000px;}
._2a{width:66.798000px;}
._28{width:77.904000px;}
._13{width:183.204240px;}
._12{width:186.491040px;}
._2c{width:215.832000px;}
._14{width:846.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(56,86,35);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.240000px;}
.fs5{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:3.240000px;}
.y27{bottom:8.640000px;}
.y8f{bottom:11.700000px;}
.y96{bottom:11.880000px;}
.y4{bottom:13.530000px;}
.y8d{bottom:20.340000px;}
.y92{bottom:20.520000px;}
.y9a{bottom:20.550000px;}
.y5{bottom:21.090000px;}
.y26{bottom:25.920000px;}
.y9c{bottom:28.980000px;}
.y3{bottom:29.010000px;}
.y95{bottom:29.160000px;}
.y98{bottom:29.190000px;}
.y9d{bottom:37.620000px;}
.y91{bottom:37.800000px;}
.y99{bottom:37.830000px;}
.y25{bottom:43.200000px;}
.y2{bottom:44.490000px;}
.y94{bottom:46.440000px;}
.y93{bottom:55.080000px;}
.y8{bottom:57.420000px;}
.y2a{bottom:57.600000px;}
.y24{bottom:60.480000px;}
.y7{bottom:77.580000px;}
.y23{bottom:94.860000px;}
.y22{bottom:112.170000px;}
.ycd{bottom:112.860000px;}
.y6f{bottom:122.760000px;}
.y59{bottom:124.560000px;}
.y21{bottom:129.450000px;}
.ycc{bottom:133.560000px;}
.y82{bottom:136.836000px;}
.yae{bottom:138.996000px;}
.y6e{bottom:143.496000px;}
.y58{bottom:145.296000px;}
.y20{bottom:146.730000px;}
.ycb{bottom:154.290000px;}
.yad{bottom:159.690000px;}
.y1f{bottom:164.010000px;}
.y6d{bottom:164.190000px;}
.yee{bottom:165.090000px;}
.y57{bottom:165.990000px;}
.y81{bottom:174.810000px;}
.yac{bottom:180.390000px;}
.y1e{bottom:181.110000px;}
.yca{bottom:183.990000px;}
.y6c{bottom:184.890000px;}
.yed{bottom:185.790000px;}
.y56{bottom:186.690000px;}
.y80{bottom:196.770000px;}
.y1d{bottom:198.390000px;}
.yab{bottom:201.090000px;}
.yc9{bottom:204.690000px;}
.y6b{bottom:205.590000px;}
.yec{bottom:206.490000px;}
.y55{bottom:207.390000px;}
.y1c{bottom:215.670000px;}
.y7f{bottom:218.550000px;}
.yaa{bottom:221.790000px;}
.yc8{bottom:225.390000px;}
.y6a{bottom:226.290000px;}
.y54{bottom:228.090000px;}
.y1b{bottom:232.950000px;}
.yeb{bottom:236.190000px;}
.ya9{bottom:242.490000px;}
.y7e{bottom:243.030000px;}
.y69{bottom:246.990000px;}
.y1a{bottom:250.230000px;}
.yc7{bottom:255.090000px;}
.yea{bottom:256.890000px;}
.y53{bottom:257.790000px;}
.ya8{bottom:263.190000px;}
.y19{bottom:267.510000px;}
.y68{bottom:267.690000px;}
.ye9{bottom:277.590000px;}
.ya7{bottom:283.890000px;}
.y18{bottom:284.610000px;}
.yc6{bottom:284.790000px;}
.y52{bottom:287.490000px;}
.y67{bottom:288.390000px;}
.y17{bottom:301.890000px;}
.ya6{bottom:304.590000px;}
.yc5{bottom:305.490000px;}
.ye8{bottom:307.290000px;}
.y51{bottom:308.190000px;}
.y66{bottom:309.090000px;}
.y16{bottom:319.170000px;}
.ya5{bottom:325.290000px;}
.yc4{bottom:326.190000px;}
.ye7{bottom:327.990000px;}
.y50{bottom:328.890000px;}
.y15{bottom:336.450000px;}
.y65{bottom:338.790000px;}
.ya4{bottom:345.990000px;}
.yc3{bottom:346.890000px;}
.ye6{bottom:348.690000px;}
.y4f{bottom:349.590000px;}
.y14{bottom:353.730000px;}
.ya3{bottom:366.690000px;}
.yc2{bottom:367.590000px;}
.y4e{bottom:370.290000px;}
.ye5{bottom:378.390000px;}
.y64{bottom:386.490000px;}
.ya2{bottom:387.435000px;}
.yc1{bottom:388.335000px;}
.y4d{bottom:391.035000px;}
.ye4{bottom:399.135000px;}
.yfb{bottom:400.755000px;}
.y63{bottom:401.835000px;}
.yc0{bottom:409.035000px;}
.yfa{bottom:416.595000px;}
.ya1{bottom:417.135000px;}
.ye3{bottom:419.835000px;}
.y4c{bottom:420.735000px;}
.ybf{bottom:429.735000px;}
.y4b{bottom:441.435000px;}
.ya0{bottom:446.835000px;}
.ye2{bottom:449.535000px;}
.ybe{bottom:450.435000px;}
.y28{bottom:452.955000px;}
.yf9{bottom:458.175000px;}
.y4a{bottom:462.135000px;}
.y9f{bottom:464.295000px;}
.ye1{bottom:470.235000px;}
.ybd{bottom:471.135000px;}
.y49{bottom:482.835000px;}
.ye0{bottom:490.935000px;}
.ybc{bottom:491.835000px;}
.yf8{bottom:499.935000px;}
.y48{bottom:503.535000px;}
.ydf{bottom:511.635000px;}
.ybb{bottom:512.535000px;}
.y9e{bottom:516.855000px;}
.y7d{bottom:521.535000px;}
.y47{bottom:524.235000px;}
.y13{bottom:529.095000px;}
.yf7{bottom:529.635000px;}
.yba{bottom:533.235000px;}
.yde{bottom:541.335000px;}
.y7c{bottom:542.235000px;}
.y46{bottom:544.935000px;}
.yf6{bottom:550.335000px;}
.yb9{bottom:553.935000px;}
.ydd{bottom:562.035000px;}
.y7b{bottom:562.935000px;}
.y45{bottom:565.635000px;}
.y9b{bottom:569.415000px;}
.yf5{bottom:571.035000px;}
.yb8{bottom:574.635000px;}
.y7a{bottom:583.635000px;}
.y44{bottom:586.335000px;}
.ydc{bottom:591.735000px;}
.yb7{bottom:595.335000px;}
.y79{bottom:604.335000px;}
.y43{bottom:607.035000px;}
.ydb{bottom:612.435000px;}
.yb6{bottom:616.035000px;}
.yf4{bottom:621.435000px;}
.y97{bottom:621.795000px;}
.y78{bottom:625.035000px;}
.y42{bottom:627.735000px;}
.yda{bottom:633.135000px;}
.yf3{bottom:642.165000px;}
.y77{bottom:645.765000px;}
.y41{bottom:657.465000px;}
.yd9{bottom:662.865000px;}
.y76{bottom:666.465000px;}
.y90{bottom:674.385000px;}
.yb5{bottom:675.465000px;}
.y40{bottom:678.165000px;}
.yd8{bottom:683.565000px;}
.y75{bottom:687.165000px;}
.yb4{bottom:696.165000px;}
.y3f{bottom:698.865000px;}
.yd7{bottom:704.265000px;}
.y74{bottom:707.865000px;}
.yf2{bottom:713.265000px;}
.yb3{bottom:716.865000px;}
.y3e{bottom:719.565000px;}
.y62{bottom:728.565000px;}
.yd6{bottom:733.965000px;}
.yb2{bottom:737.565000px;}
.y3d{bottom:740.265000px;}
.y8c{bottom:744.225000px;}
.y61{bottom:749.265000px;}
.yd5{bottom:754.665000px;}
.yb1{bottom:758.265000px;}
.y3c{bottom:760.965000px;}
.y60{bottom:769.965000px;}
.yb0{bottom:778.965000px;}
.yd4{bottom:784.365000px;}
.y3b{bottom:790.665000px;}
.y8b{bottom:791.925000px;}
.yaf{bottom:799.665000px;}
.yd3{bottom:805.065000px;}
.y3a{bottom:811.365000px;}
.y8a{bottom:820.365000px;}
.yf1{bottom:825.765000px;}
.y39{bottom:832.065000px;}
.yd2{bottom:834.765000px;}
.y89{bottom:841.065000px;}
.y38{bottom:852.765000px;}
.yd1{bottom:855.465000px;}
.y88{bottom:861.765000px;}
.y37{bottom:873.465000px;}
.yf0{bottom:876.165000px;}
.y87{bottom:882.465000px;}
.yd0{bottom:885.165000px;}
.y36{bottom:894.210000px;}
.y86{bottom:903.210000px;}
.ycf{bottom:905.910000px;}
.y12{bottom:908.970000px;}
.y35{bottom:914.910000px;}
.y85{bottom:923.910000px;}
.yce{bottom:926.610000px;}
.y11{bottom:931.470000px;}
.y34{bottom:935.610000px;}
.y10{bottom:943.530000px;}
.y84{bottom:944.610000px;}
.yef{bottom:947.310000px;}
.y33{bottom:956.310000px;}
.y83{bottom:965.310000px;}
.yf{bottom:966.030000px;}
.y5f{bottom:977.010000px;}
.ye{bottom:978.090000px;}
.y32{bottom:986.010000px;}
.yd{bottom:995.370000px;}
.y73{bottom:997.710000px;}
.y31{bottom:1006.710000px;}
.yc{bottom:1013.010000px;}
.y72{bottom:1018.410000px;}
.y30{bottom:1027.410000px;}
.y5e{bottom:1036.410000px;}
.y71{bottom:1039.110000px;}
.yb{bottom:1041.270000px;}
.y2f{bottom:1048.110000px;}
.y5d{bottom:1057.110000px;}
.y70{bottom:1059.810000px;}
.y2e{bottom:1068.810000px;}
.ya{bottom:1070.970000px;}
.y5c{bottom:1077.810000px;}
.y2d{bottom:1089.510000px;}
.y9{bottom:1091.670000px;}
.y5b{bottom:1098.510000px;}
.y2c{bottom:1110.210000px;}
.y5a{bottom:1119.210000px;}
.y6{bottom:1121.910000px;}
.y2b{bottom:1139.910000px;}
.y1{bottom:1142.070000px;}
.y29{bottom:1194.480000px;}
.h14{height:12.012891px;}
.hf{height:34.380000px;}
.h9{height:38.158594px;}
.h12{height:51.660000px;}
.h13{height:51.840000px;}
.h11{height:51.876000px;}
.h3{height:52.998047px;}
.h4{height:54.421875px;}
.ha{height:58.651172px;}
.h8{height:60.226875px;}
.hd{height:64.546875px;}
.he{height:65.010937px;}
.h5{height:65.884219px;}
.h7{height:66.757500px;}
.h2{height:67.716000px;}
.h10{height:68.940000px;}
.hc{height:70.664062px;}
.h6{height:72.562500px;}
.hb{height:367.815000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:16.920000px;}
.w3{width:74.700000px;}
.w9{width:106.200000px;}
.wc{width:114.156000px;}
.wa{width:139.356000px;}
.wd{width:158.040000px;}
.wb{width:158.250000px;}
.w8{width:209.550000px;}
.w4{width:223.590000px;}
.w2{width:339.555000px;}
.w6{width:423.975000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x25{left:9.900000px;}
.x26{left:11.700000px;}
.x1f{left:12.780000px;}
.x1b{left:13.860000px;}
.x15{left:15.120000px;}
.x24{left:16.560000px;}
.x20{left:18.900000px;}
.x21{left:20.520000px;}
.x22{left:21.780000px;}
.x16{left:23.220000px;}
.x18{left:25.560000px;}
.x28{left:27.360000px;}
.x23{left:29.520000px;}
.x2e{left:32.580000px;}
.x29{left:36.360000px;}
.x2a{left:37.620000px;}
.x2c{left:39.780000px;}
.x27{left:41.940000px;}
.x19{left:44.640000px;}
.x2b{left:46.260000px;}
.x2d{left:62.820000px;}
.x1c{left:64.440000px;}
.x4{left:66.600000px;}
.xd{left:106.235987px;}
.x13{left:122.615987px;}
.x1{left:127.656000px;}
.x8{left:137.195987px;}
.xf{left:148.715987px;}
.x11{left:176.249987px;}
.x6{left:203.805000px;}
.x17{left:214.050000px;}
.x9{left:245.009987px;}
.x1a{left:354.135000px;}
.xe{left:399.494987px;}
.x14{left:427.214987px;}
.x7{left:434.054987px;}
.xa{left:446.504987px;}
.x3{left:467.205000px;}
.x1d{left:513.105000px;}
.x5{left:541.905000px;}
.xb{left:551.625000px;}
.xc{left:568.545000px;}
.x1e{left:627.990000px;}
.x10{left:663.989987px;}
.x12{left:786.749987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.106240pt;}
.lsa{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls11{letter-spacing:10.880000pt;}
.lsf{letter-spacing:11.520000pt;}
.ls12{letter-spacing:58.880000pt;}
.ls13{letter-spacing:191.360000pt;}
.ls14{letter-spacing:191.466667pt;}
.ws9{word-spacing:-64.000000pt;}
.wsa{word-spacing:-16.512000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws4{word-spacing:-14.817067pt;}
.wsb{word-spacing:-13.600000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.016000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._1e{margin-left:-4.544000pt;}
._4{margin-left:-3.200000pt;}
._b{margin-left:-2.050133pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.050667pt;}
._19{width:2.277333pt;}
._5{width:3.610240pt;}
._6{width:4.568320pt;}
._7{width:5.521493pt;}
._22{width:6.425173pt;}
._d{width:7.330560pt;}
._8{width:8.764800pt;}
._9{width:9.785813pt;}
._23{width:10.693333pt;}
._15{width:11.584000pt;}
._17{width:12.589867pt;}
._16{width:13.543467pt;}
._c{width:14.566613pt;}
._18{width:17.175467pt;}
._1a{width:18.385067pt;}
._1d{width:19.860267pt;}
._1f{width:21.440000pt;}
._e{width:22.416640pt;}
._f{width:23.638400pt;}
._2b{width:24.576000pt;}
._24{width:26.368000pt;}
._a{width:27.261013pt;}
._27{width:28.610987pt;}
._21{width:29.680000pt;}
._20{width:30.720000pt;}
._1b{width:31.680000pt;}
._1c{width:32.816000pt;}
._11{width:34.421760pt;}
._10{width:35.590400pt;}
._2d{width:39.104000pt;}
._25{width:40.384000pt;}
._26{width:41.322667pt;}
._3{width:50.023040pt;}
._2{width:51.278507pt;}
._29{width:58.304000pt;}
._2a{width:59.376000pt;}
._28{width:69.248000pt;}
._13{width:162.848213pt;}
._12{width:165.769813pt;}
._2c{width:191.850667pt;}
._14{width:752.138667pt;}
.fs6{font-size:10.880000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:2.880000pt;}
.y27{bottom:7.680000pt;}
.y8f{bottom:10.400000pt;}
.y96{bottom:10.560000pt;}
.y4{bottom:12.026667pt;}
.y8d{bottom:18.080000pt;}
.y92{bottom:18.240000pt;}
.y9a{bottom:18.266667pt;}
.y5{bottom:18.746667pt;}
.y26{bottom:23.040000pt;}
.y9c{bottom:25.760000pt;}
.y3{bottom:25.786667pt;}
.y95{bottom:25.920000pt;}
.y98{bottom:25.946667pt;}
.y9d{bottom:33.440000pt;}
.y91{bottom:33.600000pt;}
.y99{bottom:33.626667pt;}
.y25{bottom:38.400000pt;}
.y2{bottom:39.546667pt;}
.y94{bottom:41.280000pt;}
.y93{bottom:48.960000pt;}
.y8{bottom:51.040000pt;}
.y2a{bottom:51.200000pt;}
.y24{bottom:53.760000pt;}
.y7{bottom:68.960000pt;}
.y23{bottom:84.320000pt;}
.y22{bottom:99.706667pt;}
.ycd{bottom:100.320000pt;}
.y6f{bottom:109.120000pt;}
.y59{bottom:110.720000pt;}
.y21{bottom:115.066667pt;}
.ycc{bottom:118.720000pt;}
.y82{bottom:121.632000pt;}
.yae{bottom:123.552000pt;}
.y6e{bottom:127.552000pt;}
.y58{bottom:129.152000pt;}
.y20{bottom:130.426667pt;}
.ycb{bottom:137.146667pt;}
.yad{bottom:141.946667pt;}
.y1f{bottom:145.786667pt;}
.y6d{bottom:145.946667pt;}
.yee{bottom:146.746667pt;}
.y57{bottom:147.546667pt;}
.y81{bottom:155.386667pt;}
.yac{bottom:160.346667pt;}
.y1e{bottom:160.986667pt;}
.yca{bottom:163.546667pt;}
.y6c{bottom:164.346667pt;}
.yed{bottom:165.146667pt;}
.y56{bottom:165.946667pt;}
.y80{bottom:174.906667pt;}
.y1d{bottom:176.346667pt;}
.yab{bottom:178.746667pt;}
.yc9{bottom:181.946667pt;}
.y6b{bottom:182.746667pt;}
.yec{bottom:183.546667pt;}
.y55{bottom:184.346667pt;}
.y1c{bottom:191.706667pt;}
.y7f{bottom:194.266667pt;}
.yaa{bottom:197.146667pt;}
.yc8{bottom:200.346667pt;}
.y6a{bottom:201.146667pt;}
.y54{bottom:202.746667pt;}
.y1b{bottom:207.066667pt;}
.yeb{bottom:209.946667pt;}
.ya9{bottom:215.546667pt;}
.y7e{bottom:216.026667pt;}
.y69{bottom:219.546667pt;}
.y1a{bottom:222.426667pt;}
.yc7{bottom:226.746667pt;}
.yea{bottom:228.346667pt;}
.y53{bottom:229.146667pt;}
.ya8{bottom:233.946667pt;}
.y19{bottom:237.786667pt;}
.y68{bottom:237.946667pt;}
.ye9{bottom:246.746667pt;}
.ya7{bottom:252.346667pt;}
.y18{bottom:252.986667pt;}
.yc6{bottom:253.146667pt;}
.y52{bottom:255.546667pt;}
.y67{bottom:256.346667pt;}
.y17{bottom:268.346667pt;}
.ya6{bottom:270.746667pt;}
.yc5{bottom:271.546667pt;}
.ye8{bottom:273.146667pt;}
.y51{bottom:273.946667pt;}
.y66{bottom:274.746667pt;}
.y16{bottom:283.706667pt;}
.ya5{bottom:289.146667pt;}
.yc4{bottom:289.946667pt;}
.ye7{bottom:291.546667pt;}
.y50{bottom:292.346667pt;}
.y15{bottom:299.066667pt;}
.y65{bottom:301.146667pt;}
.ya4{bottom:307.546667pt;}
.yc3{bottom:308.346667pt;}
.ye6{bottom:309.946667pt;}
.y4f{bottom:310.746667pt;}
.y14{bottom:314.426667pt;}
.ya3{bottom:325.946667pt;}
.yc2{bottom:326.746667pt;}
.y4e{bottom:329.146667pt;}
.ye5{bottom:336.346667pt;}
.y64{bottom:343.546667pt;}
.ya2{bottom:344.386667pt;}
.yc1{bottom:345.186667pt;}
.y4d{bottom:347.586667pt;}
.ye4{bottom:354.786667pt;}
.yfb{bottom:356.226667pt;}
.y63{bottom:357.186667pt;}
.yc0{bottom:363.586667pt;}
.yfa{bottom:370.306667pt;}
.ya1{bottom:370.786667pt;}
.ye3{bottom:373.186667pt;}
.y4c{bottom:373.986667pt;}
.ybf{bottom:381.986667pt;}
.y4b{bottom:392.386667pt;}
.ya0{bottom:397.186667pt;}
.ye2{bottom:399.586667pt;}
.ybe{bottom:400.386667pt;}
.y28{bottom:402.626667pt;}
.yf9{bottom:407.266667pt;}
.y4a{bottom:410.786667pt;}
.y9f{bottom:412.706667pt;}
.ye1{bottom:417.986667pt;}
.ybd{bottom:418.786667pt;}
.y49{bottom:429.186667pt;}
.ye0{bottom:436.386667pt;}
.ybc{bottom:437.186667pt;}
.yf8{bottom:444.386667pt;}
.y48{bottom:447.586667pt;}
.ydf{bottom:454.786667pt;}
.ybb{bottom:455.586667pt;}
.y9e{bottom:459.426667pt;}
.y7d{bottom:463.586667pt;}
.y47{bottom:465.986667pt;}
.y13{bottom:470.306667pt;}
.yf7{bottom:470.786667pt;}
.yba{bottom:473.986667pt;}
.yde{bottom:481.186667pt;}
.y7c{bottom:481.986667pt;}
.y46{bottom:484.386667pt;}
.yf6{bottom:489.186667pt;}
.yb9{bottom:492.386667pt;}
.ydd{bottom:499.586667pt;}
.y7b{bottom:500.386667pt;}
.y45{bottom:502.786667pt;}
.y9b{bottom:506.146667pt;}
.yf5{bottom:507.586667pt;}
.yb8{bottom:510.786667pt;}
.y7a{bottom:518.786667pt;}
.y44{bottom:521.186667pt;}
.ydc{bottom:525.986667pt;}
.yb7{bottom:529.186667pt;}
.y79{bottom:537.186667pt;}
.y43{bottom:539.586667pt;}
.ydb{bottom:544.386667pt;}
.yb6{bottom:547.586667pt;}
.yf4{bottom:552.386667pt;}
.y97{bottom:552.706667pt;}
.y78{bottom:555.586667pt;}
.y42{bottom:557.986667pt;}
.yda{bottom:562.786667pt;}
.yf3{bottom:570.813333pt;}
.y77{bottom:574.013333pt;}
.y41{bottom:584.413333pt;}
.yd9{bottom:589.213333pt;}
.y76{bottom:592.413333pt;}
.y90{bottom:599.453333pt;}
.yb5{bottom:600.413333pt;}
.y40{bottom:602.813333pt;}
.yd8{bottom:607.613333pt;}
.y75{bottom:610.813333pt;}
.yb4{bottom:618.813333pt;}
.y3f{bottom:621.213333pt;}
.yd7{bottom:626.013333pt;}
.y74{bottom:629.213333pt;}
.yf2{bottom:634.013333pt;}
.yb3{bottom:637.213333pt;}
.y3e{bottom:639.613333pt;}
.y62{bottom:647.613333pt;}
.yd6{bottom:652.413333pt;}
.yb2{bottom:655.613333pt;}
.y3d{bottom:658.013333pt;}
.y8c{bottom:661.533333pt;}
.y61{bottom:666.013333pt;}
.yd5{bottom:670.813333pt;}
.yb1{bottom:674.013333pt;}
.y3c{bottom:676.413333pt;}
.y60{bottom:684.413333pt;}
.yb0{bottom:692.413333pt;}
.yd4{bottom:697.213333pt;}
.y3b{bottom:702.813333pt;}
.y8b{bottom:703.933333pt;}
.yaf{bottom:710.813333pt;}
.yd3{bottom:715.613333pt;}
.y3a{bottom:721.213333pt;}
.y8a{bottom:729.213333pt;}
.yf1{bottom:734.013333pt;}
.y39{bottom:739.613333pt;}
.yd2{bottom:742.013333pt;}
.y89{bottom:747.613333pt;}
.y38{bottom:758.013333pt;}
.yd1{bottom:760.413333pt;}
.y88{bottom:766.013333pt;}
.y37{bottom:776.413333pt;}
.yf0{bottom:778.813333pt;}
.y87{bottom:784.413333pt;}
.yd0{bottom:786.813333pt;}
.y36{bottom:794.853333pt;}
.y86{bottom:802.853333pt;}
.ycf{bottom:805.253333pt;}
.y12{bottom:807.973333pt;}
.y35{bottom:813.253333pt;}
.y85{bottom:821.253333pt;}
.yce{bottom:823.653333pt;}
.y11{bottom:827.973333pt;}
.y34{bottom:831.653333pt;}
.y10{bottom:838.693333pt;}
.y84{bottom:839.653333pt;}
.yef{bottom:842.053333pt;}
.y33{bottom:850.053333pt;}
.y83{bottom:858.053333pt;}
.yf{bottom:858.693333pt;}
.y5f{bottom:868.453333pt;}
.ye{bottom:869.413333pt;}
.y32{bottom:876.453333pt;}
.yd{bottom:884.773333pt;}
.y73{bottom:886.853333pt;}
.y31{bottom:894.853333pt;}
.yc{bottom:900.453333pt;}
.y72{bottom:905.253333pt;}
.y30{bottom:913.253333pt;}
.y5e{bottom:921.253333pt;}
.y71{bottom:923.653333pt;}
.yb{bottom:925.573333pt;}
.y2f{bottom:931.653333pt;}
.y5d{bottom:939.653333pt;}
.y70{bottom:942.053333pt;}
.y2e{bottom:950.053333pt;}
.ya{bottom:951.973333pt;}
.y5c{bottom:958.053333pt;}
.y2d{bottom:968.453333pt;}
.y9{bottom:970.373333pt;}
.y5b{bottom:976.453333pt;}
.y2c{bottom:986.853333pt;}
.y5a{bottom:994.853333pt;}
.y6{bottom:997.253333pt;}
.y2b{bottom:1013.253333pt;}
.y1{bottom:1015.173333pt;}
.y29{bottom:1061.760000pt;}
.h14{height:10.678125pt;}
.hf{height:30.560000pt;}
.h9{height:33.918750pt;}
.h12{height:45.920000pt;}
.h13{height:46.080000pt;}
.h11{height:46.112000pt;}
.h3{height:47.109375pt;}
.h4{height:48.375000pt;}
.ha{height:52.134375pt;}
.h8{height:53.535000pt;}
.hd{height:57.375000pt;}
.he{height:57.787500pt;}
.h5{height:58.563750pt;}
.h7{height:59.340000pt;}
.h2{height:60.192000pt;}
.h10{height:61.280000pt;}
.hc{height:62.812500pt;}
.h6{height:64.500000pt;}
.hb{height:326.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.040000pt;}
.w3{width:66.400000pt;}
.w9{width:94.400000pt;}
.wc{width:101.472000pt;}
.wa{width:123.872000pt;}
.wd{width:140.480000pt;}
.wb{width:140.666667pt;}
.w8{width:186.266667pt;}
.w4{width:198.746667pt;}
.w2{width:301.826667pt;}
.w6{width:376.866667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x25{left:8.800000pt;}
.x26{left:10.400000pt;}
.x1f{left:11.360000pt;}
.x1b{left:12.320000pt;}
.x15{left:13.440000pt;}
.x24{left:14.720000pt;}
.x20{left:16.800000pt;}
.x21{left:18.240000pt;}
.x22{left:19.360000pt;}
.x16{left:20.640000pt;}
.x18{left:22.720000pt;}
.x28{left:24.320000pt;}
.x23{left:26.240000pt;}
.x2e{left:28.960000pt;}
.x29{left:32.320000pt;}
.x2a{left:33.440000pt;}
.x2c{left:35.360000pt;}
.x27{left:37.280000pt;}
.x19{left:39.680000pt;}
.x2b{left:41.120000pt;}
.x2d{left:55.840000pt;}
.x1c{left:57.280000pt;}
.x4{left:59.200000pt;}
.xd{left:94.431988pt;}
.x13{left:108.991988pt;}
.x1{left:113.472000pt;}
.x8{left:121.951988pt;}
.xf{left:132.191988pt;}
.x11{left:156.666655pt;}
.x6{left:181.160000pt;}
.x17{left:190.266667pt;}
.x9{left:217.786655pt;}
.x1a{left:314.786667pt;}
.xe{left:355.106655pt;}
.x14{left:379.746655pt;}
.x7{left:385.826655pt;}
.xa{left:396.893322pt;}
.x3{left:415.293333pt;}
.x1d{left:456.093333pt;}
.x5{left:481.693333pt;}
.xb{left:490.333333pt;}
.xc{left:505.373333pt;}
.x1e{left:558.213333pt;}
.x10{left:590.213322pt;}
.x12{left:699.333322pt;}
}




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