
    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_73f2f316944b7355267f59b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853516;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_bc1635c1bf6d0792f7abaf60.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_9e25b167ee985ae8b224a814.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_880b6a94e0749434eab3f308.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_fe4c90927eb35cb9771664f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.141000px;}
.lsa{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.066000px;}
.lse{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.206400px;}
.ls0{letter-spacing:0.233280px;}
.lsc{letter-spacing:0.360000px;}
.ls11{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-17.818560px;}
.ws1{word-spacing:-17.677560px;}
.ws3{word-spacing:-16.691760px;}
.ws2{word-spacing:-16.493760px;}
.ws8{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.940000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-1429.822080px;}
._4{margin-left:-1087.505280px;}
._6{margin-left:-610.974720px;}
._7{margin-left:-550.037040px;}
._3{margin-left:-467.576640px;}
._1{margin-left:-419.958720px;}
._13{margin-left:-4.626000px;}
._10{margin-left:-3.536640px;}
._f{margin-left:-2.207520px;}
._0{margin-left:-1.192320px;}
._2{width:1.592640px;}
._b{width:2.881920px;}
._a{width:3.884400px;}
._9{width:4.950720px;}
._c{width:6.305040px;}
._14{width:7.759440px;}
._e{width:9.083520px;}
._d{width:10.458000px;}
._12{width:11.832480px;}
._11{width:12.967920px;}
._19{width:16.036560px;}
._18{width:17.975520px;}
._16{width:19.511760px;}
._15{width:20.796480px;}
._8{width:27.291600px;}
._17{width:35.038080px;}
.fc2{color:rgb(91,155,213);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.y56{bottom:3.240000px;}
.y7d{bottom:3.420000px;}
.y7f{bottom:3.600000px;}
.y6f{bottom:5.220000px;}
.y75{bottom:5.400000px;}
.y71{bottom:5.580000px;}
.yb{bottom:6.120000px;}
.ya{bottom:8.100000px;}
.y54{bottom:14.400000px;}
.y59{bottom:25.200000px;}
.y57{bottom:25.380000px;}
.y6{bottom:26.100000px;}
.y9{bottom:32.400000px;}
.y5{bottom:45.900000px;}
.y8{bottom:59.250000px;}
.yd{bottom:59.940000px;}
.y4{bottom:65.730000px;}
.y7a{bottom:82.800000px;}
.yd5{bottom:83.160000px;}
.y3{bottom:85.530000px;}
.ya5{bottom:89.280000px;}
.y7{bottom:93.450000px;}
.yd4{bottom:100.440000px;}
.y79{bottom:102.600000px;}
.y2{bottom:105.330000px;}
.ya4{bottom:109.080000px;}
.y3c{bottom:111.780000px;}
.yd3{bottom:117.540000px;}
.y78{bottom:122.580000px;}
.ya3{bottom:128.880000px;}
.y3b{bottom:131.580000px;}
.yd2{bottom:134.820000px;}
.y77{bottom:142.380000px;}
.ya2{bottom:148.860000px;}
.y3a{bottom:151.380000px;}
.yd1{bottom:154.650000px;}
.y76{bottom:162.210000px;}
.ya1{bottom:168.690000px;}
.y39{bottom:171.210000px;}
.yd0{bottom:174.630000px;}
.y74{bottom:176.970000px;}
.ya0{bottom:188.490000px;}
.y38{bottom:191.190000px;}
.ycf{bottom:194.430000px;}
.y73{bottom:201.270000px;}
.y9f{bottom:208.290000px;}
.y37{bottom:210.990000px;}
.yce{bottom:211.710000px;}
.y72{bottom:225.210000px;}
.y9e{bottom:228.090000px;}
.ycd{bottom:228.990000px;}
.y36{bottom:230.790000px;}
.ycc{bottom:246.090000px;}
.y9d{bottom:248.070000px;}
.y70{bottom:249.510000px;}
.y35{bottom:250.590000px;}
.ycb{bottom:265.890000px;}
.y9c{bottom:267.870000px;}
.y34{bottom:270.390000px;}
.y6e{bottom:273.810000px;}
.yca{bottom:285.870000px;}
.y9b{bottom:287.670000px;}
.y33{bottom:290.370000px;}
.y6d{bottom:303.690000px;}
.yc9{bottom:305.670000px;}
.y9a{bottom:307.470000px;}
.y32{bottom:310.170000px;}
.y6c{bottom:323.490000px;}
.yc8{bottom:325.470000px;}
.y99{bottom:327.270000px;}
.y31{bottom:329.970000px;}
.y6b{bottom:343.290000px;}
.yc7{bottom:345.270000px;}
.y98{bottom:347.250000px;}
.y30{bottom:349.770000px;}
.y6a{bottom:363.270000px;}
.yc6{bottom:365.070000px;}
.y97{bottom:367.050000px;}
.y2f{bottom:369.570000px;}
.y69{bottom:383.070000px;}
.yc5{bottom:385.050000px;}
.y96{bottom:386.850000px;}
.y2e{bottom:389.550000px;}
.y68{bottom:402.915000px;}
.yc4{bottom:404.895000px;}
.y95{bottom:406.695000px;}
.y2d{bottom:409.395000px;}
.y67{bottom:422.715000px;}
.yc3{bottom:424.695000px;}
.y94{bottom:426.495000px;}
.y2c{bottom:429.195000px;}
.yc2{bottom:441.975000px;}
.y66{bottom:442.515000px;}
.y93{bottom:446.475000px;}
.y2b{bottom:448.995000px;}
.yc1{bottom:459.255000px;}
.y65{bottom:462.495000px;}
.y92{bottom:466.275000px;}
.y2a{bottom:468.795000px;}
.yc0{bottom:479.055000px;}
.y64{bottom:482.295000px;}
.y91{bottom:486.075000px;}
.y29{bottom:488.775000px;}
.ybf{bottom:498.855000px;}
.y63{bottom:502.095000px;}
.y90{bottom:505.875000px;}
.y28{bottom:508.575000px;}
.ybe{bottom:518.655000px;}
.y62{bottom:521.895000px;}
.y8f{bottom:525.675000px;}
.y27{bottom:528.375000px;}
.ybd{bottom:538.455000px;}
.y61{bottom:541.695000px;}
.y8e{bottom:545.655000px;}
.y26{bottom:548.175000px;}
.ybc{bottom:558.435000px;}
.y60{bottom:561.675000px;}
.y8d{bottom:565.455000px;}
.y25{bottom:567.975000px;}
.ybb{bottom:578.235000px;}
.y5f{bottom:581.475000px;}
.y8c{bottom:585.255000px;}
.y24{bottom:587.955000px;}
.yba{bottom:598.035000px;}
.y5e{bottom:601.275000px;}
.y8b{bottom:605.055000px;}
.y23{bottom:609.915000px;}
.yb9{bottom:617.835000px;}
.y5d{bottom:621.075000px;}
.y8a{bottom:624.855000px;}
.y22{bottom:629.715000px;}
.y5c{bottom:635.835000px;}
.yb8{bottom:637.635000px;}
.y89{bottom:644.835000px;}
.y21{bottom:649.725000px;}
.yb7{bottom:657.645000px;}
.y58{bottom:658.005000px;}
.y88{bottom:664.665000px;}
.y20{bottom:669.525000px;}
.yb6{bottom:677.445000px;}
.y5b{bottom:679.965000px;}
.y87{bottom:684.465000px;}
.y1f{bottom:689.325000px;}
.yb5{bottom:697.245000px;}
.y5a{bottom:702.105000px;}
.y86{bottom:704.265000px;}
.y1e{bottom:709.125000px;}
.yb4{bottom:717.045000px;}
.y53{bottom:724.065000px;}
.y1d{bottom:728.925000px;}
.yb3{bottom:736.845000px;}
.y85{bottom:744.045000px;}
.y55{bottom:746.205000px;}
.y1c{bottom:748.905000px;}
.yb2{bottom:756.825000px;}
.y84{bottom:763.845000px;}
.y1b{bottom:768.705000px;}
.y52{bottom:773.925000px;}
.yb1{bottom:776.625000px;}
.y83{bottom:783.645000px;}
.y1a{bottom:788.505000px;}
.y51{bottom:793.905000px;}
.yb0{bottom:796.425000px;}
.y82{bottom:803.445000px;}
.y19{bottom:808.305000px;}
.y50{bottom:813.705000px;}
.yaf{bottom:816.225000px;}
.y81{bottom:823.245000px;}
.y18{bottom:828.105000px;}
.y4f{bottom:833.505000px;}
.yae{bottom:836.025000px;}
.y80{bottom:838.185000px;}
.y17{bottom:847.905000px;}
.y4e{bottom:853.305000px;}
.yad{bottom:856.005000px;}
.y7e{bottom:860.325000px;}
.y16{bottom:870.045000px;}
.y4d{bottom:873.105000px;}
.yac{bottom:875.805000px;}
.y7c{bottom:882.645000px;}
.y15{bottom:890.025000px;}
.y4c{bottom:893.085000px;}
.yab{bottom:895.605000px;}
.y7b{bottom:904.830000px;}
.y14{bottom:909.870000px;}
.y4b{bottom:912.930000px;}
.yaa{bottom:915.450000px;}
.y13{bottom:929.670000px;}
.y4a{bottom:932.730000px;}
.ya9{bottom:935.250000px;}
.y49{bottom:952.530000px;}
.y12{bottom:954.690000px;}
.ya8{bottom:955.230000px;}
.y11{bottom:969.810000px;}
.y48{bottom:972.330000px;}
.ya7{bottom:975.030000px;}
.y10{bottom:991.230000px;}
.y47{bottom:992.310000px;}
.ya6{bottom:994.830000px;}
.y46{bottom:1012.110000px;}
.yf{bottom:1014.630000px;}
.y45{bottom:1031.910000px;}
.ye{bottom:1046.310000px;}
.y44{bottom:1051.710000px;}
.y43{bottom:1071.510000px;}
.yc{bottom:1071.870000px;}
.y1{bottom:1088.070000px;}
.y42{bottom:1091.490000px;}
.y41{bottom:1111.290000px;}
.y40{bottom:1131.090000px;}
.y3f{bottom:1150.920000px;}
.y3e{bottom:1179.180000px;}
.y3d{bottom:1197.180000px;}
.hf{height:17.280000px;}
.h11{height:17.316000px;}
.h16{height:17.460000px;}
.h15{height:17.496000px;}
.h12{height:19.260000px;}
.h13{height:19.440000px;}
.h14{height:19.620000px;}
.hb{height:27.147656px;}
.hc{height:38.100586px;}
.he{height:39.420000px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h17{height:43.506914px;}
.h7{height:51.706406px;}
.h3{height:52.590937px;}
.ha{height:53.224453px;}
.h5{height:55.987031px;}
.h10{height:61.380000px;}
.h8{height:67.565039px;}
.hd{height:67.824844px;}
.h4{height:90.319219px;}
.h2{height:121.716000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:69.876000px;}
.w18{width:70.020000px;}
.w7{width:70.236000px;}
.w15{width:83.880000px;}
.w17{width:83.916000px;}
.w16{width:84.096000px;}
.w13{width:84.276000px;}
.w12{width:84.420000px;}
.w10{width:84.600000px;}
.w11{width:95.256000px;}
.wb{width:96.660000px;}
.wc{width:98.136000px;}
.wd{width:108.000000px;}
.w2{width:116.676000px;}
.w9{width:122.760000px;}
.w4{width:167.610000px;}
.w14{width:171.750000px;}
.we{width:178.590000px;}
.w8{width:195.870000px;}
.wf{width:211.710000px;}
.w6{width:287.310000px;}
.w3{width:500.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x18{left:9.000000px;}
.x20{left:10.080000px;}
.x1c{left:11.520000px;}
.x4{left:13.500000px;}
.x14{left:18.000000px;}
.xb{left:19.260000px;}
.xd{left:32.040000px;}
.x6{left:36.720000px;}
.x3{left:47.016000px;}
.xf{left:52.919987px;}
.x1{left:54.000000px;}
.xe{left:59.579987px;}
.x9{left:76.500000px;}
.x28{left:80.999987px;}
.x2{left:97.230000px;}
.x10{left:107.676000px;}
.x8{left:120.285000px;}
.x19{left:122.436000px;}
.xc{left:148.170000px;}
.x22{left:155.910000px;}
.x21{left:162.029987px;}
.x5{left:170.670000px;}
.x7{left:201.645000px;}
.x17{left:216.390000px;}
.x23{left:328.395000px;}
.x1a{left:334.875000px;}
.x12{left:395.895000px;}
.x24{left:412.995000px;}
.x1b{left:420.195000px;}
.x13{left:466.125000px;}
.x25{left:497.805000px;}
.x1d{left:516.165000px;}
.x16{left:563.865000px;}
.x26{left:582.405000px;}
.x1e{left:601.305000px;}
.x15{left:662.730000px;}
.x27{left:667.230000px;}
.xa{left:670.830000px;}
.x1f{left:686.310000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.125333pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.058667pt;}
.lse{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.183467pt;}
.ls0{letter-spacing:0.207360pt;}
.lsc{letter-spacing:0.320000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.ws0{word-spacing:-15.838720pt;}
.ws1{word-spacing:-15.713387pt;}
.ws3{word-spacing:-14.837120pt;}
.ws2{word-spacing:-14.661120pt;}
.ws8{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.280000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-1270.952960pt;}
._4{margin-left:-966.671360pt;}
._6{margin-left:-543.088640pt;}
._7{margin-left:-488.921813pt;}
._3{margin-left:-415.623680pt;}
._1{margin-left:-373.296640pt;}
._13{margin-left:-4.112000pt;}
._10{margin-left:-3.143680pt;}
._f{margin-left:-1.962240pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.415680pt;}
._b{width:2.561707pt;}
._a{width:3.452800pt;}
._9{width:4.400640pt;}
._c{width:5.604480pt;}
._14{width:6.897280pt;}
._e{width:8.074240pt;}
._d{width:9.296000pt;}
._12{width:10.517760pt;}
._11{width:11.527040pt;}
._19{width:14.254720pt;}
._18{width:15.978240pt;}
._16{width:17.343787pt;}
._15{width:18.485760pt;}
._8{width:24.259200pt;}
._17{width:31.144960pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:2.880000pt;}
.y7d{bottom:3.040000pt;}
.y7f{bottom:3.200000pt;}
.y6f{bottom:4.640000pt;}
.y75{bottom:4.800000pt;}
.y71{bottom:4.960000pt;}
.yb{bottom:5.440000pt;}
.ya{bottom:7.200000pt;}
.y54{bottom:12.800000pt;}
.y59{bottom:22.400000pt;}
.y57{bottom:22.560000pt;}
.y6{bottom:23.200000pt;}
.y9{bottom:28.800000pt;}
.y5{bottom:40.800000pt;}
.y8{bottom:52.666667pt;}
.yd{bottom:53.280000pt;}
.y4{bottom:58.426667pt;}
.y7a{bottom:73.600000pt;}
.yd5{bottom:73.920000pt;}
.y3{bottom:76.026667pt;}
.ya5{bottom:79.360000pt;}
.y7{bottom:83.066667pt;}
.yd4{bottom:89.280000pt;}
.y79{bottom:91.200000pt;}
.y2{bottom:93.626667pt;}
.ya4{bottom:96.960000pt;}
.y3c{bottom:99.360000pt;}
.yd3{bottom:104.480000pt;}
.y78{bottom:108.960000pt;}
.ya3{bottom:114.560000pt;}
.y3b{bottom:116.960000pt;}
.yd2{bottom:119.840000pt;}
.y77{bottom:126.560000pt;}
.ya2{bottom:132.320000pt;}
.y3a{bottom:134.560000pt;}
.yd1{bottom:137.466667pt;}
.y76{bottom:144.186667pt;}
.ya1{bottom:149.946667pt;}
.y39{bottom:152.186667pt;}
.yd0{bottom:155.226667pt;}
.y74{bottom:157.306667pt;}
.ya0{bottom:167.546667pt;}
.y38{bottom:169.946667pt;}
.ycf{bottom:172.826667pt;}
.y73{bottom:178.906667pt;}
.y9f{bottom:185.146667pt;}
.y37{bottom:187.546667pt;}
.yce{bottom:188.186667pt;}
.y72{bottom:200.186667pt;}
.y9e{bottom:202.746667pt;}
.ycd{bottom:203.546667pt;}
.y36{bottom:205.146667pt;}
.ycc{bottom:218.746667pt;}
.y9d{bottom:220.506667pt;}
.y70{bottom:221.786667pt;}
.y35{bottom:222.746667pt;}
.ycb{bottom:236.346667pt;}
.y9c{bottom:238.106667pt;}
.y34{bottom:240.346667pt;}
.y6e{bottom:243.386667pt;}
.yca{bottom:254.106667pt;}
.y9b{bottom:255.706667pt;}
.y33{bottom:258.106667pt;}
.y6d{bottom:269.946667pt;}
.yc9{bottom:271.706667pt;}
.y9a{bottom:273.306667pt;}
.y32{bottom:275.706667pt;}
.y6c{bottom:287.546667pt;}
.yc8{bottom:289.306667pt;}
.y99{bottom:290.906667pt;}
.y31{bottom:293.306667pt;}
.y6b{bottom:305.146667pt;}
.yc7{bottom:306.906667pt;}
.y98{bottom:308.666667pt;}
.y30{bottom:310.906667pt;}
.y6a{bottom:322.906667pt;}
.yc6{bottom:324.506667pt;}
.y97{bottom:326.266667pt;}
.y2f{bottom:328.506667pt;}
.y69{bottom:340.506667pt;}
.yc5{bottom:342.266667pt;}
.y96{bottom:343.866667pt;}
.y2e{bottom:346.266667pt;}
.y68{bottom:358.146667pt;}
.yc4{bottom:359.906667pt;}
.y95{bottom:361.506667pt;}
.y2d{bottom:363.906667pt;}
.y67{bottom:375.746667pt;}
.yc3{bottom:377.506667pt;}
.y94{bottom:379.106667pt;}
.y2c{bottom:381.506667pt;}
.yc2{bottom:392.866667pt;}
.y66{bottom:393.346667pt;}
.y93{bottom:396.866667pt;}
.y2b{bottom:399.106667pt;}
.yc1{bottom:408.226667pt;}
.y65{bottom:411.106667pt;}
.y92{bottom:414.466667pt;}
.y2a{bottom:416.706667pt;}
.yc0{bottom:425.826667pt;}
.y64{bottom:428.706667pt;}
.y91{bottom:432.066667pt;}
.y29{bottom:434.466667pt;}
.ybf{bottom:443.426667pt;}
.y63{bottom:446.306667pt;}
.y90{bottom:449.666667pt;}
.y28{bottom:452.066667pt;}
.ybe{bottom:461.026667pt;}
.y62{bottom:463.906667pt;}
.y8f{bottom:467.266667pt;}
.y27{bottom:469.666667pt;}
.ybd{bottom:478.626667pt;}
.y61{bottom:481.506667pt;}
.y8e{bottom:485.026667pt;}
.y26{bottom:487.266667pt;}
.ybc{bottom:496.386667pt;}
.y60{bottom:499.266667pt;}
.y8d{bottom:502.626667pt;}
.y25{bottom:504.866667pt;}
.ybb{bottom:513.986667pt;}
.y5f{bottom:516.866667pt;}
.y8c{bottom:520.226667pt;}
.y24{bottom:522.626667pt;}
.yba{bottom:531.586667pt;}
.y5e{bottom:534.466667pt;}
.y8b{bottom:537.826667pt;}
.y23{bottom:542.146667pt;}
.yb9{bottom:549.186667pt;}
.y5d{bottom:552.066667pt;}
.y8a{bottom:555.426667pt;}
.y22{bottom:559.746667pt;}
.y5c{bottom:565.186667pt;}
.yb8{bottom:566.786667pt;}
.y89{bottom:573.186667pt;}
.y21{bottom:577.533333pt;}
.yb7{bottom:584.573333pt;}
.y58{bottom:584.893333pt;}
.y88{bottom:590.813333pt;}
.y20{bottom:595.133333pt;}
.yb6{bottom:602.173333pt;}
.y5b{bottom:604.413333pt;}
.y87{bottom:608.413333pt;}
.y1f{bottom:612.733333pt;}
.yb5{bottom:619.773333pt;}
.y5a{bottom:624.093333pt;}
.y86{bottom:626.013333pt;}
.y1e{bottom:630.333333pt;}
.yb4{bottom:637.373333pt;}
.y53{bottom:643.613333pt;}
.y1d{bottom:647.933333pt;}
.yb3{bottom:654.973333pt;}
.y85{bottom:661.373333pt;}
.y55{bottom:663.293333pt;}
.y1c{bottom:665.693333pt;}
.yb2{bottom:672.733333pt;}
.y84{bottom:678.973333pt;}
.y1b{bottom:683.293333pt;}
.y52{bottom:687.933333pt;}
.yb1{bottom:690.333333pt;}
.y83{bottom:696.573333pt;}
.y1a{bottom:700.893333pt;}
.y51{bottom:705.693333pt;}
.yb0{bottom:707.933333pt;}
.y82{bottom:714.173333pt;}
.y19{bottom:718.493333pt;}
.y50{bottom:723.293333pt;}
.yaf{bottom:725.533333pt;}
.y81{bottom:731.773333pt;}
.y18{bottom:736.093333pt;}
.y4f{bottom:740.893333pt;}
.yae{bottom:743.133333pt;}
.y80{bottom:745.053333pt;}
.y17{bottom:753.693333pt;}
.y4e{bottom:758.493333pt;}
.yad{bottom:760.893333pt;}
.y7e{bottom:764.733333pt;}
.y16{bottom:773.373333pt;}
.y4d{bottom:776.093333pt;}
.yac{bottom:778.493333pt;}
.y7c{bottom:784.573333pt;}
.y15{bottom:791.133333pt;}
.y4c{bottom:793.853333pt;}
.yab{bottom:796.093333pt;}
.y7b{bottom:804.293333pt;}
.y14{bottom:808.773333pt;}
.y4b{bottom:811.493333pt;}
.yaa{bottom:813.733333pt;}
.y13{bottom:826.373333pt;}
.y4a{bottom:829.093333pt;}
.ya9{bottom:831.333333pt;}
.y49{bottom:846.693333pt;}
.y12{bottom:848.613333pt;}
.ya8{bottom:849.093333pt;}
.y11{bottom:862.053333pt;}
.y48{bottom:864.293333pt;}
.ya7{bottom:866.693333pt;}
.y10{bottom:881.093333pt;}
.y47{bottom:882.053333pt;}
.ya6{bottom:884.293333pt;}
.y46{bottom:899.653333pt;}
.yf{bottom:901.893333pt;}
.y45{bottom:917.253333pt;}
.ye{bottom:930.053333pt;}
.y44{bottom:934.853333pt;}
.y43{bottom:952.453333pt;}
.yc{bottom:952.773333pt;}
.y1{bottom:967.173333pt;}
.y42{bottom:970.213333pt;}
.y41{bottom:987.813333pt;}
.y40{bottom:1005.413333pt;}
.y3f{bottom:1023.040000pt;}
.y3e{bottom:1048.160000pt;}
.y3d{bottom:1064.160000pt;}
.hf{height:15.360000pt;}
.h11{height:15.392000pt;}
.h16{height:15.520000pt;}
.h15{height:15.552000pt;}
.h12{height:17.120000pt;}
.h13{height:17.280000pt;}
.h14{height:17.440000pt;}
.hb{height:24.131250pt;}
.hc{height:33.867188pt;}
.he{height:35.040000pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h17{height:38.672812pt;}
.h7{height:45.961250pt;}
.h3{height:46.747500pt;}
.ha{height:47.310625pt;}
.h5{height:49.766250pt;}
.h10{height:54.560000pt;}
.h8{height:60.057813pt;}
.hd{height:60.288750pt;}
.h4{height:80.283750pt;}
.h2{height:108.192000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:62.112000pt;}
.w18{width:62.240000pt;}
.w7{width:62.432000pt;}
.w15{width:74.560000pt;}
.w17{width:74.592000pt;}
.w16{width:74.752000pt;}
.w13{width:74.912000pt;}
.w12{width:75.040000pt;}
.w10{width:75.200000pt;}
.w11{width:84.672000pt;}
.wb{width:85.920000pt;}
.wc{width:87.232000pt;}
.wd{width:96.000000pt;}
.w2{width:103.712000pt;}
.w9{width:109.120000pt;}
.w4{width:148.986667pt;}
.w14{width:152.666667pt;}
.we{width:158.746667pt;}
.w8{width:174.106667pt;}
.wf{width:188.186667pt;}
.w6{width:255.386667pt;}
.w3{width:444.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x18{left:8.000000pt;}
.x20{left:8.960000pt;}
.x1c{left:10.240000pt;}
.x4{left:12.000000pt;}
.x14{left:16.000000pt;}
.xb{left:17.120000pt;}
.xd{left:28.480000pt;}
.x6{left:32.640000pt;}
.x3{left:41.792000pt;}
.xf{left:47.039988pt;}
.x1{left:48.000000pt;}
.xe{left:52.959988pt;}
.x9{left:68.000000pt;}
.x28{left:71.999988pt;}
.x2{left:86.426667pt;}
.x10{left:95.712000pt;}
.x8{left:106.920000pt;}
.x19{left:108.832000pt;}
.xc{left:131.706667pt;}
.x22{left:138.586667pt;}
.x21{left:144.026655pt;}
.x5{left:151.706667pt;}
.x7{left:179.240000pt;}
.x17{left:192.346667pt;}
.x23{left:291.906667pt;}
.x1a{left:297.666667pt;}
.x12{left:351.906667pt;}
.x24{left:367.106667pt;}
.x1b{left:373.506667pt;}
.x13{left:414.333333pt;}
.x25{left:442.493333pt;}
.x1d{left:458.813333pt;}
.x16{left:501.213333pt;}
.x26{left:517.693333pt;}
.x1e{left:534.493333pt;}
.x15{left:589.093333pt;}
.x27{left:593.093333pt;}
.xa{left:596.293333pt;}
.x1f{left:610.053333pt;}
}




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