
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_e0bd29845843b74ba5defbd3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_4ef690ea288f2e134dc2c935.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_e30b70d99607d71eeccea305.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_9201902f1d10b354776bd910.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_cf4f01ff265e8a3c64079e0d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959473;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_67a8df3cfbce35d0d948b822.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.729412;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:ffa;src:url('chunks/assets/font_ff2bc09a6439d8d08b36da5a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899902;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:ffb;src:url('chunks/assets/font_2433370a64930d9932f70d37.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.927734;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls4{letter-spacing:-0.864000px;}
.ls8{letter-spacing:-0.205800px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.239040px;}
.lsb{letter-spacing:0.252000px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.624000px;}
.lsc{letter-spacing:0.792000px;}
.ls0{letter-spacing:3.600000px;}
.lsa{letter-spacing:141.840000px;}
.ls5{letter-spacing:1431.096000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-84.240000px;}
.ws0{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.136000px;}
.ws6{word-spacing:-16.527000px;}
.ws5{word-spacing:0.000000px;}
._19{margin-left:-5.526000px;}
._9{margin-left:-4.248000px;}
._8{margin-left:-2.880000px;}
._0{margin-left:-1.026000px;}
._3{width:1.020000px;}
._1{width:2.436000px;}
._2{width:3.672000px;}
._7{width:4.968000px;}
._10{width:6.048000px;}
._c{width:7.626000px;}
._b{width:8.784000px;}
._18{width:10.662000px;}
._16{width:11.694000px;}
._15{width:13.176000px;}
._f{width:14.508000px;}
._e{width:16.128000px;}
._1f{width:19.038000px;}
._12{width:20.322000px;}
._11{width:21.456000px;}
._1e{width:22.608000px;}
._1d{width:23.724000px;}
._a{width:24.840000px;}
._d{width:26.712000px;}
._20{width:28.296000px;}
._21{width:29.808000px;}
._1a{width:30.906000px;}
._14{width:32.184000px;}
._13{width:33.336000px;}
._1b{width:38.232000px;}
._1c{width:39.456000px;}
._2c{width:52.626000px;}
._27{width:53.928000px;}
._26{width:55.416000px;}
._25{width:58.548000px;}
._24{width:59.616000px;}
._6{width:70.968000px;}
._2a{width:79.500000px;}
._29{width:80.640000px;}
._22{width:110.664000px;}
._23{width:111.744000px;}
._2b{width:116.856000px;}
._28{width:141.768000px;}
._2d{width:274.968000px;}
._5{width:470.916000px;}
._17{width:1261.794240px;}
._4{width:1433.832000px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc2{color:rgb(118,113,113);}
.fc4{color:rgb(128,128,128);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y35{bottom:1.800000px;}
.y37{bottom:8.100000px;}
.y33{bottom:51.840000px;}
.y8{bottom:57.600000px;}
.y36{bottom:67.680000px;}
.y34{bottom:74.700000px;}
.y7{bottom:76.860000px;}
.y6{bottom:91.980000px;}
.y5{bottom:107.280000px;}
.y4{bottom:122.400000px;}
.y32{bottom:122.580000px;}
.y3{bottom:137.520000px;}
.yb2{bottom:141.840000px;}
.y65{bottom:142.920000px;}
.yef{bottom:146.160000px;}
.y86{bottom:151.770000px;}
.yb1{bottom:162.030000px;}
.y64{bottom:163.110000px;}
.yee{bottom:166.530000px;}
.y2f{bottom:167.430000px;}
.yb0{bottom:182.370000px;}
.y63{bottom:183.450000px;}
.y85{bottom:185.610000px;}
.yed{bottom:186.870000px;}
.y2e{bottom:187.770000px;}
.y62{bottom:203.610000px;}
.y2d{bottom:207.930000px;}
.yaf{bottom:211.530000px;}
.y84{bottom:214.770000px;}
.yec{bottom:216.030000px;}
.y61{bottom:223.950000px;}
.y2c{bottom:228.270000px;}
.yae{bottom:231.870000px;}
.yca{bottom:232.770000px;}
.yeb{bottom:236.370000px;}
.y60{bottom:244.110000px;}
.y2b{bottom:248.430000px;}
.yad{bottom:252.030000px;}
.yc9{bottom:253.110000px;}
.y5f{bottom:264.450000px;}
.yea{bottom:265.530000px;}
.y2a{bottom:268.770000px;}
.yac{bottom:272.370000px;}
.yc8{bottom:273.450000px;}
.y83{bottom:284.610000px;}
.ye9{bottom:285.870000px;}
.y29{bottom:288.930000px;}
.yab{bottom:292.530000px;}
.y5e{bottom:293.610000px;}
.y82{bottom:304.950000px;}
.y28{bottom:309.270000px;}
.yaa{bottom:312.870000px;}
.y5d{bottom:313.950000px;}
.ye8{bottom:315.030000px;}
.yc7{bottom:323.670000px;}
.y81{bottom:325.110000px;}
.ya9{bottom:333.030000px;}
.y5c{bottom:334.110000px;}
.ye7{bottom:335.370000px;}
.y27{bottom:339.330000px;}
.y80{bottom:345.450000px;}
.y5b{bottom:354.450000px;}
.yc6{bottom:355.530000px;}
.ya8{bottom:363.090000px;}
.y26{bottom:371.010000px;}
.y5a{bottom:374.610000px;}
.yc5{bottom:384.690000px;}
.ya7{bottom:394.770000px;}
.y59{bottom:394.950000px;}
.ye6{bottom:405.075000px;}
.y25{bottom:409.395000px;}
.yc4{bottom:414.795000px;}
.y58{bottom:415.155000px;}
.ya6{bottom:424.155000px;}
.ye5{bottom:425.415000px;}
.y24{bottom:429.735000px;}
.y7f{bottom:435.495000px;}
.y57{bottom:444.315000px;}
.ya5{bottom:444.495000px;}
.ye4{bottom:445.575000px;}
.yc3{bottom:446.655000px;}
.y23{bottom:449.895000px;}
.y7e{bottom:455.655000px;}
.y56{bottom:464.655000px;}
.ye3{bottom:474.735000px;}
.yc2{bottom:475.815000px;}
.y7d{bottom:475.995000px;}
.y22{bottom:479.055000px;}
.y55{bottom:484.995000px;}
.y7c{bottom:496.155000px;}
.ye2{bottom:504.075000px;}
.y54{bottom:505.155000px;}
.y21{bottom:508.395000px;}
.ya4{bottom:514.155000px;}
.y7b{bottom:516.495000px;}
.ye1{bottom:524.415000px;}
.yb8{bottom:525.315000px;}
.y53{bottom:525.495000px;}
.ya3{bottom:534.495000px;}
.y7a{bottom:536.655000px;}
.y20{bottom:537.555000px;}
.y52{bottom:545.655000px;}
.ye0{bottom:553.575000px;}
.ya2{bottom:554.655000px;}
.yc1{bottom:556.995000px;}
.y79{bottom:565.815000px;}
.y51{bottom:565.995000px;}
.y1f{bottom:566.895000px;}
.ydf{bottom:573.915000px;}
.ya1{bottom:574.995000px;}
.y50{bottom:586.155000px;}
.y1e{bottom:587.235000px;}
.yde{bottom:594.075000px;}
.ya0{bottom:595.155000px;}
.y4f{bottom:606.495000px;}
.y1d{bottom:607.395000px;}
.y9f{bottom:615.495000px;}
.ydd{bottom:623.235000px;}
.y4e{bottom:626.655000px;}
.y1c{bottom:627.735000px;}
.ydc{bottom:643.575000px;}
.y9e{bottom:644.655000px;}
.y4d{bottom:646.995000px;}
.y1b{bottom:647.895000px;}
.ydb{bottom:663.945000px;}
.y9d{bottom:665.025000px;}
.y78{bottom:667.185000px;}
.y1a{bottom:668.265000px;}
.y4c{bottom:677.085000px;}
.y9c{bottom:685.185000px;}
.y77{bottom:687.525000px;}
.y19{bottom:688.425000px;}
.yda{bottom:693.105000px;}
.yb7{bottom:697.245000px;}
.y9b{bottom:705.525000px;}
.y76{bottom:707.685000px;}
.y18{bottom:708.765000px;}
.yd9{bottom:713.445000px;}
.y9a{bottom:725.685000px;}
.y17{bottom:728.925000px;}
.yb6{bottom:729.105000px;}
.yd8{bottom:733.605000px;}
.y75{bottom:736.845000px;}
.y4b{bottom:738.105000px;}
.y99{bottom:746.025000px;}
.y16{bottom:749.265000px;}
.y74{bottom:757.185000px;}
.yb5{bottom:758.265000px;}
.y4a{bottom:758.445000px;}
.yd7{bottom:762.765000px;}
.y98{bottom:766.185000px;}
.y15{bottom:769.425000px;}
.y73{bottom:777.525000px;}
.y49{bottom:778.605000px;}
.yd6{bottom:783.105000px;}
.y14{bottom:789.765000px;}
.y97{bottom:795.345000px;}
.y72{bottom:797.685000px;}
.y48{bottom:798.945000px;}
.yd5{bottom:803.445000px;}
.y13{bottom:809.925000px;}
.y96{bottom:815.685000px;}
.y71{bottom:818.025000px;}
.y47{bottom:819.105000px;}
.y12{bottom:830.265000px;}
.yd4{bottom:832.605000px;}
.y95{bottom:836.025000px;}
.y70{bottom:838.185000px;}
.y46{bottom:839.445000px;}
.y11{bottom:850.425000px;}
.y94{bottom:856.185000px;}
.y6f{bottom:858.525000px;}
.yb4{bottom:859.605000px;}
.yd3{bottom:861.765000px;}
.yc0{bottom:867.345000px;}
.y45{bottom:868.605000px;}
.y10{bottom:870.765000px;}
.y93{bottom:876.525000px;}
.yf6{bottom:877.605000px;}
.y6e{bottom:878.685000px;}
.yd2{bottom:882.105000px;}
.ybf{bottom:887.685000px;}
.yb3{bottom:888.765000px;}
.y44{bottom:888.945000px;}
.y92{bottom:896.685000px;}
.y6d{bottom:899.070000px;}
.yf{bottom:900.690000px;}
.yd1{bottom:902.490000px;}
.ybe{bottom:908.070000px;}
.y43{bottom:909.150000px;}
.yf5{bottom:911.310000px;}
.y91{bottom:917.070000px;}
.yd0{bottom:922.650000px;}
.ybd{bottom:928.230000px;}
.y6c{bottom:929.130000px;}
.y42{bottom:929.490000px;}
.ye{bottom:932.550000px;}
.y90{bottom:937.230000px;}
.yf4{bottom:940.650000px;}
.ybc{bottom:948.570000px;}
.y41{bottom:949.650000px;}
.ycf{bottom:951.810000px;}
.y6b{bottom:960.810000px;}
.yf3{bottom:960.990000px;}
.yd{bottom:961.710000px;}
.y8f{bottom:966.390000px;}
.ybb{bottom:968.730000px;}
.y40{bottom:969.990000px;}
.yce{bottom:972.150000px;}
.yf2{bottom:981.150000px;}
.yc{bottom:982.230000px;}
.y8e{bottom:986.730000px;}
.y3f{bottom:990.150000px;}
.yba{bottom:998.790000px;}
.ycd{bottom:1001.310000px;}
.yf1{bottom:1001.490000px;}
.y8d{bottom:1007.070000px;}
.y6a{bottom:1010.490000px;}
.y3e{bottom:1019.310000px;}
.ycc{bottom:1021.650000px;}
.yb{bottom:1024.530000px;}
.y8c{bottom:1027.230000px;}
.y69{bottom:1030.650000px;}
.y3d{bottom:1039.650000px;}
.ycb{bottom:1041.990000px;}
.y8b{bottom:1047.570000px;}
.y68{bottom:1050.990000px;}
.ya{bottom:1051.530000px;}
.yb9{bottom:1059.810000px;}
.y3c{bottom:1059.990000px;}
.y8a{bottom:1067.730000px;}
.y67{bottom:1071.150000px;}
.y3b{bottom:1080.150000px;}
.y9{bottom:1085.730000px;}
.y89{bottom:1088.070000px;}
.y66{bottom:1091.490000px;}
.yf0{bottom:1100.310000px;}
.y3a{bottom:1100.490000px;}
.y2{bottom:1101.390000px;}
.y88{bottom:1108.230000px;}
.y39{bottom:1120.650000px;}
.y87{bottom:1138.290000px;}
.y38{bottom:1140.990000px;}
.y31{bottom:1178.820000px;}
.y1{bottom:1194.120000px;}
.y30{bottom:1196.280000px;}
.hc{height:22.500000px;}
.he{height:24.120000px;}
.h3{height:36.571289px;}
.ha{height:41.610234px;}
.hb{height:47.796328px;}
.h7{height:48.761719px;}
.h4{height:50.132812px;}
.h6{height:56.437031px;}
.h8{height:57.051211px;}
.h9{height:59.439023px;}
.h5{height:64.853086px;}
.h2{height:65.884219px;}
.hd{height:67.375547px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.536000px;}
.w4{width:677.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:10.800000px;}
.xe{left:13.320000px;}
.x3{left:106.415987px;}
.x16{left:148.895987px;}
.x11{left:175.349987px;}
.xa{left:180.209987px;}
.x12{left:188.849987px;}
.x10{left:190.109987px;}
.xf{left:222.329987px;}
.x7{left:247.709987px;}
.x5{left:248.789987px;}
.x4{left:252.929987px;}
.xd{left:261.569987px;}
.x13{left:290.954987px;}
.x6{left:340.814987px;}
.x14{left:358.454987px;}
.x9{left:390.134987px;}
.x15{left:397.694987px;}
.x8{left:409.394987px;}
.x1{left:446.504987px;}
.x2{left:786.749987px;}
.xb{left:789.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls4{letter-spacing:-0.768000pt;}
.ls8{letter-spacing:-0.182933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.212480pt;}
.lsb{letter-spacing:0.224000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.554667pt;}
.lsc{letter-spacing:0.704000pt;}
.ls0{letter-spacing:3.200000pt;}
.lsa{letter-spacing:126.080000pt;}
.ls5{letter-spacing:1272.085333pt;}
.ws8{word-spacing:-74.880000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.232000pt;}
.ws6{word-spacing:-14.690667pt;}
.ws5{word-spacing:0.000000pt;}
._19{margin-left:-4.912000pt;}
._9{margin-left:-3.776000pt;}
._8{margin-left:-2.560000pt;}
._0{margin-left:-0.912000pt;}
._3{width:0.906667pt;}
._1{width:2.165333pt;}
._2{width:3.264000pt;}
._7{width:4.416000pt;}
._10{width:5.376000pt;}
._c{width:6.778667pt;}
._b{width:7.808000pt;}
._18{width:9.477333pt;}
._16{width:10.394667pt;}
._15{width:11.712000pt;}
._f{width:12.896000pt;}
._e{width:14.336000pt;}
._1f{width:16.922667pt;}
._12{width:18.064000pt;}
._11{width:19.072000pt;}
._1e{width:20.096000pt;}
._1d{width:21.088000pt;}
._a{width:22.080000pt;}
._d{width:23.744000pt;}
._20{width:25.152000pt;}
._21{width:26.496000pt;}
._1a{width:27.472000pt;}
._14{width:28.608000pt;}
._13{width:29.632000pt;}
._1b{width:33.984000pt;}
._1c{width:35.072000pt;}
._2c{width:46.778667pt;}
._27{width:47.936000pt;}
._26{width:49.258667pt;}
._25{width:52.042667pt;}
._24{width:52.992000pt;}
._6{width:63.082667pt;}
._2a{width:70.666667pt;}
._29{width:71.680000pt;}
._22{width:98.368000pt;}
._23{width:99.328000pt;}
._2b{width:103.872000pt;}
._28{width:126.016000pt;}
._2d{width:244.416000pt;}
._5{width:418.592000pt;}
._17{width:1121.594880pt;}
._4{width:1274.517333pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:1.600000pt;}
.y37{bottom:7.200000pt;}
.y33{bottom:46.080000pt;}
.y8{bottom:51.200000pt;}
.y36{bottom:60.160000pt;}
.y34{bottom:66.400000pt;}
.y7{bottom:68.320000pt;}
.y6{bottom:81.760000pt;}
.y5{bottom:95.360000pt;}
.y4{bottom:108.800000pt;}
.y32{bottom:108.960000pt;}
.y3{bottom:122.240000pt;}
.yb2{bottom:126.080000pt;}
.y65{bottom:127.040000pt;}
.yef{bottom:129.920000pt;}
.y86{bottom:134.906667pt;}
.yb1{bottom:144.026667pt;}
.y64{bottom:144.986667pt;}
.yee{bottom:148.026667pt;}
.y2f{bottom:148.826667pt;}
.yb0{bottom:162.106667pt;}
.y63{bottom:163.066667pt;}
.y85{bottom:164.986667pt;}
.yed{bottom:166.106667pt;}
.y2e{bottom:166.906667pt;}
.y62{bottom:180.986667pt;}
.y2d{bottom:184.826667pt;}
.yaf{bottom:188.026667pt;}
.y84{bottom:190.906667pt;}
.yec{bottom:192.026667pt;}
.y61{bottom:199.066667pt;}
.y2c{bottom:202.906667pt;}
.yae{bottom:206.106667pt;}
.yca{bottom:206.906667pt;}
.yeb{bottom:210.106667pt;}
.y60{bottom:216.986667pt;}
.y2b{bottom:220.826667pt;}
.yad{bottom:224.026667pt;}
.yc9{bottom:224.986667pt;}
.y5f{bottom:235.066667pt;}
.yea{bottom:236.026667pt;}
.y2a{bottom:238.906667pt;}
.yac{bottom:242.106667pt;}
.yc8{bottom:243.066667pt;}
.y83{bottom:252.986667pt;}
.ye9{bottom:254.106667pt;}
.y29{bottom:256.826667pt;}
.yab{bottom:260.026667pt;}
.y5e{bottom:260.986667pt;}
.y82{bottom:271.066667pt;}
.y28{bottom:274.906667pt;}
.yaa{bottom:278.106667pt;}
.y5d{bottom:279.066667pt;}
.ye8{bottom:280.026667pt;}
.yc7{bottom:287.706667pt;}
.y81{bottom:288.986667pt;}
.ya9{bottom:296.026667pt;}
.y5c{bottom:296.986667pt;}
.ye7{bottom:298.106667pt;}
.y27{bottom:301.626667pt;}
.y80{bottom:307.066667pt;}
.y5b{bottom:315.066667pt;}
.yc6{bottom:316.026667pt;}
.ya8{bottom:322.746667pt;}
.y26{bottom:329.786667pt;}
.y5a{bottom:332.986667pt;}
.yc5{bottom:341.946667pt;}
.ya7{bottom:350.906667pt;}
.y59{bottom:351.066667pt;}
.ye6{bottom:360.066667pt;}
.y25{bottom:363.906667pt;}
.yc4{bottom:368.706667pt;}
.y58{bottom:369.026667pt;}
.ya6{bottom:377.026667pt;}
.ye5{bottom:378.146667pt;}
.y24{bottom:381.986667pt;}
.y7f{bottom:387.106667pt;}
.y57{bottom:394.946667pt;}
.ya5{bottom:395.106667pt;}
.ye4{bottom:396.066667pt;}
.yc3{bottom:397.026667pt;}
.y23{bottom:399.906667pt;}
.y7e{bottom:405.026667pt;}
.y56{bottom:413.026667pt;}
.ye3{bottom:421.986667pt;}
.yc2{bottom:422.946667pt;}
.y7d{bottom:423.106667pt;}
.y22{bottom:425.826667pt;}
.y55{bottom:431.106667pt;}
.y7c{bottom:441.026667pt;}
.ye2{bottom:448.066667pt;}
.y54{bottom:449.026667pt;}
.y21{bottom:451.906667pt;}
.ya4{bottom:457.026667pt;}
.y7b{bottom:459.106667pt;}
.ye1{bottom:466.146667pt;}
.yb8{bottom:466.946667pt;}
.y53{bottom:467.106667pt;}
.ya3{bottom:475.106667pt;}
.y7a{bottom:477.026667pt;}
.y20{bottom:477.826667pt;}
.y52{bottom:485.026667pt;}
.ye0{bottom:492.066667pt;}
.ya2{bottom:493.026667pt;}
.yc1{bottom:495.106667pt;}
.y79{bottom:502.946667pt;}
.y51{bottom:503.106667pt;}
.y1f{bottom:503.906667pt;}
.ydf{bottom:510.146667pt;}
.ya1{bottom:511.106667pt;}
.y50{bottom:521.026667pt;}
.y1e{bottom:521.986667pt;}
.yde{bottom:528.066667pt;}
.ya0{bottom:529.026667pt;}
.y4f{bottom:539.106667pt;}
.y1d{bottom:539.906667pt;}
.y9f{bottom:547.106667pt;}
.ydd{bottom:553.986667pt;}
.y4e{bottom:557.026667pt;}
.y1c{bottom:557.986667pt;}
.ydc{bottom:572.066667pt;}
.y9e{bottom:573.026667pt;}
.y4d{bottom:575.106667pt;}
.y1b{bottom:575.906667pt;}
.ydb{bottom:590.173333pt;}
.y9d{bottom:591.133333pt;}
.y78{bottom:593.053333pt;}
.y1a{bottom:594.013333pt;}
.y4c{bottom:601.853333pt;}
.y9c{bottom:609.053333pt;}
.y77{bottom:611.133333pt;}
.y19{bottom:611.933333pt;}
.yda{bottom:616.093333pt;}
.yb7{bottom:619.773333pt;}
.y9b{bottom:627.133333pt;}
.y76{bottom:629.053333pt;}
.y18{bottom:630.013333pt;}
.yd9{bottom:634.173333pt;}
.y9a{bottom:645.053333pt;}
.y17{bottom:647.933333pt;}
.yb6{bottom:648.093333pt;}
.yd8{bottom:652.093333pt;}
.y75{bottom:654.973333pt;}
.y4b{bottom:656.093333pt;}
.y99{bottom:663.133333pt;}
.y16{bottom:666.013333pt;}
.y74{bottom:673.053333pt;}
.yb5{bottom:674.013333pt;}
.y4a{bottom:674.173333pt;}
.yd7{bottom:678.013333pt;}
.y98{bottom:681.053333pt;}
.y15{bottom:683.933333pt;}
.y73{bottom:691.133333pt;}
.y49{bottom:692.093333pt;}
.yd6{bottom:696.093333pt;}
.y14{bottom:702.013333pt;}
.y97{bottom:706.973333pt;}
.y72{bottom:709.053333pt;}
.y48{bottom:710.173333pt;}
.yd5{bottom:714.173333pt;}
.y13{bottom:719.933333pt;}
.y96{bottom:725.053333pt;}
.y71{bottom:727.133333pt;}
.y47{bottom:728.093333pt;}
.y12{bottom:738.013333pt;}
.yd4{bottom:740.093333pt;}
.y95{bottom:743.133333pt;}
.y70{bottom:745.053333pt;}
.y46{bottom:746.173333pt;}
.y11{bottom:755.933333pt;}
.y94{bottom:761.053333pt;}
.y6f{bottom:763.133333pt;}
.yb4{bottom:764.093333pt;}
.yd3{bottom:766.013333pt;}
.yc0{bottom:770.973333pt;}
.y45{bottom:772.093333pt;}
.y10{bottom:774.013333pt;}
.y93{bottom:779.133333pt;}
.yf6{bottom:780.093333pt;}
.y6e{bottom:781.053333pt;}
.yd2{bottom:784.093333pt;}
.ybf{bottom:789.053333pt;}
.yb3{bottom:790.013333pt;}
.y44{bottom:790.173333pt;}
.y92{bottom:797.053333pt;}
.y6d{bottom:799.173333pt;}
.yf{bottom:800.613333pt;}
.yd1{bottom:802.213333pt;}
.ybe{bottom:807.173333pt;}
.y43{bottom:808.133333pt;}
.yf5{bottom:810.053333pt;}
.y91{bottom:815.173333pt;}
.yd0{bottom:820.133333pt;}
.ybd{bottom:825.093333pt;}
.y6c{bottom:825.893333pt;}
.y42{bottom:826.213333pt;}
.ye{bottom:828.933333pt;}
.y90{bottom:833.093333pt;}
.yf4{bottom:836.133333pt;}
.ybc{bottom:843.173333pt;}
.y41{bottom:844.133333pt;}
.ycf{bottom:846.053333pt;}
.y6b{bottom:854.053333pt;}
.yf3{bottom:854.213333pt;}
.yd{bottom:854.853333pt;}
.y8f{bottom:859.013333pt;}
.ybb{bottom:861.093333pt;}
.y40{bottom:862.213333pt;}
.yce{bottom:864.133333pt;}
.yf2{bottom:872.133333pt;}
.yc{bottom:873.093333pt;}
.y8e{bottom:877.093333pt;}
.y3f{bottom:880.133333pt;}
.yba{bottom:887.813333pt;}
.ycd{bottom:890.053333pt;}
.yf1{bottom:890.213333pt;}
.y8d{bottom:895.173333pt;}
.y6a{bottom:898.213333pt;}
.y3e{bottom:906.053333pt;}
.ycc{bottom:908.133333pt;}
.yb{bottom:910.693333pt;}
.y8c{bottom:913.093333pt;}
.y69{bottom:916.133333pt;}
.y3d{bottom:924.133333pt;}
.ycb{bottom:926.213333pt;}
.y8b{bottom:931.173333pt;}
.y68{bottom:934.213333pt;}
.ya{bottom:934.693333pt;}
.yb9{bottom:942.053333pt;}
.y3c{bottom:942.213333pt;}
.y8a{bottom:949.093333pt;}
.y67{bottom:952.133333pt;}
.y3b{bottom:960.133333pt;}
.y9{bottom:965.093333pt;}
.y89{bottom:967.173333pt;}
.y66{bottom:970.213333pt;}
.yf0{bottom:978.053333pt;}
.y3a{bottom:978.213333pt;}
.y2{bottom:979.013333pt;}
.y88{bottom:985.093333pt;}
.y39{bottom:996.133333pt;}
.y87{bottom:1011.813333pt;}
.y38{bottom:1014.213333pt;}
.y31{bottom:1047.840000pt;}
.y1{bottom:1061.440000pt;}
.y30{bottom:1063.360000pt;}
.hc{height:20.000000pt;}
.he{height:21.440000pt;}
.h3{height:32.507812pt;}
.ha{height:36.986875pt;}
.hb{height:42.485625pt;}
.h7{height:43.343750pt;}
.h4{height:44.562500pt;}
.h6{height:50.166250pt;}
.h8{height:50.712187pt;}
.h9{height:52.834688pt;}
.h5{height:57.647187pt;}
.h2{height:58.563750pt;}
.hd{height:59.889375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.032000pt;}
.w4{width:602.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:9.600000pt;}
.xe{left:11.840000pt;}
.x3{left:94.591988pt;}
.x16{left:132.351988pt;}
.x11{left:155.866655pt;}
.xa{left:160.186655pt;}
.x12{left:167.866655pt;}
.x10{left:168.986655pt;}
.xf{left:197.626655pt;}
.x7{left:220.186655pt;}
.x5{left:221.146655pt;}
.x4{left:224.826655pt;}
.xd{left:232.506655pt;}
.x13{left:258.626655pt;}
.x6{left:302.946655pt;}
.x14{left:318.626655pt;}
.x9{left:346.786655pt;}
.x15{left:353.506655pt;}
.x8{left:363.906655pt;}
.x1{left:396.893322pt;}
.x2{left:699.333322pt;}
.xb{left:701.413333pt;}
}




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