
    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_8a3d1f670ffe8d8a072e4044.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050000;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_d76332cb3202f52b4ac2a013.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_8eee94ae2c2cdb9f6675dcdb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_f6a27998535fdf7d51771f6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_1770df6ec7e0f376887623fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.780000;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_87eb7a20f3bdf898ce2dfdf8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.870605;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_fa44e8f98f5a6b7809e2c6d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.869629;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_77ca6ab0383619a3f97f1405.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939453;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_b85f17bd409c8fe583a92e4e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_be96f422cfdc8957a4cb1493.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_a30668df5346888c20c84fe3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_943dd2975c875cbbc457e2cd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933594;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);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.710000px;}
.ls10{letter-spacing:-0.900000px;}
.ls11{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.310200px;}
.ls6{letter-spacing:-0.270000px;}
.ls3{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.135600px;}
.ls1{letter-spacing:-0.094200px;}
.ls9{letter-spacing:-0.090000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.180000px;}
.lse{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.270600px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.450000px;}
.ls8{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.900000px;}
.lsa{letter-spacing:175.944000px;}
.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;}
}
.ws8{word-spacing:-90.000000px;}
.wsf{word-spacing:-31.095240px;}
.wse{word-spacing:-30.689040px;}
.ws7{word-spacing:-25.470000px;}
.ws10{word-spacing:-25.380000px;}
.wsd{word-spacing:-25.290000px;}
.wsa{word-spacing:-25.200000px;}
.ws6{word-spacing:-25.020000px;}
.wsb{word-spacing:-24.930000px;}
.ws5{word-spacing:-24.840000px;}
.ws9{word-spacing:-24.750000px;}
.wsc{word-spacing:-24.660000px;}
.ws12{word-spacing:-24.480000px;}
.ws11{word-spacing:-24.120000px;}
.ws13{word-spacing:-23.310000px;}
.ws2{word-spacing:-21.641760px;}
.ws3{word-spacing:-21.331560px;}
.ws0{word-spacing:-0.114000px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:0.168000px;}
._0{margin-left:-9.605462px;}
._1{margin-left:-7.726133px;}
._2{margin-left:-2.052000px;}
._a{margin-left:-1.038560px;}
._3{width:1.313410px;}
._4{width:2.395260px;}
._14{width:3.420000px;}
._9{width:4.968590px;}
._8{width:6.210000px;}
._b{width:8.100000px;}
._10{width:9.180000px;}
._c{width:10.440000px;}
._15{width:11.461692px;}
._d{width:12.463209px;}
._f{width:14.159970px;}
._e{width:15.552000px;}
._11{width:16.650000px;}
._2a{width:17.748590px;}
._25{width:18.785970px;}
._13{width:20.970000px;}
._5{width:22.680000px;}
._1d{width:26.640000px;}
._29{width:27.853119px;}
._28{width:29.046000px;}
._22{width:33.185970px;}
._23{width:34.272120px;}
._1c{width:35.820000px;}
._1b{width:36.990000px;}
._2b{width:39.215970px;}
._2c{width:40.273359px;}
._18{width:41.580000px;}
._24{width:44.615970px;}
._19{width:46.710000px;}
._1f{width:55.146000px;}
._20{width:56.160000px;}
._17{width:57.510000px;}
._16{width:58.770000px;}
._12{width:62.460000px;}
._1a{width:63.540000px;}
._2d{width:81.876000px;}
._21{width:84.125970px;}
._26{width:88.895970px;}
._27{width:89.910000px;}
._7{width:95.879952px;}
._6{width:140.915970px;}
._2f{width:171.876000px;}
._2e{width:186.816000px;}
._30{width:190.956000px;}
._1e{width:839.136000px;}
.fc6{color:rgb(255,0,0);}
.fc7{color:rgb(62,79,133);}
.fc5{color:rgb(47,46,46);}
.fc4{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(44,53,86);}
.fsd{font-size:48.240000px;}
.fs6{font-size:60.000000px;}
.fsb{font-size:72.000000px;}
.fs9{font-size:90.000000px;}
.fs7{font-size:95.760000px;}
.fs0{font-size:104.407200px;}
.fs2{font-size:108.473400px;}
.fsc{font-size:110.880000px;}
.fs4{font-size:113.940000px;}
.fs5{font-size:114.000000px;}
.fsa{font-size:144.000000px;}
.fs3{font-size:162.000000px;}
.fs8{font-size:167.760000px;}
.fs1{font-size:256.840200px;}
.y0{bottom:0.000000px;}
.y8{bottom:57.857400px;}
.y21{bottom:61.596000px;}
.y11{bottom:87.876000px;}
.y61{bottom:120.636000px;}
.yc4{bottom:134.856000px;}
.y10{bottom:140.616000px;}
.y41{bottom:142.056000px;}
.y81{bottom:142.236000px;}
.y60{bottom:151.590000px;}
.y97{bottom:159.690000px;}
.yb8{bottom:165.810000px;}
.y40{bottom:173.190000px;}
.y73{bottom:173.370000px;}
.y5f{bottom:182.730000px;}
.y96{bottom:190.650000px;}
.yb7{bottom:196.950000px;}
.yc3{bottom:197.130000px;}
.y3f{bottom:204.150000px;}
.y9a{bottom:204.330000px;}
.yf{bottom:210.990000px;}
.y5e{bottom:213.690000px;}
.y95{bottom:221.790000px;}
.yb6{bottom:227.910000px;}
.y3e{bottom:235.290000px;}
.y80{bottom:235.470000px;}
.y5d{bottom:244.650000px;}
.y7{bottom:251.330100px;}
.y94{bottom:252.750000px;}
.yd8{bottom:253.470000px;}
.y20{bottom:258.690000px;}
.yb5{bottom:259.050000px;}
.ybf{bottom:259.230000px;}
.y3d{bottom:266.250000px;}
.y9d{bottom:266.430000px;}
.y5c{bottom:275.835000px;}
.y93{bottom:283.935000px;}
.y1f{bottom:289.875000px;}
.ybe{bottom:290.055000px;}
.yb4{bottom:290.235000px;}
.y3c{bottom:297.255000px;}
.y72{bottom:297.435000px;}
.y5b{bottom:306.975000px;}
.y92{bottom:314.895000px;}
.y1e{bottom:320.835000px;}
.yb3{bottom:321.195000px;}
.yc2{bottom:321.375000px;}
.y3b{bottom:328.395000px;}
.y76{bottom:328.575000px;}
.yd7{bottom:329.475000px;}
.y5a{bottom:337.935000px;}
.y91{bottom:346.035000px;}
.y1d{bottom:351.975000px;}
.yb2{bottom:352.155000px;}
.yd6{bottom:355.575000px;}
.y3a{bottom:359.355000px;}
.ybb{bottom:359.535000px;}
.y59{bottom:368.895000px;}
.y90{bottom:377.175000px;}
.y1c{bottom:382.935000px;}
.yb1{bottom:383.295000px;}
.ybd{bottom:383.475000px;}
.yc1{bottom:385.455000px;}
.y39{bottom:390.495000px;}
.y99{bottom:390.675000px;}
.y58{bottom:400.035000px;}
.y8f{bottom:408.135000px;}
.yb0{bottom:414.255000px;}
.y38{bottom:421.455000px;}
.y71{bottom:421.635000px;}
.y57{bottom:431.175000px;}
.yd5{bottom:431.535000px;}
.y8e{bottom:439.095000px;}
.yaf{bottom:445.575000px;}
.ybc{bottom:447.555000px;}
.y1b{bottom:451.155000px;}
.y37{bottom:452.595000px;}
.y9c{bottom:452.775000px;}
.y56{bottom:460.155000px;}
.yd4{bottom:462.675000px;}
.y8d{bottom:470.235000px;}
.yae{bottom:476.355000px;}
.y36{bottom:483.555000px;}
.y7f{bottom:483.735000px;}
.y55{bottom:492.915000px;}
.yd3{bottom:493.635000px;}
.y8c{bottom:501.375000px;}
.yad{bottom:507.495000px;}
.y35{bottom:514.695000px;}
.y75{bottom:514.875000px;}
.y5{bottom:516.928200px;}
.yd2{bottom:524.595000px;}
.y8b{bottom:532.335000px;}
.y54{bottom:536.835000px;}
.yac{bottom:538.455000px;}
.y34{bottom:543.855000px;}
.y74{bottom:545.655000px;}
.y70{bottom:545.835000px;}
.yd1{bottom:555.765000px;}
.ye{bottom:562.605000px;}
.y8a{bottom:565.485000px;}
.y53{bottom:567.825000px;}
.yab{bottom:569.625000px;}
.y33{bottom:576.645000px;}
.y6f{bottom:576.825000px;}
.y7e{bottom:577.005000px;}
.y6{bottom:579.706200px;}
.yd0{bottom:586.725000px;}
.y52{bottom:598.965000px;}
.yaa{bottom:600.765000px;}
.y89{bottom:601.665000px;}
.y6e{bottom:607.785000px;}
.y7d{bottom:607.965000px;}
.ycf{bottom:617.865000px;}
.y32{bottom:620.385000px;}
.y51{bottom:629.745000px;}
.ya9{bottom:631.725000px;}
.y88{bottom:632.805000px;}
.y7c{bottom:638.925000px;}
.y6d{bottom:639.105000px;}
.yd{bottom:642.165000px;}
.yce{bottom:648.825000px;}
.y31{bottom:651.525000px;}
.y50{bottom:660.885000px;}
.ya8{bottom:662.685000px;}
.y87{bottom:663.765000px;}
.y4{bottom:668.990100px;}
.y6c{bottom:669.885000px;}
.y7b{bottom:670.065000px;}
.ycd{bottom:679.965000px;}
.y30{bottom:682.305000px;}
.y4f{bottom:692.025000px;}
.ya7{bottom:693.825000px;}
.y86{bottom:694.725000px;}
.y6b{bottom:701.025000px;}
.y98{bottom:701.205000px;}
.yc{bottom:703.725000px;}
.ycc{bottom:710.925000px;}
.y3{bottom:711.818222px;}
.y2f{bottom:713.445000px;}
.y4e{bottom:724.425000px;}
.ya6{bottom:724.785000px;}
.y85{bottom:726.045000px;}
.y7a{bottom:731.985000px;}
.y6a{bottom:732.165000px;}
.ycb{bottom:737.385000px;}
.y2e{bottom:744.405000px;}
.yca{bottom:753.765000px;}
.y4d{bottom:755.565000px;}
.ya5{bottom:756.105000px;}
.y84{bottom:757.005000px;}
.y69{bottom:763.125000px;}
.y79{bottom:763.305000px;}
.y2{bottom:773.331450px;}
.y2d{bottom:775.545000px;}
.y4c{bottom:786.525000px;}
.ya4{bottom:786.885000px;}
.y83{bottom:793.905000px;}
.y1a{bottom:794.085000px;}
.yba{bottom:794.265000px;}
.y2c{bottom:806.505000px;}
.y4b{bottom:817.665000px;}
.ya3{bottom:817.845000px;}
.y19{bottom:825.225000px;}
.yc0{bottom:825.405000px;}
.y2b{bottom:837.645000px;}
.y82{bottom:843.630000px;}
.y1{bottom:844.219350px;}
.y4a{bottom:848.850000px;}
.ya2{bottom:849.030000px;}
.y18{bottom:856.230000px;}
.y68{bottom:856.410000px;}
.y2a{bottom:868.650000px;}
.yc9{bottom:870.450000px;}
.yb{bottom:870.630000px;}
.ya1{bottom:880.170000px;}
.y49{bottom:881.250000px;}
.y67{bottom:887.370000px;}
.y78{bottom:887.550000px;}
.y29{bottom:899.790000px;}
.yc8{bottom:901.410000px;}
.ya0{bottom:911.130000px;}
.y48{bottom:912.390000px;}
.y17{bottom:918.330000px;}
.yb9{bottom:918.510000px;}
.y28{bottom:930.750000px;}
.yc7{bottom:932.550000px;}
.y9f{bottom:944.430000px;}
.y47{bottom:944.790000px;}
.y16{bottom:949.470000px;}
.y66{bottom:949.650000px;}
.y27{bottom:961.890000px;}
.yc6{bottom:963.510000px;}
.y46{bottom:975.930000px;}
.y65{bottom:980.430000px;}
.y77{bottom:980.610000px;}
.yc5{bottom:989.610000px;}
.y26{bottom:992.850000px;}
.y45{bottom:1008.510000px;}
.y15{bottom:1011.570000px;}
.y9b{bottom:1011.750000px;}
.y25{bottom:1023.990000px;}
.ya{bottom:1028.490000px;}
.y44{bottom:1039.650000px;}
.y14{bottom:1042.530000px;}
.y64{bottom:1042.710000px;}
.y24{bottom:1054.950000px;}
.y9{bottom:1063.590000px;}
.y43{bottom:1072.050000px;}
.y63{bottom:1073.670000px;}
.y9e{bottom:1073.850000px;}
.y23{bottom:1086.090000px;}
.y42{bottom:1103.190000px;}
.y13{bottom:1104.630000px;}
.y22{bottom:1123.200000px;}
.y12{bottom:1135.800000px;}
.y62{bottom:1135.980000px;}
.h14{height:35.167148px;}
.h8{height:46.080000px;}
.hf{height:48.761719px;}
.h11{height:52.417969px;}
.h10{height:65.522461px;}
.hd{height:65.610352px;}
.hb{height:66.349336px;}
.h2{height:80.184730px;}
.h13{height:80.831953px;}
.h6{height:82.951436px;}
.h4{height:83.307571px;}
.h7{height:87.552000px;}
.he{height:104.835938px;}
.h12{height:104.976562px;}
.h5{height:117.940430px;}
.hc{height:127.949766px;}
.h3{height:195.455392px;}
.h1{height:1257.750000px;}
.h0{height:1257.803700px;}
.h9{height:1262.880000px;}
.ha{height:1263.000000px;}
.w0{width:887.882700px;}
.w1{width:888.000000px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:45.472200px;}
.x3{left:50.611200px;}
.x1{left:53.243400px;}
.x6{left:106.236000px;}
.x8{left:133.236000px;}
.x5{left:255.575250px;}
.x4{left:311.766450px;}
.xa{left:387.435000px;}
.x9{left:433.875000px;}
.x7{left:440.175000px;}
.xb{left:614.805000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.520000pt;}
.ls10{letter-spacing:-0.800000pt;}
.ls11{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.275733pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.120533pt;}
.ls1{letter-spacing:-0.083733pt;}
.ls9{letter-spacing:-0.080000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.240533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.400000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.800000pt;}
.lsa{letter-spacing:156.394667pt;}
.ws8{word-spacing:-80.000000pt;}
.wsf{word-spacing:-27.640213pt;}
.wse{word-spacing:-27.279147pt;}
.ws7{word-spacing:-22.640000pt;}
.ws10{word-spacing:-22.560000pt;}
.wsd{word-spacing:-22.480000pt;}
.wsa{word-spacing:-22.400000pt;}
.ws6{word-spacing:-22.240000pt;}
.wsb{word-spacing:-22.160000pt;}
.ws5{word-spacing:-22.080000pt;}
.ws9{word-spacing:-22.000000pt;}
.wsc{word-spacing:-21.920000pt;}
.ws12{word-spacing:-21.760000pt;}
.ws11{word-spacing:-21.440000pt;}
.ws13{word-spacing:-20.720000pt;}
.ws2{word-spacing:-19.237120pt;}
.ws3{word-spacing:-18.961387pt;}
.ws0{word-spacing:-0.101333pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:0.149333pt;}
._0{margin-left:-8.538189pt;}
._1{margin-left:-6.867674pt;}
._2{margin-left:-1.824000pt;}
._a{margin-left:-0.923164pt;}
._3{width:1.167476pt;}
._4{width:2.129120pt;}
._14{width:3.040000pt;}
._9{width:4.416524pt;}
._8{width:5.520000pt;}
._b{width:7.200000pt;}
._10{width:8.160000pt;}
._c{width:9.280000pt;}
._15{width:10.188171pt;}
._d{width:11.078408pt;}
._f{width:12.586640pt;}
._e{width:13.824000pt;}
._11{width:14.800000pt;}
._2a{width:15.776524pt;}
._25{width:16.698640pt;}
._13{width:18.640000pt;}
._5{width:20.160000pt;}
._1d{width:23.680000pt;}
._29{width:24.758328pt;}
._28{width:25.818667pt;}
._22{width:29.498640pt;}
._23{width:30.464107pt;}
._1c{width:31.840000pt;}
._1b{width:32.880000pt;}
._2b{width:34.858640pt;}
._2c{width:35.798542pt;}
._18{width:36.960000pt;}
._24{width:39.658640pt;}
._19{width:41.520000pt;}
._1f{width:49.018667pt;}
._20{width:49.920000pt;}
._17{width:51.120000pt;}
._16{width:52.240000pt;}
._12{width:55.520000pt;}
._1a{width:56.480000pt;}
._2d{width:72.778667pt;}
._21{width:74.778640pt;}
._26{width:79.018640pt;}
._27{width:79.920000pt;}
._7{width:85.226624pt;}
._6{width:125.258640pt;}
._2f{width:152.778667pt;}
._2e{width:166.058667pt;}
._30{width:169.738667pt;}
._1e{width:745.898667pt;}
.fsd{font-size:42.880000pt;}
.fs6{font-size:53.333333pt;}
.fsb{font-size:64.000000pt;}
.fs9{font-size:80.000000pt;}
.fs7{font-size:85.120000pt;}
.fs0{font-size:92.806400pt;}
.fs2{font-size:96.420800pt;}
.fsc{font-size:98.560000pt;}
.fs4{font-size:101.280000pt;}
.fs5{font-size:101.333333pt;}
.fsa{font-size:128.000000pt;}
.fs3{font-size:144.000000pt;}
.fs8{font-size:149.120000pt;}
.fs1{font-size:228.302400pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:51.428800pt;}
.y21{bottom:54.752000pt;}
.y11{bottom:78.112000pt;}
.y61{bottom:107.232000pt;}
.yc4{bottom:119.872000pt;}
.y10{bottom:124.992000pt;}
.y41{bottom:126.272000pt;}
.y81{bottom:126.432000pt;}
.y60{bottom:134.746667pt;}
.y97{bottom:141.946667pt;}
.yb8{bottom:147.386667pt;}
.y40{bottom:153.946667pt;}
.y73{bottom:154.106667pt;}
.y5f{bottom:162.426667pt;}
.y96{bottom:169.466667pt;}
.yb7{bottom:175.066667pt;}
.yc3{bottom:175.226667pt;}
.y3f{bottom:181.466667pt;}
.y9a{bottom:181.626667pt;}
.yf{bottom:187.546667pt;}
.y5e{bottom:189.946667pt;}
.y95{bottom:197.146667pt;}
.yb6{bottom:202.586667pt;}
.y3e{bottom:209.146667pt;}
.y80{bottom:209.306667pt;}
.y5d{bottom:217.466667pt;}
.y7{bottom:223.404533pt;}
.y94{bottom:224.666667pt;}
.yd8{bottom:225.306667pt;}
.y20{bottom:229.946667pt;}
.yb5{bottom:230.266667pt;}
.ybf{bottom:230.426667pt;}
.y3d{bottom:236.666667pt;}
.y9d{bottom:236.826667pt;}
.y5c{bottom:245.186667pt;}
.y93{bottom:252.386667pt;}
.y1f{bottom:257.666667pt;}
.ybe{bottom:257.826667pt;}
.yb4{bottom:257.986667pt;}
.y3c{bottom:264.226667pt;}
.y72{bottom:264.386667pt;}
.y5b{bottom:272.866667pt;}
.y92{bottom:279.906667pt;}
.y1e{bottom:285.186667pt;}
.yb3{bottom:285.506667pt;}
.yc2{bottom:285.666667pt;}
.y3b{bottom:291.906667pt;}
.y76{bottom:292.066667pt;}
.yd7{bottom:292.866667pt;}
.y5a{bottom:300.386667pt;}
.y91{bottom:307.586667pt;}
.y1d{bottom:312.866667pt;}
.yb2{bottom:313.026667pt;}
.yd6{bottom:316.066667pt;}
.y3a{bottom:319.426667pt;}
.ybb{bottom:319.586667pt;}
.y59{bottom:327.906667pt;}
.y90{bottom:335.266667pt;}
.y1c{bottom:340.386667pt;}
.yb1{bottom:340.706667pt;}
.ybd{bottom:340.866667pt;}
.yc1{bottom:342.626667pt;}
.y39{bottom:347.106667pt;}
.y99{bottom:347.266667pt;}
.y58{bottom:355.586667pt;}
.y8f{bottom:362.786667pt;}
.yb0{bottom:368.226667pt;}
.y38{bottom:374.626667pt;}
.y71{bottom:374.786667pt;}
.y57{bottom:383.266667pt;}
.yd5{bottom:383.586667pt;}
.y8e{bottom:390.306667pt;}
.yaf{bottom:396.066667pt;}
.ybc{bottom:397.826667pt;}
.y1b{bottom:401.026667pt;}
.y37{bottom:402.306667pt;}
.y9c{bottom:402.466667pt;}
.y56{bottom:409.026667pt;}
.yd4{bottom:411.266667pt;}
.y8d{bottom:417.986667pt;}
.yae{bottom:423.426667pt;}
.y36{bottom:429.826667pt;}
.y7f{bottom:429.986667pt;}
.y55{bottom:438.146667pt;}
.yd3{bottom:438.786667pt;}
.y8c{bottom:445.666667pt;}
.yad{bottom:451.106667pt;}
.y35{bottom:457.506667pt;}
.y75{bottom:457.666667pt;}
.y5{bottom:459.491733pt;}
.yd2{bottom:466.306667pt;}
.y8b{bottom:473.186667pt;}
.y54{bottom:477.186667pt;}
.yac{bottom:478.626667pt;}
.y34{bottom:483.426667pt;}
.y74{bottom:485.026667pt;}
.y70{bottom:485.186667pt;}
.yd1{bottom:494.013333pt;}
.ye{bottom:500.093333pt;}
.y8a{bottom:502.653333pt;}
.y53{bottom:504.733333pt;}
.yab{bottom:506.333333pt;}
.y33{bottom:512.573333pt;}
.y6f{bottom:512.733333pt;}
.y7e{bottom:512.893333pt;}
.y6{bottom:515.294400pt;}
.yd0{bottom:521.533333pt;}
.y52{bottom:532.413333pt;}
.yaa{bottom:534.013333pt;}
.y89{bottom:534.813333pt;}
.y6e{bottom:540.253333pt;}
.y7d{bottom:540.413333pt;}
.ycf{bottom:549.213333pt;}
.y32{bottom:551.453333pt;}
.y51{bottom:559.773333pt;}
.ya9{bottom:561.533333pt;}
.y88{bottom:562.493333pt;}
.y7c{bottom:567.933333pt;}
.y6d{bottom:568.093333pt;}
.yd{bottom:570.813333pt;}
.yce{bottom:576.733333pt;}
.y31{bottom:579.133333pt;}
.y50{bottom:587.453333pt;}
.ya8{bottom:589.053333pt;}
.y87{bottom:590.013333pt;}
.y4{bottom:594.657867pt;}
.y6c{bottom:595.453333pt;}
.y7b{bottom:595.613333pt;}
.ycd{bottom:604.413333pt;}
.y30{bottom:606.493333pt;}
.y4f{bottom:615.133333pt;}
.ya7{bottom:616.733333pt;}
.y86{bottom:617.533333pt;}
.y6b{bottom:623.133333pt;}
.y98{bottom:623.293333pt;}
.yc{bottom:625.533333pt;}
.ycc{bottom:631.933333pt;}
.y3{bottom:632.727309pt;}
.y2f{bottom:634.173333pt;}
.y4e{bottom:643.933333pt;}
.ya6{bottom:644.253333pt;}
.y85{bottom:645.373333pt;}
.y7a{bottom:650.653333pt;}
.y6a{bottom:650.813333pt;}
.ycb{bottom:655.453333pt;}
.y2e{bottom:661.693333pt;}
.yca{bottom:670.013333pt;}
.y4d{bottom:671.613333pt;}
.ya5{bottom:672.093333pt;}
.y84{bottom:672.893333pt;}
.y69{bottom:678.333333pt;}
.y79{bottom:678.493333pt;}
.y2{bottom:687.405733pt;}
.y2d{bottom:689.373333pt;}
.y4c{bottom:699.133333pt;}
.ya4{bottom:699.453333pt;}
.y83{bottom:705.693333pt;}
.y1a{bottom:705.853333pt;}
.yba{bottom:706.013333pt;}
.y2c{bottom:716.893333pt;}
.y4b{bottom:726.813333pt;}
.ya3{bottom:726.973333pt;}
.y19{bottom:733.533333pt;}
.yc0{bottom:733.693333pt;}
.y2b{bottom:744.573333pt;}
.y82{bottom:749.893333pt;}
.y1{bottom:750.417200pt;}
.y4a{bottom:754.533333pt;}
.ya2{bottom:754.693333pt;}
.y18{bottom:761.093333pt;}
.y68{bottom:761.253333pt;}
.y2a{bottom:772.133333pt;}
.yc9{bottom:773.733333pt;}
.yb{bottom:773.893333pt;}
.ya1{bottom:782.373333pt;}
.y49{bottom:783.333333pt;}
.y67{bottom:788.773333pt;}
.y78{bottom:788.933333pt;}
.y29{bottom:799.813333pt;}
.yc8{bottom:801.253333pt;}
.ya0{bottom:809.893333pt;}
.y48{bottom:811.013333pt;}
.y17{bottom:816.293333pt;}
.yb9{bottom:816.453333pt;}
.y28{bottom:827.333333pt;}
.yc7{bottom:828.933333pt;}
.y9f{bottom:839.493333pt;}
.y47{bottom:839.813333pt;}
.y16{bottom:843.973333pt;}
.y66{bottom:844.133333pt;}
.y27{bottom:855.013333pt;}
.yc6{bottom:856.453333pt;}
.y46{bottom:867.493333pt;}
.y65{bottom:871.493333pt;}
.y77{bottom:871.653333pt;}
.yc5{bottom:879.653333pt;}
.y26{bottom:882.533333pt;}
.y45{bottom:896.453333pt;}
.y15{bottom:899.173333pt;}
.y9b{bottom:899.333333pt;}
.y25{bottom:910.213333pt;}
.ya{bottom:914.213333pt;}
.y44{bottom:924.133333pt;}
.y14{bottom:926.693333pt;}
.y64{bottom:926.853333pt;}
.y24{bottom:937.733333pt;}
.y9{bottom:945.413333pt;}
.y43{bottom:952.933333pt;}
.y63{bottom:954.373333pt;}
.y9e{bottom:954.533333pt;}
.y23{bottom:965.413333pt;}
.y42{bottom:980.613333pt;}
.y13{bottom:981.893333pt;}
.y22{bottom:998.400000pt;}
.y12{bottom:1009.600000pt;}
.y62{bottom:1009.760000pt;}
.h14{height:31.259687pt;}
.h8{height:40.960000pt;}
.hf{height:43.343750pt;}
.h11{height:46.593750pt;}
.h10{height:58.242188pt;}
.hd{height:58.320312pt;}
.hb{height:58.977187pt;}
.h2{height:71.275315pt;}
.h13{height:71.850625pt;}
.h6{height:73.734609pt;}
.h4{height:74.051174pt;}
.h7{height:77.824000pt;}
.he{height:93.187500pt;}
.h12{height:93.312500pt;}
.h5{height:104.835938pt;}
.hc{height:113.733125pt;}
.h3{height:173.738126pt;}
.h1{height:1118.000000pt;}
.h0{height:1118.047733pt;}
.h9{height:1122.560000pt;}
.ha{height:1122.666667pt;}
.w0{width:789.229067pt;}
.w1{width:789.333333pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:40.419733pt;}
.x3{left:44.987733pt;}
.x1{left:47.327467pt;}
.x6{left:94.432000pt;}
.x8{left:118.432000pt;}
.x5{left:227.178000pt;}
.x4{left:277.125733pt;}
.xa{left:344.386667pt;}
.x9{left:385.666667pt;}
.x7{left:391.266667pt;}
.xb{left:546.493333pt;}
}




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