
    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_fe5cea557b50d30d3a7a98f2.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_f815b43a506e198b2c44bef6.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_399f3ad1d15115fb8d70901e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e43e11de6f5888e437580800.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_e00804e1fc2daab9548fc99c.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_6ec30183ff986716e501b34c.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;}
.lsd{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.160800px;}
.ls14{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.125400px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsb{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.181200px;}
.lse{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:47.726640px;}
.ls13{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;}
.ws8{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.425600px;}
.wse{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.101000px;}
.wsd{word-spacing:-13.072800px;}
.wsa{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._17{margin-left:-4.388760px;}
._4{margin-left:-3.306600px;}
._11{margin-left:-2.289000px;}
._0{margin-left:-1.110000px;}
._3{width:1.179120px;}
._10{width:2.294040px;}
._6{width:3.366600px;}
._12{width:4.437003px;}
._5{width:5.470800px;}
._2{width:6.888010px;}
._1{width:8.041068px;}
._13{width:9.118921px;}
._14{width:10.160280px;}
._9{width:11.362800px;}
._a{width:15.210600px;}
._b{width:16.678797px;}
._d{width:18.216600px;}
._c{width:19.647360px;}
._8{width:21.008999px;}
._7{width:22.124400px;}
._e{width:23.206200px;}
._f{width:24.382440px;}
._15{width:25.490880px;}
._16{width:26.813520px;}
._19{width:40.160160px;}
._1d{width:46.256040px;}
._18{width:49.508640px;}
._1c{width:167.174040px;}
._1b{width:307.814400px;}
._1a{width:441.077160px;}
.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;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y8d{bottom:112.800000px;}
.yca{bottom:114.240000px;}
.y9b{bottom:118.650000px;}
.yf3{bottom:120.360000px;}
.y77{bottom:125.490000px;}
.y8c{bottom:130.440000px;}
.yc9{bottom:131.790000px;}
.ye1{bottom:133.050000px;}
.yf2{bottom:137.910000px;}
.y27{bottom:141.330000px;}
.y76{bottom:143.130000px;}
.y8b{bottom:147.990000px;}
.y5b{bottom:148.530000px;}
.yc8{bottom:149.340000px;}
.ye0{bottom:150.690000px;}
.y9a{bottom:150.870000px;}
.y26{bottom:158.880000px;}
.y75{bottom:160.680000px;}
.yf1{bottom:164.820000px;}
.y8a{bottom:165.630000px;}
.yc7{bottom:166.980000px;}
.ydf{bottom:168.240000px;}
.y25{bottom:176.430000px;}
.y89{bottom:183.180000px;}
.y5a{bottom:184.170000px;}
.yc6{bottom:184.530000px;}
.yde{bottom:185.880000px;}
.y74{bottom:196.230000px;}
.y88{bottom:200.730000px;}
.y59{bottom:201.720000px;}
.ydd{bottom:203.430000px;}
.y24{bottom:212.070000px;}
.yf0{bottom:213.150000px;}
.y73{bottom:213.870000px;}
.y87{bottom:218.370000px;}
.y58{bottom:219.270000px;}
.yc5{bottom:220.170000px;}
.ydc{bottom:220.980000px;}
.y23{bottom:229.620000px;}
.y72{bottom:231.420000px;}
.y86{bottom:235.920000px;}
.y57{bottom:236.910000px;}
.yc4{bottom:237.720000px;}
.ydb{bottom:238.620000px;}
.yef{bottom:240.060000px;}
.y22{bottom:247.260000px;}
.y71{bottom:249.060000px;}
.y85{bottom:253.560000px;}
.y56{bottom:254.460000px;}
.yc3{bottom:255.270000px;}
.yda{bottom:256.170000px;}
.y21{bottom:264.810000px;}
.y70{bottom:266.610000px;}
.y55{bottom:272.100000px;}
.yc2{bottom:272.910000px;}
.yd9{bottom:273.810000px;}
.yee{bottom:277.410000px;}
.y84{bottom:280.470000px;}
.y20{bottom:282.360000px;}
.y6f{bottom:284.160000px;}
.y54{bottom:289.650000px;}
.yc1{bottom:290.460000px;}
.y1f{bottom:300.000000px;}
.y6e{bottom:301.800000px;}
.y53{bottom:307.200000px;}
.yc0{bottom:308.100000px;}
.yd8{bottom:309.360000px;}
.y6d{bottom:319.350000px;}
.y52{bottom:324.840000px;}
.ybf{bottom:325.650000px;}
.yd7{bottom:326.910000px;}
.y83{bottom:328.710000px;}
.y1e{bottom:335.550000px;}
.y6c{bottom:336.990000px;}
.y51{bottom:342.390000px;}
.ybe{bottom:343.200000px;}
.yd6{bottom:344.550000px;}
.y1d{bottom:353.190000px;}
.y6b{bottom:354.540000px;}
.ybd{bottom:360.840000px;}
.y82{bottom:360.930000px;}
.yd5{bottom:362.100000px;}
.y1c{bottom:370.740000px;}
.y50{bottom:377.940000px;}
.ybc{bottom:378.390000px;}
.yd4{bottom:379.740000px;}
.y1b{bottom:388.290000px;}
.y6a{bottom:390.090000px;}
.y4f{bottom:395.580000px;}
.ybb{bottom:395.940000px;}
.yd3{bottom:397.290000px;}
.y1a{bottom:405.930000px;}
.y69{bottom:407.730000px;}
.y4e{bottom:413.130000px;}
.yed{bottom:413.580000px;}
.yd2{bottom:414.840000px;}
.y19{bottom:423.480000px;}
.y68{bottom:425.280000px;}
.y4d{bottom:430.770000px;}
.yec{bottom:431.130000px;}
.yba{bottom:431.580000px;}
.yd1{bottom:432.480000px;}
.y67{bottom:442.920000px;}
.y4c{bottom:448.320000px;}
.yeb{bottom:448.770000px;}
.yb9{bottom:449.130000px;}
.yd0{bottom:450.030000px;}
.y18{bottom:450.390000px;}
.y66{bottom:460.470000px;}
.y4b{bottom:465.870000px;}
.yea{bottom:466.320000px;}
.yb8{bottom:466.770000px;}
.ycf{bottom:467.670000px;}
.y65{bottom:478.050000px;}
.y4a{bottom:483.540000px;}
.ye9{bottom:483.900000px;}
.yb7{bottom:484.350000px;}
.yce{bottom:485.250000px;}
.y64{bottom:495.690000px;}
.y17{bottom:498.660000px;}
.y49{bottom:501.090000px;}
.ye8{bottom:501.540000px;}
.yb6{bottom:501.900000px;}
.ycd{bottom:512.160000px;}
.y63{bottom:513.240000px;}
.y16{bottom:516.570000px;}
.y48{bottom:518.730000px;}
.ye7{bottom:519.090000px;}
.yb5{bottom:519.540000px;}
.y62{bottom:530.790000px;}
.ye6{bottom:536.730000px;}
.yb4{bottom:537.090000px;}
.y61{bottom:548.430000px;}
.y15{bottom:553.650000px;}
.y47{bottom:554.280000px;}
.yb3{bottom:554.730000px;}
.ycc{bottom:560.400000px;}
.y60{bottom:565.980000px;}
.y14{bottom:571.200000px;}
.y46{bottom:571.830000px;}
.yb2{bottom:572.280000px;}
.y10b{bottom:575.430000px;}
.y13{bottom:588.840000px;}
.y45{bottom:589.470000px;}
.yb1{bottom:589.830000px;}
.ycb{bottom:592.620000px;}
.y5f{bottom:592.890000px;}
.y10a{bottom:593.070000px;}
.ye5{bottom:598.740000px;}
.y12{bottom:606.390000px;}
.y44{bottom:607.020000px;}
.yb0{bottom:607.470000px;}
.y109{bottom:619.620000px;}
.y11{bottom:623.940000px;}
.y43{bottom:624.660000px;}
.yaf{bottom:625.020000px;}
.y108{bottom:637.260000px;}
.y5e{bottom:641.220000px;}
.y10{bottom:641.580000px;}
.y42{bottom:642.210000px;}
.y99{bottom:647.070000px;}
.y107{bottom:654.810000px;}
.y5d{bottom:658.770000px;}
.yf{bottom:659.130000px;}
.y41{bottom:659.760000px;}
.yae{bottom:660.660000px;}
.y98{bottom:664.620000px;}
.y106{bottom:672.360000px;}
.ye{bottom:676.770000px;}
.y40{bottom:677.400000px;}
.yad{bottom:678.210000px;}
.y97{bottom:682.260000px;}
.y5c{bottom:690.990000px;}
.yd{bottom:694.320000px;}
.y3f{bottom:694.950000px;}
.yac{bottom:695.760000px;}
.y105{bottom:699.000000px;}
.y96{bottom:699.810000px;}
.yc{bottom:711.870000px;}
.yab{bottom:713.400000px;}
.y104{bottom:716.550000px;}
.y95{bottom:717.360000px;}
.yb{bottom:729.510000px;}
.y3e{bottom:730.590000px;}
.yaa{bottom:730.950000px;}
.y94{bottom:735.000000px;}
.y103{bottom:743.190000px;}
.y3d{bottom:748.140000px;}
.ya9{bottom:748.590000px;}
.y93{bottom:752.550000px;}
.ya{bottom:756.420000px;}
.y102{bottom:760.740000px;}
.y3c{bottom:765.690000px;}
.ya8{bottom:766.140000px;}
.y92{bottom:770.190000px;}
.y3b{bottom:783.330000px;}
.ya7{bottom:783.690000px;}
.y101{bottom:787.290000px;}
.y91{bottom:787.740000px;}
.y3a{bottom:800.880000px;}
.ya6{bottom:801.330000px;}
.y9{bottom:803.130000px;}
.y100{bottom:804.930000px;}
.y90{bottom:805.290000px;}
.y39{bottom:818.520000px;}
.ya5{bottom:818.880000px;}
.y8f{bottom:822.930000px;}
.y81{bottom:823.290000px;}
.yff{bottom:831.480000px;}
.y38{bottom:836.070000px;}
.ya4{bottom:836.520000px;}
.y8{bottom:838.950000px;}
.y8e{bottom:840.480000px;}
.y80{bottom:840.930000px;}
.yfe{bottom:849.030000px;}
.y37{bottom:853.620000px;}
.ya3{bottom:854.070000px;}
.ye4{bottom:858.030000px;}
.y7f{bottom:858.480000px;}
.yfd{bottom:866.670000px;}
.y36{bottom:871.260000px;}
.ya2{bottom:871.620000px;}
.y7{bottom:874.950000px;}
.y7e{bottom:876.030000px;}
.yfc{bottom:884.220000px;}
.y7d{bottom:893.670000px;}
.y35{bottom:898.170000px;}
.ya1{bottom:898.530000px;}
.yfb{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y7c{bottom:911.220000px;}
.yfa{bottom:928.410000px;}
.y7b{bottom:928.860000px;}
.y34{bottom:946.410000px;}
.ya0{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.yf9{bottom:954.960000px;}
.y33{bottom:963.960000px;}
.y9f{bottom:964.410000px;}
.yf8{bottom:972.600000px;}
.y32{bottom:981.600000px;}
.y9e{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.yf7{bottom:990.150000px;}
.y31{bottom:999.150000px;}
.y9d{bottom:999.600000px;}
.y3{bottom:1010.070000px;}
.y30{bottom:1016.820000px;}
.y9c{bottom:1017.180000px;}
.y2f{bottom:1034.370000px;}
.y7a{bottom:1034.820000px;}
.y2e{bottom:1051.920000px;}
.y79{bottom:1052.370000px;}
.yf6{bottom:1060.920000px;}
.ye3{bottom:1069.560000px;}
.y78{bottom:1069.920000px;}
.yf5{bottom:1078.560000px;}
.ye2{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.yf4{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:61.793886px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x5{left:89.819987px;}
.xd{left:111.239987px;}
.x2{left:211.079987px;}
.xc{left:214.679987px;}
.xa{left:219.179987px;}
.x8{left:227.729987px;}
.x6{left:352.739987px;}
.x7{left:716.639987px;}
.xb{left:717.809987px;}
.x9{left:733.559987px;}
.x4{left:783.059987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.142933pt;}
.ls14{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.111467pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsb{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.161067pt;}
.lse{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.933867pt;}
.wse{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.645333pt;}
.wsd{word-spacing:-11.620267pt;}
.wsa{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._17{margin-left:-3.901120pt;}
._4{margin-left:-2.939200pt;}
._11{margin-left:-2.034667pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.048107pt;}
._10{width:2.039146pt;}
._6{width:2.992533pt;}
._12{width:3.944003pt;}
._5{width:4.862933pt;}
._2{width:6.122676pt;}
._1{width:7.147616pt;}
._13{width:8.105708pt;}
._14{width:9.031360pt;}
._9{width:10.100267pt;}
._a{width:13.520534pt;}
._b{width:14.825597pt;}
._d{width:16.192534pt;}
._c{width:17.464320pt;}
._8{width:18.674665pt;}
._7{width:19.666134pt;}
._e{width:20.627733pt;}
._f{width:21.673280pt;}
._15{width:22.658560pt;}
._16{width:23.834240pt;}
._19{width:35.697920pt;}
._1d{width:41.116480pt;}
._18{width:44.007680pt;}
._1c{width:148.599147pt;}
._1b{width:273.612800pt;}
._1a{width:392.068587pt;}
.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;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y8d{bottom:100.266667pt;}
.yca{bottom:101.546667pt;}
.y9b{bottom:105.466667pt;}
.yf3{bottom:106.986667pt;}
.y77{bottom:111.546667pt;}
.y8c{bottom:115.946667pt;}
.yc9{bottom:117.146667pt;}
.ye1{bottom:118.266667pt;}
.yf2{bottom:122.586667pt;}
.y27{bottom:125.626667pt;}
.y76{bottom:127.226667pt;}
.y8b{bottom:131.546667pt;}
.y5b{bottom:132.026667pt;}
.yc8{bottom:132.746667pt;}
.ye0{bottom:133.946667pt;}
.y9a{bottom:134.106667pt;}
.y26{bottom:141.226667pt;}
.y75{bottom:142.826667pt;}
.yf1{bottom:146.506667pt;}
.y8a{bottom:147.226667pt;}
.yc7{bottom:148.426667pt;}
.ydf{bottom:149.546667pt;}
.y25{bottom:156.826667pt;}
.y89{bottom:162.826667pt;}
.y5a{bottom:163.706667pt;}
.yc6{bottom:164.026667pt;}
.yde{bottom:165.226667pt;}
.y74{bottom:174.426667pt;}
.y88{bottom:178.426667pt;}
.y59{bottom:179.306667pt;}
.ydd{bottom:180.826667pt;}
.y24{bottom:188.506667pt;}
.yf0{bottom:189.466667pt;}
.y73{bottom:190.106667pt;}
.y87{bottom:194.106667pt;}
.y58{bottom:194.906667pt;}
.yc5{bottom:195.706667pt;}
.ydc{bottom:196.426667pt;}
.y23{bottom:204.106667pt;}
.y72{bottom:205.706667pt;}
.y86{bottom:209.706667pt;}
.y57{bottom:210.586667pt;}
.yc4{bottom:211.306667pt;}
.ydb{bottom:212.106667pt;}
.yef{bottom:213.386667pt;}
.y22{bottom:219.786667pt;}
.y71{bottom:221.386667pt;}
.y85{bottom:225.386667pt;}
.y56{bottom:226.186667pt;}
.yc3{bottom:226.906667pt;}
.yda{bottom:227.706667pt;}
.y21{bottom:235.386667pt;}
.y70{bottom:236.986667pt;}
.y55{bottom:241.866667pt;}
.yc2{bottom:242.586667pt;}
.yd9{bottom:243.386667pt;}
.yee{bottom:246.586667pt;}
.y84{bottom:249.306667pt;}
.y20{bottom:250.986667pt;}
.y6f{bottom:252.586667pt;}
.y54{bottom:257.466667pt;}
.yc1{bottom:258.186667pt;}
.y1f{bottom:266.666667pt;}
.y6e{bottom:268.266667pt;}
.y53{bottom:273.066667pt;}
.yc0{bottom:273.866667pt;}
.yd8{bottom:274.986667pt;}
.y6d{bottom:283.866667pt;}
.y52{bottom:288.746667pt;}
.ybf{bottom:289.466667pt;}
.yd7{bottom:290.586667pt;}
.y83{bottom:292.186667pt;}
.y1e{bottom:298.266667pt;}
.y6c{bottom:299.546667pt;}
.y51{bottom:304.346667pt;}
.ybe{bottom:305.066667pt;}
.yd6{bottom:306.266667pt;}
.y1d{bottom:313.946667pt;}
.y6b{bottom:315.146667pt;}
.ybd{bottom:320.746667pt;}
.y82{bottom:320.826667pt;}
.yd5{bottom:321.866667pt;}
.y1c{bottom:329.546667pt;}
.y50{bottom:335.946667pt;}
.ybc{bottom:336.346667pt;}
.yd4{bottom:337.546667pt;}
.y1b{bottom:345.146667pt;}
.y6a{bottom:346.746667pt;}
.y4f{bottom:351.626667pt;}
.ybb{bottom:351.946667pt;}
.yd3{bottom:353.146667pt;}
.y1a{bottom:360.826667pt;}
.y69{bottom:362.426667pt;}
.y4e{bottom:367.226667pt;}
.yed{bottom:367.626667pt;}
.yd2{bottom:368.746667pt;}
.y19{bottom:376.426667pt;}
.y68{bottom:378.026667pt;}
.y4d{bottom:382.906667pt;}
.yec{bottom:383.226667pt;}
.yba{bottom:383.626667pt;}
.yd1{bottom:384.426667pt;}
.y67{bottom:393.706667pt;}
.y4c{bottom:398.506667pt;}
.yeb{bottom:398.906667pt;}
.yb9{bottom:399.226667pt;}
.yd0{bottom:400.026667pt;}
.y18{bottom:400.346667pt;}
.y66{bottom:409.306667pt;}
.y4b{bottom:414.106667pt;}
.yea{bottom:414.506667pt;}
.yb8{bottom:414.906667pt;}
.ycf{bottom:415.706667pt;}
.y65{bottom:424.933333pt;}
.y4a{bottom:429.813333pt;}
.ye9{bottom:430.133333pt;}
.yb7{bottom:430.533333pt;}
.yce{bottom:431.333333pt;}
.y64{bottom:440.613333pt;}
.y17{bottom:443.253333pt;}
.y49{bottom:445.413333pt;}
.ye8{bottom:445.813333pt;}
.yb6{bottom:446.133333pt;}
.ycd{bottom:455.253333pt;}
.y63{bottom:456.213333pt;}
.y16{bottom:459.173333pt;}
.y48{bottom:461.093333pt;}
.ye7{bottom:461.413333pt;}
.yb5{bottom:461.813333pt;}
.y62{bottom:471.813333pt;}
.ye6{bottom:477.093333pt;}
.yb4{bottom:477.413333pt;}
.y61{bottom:487.493333pt;}
.y15{bottom:492.133333pt;}
.y47{bottom:492.693333pt;}
.yb3{bottom:493.093333pt;}
.ycc{bottom:498.133333pt;}
.y60{bottom:503.093333pt;}
.y14{bottom:507.733333pt;}
.y46{bottom:508.293333pt;}
.yb2{bottom:508.693333pt;}
.y10b{bottom:511.493333pt;}
.y13{bottom:523.413333pt;}
.y45{bottom:523.973333pt;}
.yb1{bottom:524.293333pt;}
.ycb{bottom:526.773333pt;}
.y5f{bottom:527.013333pt;}
.y10a{bottom:527.173333pt;}
.ye5{bottom:532.213333pt;}
.y12{bottom:539.013333pt;}
.y44{bottom:539.573333pt;}
.yb0{bottom:539.973333pt;}
.y109{bottom:550.773333pt;}
.y11{bottom:554.613333pt;}
.y43{bottom:555.253333pt;}
.yaf{bottom:555.573333pt;}
.y108{bottom:566.453333pt;}
.y5e{bottom:569.973333pt;}
.y10{bottom:570.293333pt;}
.y42{bottom:570.853333pt;}
.y99{bottom:575.173333pt;}
.y107{bottom:582.053333pt;}
.y5d{bottom:585.573333pt;}
.yf{bottom:585.893333pt;}
.y41{bottom:586.453333pt;}
.yae{bottom:587.253333pt;}
.y98{bottom:590.773333pt;}
.y106{bottom:597.653333pt;}
.ye{bottom:601.573333pt;}
.y40{bottom:602.133333pt;}
.yad{bottom:602.853333pt;}
.y97{bottom:606.453333pt;}
.y5c{bottom:614.213333pt;}
.yd{bottom:617.173333pt;}
.y3f{bottom:617.733333pt;}
.yac{bottom:618.453333pt;}
.y105{bottom:621.333333pt;}
.y96{bottom:622.053333pt;}
.yc{bottom:632.773333pt;}
.yab{bottom:634.133333pt;}
.y104{bottom:636.933333pt;}
.y95{bottom:637.653333pt;}
.yb{bottom:648.453333pt;}
.y3e{bottom:649.413333pt;}
.yaa{bottom:649.733333pt;}
.y94{bottom:653.333333pt;}
.y103{bottom:660.613333pt;}
.y3d{bottom:665.013333pt;}
.ya9{bottom:665.413333pt;}
.y93{bottom:668.933333pt;}
.ya{bottom:672.373333pt;}
.y102{bottom:676.213333pt;}
.y3c{bottom:680.613333pt;}
.ya8{bottom:681.013333pt;}
.y92{bottom:684.613333pt;}
.y3b{bottom:696.293333pt;}
.ya7{bottom:696.613333pt;}
.y101{bottom:699.813333pt;}
.y91{bottom:700.213333pt;}
.y3a{bottom:711.893333pt;}
.ya6{bottom:712.293333pt;}
.y9{bottom:713.893333pt;}
.y100{bottom:715.493333pt;}
.y90{bottom:715.813333pt;}
.y39{bottom:727.573333pt;}
.ya5{bottom:727.893333pt;}
.y8f{bottom:731.493333pt;}
.y81{bottom:731.813333pt;}
.yff{bottom:739.093333pt;}
.y38{bottom:743.173333pt;}
.ya4{bottom:743.573333pt;}
.y8{bottom:745.733333pt;}
.y8e{bottom:747.093333pt;}
.y80{bottom:747.493333pt;}
.yfe{bottom:754.693333pt;}
.y37{bottom:758.773333pt;}
.ya3{bottom:759.173333pt;}
.ye4{bottom:762.693333pt;}
.y7f{bottom:763.093333pt;}
.yfd{bottom:770.373333pt;}
.y36{bottom:774.453333pt;}
.ya2{bottom:774.773333pt;}
.y7{bottom:777.733333pt;}
.y7e{bottom:778.693333pt;}
.yfc{bottom:785.973333pt;}
.y7d{bottom:794.373333pt;}
.y35{bottom:798.373333pt;}
.ya1{bottom:798.693333pt;}
.yfb{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y7c{bottom:809.973333pt;}
.yfa{bottom:825.253333pt;}
.y7b{bottom:825.653333pt;}
.y34{bottom:841.253333pt;}
.ya0{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.yf9{bottom:848.853333pt;}
.y33{bottom:856.853333pt;}
.y9f{bottom:857.253333pt;}
.yf8{bottom:864.533333pt;}
.y32{bottom:872.533333pt;}
.y9e{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.yf7{bottom:880.133333pt;}
.y31{bottom:888.133333pt;}
.y9d{bottom:888.533333pt;}
.y3{bottom:897.840000pt;}
.y30{bottom:903.840000pt;}
.y9c{bottom:904.160000pt;}
.y2f{bottom:919.440000pt;}
.y7a{bottom:919.840000pt;}
.y2e{bottom:935.040000pt;}
.y79{bottom:935.440000pt;}
.yf6{bottom:943.040000pt;}
.ye3{bottom:950.720000pt;}
.y78{bottom:951.040000pt;}
.yf5{bottom:958.720000pt;}
.ye2{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.yf4{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.927899pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x5{left:79.839988pt;}
.xd{left:98.879988pt;}
.x2{left:187.626655pt;}
.xc{left:190.826655pt;}
.xa{left:194.826655pt;}
.x8{left:202.426655pt;}
.x6{left:313.546655pt;}
.x7{left:637.013322pt;}
.xb{left:638.053322pt;}
.x9{left:652.053322pt;}
.x4{left:696.053322pt;}
.x3{left:718.773322pt;}
}




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