
    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_64569e05b73dd604a0221aef.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_35264c5337f6504fdace1844.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2df8550394f8e00a25ab731b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_1220d38455c1afb5690e86b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7a7a00015b13b643db89df70.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_741c43f4e6230cf30c09df85.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_716c914cb838f154b6aa9ee2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls6{letter-spacing:-1.656000px;}
.ls7{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.181440px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.576000px;}
.lse{letter-spacing:0.720000px;}
.ls5{letter-spacing:12.960000px;}
.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;}
}
.ws8{word-spacing:-18.576000px;}
.ws9{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws4{word-spacing:-16.344000px;}
.ws0{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-4.689840px;}
._7{margin-left:-3.445200px;}
._2{margin-left:-2.075280px;}
._0{margin-left:-1.003680px;}
._1{width:1.462080px;}
._3{width:2.878080px;}
._8{width:4.854480px;}
._10{width:6.264000px;}
._11{width:7.673520px;}
._13{width:8.712000px;}
._14{width:9.913920px;}
._e{width:11.658240px;}
._19{width:12.672000px;}
._c{width:13.844160px;}
._d{width:15.080880px;}
._12{width:16.487280px;}
._5{width:17.780640px;}
._4{width:18.829200px;}
._16{width:19.872000px;}
._17{width:21.130800px;}
._9{width:22.455360px;}
._b{width:23.802000px;}
._1f{width:25.446000px;}
._f{width:26.496000px;}
._1d{width:28.306800px;}
._1e{width:29.557200px;}
._15{width:30.744000px;}
._18{width:31.795680px;}
._6{width:33.053760px;}
._1b{width:34.848000px;}
._1a{width:36.265920px;}
._1c{width:37.351440px;}
._24{width:38.370480px;}
._25{width:39.699600px;}
._26{width:41.472000px;}
._22{width:48.240000px;}
._23{width:49.861200px;}
._20{width:50.976000px;}
._21{width:52.056000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:16.560000px;}
.ya3{bottom:16.740000px;}
.ya0{bottom:16.920000px;}
.ya9{bottom:18.540000px;}
.ya2{bottom:44.280000px;}
.ya5{bottom:44.460000px;}
.yd6{bottom:110.880000px;}
.y8b{bottom:111.240000px;}
.y5d{bottom:112.140000px;}
.y6f{bottom:114.840000px;}
.y139{bottom:115.560000px;}
.y2d{bottom:117.180000px;}
.ybd{bottom:122.220000px;}
.yca{bottom:128.340000px;}
.ya4{bottom:129.780000px;}
.y9b{bottom:136.440000px;}
.yf2{bottom:142.740000px;}
.ye6{bottom:145.980000px;}
.y138{bottom:146.700000px;}
.y46{bottom:146.880000px;}
.yf9{bottom:149.400000px;}
.y118{bottom:152.100000px;}
.yd5{bottom:152.280000px;}
.y8a{bottom:152.640000px;}
.y5c{bottom:153.540000px;}
.y6e{bottom:156.240000px;}
.y2c{bottom:158.580000px;}
.y79{bottom:160.380000px;}
.ybc{bottom:163.620000px;}
.yc9{bottom:169.740000px;}
.y137{bottom:177.660000px;}
.y9a{bottom:177.840000px;}
.y117{bottom:183.060000px;}
.yf1{bottom:184.140000px;}
.ye1{bottom:187.380000px;}
.y45{bottom:188.280000px;}
.yf8{bottom:190.800000px;}
.ya1{bottom:192.240000px;}
.yd4{bottom:193.680000px;}
.y89{bottom:194.040000px;}
.y5b{bottom:194.940000px;}
.y6d{bottom:197.640000px;}
.y2b{bottom:199.980000px;}
.y78{bottom:201.780000px;}
.ybb{bottom:205.020000px;}
.y136{bottom:208.800000px;}
.yc8{bottom:211.140000px;}
.y116{bottom:214.200000px;}
.y99{bottom:219.240000px;}
.yf0{bottom:225.540000px;}
.ye0{bottom:228.780000px;}
.y44{bottom:229.680000px;}
.yf7{bottom:232.200000px;}
.yd3{bottom:235.080000px;}
.y88{bottom:235.440000px;}
.y5a{bottom:236.340000px;}
.y6c{bottom:239.040000px;}
.y135{bottom:239.760000px;}
.y2a{bottom:241.380000px;}
.y77{bottom:243.180000px;}
.y115{bottom:245.160000px;}
.yba{bottom:246.420000px;}
.yc7{bottom:252.540000px;}
.y9f{bottom:254.550000px;}
.y98{bottom:260.670000px;}
.yef{bottom:266.970000px;}
.ydf{bottom:270.210000px;}
.y134{bottom:270.930000px;}
.y43{bottom:271.110000px;}
.yf6{bottom:273.630000px;}
.y114{bottom:276.330000px;}
.yd2{bottom:276.510000px;}
.y59{bottom:277.770000px;}
.y29{bottom:282.810000px;}
.y87{bottom:284.070000px;}
.y76{bottom:284.610000px;}
.y6b{bottom:287.850000px;}
.y9d{bottom:289.470000px;}
.yc6{bottom:293.970000px;}
.y133{bottom:301.890000px;}
.y97{bottom:302.070000px;}
.y113{bottom:307.290000px;}
.yee{bottom:308.370000px;}
.yde{bottom:311.610000px;}
.y42{bottom:312.510000px;}
.yf5{bottom:315.030000px;}
.yd1{bottom:317.910000px;}
.y58{bottom:319.170000px;}
.y28{bottom:324.030000px;}
.y75{bottom:326.010000px;}
.yb9{bottom:329.250000px;}
.y132{bottom:333.030000px;}
.yc5{bottom:335.370000px;}
.y9c{bottom:335.730000px;}
.y112{bottom:338.430000px;}
.y96{bottom:343.470000px;}
.y6a{bottom:345.990000px;}
.yed{bottom:349.770000px;}
.y86{bottom:353.010000px;}
.y41{bottom:353.910000px;}
.yf4{bottom:356.430000px;}
.yd0{bottom:359.310000px;}
.y57{bottom:360.570000px;}
.y131{bottom:363.990000px;}
.y27{bottom:365.430000px;}
.y74{bottom:367.230000px;}
.y111{bottom:369.390000px;}
.yb8{bottom:370.650000px;}
.ye8{bottom:374.070000px;}
.yc4{bottom:376.770000px;}
.y95{bottom:384.870000px;}
.yec{bottom:391.170000px;}
.y85{bottom:394.230000px;}
.y130{bottom:395.130000px;}
.y40{bottom:395.310000px;}
.y110{bottom:400.350000px;}
.ycf{bottom:400.710000px;}
.y69{bottom:401.250000px;}
.y56{bottom:401.970000px;}
.yf3{bottom:405.030000px;}
.y26{bottom:406.830000px;}
.y73{bottom:408.630000px;}
.ye7{bottom:408.990000px;}
.yb7{bottom:412.050000px;}
.yc3{bottom:418.170000px;}
.y12f{bottom:426.090000px;}
.y94{bottom:426.270000px;}
.y10f{bottom:431.490000px;}
.yeb{bottom:432.570000px;}
.y84{bottom:435.630000px;}
.y3f{bottom:436.530000px;}
.y55{bottom:443.370000px;}
.y25{bottom:448.230000px;}
.yce{bottom:449.670000px;}
.y72{bottom:450.030000px;}
.y5e{bottom:450.390000px;}
.yb6{bottom:453.450000px;}
.y12e{bottom:457.050000px;}
.yc2{bottom:459.570000px;}
.y10e{bottom:462.450000px;}
.yea{bottom:463.350000px;}
.y93{bottom:467.670000px;}
.y83{bottom:477.030000px;}
.y3e{bottom:477.930000px;}
.y54{bottom:484.815000px;}
.y12d{bottom:488.235000px;}
.ydc{bottom:491.475000px;}
.y10d{bottom:493.635000px;}
.yb5{bottom:494.895000px;}
.y24{bottom:496.875000px;}
.ye9{bottom:497.775000px;}
.y71{bottom:499.035000px;}
.yc1{bottom:501.015000px;}
.ycd{bottom:507.315000px;}
.y92{bottom:509.115000px;}
.y82{bottom:518.475000px;}
.y12c{bottom:519.195000px;}
.y3d{bottom:519.375000px;}
.y10c{bottom:524.595000px;}
.ye5{bottom:525.675000px;}
.y53{bottom:526.215000px;}
.ydb{bottom:532.875000px;}
.yb4{bottom:536.295000px;}
.yc0{bottom:539.715000px;}
.y11{bottom:541.695000px;}
.y12b{bottom:550.335000px;}
.y91{bottom:550.515000px;}
.y23{bottom:554.115000px;}
.y10b{bottom:555.735000px;}
.y81{bottom:559.875000px;}
.y3c{bottom:560.775000px;}
.ycc{bottom:565.815000px;}
.y52{bottom:567.615000px;}
.yda{bottom:574.275000px;}
.ybf{bottom:574.635000px;}
.yb3{bottom:577.695000px;}
.y12a{bottom:581.295000px;}
.y10a{bottom:586.695000px;}
.y10{bottom:590.835000px;}
.y90{bottom:591.915000px;}
.ye4{bottom:594.615000px;}
.ycb{bottom:600.195000px;}
.y22{bottom:600.555000px;}
.y80{bottom:601.275000px;}
.y3b{bottom:602.175000px;}
.y51{bottom:609.015000px;}
.y129{bottom:612.435000px;}
.ybe{bottom:616.035000px;}
.y109{bottom:617.835000px;}
.yb2{bottom:619.095000px;}
.yf{bottom:621.795000px;}
.yd9{bottom:623.235000px;}
.y8f{bottom:633.315000px;}
.ye3{bottom:636.015000px;}
.y7f{bottom:642.675000px;}
.y128{bottom:643.395000px;}
.y3a{bottom:643.575000px;}
.y108{bottom:648.795000px;}
.ydd{bottom:650.235000px;}
.y50{bottom:650.415000px;}
.y21{bottom:651.495000px;}
.ye{bottom:652.935000px;}
.yb1{bottom:660.495000px;}
.y127{bottom:674.535000px;}
.ye2{bottom:677.415000px;}
.y20{bottom:679.935000px;}
.y8e{bottom:681.915000px;}
.y7e{bottom:684.075000px;}
.y39{bottom:684.975000px;}
.yd{bottom:690.735000px;}
.y4f{bottom:691.815000px;}
.yb0{bottom:701.895000px;}
.y126{bottom:705.525000px;}
.y1f{bottom:708.405000px;}
.y107{bottom:710.925000px;}
.y68{bottom:718.845000px;}
.y7d{bottom:725.505000px;}
.y38{bottom:726.405000px;}
.y4e{bottom:733.245000px;}
.yc{bottom:735.585000px;}
.y125{bottom:736.665000px;}
.y1e{bottom:737.025000px;}
.y8d{bottom:740.265000px;}
.y106{bottom:742.065000px;}
.yaf{bottom:743.325000px;}
.y67{bottom:760.245000px;}
.y1d{bottom:765.465000px;}
.y7c{bottom:766.905000px;}
.y124{bottom:767.625000px;}
.y37{bottom:767.805000px;}
.yb{bottom:771.765000px;}
.y105{bottom:773.025000px;}
.y4d{bottom:774.645000px;}
.yae{bottom:784.725000px;}
.y1c{bottom:793.905000px;}
.y8c{bottom:795.345000px;}
.y123{bottom:798.765000px;}
.y66{bottom:801.645000px;}
.y104{bottom:804.165000px;}
.ya{bottom:807.945000px;}
.y36{bottom:809.205000px;}
.y7b{bottom:815.865000px;}
.y4c{bottom:816.045000px;}
.y1b{bottom:822.345000px;}
.yad{bottom:826.125000px;}
.y122{bottom:829.725000px;}
.y103{bottom:835.125000px;}
.y65{bottom:843.045000px;}
.y35{bottom:850.605000px;}
.y1a{bottom:850.785000px;}
.y4b{bottom:857.445000px;}
.y121{bottom:860.865000px;}
.y9{bottom:861.765000px;}
.y102{bottom:866.265000px;}
.yac{bottom:867.525000px;}
.y19{bottom:879.225000px;}
.y64{bottom:884.445000px;}
.y120{bottom:891.825000px;}
.y34{bottom:892.005000px;}
.y101{bottom:897.225000px;}
.y4a{bottom:898.845000px;}
.y8{bottom:906.405000px;}
.y18{bottom:907.665000px;}
.yab{bottom:915.945000px;}
.y11f{bottom:922.965000px;}
.y63{bottom:925.845000px;}
.y7{bottom:927.105000px;}
.y100{bottom:928.365000px;}
.y33{bottom:933.450000px;}
.y17{bottom:936.150000px;}
.y49{bottom:940.290000px;}
.yfa{bottom:947.310000px;}
.y70{bottom:947.670000px;}
.y6{bottom:947.850000px;}
.y11e{bottom:953.970000px;}
.yaa{bottom:963.690000px;}
.y16{bottom:964.590000px;}
.y62{bottom:967.290000px;}
.yff{bottom:968.010000px;}
.y5{bottom:968.550000px;}
.y32{bottom:974.850000px;}
.y48{bottom:981.690000px;}
.y11d{bottom:985.110000px;}
.y15{bottom:993.210000px;}
.y61{bottom:1008.690000px;}
.y4{bottom:1009.590000px;}
.y11c{bottom:1016.070000px;}
.y31{bottom:1016.250000px;}
.y14{bottom:1021.650000px;}
.yd8{bottom:1023.090000px;}
.ya8{bottom:1026.150000px;}
.y47{bottom:1030.110000px;}
.yfe{bottom:1036.950000px;}
.y11b{bottom:1047.210000px;}
.y3{bottom:1049.550000px;}
.y13{bottom:1050.090000px;}
.y30{bottom:1057.650000px;}
.ya7{bottom:1062.690000px;}
.yd7{bottom:1071.870000px;}
.y11a{bottom:1078.170000px;}
.yfd{bottom:1078.350000px;}
.y12{bottom:1078.530000px;}
.y60{bottom:1091.490000px;}
.y2{bottom:1092.030000px;}
.y2f{bottom:1099.050000px;}
.y119{bottom:1109.310000px;}
.yfc{bottom:1119.750000px;}
.ya6{bottom:1125.150000px;}
.y1{bottom:1137.210000px;}
.y5f{bottom:1139.910000px;}
.yfb{bottom:1140.090000px;}
.y7a{bottom:1140.270000px;}
.y2e{bottom:1140.450000px;}
.hc{height:27.540000px;}
.he{height:27.720000px;}
.h12{height:29.340000px;}
.h8{height:47.321367px;}
.hf{height:47.344922px;}
.hd{height:48.616875px;}
.h10{height:55.080000px;}
.h11{height:55.260000px;}
.hb{height:55.275469px;}
.h4{height:60.082031px;}
.ha{height:65.010937px;}
.h5{height:70.628906px;}
.h6{height:70.664062px;}
.h3{height:72.562500px;}
.h9{height:74.681367px;}
.h7{height:83.238047px;}
.h2{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:78.660000px;}
.w6{width:83.376000px;}
.w8{width:109.836000px;}
.w3{width:111.420000px;}
.w7{width:112.860000px;}
.w4{width:136.296000px;}
.w1{width:892.500000px;}
.w2{width:892.619987px;}
.w0{width:892.620000px;}
.x0{left:0.000000px;}
.x7{left:2.880000px;}
.x2{left:127.655987px;}
.x4{left:181.649987px;}
.x3{left:211.709987px;}
.x8{left:240.510000px;}
.x1{left:322.634987px;}
.x9{left:377.535000px;}
.xa{left:456.915000px;}
.xb{left:541.005000px;}
.xc{left:654.585000px;}
.x6{left:751.289987px;}
.x5{left:765.149987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls6{letter-spacing:-1.472000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.161280pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.640000pt;}
.ls5{letter-spacing:11.520000pt;}
.ws8{word-spacing:-16.512000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.528000pt;}
.ws0{word-spacing:-12.016000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-4.168747pt;}
._7{margin-left:-3.062400pt;}
._2{margin-left:-1.844693pt;}
._0{margin-left:-0.892160pt;}
._1{width:1.299627pt;}
._3{width:2.558293pt;}
._8{width:4.315093pt;}
._10{width:5.568000pt;}
._11{width:6.820907pt;}
._13{width:7.744000pt;}
._14{width:8.812373pt;}
._e{width:10.362880pt;}
._19{width:11.264000pt;}
._c{width:12.305920pt;}
._d{width:13.405227pt;}
._12{width:14.655360pt;}
._5{width:15.805013pt;}
._4{width:16.737067pt;}
._16{width:17.664000pt;}
._17{width:18.782933pt;}
._9{width:19.960320pt;}
._b{width:21.157333pt;}
._1f{width:22.618667pt;}
._f{width:23.552000pt;}
._1d{width:25.161600pt;}
._1e{width:26.273067pt;}
._15{width:27.328000pt;}
._18{width:28.262827pt;}
._6{width:29.381120pt;}
._1b{width:30.976000pt;}
._1a{width:32.236373pt;}
._1c{width:33.201280pt;}
._24{width:34.107093pt;}
._25{width:35.288533pt;}
._26{width:36.864000pt;}
._22{width:42.880000pt;}
._23{width:44.321067pt;}
._20{width:45.312000pt;}
._21{width:46.272000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:14.720000pt;}
.ya3{bottom:14.880000pt;}
.ya0{bottom:15.040000pt;}
.ya9{bottom:16.480000pt;}
.ya2{bottom:39.360000pt;}
.ya5{bottom:39.520000pt;}
.yd6{bottom:98.560000pt;}
.y8b{bottom:98.880000pt;}
.y5d{bottom:99.680000pt;}
.y6f{bottom:102.080000pt;}
.y139{bottom:102.720000pt;}
.y2d{bottom:104.160000pt;}
.ybd{bottom:108.640000pt;}
.yca{bottom:114.080000pt;}
.ya4{bottom:115.360000pt;}
.y9b{bottom:121.280000pt;}
.yf2{bottom:126.880000pt;}
.ye6{bottom:129.760000pt;}
.y138{bottom:130.400000pt;}
.y46{bottom:130.560000pt;}
.yf9{bottom:132.800000pt;}
.y118{bottom:135.200000pt;}
.yd5{bottom:135.360000pt;}
.y8a{bottom:135.680000pt;}
.y5c{bottom:136.480000pt;}
.y6e{bottom:138.880000pt;}
.y2c{bottom:140.960000pt;}
.y79{bottom:142.560000pt;}
.ybc{bottom:145.440000pt;}
.yc9{bottom:150.880000pt;}
.y137{bottom:157.920000pt;}
.y9a{bottom:158.080000pt;}
.y117{bottom:162.720000pt;}
.yf1{bottom:163.680000pt;}
.ye1{bottom:166.560000pt;}
.y45{bottom:167.360000pt;}
.yf8{bottom:169.600000pt;}
.ya1{bottom:170.880000pt;}
.yd4{bottom:172.160000pt;}
.y89{bottom:172.480000pt;}
.y5b{bottom:173.280000pt;}
.y6d{bottom:175.680000pt;}
.y2b{bottom:177.760000pt;}
.y78{bottom:179.360000pt;}
.ybb{bottom:182.240000pt;}
.y136{bottom:185.600000pt;}
.yc8{bottom:187.680000pt;}
.y116{bottom:190.400000pt;}
.y99{bottom:194.880000pt;}
.yf0{bottom:200.480000pt;}
.ye0{bottom:203.360000pt;}
.y44{bottom:204.160000pt;}
.yf7{bottom:206.400000pt;}
.yd3{bottom:208.960000pt;}
.y88{bottom:209.280000pt;}
.y5a{bottom:210.080000pt;}
.y6c{bottom:212.480000pt;}
.y135{bottom:213.120000pt;}
.y2a{bottom:214.560000pt;}
.y77{bottom:216.160000pt;}
.y115{bottom:217.920000pt;}
.yba{bottom:219.040000pt;}
.yc7{bottom:224.480000pt;}
.y9f{bottom:226.266667pt;}
.y98{bottom:231.706667pt;}
.yef{bottom:237.306667pt;}
.ydf{bottom:240.186667pt;}
.y134{bottom:240.826667pt;}
.y43{bottom:240.986667pt;}
.yf6{bottom:243.226667pt;}
.y114{bottom:245.626667pt;}
.yd2{bottom:245.786667pt;}
.y59{bottom:246.906667pt;}
.y29{bottom:251.386667pt;}
.y87{bottom:252.506667pt;}
.y76{bottom:252.986667pt;}
.y6b{bottom:255.866667pt;}
.y9d{bottom:257.306667pt;}
.yc6{bottom:261.306667pt;}
.y133{bottom:268.346667pt;}
.y97{bottom:268.506667pt;}
.y113{bottom:273.146667pt;}
.yee{bottom:274.106667pt;}
.yde{bottom:276.986667pt;}
.y42{bottom:277.786667pt;}
.yf5{bottom:280.026667pt;}
.yd1{bottom:282.586667pt;}
.y58{bottom:283.706667pt;}
.y28{bottom:288.026667pt;}
.y75{bottom:289.786667pt;}
.yb9{bottom:292.666667pt;}
.y132{bottom:296.026667pt;}
.yc5{bottom:298.106667pt;}
.y9c{bottom:298.426667pt;}
.y112{bottom:300.826667pt;}
.y96{bottom:305.306667pt;}
.y6a{bottom:307.546667pt;}
.yed{bottom:310.906667pt;}
.y86{bottom:313.786667pt;}
.y41{bottom:314.586667pt;}
.yf4{bottom:316.826667pt;}
.yd0{bottom:319.386667pt;}
.y57{bottom:320.506667pt;}
.y131{bottom:323.546667pt;}
.y27{bottom:324.826667pt;}
.y74{bottom:326.426667pt;}
.y111{bottom:328.346667pt;}
.yb8{bottom:329.466667pt;}
.ye8{bottom:332.506667pt;}
.yc4{bottom:334.906667pt;}
.y95{bottom:342.106667pt;}
.yec{bottom:347.706667pt;}
.y85{bottom:350.426667pt;}
.y130{bottom:351.226667pt;}
.y40{bottom:351.386667pt;}
.y110{bottom:355.866667pt;}
.ycf{bottom:356.186667pt;}
.y69{bottom:356.666667pt;}
.y56{bottom:357.306667pt;}
.yf3{bottom:360.026667pt;}
.y26{bottom:361.626667pt;}
.y73{bottom:363.226667pt;}
.ye7{bottom:363.546667pt;}
.yb7{bottom:366.266667pt;}
.yc3{bottom:371.706667pt;}
.y12f{bottom:378.746667pt;}
.y94{bottom:378.906667pt;}
.y10f{bottom:383.546667pt;}
.yeb{bottom:384.506667pt;}
.y84{bottom:387.226667pt;}
.y3f{bottom:388.026667pt;}
.y55{bottom:394.106667pt;}
.y25{bottom:398.426667pt;}
.yce{bottom:399.706667pt;}
.y72{bottom:400.026667pt;}
.y5e{bottom:400.346667pt;}
.yb6{bottom:403.066667pt;}
.y12e{bottom:406.266667pt;}
.yc2{bottom:408.506667pt;}
.y10e{bottom:411.066667pt;}
.yea{bottom:411.866667pt;}
.y93{bottom:415.706667pt;}
.y83{bottom:424.026667pt;}
.y3e{bottom:424.826667pt;}
.y54{bottom:430.946667pt;}
.y12d{bottom:433.986667pt;}
.ydc{bottom:436.866667pt;}
.y10d{bottom:438.786667pt;}
.yb5{bottom:439.906667pt;}
.y24{bottom:441.666667pt;}
.ye9{bottom:442.466667pt;}
.y71{bottom:443.586667pt;}
.yc1{bottom:445.346667pt;}
.ycd{bottom:450.946667pt;}
.y92{bottom:452.546667pt;}
.y82{bottom:460.866667pt;}
.y12c{bottom:461.506667pt;}
.y3d{bottom:461.666667pt;}
.y10c{bottom:466.306667pt;}
.ye5{bottom:467.266667pt;}
.y53{bottom:467.746667pt;}
.ydb{bottom:473.666667pt;}
.yb4{bottom:476.706667pt;}
.yc0{bottom:479.746667pt;}
.y11{bottom:481.506667pt;}
.y12b{bottom:489.186667pt;}
.y91{bottom:489.346667pt;}
.y23{bottom:492.546667pt;}
.y10b{bottom:493.986667pt;}
.y81{bottom:497.666667pt;}
.y3c{bottom:498.466667pt;}
.ycc{bottom:502.946667pt;}
.y52{bottom:504.546667pt;}
.yda{bottom:510.466667pt;}
.ybf{bottom:510.786667pt;}
.yb3{bottom:513.506667pt;}
.y12a{bottom:516.706667pt;}
.y10a{bottom:521.506667pt;}
.y10{bottom:525.186667pt;}
.y90{bottom:526.146667pt;}
.ye4{bottom:528.546667pt;}
.ycb{bottom:533.506667pt;}
.y22{bottom:533.826667pt;}
.y80{bottom:534.466667pt;}
.y3b{bottom:535.266667pt;}
.y51{bottom:541.346667pt;}
.y129{bottom:544.386667pt;}
.ybe{bottom:547.586667pt;}
.y109{bottom:549.186667pt;}
.yb2{bottom:550.306667pt;}
.yf{bottom:552.706667pt;}
.yd9{bottom:553.986667pt;}
.y8f{bottom:562.946667pt;}
.ye3{bottom:565.346667pt;}
.y7f{bottom:571.266667pt;}
.y128{bottom:571.906667pt;}
.y3a{bottom:572.066667pt;}
.y108{bottom:576.706667pt;}
.ydd{bottom:577.986667pt;}
.y50{bottom:578.146667pt;}
.y21{bottom:579.106667pt;}
.ye{bottom:580.386667pt;}
.yb1{bottom:587.106667pt;}
.y127{bottom:599.586667pt;}
.ye2{bottom:602.146667pt;}
.y20{bottom:604.386667pt;}
.y8e{bottom:606.146667pt;}
.y7e{bottom:608.066667pt;}
.y39{bottom:608.866667pt;}
.yd{bottom:613.986667pt;}
.y4f{bottom:614.946667pt;}
.yb0{bottom:623.906667pt;}
.y126{bottom:627.133333pt;}
.y1f{bottom:629.693333pt;}
.y107{bottom:631.933333pt;}
.y68{bottom:638.973333pt;}
.y7d{bottom:644.893333pt;}
.y38{bottom:645.693333pt;}
.y4e{bottom:651.773333pt;}
.yc{bottom:653.853333pt;}
.y125{bottom:654.813333pt;}
.y1e{bottom:655.133333pt;}
.y8d{bottom:658.013333pt;}
.y106{bottom:659.613333pt;}
.yaf{bottom:660.733333pt;}
.y67{bottom:675.773333pt;}
.y1d{bottom:680.413333pt;}
.y7c{bottom:681.693333pt;}
.y124{bottom:682.333333pt;}
.y37{bottom:682.493333pt;}
.yb{bottom:686.013333pt;}
.y105{bottom:687.133333pt;}
.y4d{bottom:688.573333pt;}
.yae{bottom:697.533333pt;}
.y1c{bottom:705.693333pt;}
.y8c{bottom:706.973333pt;}
.y123{bottom:710.013333pt;}
.y66{bottom:712.573333pt;}
.y104{bottom:714.813333pt;}
.ya{bottom:718.173333pt;}
.y36{bottom:719.293333pt;}
.y7b{bottom:725.213333pt;}
.y4c{bottom:725.373333pt;}
.y1b{bottom:730.973333pt;}
.yad{bottom:734.333333pt;}
.y122{bottom:737.533333pt;}
.y103{bottom:742.333333pt;}
.y65{bottom:749.373333pt;}
.y35{bottom:756.093333pt;}
.y1a{bottom:756.253333pt;}
.y4b{bottom:762.173333pt;}
.y121{bottom:765.213333pt;}
.y9{bottom:766.013333pt;}
.y102{bottom:770.013333pt;}
.yac{bottom:771.133333pt;}
.y19{bottom:781.533333pt;}
.y64{bottom:786.173333pt;}
.y120{bottom:792.733333pt;}
.y34{bottom:792.893333pt;}
.y101{bottom:797.533333pt;}
.y4a{bottom:798.973333pt;}
.y8{bottom:805.693333pt;}
.y18{bottom:806.813333pt;}
.yab{bottom:814.173333pt;}
.y11f{bottom:820.413333pt;}
.y63{bottom:822.973333pt;}
.y7{bottom:824.093333pt;}
.y100{bottom:825.213333pt;}
.y33{bottom:829.733333pt;}
.y17{bottom:832.133333pt;}
.y49{bottom:835.813333pt;}
.yfa{bottom:842.053333pt;}
.y70{bottom:842.373333pt;}
.y6{bottom:842.533333pt;}
.y11e{bottom:847.973333pt;}
.yaa{bottom:856.613333pt;}
.y16{bottom:857.413333pt;}
.y62{bottom:859.813333pt;}
.yff{bottom:860.453333pt;}
.y5{bottom:860.933333pt;}
.y32{bottom:866.533333pt;}
.y48{bottom:872.613333pt;}
.y11d{bottom:875.653333pt;}
.y15{bottom:882.853333pt;}
.y61{bottom:896.613333pt;}
.y4{bottom:897.413333pt;}
.y11c{bottom:903.173333pt;}
.y31{bottom:903.333333pt;}
.y14{bottom:908.133333pt;}
.yd8{bottom:909.413333pt;}
.ya8{bottom:912.133333pt;}
.y47{bottom:915.653333pt;}
.yfe{bottom:921.733333pt;}
.y11b{bottom:930.853333pt;}
.y3{bottom:932.933333pt;}
.y13{bottom:933.413333pt;}
.y30{bottom:940.133333pt;}
.ya7{bottom:944.613333pt;}
.yd7{bottom:952.773333pt;}
.y11a{bottom:958.373333pt;}
.yfd{bottom:958.533333pt;}
.y12{bottom:958.693333pt;}
.y60{bottom:970.213333pt;}
.y2{bottom:970.693333pt;}
.y2f{bottom:976.933333pt;}
.y119{bottom:986.053333pt;}
.yfc{bottom:995.333333pt;}
.ya6{bottom:1000.133333pt;}
.y1{bottom:1010.853333pt;}
.y5f{bottom:1013.253333pt;}
.yfb{bottom:1013.413333pt;}
.y7a{bottom:1013.573333pt;}
.y2e{bottom:1013.733333pt;}
.hc{height:24.480000pt;}
.he{height:24.640000pt;}
.h12{height:26.080000pt;}
.h8{height:42.063437pt;}
.hf{height:42.084375pt;}
.hd{height:43.215000pt;}
.h10{height:48.960000pt;}
.h11{height:49.120000pt;}
.hb{height:49.133750pt;}
.h4{height:53.406250pt;}
.ha{height:57.787500pt;}
.h5{height:62.781250pt;}
.h6{height:62.812500pt;}
.h3{height:64.500000pt;}
.h9{height:66.383438pt;}
.h7{height:73.989375pt;}
.h2{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:69.920000pt;}
.w6{width:74.112000pt;}
.w8{width:97.632000pt;}
.w3{width:99.040000pt;}
.w7{width:100.320000pt;}
.w4{width:121.152000pt;}
.w1{width:793.333333pt;}
.w2{width:793.439988pt;}
.w0{width:793.440000pt;}
.x0{left:0.000000pt;}
.x7{left:2.560000pt;}
.x2{left:113.471988pt;}
.x4{left:161.466655pt;}
.x3{left:188.186655pt;}
.x8{left:213.786667pt;}
.x1{left:286.786655pt;}
.x9{left:335.586667pt;}
.xa{left:406.146667pt;}
.xb{left:480.893333pt;}
.xc{left:581.853333pt;}
.x6{left:667.813322pt;}
.x5{left:680.133322pt;}
}




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