
    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_97b212644822774a00ba2c2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_de37b0063b4384e4d85320f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_95f1359898168e2a98dce38b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_c424f3044e2f6b3ecc2ac511.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a41ca6d6904606443a0e9e02.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_cd9d14b1544dac8ea4809fbe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_84ca4b43b937c163e8504a3d.woff2')format("woff");}.ff8{font-family:ff8;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:-69.120000px;}
.v4{vertical-align:-63.336000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.v3{vertical-align:24.480000px;}
.ls20{letter-spacing:-1.908000px;}
.lsb{letter-spacing:-1.458000px;}
.ls16{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.422000px;}
.ls24{letter-spacing:-0.972000px;}
.ls9{letter-spacing:-0.954000px;}
.ls22{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.678000px;}
.lsd{letter-spacing:-0.507000px;}
.lsc{letter-spacing:-0.466800px;}
.ls21{letter-spacing:-0.020160px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.020160px;}
.ls7{letter-spacing:0.172800px;}
.ls1f{letter-spacing:0.466800px;}
.ls12{letter-spacing:0.486600px;}
.ls23{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.900000px;}
.ls18{letter-spacing:2.160000px;}
.ls10{letter-spacing:2.340000px;}
.ls1d{letter-spacing:3.600000px;}
.ls4{letter-spacing:5.040000px;}
.ls13{letter-spacing:6.480000px;}
.ls14{letter-spacing:12.240000px;}
.ls6{letter-spacing:15.120000px;}
.ls17{letter-spacing:19.440000px;}
.ls3{letter-spacing:25.320000px;}
.ls2{letter-spacing:26.640000px;}
.lsf{letter-spacing:33.840000px;}
.lse{letter-spacing:69.840000px;}
.ls1{letter-spacing:124.692000px;}
.ls1e{letter-spacing:163.198560px;}
.ls25{letter-spacing:163.318560px;}
.ls1a{letter-spacing:195.264000px;}
.ls19{letter-spacing:515.100000px;}
.ls26{letter-spacing:1151.832000px;}
.ls1c{letter-spacing:1732.632000px;}
.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;}
}
.wsf{word-spacing:-15.627000px;}
.ws8{word-spacing:-15.606600px;}
.ws10{word-spacing:-15.586800px;}
.ws7{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.099840px;}
.ws4{word-spacing:-14.653200px;}
.ws5{word-spacing:-14.613000px;}
.wsb{word-spacing:-14.442000px;}
.wse{word-spacing:-14.184000px;}
.ws1{word-spacing:-14.166000px;}
.ws9{word-spacing:-13.698000px;}
.ws2{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.662000px;}
.wsc{word-spacing:-13.212000px;}
.ws11{word-spacing:-12.240000px;}
.wsa{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-8.116800px;}
._f{margin-left:-3.677760px;}
._4{margin-left:-2.661120px;}
._0{margin-left:-1.320000px;}
._1{width:1.222080px;}
._3{width:2.331840px;}
._e{width:3.961920px;}
._16{width:5.118720px;}
._17{width:6.323040px;}
._9{width:7.417920px;}
._8{width:8.651040px;}
._d{width:9.919200px;}
._14{width:11.583360px;}
._13{width:13.222560px;}
._15{width:17.141760px;}
._10{width:18.412800px;}
._c{width:20.239200px;}
._b{width:21.405120px;}
._a{width:22.568160px;}
._1e{width:23.756160px;}
._7{width:24.835200px;}
._6{width:25.864800px;}
._1b{width:26.928960px;}
._5{width:28.246560px;}
._25{width:30.097920px;}
._1f{width:32.054400px;}
._1c{width:34.027200px;}
._20{width:35.314560px;}
._1a{width:37.968960px;}
._12{width:39.351360px;}
._1d{width:40.466880px;}
._11{width:41.895360px;}
._26{width:43.533120px;}
._27{width:45.319680px;}
._24{width:53.380800px;}
._23{width:55.186560px;}
._28{width:69.469920px;}
._29{width:70.682400px;}
._21{width:72.444480px;}
._22{width:73.611360px;}
._19{width:76.010880px;}
._18{width:77.222400px;}
._2b{width:88.953600px;}
._2a{width:90.154560px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y72{bottom:3.600000px;}
.y92{bottom:4.680000px;}
.y70{bottom:5.040000px;}
.y75{bottom:6.120000px;}
.y98{bottom:6.480000px;}
.y77{bottom:6.840000px;}
.y9c{bottom:6.870000px;}
.y9a{bottom:7.200000px;}
.y96{bottom:11.880000px;}
.y71{bottom:20.880000px;}
.y94{bottom:20.925000px;}
.y91{bottom:21.645000px;}
.y2{bottom:24.480000px;}
.y90{bottom:38.925000px;}
.y6e{bottom:40.320000px;}
.y1{bottom:65.520000px;}
.y8d{bottom:102.240000px;}
.y39{bottom:102.600000px;}
.yc7{bottom:102.960000px;}
.y6a{bottom:113.436000px;}
.yce{bottom:116.676000px;}
.y38{bottom:118.116000px;}
.y8c{bottom:119.556000px;}
.yc6{bottom:120.276000px;}
.y69{bottom:130.716000px;}
.y37{bottom:133.596000px;}
.y8b{bottom:136.836000px;}
.yc5{bottom:137.556000px;}
.y68{bottom:147.996000px;}
.y36{bottom:150.870000px;}
.y8a{bottom:153.750000px;}
.yc4{bottom:154.830000px;}
.y67{bottom:165.270000px;}
.y35{bottom:168.150000px;}
.y89{bottom:171.030000px;}
.yc3{bottom:171.750000px;}
.y66{bottom:182.190000px;}
.y34{bottom:185.790000px;}
.y88{bottom:188.310000px;}
.yc2{bottom:189.030000px;}
.ycd{bottom:199.110000px;}
.y65{bottom:199.470000px;}
.y33{bottom:203.070000px;}
.y87{bottom:205.590000px;}
.yc1{bottom:206.310000px;}
.y64{bottom:216.750000px;}
.y32{bottom:220.395000px;}
.y86{bottom:222.915000px;}
.yc0{bottom:223.635000px;}
.y63{bottom:234.075000px;}
.y31{bottom:237.675000px;}
.y85{bottom:240.195000px;}
.ybf{bottom:240.915000px;}
.y62{bottom:251.355000px;}
.y30{bottom:254.955000px;}
.y84{bottom:257.475000px;}
.ybe{bottom:258.195000px;}
.y61{bottom:268.275000px;}
.ycc{bottom:268.635000px;}
.y2f{bottom:272.235000px;}
.y83{bottom:274.755000px;}
.ybd{bottom:275.475000px;}
.ycb{bottom:285.555000px;}
.y60{bottom:285.915000px;}
.y2e{bottom:289.515000px;}
.y82{bottom:292.035000px;}
.ybc{bottom:292.755000px;}
.y5f{bottom:303.195000px;}
.y2d{bottom:306.435000px;}
.y81{bottom:309.315000px;}
.ybb{bottom:310.035000px;}
.y5e{bottom:320.475000px;}
.y2c{bottom:323.745000px;}
.y80{bottom:326.625000px;}
.yba{bottom:327.345000px;}
.yca{bottom:337.425000px;}
.y5d{bottom:337.785000px;}
.y2b{bottom:341.025000px;}
.y7f{bottom:343.905000px;}
.yb9{bottom:344.625000px;}
.y5c{bottom:355.065000px;}
.y2a{bottom:358.305000px;}
.y7e{bottom:360.825000px;}
.yb8{bottom:361.905000px;}
.y5b{bottom:371.985000px;}
.y29{bottom:375.585000px;}
.y7d{bottom:378.105000px;}
.yb7{bottom:378.825000px;}
.yc9{bottom:388.905000px;}
.y5a{bottom:389.265000px;}
.y7c{bottom:392.505000px;}
.y28{bottom:392.865000px;}
.yb6{bottom:395.745000px;}
.y59{bottom:406.545000px;}
.y27{bottom:410.145000px;}
.y7b{bottom:410.505000px;}
.yb5{bottom:413.385000px;}
.y58{bottom:423.825000px;}
.y26{bottom:427.470000px;}
.yb4{bottom:430.710000px;}
.y7a{bottom:431.790000px;}
.yc8{bottom:440.790000px;}
.y57{bottom:441.150000px;}
.y25{bottom:444.750000px;}
.yb3{bottom:447.990000px;}
.y79{bottom:452.310000px;}
.y56{bottom:458.430000px;}
.y24{bottom:462.030000px;}
.yb2{bottom:465.270000px;}
.y78{bottom:472.830000px;}
.y55{bottom:475.710000px;}
.y23{bottom:479.310000px;}
.yb1{bottom:482.550000px;}
.y54{bottom:492.990000px;}
.y76{bottom:494.070000px;}
.y22{bottom:496.230000px;}
.yb0{bottom:499.830000px;}
.y53{bottom:510.270000px;}
.y21{bottom:513.510000px;}
.y74{bottom:515.310000px;}
.yaf{bottom:517.110000px;}
.y52{bottom:527.550000px;}
.y20{bottom:530.790000px;}
.yae{bottom:534.420000px;}
.y73{bottom:535.860000px;}
.y51{bottom:544.860000px;}
.y1f{bottom:548.100000px;}
.yad{bottom:551.700000px;}
.y6d{bottom:555.300000px;}
.y50{bottom:562.140000px;}
.y1e{bottom:565.380000px;}
.yac{bottom:568.620000px;}
.y4f{bottom:579.060000px;}
.y1d{bottom:582.660000px;}
.yab{bottom:585.900000px;}
.y6f{bottom:590.580000px;}
.y4e{bottom:596.340000px;}
.y1c{bottom:599.940000px;}
.yaa{bottom:602.820000px;}
.y6c{bottom:613.260000px;}
.y4d{bottom:613.620000px;}
.y1b{bottom:617.220000px;}
.ya9{bottom:620.460000px;}
.y4c{bottom:630.900000px;}
.y1a{bottom:634.500000px;}
.ya8{bottom:637.770000px;}
.y4b{bottom:648.210000px;}
.y19{bottom:651.810000px;}
.ya7{bottom:655.050000px;}
.y4a{bottom:665.130000px;}
.y6b{bottom:665.490000px;}
.y18{bottom:669.090000px;}
.ya6{bottom:672.330000px;}
.y49{bottom:682.770000px;}
.y17{bottom:686.370000px;}
.ya5{bottom:689.610000px;}
.y48{bottom:700.050000px;}
.y16{bottom:703.290000px;}
.ya4{bottom:706.890000px;}
.y47{bottom:717.330000px;}
.y15{bottom:720.570000px;}
.ya3{bottom:724.170000px;}
.y46{bottom:734.610000px;}
.y14{bottom:737.850000px;}
.ya2{bottom:741.450000px;}
.y45{bottom:751.935000px;}
.y13{bottom:755.175000px;}
.ya1{bottom:758.775000px;}
.y44{bottom:768.855000px;}
.y12{bottom:772.455000px;}
.ya0{bottom:775.695000px;}
.y43{bottom:786.135000px;}
.y11{bottom:789.735000px;}
.y9f{bottom:792.975000px;}
.y42{bottom:803.415000px;}
.y10{bottom:806.655000px;}
.y9e{bottom:810.255000px;}
.y41{bottom:820.695000px;}
.yf{bottom:824.295000px;}
.y9d{bottom:824.655000px;}
.y40{bottom:837.975000px;}
.ye{bottom:841.215000px;}
.y9b{bottom:846.255000px;}
.y3f{bottom:855.285000px;}
.yd{bottom:858.525000px;}
.y99{bottom:867.525000px;}
.y3e{bottom:872.565000px;}
.yc{bottom:873.645000px;}
.y97{bottom:889.125000px;}
.yb{bottom:889.845000px;}
.ya{bottom:907.125000px;}
.y95{bottom:910.005000px;}
.y9{bottom:924.045000px;}
.y3d{bottom:924.405000px;}
.y8f{bottom:936.285000px;}
.y8{bottom:941.325000px;}
.y3c{bottom:941.685000px;}
.y7{bottom:958.650000px;}
.y3b{bottom:959.010000px;}
.y93{bottom:971.610000px;}
.y6{bottom:975.930000px;}
.y8e{bottom:992.850000px;}
.y5{bottom:993.210000px;}
.y3a{bottom:1010.490000px;}
.y4{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.h12{height:17.280000px;}
.hc{height:18.720000px;}
.h10{height:19.800000px;}
.he{height:19.836000px;}
.h16{height:20.160000px;}
.h18{height:20.196000px;}
.hf{height:20.520000px;}
.h11{height:20.556000px;}
.h17{height:20.880000px;}
.h15{height:25.560000px;}
.hd{height:34.560000px;}
.h14{height:34.596000px;}
.h13{height:52.596000px;}
.h8{height:53.704687px;}
.hb{height:54.000000px;}
.h7{height:54.219375px;}
.h6{height:55.147500px;}
.h4{height:59.328281px;}
.h2{height:59.357813px;}
.h9{height:59.758594px;}
.h5{height:60.952500px;}
.h19{height:62.163910px;}
.ha{height:63.663750px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w7{width:144.432000px;}
.w5{width:144.468000px;}
.w6{width:144.792000px;}
.w8{width:145.512000px;}
.w3{width:159.195000px;}
.w9{width:203.865000px;}
.wa{width:243.825000px;}
.w4{width:435.135000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1e{left:28.080000px;}
.x16{left:36.405000px;}
.x14{left:38.565000px;}
.x17{left:40.320000px;}
.x15{left:42.165000px;}
.x18{left:43.920000px;}
.x1f{left:45.045000px;}
.x11{left:47.925000px;}
.xb{left:51.155989px;}
.x10{left:54.405000px;}
.x1a{left:72.396000px;}
.x3{left:76.715989px;}
.x1c{left:81.405000px;}
.x22{left:88.605000px;}
.xa{left:93.635989px;}
.x20{left:98.325000px;}
.xf{left:103.395000px;}
.x23{left:104.471989px;}
.x21{left:118.155000px;}
.x2{left:119.231989px;}
.x19{left:130.031989px;}
.xd{left:144.431989px;}
.x6{left:169.304989px;}
.x1b{left:197.745000px;}
.x7{left:224.744989px;}
.x24{left:235.184989px;}
.xe{left:236.625000px;}
.x4{left:335.339989px;}
.x9{left:337.859989px;}
.x1{left:363.419989px;}
.x5{left:374.609989px;}
.x12{left:381.810000px;}
.x8{left:395.849989px;}
.x1d{left:402.330000px;}
.x13{left:527.325000px;}
.xc{left:607.289989px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v4{vertical-align:-56.298667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.v3{vertical-align:21.760000pt;}
.ls20{letter-spacing:-1.696000pt;}
.lsb{letter-spacing:-1.296000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.264000pt;}
.ls24{letter-spacing:-0.864000pt;}
.ls9{letter-spacing:-0.848000pt;}
.ls22{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.602667pt;}
.lsd{letter-spacing:-0.450667pt;}
.lsc{letter-spacing:-0.414933pt;}
.ls21{letter-spacing:-0.017920pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.017920pt;}
.ls7{letter-spacing:0.153600pt;}
.ls1f{letter-spacing:0.414933pt;}
.ls12{letter-spacing:0.432533pt;}
.ls23{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls18{letter-spacing:1.920000pt;}
.ls10{letter-spacing:2.080000pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls4{letter-spacing:4.480000pt;}
.ls13{letter-spacing:5.760000pt;}
.ls14{letter-spacing:10.880000pt;}
.ls6{letter-spacing:13.440000pt;}
.ls17{letter-spacing:17.280000pt;}
.ls3{letter-spacing:22.506667pt;}
.ls2{letter-spacing:23.680000pt;}
.lsf{letter-spacing:30.080000pt;}
.lse{letter-spacing:62.080000pt;}
.ls1{letter-spacing:110.837333pt;}
.ls1e{letter-spacing:145.065387pt;}
.ls25{letter-spacing:145.172053pt;}
.ls1a{letter-spacing:173.568000pt;}
.ls19{letter-spacing:457.866667pt;}
.ls26{letter-spacing:1023.850667pt;}
.ls1c{letter-spacing:1540.117333pt;}
.wsf{word-spacing:-13.890667pt;}
.ws8{word-spacing:-13.872533pt;}
.ws10{word-spacing:-13.854933pt;}
.ws7{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.422080pt;}
.ws4{word-spacing:-13.025067pt;}
.ws5{word-spacing:-12.989333pt;}
.wsb{word-spacing:-12.837333pt;}
.wse{word-spacing:-12.608000pt;}
.ws1{word-spacing:-12.592000pt;}
.ws9{word-spacing:-12.176000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws3{word-spacing:-12.144000pt;}
.wsc{word-spacing:-11.744000pt;}
.ws11{word-spacing:-10.880000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-7.214933pt;}
._f{margin-left:-3.269120pt;}
._4{margin-left:-2.365440pt;}
._0{margin-left:-1.173333pt;}
._1{width:1.086293pt;}
._3{width:2.072747pt;}
._e{width:3.521707pt;}
._16{width:4.549973pt;}
._17{width:5.620480pt;}
._9{width:6.593707pt;}
._8{width:7.689813pt;}
._d{width:8.817067pt;}
._14{width:10.296320pt;}
._13{width:11.753387pt;}
._15{width:15.237120pt;}
._10{width:16.366933pt;}
._c{width:17.990400pt;}
._b{width:19.026773pt;}
._a{width:20.060587pt;}
._1e{width:21.116587pt;}
._7{width:22.075733pt;}
._6{width:22.990933pt;}
._1b{width:23.936853pt;}
._5{width:25.108053pt;}
._25{width:26.753707pt;}
._1f{width:28.492800pt;}
._1c{width:30.246400pt;}
._20{width:31.390720pt;}
._1a{width:33.750187pt;}
._12{width:34.978987pt;}
._1d{width:35.970560pt;}
._11{width:37.240320pt;}
._26{width:38.696107pt;}
._27{width:40.284160pt;}
._24{width:47.449600pt;}
._23{width:49.054720pt;}
._28{width:61.751040pt;}
._29{width:62.828800pt;}
._21{width:64.395093pt;}
._22{width:65.432320pt;}
._19{width:67.565227pt;}
._18{width:68.642133pt;}
._2b{width:79.069867pt;}
._2a{width:80.137387pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:3.200000pt;}
.y92{bottom:4.160000pt;}
.y70{bottom:4.480000pt;}
.y75{bottom:5.440000pt;}
.y98{bottom:5.760000pt;}
.y77{bottom:6.080000pt;}
.y9c{bottom:6.106667pt;}
.y9a{bottom:6.400000pt;}
.y96{bottom:10.560000pt;}
.y71{bottom:18.560000pt;}
.y94{bottom:18.600000pt;}
.y91{bottom:19.240000pt;}
.y2{bottom:21.760000pt;}
.y90{bottom:34.600000pt;}
.y6e{bottom:35.840000pt;}
.y1{bottom:58.240000pt;}
.y8d{bottom:90.880000pt;}
.y39{bottom:91.200000pt;}
.yc7{bottom:91.520000pt;}
.y6a{bottom:100.832000pt;}
.yce{bottom:103.712000pt;}
.y38{bottom:104.992000pt;}
.y8c{bottom:106.272000pt;}
.yc6{bottom:106.912000pt;}
.y69{bottom:116.192000pt;}
.y37{bottom:118.752000pt;}
.y8b{bottom:121.632000pt;}
.yc5{bottom:122.272000pt;}
.y68{bottom:131.552000pt;}
.y36{bottom:134.106667pt;}
.y8a{bottom:136.666667pt;}
.yc4{bottom:137.626667pt;}
.y67{bottom:146.906667pt;}
.y35{bottom:149.466667pt;}
.y89{bottom:152.026667pt;}
.yc3{bottom:152.666667pt;}
.y66{bottom:161.946667pt;}
.y34{bottom:165.146667pt;}
.y88{bottom:167.386667pt;}
.yc2{bottom:168.026667pt;}
.ycd{bottom:176.986667pt;}
.y65{bottom:177.306667pt;}
.y33{bottom:180.506667pt;}
.y87{bottom:182.746667pt;}
.yc1{bottom:183.386667pt;}
.y64{bottom:192.666667pt;}
.y32{bottom:195.906667pt;}
.y86{bottom:198.146667pt;}
.yc0{bottom:198.786667pt;}
.y63{bottom:208.066667pt;}
.y31{bottom:211.266667pt;}
.y85{bottom:213.506667pt;}
.ybf{bottom:214.146667pt;}
.y62{bottom:223.426667pt;}
.y30{bottom:226.626667pt;}
.y84{bottom:228.866667pt;}
.ybe{bottom:229.506667pt;}
.y61{bottom:238.466667pt;}
.ycc{bottom:238.786667pt;}
.y2f{bottom:241.986667pt;}
.y83{bottom:244.226667pt;}
.ybd{bottom:244.866667pt;}
.ycb{bottom:253.826667pt;}
.y60{bottom:254.146667pt;}
.y2e{bottom:257.346667pt;}
.y82{bottom:259.586667pt;}
.ybc{bottom:260.226667pt;}
.y5f{bottom:269.506667pt;}
.y2d{bottom:272.386667pt;}
.y81{bottom:274.946667pt;}
.ybb{bottom:275.586667pt;}
.y5e{bottom:284.866667pt;}
.y2c{bottom:287.773333pt;}
.y80{bottom:290.333333pt;}
.yba{bottom:290.973333pt;}
.yca{bottom:299.933333pt;}
.y5d{bottom:300.253333pt;}
.y2b{bottom:303.133333pt;}
.y7f{bottom:305.693333pt;}
.yb9{bottom:306.333333pt;}
.y5c{bottom:315.613333pt;}
.y2a{bottom:318.493333pt;}
.y7e{bottom:320.733333pt;}
.yb8{bottom:321.693333pt;}
.y5b{bottom:330.653333pt;}
.y29{bottom:333.853333pt;}
.y7d{bottom:336.093333pt;}
.yb7{bottom:336.733333pt;}
.yc9{bottom:345.693333pt;}
.y5a{bottom:346.013333pt;}
.y7c{bottom:348.893333pt;}
.y28{bottom:349.213333pt;}
.yb6{bottom:351.773333pt;}
.y59{bottom:361.373333pt;}
.y27{bottom:364.573333pt;}
.y7b{bottom:364.893333pt;}
.yb5{bottom:367.453333pt;}
.y58{bottom:376.733333pt;}
.y26{bottom:379.973333pt;}
.yb4{bottom:382.853333pt;}
.y7a{bottom:383.813333pt;}
.yc8{bottom:391.813333pt;}
.y57{bottom:392.133333pt;}
.y25{bottom:395.333333pt;}
.yb3{bottom:398.213333pt;}
.y79{bottom:402.053333pt;}
.y56{bottom:407.493333pt;}
.y24{bottom:410.693333pt;}
.yb2{bottom:413.573333pt;}
.y78{bottom:420.293333pt;}
.y55{bottom:422.853333pt;}
.y23{bottom:426.053333pt;}
.yb1{bottom:428.933333pt;}
.y54{bottom:438.213333pt;}
.y76{bottom:439.173333pt;}
.y22{bottom:441.093333pt;}
.yb0{bottom:444.293333pt;}
.y53{bottom:453.573333pt;}
.y21{bottom:456.453333pt;}
.y74{bottom:458.053333pt;}
.yaf{bottom:459.653333pt;}
.y52{bottom:468.933333pt;}
.y20{bottom:471.813333pt;}
.yae{bottom:475.040000pt;}
.y73{bottom:476.320000pt;}
.y51{bottom:484.320000pt;}
.y1f{bottom:487.200000pt;}
.yad{bottom:490.400000pt;}
.y6d{bottom:493.600000pt;}
.y50{bottom:499.680000pt;}
.y1e{bottom:502.560000pt;}
.yac{bottom:505.440000pt;}
.y4f{bottom:514.720000pt;}
.y1d{bottom:517.920000pt;}
.yab{bottom:520.800000pt;}
.y6f{bottom:524.960000pt;}
.y4e{bottom:530.080000pt;}
.y1c{bottom:533.280000pt;}
.yaa{bottom:535.840000pt;}
.y6c{bottom:545.120000pt;}
.y4d{bottom:545.440000pt;}
.y1b{bottom:548.640000pt;}
.ya9{bottom:551.520000pt;}
.y4c{bottom:560.800000pt;}
.y1a{bottom:564.000000pt;}
.ya8{bottom:566.906667pt;}
.y4b{bottom:576.186667pt;}
.y19{bottom:579.386667pt;}
.ya7{bottom:582.266667pt;}
.y4a{bottom:591.226667pt;}
.y6b{bottom:591.546667pt;}
.y18{bottom:594.746667pt;}
.ya6{bottom:597.626667pt;}
.y49{bottom:606.906667pt;}
.y17{bottom:610.106667pt;}
.ya5{bottom:612.986667pt;}
.y48{bottom:622.266667pt;}
.y16{bottom:625.146667pt;}
.ya4{bottom:628.346667pt;}
.y47{bottom:637.626667pt;}
.y15{bottom:640.506667pt;}
.ya3{bottom:643.706667pt;}
.y46{bottom:652.986667pt;}
.y14{bottom:655.866667pt;}
.ya2{bottom:659.066667pt;}
.y45{bottom:668.386667pt;}
.y13{bottom:671.266667pt;}
.ya1{bottom:674.466667pt;}
.y44{bottom:683.426667pt;}
.y12{bottom:686.626667pt;}
.ya0{bottom:689.506667pt;}
.y43{bottom:698.786667pt;}
.y11{bottom:701.986667pt;}
.y9f{bottom:704.866667pt;}
.y42{bottom:714.146667pt;}
.y10{bottom:717.026667pt;}
.y9e{bottom:720.226667pt;}
.y41{bottom:729.506667pt;}
.yf{bottom:732.706667pt;}
.y9d{bottom:733.026667pt;}
.y40{bottom:744.866667pt;}
.ye{bottom:747.746667pt;}
.y9b{bottom:752.226667pt;}
.y3f{bottom:760.253333pt;}
.yd{bottom:763.133333pt;}
.y99{bottom:771.133333pt;}
.y3e{bottom:775.613333pt;}
.yc{bottom:776.573333pt;}
.y97{bottom:790.333333pt;}
.yb{bottom:790.973333pt;}
.ya{bottom:806.333333pt;}
.y95{bottom:808.893333pt;}
.y9{bottom:821.373333pt;}
.y3d{bottom:821.693333pt;}
.y8f{bottom:832.253333pt;}
.y8{bottom:836.733333pt;}
.y3c{bottom:837.053333pt;}
.y7{bottom:852.133333pt;}
.y3b{bottom:852.453333pt;}
.y93{bottom:863.653333pt;}
.y6{bottom:867.493333pt;}
.y8e{bottom:882.533333pt;}
.y5{bottom:882.853333pt;}
.y3a{bottom:898.213333pt;}
.y4{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.h12{height:15.360000pt;}
.hc{height:16.640000pt;}
.h10{height:17.600000pt;}
.he{height:17.632000pt;}
.h16{height:17.920000pt;}
.h18{height:17.952000pt;}
.hf{height:18.240000pt;}
.h11{height:18.272000pt;}
.h17{height:18.560000pt;}
.h15{height:22.720000pt;}
.hd{height:30.720000pt;}
.h14{height:30.752000pt;}
.h13{height:46.752000pt;}
.h8{height:47.737500pt;}
.hb{height:48.000000pt;}
.h7{height:48.195000pt;}
.h6{height:49.020000pt;}
.h4{height:52.736250pt;}
.h2{height:52.762500pt;}
.h9{height:53.118750pt;}
.h5{height:54.180000pt;}
.h19{height:55.256809pt;}
.ha{height:56.590000pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w7{width:128.384000pt;}
.w5{width:128.416000pt;}
.w6{width:128.704000pt;}
.w8{width:129.344000pt;}
.w3{width:141.506667pt;}
.w9{width:181.213333pt;}
.wa{width:216.733333pt;}
.w4{width:386.786667pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1e{left:24.960000pt;}
.x16{left:32.360000pt;}
.x14{left:34.280000pt;}
.x17{left:35.840000pt;}
.x15{left:37.480000pt;}
.x18{left:39.040000pt;}
.x1f{left:40.040000pt;}
.x11{left:42.600000pt;}
.xb{left:45.471990pt;}
.x10{left:48.360000pt;}
.x1a{left:64.352000pt;}
.x3{left:68.191990pt;}
.x1c{left:72.360000pt;}
.x22{left:78.760000pt;}
.xa{left:83.231990pt;}
.x20{left:87.400000pt;}
.xf{left:91.906667pt;}
.x23{left:92.863990pt;}
.x21{left:105.026667pt;}
.x2{left:105.983990pt;}
.x19{left:115.583990pt;}
.xd{left:128.383990pt;}
.x6{left:150.493324pt;}
.x1b{left:175.773333pt;}
.x7{left:199.773324pt;}
.x24{left:209.053324pt;}
.xe{left:210.333333pt;}
.x4{left:298.079990pt;}
.x9{left:300.319990pt;}
.x1{left:323.039990pt;}
.x5{left:332.986657pt;}
.x12{left:339.386667pt;}
.x8{left:351.866657pt;}
.x1d{left:357.626667pt;}
.x13{left:468.733333pt;}
.xc{left:539.813324pt;}
}




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