
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_a1cc24b0af6c2dd56c3a4691.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_bdc22878875f16ac102eb8c5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_96ecdb26115e4836614cec27.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_0f8759a56c2267c0becc6170.woff')format("woff");}.ff5{font-family:ff5;line-height:0.800781;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_cb4aaf09fef702674fe87465.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_f1482960febc44f8eb78570d.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a59a90382befa7c14443e7b3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_1f3b1d7345d8fae6f145a29f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_79dffbde44e128104c541fa1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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_c5dc7141da31fc0a44fb21df.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ef2d55e2bdf0c9cfb96bac34.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_233fa79461b31f9e29a23333.woff')format("woff");}.ffd{font-family:ffd;line-height:1.065430;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_99fca646cb7c8fd010cb909a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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_c5dc7141da31fc0a44fb21df.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-18.660000px;}
.lsb{letter-spacing:-17.220000px;}
.lsd{letter-spacing:-12.900000px;}
.lsc{letter-spacing:-10.020000px;}
.lsf{letter-spacing:-5.352000px;}
.lse{letter-spacing:-3.912000px;}
.ls16{letter-spacing:-0.420600px;}
.ls9{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.063600px;}
.ls15{letter-spacing:-0.013320px;}
.ls6{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.065520px;}
.ls12{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsa{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.405360px;}
.ls3{letter-spacing:1.440000px;}
.ls18{letter-spacing:3.693600px;}
.ls19{letter-spacing:47.726640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-14.493600px;}
.ws7{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.ws9{word-spacing:-13.162800px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:4.304880px;}
._8{margin-left:-3.426600px;}
._5{margin-left:-2.406600px;}
._0{margin-left:-1.020000px;}
._3{width:1.236276px;}
._7{width:2.358961px;}
._9{width:4.208400px;}
._b{width:5.891760px;}
._6{width:7.033800px;}
._4{width:8.506993px;}
._2{width:9.647207px;}
._1{width:10.820352px;}
._d{width:12.202320px;}
._c{width:14.488920px;}
._e{width:16.052040px;}
._a{width:17.993772px;}
._f{width:18.996240px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y10a{bottom:112.170000px;}
.yda{bottom:114.420000px;}
.ybc{bottom:115.230000px;}
.y63{bottom:119.910000px;}
.y109{bottom:129.720000px;}
.ybb{bottom:132.780000px;}
.y62{bottom:137.460000px;}
.ya8{bottom:138.450000px;}
.y27{bottom:141.240000px;}
.yd9{bottom:141.330000px;}
.y88{bottom:146.280000px;}
.y108{bottom:147.270000px;}
.yba{bottom:150.420000px;}
.y61{bottom:155.010000px;}
.ya7{bottom:157.260000px;}
.y26{bottom:158.880000px;}
.y87{bottom:163.830000px;}
.yb9{bottom:167.970000px;}
.y60{bottom:172.650000px;}
.y107{bottom:173.910000px;}
.ya6{bottom:174.900000px;}
.y25{bottom:176.430000px;}
.yd8{bottom:178.320000px;}
.y86{bottom:181.470000px;}
.yb8{bottom:185.520000px;}
.y77{bottom:186.780000px;}
.y5f{bottom:190.200000px;}
.y106{bottom:191.460000px;}
.ya5{bottom:192.450000px;}
.y24{bottom:193.980000px;}
.y85{bottom:199.020000px;}
.yb7{bottom:203.160000px;}
.yd7{bottom:205.230000px;}
.y5e{bottom:207.840000px;}
.y105{bottom:209.100000px;}
.ya4{bottom:210.000000px;}
.y23{bottom:211.620000px;}
.y84{bottom:216.570000px;}
.yb6{bottom:220.710000px;}
.y76{bottom:222.330000px;}
.y5d{bottom:225.390000px;}
.ya3{bottom:227.640000px;}
.y22{bottom:229.170000px;}
.y104{bottom:235.650000px;}
.yb5{bottom:238.350000px;}
.yd6{bottom:242.580000px;}
.y5c{bottom:242.940000px;}
.y83{bottom:243.210000px;}
.ya2{bottom:245.190000px;}
.y21{bottom:246.810000px;}
.y103{bottom:253.200000px;}
.y75{bottom:254.550000px;}
.y5b{bottom:260.580000px;}
.ya1{bottom:262.830000px;}
.y20{bottom:264.360000px;}
.yb4{bottom:265.260000px;}
.y102{bottom:270.840000px;}
.y5a{bottom:278.130000px;}
.y82{bottom:278.760000px;}
.ya0{bottom:280.560000px;}
.y1f{bottom:281.910000px;}
.y93{bottom:284.610000px;}
.yd5{bottom:290.910000px;}
.y59{bottom:295.680000px;}
.y101{bottom:297.390000px;}
.y1e{bottom:299.550000px;}
.y92{bottom:303.420000px;}
.y9f{bottom:308.370000px;}
.yd4{bottom:308.460000px;}
.y81{bottom:310.980000px;}
.y58{bottom:313.320000px;}
.yb3{bottom:313.500000px;}
.y100{bottom:314.940000px;}
.y1d{bottom:317.100000px;}
.y91{bottom:321.060000px;}
.yd3{bottom:326.100000px;}
.y57{bottom:330.870000px;}
.yff{bottom:332.580000px;}
.y1c{bottom:334.740000px;}
.yd2{bottom:343.650000px;}
.y9e{bottom:343.920000px;}
.yb2{bottom:345.720000px;}
.y90{bottom:347.610000px;}
.y56{bottom:348.510000px;}
.y1b{bottom:352.290000px;}
.yfe{bottom:359.130000px;}
.yd1{bottom:361.200000px;}
.y55{bottom:366.060000px;}
.y9d{bottom:376.140000px;}
.yfd{bottom:376.770000px;}
.yd0{bottom:378.840000px;}
.y1a{bottom:379.200000px;}
.y8f{bottom:383.160000px;}
.y54{bottom:383.610000px;}
.ycf{bottom:396.390000px;}
.y53{bottom:401.250000px;}
.yfc{bottom:403.320000px;}
.yce{bottom:413.940000px;}
.y8e{bottom:415.380000px;}
.y52{bottom:418.800000px;}
.yfb{bottom:420.870000px;}
.y19{bottom:427.800000px;}
.ycd{bottom:431.580000px;}
.y51{bottom:436.440000px;}
.yfa{bottom:438.510000px;}
.ycc{bottom:449.130000px;}
.y50{bottom:453.990000px;}
.y18{bottom:464.790000px;}
.yf9{bottom:465.060000px;}
.ycb{bottom:466.770000px;}
.y4f{bottom:471.570000px;}
.y17{bottom:482.460000px;}
.yf8{bottom:482.730000px;}
.yca{bottom:484.350000px;}
.y74{bottom:488.490000px;}
.y4e{bottom:489.210000px;}
.y16{bottom:500.010000px;}
.yf7{bottom:500.280000px;}
.yc9{bottom:501.900000px;}
.y73{bottom:506.130000px;}
.y4d{bottom:506.760000px;}
.y72{bottom:523.680000px;}
.y4c{bottom:524.400000px;}
.yf6{bottom:526.830000px;}
.y15{bottom:535.560000px;}
.yc8{bottom:537.540000px;}
.y4b{bottom:541.950000px;}
.yf5{bottom:544.470000px;}
.y71{bottom:550.230000px;}
.y14{bottom:553.200000px;}
.yc7{bottom:555.090000px;}
.y4a{bottom:559.500000px;}
.yf4{bottom:562.020000px;}
.y13{bottom:570.750000px;}
.yc6{bottom:572.730000px;}
.y49{bottom:577.140000px;}
.y70{bottom:582.900000px;}
.y80{bottom:587.490000px;}
.y12{bottom:588.390000px;}
.yf3{bottom:588.660000px;}
.yc5{bottom:590.280000px;}
.y48{bottom:594.690000px;}
.y7f{bottom:605.040000px;}
.yf2{bottom:606.210000px;}
.y8d{bottom:606.660000px;}
.y11{bottom:606.930000px;}
.yc4{bottom:607.830000px;}
.y47{bottom:612.330000px;}
.y6f{bottom:618.720000px;}
.y7e{bottom:622.590000px;}
.yf1{bottom:623.760000px;}
.y8c{bottom:624.300000px;}
.y10{bottom:625.380000px;}
.yc3{bottom:625.470000px;}
.y46{bottom:629.880000px;}
.yc2{bottom:643.020000px;}
.y45{bottom:647.430000px;}
.y7d{bottom:649.230000px;}
.yf0{bottom:650.400000px;}
.y8b{bottom:650.850000px;}
.yb1{bottom:652.110000px;}
.yc1{bottom:660.660000px;}
.yf{bottom:661.020000px;}
.y44{bottom:665.070000px;}
.y6e{bottom:667.050000px;}
.yef{bottom:667.950000px;}
.yb0{bottom:670.920000px;}
.yc0{bottom:678.210000px;}
.ye{bottom:678.570000px;}
.y43{bottom:682.620000px;}
.y6d{bottom:684.600000px;}
.y7c{bottom:684.780000px;}
.yee{bottom:685.590000px;}
.y8a{bottom:686.490000px;}
.yaf{bottom:688.560000px;}
.ybf{bottom:695.760000px;}
.yd{bottom:696.120000px;}
.y6c{bottom:702.240000px;}
.yae{bottom:706.110000px;}
.yed{bottom:712.140000px;}
.ybe{bottom:713.400000px;}
.yc{bottom:713.760000px;}
.y7b{bottom:717.000000px;}
.y42{bottom:718.260000px;}
.y89{bottom:718.620000px;}
.y6b{bottom:719.790000px;}
.yad{bottom:723.660000px;}
.yec{bottom:729.690000px;}
.y41{bottom:735.810000px;}
.y6a{bottom:737.340000px;}
.ybd{bottom:740.310000px;}
.yb{bottom:740.670000px;}
.yac{bottom:741.300000px;}
.yeb{bottom:747.330000px;}
.y40{bottom:753.360000px;}
.y69{bottom:754.980000px;}
.yab{bottom:767.850000px;}
.y3f{bottom:771.000000px;}
.yea{bottom:773.880000px;}
.y68{bottom:781.890000px;}
.ya{bottom:787.380000px;}
.y3e{bottom:788.550000px;}
.ye9{bottom:791.520000px;}
.y9c{bottom:800.880000px;}
.yaa{bottom:803.400000px;}
.y3d{bottom:806.190000px;}
.ye8{bottom:818.070000px;}
.y9b{bottom:819.690000px;}
.y9{bottom:823.200000px;}
.y3c{bottom:823.740000px;}
.y67{bottom:830.130000px;}
.ya9{bottom:835.620000px;}
.y9a{bottom:837.330000px;}
.y3b{bottom:841.290000px;}
.y66{bottom:847.770000px;}
.y99{bottom:854.880000px;}
.y3a{bottom:858.930000px;}
.y8{bottom:859.200000px;}
.ye7{bottom:862.260000px;}
.y65{bottom:865.320000px;}
.y98{bottom:872.520000px;}
.y39{bottom:876.480000px;}
.ye6{bottom:888.810000px;}
.y97{bottom:890.070000px;}
.y64{bottom:892.230000px;}
.y38{bottom:894.030000px;}
.y7{bottom:898.980000px;}
.ye5{bottom:906.450000px;}
.y37{bottom:911.670000px;}
.y96{bottom:916.620000px;}
.y6{bottom:916.980000px;}
.y36{bottom:929.220000px;}
.ye4{bottom:933.000000px;}
.y35{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.ye3{bottom:950.550000px;}
.y95{bottom:952.260000px;}
.y34{bottom:964.410000px;}
.ye2{bottom:977.190000px;}
.y33{bottom:981.960000px;}
.y94{bottom:984.480000px;}
.y4{bottom:987.630000px;}
.ye1{bottom:994.740000px;}
.y32{bottom:999.600000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1017.180000px;}
.ye0{bottom:1021.320000px;}
.y30{bottom:1034.820000px;}
.ydf{bottom:1038.960000px;}
.y2f{bottom:1052.370000px;}
.yde{bottom:1056.510000px;}
.y2e{bottom:1069.920000px;}
.y7a{bottom:1078.560000px;}
.ydd{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.y79{bottom:1096.110000px;}
.ydc{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y78{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.ydb{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.hd{height:61.793886px;}
.ha{height:62.585859px;}
.hc{height:67.714259px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x16{left:111.239987px;}
.x2{left:192.719987px;}
.x15{left:212.249987px;}
.x11{left:214.589987px;}
.x13{left:220.709987px;}
.xb{left:232.139987px;}
.x9{left:248.879987px;}
.x7{left:257.519987px;}
.x5{left:283.079987px;}
.xd{left:317.009987px;}
.xf{left:323.849987px;}
.x6{left:617.459987px;}
.x4{left:640.229987px;}
.x8{left:644.549987px;}
.x12{left:741.479987px;}
.x10{left:751.559987px;}
.xe{left:753.809987px;}
.x14{left:758.309987px;}
.xc{left:764.969987px;}
.xa{left:785.939987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-16.586667pt;}
.lsb{letter-spacing:-15.306667pt;}
.lsd{letter-spacing:-11.466667pt;}
.lsc{letter-spacing:-8.906667pt;}
.lsf{letter-spacing:-4.757333pt;}
.lse{letter-spacing:-3.477333pt;}
.ls16{letter-spacing:-0.373867pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls15{letter-spacing:-0.011840pt;}
.ls6{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.058240pt;}
.ls12{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsa{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.360320pt;}
.ls3{letter-spacing:1.280000pt;}
.ls18{letter-spacing:3.283200pt;}
.ls19{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws3{word-spacing:-12.883200pt;}
.ws7{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.ws9{word-spacing:-11.700267pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:3.826560pt;}
._8{margin-left:-3.045866pt;}
._5{margin-left:-2.139200pt;}
._0{margin-left:-0.906667pt;}
._3{width:1.098912pt;}
._7{width:2.096855pt;}
._9{width:3.740800pt;}
._b{width:5.237120pt;}
._6{width:6.252266pt;}
._4{width:7.561772pt;}
._2{width:8.575295pt;}
._1{width:9.618091pt;}
._d{width:10.846507pt;}
._c{width:12.879040pt;}
._e{width:14.268480pt;}
._a{width:15.994464pt;}
._f{width:16.885547pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y10a{bottom:99.706667pt;}
.yda{bottom:101.706667pt;}
.ybc{bottom:102.426667pt;}
.y63{bottom:106.586667pt;}
.y109{bottom:115.306667pt;}
.ybb{bottom:118.026667pt;}
.y62{bottom:122.186667pt;}
.ya8{bottom:123.066667pt;}
.y27{bottom:125.546667pt;}
.yd9{bottom:125.626667pt;}
.y88{bottom:130.026667pt;}
.y108{bottom:130.906667pt;}
.yba{bottom:133.706667pt;}
.y61{bottom:137.786667pt;}
.ya7{bottom:139.786667pt;}
.y26{bottom:141.226667pt;}
.y87{bottom:145.626667pt;}
.yb9{bottom:149.306667pt;}
.y60{bottom:153.466667pt;}
.y107{bottom:154.586667pt;}
.ya6{bottom:155.466667pt;}
.y25{bottom:156.826667pt;}
.yd8{bottom:158.506667pt;}
.y86{bottom:161.306667pt;}
.yb8{bottom:164.906667pt;}
.y77{bottom:166.026667pt;}
.y5f{bottom:169.066667pt;}
.y106{bottom:170.186667pt;}
.ya5{bottom:171.066667pt;}
.y24{bottom:172.426667pt;}
.y85{bottom:176.906667pt;}
.yb7{bottom:180.586667pt;}
.yd7{bottom:182.426667pt;}
.y5e{bottom:184.746667pt;}
.y105{bottom:185.866667pt;}
.ya4{bottom:186.666667pt;}
.y23{bottom:188.106667pt;}
.y84{bottom:192.506667pt;}
.yb6{bottom:196.186667pt;}
.y76{bottom:197.626667pt;}
.y5d{bottom:200.346667pt;}
.ya3{bottom:202.346667pt;}
.y22{bottom:203.706667pt;}
.y104{bottom:209.466667pt;}
.yb5{bottom:211.866667pt;}
.yd6{bottom:215.626667pt;}
.y5c{bottom:215.946667pt;}
.y83{bottom:216.186667pt;}
.ya2{bottom:217.946667pt;}
.y21{bottom:219.386667pt;}
.y103{bottom:225.066667pt;}
.y75{bottom:226.266667pt;}
.y5b{bottom:231.626667pt;}
.ya1{bottom:233.626667pt;}
.y20{bottom:234.986667pt;}
.yb4{bottom:235.786667pt;}
.y102{bottom:240.746667pt;}
.y5a{bottom:247.226667pt;}
.y82{bottom:247.786667pt;}
.ya0{bottom:249.386667pt;}
.y1f{bottom:250.586667pt;}
.y93{bottom:252.986667pt;}
.yd5{bottom:258.586667pt;}
.y59{bottom:262.826667pt;}
.y101{bottom:264.346667pt;}
.y1e{bottom:266.266667pt;}
.y92{bottom:269.706667pt;}
.y9f{bottom:274.106667pt;}
.yd4{bottom:274.186667pt;}
.y81{bottom:276.426667pt;}
.y58{bottom:278.506667pt;}
.yb3{bottom:278.666667pt;}
.y100{bottom:279.946667pt;}
.y1d{bottom:281.866667pt;}
.y91{bottom:285.386667pt;}
.yd3{bottom:289.866667pt;}
.y57{bottom:294.106667pt;}
.yff{bottom:295.626667pt;}
.y1c{bottom:297.546667pt;}
.yd2{bottom:305.466667pt;}
.y9e{bottom:305.706667pt;}
.yb2{bottom:307.306667pt;}
.y90{bottom:308.986667pt;}
.y56{bottom:309.786667pt;}
.y1b{bottom:313.146667pt;}
.yfe{bottom:319.226667pt;}
.yd1{bottom:321.066667pt;}
.y55{bottom:325.386667pt;}
.y9d{bottom:334.346667pt;}
.yfd{bottom:334.906667pt;}
.yd0{bottom:336.746667pt;}
.y1a{bottom:337.066667pt;}
.y8f{bottom:340.586667pt;}
.y54{bottom:340.986667pt;}
.ycf{bottom:352.346667pt;}
.y53{bottom:356.666667pt;}
.yfc{bottom:358.506667pt;}
.yce{bottom:367.946667pt;}
.y8e{bottom:369.226667pt;}
.y52{bottom:372.266667pt;}
.yfb{bottom:374.106667pt;}
.y19{bottom:380.266667pt;}
.ycd{bottom:383.626667pt;}
.y51{bottom:387.946667pt;}
.yfa{bottom:389.786667pt;}
.ycc{bottom:399.226667pt;}
.y50{bottom:403.546667pt;}
.y18{bottom:413.146667pt;}
.yf9{bottom:413.386667pt;}
.ycb{bottom:414.906667pt;}
.y4f{bottom:419.173333pt;}
.y17{bottom:428.853333pt;}
.yf8{bottom:429.093333pt;}
.yca{bottom:430.533333pt;}
.y74{bottom:434.213333pt;}
.y4e{bottom:434.853333pt;}
.y16{bottom:444.453333pt;}
.yf7{bottom:444.693333pt;}
.yc9{bottom:446.133333pt;}
.y73{bottom:449.893333pt;}
.y4d{bottom:450.453333pt;}
.y72{bottom:465.493333pt;}
.y4c{bottom:466.133333pt;}
.yf6{bottom:468.293333pt;}
.y15{bottom:476.053333pt;}
.yc8{bottom:477.813333pt;}
.y4b{bottom:481.733333pt;}
.yf5{bottom:483.973333pt;}
.y71{bottom:489.093333pt;}
.y14{bottom:491.733333pt;}
.yc7{bottom:493.413333pt;}
.y4a{bottom:497.333333pt;}
.yf4{bottom:499.573333pt;}
.y13{bottom:507.333333pt;}
.yc6{bottom:509.093333pt;}
.y49{bottom:513.013333pt;}
.y70{bottom:518.133333pt;}
.y80{bottom:522.213333pt;}
.y12{bottom:523.013333pt;}
.yf3{bottom:523.253333pt;}
.yc5{bottom:524.693333pt;}
.y48{bottom:528.613333pt;}
.y7f{bottom:537.813333pt;}
.yf2{bottom:538.853333pt;}
.y8d{bottom:539.253333pt;}
.y11{bottom:539.493333pt;}
.yc4{bottom:540.293333pt;}
.y47{bottom:544.293333pt;}
.y6f{bottom:549.973333pt;}
.y7e{bottom:553.413333pt;}
.yf1{bottom:554.453333pt;}
.y8c{bottom:554.933333pt;}
.y10{bottom:555.893333pt;}
.yc3{bottom:555.973333pt;}
.y46{bottom:559.893333pt;}
.yc2{bottom:571.573333pt;}
.y45{bottom:575.493333pt;}
.y7d{bottom:577.093333pt;}
.yf0{bottom:578.133333pt;}
.y8b{bottom:578.533333pt;}
.yb1{bottom:579.653333pt;}
.yc1{bottom:587.253333pt;}
.yf{bottom:587.573333pt;}
.y44{bottom:591.173333pt;}
.y6e{bottom:592.933333pt;}
.yef{bottom:593.733333pt;}
.yb0{bottom:596.373333pt;}
.yc0{bottom:602.853333pt;}
.ye{bottom:603.173333pt;}
.y43{bottom:606.773333pt;}
.y6d{bottom:608.533333pt;}
.y7c{bottom:608.693333pt;}
.yee{bottom:609.413333pt;}
.y8a{bottom:610.213333pt;}
.yaf{bottom:612.053333pt;}
.ybf{bottom:618.453333pt;}
.yd{bottom:618.773333pt;}
.y6c{bottom:624.213333pt;}
.yae{bottom:627.653333pt;}
.yed{bottom:633.013333pt;}
.ybe{bottom:634.133333pt;}
.yc{bottom:634.453333pt;}
.y7b{bottom:637.333333pt;}
.y42{bottom:638.453333pt;}
.y89{bottom:638.773333pt;}
.y6b{bottom:639.813333pt;}
.yad{bottom:643.253333pt;}
.yec{bottom:648.613333pt;}
.y41{bottom:654.053333pt;}
.y6a{bottom:655.413333pt;}
.ybd{bottom:658.053333pt;}
.yb{bottom:658.373333pt;}
.yac{bottom:658.933333pt;}
.yeb{bottom:664.293333pt;}
.y40{bottom:669.653333pt;}
.y69{bottom:671.093333pt;}
.yab{bottom:682.533333pt;}
.y3f{bottom:685.333333pt;}
.yea{bottom:687.893333pt;}
.y68{bottom:695.013333pt;}
.ya{bottom:699.893333pt;}
.y3e{bottom:700.933333pt;}
.ye9{bottom:703.573333pt;}
.y9c{bottom:711.893333pt;}
.yaa{bottom:714.133333pt;}
.y3d{bottom:716.613333pt;}
.ye8{bottom:727.173333pt;}
.y9b{bottom:728.613333pt;}
.y9{bottom:731.733333pt;}
.y3c{bottom:732.213333pt;}
.y67{bottom:737.893333pt;}
.ya9{bottom:742.773333pt;}
.y9a{bottom:744.293333pt;}
.y3b{bottom:747.813333pt;}
.y66{bottom:753.573333pt;}
.y99{bottom:759.893333pt;}
.y3a{bottom:763.493333pt;}
.y8{bottom:763.733333pt;}
.ye7{bottom:766.453333pt;}
.y65{bottom:769.173333pt;}
.y98{bottom:775.573333pt;}
.y39{bottom:779.093333pt;}
.ye6{bottom:790.053333pt;}
.y97{bottom:791.173333pt;}
.y64{bottom:793.093333pt;}
.y38{bottom:794.693333pt;}
.y7{bottom:799.093333pt;}
.ye5{bottom:805.733333pt;}
.y37{bottom:810.373333pt;}
.y96{bottom:814.773333pt;}
.y6{bottom:815.093333pt;}
.y36{bottom:825.973333pt;}
.ye4{bottom:829.333333pt;}
.y35{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.ye3{bottom:844.933333pt;}
.y95{bottom:846.453333pt;}
.y34{bottom:857.253333pt;}
.ye2{bottom:868.613333pt;}
.y33{bottom:872.853333pt;}
.y94{bottom:875.093333pt;}
.y4{bottom:877.893333pt;}
.ye1{bottom:884.213333pt;}
.y32{bottom:888.533333pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:904.160000pt;}
.ye0{bottom:907.840000pt;}
.y30{bottom:919.840000pt;}
.ydf{bottom:923.520000pt;}
.y2f{bottom:935.440000pt;}
.yde{bottom:939.120000pt;}
.y2e{bottom:951.040000pt;}
.y7a{bottom:958.720000pt;}
.ydd{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.y79{bottom:974.320000pt;}
.ydc{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y78{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.ydb{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.hd{height:54.927899pt;}
.ha{height:55.631875pt;}
.hc{height:60.190452pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x16{left:98.879988pt;}
.x2{left:171.306655pt;}
.x15{left:188.666655pt;}
.x11{left:190.746655pt;}
.x13{left:196.186655pt;}
.xb{left:206.346655pt;}
.x9{left:221.226655pt;}
.x7{left:228.906655pt;}
.x5{left:251.626655pt;}
.xd{left:281.786655pt;}
.xf{left:287.866655pt;}
.x6{left:548.853322pt;}
.x4{left:569.093322pt;}
.x8{left:572.933322pt;}
.x12{left:659.093322pt;}
.x10{left:668.053322pt;}
.xe{left:670.053322pt;}
.x14{left:674.053322pt;}
.xc{left:679.973322pt;}
.xa{left:698.613322pt;}
.x3{left:711.413322pt;}
}




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