
    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_d55df2cdafbb7fa1edc0a9c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_719e6f31066062c07505bf3c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_399135b8ac3feeba9164be87.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_e4f39732087813d7fe409f5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_30c523c758fd66cc0300daf3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_31f17184691687412a12961f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_1eacea47f6e6eb7325823f77.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_cf5b54b838ee9f69dcdff9c4.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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls9{letter-spacing:-1.740000px;}
.ls6{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.480000px;}
.ls10{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.120000px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.384000px;}
.lsb{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.600000px;}
.lsd{letter-spacing:5.400000px;}
.lsf{letter-spacing:10.140000px;}
.lse{letter-spacing:10.200000px;}
.ls13{letter-spacing:15.720000px;}
.ls12{letter-spacing:45.720000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws0{word-spacing:-15.204000px;}
.ws2{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.880000px;}
.ws7{word-spacing:-14.760000px;}
.ws4{word-spacing:-14.100000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-11.136000px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-2.244000px;}
._1{margin-left:-1.242000px;}
._0{width:1.122000px;}
._5{width:2.730000px;}
._2{width:4.254000px;}
._b{width:5.298000px;}
._6{width:6.300000px;}
._d{width:7.980000px;}
._8{width:9.780000px;}
._7{width:11.202000px;}
._9{width:12.762000px;}
._c{width:13.986000px;}
._a{width:16.500000px;}
._f{width:17.658000px;}
._e{width:19.242000px;}
._14{width:21.240000px;}
._13{width:22.380000px;}
._16{width:24.042000px;}
._11{width:25.260000px;}
._12{width:26.640000px;}
._10{width:27.774000px;}
._3{width:336.180000px;}
._4{width:996.300000px;}
.fc6{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc7{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(31,73,125);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs7{font-size:6.000000px;}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y42{bottom:10.545000px;}
.y5{bottom:12.337500px;}
.y41{bottom:28.545000px;}
.y4{bottom:46.800000px;}
.y40{bottom:48.045000px;}
.y1{bottom:57.037500px;}
.y3f{bottom:62.745000px;}
.y44{bottom:74.137500px;}
.y3e{bottom:79.845000px;}
.y3{bottom:81.337500px;}
.y3d{bottom:97.245000px;}
.yab{bottom:111.637500px;}
.y3c{bottom:114.345000px;}
.y32{bottom:118.237500px;}
.y7a{bottom:122.137500px;}
.yaa{bottom:128.737500px;}
.y3b{bottom:131.745000px;}
.y31{bottom:135.337500px;}
.y79{bottom:139.237500px;}
.ya9{bottom:146.137500px;}
.y3a{bottom:148.845000px;}
.y30{bottom:152.730000px;}
.y78{bottom:156.645000px;}
.ydf{bottom:157.830000px;}
.ya8{bottom:163.245000px;}
.y39{bottom:166.245000px;}
.y2f{bottom:169.845000px;}
.y77{bottom:173.745000px;}
.yde{bottom:174.930000px;}
.ya7{bottom:180.675000px;}
.y38{bottom:183.390000px;}
.y2e{bottom:187.275000px;}
.ydd{bottom:192.375000px;}
.ya6{bottom:197.775000px;}
.y37{bottom:200.775000px;}
.y76{bottom:202.875000px;}
.y2d{bottom:204.375000px;}
.ydc{bottom:209.475000px;}
.ya5{bottom:215.175000px;}
.y36{bottom:217.890000px;}
.y75{bottom:220.275000px;}
.y2c{bottom:221.775000px;}
.ydb{bottom:226.875000px;}
.ya4{bottom:232.275000px;}
.y35{bottom:235.275000px;}
.y74{bottom:237.675000px;}
.y2b{bottom:238.875000px;}
.yda{bottom:243.975000px;}
.ya3{bottom:249.675000px;}
.y34{bottom:252.990000px;}
.y73{bottom:254.775000px;}
.y2a{bottom:256.275000px;}
.yd9{bottom:261.375000px;}
.ya2{bottom:266.775000px;}
.y72{bottom:272.175000px;}
.y29{bottom:273.375000px;}
.yd8{bottom:278.475000px;}
.ya1{bottom:284.175000px;}
.yd7{bottom:295.875000px;}
.y71{bottom:300.975000px;}
.ya0{bottom:301.275000px;}
.y28{bottom:305.475000px;}
.yd6{bottom:312.975000px;}
.y70{bottom:318.675000px;}
.y27{bottom:322.875000px;}
.yd5{bottom:330.375000px;}
.y6f{bottom:335.775000px;}
.y26{bottom:340.275000px;}
.yd4{bottom:347.505000px;}
.y6e{bottom:353.205000px;}
.y25{bottom:357.405000px;}
.yd3{bottom:364.905000px;}
.y6d{bottom:370.320000px;}
.yd2{bottom:382.020000px;}
.y9f{bottom:387.705000px;}
.y24{bottom:389.520000px;}
.y6c{bottom:399.420000px;}
.y9e{bottom:404.820000px;}
.y23{bottom:406.920000px;}
.yd1{bottom:416.505000px;}
.y6b{bottom:416.820000px;}
.y9d{bottom:422.505000px;}
.y22{bottom:424.620000px;}
.yd0{bottom:433.920000px;}
.y6a{bottom:434.205000px;}
.y21{bottom:445.005000px;}
.ycf{bottom:451.005000px;}
.y69{bottom:451.320000px;}
.y9c{bottom:457.620000px;}
.y20{bottom:458.820000px;}
.yce{bottom:468.420000px;}
.y68{bottom:468.705000px;}
.y9b{bottom:475.005000px;}
.ycd{bottom:485.505000px;}
.y67{bottom:485.820000px;}
.y9a{bottom:492.420000px;}
.ycc{bottom:502.920000px;}
.y66{bottom:503.220000px;}
.y33{bottom:508.605000px;}
.y99{bottom:509.505000px;}
.ycb{bottom:520.050000px;}
.y65{bottom:520.350000px;}
.y98{bottom:526.950000px;}
.yca{bottom:537.450000px;}
.y64{bottom:537.750000px;}
.y97{bottom:544.050000px;}
.y63{bottom:554.850000px;}
.yc9{bottom:555.150000px;}
.y96{bottom:561.450000px;}
.y62{bottom:572.250000px;}
.yc8{bottom:574.650000px;}
.y95{bottom:578.550000px;}
.yc7{bottom:589.050000px;}
.y61{bottom:589.350000px;}
.y94{bottom:595.950000px;}
.yc6{bottom:606.450000px;}
.y60{bottom:606.750000px;}
.y93{bottom:613.050000px;}
.yc5{bottom:623.550000px;}
.y5f{bottom:623.850000px;}
.y92{bottom:630.450000px;}
.yc4{bottom:640.950000px;}
.y5e{bottom:652.950000px;}
.yc3{bottom:658.050000px;}
.y91{bottom:662.250000px;}
.y5d{bottom:670.350000px;}
.yc2{bottom:675.750000px;}
.y90{bottom:679.950000px;}
.y5c{bottom:687.780000px;}
.yc1{bottom:695.295000px;}
.y8f{bottom:697.095000px;}
.y5b{bottom:704.880000px;}
.yc0{bottom:709.980000px;}
.y8e{bottom:714.495000px;}
.y5a{bottom:722.295000px;}
.ybf{bottom:727.080000px;}
.y8d{bottom:731.595000px;}
.y59{bottom:739.395000px;}
.ybe{bottom:744.495000px;}
.y8c{bottom:748.980000px;}
.y58{bottom:756.780000px;}
.ybd{bottom:761.595000px;}
.y8b{bottom:766.080000px;}
.y57{bottom:773.880000px;}
.ybc{bottom:778.980000px;}
.y8a{bottom:783.495000px;}
.y56{bottom:791.295000px;}
.y1f{bottom:793.080000px;}
.ybb{bottom:796.080000px;}
.y89{bottom:800.580000px;}
.y55{bottom:808.395000px;}
.y1e{bottom:813.195000px;}
.yba{bottom:813.495000px;}
.y88{bottom:817.980000px;}
.y1d{bottom:830.580000px;}
.yb9{bottom:831.195000px;}
.y87{bottom:835.080000px;}
.y54{bottom:837.495000px;}
.ye4{bottom:847.995000px;}
.y1c{bottom:850.725000px;}
.y86{bottom:852.525000px;}
.y53{bottom:854.925000px;}
.yb8{bottom:865.125000px;}
.y85{bottom:869.625000px;}
.y1b{bottom:870.525000px;}
.y52{bottom:872.325000px;}
.yb7{bottom:882.525000px;}
.y84{bottom:887.025000px;}
.y1a{bottom:889.125000px;}
.y51{bottom:889.425000px;}
.yb6{bottom:899.625000px;}
.y83{bottom:904.125000px;}
.y50{bottom:906.825000px;}
.y19{bottom:913.125000px;}
.yb5{bottom:917.025000px;}
.y82{bottom:921.525000px;}
.y4f{bottom:923.925000px;}
.y18{bottom:925.425000px;}
.yb4{bottom:934.125000px;}
.y81{bottom:938.625000px;}
.y4e{bottom:941.325000px;}
.y17{bottom:947.925000px;}
.ye3{bottom:951.525000px;}
.yb3{bottom:951.825000px;}
.y80{bottom:956.025000px;}
.y16{bottom:959.025000px;}
.ye2{bottom:968.625000px;}
.y4d{bottom:970.125000px;}
.yb2{bottom:971.325000px;}
.y15{bottom:973.725000px;}
.yb1{bottom:986.025000px;}
.y4c{bottom:987.825000px;}
.y14{bottom:991.425000px;}
.yb0{bottom:1003.125000px;}
.y4b{bottom:1004.925000px;}
.y7f{bottom:1005.525000px;}
.y13{bottom:1012.125000px;}
.yaf{bottom:1020.570000px;}
.y4a{bottom:1022.370000px;}
.y7e{bottom:1022.670000px;}
.y12{bottom:1029.255000px;}
.y11{bottom:1031.670000px;}
.y10{bottom:1036.755000px;}
.yae{bottom:1037.670000px;}
.y49{bottom:1040.070000px;}
.yd{bottom:1040.955000px;}
.ye1{bottom:1055.070000px;}
.yad{bottom:1055.370000px;}
.y7d{bottom:1057.170000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y48{bottom:1071.870000px;}
.ye0{bottom:1072.170000px;}
.y7c{bottom:1074.570000px;}
.yac{bottom:1074.870000px;}
.ya{bottom:1083.570000px;}
.y47{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y7b{bottom:1106.370000px;}
.y46{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y45{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y6{bottom:1141.170000px;}
.y43{bottom:1196.400000px;}
.hc{height:4.189453px;}
.h9{height:8.378906px;}
.hb{height:12.568359px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.hf{height:27.650391px;}
.he{height:33.515625px;}
.h7{height:33.867188px;}
.h16{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.h11{height:38.100586px;}
.h10{height:41.894531px;}
.h4{height:42.333984px;}
.h18{height:43.681641px;}
.h17{height:44.507812px;}
.hd{height:49.250391px;}
.h13{height:49.453125px;}
.h6{height:50.800781px;}
.h15{height:51.996094px;}
.h12{height:59.343750px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h14{height:269.775000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:243.975000px;}
.w5{width:483.450000px;}
.w7{width:726.825000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.xe{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x1{left:81.037487px;}
.x7{left:83.137487px;}
.xc{left:107.445000px;}
.x8{left:153.629987px;}
.xa{left:241.567500px;}
.x5{left:388.319987px;}
.xf{left:546.779987px;}
.xb{left:566.280000px;}
.x6{left:695.624987px;}
.xd{left:810.254987px;}
.x9{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls9{letter-spacing:-1.546667pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.341333pt;}
.lsb{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.533333pt;}
.lsd{letter-spacing:4.800000pt;}
.lsf{letter-spacing:9.013333pt;}
.lse{letter-spacing:9.066667pt;}
.ls13{letter-spacing:13.973333pt;}
.ls12{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws0{word-spacing:-13.514667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws8{word-spacing:-13.226667pt;}
.ws7{word-spacing:-13.120000pt;}
.ws4{word-spacing:-12.533333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-9.898667pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-1.994667pt;}
._1{margin-left:-1.104000pt;}
._0{width:0.997333pt;}
._5{width:2.426667pt;}
._2{width:3.781333pt;}
._b{width:4.709333pt;}
._6{width:5.600000pt;}
._d{width:7.093333pt;}
._8{width:8.693333pt;}
._7{width:9.957333pt;}
._9{width:11.344000pt;}
._c{width:12.432000pt;}
._a{width:14.666667pt;}
._f{width:15.696000pt;}
._e{width:17.104000pt;}
._14{width:18.880000pt;}
._13{width:19.893333pt;}
._16{width:21.370667pt;}
._11{width:22.453333pt;}
._12{width:23.680000pt;}
._10{width:24.688000pt;}
._3{width:298.826667pt;}
._4{width:885.600000pt;}
.fs7{font-size:5.333333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y42{bottom:9.373333pt;}
.y5{bottom:10.966667pt;}
.y41{bottom:25.373333pt;}
.y4{bottom:41.600000pt;}
.y40{bottom:42.706667pt;}
.y1{bottom:50.700000pt;}
.y3f{bottom:55.773333pt;}
.y44{bottom:65.900000pt;}
.y3e{bottom:70.973333pt;}
.y3{bottom:72.300000pt;}
.y3d{bottom:86.440000pt;}
.yab{bottom:99.233333pt;}
.y3c{bottom:101.640000pt;}
.y32{bottom:105.100000pt;}
.y7a{bottom:108.566667pt;}
.yaa{bottom:114.433333pt;}
.y3b{bottom:117.106667pt;}
.y31{bottom:120.300000pt;}
.y79{bottom:123.766667pt;}
.ya9{bottom:129.900000pt;}
.y3a{bottom:132.306667pt;}
.y30{bottom:135.760000pt;}
.y78{bottom:139.240000pt;}
.ydf{bottom:140.293333pt;}
.ya8{bottom:145.106667pt;}
.y39{bottom:147.773333pt;}
.y2f{bottom:150.973333pt;}
.y77{bottom:154.440000pt;}
.yde{bottom:155.493333pt;}
.ya7{bottom:160.600000pt;}
.y38{bottom:163.013333pt;}
.y2e{bottom:166.466667pt;}
.ydd{bottom:171.000000pt;}
.ya6{bottom:175.800000pt;}
.y37{bottom:178.466667pt;}
.y76{bottom:180.333333pt;}
.y2d{bottom:181.666667pt;}
.ydc{bottom:186.200000pt;}
.ya5{bottom:191.266667pt;}
.y36{bottom:193.680000pt;}
.y75{bottom:195.800000pt;}
.y2c{bottom:197.133333pt;}
.ydb{bottom:201.666667pt;}
.ya4{bottom:206.466667pt;}
.y35{bottom:209.133333pt;}
.y74{bottom:211.266667pt;}
.y2b{bottom:212.333333pt;}
.yda{bottom:216.866667pt;}
.ya3{bottom:221.933333pt;}
.y34{bottom:224.880000pt;}
.y73{bottom:226.466667pt;}
.y2a{bottom:227.800000pt;}
.yd9{bottom:232.333333pt;}
.ya2{bottom:237.133333pt;}
.y72{bottom:241.933333pt;}
.y29{bottom:243.000000pt;}
.yd8{bottom:247.533333pt;}
.ya1{bottom:252.600000pt;}
.yd7{bottom:263.000000pt;}
.y71{bottom:267.533333pt;}
.ya0{bottom:267.800000pt;}
.y28{bottom:271.533333pt;}
.yd6{bottom:278.200000pt;}
.y70{bottom:283.266667pt;}
.y27{bottom:287.000000pt;}
.yd5{bottom:293.666667pt;}
.y6f{bottom:298.466667pt;}
.y26{bottom:302.466667pt;}
.yd4{bottom:308.893333pt;}
.y6e{bottom:313.960000pt;}
.y25{bottom:317.693333pt;}
.yd3{bottom:324.360000pt;}
.y6d{bottom:329.173333pt;}
.yd2{bottom:339.573333pt;}
.y9f{bottom:344.626667pt;}
.y24{bottom:346.240000pt;}
.y6c{bottom:355.040000pt;}
.y9e{bottom:359.840000pt;}
.y23{bottom:361.706667pt;}
.yd1{bottom:370.226667pt;}
.y6b{bottom:370.506667pt;}
.y9d{bottom:375.560000pt;}
.y22{bottom:377.440000pt;}
.yd0{bottom:385.706667pt;}
.y6a{bottom:385.960000pt;}
.y21{bottom:395.560000pt;}
.ycf{bottom:400.893333pt;}
.y69{bottom:401.173333pt;}
.y9c{bottom:406.773333pt;}
.y20{bottom:407.840000pt;}
.yce{bottom:416.373333pt;}
.y68{bottom:416.626667pt;}
.y9b{bottom:422.226667pt;}
.ycd{bottom:431.560000pt;}
.y67{bottom:431.840000pt;}
.y9a{bottom:437.706667pt;}
.ycc{bottom:447.040000pt;}
.y66{bottom:447.306667pt;}
.y33{bottom:452.093333pt;}
.y99{bottom:452.893333pt;}
.ycb{bottom:462.266667pt;}
.y65{bottom:462.533333pt;}
.y98{bottom:468.400000pt;}
.yca{bottom:477.733333pt;}
.y64{bottom:478.000000pt;}
.y97{bottom:483.600000pt;}
.y63{bottom:493.200000pt;}
.yc9{bottom:493.466667pt;}
.y96{bottom:499.066667pt;}
.y62{bottom:508.666667pt;}
.yc8{bottom:510.800000pt;}
.y95{bottom:514.266667pt;}
.yc7{bottom:523.600000pt;}
.y61{bottom:523.866667pt;}
.y94{bottom:529.733333pt;}
.yc6{bottom:539.066667pt;}
.y60{bottom:539.333333pt;}
.y93{bottom:544.933333pt;}
.yc5{bottom:554.266667pt;}
.y5f{bottom:554.533333pt;}
.y92{bottom:560.400000pt;}
.yc4{bottom:569.733333pt;}
.y5e{bottom:580.400000pt;}
.yc3{bottom:584.933333pt;}
.y91{bottom:588.666667pt;}
.y5d{bottom:595.866667pt;}
.yc2{bottom:600.666667pt;}
.y90{bottom:604.400000pt;}
.y5c{bottom:611.360000pt;}
.yc1{bottom:618.040000pt;}
.y8f{bottom:619.640000pt;}
.y5b{bottom:626.560000pt;}
.yc0{bottom:631.093333pt;}
.y8e{bottom:635.106667pt;}
.y5a{bottom:642.040000pt;}
.ybf{bottom:646.293333pt;}
.y8d{bottom:650.306667pt;}
.y59{bottom:657.240000pt;}
.ybe{bottom:661.773333pt;}
.y8c{bottom:665.760000pt;}
.y58{bottom:672.693333pt;}
.ybd{bottom:676.973333pt;}
.y8b{bottom:680.960000pt;}
.y57{bottom:687.893333pt;}
.ybc{bottom:692.426667pt;}
.y8a{bottom:696.440000pt;}
.y56{bottom:703.373333pt;}
.y1f{bottom:704.960000pt;}
.ybb{bottom:707.626667pt;}
.y89{bottom:711.626667pt;}
.y55{bottom:718.573333pt;}
.y1e{bottom:722.840000pt;}
.yba{bottom:723.106667pt;}
.y88{bottom:727.093333pt;}
.y1d{bottom:738.293333pt;}
.yb9{bottom:738.840000pt;}
.y87{bottom:742.293333pt;}
.y54{bottom:744.440000pt;}
.ye4{bottom:753.773333pt;}
.y1c{bottom:756.200000pt;}
.y86{bottom:757.800000pt;}
.y53{bottom:759.933333pt;}
.yb8{bottom:769.000000pt;}
.y85{bottom:773.000000pt;}
.y1b{bottom:773.800000pt;}
.y52{bottom:775.400000pt;}
.yb7{bottom:784.466667pt;}
.y84{bottom:788.466667pt;}
.y1a{bottom:790.333333pt;}
.y51{bottom:790.600000pt;}
.yb6{bottom:799.666667pt;}
.y83{bottom:803.666667pt;}
.y50{bottom:806.066667pt;}
.y19{bottom:811.666667pt;}
.yb5{bottom:815.133333pt;}
.y82{bottom:819.133333pt;}
.y4f{bottom:821.266667pt;}
.y18{bottom:822.600000pt;}
.yb4{bottom:830.333333pt;}
.y81{bottom:834.333333pt;}
.y4e{bottom:836.733333pt;}
.y17{bottom:842.600000pt;}
.ye3{bottom:845.800000pt;}
.yb3{bottom:846.066667pt;}
.y80{bottom:849.800000pt;}
.y16{bottom:852.466667pt;}
.ye2{bottom:861.000000pt;}
.y4d{bottom:862.333333pt;}
.yb2{bottom:863.400000pt;}
.y15{bottom:865.533333pt;}
.yb1{bottom:876.466667pt;}
.y4c{bottom:878.066667pt;}
.y14{bottom:881.266667pt;}
.yb0{bottom:891.666667pt;}
.y4b{bottom:893.266667pt;}
.y7f{bottom:893.800000pt;}
.y13{bottom:899.666667pt;}
.yaf{bottom:907.173333pt;}
.y4a{bottom:908.773333pt;}
.y7e{bottom:909.040000pt;}
.y12{bottom:914.893333pt;}
.y11{bottom:917.040000pt;}
.y10{bottom:921.560000pt;}
.yae{bottom:922.373333pt;}
.y49{bottom:924.506667pt;}
.yd{bottom:925.293333pt;}
.ye1{bottom:937.840000pt;}
.yad{bottom:938.106667pt;}
.y7d{bottom:939.706667pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y48{bottom:952.773333pt;}
.ye0{bottom:953.040000pt;}
.y7c{bottom:955.173333pt;}
.yac{bottom:955.440000pt;}
.ya{bottom:963.173333pt;}
.y47{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y7b{bottom:983.440000pt;}
.y46{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y45{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y6{bottom:1014.373333pt;}
.y43{bottom:1063.466667pt;}
.hc{height:3.723958pt;}
.h9{height:7.447917pt;}
.hb{height:11.171875pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.hf{height:24.578125pt;}
.he{height:29.791667pt;}
.h7{height:30.104167pt;}
.h16{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.h11{height:33.867188pt;}
.h10{height:37.239583pt;}
.h4{height:37.630208pt;}
.h18{height:38.828125pt;}
.h17{height:39.562500pt;}
.hd{height:43.778125pt;}
.h13{height:43.958333pt;}
.h6{height:45.156250pt;}
.h15{height:46.218750pt;}
.h12{height:52.750000pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h14{height:239.800000pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:216.866667pt;}
.w5{width:429.733333pt;}
.w7{width:646.066667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.xe{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x1{left:72.033322pt;}
.x7{left:73.899988pt;}
.xc{left:95.506667pt;}
.x8{left:136.559988pt;}
.xa{left:214.726667pt;}
.x5{left:345.173322pt;}
.xf{left:486.026655pt;}
.xb{left:503.360000pt;}
.x6{left:618.333322pt;}
.xd{left:720.226655pt;}
.x9{left:722.106655pt;}
}




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