
    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_64accd8a1dfaf72423d10365.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e1998c8a113cda5ca8cc0198.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_f4a2ce0836fb7fdb3fc4d535.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_74fc9ff9e3284170b0b3a925.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_bfa35255ac66bc0f18e3fe75.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_41c45893d90abb55b9620a33.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_11192acb79bf6025f3445be7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1459b094a89c350b79186ebc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_f2d4a98f86a54135a48eecbf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_acd3298aac0d5074541a08bd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_e8d867baac927686574f8b68.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_315b2f12d6fe3855b7b4e5b2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.172852;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_b91ae37ed1bde0e9a47c5afd.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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_50bfd77c8f570949965eb71e.woff')format("woff");}.fff{font-family:fff;line-height:0.923340;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_656e8c01ff788cfed7a2acfb.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f72fb2da1943704dba42a9fa.woff')format("woff");}.ff11{font-family:ff11;line-height:1.112305;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_783959b68375ecadfd2640d5.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c4307fe94181991cf7199b9e.woff')format("woff");}.ff13{font-family:ff13;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsd{letter-spacing:-0.370800px;}
.ls10{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.342000px;}
.ls17{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.127200px;}
.ls11{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.087600px;}
.ls15{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.132600px;}
.ls4{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.447840px;}
.ls16{letter-spacing:0.513600px;}
.ls3{letter-spacing:0.786240px;}
.ls7{letter-spacing:0.894240px;}
.ls9{letter-spacing:0.900000px;}
.ls13{letter-spacing:5.220000px;}
.ls8{letter-spacing:9.540000px;}
.ls1b{letter-spacing:16.506720px;}
.ls19{letter-spacing:46.026720px;}
.ls18{letter-spacing:49.707360px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws8{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.580000px;}
.ws5{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws7{word-spacing:-11.862000px;}
.wsb{word-spacing:-9.720000px;}
.ws4{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._d{margin-left:-7.884000px;}
._8{margin-left:-6.812640px;}
._4{margin-left:-5.625840px;}
._c{margin-left:-4.482000px;}
._3{margin-left:-3.456000px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.080000px;}
._1{width:1.074000px;}
._5{width:2.239920px;}
._14{width:3.886080px;}
._e{width:4.965360px;}
._11{width:6.215040px;}
._b{width:7.290720px;}
._a{width:8.545680px;}
._9{width:9.561600px;}
._12{width:11.354400px;}
._6{width:12.420000px;}
._13{width:13.734720px;}
._f{width:16.791840px;}
._7{width:18.047520px;}
._1a{width:19.543200px;}
._10{width:21.166560px;}
._16{width:36.334080px;}
._15{width:37.648800px;}
._1b{width:40.636800px;}
._19{width:107.508240px;}
._18{width:108.763200px;}
._17{width:849.360000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:0.180000px;}
.y41{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.yf{bottom:9.540000px;}
.y1c{bottom:12.600000px;}
.yd{bottom:13.860000px;}
.y44{bottom:14.940000px;}
.y43{bottom:18.000000px;}
.y3{bottom:20.160000px;}
.y40{bottom:20.340000px;}
.y19{bottom:23.760000px;}
.y6{bottom:24.120000px;}
.yc{bottom:30.240000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.576000px;}
.y3f{bottom:37.620000px;}
.y18{bottom:40.365000px;}
.y1{bottom:46.260000px;}
.yb{bottom:46.440000px;}
.y3e{bottom:54.900000px;}
.y17{bottom:56.025000px;}
.y16{bottom:66.465000px;}
.y3d{bottom:72.180000px;}
.ya{bottom:73.440000px;}
.y15{bottom:84.825000px;}
.y3c{bottom:89.460000px;}
.y9{bottom:93.090000px;}
.y14{bottom:103.905000px;}
.y3b{bottom:106.560000px;}
.y8{bottom:111.270000px;}
.y52{bottom:111.636000px;}
.y90{bottom:115.596000px;}
.y9f{bottom:122.976000px;}
.y3a{bottom:123.840000px;}
.y51{bottom:128.916000px;}
.y13{bottom:129.645000px;}
.y8f{bottom:132.876000px;}
.y9e{bottom:139.356000px;}
.y39{bottom:141.120000px;}
.y50{bottom:146.196000px;}
.y8e{bottom:149.976000px;}
.y12{bottom:155.385000px;}
.y9d{bottom:155.910000px;}
.y38{bottom:158.400000px;}
.y4f{bottom:163.470000px;}
.y8d{bottom:167.250000px;}
.y9c{bottom:173.190000px;}
.y37{bottom:175.680000px;}
.y11{bottom:179.685000px;}
.y4e{bottom:180.750000px;}
.y8c{bottom:184.530000px;}
.y9b{bottom:190.470000px;}
.y36{bottom:192.960000px;}
.y4d{bottom:198.030000px;}
.y29{bottom:199.800000px;}
.y8b{bottom:201.810000px;}
.y9a{bottom:207.750000px;}
.y35{bottom:210.090000px;}
.y28{bottom:215.130000px;}
.y8a{bottom:219.090000px;}
.y99{bottom:221.790000px;}
.y34{bottom:227.370000px;}
.y4c{bottom:232.410000px;}
.y27{bottom:232.590000px;}
.y89{bottom:236.370000px;}
.y33{bottom:244.650000px;}
.y4b{bottom:249.690000px;}
.y26{bottom:249.870000px;}
.y88{bottom:253.470000px;}
.y32{bottom:261.930000px;}
.y4a{bottom:266.970000px;}
.y25{bottom:267.150000px;}
.y87{bottom:270.750000px;}
.y31{bottom:279.210000px;}
.y49{bottom:284.250000px;}
.y24{bottom:284.970000px;}
.y86{bottom:288.030000px;}
.y30{bottom:296.490000px;}
.y93{bottom:300.450000px;}
.y48{bottom:301.350000px;}
.y23{bottom:302.250000px;}
.y85{bottom:305.310000px;}
.y2f{bottom:313.590000px;}
.y92{bottom:317.730000px;}
.y47{bottom:318.630000px;}
.y22{bottom:319.710000px;}
.y84{bottom:322.590000px;}
.y2e{bottom:330.870000px;}
.y91{bottom:331.770000px;}
.y46{bottom:335.910000px;}
.y21{bottom:337.170000px;}
.y83{bottom:339.915000px;}
.y2d{bottom:348.150000px;}
.y45{bottom:353.235000px;}
.y82{bottom:357.015000px;}
.y20{bottom:357.330000px;}
.y2c{bottom:365.430000px;}
.y42{bottom:367.275000px;}
.y81{bottom:374.295000px;}
.y2b{bottom:382.710000px;}
.y1f{bottom:384.870000px;}
.y80{bottom:391.575000px;}
.y1d{bottom:396.615000px;}
.y2a{bottom:399.990000px;}
.y1e{bottom:402.510000px;}
.y7f{bottom:408.855000px;}
.y7e{bottom:426.135000px;}
.y7d{bottom:443.415000px;}
.y98{bottom:459.075000px;}
.y7c{bottom:460.515000px;}
.y97{bottom:476.355000px;}
.y7b{bottom:477.795000px;}
.y96{bottom:490.215000px;}
.y7a{bottom:495.075000px;}
.y79{bottom:512.355000px;}
.y78{bottom:529.635000px;}
.y77{bottom:546.735000px;}
.y76{bottom:564.015000px;}
.y75{bottom:581.295000px;}
.y74{bottom:598.575000px;}
.y73{bottom:615.885000px;}
.y72{bottom:633.165000px;}
.y71{bottom:650.265000px;}
.y70{bottom:667.545000px;}
.y6f{bottom:684.825000px;}
.y6e{bottom:702.105000px;}
.y6d{bottom:719.385000px;}
.y6c{bottom:736.665000px;}
.y6b{bottom:753.765000px;}
.y95{bottom:763.485000px;}
.y6a{bottom:771.045000px;}
.y94{bottom:777.525000px;}
.y69{bottom:788.325000px;}
.y68{bottom:805.605000px;}
.y1a{bottom:810.465000px;}
.y67{bottom:822.885000px;}
.y66{bottom:839.985000px;}
.y10{bottom:840.165000px;}
.y65{bottom:857.265000px;}
.y64{bottom:874.590000px;}
.y63{bottom:891.870000px;}
.y62{bottom:909.150000px;}
.y61{bottom:926.430000px;}
.y60{bottom:943.530000px;}
.y5f{bottom:960.810000px;}
.y5e{bottom:978.090000px;}
.y5d{bottom:995.370000px;}
.y5c{bottom:1012.650000px;}
.y5b{bottom:1029.930000px;}
.ye{bottom:1034.970000px;}
.y5a{bottom:1047.030000px;}
.y7{bottom:1060.350000px;}
.y59{bottom:1064.310000px;}
.y58{bottom:1081.590000px;}
.y57{bottom:1098.870000px;}
.y56{bottom:1116.150000px;}
.y55{bottom:1133.430000px;}
.y54{bottom:1150.560000px;}
.y53{bottom:1167.840000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h1e{height:29.340000px;}
.h15{height:29.700000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1c{height:38.818125px;}
.h1f{height:42.164648px;}
.h1b{height:42.281367px;}
.h14{height:43.453125px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h18{height:47.980898px;}
.h2{height:49.536000px;}
.h22{height:50.992031px;}
.h1d{height:53.573906px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h20{height:55.735313px;}
.h21{height:55.855313px;}
.h19{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:64.546875px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h16{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:194.790000px;}
.h17{height:413.850000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w5{width:151.950000px;}
.w8{width:216.075000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xd{left:14.796000px;}
.xb{left:18.036000px;}
.xc{left:40.536000px;}
.x10{left:48.456000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x1a{left:108.035987px;}
.xf{left:194.970000px;}
.x11{left:215.175000px;}
.x5{left:232.950000px;}
.xe{left:237.135000px;}
.x8{left:272.235000px;}
.x12{left:297.075000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x16{left:421.814987px;}
.x14{left:423.614987px;}
.x9{left:439.500000px;}
.x3{left:739.050000px;}
.x18{left:754.889987px;}
.x17{left:759.389987px;}
.x19{left:762.809987px;}
.x15{left:783.149987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-0.329600pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.304000pt;}
.ls17{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.113067pt;}
.ls11{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.077867pt;}
.ls15{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.117867pt;}
.ls4{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.398080pt;}
.ls16{letter-spacing:0.456533pt;}
.ls3{letter-spacing:0.698880pt;}
.ls7{letter-spacing:0.794880pt;}
.ls9{letter-spacing:0.800000pt;}
.ls13{letter-spacing:4.640000pt;}
.ls8{letter-spacing:8.480000pt;}
.ls1b{letter-spacing:14.672640pt;}
.ls19{letter-spacing:40.912640pt;}
.ls18{letter-spacing:44.184320pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws8{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws7{word-spacing:-10.544000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._d{margin-left:-7.008000pt;}
._8{margin-left:-6.055680pt;}
._4{margin-left:-5.000747pt;}
._c{margin-left:-3.984000pt;}
._3{margin-left:-3.072000pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.954667pt;}
._5{width:1.991040pt;}
._14{width:3.454293pt;}
._e{width:4.413653pt;}
._11{width:5.524480pt;}
._b{width:6.480640pt;}
._a{width:7.596160pt;}
._9{width:8.499200pt;}
._12{width:10.092800pt;}
._6{width:11.040000pt;}
._13{width:12.208640pt;}
._f{width:14.926080pt;}
._7{width:16.042240pt;}
._1a{width:17.371733pt;}
._10{width:18.814720pt;}
._16{width:32.296960pt;}
._15{width:33.465600pt;}
._1b{width:36.121600pt;}
._19{width:95.562880pt;}
._18{width:96.678400pt;}
._17{width:754.986667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:0.160000pt;}
.y41{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.yf{bottom:8.480000pt;}
.y1c{bottom:11.200000pt;}
.yd{bottom:12.320000pt;}
.y44{bottom:13.280000pt;}
.y43{bottom:16.000000pt;}
.y3{bottom:17.920000pt;}
.y40{bottom:18.080000pt;}
.y19{bottom:21.120000pt;}
.y6{bottom:21.440000pt;}
.yc{bottom:26.880000pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.512000pt;}
.y3f{bottom:33.440000pt;}
.y18{bottom:35.880000pt;}
.y1{bottom:41.120000pt;}
.yb{bottom:41.280000pt;}
.y3e{bottom:48.800000pt;}
.y17{bottom:49.800000pt;}
.y16{bottom:59.080000pt;}
.y3d{bottom:64.160000pt;}
.ya{bottom:65.280000pt;}
.y15{bottom:75.400000pt;}
.y3c{bottom:79.520000pt;}
.y9{bottom:82.746667pt;}
.y14{bottom:92.360000pt;}
.y3b{bottom:94.720000pt;}
.y8{bottom:98.906667pt;}
.y52{bottom:99.232000pt;}
.y90{bottom:102.752000pt;}
.y9f{bottom:109.312000pt;}
.y3a{bottom:110.080000pt;}
.y51{bottom:114.592000pt;}
.y13{bottom:115.240000pt;}
.y8f{bottom:118.112000pt;}
.y9e{bottom:123.872000pt;}
.y39{bottom:125.440000pt;}
.y50{bottom:129.952000pt;}
.y8e{bottom:133.312000pt;}
.y12{bottom:138.120000pt;}
.y9d{bottom:138.586667pt;}
.y38{bottom:140.800000pt;}
.y4f{bottom:145.306667pt;}
.y8d{bottom:148.666667pt;}
.y9c{bottom:153.946667pt;}
.y37{bottom:156.160000pt;}
.y11{bottom:159.720000pt;}
.y4e{bottom:160.666667pt;}
.y8c{bottom:164.026667pt;}
.y9b{bottom:169.306667pt;}
.y36{bottom:171.520000pt;}
.y4d{bottom:176.026667pt;}
.y29{bottom:177.600000pt;}
.y8b{bottom:179.386667pt;}
.y9a{bottom:184.666667pt;}
.y35{bottom:186.746667pt;}
.y28{bottom:191.226667pt;}
.y8a{bottom:194.746667pt;}
.y99{bottom:197.146667pt;}
.y34{bottom:202.106667pt;}
.y4c{bottom:206.586667pt;}
.y27{bottom:206.746667pt;}
.y89{bottom:210.106667pt;}
.y33{bottom:217.466667pt;}
.y4b{bottom:221.946667pt;}
.y26{bottom:222.106667pt;}
.y88{bottom:225.306667pt;}
.y32{bottom:232.826667pt;}
.y4a{bottom:237.306667pt;}
.y25{bottom:237.466667pt;}
.y87{bottom:240.666667pt;}
.y31{bottom:248.186667pt;}
.y49{bottom:252.666667pt;}
.y24{bottom:253.306667pt;}
.y86{bottom:256.026667pt;}
.y30{bottom:263.546667pt;}
.y93{bottom:267.066667pt;}
.y48{bottom:267.866667pt;}
.y23{bottom:268.666667pt;}
.y85{bottom:271.386667pt;}
.y2f{bottom:278.746667pt;}
.y92{bottom:282.426667pt;}
.y47{bottom:283.226667pt;}
.y22{bottom:284.186667pt;}
.y84{bottom:286.746667pt;}
.y2e{bottom:294.106667pt;}
.y91{bottom:294.906667pt;}
.y46{bottom:298.586667pt;}
.y21{bottom:299.706667pt;}
.y83{bottom:302.146667pt;}
.y2d{bottom:309.466667pt;}
.y45{bottom:313.986667pt;}
.y82{bottom:317.346667pt;}
.y20{bottom:317.626667pt;}
.y2c{bottom:324.826667pt;}
.y42{bottom:326.466667pt;}
.y81{bottom:332.706667pt;}
.y2b{bottom:340.186667pt;}
.y1f{bottom:342.106667pt;}
.y80{bottom:348.066667pt;}
.y1d{bottom:352.546667pt;}
.y2a{bottom:355.546667pt;}
.y1e{bottom:357.786667pt;}
.y7f{bottom:363.426667pt;}
.y7e{bottom:378.786667pt;}
.y7d{bottom:394.146667pt;}
.y98{bottom:408.066667pt;}
.y7c{bottom:409.346667pt;}
.y97{bottom:423.426667pt;}
.y7b{bottom:424.706667pt;}
.y96{bottom:435.746667pt;}
.y7a{bottom:440.066667pt;}
.y79{bottom:455.426667pt;}
.y78{bottom:470.786667pt;}
.y77{bottom:485.986667pt;}
.y76{bottom:501.346667pt;}
.y75{bottom:516.706667pt;}
.y74{bottom:532.066667pt;}
.y73{bottom:547.453333pt;}
.y72{bottom:562.813333pt;}
.y71{bottom:578.013333pt;}
.y70{bottom:593.373333pt;}
.y6f{bottom:608.733333pt;}
.y6e{bottom:624.093333pt;}
.y6d{bottom:639.453333pt;}
.y6c{bottom:654.813333pt;}
.y6b{bottom:670.013333pt;}
.y95{bottom:678.653333pt;}
.y6a{bottom:685.373333pt;}
.y94{bottom:691.133333pt;}
.y69{bottom:700.733333pt;}
.y68{bottom:716.093333pt;}
.y1a{bottom:720.413333pt;}
.y67{bottom:731.453333pt;}
.y66{bottom:746.653333pt;}
.y10{bottom:746.813333pt;}
.y65{bottom:762.013333pt;}
.y64{bottom:777.413333pt;}
.y63{bottom:792.773333pt;}
.y62{bottom:808.133333pt;}
.y61{bottom:823.493333pt;}
.y60{bottom:838.693333pt;}
.y5f{bottom:854.053333pt;}
.y5e{bottom:869.413333pt;}
.y5d{bottom:884.773333pt;}
.y5c{bottom:900.133333pt;}
.y5b{bottom:915.493333pt;}
.ye{bottom:919.973333pt;}
.y5a{bottom:930.693333pt;}
.y7{bottom:942.533333pt;}
.y59{bottom:946.053333pt;}
.y58{bottom:961.413333pt;}
.y57{bottom:976.773333pt;}
.y56{bottom:992.133333pt;}
.y55{bottom:1007.493333pt;}
.y54{bottom:1022.720000pt;}
.y53{bottom:1038.080000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h1e{height:26.080000pt;}
.h15{height:26.400000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1c{height:34.505000pt;}
.h1f{height:37.479688pt;}
.h1b{height:37.583438pt;}
.h14{height:38.625000pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h18{height:42.649687pt;}
.h2{height:44.032000pt;}
.h22{height:45.326250pt;}
.h1d{height:47.621250pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h20{height:49.542500pt;}
.h21{height:49.649167pt;}
.h19{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:57.375000pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h16{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:173.146667pt;}
.h17{height:367.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w5{width:135.066667pt;}
.w8{width:192.066667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xd{left:13.152000pt;}
.xb{left:16.032000pt;}
.xc{left:36.032000pt;}
.x10{left:43.072000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x1a{left:96.031988pt;}
.xf{left:173.306667pt;}
.x11{left:191.266667pt;}
.x5{left:207.066667pt;}
.xe{left:210.786667pt;}
.x8{left:241.986667pt;}
.x12{left:264.066667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x16{left:374.946655pt;}
.x14{left:376.546655pt;}
.x9{left:390.666667pt;}
.x3{left:656.933333pt;}
.x18{left:671.013322pt;}
.x17{left:675.013322pt;}
.x19{left:678.053322pt;}
.x15{left:696.133322pt;}
}




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