
    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_9872f8b452dd0a2f8798c8cb.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_a270ce4fda3430aac036f6fc.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_d7cf7ee05e2b64e54a9e4d52.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_bfdce5671f6013499b843b21.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_14f4658362e085d98e13ba3f.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_42f7ec41d59ea1320a9e50f9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls13{letter-spacing:-0.114000px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.057000px;}
.lsa{letter-spacing:-0.015000px;}
.ls12{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.041760px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls14{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:-60.120000px;}
.ws2{word-spacing:-18.396600px;}
.ws7{word-spacing:-14.493600px;}
.wsf{word-spacing:-14.379600px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.ws5{word-spacing:-13.211400px;}
.wsa{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._1d{margin-left:-4.088160px;}
._a{margin-left:-2.825400px;}
._0{margin-left:-1.110000px;}
._1{width:1.201668px;}
._2{width:2.353583px;}
._d{width:3.547200px;}
._e{width:4.800216px;}
._11{width:6.012356px;}
._c{width:7.126801px;}
._b{width:8.384400px;}
._13{width:9.400446px;}
._6{width:10.476355px;}
._5{width:11.511000px;}
._7{width:14.308800px;}
._8{width:15.570729px;}
._9{width:16.893600px;}
._14{width:18.137760px;}
._10{width:19.419000px;}
._12{width:20.560800px;}
._1c{width:22.124160px;}
._f{width:23.301480px;}
._3{width:24.468600px;}
._4{width:27.895800px;}
._28{width:31.202280px;}
._17{width:34.328520px;}
._21{width:37.033920px;}
._2b{width:42.144120px;}
._2c{width:43.166160px;}
._2d{width:44.911320px;}
._18{width:46.103040px;}
._1f{width:49.118040px;}
._26{width:50.921640px;}
._1a{width:60.600960px;}
._23{width:67.635000px;}
._29{width:78.516720px;}
._2a{width:79.688640px;}
._1e{width:122.464440px;}
._20{width:139.021560px;}
._2e{width:146.692800px;}
._1b{width:166.111560px;}
._22{width:167.434200px;}
._16{width:201.288960px;}
._27{width:217.033200px;}
._25{width:221.842800px;}
._19{width:260.755200px;}
._24{width:292.408200px;}
._15{width:850.464480px;}
.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;}
.y59{bottom:7.830000px;}
.yba{bottom:7.860000px;}
.y61{bottom:7.920000px;}
.y5f{bottom:25.380000px;}
.y5d{bottom:25.410000px;}
.y5b{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y7f{bottom:112.620000px;}
.yc6{bottom:117.120000px;}
.ydf{bottom:125.670000px;}
.y28{bottom:129.630000px;}
.yc5{bottom:134.760000px;}
.y7e{bottom:139.980000px;}
.ya9{bottom:142.500000px;}
.yde{bottom:143.310000px;}
.y27{bottom:147.270000px;}
.yc4{bottom:152.310000px;}
.y57{bottom:155.460000px;}
.ya8{bottom:160.050000px;}
.ydd{bottom:160.860000px;}
.y7d{bottom:167.250000px;}
.yc3{bottom:169.860000px;}
.y56{bottom:173.100000px;}
.ydc{bottom:178.500000px;}
.y26{bottom:182.820000px;}
.yc2{bottom:187.500000px;}
.y55{bottom:190.650000px;}
.y7c{bottom:194.610000px;}
.ya7{bottom:195.600000px;}
.ydb{bottom:196.050000px;}
.y25{bottom:200.370000px;}
.y54{bottom:208.200000px;}
.ya6{bottom:213.240000px;}
.y24{bottom:218.010000px;}
.y7b{bottom:221.970000px;}
.yda{bottom:222.960000px;}
.yc1{bottom:223.050000px;}
.y53{bottom:225.840000px;}
.ya5{bottom:230.790000px;}
.y23{bottom:235.560000px;}
.yc0{bottom:240.690000px;}
.ya4{bottom:248.430000px;}
.y7a{bottom:249.330000px;}
.y22{bottom:253.200000px;}
.ybf{bottom:258.240000px;}
.y52{bottom:261.390000px;}
.y21{bottom:270.750000px;}
.yd9{bottom:271.200000px;}
.y79{bottom:276.600000px;}
.y51{bottom:278.940000px;}
.ya3{bottom:283.980000px;}
.ybe{bottom:285.150000px;}
.yd8{bottom:288.840000px;}
.y50{bottom:296.580000px;}
.ya2{bottom:301.530000px;}
.y20{bottom:306.300000px;}
.yd7{bottom:306.390000px;}
.y4f{bottom:314.130000px;}
.ya1{bottom:319.170000px;}
.y1f{bottom:323.940000px;}
.y78{bottom:325.290000px;}
.ybd{bottom:330.780000px;}
.ya0{bottom:336.720000px;}
.y4e{bottom:340.770000px;}
.y1e{bottom:341.490000px;}
.yd6{bottom:341.580000px;}
.y9f{bottom:354.360000px;}
.y1d{bottom:359.130000px;}
.y77{bottom:360.930000px;}
.ybc{bottom:375.690000px;}
.y4d{bottom:376.320000px;}
.y1c{bottom:376.680000px;}
.yd5{bottom:376.770000px;}
.y76{bottom:378.480000px;}
.y9e{bottom:389.910000px;}
.y4c{bottom:393.870000px;}
.y1b{bottom:394.230000px;}
.y75{bottom:396.120000px;}
.y9d{bottom:407.460000px;}
.y4b{bottom:411.510000px;}
.yd4{bottom:412.320000px;}
.ybb{bottom:420.690000px;}
.y1a{bottom:421.140000px;}
.y9c{bottom:425.100000px;}
.y4a{bottom:429.060000px;}
.yd3{bottom:429.870000px;}
.y74{bottom:431.670000px;}
.y9b{bottom:442.650000px;}
.yd2{bottom:447.510000px;}
.y73{bottom:449.220000px;}
.y9a{bottom:460.200000px;}
.y49{bottom:464.700000px;}
.yd1{bottom:465.060000px;}
.yfb{bottom:465.510000px;}
.yb9{bottom:465.600000px;}
.y72{bottom:466.860000px;}
.y19{bottom:469.470000px;}
.y48{bottom:482.280000px;}
.yd0{bottom:482.730000px;}
.yfa{bottom:483.090000px;}
.y71{bottom:484.440000px;}
.y18{bottom:487.410000px;}
.y99{bottom:495.870000px;}
.y47{bottom:499.830000px;}
.ycf{bottom:500.280000px;}
.yf9{bottom:500.730000px;}
.yb8{bottom:510.540000px;}
.y98{bottom:513.420000px;}
.y70{bottom:520.080000px;}
.y17{bottom:524.400000px;}
.y46{bottom:526.470000px;}
.yf8{bottom:527.280000px;}
.y97{bottom:531.060000px;}
.yce{bottom:535.830000px;}
.y6f{bottom:537.630000px;}
.y16{bottom:541.950000px;}
.yf7{bottom:544.830000px;}
.ycd{bottom:553.470000px;}
.y6e{bottom:555.180000px;}
.yb7{bottom:555.450000px;}
.y96{bottom:557.970000px;}
.y15{bottom:559.590000px;}
.y45{bottom:562.020000px;}
.ycc{bottom:571.020000px;}
.yf6{bottom:571.470000px;}
.y6d{bottom:572.820000px;}
.y14{bottom:577.140000px;}
.y44{bottom:579.660000px;}
.ycb{bottom:588.660000px;}
.yf5{bottom:589.020000px;}
.y13{bottom:594.780000px;}
.y43{bottom:597.210000px;}
.yb6{bottom:604.140000px;}
.y95{bottom:606.210000px;}
.yf4{bottom:606.660000px;}
.y6c{bottom:608.370000px;}
.y12{bottom:612.330000px;}
.y42{bottom:614.760000px;}
.y94{bottom:623.760000px;}
.y6b{bottom:626.010000px;}
.y11{bottom:629.880000px;}
.yf3{bottom:633.210000px;}
.yb5{bottom:639.690000px;}
.y93{bottom:641.400000px;}
.y6a{bottom:643.560000px;}
.y10{bottom:647.520000px;}
.y41{bottom:650.400000px;}
.yf2{bottom:650.760000px;}
.yb4{bottom:654.720000px;}
.y92{bottom:658.950000px;}
.yca{bottom:659.400000px;}
.y69{bottom:661.110000px;}
.yf{bottom:665.070000px;}
.y40{bottom:667.950000px;}
.yf1{bottom:668.400000px;}
.yc9{bottom:676.950000px;}
.ye{bottom:682.710000px;}
.y3f{bottom:685.590000px;}
.y91{bottom:694.590000px;}
.yf0{bottom:694.950000px;}
.y68{bottom:696.750000px;}
.yb3{bottom:699.630000px;}
.yd{bottom:700.260000px;}
.y3e{bottom:703.140000px;}
.y90{bottom:712.140000px;}
.yef{bottom:712.590000px;}
.y67{bottom:714.300000px;}
.yc{bottom:717.810000px;}
.y3d{bottom:729.690000px;}
.y66{bottom:731.850000px;}
.yb{bottom:735.450000px;}
.yee{bottom:739.140000px;}
.yb2{bottom:744.540000px;}
.y8f{bottom:747.330000px;}
.y65{bottom:749.490000px;}
.ya{bottom:753.000000px;}
.yed{bottom:756.690000px;}
.y3c{bottom:765.330000px;}
.yb1{bottom:771.900000px;}
.yec{bottom:774.330000px;}
.y64{bottom:776.400000px;}
.y9{bottom:779.910000px;}
.y3b{bottom:782.880000px;}
.y3a{bottom:800.520000px;}
.yeb{bottom:800.880000px;}
.yb0{bottom:816.810000px;}
.y8e{bottom:818.070000px;}
.yea{bottom:818.520000px;}
.y63{bottom:822.030000px;}
.y39{bottom:827.340000px;}
.y8{bottom:828.240000px;}
.y8d{bottom:835.620000px;}
.ye9{bottom:836.070000px;}
.yaf{bottom:861.720000px;}
.ye8{bottom:862.620000px;}
.y7{bottom:863.790000px;}
.y62{bottom:866.940000px;}
.y8c{bottom:871.260000px;}
.y38{bottom:875.670000px;}
.ye7{bottom:880.260000px;}
.y8b{bottom:888.810000px;}
.y37{bottom:893.220000px;}
.y6{bottom:899.610000px;}
.y8a{bottom:906.450000px;}
.ye6{bottom:906.810000px;}
.yae{bottom:910.410000px;}
.y36{bottom:910.860000px;}
.y60{bottom:911.850000px;}
.y89{bottom:924.000000px;}
.ye5{bottom:924.450000px;}
.y35{bottom:928.410000px;}
.y5{bottom:935.610000px;}
.ye4{bottom:942.000000px;}
.y34{bottom:945.960000px;}
.y5e{bottom:956.850000px;}
.y88{bottom:959.550000px;}
.yad{bottom:963.600000px;}
.ye3{bottom:968.910000px;}
.y4{bottom:971.700000px;}
.y87{bottom:977.190000px;}
.yac{bottom:981.150000px;}
.y33{bottom:981.600000px;}
.y86{bottom:994.740000px;}
.yab{bottom:998.790000px;}
.y32{bottom:999.150000px;}
.y5c{bottom:1001.760000px;}
.y3{bottom:1009.980000px;}
.y85{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.ye2{bottom:1017.180000px;}
.y30{bottom:1034.370000px;}
.ye1{bottom:1034.820000px;}
.y5a{bottom:1046.700000px;}
.y84{bottom:1047.960000px;}
.y2f{bottom:1051.920000px;}
.ye0{bottom:1052.370000px;}
.y83{bottom:1065.510000px;}
.y2e{bottom:1069.560000px;}
.yc8{bottom:1069.920000px;}
.y82{bottom:1083.150000px;}
.yaa{bottom:1087.110000px;}
.yc7{bottom:1087.560000px;}
.y58{bottom:1091.610000px;}
.y81{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y80{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.ha{height:26.550000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:44.100000px;}
.hc{height:44.130000px;}
.hb{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hf{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:139.230000px;}
.w3{width:140.790000px;}
.w9{width:145.740000px;}
.wf{width:149.070000px;}
.wb{width:154.380000px;}
.w8{width:157.050000px;}
.wc{width:159.300000px;}
.w4{width:166.590000px;}
.w11{width:193.980000px;}
.wd{width:195.420000px;}
.w6{width:195.570000px;}
.w10{width:200.610000px;}
.w12{width:209.880000px;}
.w7{width:212.880000px;}
.we{width:244.170000px;}
.w5{width:250.320000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x13{left:111.239987px;}
.x8{left:117.990000px;}
.x2{left:202.799987px;}
.x5{left:210.360000px;}
.x10{left:218.550000px;}
.xd{left:223.950000px;}
.x9{left:331.680000px;}
.x6{left:377.760000px;}
.xe{left:384.060000px;}
.x11{left:419.880000px;}
.xa{left:489.540000px;}
.xf{left:580.290000px;}
.x12{left:614.580000px;}
.x7{left:628.890000px;}
.xb{left:636.000000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls13{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.050667pt;}
.lsa{letter-spacing:-0.013333pt;}
.ls12{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.037120pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls14{letter-spacing:71.863680pt;}
.ws4{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.352533pt;}
.ws7{word-spacing:-12.883200pt;}
.wsf{word-spacing:-12.781867pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.ws5{word-spacing:-11.743467pt;}
.wsa{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._1d{margin-left:-3.633920pt;}
._a{margin-left:-2.511466pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.068150pt;}
._2{width:2.092074pt;}
._d{width:3.153067pt;}
._e{width:4.266858pt;}
._11{width:5.344316pt;}
._c{width:6.334934pt;}
._b{width:7.452800pt;}
._13{width:8.355952pt;}
._6{width:9.312316pt;}
._5{width:10.232000pt;}
._7{width:12.718934pt;}
._8{width:13.840648pt;}
._9{width:15.016533pt;}
._14{width:16.122454pt;}
._10{width:17.261334pt;}
._12{width:18.276266pt;}
._1c{width:19.665920pt;}
._f{width:20.712427pt;}
._3{width:21.749866pt;}
._4{width:24.796267pt;}
._28{width:27.735360pt;}
._17{width:30.514240pt;}
._21{width:32.919040pt;}
._2b{width:37.461440pt;}
._2c{width:38.369920pt;}
._2d{width:39.921173pt;}
._18{width:40.980480pt;}
._1f{width:43.660480pt;}
._26{width:45.263680pt;}
._1a{width:53.867520pt;}
._23{width:60.120000pt;}
._29{width:69.792640pt;}
._2a{width:70.834347pt;}
._1e{width:108.857280pt;}
._20{width:123.574720pt;}
._2e{width:130.393600pt;}
._1b{width:147.654720pt;}
._22{width:148.830400pt;}
._16{width:178.923520pt;}
._27{width:192.918400pt;}
._25{width:197.193600pt;}
._19{width:231.782400pt;}
._24{width:259.918400pt;}
._15{width:755.968427pt;}
.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;}
.y59{bottom:6.960000pt;}
.yba{bottom:6.986667pt;}
.y61{bottom:7.040000pt;}
.y5f{bottom:22.560000pt;}
.y5d{bottom:22.586667pt;}
.y5b{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y7f{bottom:100.106667pt;}
.yc6{bottom:104.106667pt;}
.ydf{bottom:111.706667pt;}
.y28{bottom:115.226667pt;}
.yc5{bottom:119.786667pt;}
.y7e{bottom:124.426667pt;}
.ya9{bottom:126.666667pt;}
.yde{bottom:127.386667pt;}
.y27{bottom:130.906667pt;}
.yc4{bottom:135.386667pt;}
.y57{bottom:138.186667pt;}
.ya8{bottom:142.266667pt;}
.ydd{bottom:142.986667pt;}
.y7d{bottom:148.666667pt;}
.yc3{bottom:150.986667pt;}
.y56{bottom:153.866667pt;}
.ydc{bottom:158.666667pt;}
.y26{bottom:162.506667pt;}
.yc2{bottom:166.666667pt;}
.y55{bottom:169.466667pt;}
.y7c{bottom:172.986667pt;}
.ya7{bottom:173.866667pt;}
.ydb{bottom:174.266667pt;}
.y25{bottom:178.106667pt;}
.y54{bottom:185.066667pt;}
.ya6{bottom:189.546667pt;}
.y24{bottom:193.786667pt;}
.y7b{bottom:197.306667pt;}
.yda{bottom:198.186667pt;}
.yc1{bottom:198.266667pt;}
.y53{bottom:200.746667pt;}
.ya5{bottom:205.146667pt;}
.y23{bottom:209.386667pt;}
.yc0{bottom:213.946667pt;}
.ya4{bottom:220.826667pt;}
.y7a{bottom:221.626667pt;}
.y22{bottom:225.066667pt;}
.ybf{bottom:229.546667pt;}
.y52{bottom:232.346667pt;}
.y21{bottom:240.666667pt;}
.yd9{bottom:241.066667pt;}
.y79{bottom:245.866667pt;}
.y51{bottom:247.946667pt;}
.ya3{bottom:252.426667pt;}
.ybe{bottom:253.466667pt;}
.yd8{bottom:256.746667pt;}
.y50{bottom:263.626667pt;}
.ya2{bottom:268.026667pt;}
.y20{bottom:272.266667pt;}
.yd7{bottom:272.346667pt;}
.y4f{bottom:279.226667pt;}
.ya1{bottom:283.706667pt;}
.y1f{bottom:287.946667pt;}
.y78{bottom:289.146667pt;}
.ybd{bottom:294.026667pt;}
.ya0{bottom:299.306667pt;}
.y4e{bottom:302.906667pt;}
.y1e{bottom:303.546667pt;}
.yd6{bottom:303.626667pt;}
.y9f{bottom:314.986667pt;}
.y1d{bottom:319.226667pt;}
.y77{bottom:320.826667pt;}
.ybc{bottom:333.946667pt;}
.y4d{bottom:334.506667pt;}
.y1c{bottom:334.826667pt;}
.yd5{bottom:334.906667pt;}
.y76{bottom:336.426667pt;}
.y9e{bottom:346.586667pt;}
.y4c{bottom:350.106667pt;}
.y1b{bottom:350.426667pt;}
.y75{bottom:352.106667pt;}
.y9d{bottom:362.186667pt;}
.y4b{bottom:365.786667pt;}
.yd4{bottom:366.506667pt;}
.ybb{bottom:373.946667pt;}
.y1a{bottom:374.346667pt;}
.y9c{bottom:377.866667pt;}
.y4a{bottom:381.386667pt;}
.yd3{bottom:382.106667pt;}
.y74{bottom:383.706667pt;}
.y9b{bottom:393.466667pt;}
.yd2{bottom:397.786667pt;}
.y73{bottom:399.306667pt;}
.y9a{bottom:409.066667pt;}
.y49{bottom:413.066667pt;}
.yd1{bottom:413.386667pt;}
.yfb{bottom:413.786667pt;}
.yb9{bottom:413.866667pt;}
.y72{bottom:414.986667pt;}
.y19{bottom:417.306667pt;}
.y48{bottom:428.693333pt;}
.yd0{bottom:429.093333pt;}
.yfa{bottom:429.413333pt;}
.y71{bottom:430.613333pt;}
.y18{bottom:433.253333pt;}
.y99{bottom:440.773333pt;}
.y47{bottom:444.293333pt;}
.ycf{bottom:444.693333pt;}
.yf9{bottom:445.093333pt;}
.yb8{bottom:453.813333pt;}
.y98{bottom:456.373333pt;}
.y70{bottom:462.293333pt;}
.y17{bottom:466.133333pt;}
.y46{bottom:467.973333pt;}
.yf8{bottom:468.693333pt;}
.y97{bottom:472.053333pt;}
.yce{bottom:476.293333pt;}
.y6f{bottom:477.893333pt;}
.y16{bottom:481.733333pt;}
.yf7{bottom:484.293333pt;}
.ycd{bottom:491.973333pt;}
.y6e{bottom:493.493333pt;}
.yb7{bottom:493.733333pt;}
.y96{bottom:495.973333pt;}
.y15{bottom:497.413333pt;}
.y45{bottom:499.573333pt;}
.ycc{bottom:507.573333pt;}
.yf6{bottom:507.973333pt;}
.y6d{bottom:509.173333pt;}
.y14{bottom:513.013333pt;}
.y44{bottom:515.253333pt;}
.ycb{bottom:523.253333pt;}
.yf5{bottom:523.573333pt;}
.y13{bottom:528.693333pt;}
.y43{bottom:530.853333pt;}
.yb6{bottom:537.013333pt;}
.y95{bottom:538.853333pt;}
.yf4{bottom:539.253333pt;}
.y6c{bottom:540.773333pt;}
.y12{bottom:544.293333pt;}
.y42{bottom:546.453333pt;}
.y94{bottom:554.453333pt;}
.y6b{bottom:556.453333pt;}
.y11{bottom:559.893333pt;}
.yf3{bottom:562.853333pt;}
.yb5{bottom:568.613333pt;}
.y93{bottom:570.133333pt;}
.y6a{bottom:572.053333pt;}
.y10{bottom:575.573333pt;}
.y41{bottom:578.133333pt;}
.yf2{bottom:578.453333pt;}
.yb4{bottom:581.973333pt;}
.y92{bottom:585.733333pt;}
.yca{bottom:586.133333pt;}
.y69{bottom:587.653333pt;}
.yf{bottom:591.173333pt;}
.y40{bottom:593.733333pt;}
.yf1{bottom:594.133333pt;}
.yc9{bottom:601.733333pt;}
.ye{bottom:606.853333pt;}
.y3f{bottom:609.413333pt;}
.y91{bottom:617.413333pt;}
.yf0{bottom:617.733333pt;}
.y68{bottom:619.333333pt;}
.yb3{bottom:621.893333pt;}
.yd{bottom:622.453333pt;}
.y3e{bottom:625.013333pt;}
.y90{bottom:633.013333pt;}
.yef{bottom:633.413333pt;}
.y67{bottom:634.933333pt;}
.yc{bottom:638.053333pt;}
.y3d{bottom:648.613333pt;}
.y66{bottom:650.533333pt;}
.yb{bottom:653.733333pt;}
.yee{bottom:657.013333pt;}
.yb2{bottom:661.813333pt;}
.y8f{bottom:664.293333pt;}
.y65{bottom:666.213333pt;}
.ya{bottom:669.333333pt;}
.yed{bottom:672.613333pt;}
.y3c{bottom:680.293333pt;}
.yb1{bottom:686.133333pt;}
.yec{bottom:688.293333pt;}
.y64{bottom:690.133333pt;}
.y9{bottom:693.253333pt;}
.y3b{bottom:695.893333pt;}
.y3a{bottom:711.573333pt;}
.yeb{bottom:711.893333pt;}
.yb0{bottom:726.053333pt;}
.y8e{bottom:727.173333pt;}
.yea{bottom:727.573333pt;}
.y63{bottom:730.693333pt;}
.y39{bottom:735.413333pt;}
.y8{bottom:736.213333pt;}
.y8d{bottom:742.773333pt;}
.ye9{bottom:743.173333pt;}
.yaf{bottom:765.973333pt;}
.ye8{bottom:766.773333pt;}
.y7{bottom:767.813333pt;}
.y62{bottom:770.613333pt;}
.y8c{bottom:774.453333pt;}
.y38{bottom:778.373333pt;}
.ye7{bottom:782.453333pt;}
.y8b{bottom:790.053333pt;}
.y37{bottom:793.973333pt;}
.y6{bottom:799.653333pt;}
.y8a{bottom:805.733333pt;}
.ye6{bottom:806.053333pt;}
.yae{bottom:809.253333pt;}
.y36{bottom:809.653333pt;}
.y60{bottom:810.533333pt;}
.y89{bottom:821.333333pt;}
.ye5{bottom:821.733333pt;}
.y35{bottom:825.253333pt;}
.y5{bottom:831.653333pt;}
.ye4{bottom:837.333333pt;}
.y34{bottom:840.853333pt;}
.y5e{bottom:850.533333pt;}
.y88{bottom:852.933333pt;}
.yad{bottom:856.533333pt;}
.ye3{bottom:861.253333pt;}
.y4{bottom:863.733333pt;}
.y87{bottom:868.613333pt;}
.yac{bottom:872.133333pt;}
.y33{bottom:872.533333pt;}
.y86{bottom:884.213333pt;}
.yab{bottom:887.813333pt;}
.y32{bottom:888.133333pt;}
.y5c{bottom:890.453333pt;}
.y3{bottom:897.760000pt;}
.y85{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.ye2{bottom:904.160000pt;}
.y30{bottom:919.440000pt;}
.ye1{bottom:919.840000pt;}
.y5a{bottom:930.400000pt;}
.y84{bottom:931.520000pt;}
.y2f{bottom:935.040000pt;}
.ye0{bottom:935.440000pt;}
.y83{bottom:947.120000pt;}
.y2e{bottom:950.720000pt;}
.yc8{bottom:951.040000pt;}
.y82{bottom:962.800000pt;}
.yaa{bottom:966.320000pt;}
.yc7{bottom:966.720000pt;}
.y58{bottom:970.320000pt;}
.y81{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y80{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:39.200000pt;}
.hc{height:39.226667pt;}
.hb{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hf{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:123.760000pt;}
.w3{width:125.146667pt;}
.w9{width:129.546667pt;}
.wf{width:132.506667pt;}
.wb{width:137.226667pt;}
.w8{width:139.600000pt;}
.wc{width:141.600000pt;}
.w4{width:148.080000pt;}
.w11{width:172.426667pt;}
.wd{width:173.706667pt;}
.w6{width:173.840000pt;}
.w10{width:178.320000pt;}
.w12{width:186.560000pt;}
.w7{width:189.226667pt;}
.we{width:217.040000pt;}
.w5{width:222.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x13{left:98.879988pt;}
.x8{left:104.880000pt;}
.x2{left:180.266655pt;}
.x5{left:186.986667pt;}
.x10{left:194.266667pt;}
.xd{left:199.066667pt;}
.x9{left:294.826667pt;}
.x6{left:335.786667pt;}
.xe{left:341.386667pt;}
.x11{left:373.226667pt;}
.xa{left:435.146667pt;}
.xf{left:515.813333pt;}
.x12{left:546.293333pt;}
.x7{left:559.013333pt;}
.xb{left:565.333333pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  