
    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_bee55c1bc5584acf79cab75d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_e5222fe537be8fc57c42bb3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_182b24d7e8de3239895624d0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_294cfd274421f3bf0d3930ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a3dbedcd8382db3bb13b37b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_8ca1a2591dff10beda6ab16f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_9b668da8259aeeca92951f88.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_65fb976deda5dd330bb07573.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_18813a755a13858a4982ccb8.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-94.320000px;}
.v1{vertical-align:-84.240000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.690000px;}
.ls12{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.252720px;}
.ls1a{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.720000px;}
.ls14{letter-spacing:2.700000px;}
.lsb{letter-spacing:9.180000px;}
.ls2{letter-spacing:14.220000px;}
.ls15{letter-spacing:16.380000px;}
.ls16{letter-spacing:17.100000px;}
.ls17{letter-spacing:20.700000px;}
.ls1{letter-spacing:31.680000px;}
.ls18{letter-spacing:33.984000px;}
.lsd{letter-spacing:96.245280px;}
.ls0{letter-spacing:144.000000px;}
.ls7{letter-spacing:202.104000px;}
.lsa{letter-spacing:234.684000px;}
.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:-21.420000px;}
.ws9{word-spacing:-21.401400px;}
.wsa{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.370000px;}
.wsb{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.280000px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-2.266080px;}
._0{margin-left:-1.010880px;}
._1{width:1.202880px;}
._f{width:2.211840px;}
._13{width:3.689280px;}
._16{width:5.088000px;}
._10{width:6.480000px;}
._5{width:7.560000px;}
._8{width:8.832000px;}
._18{width:9.940320px;}
._4{width:11.448000px;}
._3{width:12.456000px;}
._e{width:13.464000px;}
._1e{width:14.488800px;}
._9{width:15.552000px;}
._a{width:16.809120px;}
._30{width:17.848080px;}
._1b{width:18.976800px;}
._2{width:20.424000px;}
._1d{width:22.941600px;}
._1c{width:24.056880px;}
._14{width:25.128000px;}
._15{width:26.616000px;}
._2b{width:28.257120px;}
._2c{width:29.615760px;}
._12{width:30.936000px;}
._11{width:32.186880px;}
._17{width:33.840000px;}
._2a{width:35.076240px;}
._23{width:36.223200px;}
._24{width:37.318320px;}
._31{width:38.666160px;}
._32{width:39.813600px;}
._27{width:40.940640px;}
._28{width:42.111600px;}
._d{width:47.808000px;}
._21{width:50.291280px;}
._22{width:51.792720px;}
._20{width:53.059680px;}
._1f{width:54.082080px;}
._6{width:60.984000px;}
._7{width:62.112000px;}
._19{width:63.772320px;}
._29{width:66.381120px;}
._2f{width:71.519760px;}
._2e{width:72.614880px;}
._33{width:74.738880px;}
._34{width:76.464000px;}
._c{width:88.250880px;}
._b{width:89.832000px;}
._35{width:134.162880px;}
._25{width:156.603840px;}
._26{width:191.340000px;}
._2d{width:234.684000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(7,57,118);}
.fc6{color:rgb(38,38,38);}
.fc5{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.252500px;}
.y6{bottom:3.960000px;}
.y47{bottom:4.140000px;}
.y6b{bottom:4.485000px;}
.y72{bottom:4.492500px;}
.y4c{bottom:4.500000px;}
.y3{bottom:23.983500px;}
.y6a{bottom:25.185000px;}
.y71{bottom:25.192500px;}
.y4b{bottom:25.200000px;}
.y80{bottom:25.230000px;}
.y60{bottom:30.630000px;}
.y2{bottom:31.716000px;}
.y70{bottom:45.886500px;}
.y4a{bottom:45.900000px;}
.y4e{bottom:45.930000px;}
.y5f{bottom:51.330000px;}
.y6f{bottom:66.586500px;}
.y49{bottom:66.600000px;}
.y69{bottom:66.630000px;}
.y59{bottom:86.436000px;}
.y6e{bottom:87.286500px;}
.y63{bottom:87.300000px;}
.y68{bottom:87.330000px;}
.y35{bottom:101.016000px;}
.y73{bottom:105.696000px;}
.y6d{bottom:107.986500px;}
.y62{bottom:108.000000px;}
.y67{bottom:108.030000px;}
.y85{bottom:113.436000px;}
.y58{bottom:114.156000px;}
.y6c{bottom:116.143500px;}
.y66{bottom:128.730000px;}
.y34{bottom:128.736000px;}
.y84{bottom:141.156000px;}
.y57{bottom:141.876000px;}
.y65{bottom:149.430000px;}
.y33{bottom:156.630000px;}
.y83{bottom:168.870000px;}
.y56{bottom:169.770000px;}
.y32{bottom:184.350000px;}
.y82{bottom:196.770000px;}
.y55{bottom:197.490000px;}
.y31{bottom:212.070000px;}
.y81{bottom:216.585000px;}
.y54{bottom:225.210000px;}
.y30{bottom:239.790000px;}
.y64{bottom:241.065000px;}
.y53{bottom:253.110000px;}
.y7f{bottom:258.705000px;}
.y2f{bottom:267.690000px;}
.y52{bottom:280.875000px;}
.ya1{bottom:289.515000px;}
.y2e{bottom:295.455000px;}
.y7e{bottom:300.855000px;}
.y51{bottom:308.595000px;}
.ya0{bottom:310.215000px;}
.y2d{bottom:323.175000px;}
.y9f{bottom:330.915000px;}
.y7d{bottom:342.975000px;}
.y2c{bottom:347.295000px;}
.y9e{bottom:351.615000px;}
.y50{bottom:359.895000px;}
.y4f{bottom:370.155000px;}
.y2b{bottom:370.875000px;}
.y9d{bottom:372.315000px;}
.y7c{bottom:385.095000px;}
.y2a{bottom:391.575000px;}
.y9c{bottom:393.015000px;}
.y61{bottom:407.415000px;}
.y29{bottom:412.275000px;}
.y9b{bottom:413.715000px;}
.y7b{bottom:415.335000px;}
.y28{bottom:432.975000px;}
.y9a{bottom:434.415000px;}
.y7a{bottom:443.055000px;}
.y27{bottom:453.675000px;}
.y99{bottom:455.115000px;}
.y79{bottom:470.775000px;}
.y26{bottom:474.375000px;}
.y98{bottom:475.455000px;}
.y25{bottom:495.075000px;}
.y97{bottom:496.875000px;}
.y78{bottom:498.675000px;}
.y24{bottom:515.775000px;}
.y4d{bottom:516.495000px;}
.y96{bottom:516.675000px;}
.y77{bottom:526.395000px;}
.y5e{bottom:532.335000px;}
.y23{bottom:536.475000px;}
.y95{bottom:544.395000px;}
.y76{bottom:554.115000px;}
.y22{bottom:556.845000px;}
.y94{bottom:572.145000px;}
.y21{bottom:577.905000px;}
.y48{bottom:579.345000px;}
.y75{bottom:582.045000px;}
.y20{bottom:598.605000px;}
.y93{bottom:600.045000px;}
.y5d{bottom:609.405000px;}
.y74{bottom:609.765000px;}
.y1f{bottom:619.305000px;}
.y92{bottom:627.765000px;}
.y5c{bottom:637.485000px;}
.y1e{bottom:640.005000px;}
.y91{bottom:655.485000px;}
.y1d{bottom:660.705000px;}
.y46{bottom:662.865000px;}
.y5b{bottom:665.205000px;}
.y1c{bottom:681.405000px;}
.y90{bottom:683.205000px;}
.y45{bottom:693.105000px;}
.y1b{bottom:702.105000px;}
.y8f{bottom:711.105000px;}
.y44{bottom:720.825000px;}
.y1a{bottom:722.805000px;}
.y8e{bottom:738.825000px;}
.y19{bottom:743.505000px;}
.y5a{bottom:748.185000px;}
.y43{bottom:748.545000px;}
.y18{bottom:764.205000px;}
.y8d{bottom:766.545000px;}
.y42{bottom:776.445000px;}
.y17{bottom:784.905000px;}
.y8c{bottom:794.265000px;}
.y41{bottom:804.165000px;}
.y16{bottom:805.245000px;}
.y8b{bottom:822.165000px;}
.y15{bottom:826.305000px;}
.y40{bottom:831.885000px;}
.y14{bottom:847.050000px;}
.y8a{bottom:849.930000px;}
.y3f{bottom:859.650000px;}
.y13{bottom:867.750000px;}
.y89{bottom:869.730000px;}
.y3e{bottom:887.550000px;}
.y12{bottom:888.450000px;}
.y11{bottom:909.150000px;}
.y88{bottom:911.850000px;}
.y3d{bottom:915.270000px;}
.y10{bottom:929.850000px;}
.y3c{bottom:942.990000px;}
.yf{bottom:950.550000px;}
.y87{bottom:953.970000px;}
.y3b{bottom:970.710000px;}
.ye{bottom:971.250000px;}
.yd{bottom:991.590000px;}
.y86{bottom:996.270000px;}
.y3a{bottom:998.610000px;}
.y39{bottom:1026.330000px;}
.yc{bottom:1033.350000px;}
.yb{bottom:1054.050000px;}
.ya{bottom:1074.750000px;}
.y38{bottom:1081.950000px;}
.y9{bottom:1095.090000px;}
.y37{bottom:1109.670000px;}
.y8{bottom:1115.790000px;}
.y7{bottom:1137.060000px;}
.y36{bottom:1137.420000px;}
.y1{bottom:1190.700000px;}
.y5{bottom:1237.500000px;}
.h18{height:20.685000px;}
.h3{height:20.692500px;}
.hb{height:20.700000px;}
.h5{height:23.220000px;}
.h12{height:40.985156px;}
.h19{height:41.385000px;}
.h1a{height:41.421000px;}
.h1b{height:47.344922px;}
.he{height:50.273438px;}
.h8{height:54.773438px;}
.ha{height:58.819922px;}
.h11{height:62.085000px;}
.hf{height:62.130000px;}
.h14{height:67.890000px;}
.h7{height:70.628906px;}
.hd{height:70.664062px;}
.h6{height:72.562500px;}
.h1c{height:74.004654px;}
.h9{height:82.635820px;}
.h2{height:82.676953px;}
.h10{height:82.785000px;}
.hc{height:82.800000px;}
.h4{height:84.898125px;}
.h13{height:86.585445px;}
.h15{height:124.185000px;}
.h17{height:124.192500px;}
.h16{height:165.615000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:36.885000px;}
.w3{width:36.900000px;}
.w2{width:75.780000px;}
.wa{width:158.760000px;}
.wc{width:166.695000px;}
.w5{width:173.548500px;}
.w7{width:181.650000px;}
.w6{width:181.815000px;}
.wb{width:185.430000px;}
.w10{width:215.128500px;}
.w8{width:232.755000px;}
.wf{width:233.115000px;}
.w11{width:233.850000px;}
.we{width:248.610000px;}
.wd{width:253.333500px;}
.w9{width:262.513500px;}
.w12{width:277.035000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.920000px;}
.x1b{left:9.180000px;}
.x1f{left:10.605000px;}
.x33{left:12.058500px;}
.x5{left:13.140000px;}
.x20{left:14.925000px;}
.x31{left:17.850000px;}
.x1c{left:19.605000px;}
.x23{left:21.420000px;}
.x21{left:22.500000px;}
.x13{left:24.660000px;}
.x38{left:26.130000px;}
.x3{left:27.360000px;}
.x3d{left:28.440000px;}
.x16{left:30.238500px;}
.x19{left:32.205000px;}
.x1e{left:33.658500px;}
.x2d{left:35.130000px;}
.x18{left:37.965000px;}
.x30{left:40.714500px;}
.x1a{left:42.120000px;}
.xf{left:43.414500px;}
.x24{left:45.754500px;}
.x2f{left:47.730000px;}
.x22{left:48.960000px;}
.x35{left:50.400000px;}
.x37{left:51.840000px;}
.x1{left:53.100000px;}
.x32{left:54.390000px;}
.x25{left:56.340000px;}
.x11{left:57.405000px;}
.x29{left:58.861500px;}
.xe{left:60.481500px;}
.x17{left:62.445000px;}
.x1d{left:63.525000px;}
.x3e{left:66.045000px;}
.x15{left:70.725000px;}
.x3c{left:77.565000px;}
.x34{left:79.054500px;}
.x7{left:80.100000px;}
.x3f{left:82.801500px;}
.x42{left:85.140000px;}
.x36{left:92.908500px;}
.x27{left:97.770000px;}
.x2a{left:102.988500px;}
.xc{left:106.236000px;}
.x10{left:234.765000px;}
.xb{left:257.070000px;}
.x40{left:298.875000px;}
.x9{left:308.955000px;}
.x2b{left:322.095000px;}
.x3a{left:332.355000px;}
.xa{left:338.475000px;}
.x28{left:400.935000px;}
.x2{left:406.695000px;}
.x12{left:417.315000px;}
.x4{left:420.015000px;}
.x8{left:446.475000px;}
.x2c{left:481.575000px;}
.x6{left:499.980000px;}
.x41{left:533.460000px;}
.x3b{left:581.700000px;}
.x14{left:599.880000px;}
.x2e{left:667.740000px;}
.xd{left:760.650000px;}
.x39{left:766.050000px;}
@media print{
.v2{vertical-align:-83.840000pt;}
.v1{vertical-align:-74.880000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.613333pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.224640pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls14{letter-spacing:2.400000pt;}
.lsb{letter-spacing:8.160000pt;}
.ls2{letter-spacing:12.640000pt;}
.ls15{letter-spacing:14.560000pt;}
.ls16{letter-spacing:15.200000pt;}
.ls17{letter-spacing:18.400000pt;}
.ls1{letter-spacing:28.160000pt;}
.ls18{letter-spacing:30.208000pt;}
.lsd{letter-spacing:85.551360pt;}
.ls0{letter-spacing:128.000000pt;}
.ls7{letter-spacing:179.648000pt;}
.lsa{letter-spacing:208.608000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws9{word-spacing:-19.023467pt;}
.wsa{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.106667pt;}
.wsb{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.360000pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-2.014293pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.069227pt;}
._f{width:1.966080pt;}
._13{width:3.279360pt;}
._16{width:4.522667pt;}
._10{width:5.760000pt;}
._5{width:6.720000pt;}
._8{width:7.850667pt;}
._18{width:8.835840pt;}
._4{width:10.176000pt;}
._3{width:11.072000pt;}
._e{width:11.968000pt;}
._1e{width:12.878933pt;}
._9{width:13.824000pt;}
._a{width:14.941440pt;}
._30{width:15.864960pt;}
._1b{width:16.868267pt;}
._2{width:18.154667pt;}
._1d{width:20.392533pt;}
._1c{width:21.383893pt;}
._14{width:22.336000pt;}
._15{width:23.658667pt;}
._2b{width:25.117440pt;}
._2c{width:26.325120pt;}
._12{width:27.498667pt;}
._11{width:28.610560pt;}
._17{width:30.080000pt;}
._2a{width:31.178880pt;}
._23{width:32.198400pt;}
._24{width:33.171840pt;}
._31{width:34.369920pt;}
._32{width:35.389867pt;}
._27{width:36.391680pt;}
._28{width:37.432533pt;}
._d{width:42.496000pt;}
._21{width:44.703360pt;}
._22{width:46.037973pt;}
._20{width:47.164160pt;}
._1f{width:48.072960pt;}
._6{width:54.208000pt;}
._7{width:55.210667pt;}
._19{width:56.686507pt;}
._29{width:59.005440pt;}
._2f{width:63.573120pt;}
._2e{width:64.546560pt;}
._33{width:66.434560pt;}
._34{width:67.968000pt;}
._c{width:78.445227pt;}
._b{width:79.850667pt;}
._35{width:119.255893pt;}
._25{width:139.203413pt;}
._26{width:170.080000pt;}
._2d{width:208.608000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.113333pt;}
.y6{bottom:3.520000pt;}
.y47{bottom:3.680000pt;}
.y6b{bottom:3.986667pt;}
.y72{bottom:3.993333pt;}
.y4c{bottom:4.000000pt;}
.y3{bottom:21.318667pt;}
.y6a{bottom:22.386667pt;}
.y71{bottom:22.393333pt;}
.y4b{bottom:22.400000pt;}
.y80{bottom:22.426667pt;}
.y60{bottom:27.226667pt;}
.y2{bottom:28.192000pt;}
.y70{bottom:40.788000pt;}
.y4a{bottom:40.800000pt;}
.y4e{bottom:40.826667pt;}
.y5f{bottom:45.626667pt;}
.y6f{bottom:59.188000pt;}
.y49{bottom:59.200000pt;}
.y69{bottom:59.226667pt;}
.y59{bottom:76.832000pt;}
.y6e{bottom:77.588000pt;}
.y63{bottom:77.600000pt;}
.y68{bottom:77.626667pt;}
.y35{bottom:89.792000pt;}
.y73{bottom:93.952000pt;}
.y6d{bottom:95.988000pt;}
.y62{bottom:96.000000pt;}
.y67{bottom:96.026667pt;}
.y85{bottom:100.832000pt;}
.y58{bottom:101.472000pt;}
.y6c{bottom:103.238667pt;}
.y66{bottom:114.426667pt;}
.y34{bottom:114.432000pt;}
.y84{bottom:125.472000pt;}
.y57{bottom:126.112000pt;}
.y65{bottom:132.826667pt;}
.y33{bottom:139.226667pt;}
.y83{bottom:150.106667pt;}
.y56{bottom:150.906667pt;}
.y32{bottom:163.866667pt;}
.y82{bottom:174.906667pt;}
.y55{bottom:175.546667pt;}
.y31{bottom:188.506667pt;}
.y81{bottom:192.520000pt;}
.y54{bottom:200.186667pt;}
.y30{bottom:213.146667pt;}
.y64{bottom:214.280000pt;}
.y53{bottom:224.986667pt;}
.y7f{bottom:229.960000pt;}
.y2f{bottom:237.946667pt;}
.y52{bottom:249.666667pt;}
.ya1{bottom:257.346667pt;}
.y2e{bottom:262.626667pt;}
.y7e{bottom:267.426667pt;}
.y51{bottom:274.306667pt;}
.ya0{bottom:275.746667pt;}
.y2d{bottom:287.266667pt;}
.y9f{bottom:294.146667pt;}
.y7d{bottom:304.866667pt;}
.y2c{bottom:308.706667pt;}
.y9e{bottom:312.546667pt;}
.y50{bottom:319.906667pt;}
.y4f{bottom:329.026667pt;}
.y2b{bottom:329.666667pt;}
.y9d{bottom:330.946667pt;}
.y7c{bottom:342.306667pt;}
.y2a{bottom:348.066667pt;}
.y9c{bottom:349.346667pt;}
.y61{bottom:362.146667pt;}
.y29{bottom:366.466667pt;}
.y9b{bottom:367.746667pt;}
.y7b{bottom:369.186667pt;}
.y28{bottom:384.866667pt;}
.y9a{bottom:386.146667pt;}
.y7a{bottom:393.826667pt;}
.y27{bottom:403.266667pt;}
.y99{bottom:404.546667pt;}
.y79{bottom:418.466667pt;}
.y26{bottom:421.666667pt;}
.y98{bottom:422.626667pt;}
.y25{bottom:440.066667pt;}
.y97{bottom:441.666667pt;}
.y78{bottom:443.266667pt;}
.y24{bottom:458.466667pt;}
.y4d{bottom:459.106667pt;}
.y96{bottom:459.266667pt;}
.y77{bottom:467.906667pt;}
.y5e{bottom:473.186667pt;}
.y23{bottom:476.866667pt;}
.y95{bottom:483.906667pt;}
.y76{bottom:492.546667pt;}
.y22{bottom:494.973333pt;}
.y94{bottom:508.573333pt;}
.y21{bottom:513.693333pt;}
.y48{bottom:514.973333pt;}
.y75{bottom:517.373333pt;}
.y20{bottom:532.093333pt;}
.y93{bottom:533.373333pt;}
.y5d{bottom:541.693333pt;}
.y74{bottom:542.013333pt;}
.y1f{bottom:550.493333pt;}
.y92{bottom:558.013333pt;}
.y5c{bottom:566.653333pt;}
.y1e{bottom:568.893333pt;}
.y91{bottom:582.653333pt;}
.y1d{bottom:587.293333pt;}
.y46{bottom:589.213333pt;}
.y5b{bottom:591.293333pt;}
.y1c{bottom:605.693333pt;}
.y90{bottom:607.293333pt;}
.y45{bottom:616.093333pt;}
.y1b{bottom:624.093333pt;}
.y8f{bottom:632.093333pt;}
.y44{bottom:640.733333pt;}
.y1a{bottom:642.493333pt;}
.y8e{bottom:656.733333pt;}
.y19{bottom:660.893333pt;}
.y5a{bottom:665.053333pt;}
.y43{bottom:665.373333pt;}
.y18{bottom:679.293333pt;}
.y8d{bottom:681.373333pt;}
.y42{bottom:690.173333pt;}
.y17{bottom:697.693333pt;}
.y8c{bottom:706.013333pt;}
.y41{bottom:714.813333pt;}
.y16{bottom:715.773333pt;}
.y8b{bottom:730.813333pt;}
.y15{bottom:734.493333pt;}
.y40{bottom:739.453333pt;}
.y14{bottom:752.933333pt;}
.y8a{bottom:755.493333pt;}
.y3f{bottom:764.133333pt;}
.y13{bottom:771.333333pt;}
.y89{bottom:773.093333pt;}
.y3e{bottom:788.933333pt;}
.y12{bottom:789.733333pt;}
.y11{bottom:808.133333pt;}
.y88{bottom:810.533333pt;}
.y3d{bottom:813.573333pt;}
.y10{bottom:826.533333pt;}
.y3c{bottom:838.213333pt;}
.yf{bottom:844.933333pt;}
.y87{bottom:847.973333pt;}
.y3b{bottom:862.853333pt;}
.ye{bottom:863.333333pt;}
.yd{bottom:881.413333pt;}
.y86{bottom:885.573333pt;}
.y3a{bottom:887.653333pt;}
.y39{bottom:912.293333pt;}
.yc{bottom:918.533333pt;}
.yb{bottom:936.933333pt;}
.ya{bottom:955.333333pt;}
.y38{bottom:961.733333pt;}
.y9{bottom:973.413333pt;}
.y37{bottom:986.373333pt;}
.y8{bottom:991.813333pt;}
.y7{bottom:1010.720000pt;}
.y36{bottom:1011.040000pt;}
.y1{bottom:1058.400000pt;}
.y5{bottom:1100.000000pt;}
.h18{height:18.386667pt;}
.h3{height:18.393333pt;}
.hb{height:18.400000pt;}
.h5{height:20.640000pt;}
.h12{height:36.431250pt;}
.h19{height:36.786667pt;}
.h1a{height:36.818667pt;}
.h1b{height:42.084375pt;}
.he{height:44.687500pt;}
.h8{height:48.687500pt;}
.ha{height:52.284375pt;}
.h11{height:55.186667pt;}
.hf{height:55.226667pt;}
.h14{height:60.346667pt;}
.h7{height:62.781250pt;}
.hd{height:62.812500pt;}
.h6{height:64.500000pt;}
.h1c{height:65.781915pt;}
.h9{height:73.454062pt;}
.h2{height:73.490625pt;}
.h10{height:73.586667pt;}
.hc{height:73.600000pt;}
.h4{height:75.465000pt;}
.h13{height:76.964840pt;}
.h15{height:110.386667pt;}
.h17{height:110.393333pt;}
.h16{height:147.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:32.786667pt;}
.w3{width:32.800000pt;}
.w2{width:67.360000pt;}
.wa{width:141.120000pt;}
.wc{width:148.173333pt;}
.w5{width:154.265333pt;}
.w7{width:161.466667pt;}
.w6{width:161.613333pt;}
.wb{width:164.826667pt;}
.w10{width:191.225333pt;}
.w8{width:206.893333pt;}
.wf{width:207.213333pt;}
.w11{width:207.866667pt;}
.we{width:220.986667pt;}
.wd{width:225.185333pt;}
.w9{width:233.345333pt;}
.w12{width:246.253333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:7.040000pt;}
.x1b{left:8.160000pt;}
.x1f{left:9.426667pt;}
.x33{left:10.718667pt;}
.x5{left:11.680000pt;}
.x20{left:13.266667pt;}
.x31{left:15.866667pt;}
.x1c{left:17.426667pt;}
.x23{left:19.040000pt;}
.x21{left:20.000000pt;}
.x13{left:21.920000pt;}
.x38{left:23.226667pt;}
.x3{left:24.320000pt;}
.x3d{left:25.280000pt;}
.x16{left:26.878667pt;}
.x19{left:28.626667pt;}
.x1e{left:29.918667pt;}
.x2d{left:31.226667pt;}
.x18{left:33.746667pt;}
.x30{left:36.190667pt;}
.x1a{left:37.440000pt;}
.xf{left:38.590667pt;}
.x24{left:40.670667pt;}
.x2f{left:42.426667pt;}
.x22{left:43.520000pt;}
.x35{left:44.800000pt;}
.x37{left:46.080000pt;}
.x1{left:47.200000pt;}
.x32{left:48.346667pt;}
.x25{left:50.080000pt;}
.x11{left:51.026667pt;}
.x29{left:52.321333pt;}
.xe{left:53.761333pt;}
.x17{left:55.506667pt;}
.x1d{left:56.466667pt;}
.x3e{left:58.706667pt;}
.x15{left:62.866667pt;}
.x3c{left:68.946667pt;}
.x34{left:70.270667pt;}
.x7{left:71.200000pt;}
.x3f{left:73.601333pt;}
.x42{left:75.680000pt;}
.x36{left:82.585333pt;}
.x27{left:86.906667pt;}
.x2a{left:91.545333pt;}
.xc{left:94.432000pt;}
.x10{left:208.680000pt;}
.xb{left:228.506667pt;}
.x40{left:265.666667pt;}
.x9{left:274.626667pt;}
.x2b{left:286.306667pt;}
.x3a{left:295.426667pt;}
.xa{left:300.866667pt;}
.x28{left:356.386667pt;}
.x2{left:361.506667pt;}
.x12{left:370.946667pt;}
.x4{left:373.346667pt;}
.x8{left:396.866667pt;}
.x2c{left:428.066667pt;}
.x6{left:444.426667pt;}
.x41{left:474.186667pt;}
.x3b{left:517.066667pt;}
.x14{left:533.226667pt;}
.x2e{left:593.546667pt;}
.xd{left:676.133333pt;}
.x39{left:680.933333pt;}
}




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