
    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_4f15a958266f0621f15e6f2a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_c3977d40cf57850eb08a7e13.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_8d0cf5c16c850e46917e41bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_7146f595f4d1592101a00d10.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.888000;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_6385d5e44b926f875983204f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_2339c4c1f40aba22cb74d008.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_215b124070228952f710a777.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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_8ffdcaa2cc649715173d67e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.989000;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_57bee1ffcb54423af031b3bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_baeb8ded3ceee5ab97655fa7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946000;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_39c72ad2aab4cd07d180614f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.888000;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:ffc;src:url('chunks/assets/font_e1c9b98515e5ddef7714e019.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.963379;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:ffd;src:url('chunks/assets/font_87bc95254abd74f38a8794cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.031738;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:ffe;src:url('chunks/assets/font_b97581f5b5f31508b1411bfb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.759766;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:fff;src:url('chunks/assets/font_faad64adc6cf1a6b8f537923.woff2')format("woff");}.fff{font-family:fff;line-height:0.730469;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:ff10;src:url('chunks/assets/font_c1ec03c822033195ce89ba66.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.963379;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:ff11;src:url('chunks/assets/font_fc4f910db534894cc54c87aa.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.031738;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:ff12;src:url('chunks/assets/font_e4ed2ef0eb4a0fee52c030f5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.031738;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:ff13;src:url('chunks/assets/font_de6320761cf456698dcc96ca.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.892090;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:ff14;src:url('chunks/assets/font_faad64adc6cf1a6b8f537923.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.730469;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:ff15;src:url('chunks/assets/font_fc4f910db534894cc54c87aa.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.031738;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:ff16;src:url('chunks/assets/font_c1ec03c822033195ce89ba66.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.963379;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:ff17;src:url('chunks/assets/font_e4ed2ef0eb4a0fee52c030f5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.031738;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:ff18;src:url('chunks/assets/font_c49c0a848c68660cecde2b92.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls6{letter-spacing:-2.574000px;}
.ls3{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.516000px;}
.ls7{letter-spacing:0.660000px;}
.ls1{letter-spacing:1.809600px;}
.ls2{letter-spacing:2.520000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(210,32,39),0 0.015em rgb(210,32,39),0.015em 0 rgb(210,32,39),0 -0.015em  rgb(210,32,39);}
.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(210,32,39);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-17.094000px;}
.ws13{word-spacing:-17.028000px;}
.ws2{word-spacing:-16.962000px;}
.ws9{word-spacing:-16.434000px;}
.ws5{word-spacing:-16.368000px;}
.ws0{word-spacing:-16.200000px;}
.ws8{word-spacing:-16.170000px;}
.ws3{word-spacing:-15.420000px;}
.ws4{word-spacing:-14.940000px;}
.wse{word-spacing:-14.880000px;}
.wsb{word-spacing:-14.700000px;}
.ws7{word-spacing:-9.542544px;}
.wsa{word-spacing:-8.675040px;}
.ws6{word-spacing:-2.592000px;}
.ws14{word-spacing:-0.660000px;}
.wsf{word-spacing:-0.144000px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.600000px;}
.ws10{word-spacing:2.574000px;}
.wsc{word-spacing:5.148000px;}
.ws11{word-spacing:7.062000px;}
._7{margin-left:-21.814800px;}
._6{margin-left:-19.987200px;}
._a{margin-left:-16.618200px;}
._5{margin-left:-9.948000px;}
._2{margin-left:-7.804800px;}
._d{margin-left:-6.625800px;}
._3{margin-left:-5.102400px;}
._1{margin-left:-3.862800px;}
._0{margin-left:-1.990800px;}
._4{width:1.083600px;}
._8{width:2.457000px;}
._9{width:3.520800px;}
._b{width:5.021400px;}
._c{width:6.481200px;}
._e{width:7.595328px;}
._13{width:9.704400px;}
._12{width:10.848000px;}
._15{width:12.632400px;}
._14{width:18.004800px;}
._f{width:21.124200px;}
._10{width:22.310400px;}
._11{width:23.418600px;}
.fc2{color:transparent;}
.fc1{color:rgb(48,88,159);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs8{font-size:38.478000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:114.000000px;}
.fs5{font-size:126.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:45.129900px;}
.y58{bottom:45.165300px;}
.y53{bottom:97.795350px;}
.y6a{bottom:102.790350px;}
.y12{bottom:109.849650px;}
.y32{bottom:114.234450px;}
.y52{bottom:115.795350px;}
.y69{bottom:120.790500px;}
.y11{bottom:131.449650px;}
.y31{bottom:134.034450px;}
.y51{bottom:138.790350px;}
.y68{bottom:138.790650px;}
.y30{bottom:153.834450px;}
.y88{bottom:155.365050px;}
.y50{bottom:156.790500px;}
.y67{bottom:156.790800px;}
.y4f{bottom:169.795650px;}
.y2f{bottom:173.634450px;}
.y66{bottom:174.790950px;}
.y87{bottom:175.165050px;}
.y4e{bottom:187.795650px;}
.y4{bottom:188.629200px;}
.y65{bottom:192.791100px;}
.y2e{bottom:193.434450px;}
.y86{bottom:194.965050px;}
.y4d{bottom:205.795650px;}
.y3{bottom:210.229200px;}
.y64{bottom:210.791250px;}
.y2d{bottom:213.234450px;}
.y85{bottom:219.017100px;}
.y4c{bottom:223.795650px;}
.y63{bottom:228.791400px;}
.y2{bottom:231.829200px;}
.y2c{bottom:233.034450px;}
.y84{bottom:238.817100px;}
.y4b{bottom:246.790650px;}
.y2b{bottom:252.834450px;}
.y83{bottom:258.617100px;}
.y4a{bottom:264.790800px;}
.y62{bottom:268.453350px;}
.y2a{bottom:272.634450px;}
.y82{bottom:278.417100px;}
.y49{bottom:282.790950px;}
.y61{bottom:288.253350px;}
.y29{bottom:292.434450px;}
.y81{bottom:298.217100px;}
.y48{bottom:300.791100px;}
.y60{bottom:308.053200px;}
.y28{bottom:312.234450px;}
.y80{bottom:318.017100px;}
.ye{bottom:326.852550px;}
.y27{bottom:332.034450px;}
.y7f{bottom:342.069000px;}
.y47{bottom:357.617100px;}
.y7e{bottom:361.869000px;}
.y10{bottom:374.904600px;}
.y46{bottom:377.417100px;}
.y7d{bottom:381.669000px;}
.y70{bottom:394.978350px;}
.y45{bottom:397.217100px;}
.y7c{bottom:405.721050px;}
.y6f{bottom:412.978350px;}
.y44{bottom:417.017100px;}
.yd{bottom:422.628900px;}
.y6e{bottom:430.978350px;}
.y43{bottom:441.069000px;}
.y6d{bottom:448.978350px;}
.y7b{bottom:453.825000px;}
.yc{bottom:455.028900px;}
.y42{bottom:460.869000px;}
.y6c{bottom:466.978350px;}
.y7a{bottom:473.625000px;}
.y26{bottom:475.280250px;}
.y41{bottom:484.921050px;}
.yb{bottom:487.428900px;}
.y79{bottom:493.425000px;}
.y25{bottom:495.080250px;}
.y40{bottom:504.721050px;}
.y78{bottom:513.225000px;}
.ya{bottom:519.828900px;}
.y3f{bottom:524.521050px;}
.y24{bottom:532.880100px;}
.y77{bottom:533.024850px;}
.y3e{bottom:544.321050px;}
.y23{bottom:550.880100px;}
.y76{bottom:552.825000px;}
.y3d{bottom:564.121050px;}
.y22{bottom:568.880100px;}
.y3c{bottom:583.921050px;}
.yf{bottom:589.561200px;}
.y3b{bottom:603.721050px;}
.y89{bottom:620.167350px;}
.y5f{bottom:620.728800px;}
.y21{bottom:628.280250px;}
.y9{bottom:637.599750px;}
.y5e{bottom:640.528950px;}
.y20{bottom:646.280250px;}
.y5d{bottom:660.328800px;}
.y54{bottom:663.005850px;}
.y1f{bottom:664.280250px;}
.y8{bottom:673.599750px;}
.y3a{bottom:675.876900px;}
.y5c{bottom:680.128950px;}
.y5b{bottom:699.928950px;}
.y1e{bottom:707.480100px;}
.y7{bottom:709.599750px;}
.y5a{bottom:719.728800px;}
.y1d{bottom:745.436100px;}
.y6{bottom:745.599750px;}
.y1c{bottom:770.636100px;}
.y5{bottom:781.599750px;}
.y6b{bottom:792.324900px;}
.y1b{bottom:795.836100px;}
.y1a{bottom:853.436100px;}
.y19{bottom:871.436100px;}
.y18{bottom:889.436100px;}
.y17{bottom:929.688150px;}
.y16{bottom:983.347800px;}
.y15{bottom:1021.147950px;}
.y75{bottom:1033.864350px;}
.y74{bottom:1053.664350px;}
.y14{bottom:1058.947950px;}
.y73{bottom:1073.464350px;}
.y8b{bottom:1089.012300px;}
.y72{bottom:1093.264350px;}
.y13{bottom:1096.747950px;}
.y8a{bottom:1108.812450px;}
.y71{bottom:1113.064200px;}
.y39{bottom:1132.864350px;}
.y38{bottom:1152.664350px;}
.y1{bottom:1153.541250px;}
.y35{bottom:1188.134700px;}
.y57{bottom:1189.634700px;}
.y37{bottom:1195.334700px;}
.y59{bottom:1198.334700px;}
.y34{bottom:1209.734550px;}
.y56{bottom:1211.234550px;}
.y33{bottom:1231.334700px;}
.y55{bottom:1232.834700px;}
.h14{height:28.154766px;}
.he{height:44.820000px;}
.h10{height:45.000000px;}
.hf{height:48.134766px;}
.hc{height:49.302000px;}
.h13{height:49.500000px;}
.h12{height:51.890625px;}
.h11{height:52.948242px;}
.h3{height:54.738281px;}
.h9{height:57.761719px;}
.h8{height:60.816000px;}
.hd{height:66.108000px;}
.h2{height:67.388672px;}
.h6{height:70.728000px;}
.h5{height:78.192000px;}
.hb{height:80.136000px;}
.h7{height:84.996000px;}
.ha{height:99.162000px;}
.h4{height:103.884000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:95.669250px;}
.x17{left:97.795200px;}
.x1b{left:102.533100px;}
.x24{left:106.299150px;}
.x9{left:117.553050px;}
.x18{left:119.055150px;}
.x8{left:127.790250px;}
.x3{left:130.748100px;}
.x10{left:147.011100px;}
.xa{left:159.746100px;}
.x11{left:179.466000px;}
.x2{left:242.905500px;}
.x20{left:248.633250px;}
.x23{left:252.665250px;}
.x12{left:254.487600px;}
.x25{left:257.468100px;}
.x22{left:267.335550px;}
.x21{left:271.517700px;}
.x1c{left:281.980950px;}
.xb{left:317.418000px;}
.xc{left:318.923400px;}
.x13{left:336.449250px;}
.x1a{left:338.370000px;}
.x1f{left:353.978250px;}
.x14{left:379.076700px;}
.x6{left:400.122300px;}
.x7{left:406.494300px;}
.xd{left:471.582600px;}
.x4{left:515.129850px;}
.xf{left:522.880050px;}
.xe{left:541.326150px;}
.x16{left:549.550950px;}
.x5{left:559.712100px;}
.x15{left:562.465500px;}
.x1e{left:661.641750px;}
.x19{left:686.109300px;}
.x1d{left:775.078950px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls6{letter-spacing:-2.288000pt;}
.ls3{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.458667pt;}
.ls7{letter-spacing:0.586667pt;}
.ls1{letter-spacing:1.608533pt;}
.ls2{letter-spacing:2.240000pt;}
.ws12{word-spacing:-15.194667pt;}
.ws13{word-spacing:-15.136000pt;}
.ws2{word-spacing:-15.077333pt;}
.ws9{word-spacing:-14.608000pt;}
.ws5{word-spacing:-14.549333pt;}
.ws0{word-spacing:-14.400000pt;}
.ws8{word-spacing:-14.373333pt;}
.ws3{word-spacing:-13.706667pt;}
.ws4{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.226667pt;}
.wsb{word-spacing:-13.066667pt;}
.ws7{word-spacing:-8.482261pt;}
.wsa{word-spacing:-7.711147pt;}
.ws6{word-spacing:-2.304000pt;}
.ws14{word-spacing:-0.586667pt;}
.wsf{word-spacing:-0.128000pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.533333pt;}
.ws10{word-spacing:2.288000pt;}
.wsc{word-spacing:4.576000pt;}
.ws11{word-spacing:6.277333pt;}
._7{margin-left:-19.390933pt;}
._6{margin-left:-17.766400pt;}
._a{margin-left:-14.771733pt;}
._5{margin-left:-8.842667pt;}
._2{margin-left:-6.937600pt;}
._d{margin-left:-5.889600pt;}
._3{margin-left:-4.535467pt;}
._1{margin-left:-3.433600pt;}
._0{margin-left:-1.769600pt;}
._4{width:0.963200pt;}
._8{width:2.184000pt;}
._9{width:3.129600pt;}
._b{width:4.463467pt;}
._c{width:5.761067pt;}
._e{width:6.751403pt;}
._13{width:8.626133pt;}
._12{width:9.642667pt;}
._15{width:11.228800pt;}
._14{width:16.004267pt;}
._f{width:18.777067pt;}
._10{width:19.831467pt;}
._11{width:20.816533pt;}
.fs9{font-size:31.093333pt;}
.fs8{font-size:34.202667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:101.333333pt;}
.fs5{font-size:112.000000pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:40.115467pt;}
.y58{bottom:40.146933pt;}
.y53{bottom:86.929200pt;}
.y6a{bottom:91.369200pt;}
.y12{bottom:97.644133pt;}
.y32{bottom:101.541733pt;}
.y52{bottom:102.929200pt;}
.y69{bottom:107.369333pt;}
.y11{bottom:116.844133pt;}
.y31{bottom:119.141733pt;}
.y51{bottom:123.369200pt;}
.y68{bottom:123.369467pt;}
.y30{bottom:136.741733pt;}
.y88{bottom:138.102267pt;}
.y50{bottom:139.369333pt;}
.y67{bottom:139.369600pt;}
.y4f{bottom:150.929467pt;}
.y2f{bottom:154.341733pt;}
.y66{bottom:155.369733pt;}
.y87{bottom:155.702267pt;}
.y4e{bottom:166.929467pt;}
.y4{bottom:167.670400pt;}
.y65{bottom:171.369867pt;}
.y2e{bottom:171.941733pt;}
.y86{bottom:173.302267pt;}
.y4d{bottom:182.929467pt;}
.y3{bottom:186.870400pt;}
.y64{bottom:187.370000pt;}
.y2d{bottom:189.541733pt;}
.y85{bottom:194.681867pt;}
.y4c{bottom:198.929467pt;}
.y63{bottom:203.370133pt;}
.y2{bottom:206.070400pt;}
.y2c{bottom:207.141733pt;}
.y84{bottom:212.281867pt;}
.y4b{bottom:219.369467pt;}
.y2b{bottom:224.741733pt;}
.y83{bottom:229.881867pt;}
.y4a{bottom:235.369600pt;}
.y62{bottom:238.625200pt;}
.y2a{bottom:242.341733pt;}
.y82{bottom:247.481867pt;}
.y49{bottom:251.369733pt;}
.y61{bottom:256.225200pt;}
.y29{bottom:259.941733pt;}
.y81{bottom:265.081867pt;}
.y48{bottom:267.369867pt;}
.y60{bottom:273.825067pt;}
.y28{bottom:277.541733pt;}
.y80{bottom:282.681867pt;}
.ye{bottom:290.535600pt;}
.y27{bottom:295.141733pt;}
.y7f{bottom:304.061333pt;}
.y47{bottom:317.881867pt;}
.y7e{bottom:321.661333pt;}
.y10{bottom:333.248533pt;}
.y46{bottom:335.481867pt;}
.y7d{bottom:339.261333pt;}
.y70{bottom:351.091867pt;}
.y45{bottom:353.081867pt;}
.y7c{bottom:360.640933pt;}
.y6f{bottom:367.091867pt;}
.y44{bottom:370.681867pt;}
.yd{bottom:375.670133pt;}
.y6e{bottom:383.091867pt;}
.y43{bottom:392.061333pt;}
.y6d{bottom:399.091867pt;}
.y7b{bottom:403.400000pt;}
.yc{bottom:404.470133pt;}
.y42{bottom:409.661333pt;}
.y6c{bottom:415.091867pt;}
.y7a{bottom:421.000000pt;}
.y26{bottom:422.471333pt;}
.y41{bottom:431.040933pt;}
.yb{bottom:433.270133pt;}
.y79{bottom:438.600000pt;}
.y25{bottom:440.071333pt;}
.y40{bottom:448.640933pt;}
.y78{bottom:456.200000pt;}
.ya{bottom:462.070133pt;}
.y3f{bottom:466.240933pt;}
.y24{bottom:473.671200pt;}
.y77{bottom:473.799867pt;}
.y3e{bottom:483.840933pt;}
.y23{bottom:489.671200pt;}
.y76{bottom:491.400000pt;}
.y3d{bottom:501.440933pt;}
.y22{bottom:505.671200pt;}
.y3c{bottom:519.040933pt;}
.yf{bottom:524.054400pt;}
.y3b{bottom:536.640933pt;}
.y89{bottom:551.259867pt;}
.y5f{bottom:551.758933pt;}
.y21{bottom:558.471333pt;}
.y9{bottom:566.755333pt;}
.y5e{bottom:569.359067pt;}
.y20{bottom:574.471333pt;}
.y5d{bottom:586.958933pt;}
.y54{bottom:589.338533pt;}
.y1f{bottom:590.471333pt;}
.y8{bottom:598.755333pt;}
.y3a{bottom:600.779467pt;}
.y5c{bottom:604.559067pt;}
.y5b{bottom:622.159067pt;}
.y1e{bottom:628.871200pt;}
.y7{bottom:630.755333pt;}
.y5a{bottom:639.758933pt;}
.y1d{bottom:662.609867pt;}
.y6{bottom:662.755333pt;}
.y1c{bottom:685.009867pt;}
.y5{bottom:694.755333pt;}
.y6b{bottom:704.288800pt;}
.y1b{bottom:707.409867pt;}
.y1a{bottom:758.609867pt;}
.y19{bottom:774.609867pt;}
.y18{bottom:790.609867pt;}
.y17{bottom:826.389467pt;}
.y16{bottom:874.086933pt;}
.y15{bottom:907.687067pt;}
.y75{bottom:918.990533pt;}
.y74{bottom:936.590533pt;}
.y14{bottom:941.287067pt;}
.y73{bottom:954.190533pt;}
.y8b{bottom:968.010933pt;}
.y72{bottom:971.790533pt;}
.y13{bottom:974.887067pt;}
.y8a{bottom:985.611067pt;}
.y71{bottom:989.390400pt;}
.y39{bottom:1006.990533pt;}
.y38{bottom:1024.590533pt;}
.y1{bottom:1025.370000pt;}
.y35{bottom:1056.119733pt;}
.y57{bottom:1057.453067pt;}
.y37{bottom:1062.519733pt;}
.y59{bottom:1065.186400pt;}
.y34{bottom:1075.319600pt;}
.y56{bottom:1076.652933pt;}
.y33{bottom:1094.519733pt;}
.y55{bottom:1095.853067pt;}
.h14{height:25.026458pt;}
.he{height:39.840000pt;}
.h10{height:40.000000pt;}
.hf{height:42.786458pt;}
.hc{height:43.824000pt;}
.h13{height:44.000000pt;}
.h12{height:46.125000pt;}
.h11{height:47.065104pt;}
.h3{height:48.656250pt;}
.h9{height:51.343750pt;}
.h8{height:54.058667pt;}
.hd{height:58.762667pt;}
.h2{height:59.901042pt;}
.h6{height:62.869333pt;}
.h5{height:69.504000pt;}
.hb{height:71.232000pt;}
.h7{height:75.552000pt;}
.ha{height:88.144000pt;}
.h4{height:92.341333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:85.039333pt;}
.x17{left:86.929067pt;}
.x1b{left:91.140533pt;}
.x24{left:94.488133pt;}
.x9{left:104.491600pt;}
.x18{left:105.826800pt;}
.x8{left:113.591333pt;}
.x3{left:116.220533pt;}
.x10{left:130.676533pt;}
.xa{left:141.996533pt;}
.x11{left:159.525333pt;}
.x2{left:215.916000pt;}
.x20{left:221.007333pt;}
.x23{left:224.591333pt;}
.x12{left:226.211200pt;}
.x25{left:228.860533pt;}
.x22{left:237.631600pt;}
.x21{left:241.349067pt;}
.x1c{left:250.649733pt;}
.xb{left:282.149333pt;}
.xc{left:283.487467pt;}
.x13{left:299.066000pt;}
.x1a{left:300.773333pt;}
.x1f{left:314.647333pt;}
.x14{left:336.957067pt;}
.x6{left:355.664267pt;}
.x7{left:361.328267pt;}
.xd{left:419.184533pt;}
.x4{left:457.893200pt;}
.xf{left:464.782267pt;}
.xe{left:481.178800pt;}
.x16{left:488.489733pt;}
.x5{left:497.521867pt;}
.x15{left:499.969333pt;}
.x1e{left:588.126000pt;}
.x19{left:609.874933pt;}
.x1d{left:688.959067pt;}
}




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