
    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_27ecb649bf9beb584b25b551.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_a2a45632f5453af053d2e280.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_a5b25e0e17f4f2f504ae176b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_8d2532015b1f0a98a30f1582.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_f80cdfed897f78abf9671a4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.934082;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_9fe6c22e12131b242cf121c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_d0632d5b2b996f5ab9721089.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fbbc8c5965ff2c99708f78b7.woff2')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_9e1e0e558cfe621ab8575196.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d332ff7d6d642d3e36cb4764.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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_9b81d34c8144908f88d36a09.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v1{vertical-align:-84.240000px;}
.v2{vertical-align:-82.920000px;}
.v0{vertical-align:0.000000px;}
.ls37{letter-spacing:-0.900000px;}
.ls39{letter-spacing:-0.398400px;}
.ls12{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.ls36{letter-spacing:-0.180000px;}
.ls38{letter-spacing:-0.161400px;}
.ls35{letter-spacing:-0.028080px;}
.ls10{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.028080px;}
.ls45{letter-spacing:0.107400px;}
.ls25{letter-spacing:0.118080px;}
.ls3f{letter-spacing:0.129600px;}
.ls42{letter-spacing:0.180000px;}
.ls43{letter-spacing:0.206640px;}
.ls11{letter-spacing:0.216000px;}
.ls44{letter-spacing:0.259920px;}
.ls3b{letter-spacing:0.321600px;}
.ls3a{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.720000px;}
.ls14{letter-spacing:1.440000px;}
.ls9{letter-spacing:2.880000px;}
.ls20{letter-spacing:4.140000px;}
.ls1e{letter-spacing:4.860000px;}
.ls40{letter-spacing:5.556000px;}
.lsc{letter-spacing:6.480000px;}
.lsa{letter-spacing:7.200000px;}
.lsb{letter-spacing:7.920000px;}
.ls1{letter-spacing:8.640000px;}
.ls47{letter-spacing:9.180000px;}
.ls2{letter-spacing:9.360000px;}
.ls28{letter-spacing:10.080000px;}
.ls27{letter-spacing:10.620000px;}
.ls3e{letter-spacing:12.780000px;}
.lsf{letter-spacing:12.960000px;}
.ls0{letter-spacing:14.400000px;}
.ls41{letter-spacing:15.660000px;}
.lse{letter-spacing:16.560000px;}
.ls5{letter-spacing:17.280000px;}
.ls6{letter-spacing:18.000000px;}
.ls46{letter-spacing:18.540000px;}
.ls3{letter-spacing:18.720000px;}
.ls4{letter-spacing:19.440000px;}
.ls23{letter-spacing:20.700000px;}
.ls24{letter-spacing:20.820000px;}
.ls18{letter-spacing:21.420000px;}
.ls19{letter-spacing:22.140000px;}
.ls3c{letter-spacing:22.860000px;}
.ls21{letter-spacing:27.180000px;}
.ls22{letter-spacing:27.900000px;}
.ls30{letter-spacing:32.220000px;}
.ls2f{letter-spacing:32.940000px;}
.ls8{letter-spacing:33.840000px;}
.ls2e{letter-spacing:34.380000px;}
.ls7{letter-spacing:34.560000px;}
.ls2c{letter-spacing:35.076000px;}
.ls2d{letter-spacing:35.100000px;}
.ls33{letter-spacing:35.820000px;}
.ls2b{letter-spacing:42.300000px;}
.ls2a{letter-spacing:43.020000px;}
.ls32{letter-spacing:43.740000px;}
.ls31{letter-spacing:44.460000px;}
.ls26{letter-spacing:50.940000px;}
.ls49{letter-spacing:53.424000px;}
.ls29{letter-spacing:55.980000px;}
.ls1a{letter-spacing:61.020000px;}
.ls1b{letter-spacing:61.740000px;}
.ls15{letter-spacing:64.800000px;}
.ls17{letter-spacing:76.140000px;}
.ls16{letter-spacing:76.860000px;}
.ls1d{letter-spacing:77.580000px;}
.ls1c{letter-spacing:78.300000px;}
.ls3d{letter-spacing:121.500000px;}
.ls48{letter-spacing:1290.540000px;}
.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;}
}
.wsa{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.381600px;}
.wsc{word-spacing:-21.189600px;}
.wsd{word-spacing:-21.167400px;}
.ws0{word-spacing:-21.060000px;}
.ws7{word-spacing:-21.031920px;}
.ws8{word-spacing:-20.898600px;}
.ws9{word-spacing:-20.661600px;}
.ws3{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.516320px;}
._1{width:1.228320px;}
._7{width:2.360640px;}
._3{width:3.432000px;}
._8{width:4.560000px;}
._12{width:6.096000px;}
._4{width:7.104000px;}
._5{width:8.424000px;}
._2{width:9.912000px;}
._f{width:11.592000px;}
._e{width:12.960000px;}
._16{width:14.260320px;}
._6{width:15.912000px;}
._b{width:16.920000px;}
._25{width:17.956560px;}
._9{width:19.200000px;}
._11{width:21.048000px;}
._1e{width:22.416000px;}
._24{width:23.502960px;}
._a{width:24.552000px;}
._1c{width:25.776000px;}
._1f{width:27.432000px;}
._15{width:28.656000px;}
._26{width:30.081600px;}
._14{width:31.608000px;}
._13{width:32.760000px;}
._18{width:34.344000px;}
._22{width:35.567040px;}
._30{width:36.759600px;}
._2d{width:39.087360px;}
._17{width:40.248000px;}
._23{width:42.157440px;}
._10{width:43.416000px;}
._29{width:44.850480px;}
._2c{width:46.163520px;}
._37{width:47.258640px;}
._1d{width:50.272320px;}
._c{width:51.408000px;}
._d{width:52.416000px;}
._34{width:53.881680px;}
._1b{width:55.440000px;}
._2b{width:57.283200px;}
._2a{width:58.294080px;}
._19{width:63.576000px;}
._1a{width:64.872000px;}
._33{width:69.413760px;}
._2f{width:70.930080px;}
._2e{width:72.109440px;}
._36{width:75.142080px;}
._35{width:76.348800px;}
._20{width:79.305360px;}
._31{width:105.215760px;}
._32{width:106.230720px;}
._27{width:107.742960px;}
._28{width:109.090800px;}
._21{width:163.432080px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:35.856000px;}
.y2{bottom:55.476000px;}
.y8e{bottom:76.176000px;}
.y87{bottom:94.536000px;}
.y33{bottom:95.436000px;}
.y8d{bottom:108.396000px;}
.y32{bottom:116.136000px;}
.y86{bottom:122.256000px;}
.y63{bottom:124.236000px;}
.y8c{bottom:128.196000px;}
.y31{bottom:136.836000px;}
.y62{bottom:144.936000px;}
.y8b{bottom:147.996000px;}
.y85{bottom:149.976000px;}
.y8a{bottom:153.210000px;}
.y30{bottom:157.530000px;}
.y61{bottom:165.630000px;}
.y89{bottom:166.530000px;}
.y84{bottom:177.870000px;}
.y2f{bottom:178.230000px;}
.y60{bottom:186.330000px;}
.y2e{bottom:198.930000px;}
.y83{bottom:205.590000px;}
.y5f{bottom:207.030000px;}
.y2d{bottom:219.630000px;}
.y5e{bottom:227.730000px;}
.y82{bottom:233.310000px;}
.y2c{bottom:240.330000px;}
.y5d{bottom:248.430000px;}
.y2b{bottom:261.030000px;}
.y81{bottom:261.210000px;}
.y5c{bottom:269.130000px;}
.y2a{bottom:281.775000px;}
.y80{bottom:288.975000px;}
.y5b{bottom:289.875000px;}
.y29{bottom:302.475000px;}
.y5a{bottom:310.575000px;}
.y7f{bottom:316.695000px;}
.y28{bottom:323.175000px;}
.y59{bottom:331.275000px;}
.y27{bottom:343.875000px;}
.y7e{bottom:344.415000px;}
.y98{bottom:350.355000px;}
.y58{bottom:351.975000px;}
.y26{bottom:364.575000px;}
.y7d{bottom:372.315000px;}
.y57{bottom:372.675000px;}
.y97{bottom:382.935000px;}
.y25{bottom:385.275000px;}
.y56{bottom:393.375000px;}
.y7c{bottom:400.035000px;}
.y96{bottom:403.995000px;}
.y24{bottom:405.975000px;}
.y55{bottom:414.075000px;}
.y95{bottom:424.695000px;}
.y23{bottom:426.675000px;}
.y7b{bottom:427.755000px;}
.y54{bottom:434.775000px;}
.y94{bottom:445.395000px;}
.y22{bottom:447.375000px;}
.y53{bottom:455.475000px;}
.y7a{bottom:455.655000px;}
.y93{bottom:466.095000px;}
.y21{bottom:468.075000px;}
.y52{bottom:476.175000px;}
.y79{bottom:483.375000px;}
.y92{bottom:486.795000px;}
.y20{bottom:488.775000px;}
.y51{bottom:496.875000px;}
.y91{bottom:507.495000px;}
.y1f{bottom:509.475000px;}
.y78{bottom:511.095000px;}
.y50{bottom:517.575000px;}
.y90{bottom:528.195000px;}
.y1e{bottom:530.175000px;}
.y4f{bottom:538.275000px;}
.y77{bottom:538.815000px;}
.y1d{bottom:550.875000px;}
.y4e{bottom:558.975000px;}
.y76{bottom:566.745000px;}
.y8f{bottom:569.625000px;}
.y1c{bottom:571.605000px;}
.y4d{bottom:579.705000px;}
.y1b{bottom:592.305000px;}
.y75{bottom:594.465000px;}
.y4c{bottom:600.405000px;}
.y1a{bottom:613.005000px;}
.y4b{bottom:621.105000px;}
.y74{bottom:622.185000px;}
.y19{bottom:633.705000px;}
.y4a{bottom:641.805000px;}
.y73{bottom:649.905000px;}
.y18{bottom:654.405000px;}
.y49{bottom:662.505000px;}
.y17{bottom:675.105000px;}
.y72{bottom:677.805000px;}
.y48{bottom:683.205000px;}
.y16{bottom:695.805000px;}
.y47{bottom:703.905000px;}
.y71{bottom:705.525000px;}
.y15{bottom:716.505000px;}
.y46{bottom:724.605000px;}
.y70{bottom:733.245000px;}
.y14{bottom:737.205000px;}
.y45{bottom:745.305000px;}
.y13{bottom:757.905000px;}
.y6f{bottom:761.145000px;}
.y44{bottom:766.005000px;}
.y12{bottom:778.605000px;}
.y43{bottom:786.705000px;}
.y6e{bottom:788.865000px;}
.y11{bottom:799.305000px;}
.y42{bottom:807.405000px;}
.y6d{bottom:816.585000px;}
.y10{bottom:820.005000px;}
.y41{bottom:828.105000px;}
.yf{bottom:840.705000px;}
.y6c{bottom:844.305000px;}
.y40{bottom:848.850000px;}
.ye{bottom:861.450000px;}
.y3f{bottom:869.550000px;}
.y6b{bottom:872.250000px;}
.yd{bottom:882.150000px;}
.y3e{bottom:890.250000px;}
.y6a{bottom:899.970000px;}
.yc{bottom:902.850000px;}
.y3d{bottom:910.950000px;}
.yb{bottom:923.550000px;}
.y69{bottom:927.690000px;}
.y3c{bottom:931.650000px;}
.y3b{bottom:952.350000px;}
.y68{bottom:955.590000px;}
.ya{bottom:966.210000px;}
.y3a{bottom:973.050000px;}
.y67{bottom:983.310000px;}
.y9{bottom:986.910000px;}
.y39{bottom:993.750000px;}
.y8{bottom:1007.610000px;}
.y66{bottom:1011.030000px;}
.y38{bottom:1014.450000px;}
.y7{bottom:1028.310000px;}
.y37{bottom:1035.150000px;}
.y65{bottom:1038.750000px;}
.y6{bottom:1049.010000px;}
.y36{bottom:1055.850000px;}
.y64{bottom:1066.650000px;}
.y5{bottom:1070.250000px;}
.y88{bottom:1074.210000px;}
.y35{bottom:1076.550000px;}
.y4{bottom:1094.370000px;}
.y34{bottom:1097.250000px;}
.y1{bottom:1194.120000px;}
.hb{height:38.158594px;}
.hc{height:41.902031px;}
.ha{height:52.998047px;}
.hd{height:58.651172px;}
.h9{height:59.066719px;}
.h7{height:59.343750px;}
.he{height:59.439023px;}
.h2{height:65.884219px;}
.h6{height:70.628906px;}
.hf{height:70.664062px;}
.h11{height:71.613281px;}
.h3{height:72.562500px;}
.h4{height:72.846211px;}
.h10{height:74.004654px;}
.h8{height:82.676953px;}
.h5{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:42.479987px;}
.xb{left:84.959987px;}
.x13{left:89.855987px;}
.x14{left:116.855987px;}
.xc{left:121.175987px;}
.x4{left:123.695987px;}
.x11{left:127.475987px;}
.xd{left:130.175987px;}
.xe{left:137.735987px;}
.xa{left:139.175987px;}
.xf{left:215.129973px;}
.x10{left:221.969987px;}
.x7{left:280.874987px;}
.x12{left:301.034987px;}
.x6{left:323.174987px;}
.x8{left:351.614987px;}
.x2{left:375.554987px;}
.x5{left:389.414987px;}
.x3{left:457.094987px;}
.x9{left:829.409987px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v2{vertical-align:-73.706667pt;}
.v0{vertical-align:0.000000pt;}
.ls37{letter-spacing:-0.800000pt;}
.ls39{letter-spacing:-0.354133pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls36{letter-spacing:-0.160000pt;}
.ls38{letter-spacing:-0.143467pt;}
.ls35{letter-spacing:-0.024960pt;}
.ls10{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.024960pt;}
.ls45{letter-spacing:0.095467pt;}
.ls25{letter-spacing:0.104960pt;}
.ls3f{letter-spacing:0.115200pt;}
.ls42{letter-spacing:0.160000pt;}
.ls43{letter-spacing:0.183680pt;}
.ls11{letter-spacing:0.192000pt;}
.ls44{letter-spacing:0.231040pt;}
.ls3b{letter-spacing:0.285867pt;}
.ls3a{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls9{letter-spacing:2.560000pt;}
.ls20{letter-spacing:3.680000pt;}
.ls1e{letter-spacing:4.320000pt;}
.ls40{letter-spacing:4.938667pt;}
.lsc{letter-spacing:5.760000pt;}
.lsa{letter-spacing:6.400000pt;}
.lsb{letter-spacing:7.040000pt;}
.ls1{letter-spacing:7.680000pt;}
.ls47{letter-spacing:8.160000pt;}
.ls2{letter-spacing:8.320000pt;}
.ls28{letter-spacing:8.960000pt;}
.ls27{letter-spacing:9.440000pt;}
.ls3e{letter-spacing:11.360000pt;}
.lsf{letter-spacing:11.520000pt;}
.ls0{letter-spacing:12.800000pt;}
.ls41{letter-spacing:13.920000pt;}
.lse{letter-spacing:14.720000pt;}
.ls5{letter-spacing:15.360000pt;}
.ls6{letter-spacing:16.000000pt;}
.ls46{letter-spacing:16.480000pt;}
.ls3{letter-spacing:16.640000pt;}
.ls4{letter-spacing:17.280000pt;}
.ls23{letter-spacing:18.400000pt;}
.ls24{letter-spacing:18.506667pt;}
.ls18{letter-spacing:19.040000pt;}
.ls19{letter-spacing:19.680000pt;}
.ls3c{letter-spacing:20.320000pt;}
.ls21{letter-spacing:24.160000pt;}
.ls22{letter-spacing:24.800000pt;}
.ls30{letter-spacing:28.640000pt;}
.ls2f{letter-spacing:29.280000pt;}
.ls8{letter-spacing:30.080000pt;}
.ls2e{letter-spacing:30.560000pt;}
.ls7{letter-spacing:30.720000pt;}
.ls2c{letter-spacing:31.178667pt;}
.ls2d{letter-spacing:31.200000pt;}
.ls33{letter-spacing:31.840000pt;}
.ls2b{letter-spacing:37.600000pt;}
.ls2a{letter-spacing:38.240000pt;}
.ls32{letter-spacing:38.880000pt;}
.ls31{letter-spacing:39.520000pt;}
.ls26{letter-spacing:45.280000pt;}
.ls49{letter-spacing:47.488000pt;}
.ls29{letter-spacing:49.760000pt;}
.ls1a{letter-spacing:54.240000pt;}
.ls1b{letter-spacing:54.880000pt;}
.ls15{letter-spacing:57.600000pt;}
.ls17{letter-spacing:67.680000pt;}
.ls16{letter-spacing:68.320000pt;}
.ls1d{letter-spacing:68.960000pt;}
.ls1c{letter-spacing:69.600000pt;}
.ls3d{letter-spacing:108.000000pt;}
.ls48{letter-spacing:1147.146667pt;}
.wsa{word-spacing:-19.040000pt;}
.wsb{word-spacing:-19.005867pt;}
.wsc{word-spacing:-18.835200pt;}
.wsd{word-spacing:-18.815467pt;}
.ws0{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.695040pt;}
.ws8{word-spacing:-18.576533pt;}
.ws9{word-spacing:-18.365867pt;}
.ws3{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.347840pt;}
._1{width:1.091840pt;}
._7{width:2.098347pt;}
._3{width:3.050667pt;}
._8{width:4.053333pt;}
._12{width:5.418667pt;}
._4{width:6.314667pt;}
._5{width:7.488000pt;}
._2{width:8.810667pt;}
._f{width:10.304000pt;}
._e{width:11.520000pt;}
._16{width:12.675840pt;}
._6{width:14.144000pt;}
._b{width:15.040000pt;}
._25{width:15.961387pt;}
._9{width:17.066667pt;}
._11{width:18.709333pt;}
._1e{width:19.925333pt;}
._24{width:20.891520pt;}
._a{width:21.824000pt;}
._1c{width:22.912000pt;}
._1f{width:24.384000pt;}
._15{width:25.472000pt;}
._26{width:26.739200pt;}
._14{width:28.096000pt;}
._13{width:29.120000pt;}
._18{width:30.528000pt;}
._22{width:31.615147pt;}
._30{width:32.675200pt;}
._2d{width:34.744320pt;}
._17{width:35.776000pt;}
._23{width:37.473280pt;}
._10{width:38.592000pt;}
._29{width:39.867093pt;}
._2c{width:41.034240pt;}
._37{width:42.007680pt;}
._1d{width:44.686507pt;}
._c{width:45.696000pt;}
._d{width:46.592000pt;}
._34{width:47.894827pt;}
._1b{width:49.280000pt;}
._2b{width:50.918400pt;}
._2a{width:51.816960pt;}
._19{width:56.512000pt;}
._1a{width:57.664000pt;}
._33{width:61.701120pt;}
._2f{width:63.048960pt;}
._2e{width:64.097280pt;}
._36{width:66.792960pt;}
._35{width:67.865600pt;}
._20{width:70.493653pt;}
._31{width:93.525120pt;}
._32{width:94.427307pt;}
._27{width:95.771520pt;}
._28{width:96.969600pt;}
._21{width:145.272960pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:31.872000pt;}
.y2{bottom:49.312000pt;}
.y8e{bottom:67.712000pt;}
.y87{bottom:84.032000pt;}
.y33{bottom:84.832000pt;}
.y8d{bottom:96.352000pt;}
.y32{bottom:103.232000pt;}
.y86{bottom:108.672000pt;}
.y63{bottom:110.432000pt;}
.y8c{bottom:113.952000pt;}
.y31{bottom:121.632000pt;}
.y62{bottom:128.832000pt;}
.y8b{bottom:131.552000pt;}
.y85{bottom:133.312000pt;}
.y8a{bottom:136.186667pt;}
.y30{bottom:140.026667pt;}
.y61{bottom:147.226667pt;}
.y89{bottom:148.026667pt;}
.y84{bottom:158.106667pt;}
.y2f{bottom:158.426667pt;}
.y60{bottom:165.626667pt;}
.y2e{bottom:176.826667pt;}
.y83{bottom:182.746667pt;}
.y5f{bottom:184.026667pt;}
.y2d{bottom:195.226667pt;}
.y5e{bottom:202.426667pt;}
.y82{bottom:207.386667pt;}
.y2c{bottom:213.626667pt;}
.y5d{bottom:220.826667pt;}
.y2b{bottom:232.026667pt;}
.y81{bottom:232.186667pt;}
.y5c{bottom:239.226667pt;}
.y2a{bottom:250.466667pt;}
.y80{bottom:256.866667pt;}
.y5b{bottom:257.666667pt;}
.y29{bottom:268.866667pt;}
.y5a{bottom:276.066667pt;}
.y7f{bottom:281.506667pt;}
.y28{bottom:287.266667pt;}
.y59{bottom:294.466667pt;}
.y27{bottom:305.666667pt;}
.y7e{bottom:306.146667pt;}
.y98{bottom:311.426667pt;}
.y58{bottom:312.866667pt;}
.y26{bottom:324.066667pt;}
.y7d{bottom:330.946667pt;}
.y57{bottom:331.266667pt;}
.y97{bottom:340.386667pt;}
.y25{bottom:342.466667pt;}
.y56{bottom:349.666667pt;}
.y7c{bottom:355.586667pt;}
.y96{bottom:359.106667pt;}
.y24{bottom:360.866667pt;}
.y55{bottom:368.066667pt;}
.y95{bottom:377.506667pt;}
.y23{bottom:379.266667pt;}
.y7b{bottom:380.226667pt;}
.y54{bottom:386.466667pt;}
.y94{bottom:395.906667pt;}
.y22{bottom:397.666667pt;}
.y53{bottom:404.866667pt;}
.y7a{bottom:405.026667pt;}
.y93{bottom:414.306667pt;}
.y21{bottom:416.066667pt;}
.y52{bottom:423.266667pt;}
.y79{bottom:429.666667pt;}
.y92{bottom:432.706667pt;}
.y20{bottom:434.466667pt;}
.y51{bottom:441.666667pt;}
.y91{bottom:451.106667pt;}
.y1f{bottom:452.866667pt;}
.y78{bottom:454.306667pt;}
.y50{bottom:460.066667pt;}
.y90{bottom:469.506667pt;}
.y1e{bottom:471.266667pt;}
.y4f{bottom:478.466667pt;}
.y77{bottom:478.946667pt;}
.y1d{bottom:489.666667pt;}
.y4e{bottom:496.866667pt;}
.y76{bottom:503.773333pt;}
.y8f{bottom:506.333333pt;}
.y1c{bottom:508.093333pt;}
.y4d{bottom:515.293333pt;}
.y1b{bottom:526.493333pt;}
.y75{bottom:528.413333pt;}
.y4c{bottom:533.693333pt;}
.y1a{bottom:544.893333pt;}
.y4b{bottom:552.093333pt;}
.y74{bottom:553.053333pt;}
.y19{bottom:563.293333pt;}
.y4a{bottom:570.493333pt;}
.y73{bottom:577.693333pt;}
.y18{bottom:581.693333pt;}
.y49{bottom:588.893333pt;}
.y17{bottom:600.093333pt;}
.y72{bottom:602.493333pt;}
.y48{bottom:607.293333pt;}
.y16{bottom:618.493333pt;}
.y47{bottom:625.693333pt;}
.y71{bottom:627.133333pt;}
.y15{bottom:636.893333pt;}
.y46{bottom:644.093333pt;}
.y70{bottom:651.773333pt;}
.y14{bottom:655.293333pt;}
.y45{bottom:662.493333pt;}
.y13{bottom:673.693333pt;}
.y6f{bottom:676.573333pt;}
.y44{bottom:680.893333pt;}
.y12{bottom:692.093333pt;}
.y43{bottom:699.293333pt;}
.y6e{bottom:701.213333pt;}
.y11{bottom:710.493333pt;}
.y42{bottom:717.693333pt;}
.y6d{bottom:725.853333pt;}
.y10{bottom:728.893333pt;}
.y41{bottom:736.093333pt;}
.yf{bottom:747.293333pt;}
.y6c{bottom:750.493333pt;}
.y40{bottom:754.533333pt;}
.ye{bottom:765.733333pt;}
.y3f{bottom:772.933333pt;}
.y6b{bottom:775.333333pt;}
.yd{bottom:784.133333pt;}
.y3e{bottom:791.333333pt;}
.y6a{bottom:799.973333pt;}
.yc{bottom:802.533333pt;}
.y3d{bottom:809.733333pt;}
.yb{bottom:820.933333pt;}
.y69{bottom:824.613333pt;}
.y3c{bottom:828.133333pt;}
.y3b{bottom:846.533333pt;}
.y68{bottom:849.413333pt;}
.ya{bottom:858.853333pt;}
.y3a{bottom:864.933333pt;}
.y67{bottom:874.053333pt;}
.y9{bottom:877.253333pt;}
.y39{bottom:883.333333pt;}
.y8{bottom:895.653333pt;}
.y66{bottom:898.693333pt;}
.y38{bottom:901.733333pt;}
.y7{bottom:914.053333pt;}
.y37{bottom:920.133333pt;}
.y65{bottom:923.333333pt;}
.y6{bottom:932.453333pt;}
.y36{bottom:938.533333pt;}
.y64{bottom:948.133333pt;}
.y5{bottom:951.333333pt;}
.y88{bottom:954.853333pt;}
.y35{bottom:956.933333pt;}
.y4{bottom:972.773333pt;}
.y34{bottom:975.333333pt;}
.y1{bottom:1061.440000pt;}
.hb{height:33.918750pt;}
.hc{height:37.246250pt;}
.ha{height:47.109375pt;}
.hd{height:52.134375pt;}
.h9{height:52.503750pt;}
.h7{height:52.750000pt;}
.he{height:52.834688pt;}
.h2{height:58.563750pt;}
.h6{height:62.781250pt;}
.hf{height:62.812500pt;}
.h11{height:63.656250pt;}
.h3{height:64.500000pt;}
.h4{height:64.752187pt;}
.h10{height:65.781915pt;}
.h8{height:73.490625pt;}
.h5{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:37.759988pt;}
.xb{left:75.519988pt;}
.x13{left:79.871988pt;}
.x14{left:103.871988pt;}
.xc{left:107.711988pt;}
.x4{left:109.951988pt;}
.x11{left:113.311988pt;}
.xd{left:115.711988pt;}
.xe{left:122.431988pt;}
.xa{left:123.711988pt;}
.xf{left:191.226643pt;}
.x10{left:197.306655pt;}
.x7{left:249.666655pt;}
.x12{left:267.586655pt;}
.x6{left:287.266655pt;}
.x8{left:312.546655pt;}
.x2{left:333.826655pt;}
.x5{left:346.146655pt;}
.x3{left:406.306655pt;}
.x9{left:737.253322pt;}
}




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