
    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_8044cd222f9e7d8434669828.woff')format("woff");}.ff1{font-family:ff1;line-height:1.051000;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_83cafbe992c89bcbefa5c4eb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.014500;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_3eef281df051384a7e801522.woff')format("woff");}.ff3{font-family:ff3;line-height:1.144000;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_d6764f09aae263c3d15e044c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.769043;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_7ecefb68787f156950b53df3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_0682a47e3acb86ff34234919.woff')format("woff");}.ff6{font-family:ff6;line-height:0.961914;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_89d0146118ce0c47895f0a83.woff')format("woff");}.ff7{font-family:ff7;line-height:1.144000;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_ec24aa8c7ea0d524e44957d6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.051000;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_d86acbc1dde610c05e9900e8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.030500;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_7352ca8615ea56a543a4e7c5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.063500;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_fd8dc7a0527ac5dcdc79ee42.woff')format("woff");}.ffb{font-family:ffb;line-height:1.030500;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_0e72d2c59acfc15d0418f664.woff')format("woff");}.ffc{font-family:ffc;line-height:1.063500;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);}
.v8{vertical-align:-31.620000px;}
.v3{vertical-align:-27.720000px;}
.v6{vertical-align:-22.620000px;}
.v2{vertical-align:-18.180000px;}
.v4{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.500000px;}
.v9{vertical-align:27.000000px;}
.v7{vertical-align:31.500000px;}
.va{vertical-align:43.350000px;}
.v1{vertical-align:54.300000px;}
.ls30{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.164000px;}
.ls1c{letter-spacing:-1.128000px;}
.ls28{letter-spacing:-0.954000px;}
.ls2f{letter-spacing:-0.858000px;}
.ls2a{letter-spacing:-0.804000px;}
.ls1b{letter-spacing:-0.690000px;}
.ls1{letter-spacing:-0.076200px;}
.lse{letter-spacing:-0.037500px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.007680px;}
.ls25{letter-spacing:0.093000px;}
.ls24{letter-spacing:0.153000px;}
.ls32{letter-spacing:0.157800px;}
.ls5{letter-spacing:0.240000px;}
.ls2c{letter-spacing:0.305400px;}
.ls26{letter-spacing:0.324450px;}
.ls6{letter-spacing:0.459900px;}
.ls20{letter-spacing:0.483000px;}
.ls7{letter-spacing:0.535500px;}
.ls1d{letter-spacing:0.543000px;}
.ls17{letter-spacing:0.570000px;}
.ls22{letter-spacing:0.613200px;}
.ls21{letter-spacing:0.690000px;}
.ls23{letter-spacing:1.710000px;}
.lsa{letter-spacing:1.728000px;}
.ls29{letter-spacing:2.418000px;}
.ls2d{letter-spacing:2.448000px;}
.ls2e{letter-spacing:2.454000px;}
.ls2b{letter-spacing:2.568000px;}
.ls8{letter-spacing:2.724000px;}
.ls9{letter-spacing:3.072000px;}
.ls14{letter-spacing:19.568850px;}
.ls16{letter-spacing:19.688850px;}
.ls13{letter-spacing:21.008850px;}
.ls15{letter-spacing:21.188850px;}
.ls31{letter-spacing:22.233000px;}
.ls1e{letter-spacing:22.443000px;}
.ls18{letter-spacing:22.470000px;}
.ls3{letter-spacing:25.454400px;}
.ls27{letter-spacing:28.053000px;}
.ls11{letter-spacing:78.984000px;}
.lsd{letter-spacing:96.284550px;}
.lsb{letter-spacing:98.970000px;}
.ls33{letter-spacing:99.060000px;}
.ls2{letter-spacing:99.270000px;}
.ls4{letter-spacing:99.360000px;}
.ls19{letter-spacing:100.860000px;}
.lsc{letter-spacing:100.890000px;}
.ls1a{letter-spacing:100.950000px;}
.ls10{letter-spacing:100.980000px;}
.ls12{letter-spacing:101.130000px;}
.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;}
}
.ws23{word-spacing:-33.552000px;}
.ws20{word-spacing:-30.140400px;}
.ws1c{word-spacing:-26.622300px;}
.ws1e{word-spacing:-26.604900px;}
.ws1d{word-spacing:-26.316900px;}
.ws1b{word-spacing:-25.512900px;}
.ws1a{word-spacing:-25.362900px;}
.ws2{word-spacing:-24.154200px;}
.ws8{word-spacing:-23.078400px;}
.ws24{word-spacing:-22.064250px;}
.ws15{word-spacing:-21.914130px;}
.ws11{word-spacing:-21.906450px;}
.ws7{word-spacing:-21.697950px;}
.ws5{word-spacing:-21.095100px;}
.ws13{word-spacing:-20.814900px;}
.ws22{word-spacing:-20.812950px;}
.ws21{word-spacing:-19.991400px;}
.ws0{word-spacing:-19.622400px;}
.ws6{word-spacing:-18.625950px;}
.wsd{word-spacing:-18.470400px;}
.ws9{word-spacing:-17.532450px;}
.ws17{word-spacing:-13.158450px;}
.wsc{word-spacing:-0.779700px;}
.ws1f{word-spacing:-0.384750px;}
.ws1{word-spacing:-0.108150px;}
.wsa{word-spacing:-0.072150px;}
.wse{word-spacing:-0.072000px;}
.ws12{word-spacing:-0.032400px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:1.265550px;}
.wsb{word-spacing:1.628850px;}
.wsf{word-spacing:2.171100px;}
.ws4{word-spacing:23.797200px;}
.ws19{word-spacing:52.370850px;}
.ws14{word-spacing:64.195350px;}
.ws18{word-spacing:82.504350px;}
.ws16{word-spacing:82.945350px;}
._6{margin-left:-4.796400px;}
._1{margin-left:-3.426000px;}
._7{margin-left:-2.398200px;}
._0{margin-left:-1.113450px;}
._3{width:1.113450px;}
._2{width:2.312550px;}
._5{width:3.511650px;}
._9{width:4.718100px;}
._15{width:6.140250px;}
._4{width:18.430050px;}
._12{width:19.758450px;}
._11{width:22.464000px;}
._f{width:23.910750px;}
._10{width:25.306050px;}
._b{width:27.416700px;}
._14{width:49.584600px;}
._a{width:120.884400px;}
._e{width:509.340450px;}
._c{width:553.430550px;}
._8{width:930.698250px;}
._d{width:1028.026950px;}
._13{width:1287.927150px;}
.fca{color:rgb(255,0,0);}
.fc9{color:rgb(236,127,13);}
.fc8{color:rgb(106,164,200);}
.fcb{color:rgb(47,133,76);}
.fc6{color:rgb(97,152,158);}
.fc3{color:transparent;}
.fc7{color:rgb(255,218,185);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(26,26,26);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(33,33,33);}
.fs14{font-size:54.150000px;}
.fs12{font-size:58.500000px;}
.fs13{font-size:58.650000px;}
.fsc{font-size:63.000000px;}
.fse{font-size:67.650000px;}
.fs11{font-size:72.000000px;}
.fs10{font-size:72.150000px;}
.fsf{font-size:76.500000px;}
.fs1{font-size:76.650000px;}
.fs0{font-size:85.650000px;}
.fs15{font-size:85.800000px;}
.fsb{font-size:90.150000px;}
.fsa{font-size:90.300000px;}
.fs6{font-size:94.650000px;}
.fs7{font-size:94.800000px;}
.fs4{font-size:108.150000px;}
.fs5{font-size:108.300000px;}
.fs8{font-size:121.800000px;}
.fs9{font-size:139.800000px;}
.fsd{font-size:157.800000px;}
.fs3{font-size:252.450000px;}
.fs2{font-size:252.600000px;}
.y0{bottom:0.000000px;}
.y20{bottom:8.137500px;}
.y6e{bottom:12.075000px;}
.y16{bottom:15.112500px;}
.yd{bottom:16.162500px;}
.y4e{bottom:17.812500px;}
.y1e{bottom:22.612500px;}
.y40{bottom:22.950000px;}
.y27{bottom:25.537500px;}
.y4c{bottom:25.650000px;}
.y82{bottom:32.850000px;}
.y3f{bottom:35.587500px;}
.y58{bottom:40.500000px;}
.y76{bottom:42.075000px;}
.y53{bottom:42.262500px;}
.ya{bottom:43.537500px;}
.yc{bottom:44.362500px;}
.y7b{bottom:57.187500px;}
.y3e{bottom:59.250000px;}
.y81{bottom:64.425000px;}
.y75{bottom:68.025000px;}
.y21{bottom:73.350000px;}
.yb{bottom:73.650000px;}
.y9{bottom:76.237500px;}
.y4a{bottom:82.237500px;}
.y3d{bottom:82.537500px;}
.y7a{bottom:84.262500px;}
.y15{bottom:92.175000px;}
.y49{bottom:107.062500px;}
.y34{bottom:107.325000px;}
.y8{bottom:108.937500px;}
.y80{bottom:110.625000px;}
.y79{bottom:111.300000px;}
.y14{bottom:124.837500px;}
.y2c{bottom:126.412500px;}
.y33{bottom:128.737500px;}
.y5a{bottom:130.087500px;}
.y48{bottom:131.850000px;}
.y3c{bottom:132.112500px;}
.y68{bottom:141.037500px;}
.y1c{bottom:141.337500px;}
.y7{bottom:141.600000px;}
.y7f{bottom:142.162500px;}
.y5d{bottom:145.687500px;}
.y32{bottom:150.150000px;}
.y59{bottom:153.780000px;}
.y64{bottom:154.680000px;}
.y47{bottom:156.645000px;}
.y3b{bottom:156.900000px;}
.y67{bottom:168.075000px;}
.y1b{bottom:169.500000px;}
.y60{bottom:170.145000px;}
.y7e{bottom:172.605000px;}
.y73{bottom:176.025000px;}
.y46{bottom:181.425000px;}
.y3a{bottom:181.725000px;}
.y13{bottom:190.245000px;}
.y31{bottom:194.100000px;}
.y2b{bottom:196.275000px;}
.y1a{bottom:198.780000px;}
.y6f{bottom:199.695000px;}
.y1d{bottom:200.625000px;}
.y72{bottom:200.820000px;}
.y65{bottom:207.480000px;}
.y69{bottom:217.245000px;}
.y7d{bottom:218.820000px;}
.y5f{bottom:219.300000px;}
.y23{bottom:219.525000px;}
.y2a{bottom:226.725000px;}
.y71{bottom:232.380000px;}
.ye{bottom:242.445000px;}
.y45{bottom:244.545000px;}
.y26{bottom:244.620000px;}
.y39{bottom:244.830000px;}
.y70{bottom:245.250000px;}
.y6d{bottom:246.570000px;}
.y22{bottom:248.850000px;}
.y7c{bottom:250.395000px;}
.y12{bottom:255.600000px;}
.y30{bottom:258.330000px;}
.y66{bottom:260.070000px;}
.y6a{bottom:266.175000px;}
.y61{bottom:268.200000px;}
.y44{bottom:269.370000px;}
.y38{bottom:269.625000px;}
.y2f{bottom:280.875000px;}
.y43{bottom:294.150000px;}
.y37{bottom:294.405000px;}
.y29{bottom:296.595000px;}
.y6c{bottom:300.675000px;}
.y2e{bottom:302.325000px;}
.y6{bottom:303.825000px;}
.y19{bottom:308.775000px;}
.y42{bottom:318.945000px;}
.y36{bottom:319.200000px;}
.y11{bottom:320.955000px;}
.y77{bottom:324.570000px;}
.y28{bottom:327.045000px;}
.y41{bottom:343.725000px;}
.y35{bottom:344.025000px;}
.y2d{bottom:345.150000px;}
.y10{bottom:352.545000px;}
.y6b{bottom:354.780000px;}
.y18{bottom:356.100000px;}
.y4d{bottom:358.155000px;}
.y5e{bottom:366.270000px;}
.y5{bottom:379.350000px;}
.y1f{bottom:390.420000px;}
.y74{bottom:393.000000px;}
.y17{bottom:403.470000px;}
.yf{bottom:407.970000px;}
.y52{bottom:427.875000px;}
.y5b{bottom:445.575000px;}
.y25{bottom:456.825000px;}
.y78{bottom:466.755000px;}
.y4b{bottom:467.025000px;}
.y51{bottom:475.245000px;}
.y63{bottom:490.755000px;}
.y24{bottom:491.175000px;}
.y57{bottom:491.400000px;}
.y55{bottom:492.750000px;}
.y50{bottom:498.900000px;}
.y5c{bottom:504.780000px;}
.y4f{bottom:506.025000px;}
.y62{bottom:515.595000px;}
.y56{bottom:517.320000px;}
.y54{bottom:518.655000px;}
.y3{bottom:551.175000px;}
.y2{bottom:561.300000px;}
.y4{bottom:574.875000px;}
.y1{bottom:587.220000px;}
.h14{height:58.584900px;}
.h1c{height:62.352000px;}
.h1a{height:62.481900px;}
.h1b{height:62.928000px;}
.h19{height:63.059100px;}
.h1e{height:66.249000px;}
.h3{height:66.378900px;}
.h16{height:66.861000px;}
.h15{height:66.992100px;}
.h4{height:71.260800px;}
.h12{height:72.117300px;}
.h1{height:74.172900px;}
.h1d{height:74.858100px;}
.h22{height:74.989200px;}
.hf{height:75.004800px;}
.h18{height:78.069900px;}
.h24{height:78.199800px;}
.h1f{height:78.791100px;}
.h17{height:78.922200px;}
.h9{height:79.053003px;}
.h8{height:79.162646px;}
.ha{height:81.270923px;}
.h7{height:81.323730px;}
.hb{height:81.966900px;}
.hc{height:82.096800px;}
.h10{height:82.724100px;}
.h11{height:82.855200px;}
.h21{height:94.523100px;}
.h20{height:94.654200px;}
.hd{height:101.337600px;}
.h23{height:118.208100px;}
.h2{height:120.678900px;}
.he{height:127.917000px;}
.h13{height:144.387000px;}
.h6{height:230.991750px;}
.h5{height:231.129000px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xa{left:10.799984px;}
.xb{left:25.837484px;}
.x18{left:28.837484px;}
.x1d{left:29.962484px;}
.x2b{left:38.099984px;}
.x2a{left:42.187484px;}
.x34{left:48.412484px;}
.x2e{left:54.862484px;}
.x22{left:66.637484px;}
.x32{left:80.999984px;}
.x5{left:97.049984px;}
.xd{left:112.087484px;}
.x2c{left:149.174984px;}
.xe{left:151.124984px;}
.x31{left:209.444984px;}
.x2f{left:211.649984px;}
.x28{left:233.399984px;}
.x13{left:266.129984px;}
.x2d{left:292.874984px;}
.x29{left:296.024984px;}
.x1{left:318.149984px;}
.x2{left:358.769984px;}
.xc{left:391.949984px;}
.x24{left:441.944984px;}
.x7{left:443.999984px;}
.x1e{left:445.874984px;}
.x30{left:477.629984px;}
.x26{left:485.474984px;}
.x27{left:496.274984px;}
.x8{left:514.574984px;}
.x20{left:528.599984px;}
.xf{left:537.419984px;}
.x37{left:551.369984px;}
.x23{left:555.599984px;}
.x21{left:565.379984px;}
.x19{left:569.399984px;}
.x15{left:577.829984px;}
.x10{left:579.329984px;}
.x1a{left:605.444984px;}
.x1b{left:623.444984px;}
.x16{left:631.919984px;}
.x1c{left:659.474984px;}
.x17{left:667.949984px;}
.x1f{left:680.474984px;}
.x36{left:695.549984px;}
.x6{left:708.269984px;}
.x9{left:820.124984px;}
.x25{left:825.254984px;}
.x38{left:837.749984px;}
.x14{left:840.119984px;}
.x35{left:899.474984px;}
.x11{left:903.779984px;}
.x3{left:906.524984px;}
.x33{left:938.669984px;}
.x4{left:955.349984px;}
.x12{left:958.319984px;}
@media print{
.v8{vertical-align:-28.106667pt;}
.v3{vertical-align:-24.640000pt;}
.v6{vertical-align:-20.106667pt;}
.v2{vertical-align:-16.160000pt;}
.v4{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.000000pt;}
.v9{vertical-align:24.000000pt;}
.v7{vertical-align:28.000000pt;}
.va{vertical-align:38.533333pt;}
.v1{vertical-align:48.266667pt;}
.ls30{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.034667pt;}
.ls1c{letter-spacing:-1.002667pt;}
.ls28{letter-spacing:-0.848000pt;}
.ls2f{letter-spacing:-0.762667pt;}
.ls2a{letter-spacing:-0.714667pt;}
.ls1b{letter-spacing:-0.613333pt;}
.ls1{letter-spacing:-0.067733pt;}
.lse{letter-spacing:-0.033333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.006827pt;}
.ls25{letter-spacing:0.082667pt;}
.ls24{letter-spacing:0.136000pt;}
.ls32{letter-spacing:0.140267pt;}
.ls5{letter-spacing:0.213333pt;}
.ls2c{letter-spacing:0.271467pt;}
.ls26{letter-spacing:0.288400pt;}
.ls6{letter-spacing:0.408800pt;}
.ls20{letter-spacing:0.429333pt;}
.ls7{letter-spacing:0.476000pt;}
.ls1d{letter-spacing:0.482667pt;}
.ls17{letter-spacing:0.506667pt;}
.ls22{letter-spacing:0.545067pt;}
.ls21{letter-spacing:0.613333pt;}
.ls23{letter-spacing:1.520000pt;}
.lsa{letter-spacing:1.536000pt;}
.ls29{letter-spacing:2.149333pt;}
.ls2d{letter-spacing:2.176000pt;}
.ls2e{letter-spacing:2.181333pt;}
.ls2b{letter-spacing:2.282667pt;}
.ls8{letter-spacing:2.421333pt;}
.ls9{letter-spacing:2.730667pt;}
.ls14{letter-spacing:17.394533pt;}
.ls16{letter-spacing:17.501200pt;}
.ls13{letter-spacing:18.674533pt;}
.ls15{letter-spacing:18.834533pt;}
.ls31{letter-spacing:19.762667pt;}
.ls1e{letter-spacing:19.949333pt;}
.ls18{letter-spacing:19.973333pt;}
.ls3{letter-spacing:22.626133pt;}
.ls27{letter-spacing:24.936000pt;}
.ls11{letter-spacing:70.208000pt;}
.lsd{letter-spacing:85.586267pt;}
.lsb{letter-spacing:87.973333pt;}
.ls33{letter-spacing:88.053333pt;}
.ls2{letter-spacing:88.240000pt;}
.ls4{letter-spacing:88.320000pt;}
.ls19{letter-spacing:89.653333pt;}
.lsc{letter-spacing:89.680000pt;}
.ls1a{letter-spacing:89.733333pt;}
.ls10{letter-spacing:89.760000pt;}
.ls12{letter-spacing:89.893333pt;}
.ws23{word-spacing:-29.824000pt;}
.ws20{word-spacing:-26.791467pt;}
.ws1c{word-spacing:-23.664267pt;}
.ws1e{word-spacing:-23.648800pt;}
.ws1d{word-spacing:-23.392800pt;}
.ws1b{word-spacing:-22.678133pt;}
.ws1a{word-spacing:-22.544800pt;}
.ws2{word-spacing:-21.470400pt;}
.ws8{word-spacing:-20.514133pt;}
.ws24{word-spacing:-19.612667pt;}
.ws15{word-spacing:-19.479227pt;}
.ws11{word-spacing:-19.472400pt;}
.ws7{word-spacing:-19.287067pt;}
.ws5{word-spacing:-18.751200pt;}
.ws13{word-spacing:-18.502133pt;}
.ws22{word-spacing:-18.500400pt;}
.ws21{word-spacing:-17.770133pt;}
.ws0{word-spacing:-17.442133pt;}
.ws6{word-spacing:-16.556400pt;}
.wsd{word-spacing:-16.418133pt;}
.ws9{word-spacing:-15.584400pt;}
.ws17{word-spacing:-11.696400pt;}
.wsc{word-spacing:-0.693067pt;}
.ws1f{word-spacing:-0.342000pt;}
.ws1{word-spacing:-0.096133pt;}
.wsa{word-spacing:-0.064133pt;}
.wse{word-spacing:-0.064000pt;}
.ws12{word-spacing:-0.028800pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:1.124933pt;}
.wsb{word-spacing:1.447867pt;}
.wsf{word-spacing:1.929867pt;}
.ws4{word-spacing:21.153067pt;}
.ws19{word-spacing:46.551867pt;}
.ws14{word-spacing:57.062533pt;}
.ws18{word-spacing:73.337200pt;}
.ws16{word-spacing:73.729200pt;}
._6{margin-left:-4.263467pt;}
._1{margin-left:-3.045333pt;}
._7{margin-left:-2.131733pt;}
._0{margin-left:-0.989733pt;}
._3{width:0.989733pt;}
._2{width:2.055600pt;}
._5{width:3.121467pt;}
._9{width:4.193867pt;}
._15{width:5.458000pt;}
._4{width:16.382267pt;}
._12{width:17.563067pt;}
._11{width:19.968000pt;}
._f{width:21.254000pt;}
._10{width:22.494267pt;}
._b{width:24.370400pt;}
._14{width:44.075200pt;}
._a{width:107.452800pt;}
._e{width:452.747067pt;}
._c{width:491.938267pt;}
._8{width:827.287333pt;}
._d{width:913.801733pt;}
._13{width:1144.824133pt;}
.fs14{font-size:48.133333pt;}
.fs12{font-size:52.000000pt;}
.fs13{font-size:52.133333pt;}
.fsc{font-size:56.000000pt;}
.fse{font-size:60.133333pt;}
.fs11{font-size:64.000000pt;}
.fs10{font-size:64.133333pt;}
.fsf{font-size:68.000000pt;}
.fs1{font-size:68.133333pt;}
.fs0{font-size:76.133333pt;}
.fs15{font-size:76.266667pt;}
.fsb{font-size:80.133333pt;}
.fsa{font-size:80.266667pt;}
.fs6{font-size:84.133333pt;}
.fs7{font-size:84.266667pt;}
.fs4{font-size:96.133333pt;}
.fs5{font-size:96.266667pt;}
.fs8{font-size:108.266667pt;}
.fs9{font-size:124.266667pt;}
.fsd{font-size:140.266667pt;}
.fs3{font-size:224.400000pt;}
.fs2{font-size:224.533333pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:7.233333pt;}
.y6e{bottom:10.733333pt;}
.y16{bottom:13.433333pt;}
.yd{bottom:14.366667pt;}
.y4e{bottom:15.833333pt;}
.y1e{bottom:20.100000pt;}
.y40{bottom:20.400000pt;}
.y27{bottom:22.700000pt;}
.y4c{bottom:22.800000pt;}
.y82{bottom:29.200000pt;}
.y3f{bottom:31.633333pt;}
.y58{bottom:36.000000pt;}
.y76{bottom:37.400000pt;}
.y53{bottom:37.566667pt;}
.ya{bottom:38.700000pt;}
.yc{bottom:39.433333pt;}
.y7b{bottom:50.833333pt;}
.y3e{bottom:52.666667pt;}
.y81{bottom:57.266667pt;}
.y75{bottom:60.466667pt;}
.y21{bottom:65.200000pt;}
.yb{bottom:65.466667pt;}
.y9{bottom:67.766667pt;}
.y4a{bottom:73.100000pt;}
.y3d{bottom:73.366667pt;}
.y7a{bottom:74.900000pt;}
.y15{bottom:81.933333pt;}
.y49{bottom:95.166667pt;}
.y34{bottom:95.400000pt;}
.y8{bottom:96.833333pt;}
.y80{bottom:98.333333pt;}
.y79{bottom:98.933333pt;}
.y14{bottom:110.966667pt;}
.y2c{bottom:112.366667pt;}
.y33{bottom:114.433333pt;}
.y5a{bottom:115.633333pt;}
.y48{bottom:117.200000pt;}
.y3c{bottom:117.433333pt;}
.y68{bottom:125.366667pt;}
.y1c{bottom:125.633333pt;}
.y7{bottom:125.866667pt;}
.y7f{bottom:126.366667pt;}
.y5d{bottom:129.500000pt;}
.y32{bottom:133.466667pt;}
.y59{bottom:136.693333pt;}
.y64{bottom:137.493333pt;}
.y47{bottom:139.240000pt;}
.y3b{bottom:139.466667pt;}
.y67{bottom:149.400000pt;}
.y1b{bottom:150.666667pt;}
.y60{bottom:151.240000pt;}
.y7e{bottom:153.426667pt;}
.y73{bottom:156.466667pt;}
.y46{bottom:161.266667pt;}
.y3a{bottom:161.533333pt;}
.y13{bottom:169.106667pt;}
.y31{bottom:172.533333pt;}
.y2b{bottom:174.466667pt;}
.y1a{bottom:176.693333pt;}
.y6f{bottom:177.506667pt;}
.y1d{bottom:178.333333pt;}
.y72{bottom:178.506667pt;}
.y65{bottom:184.426667pt;}
.y69{bottom:193.106667pt;}
.y7d{bottom:194.506667pt;}
.y5f{bottom:194.933333pt;}
.y23{bottom:195.133333pt;}
.y2a{bottom:201.533333pt;}
.y71{bottom:206.560000pt;}
.ye{bottom:215.506667pt;}
.y45{bottom:217.373333pt;}
.y26{bottom:217.440000pt;}
.y39{bottom:217.626667pt;}
.y70{bottom:218.000000pt;}
.y6d{bottom:219.173333pt;}
.y22{bottom:221.200000pt;}
.y7c{bottom:222.573333pt;}
.y12{bottom:227.200000pt;}
.y30{bottom:229.626667pt;}
.y66{bottom:231.173333pt;}
.y6a{bottom:236.600000pt;}
.y61{bottom:238.400000pt;}
.y44{bottom:239.440000pt;}
.y38{bottom:239.666667pt;}
.y2f{bottom:249.666667pt;}
.y43{bottom:261.466667pt;}
.y37{bottom:261.693333pt;}
.y29{bottom:263.640000pt;}
.y6c{bottom:267.266667pt;}
.y2e{bottom:268.733333pt;}
.y6{bottom:270.066667pt;}
.y19{bottom:274.466667pt;}
.y42{bottom:283.506667pt;}
.y36{bottom:283.733333pt;}
.y11{bottom:285.293333pt;}
.y77{bottom:288.506667pt;}
.y28{bottom:290.706667pt;}
.y41{bottom:305.533333pt;}
.y35{bottom:305.800000pt;}
.y2d{bottom:306.800000pt;}
.y10{bottom:313.373333pt;}
.y6b{bottom:315.360000pt;}
.y18{bottom:316.533333pt;}
.y4d{bottom:318.360000pt;}
.y5e{bottom:325.573333pt;}
.y5{bottom:337.200000pt;}
.y1f{bottom:347.040000pt;}
.y74{bottom:349.333333pt;}
.y17{bottom:358.640000pt;}
.yf{bottom:362.640000pt;}
.y52{bottom:380.333333pt;}
.y5b{bottom:396.066667pt;}
.y25{bottom:406.066667pt;}
.y78{bottom:414.893333pt;}
.y4b{bottom:415.133333pt;}
.y51{bottom:422.440000pt;}
.y63{bottom:436.226667pt;}
.y24{bottom:436.600000pt;}
.y57{bottom:436.800000pt;}
.y55{bottom:438.000000pt;}
.y50{bottom:443.466667pt;}
.y5c{bottom:448.693333pt;}
.y4f{bottom:449.800000pt;}
.y62{bottom:458.306667pt;}
.y56{bottom:459.840000pt;}
.y54{bottom:461.026667pt;}
.y3{bottom:489.933333pt;}
.y2{bottom:498.933333pt;}
.y4{bottom:511.000000pt;}
.y1{bottom:521.973333pt;}
.h14{height:52.075467pt;}
.h1c{height:55.424000pt;}
.h1a{height:55.539467pt;}
.h1b{height:55.936000pt;}
.h19{height:56.052533pt;}
.h1e{height:58.888000pt;}
.h3{height:59.003467pt;}
.h16{height:59.432000pt;}
.h15{height:59.548533pt;}
.h4{height:63.342933pt;}
.h12{height:64.104267pt;}
.h1{height:65.931467pt;}
.h1d{height:66.540533pt;}
.h22{height:66.657067pt;}
.hf{height:66.670933pt;}
.h18{height:69.395467pt;}
.h24{height:69.510933pt;}
.h1f{height:70.036533pt;}
.h17{height:70.153067pt;}
.h9{height:70.269336pt;}
.h8{height:70.366797pt;}
.ha{height:72.240820pt;}
.h7{height:72.287760pt;}
.hb{height:72.859467pt;}
.hc{height:72.974933pt;}
.h10{height:73.532533pt;}
.h11{height:73.649067pt;}
.h21{height:84.020533pt;}
.h20{height:84.137067pt;}
.hd{height:90.077867pt;}
.h23{height:105.073867pt;}
.h2{height:107.270133pt;}
.he{height:113.704000pt;}
.h13{height:128.344000pt;}
.h6{height:205.326000pt;}
.h5{height:205.448000pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xa{left:9.599986pt;}
.xb{left:22.966652pt;}
.x18{left:25.633319pt;}
.x1d{left:26.633319pt;}
.x2b{left:33.866652pt;}
.x2a{left:37.499986pt;}
.x34{left:43.033319pt;}
.x2e{left:48.766652pt;}
.x22{left:59.233319pt;}
.x32{left:71.999986pt;}
.x5{left:86.266652pt;}
.xd{left:99.633319pt;}
.x2c{left:132.599986pt;}
.xe{left:134.333319pt;}
.x31{left:186.173319pt;}
.x2f{left:188.133319pt;}
.x28{left:207.466652pt;}
.x13{left:236.559986pt;}
.x2d{left:260.333319pt;}
.x29{left:263.133319pt;}
.x1{left:282.799986pt;}
.x2{left:318.906652pt;}
.xc{left:348.399986pt;}
.x24{left:392.839986pt;}
.x7{left:394.666652pt;}
.x1e{left:396.333319pt;}
.x30{left:424.559986pt;}
.x26{left:431.533319pt;}
.x27{left:441.133319pt;}
.x8{left:457.399986pt;}
.x20{left:469.866652pt;}
.xf{left:477.706652pt;}
.x37{left:490.106652pt;}
.x23{left:493.866652pt;}
.x21{left:502.559986pt;}
.x19{left:506.133319pt;}
.x15{left:513.626652pt;}
.x10{left:514.959986pt;}
.x1a{left:538.173319pt;}
.x1b{left:554.173319pt;}
.x16{left:561.706652pt;}
.x1c{left:586.199986pt;}
.x17{left:593.733319pt;}
.x1f{left:604.866652pt;}
.x36{left:618.266652pt;}
.x6{left:629.573319pt;}
.x9{left:728.999986pt;}
.x25{left:733.559986pt;}
.x38{left:744.666652pt;}
.x14{left:746.773319pt;}
.x35{left:799.533319pt;}
.x11{left:803.359986pt;}
.x3{left:805.799986pt;}
.x33{left:834.373319pt;}
.x4{left:849.199986pt;}
.x12{left:851.839986pt;}
}




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