
    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_8a087f70bda09eeb220ab584.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_d5e62998f88b80a70689892d.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_8085b5245b802424122806c9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_caed215879925956d2d7f34a.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_48e48e9eb9f98b89e07ffb23.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_01cbaed7d3f873d9bee9f97d.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;}
.ls13{letter-spacing:-0.444600px;}
.lsd{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.160800px;}
.ls6{letter-spacing:-0.135000px;}
.ls8{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls3{letter-spacing:0.000000px;}
.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;}
.lse{letter-spacing:0.098400px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls9{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:47.726640px;}
.ls11{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._11{margin-left:-3.905877px;}
._6{margin-left:-2.886000px;}
._0{margin-left:-1.110000px;}
._1{width:1.185432px;}
._2{width:2.241477px;}
._9{width:3.967800px;}
._b{width:5.170440px;}
._4{width:6.372600px;}
._5{width:7.455601px;}
._7{width:8.717400px;}
._a{width:10.280400px;}
._8{width:12.084000px;}
._13{width:14.226839px;}
._3{width:15.270600px;}
._f{width:17.134200px;}
._10{width:19.058040px;}
._e{width:21.014160px;}
._d{width:22.512720px;}
._c{width:23.627160px;}
._14{width:27.160200px;}
._15{width:28.280520px;}
._12{width:33.967800px;}
._1c{width:44.097840px;}
._16{width:46.202040px;}
._18{width:69.870720px;}
._17{width:70.911360px;}
._1b{width:88.977600px;}
._19{width:229.538160px;}
._1d{width:446.992200px;}
._1a{width:2333.858400px;}
.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;}
.y58{bottom:7.830000px;}
.y5d{bottom:7.860000px;}
.y5a{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yf1{bottom:116.310000px;}
.y85{bottom:123.960000px;}
.y29{bottom:131.160000px;}
.yf0{bottom:133.860000px;}
.y84{bottom:141.600000px;}
.y28{bottom:148.710000px;}
.yca{bottom:150.060000px;}
.yef{bottom:151.500000px;}
.y83{bottom:159.150000px;}
.y27{bottom:166.350000px;}
.yee{bottom:169.050000px;}
.y56{bottom:169.590000px;}
.yab{bottom:170.400000px;}
.y82{bottom:176.700000px;}
.yc9{bottom:177.510000px;}
.y26{bottom:183.900000px;}
.yed{bottom:186.600000px;}
.y11b{bottom:191.910000px;}
.y25{bottom:201.540000px;}
.yc8{bottom:204.960000px;}
.y55{bottom:205.230000px;}
.yaa{bottom:206.040000px;}
.y11a{bottom:209.460000px;}
.y81{bottom:212.340000px;}
.yec{bottom:213.510000px;}
.y24{bottom:219.090000px;}
.y54{bottom:222.780000px;}
.y80{bottom:229.890000px;}
.yc7{bottom:232.500000px;}
.y119{bottom:236.100000px;}
.y23{bottom:236.640000px;}
.y53{bottom:240.330000px;}
.ya9{bottom:241.590000px;}
.y7f{bottom:247.440000px;}
.y118{bottom:253.650000px;}
.y22{bottom:254.280000px;}
.y52{bottom:257.970000px;}
.ya8{bottom:259.140000px;}
.yc6{bottom:259.950000px;}
.yeb{bottom:261.840000px;}
.y7e{bottom:265.080000px;}
.y117{bottom:271.200000px;}
.ya7{bottom:276.780000px;}
.yea{bottom:279.390000px;}
.y7d{bottom:282.630000px;}
.y116{bottom:288.840000px;}
.y21{bottom:289.830000px;}
.y51{bottom:293.520000px;}
.ya6{bottom:294.330000px;}
.ye9{bottom:296.940000px;}
.y7c{bottom:300.270000px;}
.y20{bottom:307.380000px;}
.yc5{bottom:308.820000px;}
.y50{bottom:311.160000px;}
.ye8{bottom:314.580000px;}
.y115{bottom:315.390000px;}
.y1f{bottom:325.020000px;}
.y7b{bottom:326.820000px;}
.y4f{bottom:328.710000px;}
.ya5{bottom:329.970000px;}
.y114{bottom:332.940000px;}
.y1e{bottom:342.570000px;}
.yc4{bottom:344.370000px;}
.y4e{bottom:346.260000px;}
.ya4{bottom:347.520000px;}
.ye7{bottom:350.130000px;}
.y113{bottom:359.580000px;}
.y1d{bottom:360.210000px;}
.yc3{bottom:362.010000px;}
.y7a{bottom:362.370000px;}
.y4d{bottom:363.900000px;}
.ya3{bottom:365.070000px;}
.ye6{bottom:367.770000px;}
.y112{bottom:377.130000px;}
.y1c{bottom:377.760000px;}
.yc2{bottom:379.560000px;}
.y79{bottom:380.010000px;}
.ya2{bottom:382.710000px;}
.ye5{bottom:385.320000px;}
.y4c{bottom:390.810000px;}
.y1b{bottom:395.310000px;}
.yc1{bottom:397.200000px;}
.y78{bottom:397.560000px;}
.ye4{bottom:402.870000px;}
.y111{bottom:403.770000px;}
.ya1{bottom:409.260000px;}
.y1a{bottom:412.950000px;}
.y77{bottom:415.200000px;}
.ye3{bottom:420.510000px;}
.y110{bottom:421.320000px;}
.yc0{bottom:423.750000px;}
.y19{bottom:430.500000px;}
.y76{bottom:432.750000px;}
.y10f{bottom:438.870000px;}
.y4b{bottom:439.050000px;}
.ya0{bottom:444.900000px;}
.ye2{bottom:447.060000px;}
.y18{bottom:448.140000px;}
.y10e{bottom:456.510000px;}
.y4a{bottom:456.690000px;}
.ybf{bottom:459.300000px;}
.y9f{bottom:462.450000px;}
.y17{bottom:465.690000px;}
.y75{bottom:468.300000px;}
.y49{bottom:474.270000px;}
.ybe{bottom:476.970000px;}
.y9e{bottom:480.030000px;}
.ye1{bottom:482.730000px;}
.y10d{bottom:483.090000px;}
.y16{bottom:483.270000px;}
.y74{bottom:485.970000px;}
.y48{bottom:491.820000px;}
.ybd{bottom:494.520000px;}
.y9d{bottom:497.670000px;}
.ye0{bottom:500.280000px;}
.y10c{bottom:500.730000px;}
.y73{bottom:503.520000px;}
.y47{bottom:509.460000px;}
.y15{bottom:510.180000px;}
.ybc{bottom:512.160000px;}
.ydf{bottom:517.830000px;}
.y10b{bottom:518.280000px;}
.y72{bottom:521.160000px;}
.ybb{bottom:529.710000px;}
.y9c{bottom:533.220000px;}
.yde{bottom:535.470000px;}
.y10a{bottom:535.830000px;}
.y71{bottom:538.710000px;}
.y46{bottom:545.010000px;}
.y9b{bottom:550.860000px;}
.y14{bottom:558.510000px;}
.y109{bottom:562.470000px;}
.y45{bottom:562.650000px;}
.y70{bottom:565.260000px;}
.y9a{bottom:568.410000px;}
.ydd{bottom:571.020000px;}
.y13{bottom:576.420000px;}
.y108{bottom:580.020000px;}
.y44{bottom:580.200000px;}
.yba{bottom:582.900000px;}
.y99{bottom:585.960000px;}
.ydc{bottom:588.660000px;}
.y43{bottom:597.750000px;}
.yb9{bottom:600.450000px;}
.y6f{bottom:600.900000px;}
.ydb{bottom:606.210000px;}
.y107{bottom:606.660000px;}
.y98{bottom:612.600000px;}
.y12{bottom:613.410000px;}
.y42{bottom:615.390000px;}
.yb8{bottom:618.090000px;}
.y6e{bottom:618.450000px;}
.yda{bottom:623.760000px;}
.y106{bottom:624.210000px;}
.y11{bottom:630.960000px;}
.yb7{bottom:635.640000px;}
.y6d{bottom:636.090000px;}
.y105{bottom:641.760000px;}
.y41{bottom:642.300000px;}
.y97{bottom:648.150000px;}
.y10{bottom:648.600000px;}
.yd9{bottom:650.400000px;}
.y6c{bottom:653.640000px;}
.yb6{bottom:662.190000px;}
.y96{bottom:665.700000px;}
.yf{bottom:666.150000px;}
.y104{bottom:668.400000px;}
.y6b{bottom:671.190000px;}
.y95{bottom:683.340000px;}
.ye{bottom:683.790000px;}
.yd8{bottom:685.950000px;}
.y40{bottom:690.540000px;}
.yb5{bottom:697.830000px;}
.y94{bottom:700.890000px;}
.yd{bottom:701.340000px;}
.yd7{bottom:703.590000px;}
.y6a{bottom:706.830000px;}
.y3f{bottom:708.090000px;}
.y103{bottom:712.590000px;}
.yb4{bottom:715.380000px;}
.yc{bottom:718.890000px;}
.yd6{bottom:721.140000px;}
.y69{bottom:724.380000px;}
.y3e{bottom:725.730000px;}
.y102{bottom:730.140000px;}
.yb3{bottom:733.020000px;}
.yb{bottom:736.530000px;}
.yd5{bottom:738.690000px;}
.y68{bottom:742.020000px;}
.y3d{bottom:743.280000px;}
.y101{bottom:747.690000px;}
.yb2{bottom:750.570000px;}
.ya{bottom:754.080000px;}
.yd4{bottom:756.330000px;}
.y67{bottom:759.570000px;}
.y3c{bottom:760.920000px;}
.y93{bottom:771.630000px;}
.y100{bottom:774.330000px;}
.y66{bottom:777.120000px;}
.y9{bottom:781.080000px;}
.yb1{bottom:786.120000px;}
.y92{bottom:789.270000px;}
.yd3{bottom:791.880000px;}
.y65{bottom:794.760000px;}
.y3b{bottom:796.470000px;}
.yb0{bottom:803.760000px;}
.y91{bottom:806.820000px;}
.yd2{bottom:809.520000px;}
.y3a{bottom:814.020000px;}
.yff{bottom:818.520000px;}
.y64{bottom:821.310000px;}
.yd1{bottom:827.070000px;}
.y8{bottom:827.790000px;}
.y39{bottom:831.660000px;}
.y90{bottom:833.460000px;}
.yfe{bottom:836.070000px;}
.yaf{bottom:838.950000px;}
.yd0{bottom:844.620000px;}
.y38{bottom:849.210000px;}
.yae{bottom:856.500000px;}
.y63{bottom:856.950000px;}
.ycf{bottom:862.260000px;}
.yfd{bottom:862.980000px;}
.y7{bottom:863.610000px;}
.y37{bottom:866.850000px;}
.y8f{bottom:869.010000px;}
.yad{bottom:874.050000px;}
.y62{bottom:874.500000px;}
.yce{bottom:879.810000px;}
.y8e{bottom:886.560000px;}
.y61{bottom:892.050000px;}
.y36{bottom:893.760000px;}
.y6{bottom:899.610000px;}
.yac{bottom:900.690000px;}
.y8d{bottom:904.200000px;}
.ycd{bottom:906.450000px;}
.y60{bottom:909.690000px;}
.yfc{bottom:911.220000px;}
.y8c{bottom:921.750000px;}
.yfb{bottom:928.860000px;}
.y5{bottom:935.610000px;}
.y5f{bottom:936.600000px;}
.y35{bottom:942.000000px;}
.yfa{bottom:946.410000px;}
.y8b{bottom:948.390000px;}
.y34{bottom:959.550000px;}
.yf9{bottom:963.960000px;}
.y4{bottom:971.700000px;}
.y33{bottom:977.190000px;}
.y8a{bottom:981.510000px;}
.yf8{bottom:981.600000px;}
.y5e{bottom:982.230000px;}
.y32{bottom:994.740000px;}
.yf7{bottom:999.150000px;}
.y89{bottom:1008.960000px;}
.y5c{bottom:1009.590000px;}
.y3{bottom:1009.980000px;}
.y31{bottom:1012.320000px;}
.yf6{bottom:1016.820000px;}
.ycc{bottom:1021.680000px;}
.yf5{bottom:1034.370000px;}
.y88{bottom:1036.440000px;}
.y5b{bottom:1036.890000px;}
.y30{bottom:1039.230000px;}
.yf4{bottom:1051.920000px;}
.y87{bottom:1063.980000px;}
.y59{bottom:1064.250000px;}
.yf3{bottom:1069.560000px;}
.ycb{bottom:1069.920000px;}
.yf2{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y86{bottom:1091.430000px;}
.y57{bottom:1091.610000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hd{height:26.580000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:50.667539px;}
.hb{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hf{height:61.793886px;}
.he{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:116.670000px;}
.w8{width:122.490000px;}
.w7{width:128.550000px;}
.wc{width:128.700000px;}
.w3{width:128.820000px;}
.w12{width:152.100000px;}
.w6{width:156.600000px;}
.w11{width:157.800000px;}
.wd{width:167.070000px;}
.wf{width:170.220000px;}
.w9{width:173.280000px;}
.w10{width:179.820000px;}
.we{width:180.900000px;}
.wa{width:181.530000px;}
.w5{width:188.220000px;}
.w4{width:220.320000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.870000px;}
.xa{left:7.110000px;}
.x1{left:68.040000px;}
.x4{left:98.550000px;}
.x15{left:111.239987px;}
.x11{left:115.920000px;}
.x9{left:143.010000px;}
.xe{left:148.860000px;}
.x2{left:211.079987px;}
.x6{left:228.180000px;}
.xf{left:266.250000px;}
.xb{left:272.010000px;}
.x12{left:286.590000px;}
.xc{left:394.950000px;}
.x7{left:449.220000px;}
.x13{left:466.950000px;}
.x10{left:563.460000px;}
.xd{left:568.680000px;}
.x14{left:625.200000px;}
.x8{left:638.160000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.395200pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.142933pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls3{letter-spacing:0.000000pt;}
.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;}
.lse{letter-spacing:0.087467pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls9{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._11{margin-left:-3.471891pt;}
._6{margin-left:-2.565334pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.053718pt;}
._2{width:1.992424pt;}
._9{width:3.526933pt;}
._b{width:4.595947pt;}
._4{width:5.664533pt;}
._5{width:6.627201pt;}
._7{width:7.748800pt;}
._a{width:9.138133pt;}
._8{width:10.741333pt;}
._13{width:12.646079pt;}
._3{width:13.573867pt;}
._f{width:15.230400pt;}
._10{width:16.940480pt;}
._e{width:18.679253pt;}
._d{width:20.011307pt;}
._c{width:21.001920pt;}
._14{width:24.142400pt;}
._15{width:25.138240pt;}
._12{width:30.193600pt;}
._1c{width:39.198080pt;}
._16{width:41.068480pt;}
._18{width:62.107307pt;}
._17{width:63.032320pt;}
._1b{width:79.091200pt;}
._19{width:204.033920pt;}
._1d{width:397.326400pt;}
._1a{width:2074.540800pt;}
.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;}
.y58{bottom:6.960000pt;}
.y5d{bottom:6.986667pt;}
.y5a{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yf1{bottom:103.386667pt;}
.y85{bottom:110.186667pt;}
.y29{bottom:116.586667pt;}
.yf0{bottom:118.986667pt;}
.y84{bottom:125.866667pt;}
.y28{bottom:132.186667pt;}
.yca{bottom:133.386667pt;}
.yef{bottom:134.666667pt;}
.y83{bottom:141.466667pt;}
.y27{bottom:147.866667pt;}
.yee{bottom:150.266667pt;}
.y56{bottom:150.746667pt;}
.yab{bottom:151.466667pt;}
.y82{bottom:157.066667pt;}
.yc9{bottom:157.786667pt;}
.y26{bottom:163.466667pt;}
.yed{bottom:165.866667pt;}
.y11b{bottom:170.586667pt;}
.y25{bottom:179.146667pt;}
.yc8{bottom:182.186667pt;}
.y55{bottom:182.426667pt;}
.yaa{bottom:183.146667pt;}
.y11a{bottom:186.186667pt;}
.y81{bottom:188.746667pt;}
.yec{bottom:189.786667pt;}
.y24{bottom:194.746667pt;}
.y54{bottom:198.026667pt;}
.y80{bottom:204.346667pt;}
.yc7{bottom:206.666667pt;}
.y119{bottom:209.866667pt;}
.y23{bottom:210.346667pt;}
.y53{bottom:213.626667pt;}
.ya9{bottom:214.746667pt;}
.y7f{bottom:219.946667pt;}
.y118{bottom:225.466667pt;}
.y22{bottom:226.026667pt;}
.y52{bottom:229.306667pt;}
.ya8{bottom:230.346667pt;}
.yc6{bottom:231.066667pt;}
.yeb{bottom:232.746667pt;}
.y7e{bottom:235.626667pt;}
.y117{bottom:241.066667pt;}
.ya7{bottom:246.026667pt;}
.yea{bottom:248.346667pt;}
.y7d{bottom:251.226667pt;}
.y116{bottom:256.746667pt;}
.y21{bottom:257.626667pt;}
.y51{bottom:260.906667pt;}
.ya6{bottom:261.626667pt;}
.ye9{bottom:263.946667pt;}
.y7c{bottom:266.906667pt;}
.y20{bottom:273.226667pt;}
.yc5{bottom:274.506667pt;}
.y50{bottom:276.586667pt;}
.ye8{bottom:279.626667pt;}
.y115{bottom:280.346667pt;}
.y1f{bottom:288.906667pt;}
.y7b{bottom:290.506667pt;}
.y4f{bottom:292.186667pt;}
.ya5{bottom:293.306667pt;}
.y114{bottom:295.946667pt;}
.y1e{bottom:304.506667pt;}
.yc4{bottom:306.106667pt;}
.y4e{bottom:307.786667pt;}
.ya4{bottom:308.906667pt;}
.ye7{bottom:311.226667pt;}
.y113{bottom:319.626667pt;}
.y1d{bottom:320.186667pt;}
.yc3{bottom:321.786667pt;}
.y7a{bottom:322.106667pt;}
.y4d{bottom:323.466667pt;}
.ya3{bottom:324.506667pt;}
.ye6{bottom:326.906667pt;}
.y112{bottom:335.226667pt;}
.y1c{bottom:335.786667pt;}
.yc2{bottom:337.386667pt;}
.y79{bottom:337.786667pt;}
.ya2{bottom:340.186667pt;}
.ye5{bottom:342.506667pt;}
.y4c{bottom:347.386667pt;}
.y1b{bottom:351.386667pt;}
.yc1{bottom:353.066667pt;}
.y78{bottom:353.386667pt;}
.ye4{bottom:358.106667pt;}
.y111{bottom:358.906667pt;}
.ya1{bottom:363.786667pt;}
.y1a{bottom:367.066667pt;}
.y77{bottom:369.066667pt;}
.ye3{bottom:373.786667pt;}
.y110{bottom:374.506667pt;}
.yc0{bottom:376.666667pt;}
.y19{bottom:382.666667pt;}
.y76{bottom:384.666667pt;}
.y10f{bottom:390.106667pt;}
.y4b{bottom:390.266667pt;}
.ya0{bottom:395.466667pt;}
.ye2{bottom:397.386667pt;}
.y18{bottom:398.346667pt;}
.y10e{bottom:405.786667pt;}
.y4a{bottom:405.946667pt;}
.ybf{bottom:408.266667pt;}
.y9f{bottom:411.066667pt;}
.y17{bottom:413.946667pt;}
.y75{bottom:416.266667pt;}
.y49{bottom:421.573333pt;}
.ybe{bottom:423.973333pt;}
.y9e{bottom:426.693333pt;}
.ye1{bottom:429.093333pt;}
.y10d{bottom:429.413333pt;}
.y16{bottom:429.573333pt;}
.y74{bottom:431.973333pt;}
.y48{bottom:437.173333pt;}
.ybd{bottom:439.573333pt;}
.y9d{bottom:442.373333pt;}
.ye0{bottom:444.693333pt;}
.y10c{bottom:445.093333pt;}
.y73{bottom:447.573333pt;}
.y47{bottom:452.853333pt;}
.y15{bottom:453.493333pt;}
.ybc{bottom:455.253333pt;}
.ydf{bottom:460.293333pt;}
.y10b{bottom:460.693333pt;}
.y72{bottom:463.253333pt;}
.ybb{bottom:470.853333pt;}
.y9c{bottom:473.973333pt;}
.yde{bottom:475.973333pt;}
.y10a{bottom:476.293333pt;}
.y71{bottom:478.853333pt;}
.y46{bottom:484.453333pt;}
.y9b{bottom:489.653333pt;}
.y14{bottom:496.453333pt;}
.y109{bottom:499.973333pt;}
.y45{bottom:500.133333pt;}
.y70{bottom:502.453333pt;}
.y9a{bottom:505.253333pt;}
.ydd{bottom:507.573333pt;}
.y13{bottom:512.373333pt;}
.y108{bottom:515.573333pt;}
.y44{bottom:515.733333pt;}
.yba{bottom:518.133333pt;}
.y99{bottom:520.853333pt;}
.ydc{bottom:523.253333pt;}
.y43{bottom:531.333333pt;}
.yb9{bottom:533.733333pt;}
.y6f{bottom:534.133333pt;}
.ydb{bottom:538.853333pt;}
.y107{bottom:539.253333pt;}
.y98{bottom:544.533333pt;}
.y12{bottom:545.253333pt;}
.y42{bottom:547.013333pt;}
.yb8{bottom:549.413333pt;}
.y6e{bottom:549.733333pt;}
.yda{bottom:554.453333pt;}
.y106{bottom:554.853333pt;}
.y11{bottom:560.853333pt;}
.yb7{bottom:565.013333pt;}
.y6d{bottom:565.413333pt;}
.y105{bottom:570.453333pt;}
.y41{bottom:570.933333pt;}
.y97{bottom:576.133333pt;}
.y10{bottom:576.533333pt;}
.yd9{bottom:578.133333pt;}
.y6c{bottom:581.013333pt;}
.yb6{bottom:588.613333pt;}
.y96{bottom:591.733333pt;}
.yf{bottom:592.133333pt;}
.y104{bottom:594.133333pt;}
.y6b{bottom:596.613333pt;}
.y95{bottom:607.413333pt;}
.ye{bottom:607.813333pt;}
.yd8{bottom:609.733333pt;}
.y40{bottom:613.813333pt;}
.yb5{bottom:620.293333pt;}
.y94{bottom:623.013333pt;}
.yd{bottom:623.413333pt;}
.yd7{bottom:625.413333pt;}
.y6a{bottom:628.293333pt;}
.y3f{bottom:629.413333pt;}
.y103{bottom:633.413333pt;}
.yb4{bottom:635.893333pt;}
.yc{bottom:639.013333pt;}
.yd6{bottom:641.013333pt;}
.y69{bottom:643.893333pt;}
.y3e{bottom:645.093333pt;}
.y102{bottom:649.013333pt;}
.yb3{bottom:651.573333pt;}
.yb{bottom:654.693333pt;}
.yd5{bottom:656.613333pt;}
.y68{bottom:659.573333pt;}
.y3d{bottom:660.693333pt;}
.y101{bottom:664.613333pt;}
.yb2{bottom:667.173333pt;}
.ya{bottom:670.293333pt;}
.yd4{bottom:672.293333pt;}
.y67{bottom:675.173333pt;}
.y3c{bottom:676.373333pt;}
.y93{bottom:685.893333pt;}
.y100{bottom:688.293333pt;}
.y66{bottom:690.773333pt;}
.y9{bottom:694.293333pt;}
.yb1{bottom:698.773333pt;}
.y92{bottom:701.573333pt;}
.yd3{bottom:703.893333pt;}
.y65{bottom:706.453333pt;}
.y3b{bottom:707.973333pt;}
.yb0{bottom:714.453333pt;}
.y91{bottom:717.173333pt;}
.yd2{bottom:719.573333pt;}
.y3a{bottom:723.573333pt;}
.yff{bottom:727.573333pt;}
.y64{bottom:730.053333pt;}
.yd1{bottom:735.173333pt;}
.y8{bottom:735.813333pt;}
.y39{bottom:739.253333pt;}
.y90{bottom:740.853333pt;}
.yfe{bottom:743.173333pt;}
.yaf{bottom:745.733333pt;}
.yd0{bottom:750.773333pt;}
.y38{bottom:754.853333pt;}
.yae{bottom:761.333333pt;}
.y63{bottom:761.733333pt;}
.ycf{bottom:766.453333pt;}
.yfd{bottom:767.093333pt;}
.y7{bottom:767.653333pt;}
.y37{bottom:770.533333pt;}
.y8f{bottom:772.453333pt;}
.yad{bottom:776.933333pt;}
.y62{bottom:777.333333pt;}
.yce{bottom:782.053333pt;}
.y8e{bottom:788.053333pt;}
.y61{bottom:792.933333pt;}
.y36{bottom:794.453333pt;}
.y6{bottom:799.653333pt;}
.yac{bottom:800.613333pt;}
.y8d{bottom:803.733333pt;}
.ycd{bottom:805.733333pt;}
.y60{bottom:808.613333pt;}
.yfc{bottom:809.973333pt;}
.y8c{bottom:819.333333pt;}
.yfb{bottom:825.653333pt;}
.y5{bottom:831.653333pt;}
.y5f{bottom:832.533333pt;}
.y35{bottom:837.333333pt;}
.yfa{bottom:841.253333pt;}
.y8b{bottom:843.013333pt;}
.y34{bottom:852.933333pt;}
.yf9{bottom:856.853333pt;}
.y4{bottom:863.733333pt;}
.y33{bottom:868.613333pt;}
.y8a{bottom:872.453333pt;}
.yf8{bottom:872.533333pt;}
.y5e{bottom:873.093333pt;}
.y32{bottom:884.213333pt;}
.yf7{bottom:888.133333pt;}
.y89{bottom:896.853333pt;}
.y5c{bottom:897.413333pt;}
.y3{bottom:897.760000pt;}
.y31{bottom:899.840000pt;}
.yf6{bottom:903.840000pt;}
.ycc{bottom:908.160000pt;}
.yf5{bottom:919.440000pt;}
.y88{bottom:921.280000pt;}
.y5b{bottom:921.680000pt;}
.y30{bottom:923.760000pt;}
.yf4{bottom:935.040000pt;}
.y87{bottom:945.760000pt;}
.y59{bottom:946.000000pt;}
.yf3{bottom:950.720000pt;}
.ycb{bottom:951.040000pt;}
.yf2{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y86{bottom:970.160000pt;}
.y57{bottom:970.320000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hd{height:23.626667pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:45.037812pt;}
.hb{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hf{height:54.927899pt;}
.he{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:103.706667pt;}
.w8{width:108.880000pt;}
.w7{width:114.266667pt;}
.wc{width:114.400000pt;}
.w3{width:114.506667pt;}
.w12{width:135.200000pt;}
.w6{width:139.200000pt;}
.w11{width:140.266667pt;}
.wd{width:148.506667pt;}
.wf{width:151.306667pt;}
.w9{width:154.026667pt;}
.w10{width:159.840000pt;}
.we{width:160.800000pt;}
.wa{width:161.360000pt;}
.w5{width:167.306667pt;}
.w4{width:195.840000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.440000pt;}
.xa{left:6.320000pt;}
.x1{left:60.480000pt;}
.x4{left:87.600000pt;}
.x15{left:98.879988pt;}
.x11{left:103.040000pt;}
.x9{left:127.120000pt;}
.xe{left:132.320000pt;}
.x2{left:187.626655pt;}
.x6{left:202.826667pt;}
.xf{left:236.666667pt;}
.xb{left:241.786667pt;}
.x12{left:254.746667pt;}
.xc{left:351.066667pt;}
.x7{left:399.306667pt;}
.x13{left:415.066667pt;}
.x10{left:500.853333pt;}
.xd{left:505.493333pt;}
.x14{left:555.733333pt;}
.x8{left:567.253333pt;}
.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; }
  