
    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_30e87299909572467648d7ac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_9d2d7d99cad5aec061d2f19b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_4094c02a064f9fd5b046ee3d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_a31467b1fa46c5424370bbfb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_994bf3b4bf824b1c06abf774.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_1eaf5d064c800be8b77aca8f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_f161602cc23c922b794f6da8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.091797;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_c1013e5de37ea57692fc22af.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_26cf5d54ff8f7bb51a48a0f1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dce8c7c7c2b7a295b72ac8e7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.773926;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:-25.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:25.200000px;}
.v1{vertical-align:36.000000px;}
.lsf{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.265200px;}
.lsd{letter-spacing:-0.043920px;}
.lsb{letter-spacing:-0.028080px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.043920px;}
.ls4{letter-spacing:0.069264px;}
.lse{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.134400px;}
.ls0{letter-spacing:0.204480px;}
.lsa{letter-spacing:0.204600px;}
.ls7{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.288000px;}
.ls2{letter-spacing:84.960000px;}
.ls8{letter-spacing:103.284000px;}
.ls3{letter-spacing:111.600000px;}
.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;}
}
.ws3{word-spacing:-40.032000px;}
.ws7{word-spacing:-39.024720px;}
.ws6{word-spacing:-36.763680px;}
.ws4{word-spacing:-36.629280px;}
.ws5{word-spacing:-36.585360px;}
.ws9{word-spacing:-30.024000px;}
.ws8{word-spacing:-29.232000px;}
.ws0{word-spacing:-22.217760px;}
.ws1{word-spacing:-15.612480px;}
.ws2{word-spacing:-15.347280px;}
.wsa{word-spacing:0.000000px;}
._6{margin-left:-13.324560px;}
._a{margin-left:-10.800000px;}
._5{margin-left:-8.280000px;}
._4{margin-left:-6.720240px;}
._7{margin-left:-5.485920px;}
._b{margin-left:-4.320000px;}
._0{margin-left:-3.268080px;}
._1{margin-left:-2.114640px;}
._2{margin-left:-1.012800px;}
._3{width:1.082160px;}
._8{width:2.184480px;}
._9{width:3.410640px;}
.fc3{color:rgb(33,95,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(70,120,134);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:56.160000px;}
.fs2{font-size:79.920000px;}
.fs4{font-size:84.240000px;}
.fsa{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs1{font-size:120.240000px;}
.fs9{font-size:131.760000px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fsd{font-size:167.760000px;}
.fs0{font-size:192.240000px;}
.fs8{font-size:192.384000px;}
.fs5{font-size:216.000000px;}
.fsc{font-size:216.144000px;}
.y0{bottom:0.000000px;}
.y86{bottom:67.500000px;}
.y46{bottom:67.572000px;}
.y43{bottom:81.504000px;}
.y42{bottom:123.264000px;}
.y85{bottom:125.100000px;}
.y45{bottom:125.172000px;}
.y41{bottom:166.470000px;}
.y84{bottom:182.700000px;}
.y44{bottom:182.775000px;}
.y40{bottom:209.670000px;}
.y3f{bottom:252.870000px;}
.y2b{bottom:281.850000px;}
.y3e{bottom:296.100000px;}
.y2a{bottom:325.050000px;}
.y3d{bottom:339.300000px;}
.y29{bottom:368.250000px;}
.y3c{bottom:382.500000px;}
.y28{bottom:411.450000px;}
.y3b{bottom:425.700000px;}
.y27{bottom:454.650000px;}
.y3a{bottom:468.900000px;}
.y26{bottom:497.850000px;}
.y39{bottom:512.100000px;}
.y25{bottom:541.050000px;}
.y38{bottom:555.300000px;}
.y24{bottom:584.250000px;}
.y37{bottom:598.500000px;}
.y23{bottom:627.450000px;}
.y36{bottom:641.700000px;}
.y22{bottom:670.650000px;}
.y35{bottom:684.900000px;}
.y21{bottom:713.850000px;}
.y34{bottom:728.100000px;}
.y20{bottom:757.050000px;}
.y33{bottom:772.740000px;}
.y1f{bottom:800.250000px;}
.y32{bottom:814.500000px;}
.y1e{bottom:843.450000px;}
.y1d{bottom:888.120000px;}
.y31{bottom:897.945000px;}
.y1c{bottom:929.880000px;}
.y30{bottom:962.745000px;}
.y1b{bottom:973.725000px;}
.y7b{bottom:1104.270000px;}
.y8d{bottom:1106.640000px;}
.y7a{bottom:1146.030000px;}
.y8c{bottom:1157.040000px;}
.y79{bottom:1189.230000px;}
.y8b{bottom:1207.440000px;}
.y78{bottom:1232.430000px;}
.y8a{bottom:1257.840000px;}
.y77{bottom:1275.630000px;}
.y89{bottom:1308.240000px;}
.y88{bottom:1404.870000px;}
.y87{bottom:1469.700000px;}
.y83{bottom:1484.925000px;}
.y82{bottom:1516.245000px;}
.y81{bottom:1548.645000px;}
.y1a{bottom:1567.875000px;}
.y80{bottom:1581.045000px;}
.y19{bottom:1609.635000px;}
.y7f{bottom:1613.445000px;}
.y7e{bottom:1645.845000px;}
.y18{bottom:1652.835000px;}
.y7d{bottom:1678.245000px;}
.y17{bottom:1696.065000px;}
.y7c{bottom:1710.645000px;}
.y16{bottom:1739.265000px;}
.y15{bottom:1782.465000px;}
.y14{bottom:1825.665000px;}
.y13{bottom:1868.865000px;}
.y12{bottom:1912.065000px;}
.y11{bottom:1955.265000px;}
.y10{bottom:1998.465000px;}
.yf{bottom:2043.105000px;}
.ye{bottom:2084.865000px;}
.yd{bottom:2128.065000px;}
.yc{bottom:2177.535000px;}
.y76{bottom:2189.700000px;}
.y75{bottom:2247.300000px;}
.yb{bottom:2271.450000px;}
.ya{bottom:2313.210000px;}
.y9{bottom:2356.410000px;}
.y5e{bottom:2374.380000px;}
.y8{bottom:2399.610000px;}
.y5d{bottom:2417.580000px;}
.y7{bottom:2442.810000px;}
.y5c{bottom:2460.780000px;}
.y6{bottom:2486.010000px;}
.y5b{bottom:2503.980000px;}
.y5a{bottom:2547.180000px;}
.y5{bottom:2550.750000px;}
.y65{bottom:2629.950000px;}
.y4f{bottom:2648.910000px;}
.y64{bottom:2661.270000px;}
.y57{bottom:2676.090000px;}
.y4e{bottom:2692.110000px;}
.y63{bottom:2693.700000px;}
.y56{bottom:2714.430000px;}
.y62{bottom:2726.100000px;}
.y4d{bottom:2735.310000px;}
.y55{bottom:2757.960000px;}
.y61{bottom:2758.500000px;}
.y4c{bottom:2778.510000px;}
.y60{bottom:2790.900000px;}
.y54{bottom:2800.800000px;}
.y4b{bottom:2821.710000px;}
.y5f{bottom:2823.300000px;}
.y53{bottom:2844.000000px;}
.y4a{bottom:2864.910000px;}
.y52{bottom:2887.590000px;}
.y49{bottom:2908.110000px;}
.y51{bottom:2930.790000px;}
.y48{bottom:2951.310000px;}
.y50{bottom:2992.890000px;}
.y47{bottom:3011.115000px;}
.y72{bottom:3112.020000px;}
.y74{bottom:3124.470000px;}
.y71{bottom:3155.220000px;}
.y73{bottom:3156.870000px;}
.y70{bottom:3198.420000px;}
.y6f{bottom:3241.620000px;}
.y6e{bottom:3284.820000px;}
.y59{bottom:3318.195000px;}
.y6d{bottom:3328.020000px;}
.y58{bottom:3375.795000px;}
.y6c{bottom:3414.450000px;}
.y6b{bottom:3457.650000px;}
.y2f{bottom:3497.370000px;}
.y6a{bottom:3500.850000px;}
.y2e{bottom:3539.130000px;}
.y69{bottom:3544.050000px;}
.y2d{bottom:3582.330000px;}
.y68{bottom:3587.250000px;}
.y2c{bottom:3650.040000px;}
.y67{bottom:3652.050000px;}
.y66{bottom:3719.490000px;}
.y4{bottom:3731.325000px;}
.y3{bottom:3755.805000px;}
.y2{bottom:3777.765000px;}
.y1{bottom:3816.825000px;}
.h3{height:62.659687px;}
.h11{height:82.054688px;}
.h9{height:105.257812px;}
.hf{height:112.640625px;}
.h10{height:112.790813px;}
.ha{height:124.804688px;}
.hc{height:125.015625px;}
.h2{height:125.406562px;}
.hb{height:137.421562px;}
.h13{height:145.397461px;}
.he{height:147.445312px;}
.hd{height:147.592758px;}
.h5{height:150.187500px;}
.h7{height:150.337688px;}
.h6{height:166.895859px;}
.h8{height:167.020875px;}
.h4{height:187.523438px;}
.h12{height:187.648453px;}
.h1{height:200.500313px;}
.h0{height:3888.000000px;}
.w1{width:2591.999961px;}
.w0{width:2592.000000px;}
.x0{left:0.000000px;}
.x19{left:60.515961px;}
.x9{left:63.503961px;}
.x6{left:66.923961px;}
.x7{left:68.363961px;}
.x5{left:73.979961px;}
.x20{left:86.363961px;}
.xa{left:97.955961px;}
.x8{left:107.819961px;}
.x1{left:167.009961px;}
.x1d{left:200.084961px;}
.x1e{left:210.164961px;}
.x2{left:236.669961px;}
.x1f{left:244.724961px;}
.x3{left:358.709961px;}
.x21{left:511.919961px;}
.x1a{left:640.949961px;}
.x14{left:678.239961px;}
.x13{left:686.369961px;}
.x10{left:704.444961px;}
.x11{left:734.684961px;}
.x12{left:824.504961px;}
.x4{left:873.359961px;}
.xb{left:1338.839961px;}
.xc{left:1342.259961px;}
.x16{left:1347.764961px;}
.xd{left:1349.354961px;}
.x1b{left:1354.964961px;}
.xe{left:1356.224961px;}
.x15{left:1361.054961px;}
.xf{left:1396.724961px;}
.x17{left:1998.029961px;}
.x1c{left:2009.264961px;}
.x18{left:2283.194961px;}
@media print{
.v2{vertical-align:-22.400000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:22.400000pt;}
.v1{vertical-align:32.000000pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.235733pt;}
.lsd{letter-spacing:-0.039040pt;}
.lsb{letter-spacing:-0.024960pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.039040pt;}
.ls4{letter-spacing:0.061568pt;}
.lse{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.119467pt;}
.ls0{letter-spacing:0.181760pt;}
.lsa{letter-spacing:0.181867pt;}
.ls7{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls2{letter-spacing:75.520000pt;}
.ls8{letter-spacing:91.808000pt;}
.ls3{letter-spacing:99.200000pt;}
.ws3{word-spacing:-35.584000pt;}
.ws7{word-spacing:-34.688640pt;}
.ws6{word-spacing:-32.678827pt;}
.ws4{word-spacing:-32.559360pt;}
.ws5{word-spacing:-32.520320pt;}
.ws9{word-spacing:-26.688000pt;}
.ws8{word-spacing:-25.984000pt;}
.ws0{word-spacing:-19.749120pt;}
.ws1{word-spacing:-13.877760pt;}
.ws2{word-spacing:-13.642027pt;}
.wsa{word-spacing:0.000000pt;}
._6{margin-left:-11.844053pt;}
._a{margin-left:-9.600000pt;}
._5{margin-left:-7.360000pt;}
._4{margin-left:-5.973547pt;}
._7{margin-left:-4.876373pt;}
._b{margin-left:-3.840000pt;}
._0{margin-left:-2.904960pt;}
._1{margin-left:-1.879680pt;}
._2{margin-left:-0.900267pt;}
._3{width:0.961920pt;}
._8{width:1.941760pt;}
._9{width:3.031680pt;}
.fs3{font-size:49.920000pt;}
.fs2{font-size:71.040000pt;}
.fs4{font-size:74.880000pt;}
.fsa{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs1{font-size:106.880000pt;}
.fs9{font-size:117.120000pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fsd{font-size:149.120000pt;}
.fs0{font-size:170.880000pt;}
.fs8{font-size:171.008000pt;}
.fs5{font-size:192.000000pt;}
.fsc{font-size:192.128000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:60.000000pt;}
.y46{bottom:60.064000pt;}
.y43{bottom:72.448000pt;}
.y42{bottom:109.568000pt;}
.y85{bottom:111.200000pt;}
.y45{bottom:111.264000pt;}
.y41{bottom:147.973333pt;}
.y84{bottom:162.400000pt;}
.y44{bottom:162.466667pt;}
.y40{bottom:186.373333pt;}
.y3f{bottom:224.773333pt;}
.y2b{bottom:250.533333pt;}
.y3e{bottom:263.200000pt;}
.y2a{bottom:288.933333pt;}
.y3d{bottom:301.600000pt;}
.y29{bottom:327.333333pt;}
.y3c{bottom:340.000000pt;}
.y28{bottom:365.733333pt;}
.y3b{bottom:378.400000pt;}
.y27{bottom:404.133333pt;}
.y3a{bottom:416.800000pt;}
.y26{bottom:442.533333pt;}
.y39{bottom:455.200000pt;}
.y25{bottom:480.933333pt;}
.y38{bottom:493.600000pt;}
.y24{bottom:519.333333pt;}
.y37{bottom:532.000000pt;}
.y23{bottom:557.733333pt;}
.y36{bottom:570.400000pt;}
.y22{bottom:596.133333pt;}
.y35{bottom:608.800000pt;}
.y21{bottom:634.533333pt;}
.y34{bottom:647.200000pt;}
.y20{bottom:672.933333pt;}
.y33{bottom:686.880000pt;}
.y1f{bottom:711.333333pt;}
.y32{bottom:724.000000pt;}
.y1e{bottom:749.733333pt;}
.y1d{bottom:789.440000pt;}
.y31{bottom:798.173333pt;}
.y1c{bottom:826.560000pt;}
.y30{bottom:855.773333pt;}
.y1b{bottom:865.533333pt;}
.y7b{bottom:981.573333pt;}
.y8d{bottom:983.680000pt;}
.y7a{bottom:1018.693333pt;}
.y8c{bottom:1028.480000pt;}
.y79{bottom:1057.093333pt;}
.y8b{bottom:1073.280000pt;}
.y78{bottom:1095.493333pt;}
.y8a{bottom:1118.080000pt;}
.y77{bottom:1133.893333pt;}
.y89{bottom:1162.880000pt;}
.y88{bottom:1248.773333pt;}
.y87{bottom:1306.400000pt;}
.y83{bottom:1319.933333pt;}
.y82{bottom:1347.773333pt;}
.y81{bottom:1376.573333pt;}
.y1a{bottom:1393.666667pt;}
.y80{bottom:1405.373333pt;}
.y19{bottom:1430.786667pt;}
.y7f{bottom:1434.173333pt;}
.y7e{bottom:1462.973333pt;}
.y18{bottom:1469.186667pt;}
.y7d{bottom:1491.773333pt;}
.y17{bottom:1507.613333pt;}
.y7c{bottom:1520.573333pt;}
.y16{bottom:1546.013333pt;}
.y15{bottom:1584.413333pt;}
.y14{bottom:1622.813333pt;}
.y13{bottom:1661.213333pt;}
.y12{bottom:1699.613333pt;}
.y11{bottom:1738.013333pt;}
.y10{bottom:1776.413333pt;}
.yf{bottom:1816.093333pt;}
.ye{bottom:1853.213333pt;}
.yd{bottom:1891.613333pt;}
.yc{bottom:1935.586667pt;}
.y76{bottom:1946.400000pt;}
.y75{bottom:1997.600000pt;}
.yb{bottom:2019.066667pt;}
.ya{bottom:2056.186667pt;}
.y9{bottom:2094.586667pt;}
.y5e{bottom:2110.560000pt;}
.y8{bottom:2132.986667pt;}
.y5d{bottom:2148.960000pt;}
.y7{bottom:2171.386667pt;}
.y5c{bottom:2187.360000pt;}
.y6{bottom:2209.786667pt;}
.y5b{bottom:2225.760000pt;}
.y5a{bottom:2264.160000pt;}
.y5{bottom:2267.333333pt;}
.y65{bottom:2337.733333pt;}
.y4f{bottom:2354.586667pt;}
.y64{bottom:2365.573333pt;}
.y57{bottom:2378.746667pt;}
.y4e{bottom:2392.986667pt;}
.y63{bottom:2394.400000pt;}
.y56{bottom:2412.826667pt;}
.y62{bottom:2423.200000pt;}
.y4d{bottom:2431.386667pt;}
.y55{bottom:2451.520000pt;}
.y61{bottom:2452.000000pt;}
.y4c{bottom:2469.786667pt;}
.y60{bottom:2480.800000pt;}
.y54{bottom:2489.600000pt;}
.y4b{bottom:2508.186667pt;}
.y5f{bottom:2509.600000pt;}
.y53{bottom:2528.000000pt;}
.y4a{bottom:2546.586667pt;}
.y52{bottom:2566.746667pt;}
.y49{bottom:2584.986667pt;}
.y51{bottom:2605.146667pt;}
.y48{bottom:2623.386667pt;}
.y50{bottom:2660.346667pt;}
.y47{bottom:2676.546667pt;}
.y72{bottom:2766.240000pt;}
.y74{bottom:2777.306667pt;}
.y71{bottom:2804.640000pt;}
.y73{bottom:2806.106667pt;}
.y70{bottom:2843.040000pt;}
.y6f{bottom:2881.440000pt;}
.y6e{bottom:2919.840000pt;}
.y59{bottom:2949.506667pt;}
.y6d{bottom:2958.240000pt;}
.y58{bottom:3000.706667pt;}
.y6c{bottom:3035.066667pt;}
.y6b{bottom:3073.466667pt;}
.y2f{bottom:3108.773333pt;}
.y6a{bottom:3111.866667pt;}
.y2e{bottom:3145.893333pt;}
.y69{bottom:3150.266667pt;}
.y2d{bottom:3184.293333pt;}
.y68{bottom:3188.666667pt;}
.y2c{bottom:3244.480000pt;}
.y67{bottom:3246.266667pt;}
.y66{bottom:3306.213333pt;}
.y4{bottom:3316.733333pt;}
.y3{bottom:3338.493333pt;}
.y2{bottom:3358.013333pt;}
.y1{bottom:3392.733333pt;}
.h3{height:55.697500pt;}
.h11{height:72.937500pt;}
.h9{height:93.562500pt;}
.hf{height:100.125000pt;}
.h10{height:100.258500pt;}
.ha{height:110.937500pt;}
.hc{height:111.125000pt;}
.h2{height:111.472500pt;}
.hb{height:122.152500pt;}
.h13{height:129.242188pt;}
.he{height:131.062500pt;}
.hd{height:131.193562pt;}
.h5{height:133.500000pt;}
.h7{height:133.633500pt;}
.h6{height:148.351875pt;}
.h8{height:148.463000pt;}
.h4{height:166.687500pt;}
.h12{height:166.798625pt;}
.h1{height:178.222500pt;}
.h0{height:3456.000000pt;}
.w1{width:2303.999966pt;}
.w0{width:2304.000000pt;}
.x0{left:0.000000pt;}
.x19{left:53.791966pt;}
.x9{left:56.447966pt;}
.x6{left:59.487966pt;}
.x7{left:60.767966pt;}
.x5{left:65.759966pt;}
.x20{left:76.767966pt;}
.xa{left:87.071966pt;}
.x8{left:95.839966pt;}
.x1{left:148.453299pt;}
.x1d{left:177.853299pt;}
.x1e{left:186.813299pt;}
.x2{left:210.373299pt;}
.x1f{left:217.533299pt;}
.x3{left:318.853299pt;}
.x21{left:455.039966pt;}
.x1a{left:569.733299pt;}
.x14{left:602.879966pt;}
.x13{left:610.106632pt;}
.x10{left:626.173299pt;}
.x11{left:653.053299pt;}
.x12{left:732.893299pt;}
.x4{left:776.319966pt;}
.xb{left:1190.079966pt;}
.xc{left:1193.119966pt;}
.x16{left:1198.013299pt;}
.xd{left:1199.426632pt;}
.x1b{left:1204.413299pt;}
.xe{left:1205.533299pt;}
.x15{left:1209.826632pt;}
.xf{left:1241.533299pt;}
.x17{left:1776.026632pt;}
.x1c{left:1786.013299pt;}
.x18{left:2029.506632pt;}
}




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