
    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_c7bf8b77fc1250de06b9125f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4cab3c10a1d9a3cab3124490.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_11bf87ca2a19708e348cabe1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_3eb898de55d16b94b60ba785.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_188e69174341a49d30ddf9b8.woff')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_acf28e04055e692403f722d0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_5b4469e73e25ca0df2dc52a3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0ec0595077bebf4b7b1f9a93.woff')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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_868112290bde75c7a7ff9b03.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-0.924000px;}
.ls3{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.119520px;}
.lse{letter-spacing:0.153360px;}
.lsb{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.206640px;}
.ls4{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.ls13{letter-spacing:5.220000px;}
.ls15{letter-spacing:9.540000px;}
.ls10{letter-spacing:41.706720px;}
.ls16{letter-spacing:41.850720px;}
.ls12{letter-spacing:55.362720px;}
.ls9{letter-spacing:55.386720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.wsb{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.093600px;}
.ws7{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1445.990040px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-579.228480px;}
._e{margin-left:-3.779280px;}
._b{margin-left:-2.316240px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._7{width:2.991120px;}
._8{width:4.410960px;}
._12{width:5.665920px;}
._11{width:6.779040px;}
._f{width:8.214960px;}
._d{width:9.667200px;}
._c{width:10.770720px;}
._9{width:12.131280px;}
._10{width:13.426560px;}
._1a{width:16.447680px;}
._13{width:17.509680px;}
._1b{width:24.491520px;}
._1c{width:25.518720px;}
._16{width:26.663040px;}
._15{width:28.213200px;}
._17{width:34.431840px;}
._18{width:35.437680px;}
._19{width:42.250320px;}
._a{width:201.204000px;}
._14{width:2867.643360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y52{bottom:5.760000px;}
.y5a{bottom:5.940000px;}
.y61{bottom:10.260000px;}
.ye5{bottom:15.660000px;}
.yed{bottom:19.470000px;}
.y5c{bottom:23.250000px;}
.y5f{bottom:23.580000px;}
.y56{bottom:25.560000px;}
.y70{bottom:25.590000px;}
.y54{bottom:25.740000px;}
.ye0{bottom:25.785000px;}
.ye9{bottom:32.400000px;}
.yee{bottom:32.430000px;}
.y64{bottom:34.020000px;}
.ye8{bottom:39.240000px;}
.yec{bottom:39.270000px;}
.y59{bottom:45.540000px;}
.ydf{bottom:45.585000px;}
.ye7{bottom:59.040000px;}
.yeb{bottom:59.070000px;}
.y6{bottom:60.120000px;}
.y58{bottom:65.370000px;}
.yc0{bottom:90.720000px;}
.y57{bottom:97.560000px;}
.yf0{bottom:99.360000px;}
.y8b{bottom:103.500000px;}
.yda{bottom:105.300000px;}
.ybf{bottom:110.520000px;}
.y33{bottom:115.920000px;}
.yef{bottom:119.160000px;}
.yd9{bottom:120.060000px;}
.y8a{bottom:123.300000px;}
.ybe{bottom:125.280000px;}
.yea{bottom:133.920000px;}
.yf4{bottom:134.100000px;}
.y32{bottom:135.720000px;}
.y89{bottom:143.100000px;}
.ybd{bottom:145.800000px;}
.yf3{bottom:153.930000px;}
.y31{bottom:155.550000px;}
.yd8{bottom:160.410000px;}
.y88{bottom:162.930000px;}
.ybc{bottom:166.530000px;}
.yf2{bottom:173.730000px;}
.y30{bottom:175.350000px;}
.y87{bottom:182.730000px;}
.ybb{bottom:187.050000px;}
.y55{bottom:192.090000px;}
.yf1{bottom:193.530000px;}
.y2f{bottom:195.150000px;}
.yd7{bottom:200.910000px;}
.y86{bottom:202.710000px;}
.ye6{bottom:207.930000px;}
.yba{bottom:213.510000px;}
.y2e{bottom:215.130000px;}
.yd6{bottom:221.430000px;}
.y85{bottom:222.510000px;}
.yb9{bottom:233.310000px;}
.y2d{bottom:234.930000px;}
.y84{bottom:242.310000px;}
.y53{bottom:246.630000px;}
.yd5{bottom:247.890000px;}
.yb8{bottom:253.110000px;}
.y2c{bottom:254.730000px;}
.y83{bottom:262.110000px;}
.yd4{bottom:267.690000px;}
.yb7{bottom:272.910000px;}
.y2b{bottom:274.530000px;}
.ye4{bottom:281.730000px;}
.y82{bottom:281.910000px;}
.yd3{bottom:287.490000px;}
.yb6{bottom:292.710000px;}
.y2a{bottom:294.330000px;}
.y51{bottom:301.350000px;}
.y81{bottom:301.890000px;}
.yd2{bottom:307.290000px;}
.yb5{bottom:312.690000px;}
.y29{bottom:314.310000px;}
.y80{bottom:321.690000px;}
.ye3{bottom:322.230000px;}
.yd1{bottom:327.270000px;}
.yb4{bottom:332.490000px;}
.y28{bottom:334.110000px;}
.y50{bottom:334.470000px;}
.y7f{bottom:341.490000px;}
.yd0{bottom:347.070000px;}
.ye2{bottom:348.510000px;}
.yb3{bottom:352.290000px;}
.y27{bottom:353.910000px;}
.y4f{bottom:354.270000px;}
.y7e{bottom:361.290000px;}
.ycf{bottom:366.870000px;}
.ye1{bottom:368.310000px;}
.yb2{bottom:372.090000px;}
.y26{bottom:373.710000px;}
.y4e{bottom:374.070000px;}
.y7d{bottom:381.090000px;}
.yde{bottom:383.070000px;}
.yce{bottom:386.670000px;}
.yb1{bottom:391.890000px;}
.y25{bottom:393.510000px;}
.y4d{bottom:394.050000px;}
.y7c{bottom:401.115000px;}
.ycd{bottom:406.515000px;}
.yb0{bottom:411.915000px;}
.y24{bottom:413.535000px;}
.y4c{bottom:413.895000px;}
.y7b{bottom:420.915000px;}
.ycc{bottom:426.495000px;}
.yaf{bottom:431.715000px;}
.y23{bottom:433.335000px;}
.y4b{bottom:433.695000px;}
.y7a{bottom:440.715000px;}
.ydd{bottom:443.415000px;}
.ycb{bottom:446.295000px;}
.yae{bottom:451.515000px;}
.y22{bottom:453.135000px;}
.y4a{bottom:453.495000px;}
.y79{bottom:460.515000px;}
.yca{bottom:466.095000px;}
.yad{bottom:471.315000px;}
.y21{bottom:472.935000px;}
.y49{bottom:473.295000px;}
.y78{bottom:480.315000px;}
.yc9{bottom:485.895000px;}
.yac{bottom:491.115000px;}
.y20{bottom:492.735000px;}
.y48{bottom:493.275000px;}
.y77{bottom:500.295000px;}
.ydc{bottom:503.715000px;}
.yc8{bottom:505.695000px;}
.yab{bottom:511.095000px;}
.y1f{bottom:512.715000px;}
.y47{bottom:513.075000px;}
.y76{bottom:520.095000px;}
.yc7{bottom:525.675000px;}
.yaa{bottom:530.895000px;}
.y1e{bottom:532.515000px;}
.y46{bottom:532.875000px;}
.y75{bottom:539.895000px;}
.yc6{bottom:545.475000px;}
.ya9{bottom:550.695000px;}
.y1d{bottom:552.315000px;}
.y45{bottom:552.675000px;}
.y74{bottom:559.695000px;}
.ydb{bottom:564.015000px;}
.yc5{bottom:565.275000px;}
.y44{bottom:569.235000px;}
.ya8{bottom:570.495000px;}
.y1c{bottom:572.115000px;}
.y73{bottom:579.495000px;}
.yc4{bottom:580.035000px;}
.ya7{bottom:590.295000px;}
.y1b{bottom:591.915000px;}
.y72{bottom:599.475000px;}
.ya6{bottom:610.275000px;}
.y1a{bottom:611.895000px;}
.y71{bottom:619.275000px;}
.yc3{bottom:620.535000px;}
.ya5{bottom:630.075000px;}
.y19{bottom:631.695000px;}
.y6f{bottom:634.035000px;}
.ya4{bottom:649.905000px;}
.y18{bottom:651.525000px;}
.yc2{bottom:660.885000px;}
.ya3{bottom:669.705000px;}
.y17{bottom:671.325000px;}
.y6e{bottom:674.565000px;}
.ya2{bottom:689.505000px;}
.y16{bottom:691.125000px;}
.yc1{bottom:702.825000px;}
.ya1{bottom:709.485000px;}
.y15{bottom:711.105000px;}
.y6d{bottom:714.885000px;}
.ya0{bottom:729.285000px;}
.y14{bottom:733.065000px;}
.y9f{bottom:749.085000px;}
.y6c{bottom:761.145000px;}
.y13{bottom:761.865000px;}
.y9e{bottom:768.885000px;}
.y6b{bottom:780.945000px;}
.y12{bottom:781.845000px;}
.y9d{bottom:788.685000px;}
.y6a{bottom:800.745000px;}
.y11{bottom:801.645000px;}
.y9c{bottom:808.665000px;}
.y69{bottom:820.545000px;}
.y10{bottom:821.445000px;}
.y9b{bottom:828.465000px;}
.y68{bottom:840.525000px;}
.yf{bottom:841.245000px;}
.y9a{bottom:848.265000px;}
.y67{bottom:860.325000px;}
.ye{bottom:861.045000px;}
.y99{bottom:868.065000px;}
.y43{bottom:878.865000px;}
.y66{bottom:880.125000px;}
.yd{bottom:883.185000px;}
.y98{bottom:887.865000px;}
.y42{bottom:898.890000px;}
.y65{bottom:899.970000px;}
.y97{bottom:907.890000px;}
.yc{bottom:908.250000px;}
.y41{bottom:918.690000px;}
.y63{bottom:922.290000px;}
.y96{bottom:927.690000px;}
.yb{bottom:928.230000px;}
.y40{bottom:938.490000px;}
.ya{bottom:943.350000px;}
.y95{bottom:947.490000px;}
.y3f{bottom:958.290000px;}
.y9{bottom:965.130000px;}
.y94{bottom:967.290000px;}
.y3e{bottom:978.090000px;}
.y62{bottom:986.010000px;}
.y93{bottom:987.090000px;}
.y8{bottom:989.970000px;}
.y3d{bottom:998.070000px;}
.y92{bottom:1007.070000px;}
.y3c{bottom:1017.870000px;}
.y60{bottom:1021.650000px;}
.y7{bottom:1021.830000px;}
.y91{bottom:1026.870000px;}
.y3b{bottom:1037.670000px;}
.y90{bottom:1046.670000px;}
.y3a{bottom:1057.470000px;}
.y5{bottom:1060.170000px;}
.y5e{bottom:1061.610000px;}
.y8f{bottom:1066.470000px;}
.y39{bottom:1077.270000px;}
.y8e{bottom:1086.270000px;}
.y4{bottom:1090.950000px;}
.y38{bottom:1097.250000px;}
.y8d{bottom:1106.250000px;}
.y5d{bottom:1113.270000px;}
.y37{bottom:1117.050000px;}
.y3{bottom:1121.730000px;}
.y8c{bottom:1126.050000px;}
.y5b{bottom:1134.870000px;}
.y36{bottom:1145.850000px;}
.y2{bottom:1152.720000px;}
.y35{bottom:1165.680000px;}
.y1{bottom:1186.560000px;}
.y34{bottom:1193.220000px;}
.hd{height:19.800000px;}
.h16{height:19.836000px;}
.h13{height:24.300000px;}
.h6{height:28.115859px;}
.h11{height:37.296000px;}
.h12{height:37.620000px;}
.hf{height:39.600000px;}
.h15{height:39.636000px;}
.he{height:39.780000px;}
.h7{height:42.164648px;}
.h8{height:43.215117px;}
.ha{height:43.506914px;}
.hc{height:45.024258px;}
.h3{height:46.736719px;}
.h4{height:47.901094px;}
.h14{height:48.060000px;}
.hb{height:49.255313px;}
.h5{height:53.224453px;}
.h17{height:59.580000px;}
.h18{height:59.616000px;}
.h2{height:67.565039px;}
.h9{height:67.824844px;}
.h19{height:73.080000px;}
.h1a{height:73.116000px;}
.h10{height:79.416000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:160.380000px;}
.we{width:166.890000px;}
.w3{width:237.315000px;}
.wa{width:285.330000px;}
.wd{width:314.490000px;}
.w7{width:349.770000px;}
.w8{width:349.950000px;}
.wc{width:360.435000px;}
.wb{width:371.415000px;}
.w9{width:389.595000px;}
.w4{width:461.415000px;}
.wf{width:511.455000px;}
.w6{width:528.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.560000px;}
.x1{left:54.179987px;}
.x12{left:66.779987px;}
.x2{left:80.999987px;}
.xd{left:85.536000px;}
.x13{left:93.815987px;}
.x8{left:96.336000px;}
.x6{left:101.736000px;}
.x10{left:106.956000px;}
.xa{left:108.035987px;}
.xc{left:135.035987px;}
.x7{left:263.010000px;}
.x11{left:274.755000px;}
.x5{left:291.315000px;}
.xe{left:436.035000px;}
.x9{left:446.865000px;}
.xf{left:469.905000px;}
.xb{left:499.065000px;}
.x3{left:797.549987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-0.821333pt;}
.ls3{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.136320pt;}
.lsb{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.183680pt;}
.ls4{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.ls13{letter-spacing:4.640000pt;}
.ls15{letter-spacing:8.480000pt;}
.ls10{letter-spacing:37.072640pt;}
.ls16{letter-spacing:37.200640pt;}
.ls12{letter-spacing:49.211307pt;}
.ls9{letter-spacing:49.232640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.wsb{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1285.324480pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-514.869760pt;}
._e{margin-left:-3.359360pt;}
._b{margin-left:-2.058880pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._7{width:2.658773pt;}
._8{width:3.920853pt;}
._12{width:5.036373pt;}
._11{width:6.025813pt;}
._f{width:7.302187pt;}
._d{width:8.593067pt;}
._c{width:9.573973pt;}
._9{width:10.783360pt;}
._10{width:11.934720pt;}
._1a{width:14.620160pt;}
._13{width:15.564160pt;}
._1b{width:21.770240pt;}
._1c{width:22.683307pt;}
._16{width:23.700480pt;}
._15{width:25.078400pt;}
._17{width:30.606080pt;}
._18{width:31.500160pt;}
._19{width:37.555840pt;}
._a{width:178.848000pt;}
._14{width:2549.016320pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:5.120000pt;}
.y5a{bottom:5.280000pt;}
.y61{bottom:9.120000pt;}
.ye5{bottom:13.920000pt;}
.yed{bottom:17.306667pt;}
.y5c{bottom:20.666667pt;}
.y5f{bottom:20.960000pt;}
.y56{bottom:22.720000pt;}
.y70{bottom:22.746667pt;}
.y54{bottom:22.880000pt;}
.ye0{bottom:22.920000pt;}
.ye9{bottom:28.800000pt;}
.yee{bottom:28.826667pt;}
.y64{bottom:30.240000pt;}
.ye8{bottom:34.880000pt;}
.yec{bottom:34.906667pt;}
.y59{bottom:40.480000pt;}
.ydf{bottom:40.520000pt;}
.ye7{bottom:52.480000pt;}
.yeb{bottom:52.506667pt;}
.y6{bottom:53.440000pt;}
.y58{bottom:58.106667pt;}
.yc0{bottom:80.640000pt;}
.y57{bottom:86.720000pt;}
.yf0{bottom:88.320000pt;}
.y8b{bottom:92.000000pt;}
.yda{bottom:93.600000pt;}
.ybf{bottom:98.240000pt;}
.y33{bottom:103.040000pt;}
.yef{bottom:105.920000pt;}
.yd9{bottom:106.720000pt;}
.y8a{bottom:109.600000pt;}
.ybe{bottom:111.360000pt;}
.yea{bottom:119.040000pt;}
.yf4{bottom:119.200000pt;}
.y32{bottom:120.640000pt;}
.y89{bottom:127.200000pt;}
.ybd{bottom:129.600000pt;}
.yf3{bottom:136.826667pt;}
.y31{bottom:138.266667pt;}
.yd8{bottom:142.586667pt;}
.y88{bottom:144.826667pt;}
.ybc{bottom:148.026667pt;}
.yf2{bottom:154.426667pt;}
.y30{bottom:155.866667pt;}
.y87{bottom:162.426667pt;}
.ybb{bottom:166.266667pt;}
.y55{bottom:170.746667pt;}
.yf1{bottom:172.026667pt;}
.y2f{bottom:173.466667pt;}
.yd7{bottom:178.586667pt;}
.y86{bottom:180.186667pt;}
.ye6{bottom:184.826667pt;}
.yba{bottom:189.786667pt;}
.y2e{bottom:191.226667pt;}
.yd6{bottom:196.826667pt;}
.y85{bottom:197.786667pt;}
.yb9{bottom:207.386667pt;}
.y2d{bottom:208.826667pt;}
.y84{bottom:215.386667pt;}
.y53{bottom:219.226667pt;}
.yd5{bottom:220.346667pt;}
.yb8{bottom:224.986667pt;}
.y2c{bottom:226.426667pt;}
.y83{bottom:232.986667pt;}
.yd4{bottom:237.946667pt;}
.yb7{bottom:242.586667pt;}
.y2b{bottom:244.026667pt;}
.ye4{bottom:250.426667pt;}
.y82{bottom:250.586667pt;}
.yd3{bottom:255.546667pt;}
.yb6{bottom:260.186667pt;}
.y2a{bottom:261.626667pt;}
.y51{bottom:267.866667pt;}
.y81{bottom:268.346667pt;}
.yd2{bottom:273.146667pt;}
.yb5{bottom:277.946667pt;}
.y29{bottom:279.386667pt;}
.y80{bottom:285.946667pt;}
.ye3{bottom:286.426667pt;}
.yd1{bottom:290.906667pt;}
.yb4{bottom:295.546667pt;}
.y28{bottom:296.986667pt;}
.y50{bottom:297.306667pt;}
.y7f{bottom:303.546667pt;}
.yd0{bottom:308.506667pt;}
.ye2{bottom:309.786667pt;}
.yb3{bottom:313.146667pt;}
.y27{bottom:314.586667pt;}
.y4f{bottom:314.906667pt;}
.y7e{bottom:321.146667pt;}
.ycf{bottom:326.106667pt;}
.ye1{bottom:327.386667pt;}
.yb2{bottom:330.746667pt;}
.y26{bottom:332.186667pt;}
.y4e{bottom:332.506667pt;}
.y7d{bottom:338.746667pt;}
.yde{bottom:340.506667pt;}
.yce{bottom:343.706667pt;}
.yb1{bottom:348.346667pt;}
.y25{bottom:349.786667pt;}
.y4d{bottom:350.266667pt;}
.y7c{bottom:356.546667pt;}
.ycd{bottom:361.346667pt;}
.yb0{bottom:366.146667pt;}
.y24{bottom:367.586667pt;}
.y4c{bottom:367.906667pt;}
.y7b{bottom:374.146667pt;}
.ycc{bottom:379.106667pt;}
.yaf{bottom:383.746667pt;}
.y23{bottom:385.186667pt;}
.y4b{bottom:385.506667pt;}
.y7a{bottom:391.746667pt;}
.ydd{bottom:394.146667pt;}
.ycb{bottom:396.706667pt;}
.yae{bottom:401.346667pt;}
.y22{bottom:402.786667pt;}
.y4a{bottom:403.106667pt;}
.y79{bottom:409.346667pt;}
.yca{bottom:414.306667pt;}
.yad{bottom:418.946667pt;}
.y21{bottom:420.386667pt;}
.y49{bottom:420.706667pt;}
.y78{bottom:426.946667pt;}
.yc9{bottom:431.906667pt;}
.yac{bottom:436.546667pt;}
.y20{bottom:437.986667pt;}
.y48{bottom:438.466667pt;}
.y77{bottom:444.706667pt;}
.ydc{bottom:447.746667pt;}
.yc8{bottom:449.506667pt;}
.yab{bottom:454.306667pt;}
.y1f{bottom:455.746667pt;}
.y47{bottom:456.066667pt;}
.y76{bottom:462.306667pt;}
.yc7{bottom:467.266667pt;}
.yaa{bottom:471.906667pt;}
.y1e{bottom:473.346667pt;}
.y46{bottom:473.666667pt;}
.y75{bottom:479.906667pt;}
.yc6{bottom:484.866667pt;}
.ya9{bottom:489.506667pt;}
.y1d{bottom:490.946667pt;}
.y45{bottom:491.266667pt;}
.y74{bottom:497.506667pt;}
.ydb{bottom:501.346667pt;}
.yc5{bottom:502.466667pt;}
.y44{bottom:505.986667pt;}
.ya8{bottom:507.106667pt;}
.y1c{bottom:508.546667pt;}
.y73{bottom:515.106667pt;}
.yc4{bottom:515.586667pt;}
.ya7{bottom:524.706667pt;}
.y1b{bottom:526.146667pt;}
.y72{bottom:532.866667pt;}
.ya6{bottom:542.466667pt;}
.y1a{bottom:543.906667pt;}
.y71{bottom:550.466667pt;}
.yc3{bottom:551.586667pt;}
.ya5{bottom:560.066667pt;}
.y19{bottom:561.506667pt;}
.y6f{bottom:563.586667pt;}
.ya4{bottom:577.693333pt;}
.y18{bottom:579.133333pt;}
.yc2{bottom:587.453333pt;}
.ya3{bottom:595.293333pt;}
.y17{bottom:596.733333pt;}
.y6e{bottom:599.613333pt;}
.ya2{bottom:612.893333pt;}
.y16{bottom:614.333333pt;}
.yc1{bottom:624.733333pt;}
.ya1{bottom:630.653333pt;}
.y15{bottom:632.093333pt;}
.y6d{bottom:635.453333pt;}
.ya0{bottom:648.253333pt;}
.y14{bottom:651.613333pt;}
.y9f{bottom:665.853333pt;}
.y6c{bottom:676.573333pt;}
.y13{bottom:677.213333pt;}
.y9e{bottom:683.453333pt;}
.y6b{bottom:694.173333pt;}
.y12{bottom:694.973333pt;}
.y9d{bottom:701.053333pt;}
.y6a{bottom:711.773333pt;}
.y11{bottom:712.573333pt;}
.y9c{bottom:718.813333pt;}
.y69{bottom:729.373333pt;}
.y10{bottom:730.173333pt;}
.y9b{bottom:736.413333pt;}
.y68{bottom:747.133333pt;}
.yf{bottom:747.773333pt;}
.y9a{bottom:754.013333pt;}
.y67{bottom:764.733333pt;}
.ye{bottom:765.373333pt;}
.y99{bottom:771.613333pt;}
.y43{bottom:781.213333pt;}
.y66{bottom:782.333333pt;}
.yd{bottom:785.053333pt;}
.y98{bottom:789.213333pt;}
.y42{bottom:799.013333pt;}
.y65{bottom:799.973333pt;}
.y97{bottom:807.013333pt;}
.yc{bottom:807.333333pt;}
.y41{bottom:816.613333pt;}
.y63{bottom:819.813333pt;}
.y96{bottom:824.613333pt;}
.yb{bottom:825.093333pt;}
.y40{bottom:834.213333pt;}
.ya{bottom:838.533333pt;}
.y95{bottom:842.213333pt;}
.y3f{bottom:851.813333pt;}
.y9{bottom:857.893333pt;}
.y94{bottom:859.813333pt;}
.y3e{bottom:869.413333pt;}
.y62{bottom:876.453333pt;}
.y93{bottom:877.413333pt;}
.y8{bottom:879.973333pt;}
.y3d{bottom:887.173333pt;}
.y92{bottom:895.173333pt;}
.y3c{bottom:904.773333pt;}
.y60{bottom:908.133333pt;}
.y7{bottom:908.293333pt;}
.y91{bottom:912.773333pt;}
.y3b{bottom:922.373333pt;}
.y90{bottom:930.373333pt;}
.y3a{bottom:939.973333pt;}
.y5{bottom:942.373333pt;}
.y5e{bottom:943.653333pt;}
.y8f{bottom:947.973333pt;}
.y39{bottom:957.573333pt;}
.y8e{bottom:965.573333pt;}
.y4{bottom:969.733333pt;}
.y38{bottom:975.333333pt;}
.y8d{bottom:983.333333pt;}
.y5d{bottom:989.573333pt;}
.y37{bottom:992.933333pt;}
.y3{bottom:997.093333pt;}
.y8c{bottom:1000.933333pt;}
.y5b{bottom:1008.773333pt;}
.y36{bottom:1018.533333pt;}
.y2{bottom:1024.640000pt;}
.y35{bottom:1036.160000pt;}
.y1{bottom:1054.720000pt;}
.y34{bottom:1060.640000pt;}
.hd{height:17.600000pt;}
.h16{height:17.632000pt;}
.h13{height:21.600000pt;}
.h6{height:24.991875pt;}
.h11{height:33.152000pt;}
.h12{height:33.440000pt;}
.hf{height:35.200000pt;}
.h15{height:35.232000pt;}
.he{height:35.360000pt;}
.h7{height:37.479688pt;}
.h8{height:38.413438pt;}
.ha{height:38.672812pt;}
.hc{height:40.021563pt;}
.h3{height:41.543750pt;}
.h4{height:42.578750pt;}
.h14{height:42.720000pt;}
.hb{height:43.782500pt;}
.h5{height:47.310625pt;}
.h17{height:52.960000pt;}
.h18{height:52.992000pt;}
.h2{height:60.057813pt;}
.h9{height:60.288750pt;}
.h19{height:64.960000pt;}
.h1a{height:64.992000pt;}
.h10{height:70.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:142.560000pt;}
.we{width:148.346667pt;}
.w3{width:210.946667pt;}
.wa{width:253.626667pt;}
.wd{width:279.546667pt;}
.w7{width:310.906667pt;}
.w8{width:311.066667pt;}
.wc{width:320.386667pt;}
.wb{width:330.146667pt;}
.w9{width:346.306667pt;}
.w4{width:410.146667pt;}
.wf{width:454.626667pt;}
.w6{width:469.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.720000pt;}
.x1{left:48.159988pt;}
.x12{left:59.359988pt;}
.x2{left:71.999988pt;}
.xd{left:76.032000pt;}
.x13{left:83.391988pt;}
.x8{left:85.632000pt;}
.x6{left:90.432000pt;}
.x10{left:95.072000pt;}
.xa{left:96.031988pt;}
.xc{left:120.031988pt;}
.x7{left:233.786667pt;}
.x11{left:244.226667pt;}
.x5{left:258.946667pt;}
.xe{left:387.586667pt;}
.x9{left:397.213333pt;}
.xf{left:417.693333pt;}
.xb{left:443.613333pt;}
.x3{left:708.933322pt;}
}




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