
    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_c49c2d7d978a6b203dd3a25f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_199bc5586417c370706febc6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c979d3183d143aeaa9663abb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_5f5706774fc8e9cfc9ec8b22.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.786133;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_ff541f4f9b8733dd262fa704.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.786133;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_5e9d2f17434ae754bb329f31.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:27.360000px;}
.lsb{letter-spacing:-1.908000px;}
.lsd{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.422000px;}
.ls17{letter-spacing:-1.254000px;}
.ls9{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.942000px;}
.lse{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.810000px;}
.ls5{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.466800px;}
.ls14{letter-spacing:-0.313800px;}
.ls7{letter-spacing:-0.020160px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.140160px;}
.lsf{letter-spacing:0.184320px;}
.ls2{letter-spacing:0.466800px;}
.ls16{letter-spacing:0.498000px;}
.ls6{letter-spacing:0.507000px;}
.ls12{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls11{letter-spacing:2.160000px;}
.ls1{letter-spacing:7.920000px;}
.ls10{letter-spacing:32.400000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-60.480000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.627000px;}
.ws4{word-spacing:-15.586800px;}
.ws5{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.099840px;}
.ws8{word-spacing:-14.653200px;}
.wse{word-spacing:-14.310000px;}
.ws10{word-spacing:-14.178000px;}
.wsa{word-spacing:-14.148000px;}
.wsb{word-spacing:-13.698000px;}
.wsd{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.366200px;}
.wsc{word-spacing:-13.212000px;}
.ws11{word-spacing:-12.426000px;}
.ws0{word-spacing:-11.880000px;}
.ws9{word-spacing:0.000000px;}
._1e{margin-left:-5.201280px;}
._1f{margin-left:-3.749760px;}
._13{margin-left:-2.687040px;}
._0{margin-left:-1.512000px;}
._1{width:1.224000px;}
._3{width:2.721600px;}
._2{width:3.977280px;}
._7{width:5.080320px;}
._6{width:6.485760px;}
._12{width:8.452800px;}
._f{width:9.858240px;}
._10{width:11.007360px;}
._18{width:12.216960px;}
._15{width:13.426560px;}
._34{width:14.973120px;}
._11{width:16.148160px;}
._16{width:17.218080px;}
._5{width:18.350880px;}
._4{width:19.656000px;}
._e{width:20.815200px;}
._14{width:22.328640px;}
._17{width:24.252480px;}
._1d{width:25.349280px;}
._c{width:26.354880px;}
._d{width:28.123200px;}
._29{width:29.275200px;}
._20{width:30.447360px;}
._1b{width:32.054400px;}
._1c{width:33.240960px;}
._1a{width:34.398960px;}
._19{width:35.562240px;}
._8{width:37.497600px;}
._2a{width:39.118560px;}
._b{width:40.204800px;}
._9{width:41.670720px;}
._a{width:42.759360px;}
._23{width:50.126400px;}
._21{width:52.012800px;}
._22{width:53.217120px;}
._27{width:59.261280px;}
._26{width:61.084800px;}
._28{width:62.208480px;}
._25{width:65.560320px;}
._24{width:78.321600px;}
._30{width:94.366560px;}
._2d{width:106.519680px;}
._2e{width:108.057600px;}
._2b{width:120.876480px;}
._2c{width:122.961600px;}
._2f{width:144.276480px;}
._33{width:184.366080px;}
._31{width:186.163200px;}
._32{width:187.407360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:117.396000px;}
.yc7{bottom:119.196000px;}
.yb1{bottom:121.356000px;}
.y81{bottom:123.876000px;}
.y9d{bottom:124.596000px;}
.y61{bottom:124.956000px;}
.y33{bottom:134.676000px;}
.yfc{bottom:136.116000px;}
.yc6{bottom:136.476000px;}
.yb0{bottom:138.636000px;}
.y80{bottom:141.156000px;}
.y60{bottom:142.236000px;}
.y9c{bottom:147.636000px;}
.yfb{bottom:151.590000px;}
.y32{bottom:151.950000px;}
.yc5{bottom:153.750000px;}
.yaf{bottom:155.910000px;}
.y7f{bottom:158.475000px;}
.y5f{bottom:159.555000px;}
.yfa{bottom:167.115000px;}
.y31{bottom:169.275000px;}
.yc4{bottom:171.075000px;}
.yae{bottom:173.235000px;}
.y7e{bottom:175.755000px;}
.y5e{bottom:176.835000px;}
.yf9{bottom:182.595000px;}
.y30{bottom:186.555000px;}
.yc3{bottom:188.355000px;}
.y7d{bottom:193.035000px;}
.y5d{bottom:194.115000px;}
.yf8{bottom:198.075000px;}
.yad{bottom:199.515000px;}
.y2f{bottom:203.835000px;}
.yc2{bottom:205.275000px;}
.y7c{bottom:210.315000px;}
.y5c{bottom:211.395000px;}
.yf7{bottom:213.915000px;}
.y2e{bottom:221.115000px;}
.yac{bottom:222.555000px;}
.y7b{bottom:227.595000px;}
.y5b{bottom:228.675000px;}
.yf6{bottom:229.395000px;}
.y2d{bottom:238.395000px;}
.yc1{bottom:239.835000px;}
.y7a{bottom:244.875000px;}
.y5a{bottom:245.955000px;}
.y2c{bottom:255.675000px;}
.yc0{bottom:257.115000px;}
.yf5{bottom:260.355000px;}
.y79{bottom:262.155000px;}
.y59{bottom:263.235000px;}
.y2b{bottom:272.955000px;}
.ybf{bottom:274.395000px;}
.yf4{bottom:275.835000px;}
.y78{bottom:279.465000px;}
.y58{bottom:280.545000px;}
.y2a{bottom:289.905000px;}
.yf3{bottom:291.345000px;}
.ybe{bottom:291.705000px;}
.y77{bottom:296.745000px;}
.y57{bottom:297.465000px;}
.yf2{bottom:306.825000px;}
.y29{bottom:307.185000px;}
.ybd{bottom:308.985000px;}
.y76{bottom:313.665000px;}
.y56{bottom:314.745000px;}
.y9b{bottom:315.465000px;}
.yf1{bottom:322.305000px;}
.y28{bottom:324.465000px;}
.ybc{bottom:326.265000px;}
.y75{bottom:330.945000px;}
.y55{bottom:332.025000px;}
.y9a{bottom:332.745000px;}
.yf0{bottom:338.145000px;}
.y27{bottom:341.745000px;}
.ybb{bottom:343.545000px;}
.y74{bottom:348.225000px;}
.y54{bottom:349.305000px;}
.y99{bottom:350.025000px;}
.yef{bottom:353.625000px;}
.y26{bottom:359.025000px;}
.yba{bottom:360.825000px;}
.y73{bottom:365.505000px;}
.y53{bottom:366.585000px;}
.y98{bottom:367.305000px;}
.yee{bottom:369.105000px;}
.y25{bottom:376.305000px;}
.yb9{bottom:378.105000px;}
.y72{bottom:382.785000px;}
.y52{bottom:383.865000px;}
.y97{bottom:384.585000px;}
.y24{bottom:393.585000px;}
.yb8{bottom:395.385000px;}
.y71{bottom:400.110000px;}
.y51{bottom:401.190000px;}
.y96{bottom:401.910000px;}
.y23{bottom:410.910000px;}
.yb7{bottom:412.350000px;}
.yed{bottom:415.590000px;}
.y70{bottom:417.390000px;}
.y50{bottom:418.470000px;}
.y95{bottom:419.190000px;}
.y22{bottom:428.190000px;}
.yb6{bottom:429.630000px;}
.yec{bottom:431.070000px;}
.y6f{bottom:434.670000px;}
.y4f{bottom:435.750000px;}
.y94{bottom:436.110000px;}
.y21{bottom:445.470000px;}
.yeb{bottom:446.550000px;}
.yb5{bottom:446.910000px;}
.y6e{bottom:451.950000px;}
.y4e{bottom:453.030000px;}
.y93{bottom:453.390000px;}
.yea{bottom:462.390000px;}
.y20{bottom:462.750000px;}
.yb4{bottom:464.190000px;}
.y6d{bottom:469.230000px;}
.y4d{bottom:470.310000px;}
.y92{bottom:470.670000px;}
.ye9{bottom:477.870000px;}
.y1f{bottom:480.030000px;}
.yb3{bottom:481.470000px;}
.y6c{bottom:486.510000px;}
.y4c{bottom:487.590000px;}
.y91{bottom:487.950000px;}
.ye8{bottom:493.350000px;}
.y1e{bottom:496.950000px;}
.yb2{bottom:498.750000px;}
.y6b{bottom:503.430000px;}
.y4b{bottom:504.510000px;}
.y90{bottom:505.230000px;}
.ye7{bottom:508.830000px;}
.y1d{bottom:514.230000px;}
.yab{bottom:516.030000px;}
.y6a{bottom:520.710000px;}
.y4a{bottom:521.820000px;}
.y8f{bottom:522.540000px;}
.ye6{bottom:524.340000px;}
.y1c{bottom:531.540000px;}
.yaa{bottom:533.340000px;}
.y69{bottom:538.020000px;}
.y8e{bottom:539.820000px;}
.y49{bottom:548.100000px;}
.y1b{bottom:548.820000px;}
.ya9{bottom:550.620000px;}
.y68{bottom:555.300000px;}
.y8d{bottom:557.100000px;}
.y1a{bottom:566.100000px;}
.ya8{bottom:567.900000px;}
.ye5{bottom:570.780000px;}
.y48{bottom:571.140000px;}
.y67{bottom:572.580000px;}
.y8c{bottom:574.380000px;}
.y19{bottom:583.380000px;}
.ya7{bottom:585.180000px;}
.ye4{bottom:586.260000px;}
.y66{bottom:589.860000px;}
.y8b{bottom:591.660000px;}
.y18{bottom:600.660000px;}
.ya6{bottom:602.100000px;}
.y65{bottom:607.140000px;}
.y8a{bottom:608.940000px;}
.ye3{bottom:617.580000px;}
.y17{bottom:617.940000px;}
.ya5{bottom:619.380000px;}
.y89{bottom:625.860000px;}
.ye2{bottom:633.060000px;}
.y64{bottom:633.420000px;}
.y16{bottom:635.220000px;}
.ya4{bottom:636.660000px;}
.y88{bottom:643.170000px;}
.ye1{bottom:648.570000px;}
.y63{bottom:650.730000px;}
.y15{bottom:652.530000px;}
.ya3{bottom:653.970000px;}
.y87{bottom:660.450000px;}
.ye0{bottom:664.050000px;}
.y14{bottom:669.810000px;}
.ya2{bottom:671.250000px;}
.y62{bottom:673.770000px;}
.y86{bottom:677.730000px;}
.ydf{bottom:679.530000px;}
.y13{bottom:686.730000px;}
.ya1{bottom:688.530000px;}
.y85{bottom:695.010000px;}
.y12{bottom:704.010000px;}
.ya0{bottom:705.810000px;}
.yde{bottom:710.490000px;}
.y84{bottom:712.290000px;}
.y11{bottom:721.290000px;}
.y9f{bottom:723.090000px;}
.ydd{bottom:726.330000px;}
.y83{bottom:729.570000px;}
.y10{bottom:738.570000px;}
.y9e{bottom:740.370000px;}
.ydc{bottom:741.810000px;}
.yf{bottom:755.850000px;}
.ydb{bottom:757.290000px;}
.y47{bottom:757.650000px;}
.yda{bottom:772.815000px;}
.ye{bottom:773.175000px;}
.y46{bottom:774.975000px;}
.y82{bottom:778.935000px;}
.yd9{bottom:788.295000px;}
.yd{bottom:790.455000px;}
.y45{bottom:792.255000px;}
.yd8{bottom:803.775000px;}
.yc{bottom:807.735000px;}
.y44{bottom:809.175000px;}
.yd7{bottom:819.255000px;}
.yb{bottom:825.015000px;}
.y43{bottom:826.455000px;}
.yd6{bottom:834.735000px;}
.ya{bottom:842.295000px;}
.y42{bottom:843.735000px;}
.yd5{bottom:850.575000px;}
.y9{bottom:859.575000px;}
.y41{bottom:861.015000px;}
.yd4{bottom:866.055000px;}
.y8{bottom:877.575000px;}
.y40{bottom:878.295000px;}
.yd3{bottom:881.535000px;}
.y3f{bottom:895.605000px;}
.yd2{bottom:897.045000px;}
.y7{bottom:898.125000px;}
.yd1{bottom:912.525000px;}
.y3e{bottom:912.885000px;}
.y6{bottom:919.005000px;}
.yd0{bottom:928.005000px;}
.y3d{bottom:930.165000px;}
.y5{bottom:939.525000px;}
.ycf{bottom:943.485000px;}
.y3c{bottom:947.445000px;}
.yce{bottom:958.965000px;}
.y4{bottom:960.405000px;}
.y3b{bottom:964.725000px;}
.ycd{bottom:974.805000px;}
.y3{bottom:980.925000px;}
.y3a{bottom:982.005000px;}
.ycc{bottom:990.285000px;}
.y39{bottom:998.925000px;}
.y2{bottom:1001.805000px;}
.ycb{bottom:1005.765000px;}
.y38{bottom:1016.250000px;}
.yca{bottom:1021.290000px;}
.y1{bottom:1022.370000px;}
.y37{bottom:1033.530000px;}
.yc9{bottom:1036.770000px;}
.yff{bottom:1038.570000px;}
.y36{bottom:1050.810000px;}
.yc8{bottom:1052.250000px;}
.yfe{bottom:1054.050000px;}
.y35{bottom:1068.090000px;}
.yfd{bottom:1069.530000px;}
.h5{height:42.672656px;}
.h6{height:46.098281px;}
.h7{height:49.055625px;}
.h1{height:50.800781px;}
.h4{height:54.219375px;}
.h3{height:63.580078px;}
.h2{height:64.546875px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:81.035986px;}
.x6{left:83.555986px;}
.xd{left:90.035986px;}
.x5{left:91.115986px;}
.x9{left:108.035986px;}
.x3{left:149.471986px;}
.x15{left:186.914986px;}
.xa{left:195.914986px;}
.x7{left:222.554986px;}
.x1{left:240.584986px;}
.x4{left:385.709986px;}
.x13{left:427.499986px;}
.x12{left:430.019986px;}
.xe{left:445.859986px;}
.x2{left:459.179986px;}
.xb{left:472.139986px;}
.x11{left:490.139986px;}
.x10{left:496.619986px;}
.xc{left:499.139986px;}
.x16{left:592.049986px;}
.x17{left:596.729986px;}
.xf{left:760.604986px;}
.x14{left:803.489986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsb{letter-spacing:-1.696000pt;}
.lsd{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.264000pt;}
.ls17{letter-spacing:-1.114667pt;}
.ls9{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.837333pt;}
.lse{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.720000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.414933pt;}
.ls14{letter-spacing:-0.278933pt;}
.ls7{letter-spacing:-0.017920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.124587pt;}
.lsf{letter-spacing:0.163840pt;}
.ls2{letter-spacing:0.414933pt;}
.ls16{letter-spacing:0.442667pt;}
.ls6{letter-spacing:0.450667pt;}
.ls12{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.920000pt;}
.ls1{letter-spacing:7.040000pt;}
.ls10{letter-spacing:28.800000pt;}
.ws2{word-spacing:-53.760000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.890667pt;}
.ws4{word-spacing:-13.854933pt;}
.ws5{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.422080pt;}
.ws8{word-spacing:-13.025067pt;}
.wse{word-spacing:-12.720000pt;}
.ws10{word-spacing:-12.602667pt;}
.wsa{word-spacing:-12.576000pt;}
.wsb{word-spacing:-12.176000pt;}
.wsd{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.881067pt;}
.wsc{word-spacing:-11.744000pt;}
.ws11{word-spacing:-11.045333pt;}
.ws0{word-spacing:-10.560000pt;}
.ws9{word-spacing:0.000000pt;}
._1e{margin-left:-4.623360pt;}
._1f{margin-left:-3.333120pt;}
._13{margin-left:-2.388480pt;}
._0{margin-left:-1.344000pt;}
._1{width:1.088000pt;}
._3{width:2.419200pt;}
._2{width:3.535360pt;}
._7{width:4.515840pt;}
._6{width:5.765120pt;}
._12{width:7.513600pt;}
._f{width:8.762880pt;}
._10{width:9.784320pt;}
._18{width:10.859520pt;}
._15{width:11.934720pt;}
._34{width:13.309440pt;}
._11{width:14.353920pt;}
._16{width:15.304960pt;}
._5{width:16.311893pt;}
._4{width:17.472000pt;}
._e{width:18.502400pt;}
._14{width:19.847680pt;}
._17{width:21.557760pt;}
._1d{width:22.532693pt;}
._c{width:23.426560pt;}
._d{width:24.998400pt;}
._29{width:26.022400pt;}
._20{width:27.064320pt;}
._1b{width:28.492800pt;}
._1c{width:29.547520pt;}
._1a{width:30.576853pt;}
._19{width:31.610880pt;}
._8{width:33.331200pt;}
._2a{width:34.772053pt;}
._b{width:35.737600pt;}
._9{width:37.040640pt;}
._a{width:38.008320pt;}
._23{width:44.556800pt;}
._21{width:46.233600pt;}
._22{width:47.304107pt;}
._27{width:52.676693pt;}
._26{width:54.297600pt;}
._28{width:55.296427pt;}
._25{width:58.275840pt;}
._24{width:69.619200pt;}
._30{width:83.881387pt;}
._2d{width:94.684160pt;}
._2e{width:96.051200pt;}
._2b{width:107.445760pt;}
._2c{width:109.299200pt;}
._2f{width:128.245760pt;}
._33{width:163.880960pt;}
._31{width:165.478400pt;}
._32{width:166.584320pt;}
.fs1{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:104.352000pt;}
.yc7{bottom:105.952000pt;}
.yb1{bottom:107.872000pt;}
.y81{bottom:110.112000pt;}
.y9d{bottom:110.752000pt;}
.y61{bottom:111.072000pt;}
.y33{bottom:119.712000pt;}
.yfc{bottom:120.992000pt;}
.yc6{bottom:121.312000pt;}
.yb0{bottom:123.232000pt;}
.y80{bottom:125.472000pt;}
.y60{bottom:126.432000pt;}
.y9c{bottom:131.232000pt;}
.yfb{bottom:134.746667pt;}
.y32{bottom:135.066667pt;}
.yc5{bottom:136.666667pt;}
.yaf{bottom:138.586667pt;}
.y7f{bottom:140.866667pt;}
.y5f{bottom:141.826667pt;}
.yfa{bottom:148.546667pt;}
.y31{bottom:150.466667pt;}
.yc4{bottom:152.066667pt;}
.yae{bottom:153.986667pt;}
.y7e{bottom:156.226667pt;}
.y5e{bottom:157.186667pt;}
.yf9{bottom:162.306667pt;}
.y30{bottom:165.826667pt;}
.yc3{bottom:167.426667pt;}
.y7d{bottom:171.586667pt;}
.y5d{bottom:172.546667pt;}
.yf8{bottom:176.066667pt;}
.yad{bottom:177.346667pt;}
.y2f{bottom:181.186667pt;}
.yc2{bottom:182.466667pt;}
.y7c{bottom:186.946667pt;}
.y5c{bottom:187.906667pt;}
.yf7{bottom:190.146667pt;}
.y2e{bottom:196.546667pt;}
.yac{bottom:197.826667pt;}
.y7b{bottom:202.306667pt;}
.y5b{bottom:203.266667pt;}
.yf6{bottom:203.906667pt;}
.y2d{bottom:211.906667pt;}
.yc1{bottom:213.186667pt;}
.y7a{bottom:217.666667pt;}
.y5a{bottom:218.626667pt;}
.y2c{bottom:227.266667pt;}
.yc0{bottom:228.546667pt;}
.yf5{bottom:231.426667pt;}
.y79{bottom:233.026667pt;}
.y59{bottom:233.986667pt;}
.y2b{bottom:242.626667pt;}
.ybf{bottom:243.906667pt;}
.yf4{bottom:245.186667pt;}
.y78{bottom:248.413333pt;}
.y58{bottom:249.373333pt;}
.y2a{bottom:257.693333pt;}
.yf3{bottom:258.973333pt;}
.ybe{bottom:259.293333pt;}
.y77{bottom:263.773333pt;}
.y57{bottom:264.413333pt;}
.yf2{bottom:272.733333pt;}
.y29{bottom:273.053333pt;}
.ybd{bottom:274.653333pt;}
.y76{bottom:278.813333pt;}
.y56{bottom:279.773333pt;}
.y9b{bottom:280.413333pt;}
.yf1{bottom:286.493333pt;}
.y28{bottom:288.413333pt;}
.ybc{bottom:290.013333pt;}
.y75{bottom:294.173333pt;}
.y55{bottom:295.133333pt;}
.y9a{bottom:295.773333pt;}
.yf0{bottom:300.573333pt;}
.y27{bottom:303.773333pt;}
.ybb{bottom:305.373333pt;}
.y74{bottom:309.533333pt;}
.y54{bottom:310.493333pt;}
.y99{bottom:311.133333pt;}
.yef{bottom:314.333333pt;}
.y26{bottom:319.133333pt;}
.yba{bottom:320.733333pt;}
.y73{bottom:324.893333pt;}
.y53{bottom:325.853333pt;}
.y98{bottom:326.493333pt;}
.yee{bottom:328.093333pt;}
.y25{bottom:334.493333pt;}
.yb9{bottom:336.093333pt;}
.y72{bottom:340.253333pt;}
.y52{bottom:341.213333pt;}
.y97{bottom:341.853333pt;}
.y24{bottom:349.853333pt;}
.yb8{bottom:351.453333pt;}
.y71{bottom:355.653333pt;}
.y51{bottom:356.613333pt;}
.y96{bottom:357.253333pt;}
.y23{bottom:365.253333pt;}
.yb7{bottom:366.533333pt;}
.yed{bottom:369.413333pt;}
.y70{bottom:371.013333pt;}
.y50{bottom:371.973333pt;}
.y95{bottom:372.613333pt;}
.y22{bottom:380.613333pt;}
.yb6{bottom:381.893333pt;}
.yec{bottom:383.173333pt;}
.y6f{bottom:386.373333pt;}
.y4f{bottom:387.333333pt;}
.y94{bottom:387.653333pt;}
.y21{bottom:395.973333pt;}
.yeb{bottom:396.933333pt;}
.yb5{bottom:397.253333pt;}
.y6e{bottom:401.733333pt;}
.y4e{bottom:402.693333pt;}
.y93{bottom:403.013333pt;}
.yea{bottom:411.013333pt;}
.y20{bottom:411.333333pt;}
.yb4{bottom:412.613333pt;}
.y6d{bottom:417.093333pt;}
.y4d{bottom:418.053333pt;}
.y92{bottom:418.373333pt;}
.ye9{bottom:424.773333pt;}
.y1f{bottom:426.693333pt;}
.yb3{bottom:427.973333pt;}
.y6c{bottom:432.453333pt;}
.y4c{bottom:433.413333pt;}
.y91{bottom:433.733333pt;}
.ye8{bottom:438.533333pt;}
.y1e{bottom:441.733333pt;}
.yb2{bottom:443.333333pt;}
.y6b{bottom:447.493333pt;}
.y4b{bottom:448.453333pt;}
.y90{bottom:449.093333pt;}
.ye7{bottom:452.293333pt;}
.y1d{bottom:457.093333pt;}
.yab{bottom:458.693333pt;}
.y6a{bottom:462.853333pt;}
.y4a{bottom:463.840000pt;}
.y8f{bottom:464.480000pt;}
.ye6{bottom:466.080000pt;}
.y1c{bottom:472.480000pt;}
.yaa{bottom:474.080000pt;}
.y69{bottom:478.240000pt;}
.y8e{bottom:479.840000pt;}
.y49{bottom:487.200000pt;}
.y1b{bottom:487.840000pt;}
.ya9{bottom:489.440000pt;}
.y68{bottom:493.600000pt;}
.y8d{bottom:495.200000pt;}
.y1a{bottom:503.200000pt;}
.ya8{bottom:504.800000pt;}
.ye5{bottom:507.360000pt;}
.y48{bottom:507.680000pt;}
.y67{bottom:508.960000pt;}
.y8c{bottom:510.560000pt;}
.y19{bottom:518.560000pt;}
.ya7{bottom:520.160000pt;}
.ye4{bottom:521.120000pt;}
.y66{bottom:524.320000pt;}
.y8b{bottom:525.920000pt;}
.y18{bottom:533.920000pt;}
.ya6{bottom:535.200000pt;}
.y65{bottom:539.680000pt;}
.y8a{bottom:541.280000pt;}
.ye3{bottom:548.960000pt;}
.y17{bottom:549.280000pt;}
.ya5{bottom:550.560000pt;}
.y89{bottom:556.320000pt;}
.ye2{bottom:562.720000pt;}
.y64{bottom:563.040000pt;}
.y16{bottom:564.640000pt;}
.ya4{bottom:565.920000pt;}
.y88{bottom:571.706667pt;}
.ye1{bottom:576.506667pt;}
.y63{bottom:578.426667pt;}
.y15{bottom:580.026667pt;}
.ya3{bottom:581.306667pt;}
.y87{bottom:587.066667pt;}
.ye0{bottom:590.266667pt;}
.y14{bottom:595.386667pt;}
.ya2{bottom:596.666667pt;}
.y62{bottom:598.906667pt;}
.y86{bottom:602.426667pt;}
.ydf{bottom:604.026667pt;}
.y13{bottom:610.426667pt;}
.ya1{bottom:612.026667pt;}
.y85{bottom:617.786667pt;}
.y12{bottom:625.786667pt;}
.ya0{bottom:627.386667pt;}
.yde{bottom:631.546667pt;}
.y84{bottom:633.146667pt;}
.y11{bottom:641.146667pt;}
.y9f{bottom:642.746667pt;}
.ydd{bottom:645.626667pt;}
.y83{bottom:648.506667pt;}
.y10{bottom:656.506667pt;}
.y9e{bottom:658.106667pt;}
.ydc{bottom:659.386667pt;}
.yf{bottom:671.866667pt;}
.ydb{bottom:673.146667pt;}
.y47{bottom:673.466667pt;}
.yda{bottom:686.946667pt;}
.ye{bottom:687.266667pt;}
.y46{bottom:688.866667pt;}
.y82{bottom:692.386667pt;}
.yd9{bottom:700.706667pt;}
.yd{bottom:702.626667pt;}
.y45{bottom:704.226667pt;}
.yd8{bottom:714.466667pt;}
.yc{bottom:717.986667pt;}
.y44{bottom:719.266667pt;}
.yd7{bottom:728.226667pt;}
.yb{bottom:733.346667pt;}
.y43{bottom:734.626667pt;}
.yd6{bottom:741.986667pt;}
.ya{bottom:748.706667pt;}
.y42{bottom:749.986667pt;}
.yd5{bottom:756.066667pt;}
.y9{bottom:764.066667pt;}
.y41{bottom:765.346667pt;}
.yd4{bottom:769.826667pt;}
.y8{bottom:780.066667pt;}
.y40{bottom:780.706667pt;}
.yd3{bottom:783.586667pt;}
.y3f{bottom:796.093333pt;}
.yd2{bottom:797.373333pt;}
.y7{bottom:798.333333pt;}
.yd1{bottom:811.133333pt;}
.y3e{bottom:811.453333pt;}
.y6{bottom:816.893333pt;}
.yd0{bottom:824.893333pt;}
.y3d{bottom:826.813333pt;}
.y5{bottom:835.133333pt;}
.ycf{bottom:838.653333pt;}
.y3c{bottom:842.173333pt;}
.yce{bottom:852.413333pt;}
.y4{bottom:853.693333pt;}
.y3b{bottom:857.533333pt;}
.ycd{bottom:866.493333pt;}
.y3{bottom:871.933333pt;}
.y3a{bottom:872.893333pt;}
.ycc{bottom:880.253333pt;}
.y39{bottom:887.933333pt;}
.y2{bottom:890.493333pt;}
.ycb{bottom:894.013333pt;}
.y38{bottom:903.333333pt;}
.yca{bottom:907.813333pt;}
.y1{bottom:908.773333pt;}
.y37{bottom:918.693333pt;}
.yc9{bottom:921.573333pt;}
.yff{bottom:923.173333pt;}
.y36{bottom:934.053333pt;}
.yc8{bottom:935.333333pt;}
.yfe{bottom:936.933333pt;}
.y35{bottom:949.413333pt;}
.yfd{bottom:950.693333pt;}
.h5{height:37.931250pt;}
.h6{height:40.976250pt;}
.h7{height:43.605000pt;}
.h1{height:45.156250pt;}
.h4{height:48.195000pt;}
.h3{height:56.515625pt;}
.h2{height:57.375000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:72.031988pt;}
.x6{left:74.271988pt;}
.xd{left:80.031988pt;}
.x5{left:80.991988pt;}
.x9{left:96.031988pt;}
.x3{left:132.863988pt;}
.x15{left:166.146655pt;}
.xa{left:174.146655pt;}
.x7{left:197.826655pt;}
.x1{left:213.853321pt;}
.x4{left:342.853321pt;}
.x13{left:379.999988pt;}
.x12{left:382.239988pt;}
.xe{left:396.319988pt;}
.x2{left:408.159988pt;}
.xb{left:419.679988pt;}
.x11{left:435.679988pt;}
.x10{left:441.439988pt;}
.xc{left:443.679988pt;}
.x16{left:526.266655pt;}
.x17{left:530.426655pt;}
.xf{left:676.093321pt;}
.x14{left:714.213321pt;}
}




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