
    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_f7021e288349a3c6803736e7.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_990e89d4e49799cfe2fd2bc0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_a88c937c89e84f305d58b4d2.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_9ec82a4b6cbc3d603e6acba7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_2e9803ba2c5db2578252ad1a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_90fc8af7d6c2fcffc74da800.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;}
.ls15{letter-spacing:-0.624000px;}
.lsc{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.160800px;}
.lsa{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.008280px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls12{letter-spacing:0.038880px;}
.lsf{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.047520px;}
.ls5{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.116400px;}
.ls11{letter-spacing:0.133200px;}
.ls8{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.173520px;}
.ls6{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:47.726640px;}
.ls18{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;}
}
.ws6{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.359600px;}
.wsb{word-spacing:-13.273920px;}
.ws4{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.218120px;}
.ws9{word-spacing:-13.065600px;}
.ws2{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._a{margin-left:-3.727200px;}
._b{margin-left:-2.377200px;}
._0{margin-left:-1.110000px;}
._1{width:1.153200px;}
._2{width:2.793600px;}
._c{width:4.027800px;}
._9{width:5.591400px;}
._8{width:6.613200px;}
._11{width:7.656239px;}
._5{width:8.865600px;}
._13{width:10.460880px;}
._12{width:11.482920px;}
._17{width:14.572800px;}
._1b{width:15.594840px;}
._e{width:16.713600px;}
._d{width:17.795400px;}
._10{width:18.845400px;}
._f{width:19.959840px;}
._16{width:20.968680px;}
._4{width:22.055880px;}
._3{width:23.146200px;}
._18{width:24.217440px;}
._19{width:26.536680px;}
._1a{width:28.052280px;}
._15{width:33.426720px;}
._7{width:63.214200px;}
._14{width:135.209880px;}
._6{width:145.407360px;}
.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;}
.y47{bottom:7.830000px;}
.y4a{bottom:7.920000px;}
.y49{bottom:25.470000px;}
.y46{bottom:29.880000px;}
.y45{bottom:47.550000px;}
.y2{bottom:73.380000px;}
.y25{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y42{bottom:112.440000px;}
.y58{bottom:117.930000px;}
.y8a{bottom:127.560000px;}
.y41{bottom:129.990000px;}
.yb0{bottom:133.680000px;}
.y89{bottom:145.200000px;}
.yaf{bottom:151.320000px;}
.y57{bottom:153.480000px;}
.y88{bottom:162.750000px;}
.y23{bottom:163.200000px;}
.y40{bottom:165.630000px;}
.yae{bottom:168.870000px;}
.y87{bottom:180.300000px;}
.y22{bottom:180.840000px;}
.y3f{bottom:183.180000px;}
.y56{bottom:185.700000px;}
.yad{bottom:195.420000px;}
.y86{bottom:197.940000px;}
.y3e{bottom:200.730000px;}
.y21{bottom:207.750000px;}
.yac{bottom:213.060000px;}
.y85{bottom:215.490000px;}
.yab{bottom:230.610000px;}
.y84{bottom:233.130000px;}
.y3d{bottom:236.370000px;}
.y83{bottom:250.680000px;}
.y20{bottom:255.990000px;}
.yaa{bottom:257.250000px;}
.y82{bottom:268.230000px;}
.y3c{bottom:268.590000px;}
.y1f{bottom:273.630000px;}
.ya9{bottom:283.800000px;}
.y81{bottom:285.870000px;}
.y1e{bottom:291.180000px;}
.ya8{bottom:301.350000px;}
.yd2{bottom:301.800000px;}
.yd1{bottom:319.440000px;}
.y80{bottom:321.420000px;}
.y1d{bottom:326.730000px;}
.ya7{bottom:327.990000px;}
.y7f{bottom:339.060000px;}
.y1c{bottom:344.370000px;}
.ya6{bottom:345.540000px;}
.yd0{bottom:345.990000px;}
.y7e{bottom:356.610000px;}
.ycf{bottom:363.540000px;}
.ya5{bottom:372.090000px;}
.y7d{bottom:374.160000px;}
.y1b{bottom:379.920000px;}
.yce{bottom:381.180000px;}
.y69{bottom:384.960000px;}
.y7c{bottom:391.800000px;}
.y1a{bottom:397.560000px;}
.ya4{bottom:398.730000px;}
.y68{bottom:402.510000px;}
.ycd{bottom:407.730000px;}
.y19{bottom:415.110000px;}
.ya3{bottom:416.280000px;}
.y67{bottom:420.150000px;}
.ycc{bottom:425.370000px;}
.y7b{bottom:427.350000px;}
.y18{bottom:432.660000px;}
.y66{bottom:437.700000px;}
.ya2{bottom:442.920000px;}
.y7a{bottom:444.990000px;}
.y65{bottom:455.250000px;}
.ya1{bottom:460.470000px;}
.y79{bottom:462.540000px;}
.y17{bottom:468.300000px;}
.ycb{bottom:469.470000px;}
.y64{bottom:472.920000px;}
.y78{bottom:480.120000px;}
.y16{bottom:485.880000px;}
.ya0{bottom:487.050000px;}
.yca{bottom:487.140000px;}
.y63{bottom:490.470000px;}
.y15{bottom:503.520000px;}
.y9f{bottom:504.690000px;}
.y62{bottom:508.110000px;}
.y77{bottom:515.760000px;}
.y14{bottom:521.070000px;}
.y9e{bottom:531.240000px;}
.yc9{bottom:531.330000px;}
.y76{bottom:533.310000px;}
.y13{bottom:538.620000px;}
.y61{bottom:543.660000px;}
.y9d{bottom:548.880000px;}
.y75{bottom:550.950000px;}
.y55{bottom:553.650000px;}
.y60{bottom:561.210000px;}
.y12{bottom:565.530000px;}
.yc8{bottom:566.430000px;}
.y74{bottom:568.500000px;}
.y54{bottom:571.200000px;}
.y9c{bottom:575.430000px;}
.y53{bottom:588.840000px;}
.y9b{bottom:592.980000px;}
.yc7{bottom:593.070000px;}
.y5f{bottom:596.850000px;}
.y73{bottom:604.050000px;}
.y52{bottom:606.390000px;}
.yc6{bottom:610.620000px;}
.y11{bottom:613.860000px;}
.y5e{bottom:614.400000px;}
.y9a{bottom:619.620000px;}
.y72{bottom:621.690000px;}
.yc5{bottom:628.260000px;}
.y10{bottom:631.770000px;}
.y99{bottom:637.170000px;}
.y71{bottom:639.240000px;}
.y51{bottom:639.330000px;}
.y3b{bottom:640.950000px;}
.y5d{bottom:650.040000px;}
.yc4{bottom:654.810000px;}
.y70{bottom:656.790000px;}
.y3a{bottom:658.590000px;}
.y98{bottom:664.080000px;}
.y50{bottom:666.690000px;}
.y5c{bottom:667.590000px;}
.yf{bottom:668.760000px;}
.yc3{bottom:672.360000px;}
.y6f{bottom:674.430000px;}
.y39{bottom:676.140000px;}
.y5b{bottom:685.140000px;}
.ye{bottom:686.310000px;}
.yc2{bottom:690.000000px;}
.y6e{bottom:691.980000px;}
.yd{bottom:703.950000px;}
.y4f{bottom:711.600000px;}
.y38{bottom:711.690000px;}
.y97{bottom:712.410000px;}
.yc1{bottom:716.550000px;}
.y6d{bottom:718.890000px;}
.y5a{bottom:720.780000px;}
.yc{bottom:721.500000px;}
.y37{bottom:729.330000px;}
.y96{bottom:729.960000px;}
.yc0{bottom:734.190000px;}
.yb{bottom:739.140000px;}
.y36{bottom:746.880000px;}
.ybf{bottom:751.740000px;}
.y59{bottom:753.000000px;}
.y4e{bottom:756.510000px;}
.y95{bottom:756.870000px;}
.y35{bottom:764.520000px;}
.ya{bottom:766.050000px;}
.y6c{bottom:767.220000px;}
.ybe{bottom:778.290000px;}
.y34{bottom:782.070000px;}
.y94{bottom:793.860000px;}
.ybd{bottom:795.930000px;}
.y4d{bottom:801.420000px;}
.y6b{bottom:802.770000px;}
.y33{bottom:808.980000px;}
.y9{bottom:814.290000px;}
.y93{bottom:820.770000px;}
.ybc{bottom:822.480000px;}
.y4c{bottom:828.780000px;}
.y6a{bottom:834.990000px;}
.ybb{bottom:840.030000px;}
.y8{bottom:850.110000px;}
.y32{bottom:857.220000px;}
.y92{bottom:858.120000px;}
.yba{bottom:866.670000px;}
.y4b{bottom:873.690000px;}
.yb9{bottom:884.220000px;}
.y7{bottom:886.110000px;}
.y31{bottom:892.860000px;}
.y91{bottom:906.450000px;}
.y30{bottom:910.410000px;}
.yb8{bottom:910.860000px;}
.y48{bottom:918.600000px;}
.y6{bottom:922.110000px;}
.y90{bottom:924.000000px;}
.y2f{bottom:927.960000px;}
.yb7{bottom:928.410000px;}
.y5{bottom:940.110000px;}
.y8f{bottom:941.550000px;}
.y2e{bottom:945.600000px;}
.yb6{bottom:945.960000px;}
.y8e{bottom:959.190000px;}
.y44{bottom:963.600000px;}
.yb5{bottom:972.600000px;}
.y4{bottom:976.200000px;}
.y8d{bottom:976.740000px;}
.y2d{bottom:981.150000px;}
.yb4{bottom:990.150000px;}
.y2c{bottom:998.790000px;}
.y8c{bottom:1003.650000px;}
.y3{bottom:1014.480000px;}
.yb3{bottom:1016.820000px;}
.y2b{bottom:1034.370000px;}
.y2a{bottom:1051.920000px;}
.yb2{bottom:1060.920000px;}
.y29{bottom:1069.560000px;}
.yb1{bottom:1078.560000px;}
.y8b{bottom:1087.110000px;}
.y43{bottom:1087.560000px;}
.y28{bottom:1105.110000px;}
.y27{bottom:1122.750000px;}
.y26{bottom:1140.300000px;}
.y24{bottom:1194.300000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hb{height:44.190000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hd{height:61.793886px;}
.ha{height:66.270000px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:40.770000px;}
.w7{width:41.130000px;}
.wb{width:45.360000px;}
.w8{width:84.180000px;}
.w9{width:86.130000px;}
.wa{width:102.240000px;}
.w3{width:107.130000px;}
.w6{width:116.460000px;}
.w4{width:126.180000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x15{left:111.239987px;}
.x8{left:176.700000px;}
.x10{left:240.599987px;}
.x2{left:250.499987px;}
.x12{left:266.699987px;}
.x14{left:279.569987px;}
.x9{left:303.600000px;}
.x5{left:305.219987px;}
.xa{left:345.090000px;}
.xb{left:462.360000px;}
.xc{left:504.300000px;}
.xd{left:589.200000px;}
.xe{left:676.140000px;}
.x11{left:720.059987px;}
.x13{left:745.889987px;}
.x4{left:760.559987px;}
.xf{left:779.100000px;}
.x6{left:800.339987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.554667pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.142933pt;}
.lsa{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.007360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls12{letter-spacing:0.034560pt;}
.lsf{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.042240pt;}
.ls5{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.103467pt;}
.ls11{letter-spacing:0.118400pt;}
.ls8{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.154240pt;}
.ls6{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:42.423680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.875200pt;}
.wsb{word-spacing:-11.799040pt;}
.ws4{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.749440pt;}
.ws9{word-spacing:-11.613867pt;}
.ws2{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._a{margin-left:-3.313066pt;}
._b{margin-left:-2.113067pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.025067pt;}
._2{width:2.483200pt;}
._c{width:3.580266pt;}
._9{width:4.970134pt;}
._8{width:5.878400pt;}
._11{width:6.805546pt;}
._5{width:7.880534pt;}
._13{width:9.298560pt;}
._12{width:10.207040pt;}
._17{width:12.953600pt;}
._1b{width:13.862080pt;}
._e{width:14.856534pt;}
._d{width:15.818133pt;}
._10{width:16.751467pt;}
._f{width:17.742080pt;}
._16{width:18.638827pt;}
._4{width:19.605227pt;}
._3{width:20.574400pt;}
._18{width:21.526613pt;}
._19{width:23.588160pt;}
._1a{width:24.935360pt;}
._15{width:29.712640pt;}
._7{width:56.190400pt;}
._14{width:120.186560pt;}
._6{width:129.250987pt;}
.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;}
.y47{bottom:6.960000pt;}
.y4a{bottom:7.040000pt;}
.y49{bottom:22.640000pt;}
.y46{bottom:26.560000pt;}
.y45{bottom:42.266667pt;}
.y2{bottom:65.226667pt;}
.y25{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y42{bottom:99.946667pt;}
.y58{bottom:104.826667pt;}
.y8a{bottom:113.386667pt;}
.y41{bottom:115.546667pt;}
.yb0{bottom:118.826667pt;}
.y89{bottom:129.066667pt;}
.yaf{bottom:134.506667pt;}
.y57{bottom:136.426667pt;}
.y88{bottom:144.666667pt;}
.y23{bottom:145.066667pt;}
.y40{bottom:147.226667pt;}
.yae{bottom:150.106667pt;}
.y87{bottom:160.266667pt;}
.y22{bottom:160.746667pt;}
.y3f{bottom:162.826667pt;}
.y56{bottom:165.066667pt;}
.yad{bottom:173.706667pt;}
.y86{bottom:175.946667pt;}
.y3e{bottom:178.426667pt;}
.y21{bottom:184.666667pt;}
.yac{bottom:189.386667pt;}
.y85{bottom:191.546667pt;}
.yab{bottom:204.986667pt;}
.y84{bottom:207.226667pt;}
.y3d{bottom:210.106667pt;}
.y83{bottom:222.826667pt;}
.y20{bottom:227.546667pt;}
.yaa{bottom:228.666667pt;}
.y82{bottom:238.426667pt;}
.y3c{bottom:238.746667pt;}
.y1f{bottom:243.226667pt;}
.ya9{bottom:252.266667pt;}
.y81{bottom:254.106667pt;}
.y1e{bottom:258.826667pt;}
.ya8{bottom:267.866667pt;}
.yd2{bottom:268.266667pt;}
.yd1{bottom:283.946667pt;}
.y80{bottom:285.706667pt;}
.y1d{bottom:290.426667pt;}
.ya7{bottom:291.546667pt;}
.y7f{bottom:301.386667pt;}
.y1c{bottom:306.106667pt;}
.ya6{bottom:307.146667pt;}
.yd0{bottom:307.546667pt;}
.y7e{bottom:316.986667pt;}
.ycf{bottom:323.146667pt;}
.ya5{bottom:330.746667pt;}
.y7d{bottom:332.586667pt;}
.y1b{bottom:337.706667pt;}
.yce{bottom:338.826667pt;}
.y69{bottom:342.186667pt;}
.y7c{bottom:348.266667pt;}
.y1a{bottom:353.386667pt;}
.ya4{bottom:354.426667pt;}
.y68{bottom:357.786667pt;}
.ycd{bottom:362.426667pt;}
.y19{bottom:368.986667pt;}
.ya3{bottom:370.026667pt;}
.y67{bottom:373.466667pt;}
.ycc{bottom:378.106667pt;}
.y7b{bottom:379.866667pt;}
.y18{bottom:384.586667pt;}
.y66{bottom:389.066667pt;}
.ya2{bottom:393.706667pt;}
.y7a{bottom:395.546667pt;}
.y65{bottom:404.666667pt;}
.ya1{bottom:409.306667pt;}
.y79{bottom:411.146667pt;}
.y17{bottom:416.266667pt;}
.ycb{bottom:417.306667pt;}
.y64{bottom:420.373333pt;}
.y78{bottom:426.773333pt;}
.y16{bottom:431.893333pt;}
.ya0{bottom:432.933333pt;}
.yca{bottom:433.013333pt;}
.y63{bottom:435.973333pt;}
.y15{bottom:447.573333pt;}
.y9f{bottom:448.613333pt;}
.y62{bottom:451.653333pt;}
.y77{bottom:458.453333pt;}
.y14{bottom:463.173333pt;}
.y9e{bottom:472.213333pt;}
.yc9{bottom:472.293333pt;}
.y76{bottom:474.053333pt;}
.y13{bottom:478.773333pt;}
.y61{bottom:483.253333pt;}
.y9d{bottom:487.893333pt;}
.y75{bottom:489.733333pt;}
.y55{bottom:492.133333pt;}
.y60{bottom:498.853333pt;}
.y12{bottom:502.693333pt;}
.yc8{bottom:503.493333pt;}
.y74{bottom:505.333333pt;}
.y54{bottom:507.733333pt;}
.y9c{bottom:511.493333pt;}
.y53{bottom:523.413333pt;}
.y9b{bottom:527.093333pt;}
.yc7{bottom:527.173333pt;}
.y5f{bottom:530.533333pt;}
.y73{bottom:536.933333pt;}
.y52{bottom:539.013333pt;}
.yc6{bottom:542.773333pt;}
.y11{bottom:545.653333pt;}
.y5e{bottom:546.133333pt;}
.y9a{bottom:550.773333pt;}
.y72{bottom:552.613333pt;}
.yc5{bottom:558.453333pt;}
.y10{bottom:561.573333pt;}
.y99{bottom:566.373333pt;}
.y71{bottom:568.213333pt;}
.y51{bottom:568.293333pt;}
.y3b{bottom:569.733333pt;}
.y5d{bottom:577.813333pt;}
.yc4{bottom:582.053333pt;}
.y70{bottom:583.813333pt;}
.y3a{bottom:585.413333pt;}
.y98{bottom:590.293333pt;}
.y50{bottom:592.613333pt;}
.y5c{bottom:593.413333pt;}
.yf{bottom:594.453333pt;}
.yc3{bottom:597.653333pt;}
.y6f{bottom:599.493333pt;}
.y39{bottom:601.013333pt;}
.y5b{bottom:609.013333pt;}
.ye{bottom:610.053333pt;}
.yc2{bottom:613.333333pt;}
.y6e{bottom:615.093333pt;}
.yd{bottom:625.733333pt;}
.y4f{bottom:632.533333pt;}
.y38{bottom:632.613333pt;}
.y97{bottom:633.253333pt;}
.yc1{bottom:636.933333pt;}
.y6d{bottom:639.013333pt;}
.y5a{bottom:640.693333pt;}
.yc{bottom:641.333333pt;}
.y37{bottom:648.293333pt;}
.y96{bottom:648.853333pt;}
.yc0{bottom:652.613333pt;}
.yb{bottom:657.013333pt;}
.y36{bottom:663.893333pt;}
.ybf{bottom:668.213333pt;}
.y59{bottom:669.333333pt;}
.y4e{bottom:672.453333pt;}
.y95{bottom:672.773333pt;}
.y35{bottom:679.573333pt;}
.ya{bottom:680.933333pt;}
.y6c{bottom:681.973333pt;}
.ybe{bottom:691.813333pt;}
.y34{bottom:695.173333pt;}
.y94{bottom:705.653333pt;}
.ybd{bottom:707.493333pt;}
.y4d{bottom:712.373333pt;}
.y6b{bottom:713.573333pt;}
.y33{bottom:719.093333pt;}
.y9{bottom:723.813333pt;}
.y93{bottom:729.573333pt;}
.ybc{bottom:731.093333pt;}
.y4c{bottom:736.693333pt;}
.y6a{bottom:742.213333pt;}
.ybb{bottom:746.693333pt;}
.y8{bottom:755.653333pt;}
.y32{bottom:761.973333pt;}
.y92{bottom:762.773333pt;}
.yba{bottom:770.373333pt;}
.y4b{bottom:776.613333pt;}
.yb9{bottom:785.973333pt;}
.y7{bottom:787.653333pt;}
.y31{bottom:793.653333pt;}
.y91{bottom:805.733333pt;}
.y30{bottom:809.253333pt;}
.yb8{bottom:809.653333pt;}
.y48{bottom:816.533333pt;}
.y6{bottom:819.653333pt;}
.y90{bottom:821.333333pt;}
.y2f{bottom:824.853333pt;}
.yb7{bottom:825.253333pt;}
.y5{bottom:835.653333pt;}
.y8f{bottom:836.933333pt;}
.y2e{bottom:840.533333pt;}
.yb6{bottom:840.853333pt;}
.y8e{bottom:852.613333pt;}
.y44{bottom:856.533333pt;}
.yb5{bottom:864.533333pt;}
.y4{bottom:867.733333pt;}
.y8d{bottom:868.213333pt;}
.y2d{bottom:872.133333pt;}
.yb4{bottom:880.133333pt;}
.y2c{bottom:887.813333pt;}
.y8c{bottom:892.133333pt;}
.y3{bottom:901.760000pt;}
.yb3{bottom:903.840000pt;}
.y2b{bottom:919.440000pt;}
.y2a{bottom:935.040000pt;}
.yb2{bottom:943.040000pt;}
.y29{bottom:950.720000pt;}
.yb1{bottom:958.720000pt;}
.y8b{bottom:966.320000pt;}
.y43{bottom:966.720000pt;}
.y28{bottom:982.320000pt;}
.y27{bottom:998.000000pt;}
.y26{bottom:1013.600000pt;}
.y24{bottom:1061.600000pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hb{height:39.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hd{height:54.927899pt;}
.ha{height:58.906667pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:36.240000pt;}
.w7{width:36.560000pt;}
.wb{width:40.320000pt;}
.w8{width:74.826667pt;}
.w9{width:76.560000pt;}
.wa{width:90.880000pt;}
.w3{width:95.226667pt;}
.w6{width:103.520000pt;}
.w4{width:112.160000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x15{left:98.879988pt;}
.x8{left:157.066667pt;}
.x10{left:213.866655pt;}
.x2{left:222.666655pt;}
.x12{left:237.066655pt;}
.x14{left:248.506655pt;}
.x9{left:269.866667pt;}
.x5{left:271.306655pt;}
.xa{left:306.746667pt;}
.xb{left:410.986667pt;}
.xc{left:448.266667pt;}
.xd{left:523.733333pt;}
.xe{left:601.013333pt;}
.x11{left:640.053322pt;}
.x13{left:663.013322pt;}
.x4{left:676.053322pt;}
.xf{left:692.533333pt;}
.x6{left:711.413322pt;}
.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; }
  