
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6b48723cf0988d56cbe6eb72.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_0a02a663db9af7e0ac230b78.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_e9bc05ed021d68ef1a5b1bfb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_76cd99a39082e42c6f495989.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_39a9047510183ab114ae6d88.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_a1a941d015d2b74367ef1c05.woff')format("woff");}.ff7{font-family:ff7;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lse{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:47.726640px;}
.ls11{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.369800px;}
.ws5{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._24{margin-left:-4.299958px;}
._10{margin-left:-3.246600px;}
._d{margin-left:-2.164200px;}
._0{margin-left:-1.110000px;}
._1{width:1.130124px;}
._9{width:2.215344px;}
._11{width:3.907800px;}
._3{width:5.230200px;}
._2{width:6.312600px;}
._4{width:7.732681px;}
._5{width:9.378600px;}
._6{width:10.429802px;}
._e{width:11.624633px;}
._18{width:14.248440px;}
._1a{width:15.871680px;}
._19{width:17.314560px;}
._7{width:18.628440px;}
._8{width:20.445959px;}
._c{width:21.591240px;}
._b{width:22.721880px;}
._a{width:23.967360px;}
._1b{width:25.430760px;}
._f{width:27.414600px;}
._1c{width:28.436760px;}
._1e{width:32.464800px;}
._1f{width:33.546960px;}
._20{width:35.290440px;}
._21{width:36.372480px;}
._22{width:45.450720px;}
._23{width:46.713120px;}
._13{width:58.797360px;}
._15{width:74.007720px;}
._16{width:79.899480px;}
._14{width:98.236080px;}
._12{width:140.440320px;}
._17{width:169.478280px;}
._1d{width:308.115000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:7.830000px;}
.y34{bottom:7.920000px;}
.y31{bottom:25.380000px;}
.y2f{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y25{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y7e{bottom:111.270000px;}
.ya8{bottom:113.790000px;}
.yd3{bottom:123.240000px;}
.y7d{bottom:128.910000px;}
.y50{bottom:131.790000px;}
.yd2{bottom:140.790000px;}
.y7c{bottom:146.460000px;}
.y4f{bottom:149.430000px;}
.yd1{bottom:158.430000px;}
.y4e{bottom:166.980000px;}
.y7b{bottom:173.100000px;}
.yd0{bottom:175.980000px;}
.y4d{bottom:184.530000px;}
.ya7{bottom:184.980000px;}
.ycf{bottom:193.530000px;}
.y23{bottom:201.540000px;}
.ya6{bottom:202.530000px;}
.y7a{bottom:208.650000px;}
.y4c{bottom:211.170000px;}
.y22{bottom:219.090000px;}
.ya5{bottom:220.170000px;}
.y79{bottom:226.200000px;}
.yce{bottom:228.720000px;}
.y21{bottom:236.730000px;}
.ya4{bottom:237.720000px;}
.y78{bottom:243.840000px;}
.ycd{bottom:246.360000px;}
.y4b{bottom:246.720000px;}
.y20{bottom:254.280000px;}
.ya3{bottom:255.360000px;}
.y77{bottom:261.390000px;}
.y4a{bottom:264.360000px;}
.y1f{bottom:271.920000px;}
.ya2{bottom:272.910000px;}
.ycc{bottom:273.180000px;}
.y76{bottom:278.940000px;}
.y49{bottom:281.910000px;}
.ya1{bottom:290.460000px;}
.y75{bottom:296.580000px;}
.y1e{bottom:298.470000px;}
.y48{bottom:308.820000px;}
.ya0{bottom:317.100000px;}
.ycb{bottom:321.510000px;}
.y74{bottom:323.130000px;}
.y1d{bottom:334.020000px;}
.yca{bottom:339.060000px;}
.y1c{bottom:351.660000px;}
.y9f{bottom:352.650000px;}
.yc9{bottom:356.700000px;}
.y47{bottom:357.060000px;}
.y73{bottom:358.770000px;}
.y1b{bottom:369.210000px;}
.y9e{bottom:370.290000px;}
.yc8{bottom:374.250000px;}
.y46{bottom:374.700000px;}
.y72{bottom:376.320000px;}
.y1a{bottom:386.850000px;}
.y9d{bottom:387.840000px;}
.yc7{bottom:391.800000px;}
.y45{bottom:392.250000px;}
.y71{bottom:393.870000px;}
.y19{bottom:404.400000px;}
.yc6{bottom:409.440000px;}
.y44{bottom:409.800000px;}
.y8e{bottom:411.510000px;}
.y9c{bottom:414.750000px;}
.y70{bottom:420.780000px;}
.y18{bottom:421.950000px;}
.yc5{bottom:426.990000px;}
.y43{bottom:427.440000px;}
.y8d{bottom:429.060000px;}
.y8c{bottom:446.700000px;}
.y17{bottom:448.590000px;}
.yc4{bottom:453.630000px;}
.y42{bottom:453.990000px;}
.y9b{bottom:462.990000px;}
.y8b{bottom:464.250000px;}
.y6f{bottom:469.110000px;}
.y9a{bottom:480.660000px;}
.y16{bottom:484.530000px;}
.y6e{bottom:486.690000px;}
.yc3{bottom:489.210000px;}
.y41{bottom:489.660000px;}
.y8a{bottom:490.830000px;}
.yef{bottom:491.730000px;}
.y99{bottom:498.210000px;}
.y6d{bottom:504.330000px;}
.yc2{bottom:506.760000px;}
.y40{bottom:507.210000px;}
.yee{bottom:509.280000px;}
.y98{bottom:515.760000px;}
.y6c{bottom:521.880000px;}
.yc1{bottom:524.400000px;}
.y3f{bottom:524.760000px;}
.y89{bottom:526.470000px;}
.y15{bottom:532.770000px;}
.y97{bottom:533.400000px;}
.yed{bottom:535.830000px;}
.y6b{bottom:539.430000px;}
.yc0{bottom:541.950000px;}
.y3e{bottom:542.400000px;}
.y88{bottom:544.020000px;}
.y14{bottom:550.680000px;}
.y96{bottom:550.950000px;}
.yec{bottom:553.470000px;}
.y6a{bottom:557.070000px;}
.ybf{bottom:559.590000px;}
.y3d{bottom:559.950000px;}
.y87{bottom:561.660000px;}
.yeb{bottom:571.020000px;}
.y95{bottom:577.590000px;}
.y69{bottom:583.620000px;}
.ybe{bottom:586.140000px;}
.y3c{bottom:586.590000px;}
.y13{bottom:587.670000px;}
.y86{bottom:588.570000px;}
.yea{bottom:597.660000px;}
.y12{bottom:605.310000px;}
.y94{bottom:610.530000px;}
.ye9{bottom:615.210000px;}
.y68{bottom:619.260000px;}
.ybd{bottom:621.690000px;}
.y3b{bottom:622.140000px;}
.y11{bottom:622.860000px;}
.ye8{bottom:632.760000px;}
.y67{bottom:636.810000px;}
.ybc{bottom:639.330000px;}
.y3a{bottom:639.690000px;}
.y10{bottom:640.500000px;}
.y66{bottom:654.360000px;}
.y93{bottom:655.440000px;}
.ybb{bottom:656.880000px;}
.y39{bottom:657.330000px;}
.yf{bottom:658.050000px;}
.ye7{bottom:659.400000px;}
.y65{bottom:672.000000px;}
.yba{bottom:674.520000px;}
.y38{bottom:674.880000px;}
.ye{bottom:675.600000px;}
.ye6{bottom:676.950000px;}
.y64{bottom:689.550000px;}
.yb9{bottom:692.070000px;}
.y37{bottom:692.520000px;}
.yd{bottom:693.240000px;}
.y92{bottom:700.350000px;}
.ye5{bottom:703.590000px;}
.y63{bottom:707.190000px;}
.yb8{bottom:709.620000px;}
.yc{bottom:710.790000px;}
.y36{bottom:719.070000px;}
.ye4{bottom:721.140000px;}
.y85{bottom:724.740000px;}
.y91{bottom:727.710000px;}
.yb{bottom:728.430000px;}
.y62{bottom:733.740000px;}
.yb7{bottom:736.260000px;}
.ye3{bottom:738.690000px;}
.y84{bottom:751.290000px;}
.y35{bottom:752.010000px;}
.ya{bottom:755.340000px;}
.ye2{bottom:765.330000px;}
.y61{bottom:769.290000px;}
.yb6{bottom:771.810000px;}
.y90{bottom:772.620000px;}
.ye1{bottom:782.880000px;}
.y60{bottom:786.930000px;}
.yb5{bottom:789.450000px;}
.y33{bottom:796.920000px;}
.ye0{bottom:800.520000px;}
.y9{bottom:803.580000px;}
.y5f{bottom:804.480000px;}
.yb4{bottom:807.000000px;}
.y8f{bottom:817.530000px;}
.y5e{bottom:822.030000px;}
.yb3{bottom:824.550000px;}
.ydf{bottom:827.070000px;}
.y8{bottom:839.130000px;}
.y5d{bottom:839.670000px;}
.y32{bottom:841.920000px;}
.yb2{bottom:842.190000px;}
.yde{bottom:844.620000px;}
.y5c{bottom:857.220000px;}
.yb1{bottom:859.740000px;}
.ydd{bottom:871.260000px;}
.y5b{bottom:874.860000px;}
.y7{bottom:874.950000px;}
.y83{bottom:883.860000px;}
.yb0{bottom:886.380000px;}
.y30{bottom:886.830000px;}
.ydc{bottom:888.810000px;}
.y5a{bottom:901.410000px;}
.ydb{bottom:906.450000px;}
.y6{bottom:910.950000px;}
.yaf{bottom:919.320000px;}
.y82{bottom:919.410000px;}
.yda{bottom:924.000000px;}
.y2e{bottom:931.740000px;}
.y59{bottom:936.960000px;}
.yae{bottom:946.680000px;}
.y5{bottom:947.040000px;}
.yd9{bottom:950.550000px;}
.y58{bottom:954.600000px;}
.yd8{bottom:968.190000px;}
.y57{bottom:972.150000px;}
.yad{bottom:973.950000px;}
.y2c{bottom:976.650000px;}
.y4{bottom:985.380000px;}
.y56{bottom:989.790000px;}
.yd7{bottom:994.740000px;}
.yac{bottom:1001.310000px;}
.y55{bottom:1007.340000px;}
.y3{bottom:1010.070000px;}
.yd6{bottom:1012.320000px;}
.y54{bottom:1024.920000px;}
.y2b{bottom:1025.370000px;}
.yab{bottom:1028.700000px;}
.yd5{bottom:1029.960000px;}
.y81{bottom:1033.920000px;}
.y53{bottom:1051.560000px;}
.yaa{bottom:1055.970000px;}
.yd4{bottom:1056.870000px;}
.y2a{bottom:1060.920000px;}
.y80{bottom:1069.560000px;}
.y29{bottom:1078.560000px;}
.y52{bottom:1087.110000px;}
.y28{bottom:1096.110000px;}
.ya9{bottom:1104.750000px;}
.y7f{bottom:1105.110000px;}
.y27{bottom:1113.750000px;}
.y51{bottom:1122.750000px;}
.y26{bottom:1140.300000px;}
.y24{bottom:1194.300000px;}
.h9{height:26.550000px;}
.he{height:26.580000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hb{height:44.100000px;}
.ha{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hf{height:61.793886px;}
.h8{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:120.450000px;}
.w9{width:130.980000px;}
.w3{width:145.200000px;}
.w7{width:163.290000px;}
.w5{width:171.750000px;}
.wd{width:180.030000px;}
.w4{width:193.860000px;}
.we{width:201.150000px;}
.w8{width:203.490000px;}
.wc{width:224.730000px;}
.w6{width:242.640000px;}
.wa{width:255.780000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:3.960000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xb{left:82.350000px;}
.xf{left:111.239987px;}
.x2{left:202.799987px;}
.x5{left:214.680000px;}
.x8{left:232.770000px;}
.x6{left:409.350000px;}
.xd{left:428.970000px;}
.x9{left:436.980000px;}
.xa{left:568.680000px;}
.x7{left:581.820000px;}
.xe{left:609.720000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lse{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.884267pt;}
.ws5{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._24{margin-left:-3.822185pt;}
._10{margin-left:-2.885867pt;}
._d{margin-left:-1.923733pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.004555pt;}
._9{width:1.969195pt;}
._11{width:3.473600pt;}
._3{width:4.649066pt;}
._2{width:5.611200pt;}
._4{width:6.873495pt;}
._5{width:8.336533pt;}
._6{width:9.270935pt;}
._e{width:10.333007pt;}
._18{width:12.665280pt;}
._1a{width:14.108160pt;}
._19{width:15.390720pt;}
._7{width:16.558614pt;}
._8{width:18.174186pt;}
._c{width:19.192213pt;}
._b{width:20.197227pt;}
._a{width:21.304320pt;}
._1b{width:22.605120pt;}
._f{width:24.368533pt;}
._1c{width:25.277120pt;}
._1e{width:28.857600pt;}
._1f{width:29.819520pt;}
._20{width:31.369280pt;}
._21{width:32.331093pt;}
._22{width:40.400640pt;}
._23{width:41.522773pt;}
._13{width:52.264320pt;}
._15{width:65.784640pt;}
._16{width:71.021760pt;}
._14{width:87.320960pt;}
._12{width:124.835840pt;}
._17{width:150.647360pt;}
._1d{width:273.880000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:6.960000pt;}
.y34{bottom:7.040000pt;}
.y31{bottom:22.560000pt;}
.y2f{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y25{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y7e{bottom:98.906667pt;}
.ya8{bottom:101.146667pt;}
.yd3{bottom:109.546667pt;}
.y7d{bottom:114.586667pt;}
.y50{bottom:117.146667pt;}
.yd2{bottom:125.146667pt;}
.y7c{bottom:130.186667pt;}
.y4f{bottom:132.826667pt;}
.yd1{bottom:140.826667pt;}
.y4e{bottom:148.426667pt;}
.y7b{bottom:153.866667pt;}
.yd0{bottom:156.426667pt;}
.y4d{bottom:164.026667pt;}
.ya7{bottom:164.426667pt;}
.ycf{bottom:172.026667pt;}
.y23{bottom:179.146667pt;}
.ya6{bottom:180.026667pt;}
.y7a{bottom:185.466667pt;}
.y4c{bottom:187.706667pt;}
.y22{bottom:194.746667pt;}
.ya5{bottom:195.706667pt;}
.y79{bottom:201.066667pt;}
.yce{bottom:203.306667pt;}
.y21{bottom:210.426667pt;}
.ya4{bottom:211.306667pt;}
.y78{bottom:216.746667pt;}
.ycd{bottom:218.986667pt;}
.y4b{bottom:219.306667pt;}
.y20{bottom:226.026667pt;}
.ya3{bottom:226.986667pt;}
.y77{bottom:232.346667pt;}
.y4a{bottom:234.986667pt;}
.y1f{bottom:241.706667pt;}
.ya2{bottom:242.586667pt;}
.ycc{bottom:242.826667pt;}
.y76{bottom:247.946667pt;}
.y49{bottom:250.586667pt;}
.ya1{bottom:258.186667pt;}
.y75{bottom:263.626667pt;}
.y1e{bottom:265.306667pt;}
.y48{bottom:274.506667pt;}
.ya0{bottom:281.866667pt;}
.ycb{bottom:285.786667pt;}
.y74{bottom:287.226667pt;}
.y1d{bottom:296.906667pt;}
.yca{bottom:301.386667pt;}
.y1c{bottom:312.586667pt;}
.y9f{bottom:313.466667pt;}
.yc9{bottom:317.066667pt;}
.y47{bottom:317.386667pt;}
.y73{bottom:318.906667pt;}
.y1b{bottom:328.186667pt;}
.y9e{bottom:329.146667pt;}
.yc8{bottom:332.666667pt;}
.y46{bottom:333.066667pt;}
.y72{bottom:334.506667pt;}
.y1a{bottom:343.866667pt;}
.y9d{bottom:344.746667pt;}
.yc7{bottom:348.266667pt;}
.y45{bottom:348.666667pt;}
.y71{bottom:350.106667pt;}
.y19{bottom:359.466667pt;}
.yc6{bottom:363.946667pt;}
.y44{bottom:364.266667pt;}
.y8e{bottom:365.786667pt;}
.y9c{bottom:368.666667pt;}
.y70{bottom:374.026667pt;}
.y18{bottom:375.066667pt;}
.yc5{bottom:379.546667pt;}
.y43{bottom:379.946667pt;}
.y8d{bottom:381.386667pt;}
.y8c{bottom:397.066667pt;}
.y17{bottom:398.746667pt;}
.yc4{bottom:403.226667pt;}
.y42{bottom:403.546667pt;}
.y9b{bottom:411.546667pt;}
.y8b{bottom:412.666667pt;}
.y6f{bottom:416.986667pt;}
.y9a{bottom:427.253333pt;}
.y16{bottom:430.693333pt;}
.y6e{bottom:432.613333pt;}
.yc3{bottom:434.853333pt;}
.y41{bottom:435.253333pt;}
.y8a{bottom:436.293333pt;}
.yef{bottom:437.093333pt;}
.y99{bottom:442.853333pt;}
.y6d{bottom:448.293333pt;}
.yc2{bottom:450.453333pt;}
.y40{bottom:450.853333pt;}
.yee{bottom:452.693333pt;}
.y98{bottom:458.453333pt;}
.y6c{bottom:463.893333pt;}
.yc1{bottom:466.133333pt;}
.y3f{bottom:466.453333pt;}
.y89{bottom:467.973333pt;}
.y15{bottom:473.573333pt;}
.y97{bottom:474.133333pt;}
.yed{bottom:476.293333pt;}
.y6b{bottom:479.493333pt;}
.yc0{bottom:481.733333pt;}
.y3e{bottom:482.133333pt;}
.y88{bottom:483.573333pt;}
.y14{bottom:489.493333pt;}
.y96{bottom:489.733333pt;}
.yec{bottom:491.973333pt;}
.y6a{bottom:495.173333pt;}
.ybf{bottom:497.413333pt;}
.y3d{bottom:497.733333pt;}
.y87{bottom:499.253333pt;}
.yeb{bottom:507.573333pt;}
.y95{bottom:513.413333pt;}
.y69{bottom:518.773333pt;}
.ybe{bottom:521.013333pt;}
.y3c{bottom:521.413333pt;}
.y13{bottom:522.373333pt;}
.y86{bottom:523.173333pt;}
.yea{bottom:531.253333pt;}
.y12{bottom:538.053333pt;}
.y94{bottom:542.693333pt;}
.ye9{bottom:546.853333pt;}
.y68{bottom:550.453333pt;}
.ybd{bottom:552.613333pt;}
.y3b{bottom:553.013333pt;}
.y11{bottom:553.653333pt;}
.ye8{bottom:562.453333pt;}
.y67{bottom:566.053333pt;}
.ybc{bottom:568.293333pt;}
.y3a{bottom:568.613333pt;}
.y10{bottom:569.333333pt;}
.y66{bottom:581.653333pt;}
.y93{bottom:582.613333pt;}
.ybb{bottom:583.893333pt;}
.y39{bottom:584.293333pt;}
.yf{bottom:584.933333pt;}
.ye7{bottom:586.133333pt;}
.y65{bottom:597.333333pt;}
.yba{bottom:599.573333pt;}
.y38{bottom:599.893333pt;}
.ye{bottom:600.533333pt;}
.ye6{bottom:601.733333pt;}
.y64{bottom:612.933333pt;}
.yb9{bottom:615.173333pt;}
.y37{bottom:615.573333pt;}
.yd{bottom:616.213333pt;}
.y92{bottom:622.533333pt;}
.ye5{bottom:625.413333pt;}
.y63{bottom:628.613333pt;}
.yb8{bottom:630.773333pt;}
.yc{bottom:631.813333pt;}
.y36{bottom:639.173333pt;}
.ye4{bottom:641.013333pt;}
.y85{bottom:644.213333pt;}
.y91{bottom:646.853333pt;}
.yb{bottom:647.493333pt;}
.y62{bottom:652.213333pt;}
.yb7{bottom:654.453333pt;}
.ye3{bottom:656.613333pt;}
.y84{bottom:667.813333pt;}
.y35{bottom:668.453333pt;}
.ya{bottom:671.413333pt;}
.ye2{bottom:680.293333pt;}
.y61{bottom:683.813333pt;}
.yb6{bottom:686.053333pt;}
.y90{bottom:686.773333pt;}
.ye1{bottom:695.893333pt;}
.y60{bottom:699.493333pt;}
.yb5{bottom:701.733333pt;}
.y33{bottom:708.373333pt;}
.ye0{bottom:711.573333pt;}
.y9{bottom:714.293333pt;}
.y5f{bottom:715.093333pt;}
.yb4{bottom:717.333333pt;}
.y8f{bottom:726.693333pt;}
.y5e{bottom:730.693333pt;}
.yb3{bottom:732.933333pt;}
.ydf{bottom:735.173333pt;}
.y8{bottom:745.893333pt;}
.y5d{bottom:746.373333pt;}
.y32{bottom:748.373333pt;}
.yb2{bottom:748.613333pt;}
.yde{bottom:750.773333pt;}
.y5c{bottom:761.973333pt;}
.yb1{bottom:764.213333pt;}
.ydd{bottom:774.453333pt;}
.y5b{bottom:777.653333pt;}
.y7{bottom:777.733333pt;}
.y83{bottom:785.653333pt;}
.yb0{bottom:787.893333pt;}
.y30{bottom:788.293333pt;}
.ydc{bottom:790.053333pt;}
.y5a{bottom:801.253333pt;}
.ydb{bottom:805.733333pt;}
.y6{bottom:809.733333pt;}
.yaf{bottom:817.173333pt;}
.y82{bottom:817.253333pt;}
.yda{bottom:821.333333pt;}
.y2e{bottom:828.213333pt;}
.y59{bottom:832.853333pt;}
.yae{bottom:841.493333pt;}
.y5{bottom:841.813333pt;}
.yd9{bottom:844.933333pt;}
.y58{bottom:848.533333pt;}
.yd8{bottom:860.613333pt;}
.y57{bottom:864.133333pt;}
.yad{bottom:865.733333pt;}
.y2c{bottom:868.133333pt;}
.y4{bottom:875.893333pt;}
.y56{bottom:879.813333pt;}
.yd7{bottom:884.213333pt;}
.yac{bottom:890.053333pt;}
.y55{bottom:895.413333pt;}
.y3{bottom:897.840000pt;}
.yd6{bottom:899.840000pt;}
.y54{bottom:911.040000pt;}
.y2b{bottom:911.440000pt;}
.yab{bottom:914.400000pt;}
.yd5{bottom:915.520000pt;}
.y81{bottom:919.040000pt;}
.y53{bottom:934.720000pt;}
.yaa{bottom:938.640000pt;}
.yd4{bottom:939.440000pt;}
.y2a{bottom:943.040000pt;}
.y80{bottom:950.720000pt;}
.y29{bottom:958.720000pt;}
.y52{bottom:966.320000pt;}
.y28{bottom:974.320000pt;}
.ya9{bottom:982.000000pt;}
.y7f{bottom:982.320000pt;}
.y27{bottom:990.000000pt;}
.y51{bottom:998.000000pt;}
.y26{bottom:1013.600000pt;}
.y24{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.he{height:23.626667pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hb{height:39.200000pt;}
.ha{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hf{height:54.927899pt;}
.h8{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:107.066667pt;}
.w9{width:116.426667pt;}
.w3{width:129.066667pt;}
.w7{width:145.146667pt;}
.w5{width:152.666667pt;}
.wd{width:160.026667pt;}
.w4{width:172.320000pt;}
.we{width:178.800000pt;}
.w8{width:180.880000pt;}
.wc{width:199.760000pt;}
.w6{width:215.680000pt;}
.wa{width:227.360000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:3.520000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xb{left:73.200000pt;}
.xf{left:98.879988pt;}
.x2{left:180.266655pt;}
.x5{left:190.826667pt;}
.x8{left:206.906667pt;}
.x6{left:363.866667pt;}
.xd{left:381.306667pt;}
.x9{left:388.426667pt;}
.xa{left:505.493333pt;}
.x7{left:517.173333pt;}
.xe{left:541.973333pt;}
.x3{left:704.053322pt;}
}




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