
    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_0b549903a3e04a5343b1adf8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_22612e68191c535983ba5b74.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b57fc163cc4705966829ae68.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_1e7deb4f850d68f8cf797329.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_efb68efd75cf5d8c9c2bb09c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8992ce92c447529400c4c0d2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ca81a89f7f60a8e7f608621b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4959ce4a0ad6a198ca872f00.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_064d5014d1f05780559e5c51.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.ls8{letter-spacing:18.144000px;}
.ls7{letter-spacing:54.144000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.064000px;}
.ws0{word-spacing:-14.970240px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-8.667120px;}
._6{margin-left:-6.890640px;}
._2{margin-left:-5.599680px;}
._4{margin-left:-4.356240px;}
._3{margin-left:-3.351600px;}
._7{margin-left:-2.251920px;}
._0{margin-left:-1.126080px;}
._1{width:1.938000px;}
._15{width:3.030000px;}
._d{width:4.752000px;}
._e{width:5.832000px;}
._18{width:6.918000px;}
._b{width:7.992000px;}
._c{width:9.000000px;}
._9{width:10.608000px;}
._8{width:11.856000px;}
._11{width:13.824000px;}
._17{width:15.264000px;}
._12{width:16.920000px;}
._a{width:19.872000px;}
._16{width:21.142080px;}
._13{width:23.040000px;}
._14{width:24.408000px;}
._19{width:25.822080px;}
._21{width:27.673920px;}
._1c{width:29.396160px;}
._1b{width:30.744000px;}
._1d{width:32.328000px;}
._20{width:33.963840px;}
._1f{width:35.136000px;}
._1e{width:36.504000px;}
._22{width:37.710000px;}
._36{width:38.766000px;}
._2d{width:41.688000px;}
._2e{width:42.984000px;}
._2c{width:45.072000px;}
._1a{width:46.774080px;}
._24{width:50.446080px;}
._10{width:55.126080px;}
._f{width:56.232000px;}
._25{width:57.456000px;}
._26{width:59.112000px;}
._2b{width:71.712000px;}
._31{width:76.968000px;}
._2f{width:77.976000px;}
._30{width:79.186080px;}
._23{width:86.328000px;}
._2a{width:92.880000px;}
._29{width:95.688000px;}
._38{width:117.216000px;}
._34{width:118.872000px;}
._35{width:120.096000px;}
._27{width:129.888000px;}
._37{width:136.296000px;}
._32{width:160.560000px;}
._33{width:162.072000px;}
._28{width:188.856000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y83{bottom:7.380000px;}
.y8e{bottom:7.560000px;}
.y6{bottom:10.620000px;}
.y7{bottom:11.340000px;}
.y50{bottom:19.110000px;}
.y81{bottom:19.260000px;}
.y90{bottom:19.434000px;}
.y52{bottom:19.440000px;}
.y9a{bottom:19.485000px;}
.y7f{bottom:31.140000px;}
.y92{bottom:31.170000px;}
.y8c{bottom:31.314000px;}
.y87{bottom:31.320000px;}
.y9b{bottom:31.365000px;}
.y80{bottom:43.020000px;}
.y93{bottom:43.050000px;}
.y8f{bottom:43.194000px;}
.y95{bottom:54.900000px;}
.y8d{bottom:55.074000px;}
.y8a{bottom:55.080000px;}
.y88{bottom:55.125000px;}
.y8{bottom:57.420000px;}
.y5{bottom:73.836000px;}
.yc3{bottom:107.496000px;}
.y4c{bottom:107.856000px;}
.y33{bottom:119.556000px;}
.y4e{bottom:131.256000px;}
.y4b{bottom:131.616000px;}
.y8b{bottom:139.536000px;}
.y32{bottom:143.496000px;}
.yb9{bottom:148.176000px;}
.y78{bottom:151.050000px;}
.y4a{bottom:155.370000px;}
.y31{bottom:167.250000px;}
.yb8{bottom:171.930000px;}
.y77{bottom:174.810000px;}
.y49{bottom:179.310000px;}
.y30{bottom:191.010000px;}
.yb7{bottom:195.690000px;}
.y76{bottom:198.750000px;}
.ybc{bottom:202.710000px;}
.y48{bottom:203.070000px;}
.y89{bottom:214.050000px;}
.y2f{bottom:214.770000px;}
.yb6{bottom:219.630000px;}
.y75{bottom:222.510000px;}
.ybf{bottom:226.470000px;}
.y47{bottom:226.830000px;}
.y2e{bottom:238.710000px;}
.yb5{bottom:243.390000px;}
.y74{bottom:246.270000px;}
.y46{bottom:250.590000px;}
.y2d{bottom:262.470000px;}
.yb4{bottom:267.150000px;}
.y73{bottom:270.030000px;}
.y45{bottom:274.350000px;}
.y2c{bottom:286.230000px;}
.y86{bottom:288.390000px;}
.yb3{bottom:290.910000px;}
.y72{bottom:293.970000px;}
.y44{bottom:298.290000px;}
.y2b{bottom:309.990000px;}
.yb2{bottom:314.850000px;}
.y71{bottom:317.370000px;}
.y43{bottom:322.050000px;}
.y2a{bottom:333.930000px;}
.yb1{bottom:338.655000px;}
.y70{bottom:341.535000px;}
.y42{bottom:345.855000px;}
.y29{bottom:357.735000px;}
.yb0{bottom:362.415000px;}
.y85{bottom:362.955000px;}
.y6f{bottom:365.295000px;}
.y7c{bottom:369.255000px;}
.y41{bottom:369.615000px;}
.y28{bottom:381.495000px;}
.yaf{bottom:386.175000px;}
.y6e{bottom:389.235000px;}
.y40{bottom:393.555000px;}
.y27{bottom:405.255000px;}
.yae{bottom:410.115000px;}
.y6d{bottom:412.995000px;}
.y84{bottom:413.535000px;}
.yc1{bottom:416.955000px;}
.y3f{bottom:417.315000px;}
.y26{bottom:429.195000px;}
.yad{bottom:433.875000px;}
.y6c{bottom:436.755000px;}
.y3e{bottom:441.075000px;}
.y25{bottom:452.595000px;}
.yac{bottom:457.635000px;}
.y6b{bottom:460.515000px;}
.y82{bottom:464.115000px;}
.y3d{bottom:464.835000px;}
.yab{bottom:481.395000px;}
.y6a{bottom:484.455000px;}
.y4d{bottom:488.415000px;}
.y24{bottom:488.775000px;}
.yaa{bottom:505.335000px;}
.y69{bottom:508.215000px;}
.y23{bottom:512.535000px;}
.y7e{bottom:514.695000px;}
.ya9{bottom:529.095000px;}
.y68{bottom:531.975000px;}
.y22{bottom:536.295000px;}
.ya8{bottom:552.855000px;}
.y67{bottom:555.735000px;}
.y21{bottom:560.055000px;}
.ya7{bottom:576.615000px;}
.y66{bottom:579.135000px;}
.y7b{bottom:583.635000px;}
.y20{bottom:583.995000px;}
.ya6{bottom:600.375000px;}
.y65{bottom:603.435000px;}
.y3c{bottom:607.425000px;}
.y1f{bottom:607.785000px;}
.ya5{bottom:624.345000px;}
.y64{bottom:627.225000px;}
.y3b{bottom:631.185000px;}
.y1e{bottom:631.545000px;}
.ya4{bottom:648.105000px;}
.y63{bottom:650.985000px;}
.yc2{bottom:654.945000px;}
.y1d{bottom:655.305000px;}
.ya3{bottom:671.865000px;}
.y62{bottom:674.745000px;}
.y1c{bottom:679.245000px;}
.ya2{bottom:695.625000px;}
.y61{bottom:698.685000px;}
.y1b{bottom:703.005000px;}
.ya1{bottom:719.565000px;}
.y60{bottom:722.445000px;}
.ybb{bottom:726.405000px;}
.y1a{bottom:726.765000px;}
.ya0{bottom:743.325000px;}
.y5f{bottom:746.205000px;}
.yc0{bottom:750.165000px;}
.y19{bottom:750.525000px;}
.y9f{bottom:767.085000px;}
.y5e{bottom:769.965000px;}
.y18{bottom:774.465000px;}
.y9e{bottom:790.845000px;}
.y5d{bottom:793.905000px;}
.y17{bottom:798.225000px;}
.y9d{bottom:814.785000px;}
.y5c{bottom:817.665000px;}
.y7a{bottom:821.625000px;}
.y16{bottom:821.985000px;}
.y9c{bottom:838.545000px;}
.y5b{bottom:841.425000px;}
.y7d{bottom:845.385000px;}
.y15{bottom:845.745000px;}
.y99{bottom:856.725000px;}
.y5a{bottom:865.185000px;}
.y14{bottom:869.505000px;}
.y59{bottom:889.170000px;}
.ybe{bottom:893.130000px;}
.y13{bottom:893.490000px;}
.y98{bottom:907.350000px;}
.y58{bottom:912.570000px;}
.yba{bottom:916.890000px;}
.y12{bottom:917.250000px;}
.y57{bottom:936.690000px;}
.y11{bottom:940.650000px;}
.y3a{bottom:941.010000px;}
.y97{bottom:958.110000px;}
.y56{bottom:960.450000px;}
.y10{bottom:964.770000px;}
.y55{bottom:978.810000px;}
.y96{bottom:984.750000px;}
.yf{bottom:988.710000px;}
.ye{bottom:1012.470000px;}
.y54{bottom:1017.510000px;}
.y94{bottom:1035.510000px;}
.yd{bottom:1035.870000px;}
.y39{bottom:1036.230000px;}
.y53{bottom:1056.390000px;}
.yc{bottom:1059.630000px;}
.y38{bottom:1059.990000px;}
.ybd{bottom:1083.570000px;}
.y37{bottom:1083.930000px;}
.yb{bottom:1085.910000px;}
.y51{bottom:1095.090000px;}
.y79{bottom:1107.330000px;}
.y36{bottom:1107.690000px;}
.y91{bottom:1109.850000px;}
.ya{bottom:1117.590000px;}
.y35{bottom:1131.450000px;}
.y4f{bottom:1133.970000px;}
.y9{bottom:1149.300000px;}
.y34{bottom:1155.240000px;}
.y4{bottom:1195.020000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.140000px;}
.h15{height:23.760000px;}
.h5{height:27.000000px;}
.hd{height:35.820000px;}
.hc{height:35.856000px;}
.hf{height:47.520000px;}
.h14{height:47.700000px;}
.h16{height:47.736000px;}
.h7{height:50.229844px;}
.hb{height:52.066406px;}
.h4{height:54.421875px;}
.he{height:59.940000px;}
.h12{height:59.976000px;}
.h3{height:66.757500px;}
.h8{height:67.565039px;}
.ha{height:70.628906px;}
.h6{height:70.664062px;}
.h13{height:71.280000px;}
.h11{height:71.460000px;}
.h10{height:71.496000px;}
.h2{height:72.562500px;}
.h17{height:74.004654px;}
.h9{height:93.983203px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w9{width:160.560000px;}
.w8{width:200.370000px;}
.w6{width:249.690000px;}
.w5{width:298.650000px;}
.w3{width:298.830000px;}
.wa{width:322.050000px;}
.w7{width:361.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:39.420000px;}
.x5{left:95.796000px;}
.x17{left:104.256000px;}
.x15{left:106.775987px;}
.xf{left:108.935987px;}
.xb{left:124.955987px;}
.x1a{left:127.835987px;}
.xe{left:133.955987px;}
.xa{left:136.475987px;}
.x13{left:140.616000px;}
.xd{left:148.895987px;}
.x3{left:190.649987px;}
.x12{left:200.369987px;}
.x10{left:254.369987px;}
.xc{left:279.254987px;}
.x6{left:290.739000px;}
.x18{left:305.535000px;}
.x11{left:322.274987px;}
.x2{left:333.254987px;}
.x4{left:342.614987px;}
.x16{left:378.254987px;}
.x14{left:391.035000px;}
.x7{left:394.635000px;}
.x19{left:466.845000px;}
.x9{left:498.705000px;}
.x1{left:797.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls8{letter-spacing:16.128000pt;}
.ls7{letter-spacing:48.128000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.168000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-7.704107pt;}
._6{margin-left:-6.125013pt;}
._2{margin-left:-4.977493pt;}
._4{margin-left:-3.872213pt;}
._3{margin-left:-2.979200pt;}
._7{margin-left:-2.001707pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.722667pt;}
._15{width:2.693333pt;}
._d{width:4.224000pt;}
._e{width:5.184000pt;}
._18{width:6.149333pt;}
._b{width:7.104000pt;}
._c{width:8.000000pt;}
._9{width:9.429333pt;}
._8{width:10.538667pt;}
._11{width:12.288000pt;}
._17{width:13.568000pt;}
._12{width:15.040000pt;}
._a{width:17.664000pt;}
._16{width:18.792960pt;}
._13{width:20.480000pt;}
._14{width:21.696000pt;}
._19{width:22.952960pt;}
._21{width:24.599040pt;}
._1c{width:26.129920pt;}
._1b{width:27.328000pt;}
._1d{width:28.736000pt;}
._20{width:30.190080pt;}
._1f{width:31.232000pt;}
._1e{width:32.448000pt;}
._22{width:33.520000pt;}
._36{width:34.458667pt;}
._2d{width:37.056000pt;}
._2e{width:38.208000pt;}
._2c{width:40.064000pt;}
._1a{width:41.576960pt;}
._24{width:44.840960pt;}
._10{width:49.000960pt;}
._f{width:49.984000pt;}
._25{width:51.072000pt;}
._26{width:52.544000pt;}
._2b{width:63.744000pt;}
._31{width:68.416000pt;}
._2f{width:69.312000pt;}
._30{width:70.387627pt;}
._23{width:76.736000pt;}
._2a{width:82.560000pt;}
._29{width:85.056000pt;}
._38{width:104.192000pt;}
._34{width:105.664000pt;}
._35{width:106.752000pt;}
._27{width:115.456000pt;}
._37{width:121.152000pt;}
._32{width:142.720000pt;}
._33{width:144.064000pt;}
._28{width:167.872000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:6.560000pt;}
.y8e{bottom:6.720000pt;}
.y6{bottom:9.440000pt;}
.y7{bottom:10.080000pt;}
.y50{bottom:16.986667pt;}
.y81{bottom:17.120000pt;}
.y90{bottom:17.274667pt;}
.y52{bottom:17.280000pt;}
.y9a{bottom:17.320000pt;}
.y7f{bottom:27.680000pt;}
.y92{bottom:27.706667pt;}
.y8c{bottom:27.834667pt;}
.y87{bottom:27.840000pt;}
.y9b{bottom:27.880000pt;}
.y80{bottom:38.240000pt;}
.y93{bottom:38.266667pt;}
.y8f{bottom:38.394667pt;}
.y95{bottom:48.800000pt;}
.y8d{bottom:48.954667pt;}
.y8a{bottom:48.960000pt;}
.y88{bottom:49.000000pt;}
.y8{bottom:51.040000pt;}
.y5{bottom:65.632000pt;}
.yc3{bottom:95.552000pt;}
.y4c{bottom:95.872000pt;}
.y33{bottom:106.272000pt;}
.y4e{bottom:116.672000pt;}
.y4b{bottom:116.992000pt;}
.y8b{bottom:124.032000pt;}
.y32{bottom:127.552000pt;}
.yb9{bottom:131.712000pt;}
.y78{bottom:134.266667pt;}
.y4a{bottom:138.106667pt;}
.y31{bottom:148.666667pt;}
.yb8{bottom:152.826667pt;}
.y77{bottom:155.386667pt;}
.y49{bottom:159.386667pt;}
.y30{bottom:169.786667pt;}
.yb7{bottom:173.946667pt;}
.y76{bottom:176.666667pt;}
.ybc{bottom:180.186667pt;}
.y48{bottom:180.506667pt;}
.y89{bottom:190.266667pt;}
.y2f{bottom:190.906667pt;}
.yb6{bottom:195.226667pt;}
.y75{bottom:197.786667pt;}
.ybf{bottom:201.306667pt;}
.y47{bottom:201.626667pt;}
.y2e{bottom:212.186667pt;}
.yb5{bottom:216.346667pt;}
.y74{bottom:218.906667pt;}
.y46{bottom:222.746667pt;}
.y2d{bottom:233.306667pt;}
.yb4{bottom:237.466667pt;}
.y73{bottom:240.026667pt;}
.y45{bottom:243.866667pt;}
.y2c{bottom:254.426667pt;}
.y86{bottom:256.346667pt;}
.yb3{bottom:258.586667pt;}
.y72{bottom:261.306667pt;}
.y44{bottom:265.146667pt;}
.y2b{bottom:275.546667pt;}
.yb2{bottom:279.866667pt;}
.y71{bottom:282.106667pt;}
.y43{bottom:286.266667pt;}
.y2a{bottom:296.826667pt;}
.yb1{bottom:301.026667pt;}
.y70{bottom:303.586667pt;}
.y42{bottom:307.426667pt;}
.y29{bottom:317.986667pt;}
.yb0{bottom:322.146667pt;}
.y85{bottom:322.626667pt;}
.y6f{bottom:324.706667pt;}
.y7c{bottom:328.226667pt;}
.y41{bottom:328.546667pt;}
.y28{bottom:339.106667pt;}
.yaf{bottom:343.266667pt;}
.y6e{bottom:345.986667pt;}
.y40{bottom:349.826667pt;}
.y27{bottom:360.226667pt;}
.yae{bottom:364.546667pt;}
.y6d{bottom:367.106667pt;}
.y84{bottom:367.586667pt;}
.yc1{bottom:370.626667pt;}
.y3f{bottom:370.946667pt;}
.y26{bottom:381.506667pt;}
.yad{bottom:385.666667pt;}
.y6c{bottom:388.226667pt;}
.y3e{bottom:392.066667pt;}
.y25{bottom:402.306667pt;}
.yac{bottom:406.786667pt;}
.y6b{bottom:409.346667pt;}
.y82{bottom:412.546667pt;}
.y3d{bottom:413.186667pt;}
.yab{bottom:427.906667pt;}
.y6a{bottom:430.626667pt;}
.y4d{bottom:434.146667pt;}
.y24{bottom:434.466667pt;}
.yaa{bottom:449.186667pt;}
.y69{bottom:451.746667pt;}
.y23{bottom:455.586667pt;}
.y7e{bottom:457.506667pt;}
.ya9{bottom:470.306667pt;}
.y68{bottom:472.866667pt;}
.y22{bottom:476.706667pt;}
.ya8{bottom:491.426667pt;}
.y67{bottom:493.986667pt;}
.y21{bottom:497.826667pt;}
.ya7{bottom:512.546667pt;}
.y66{bottom:514.786667pt;}
.y7b{bottom:518.786667pt;}
.y20{bottom:519.106667pt;}
.ya6{bottom:533.666667pt;}
.y65{bottom:536.386667pt;}
.y3c{bottom:539.933333pt;}
.y1f{bottom:540.253333pt;}
.ya5{bottom:554.973333pt;}
.y64{bottom:557.533333pt;}
.y3b{bottom:561.053333pt;}
.y1e{bottom:561.373333pt;}
.ya4{bottom:576.093333pt;}
.y63{bottom:578.653333pt;}
.yc2{bottom:582.173333pt;}
.y1d{bottom:582.493333pt;}
.ya3{bottom:597.213333pt;}
.y62{bottom:599.773333pt;}
.y1c{bottom:603.773333pt;}
.ya2{bottom:618.333333pt;}
.y61{bottom:621.053333pt;}
.y1b{bottom:624.893333pt;}
.ya1{bottom:639.613333pt;}
.y60{bottom:642.173333pt;}
.ybb{bottom:645.693333pt;}
.y1a{bottom:646.013333pt;}
.ya0{bottom:660.733333pt;}
.y5f{bottom:663.293333pt;}
.yc0{bottom:666.813333pt;}
.y19{bottom:667.133333pt;}
.y9f{bottom:681.853333pt;}
.y5e{bottom:684.413333pt;}
.y18{bottom:688.413333pt;}
.y9e{bottom:702.973333pt;}
.y5d{bottom:705.693333pt;}
.y17{bottom:709.533333pt;}
.y9d{bottom:724.253333pt;}
.y5c{bottom:726.813333pt;}
.y7a{bottom:730.333333pt;}
.y16{bottom:730.653333pt;}
.y9c{bottom:745.373333pt;}
.y5b{bottom:747.933333pt;}
.y7d{bottom:751.453333pt;}
.y15{bottom:751.773333pt;}
.y99{bottom:761.533333pt;}
.y5a{bottom:769.053333pt;}
.y14{bottom:772.893333pt;}
.y59{bottom:790.373333pt;}
.ybe{bottom:793.893333pt;}
.y13{bottom:794.213333pt;}
.y98{bottom:806.533333pt;}
.y58{bottom:811.173333pt;}
.yba{bottom:815.013333pt;}
.y12{bottom:815.333333pt;}
.y57{bottom:832.613333pt;}
.y11{bottom:836.133333pt;}
.y3a{bottom:836.453333pt;}
.y97{bottom:851.653333pt;}
.y56{bottom:853.733333pt;}
.y10{bottom:857.573333pt;}
.y55{bottom:870.053333pt;}
.y96{bottom:875.333333pt;}
.yf{bottom:878.853333pt;}
.ye{bottom:899.973333pt;}
.y54{bottom:904.453333pt;}
.y94{bottom:920.453333pt;}
.yd{bottom:920.773333pt;}
.y39{bottom:921.093333pt;}
.y53{bottom:939.013333pt;}
.yc{bottom:941.893333pt;}
.y38{bottom:942.213333pt;}
.ybd{bottom:963.173333pt;}
.y37{bottom:963.493333pt;}
.yb{bottom:965.253333pt;}
.y51{bottom:973.413333pt;}
.y79{bottom:984.293333pt;}
.y36{bottom:984.613333pt;}
.y91{bottom:986.533333pt;}
.ya{bottom:993.413333pt;}
.y35{bottom:1005.733333pt;}
.y4f{bottom:1007.973333pt;}
.y9{bottom:1021.600000pt;}
.y34{bottom:1026.880000pt;}
.y4{bottom:1062.240000pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.680000pt;}
.h15{height:21.120000pt;}
.h5{height:24.000000pt;}
.hd{height:31.840000pt;}
.hc{height:31.872000pt;}
.hf{height:42.240000pt;}
.h14{height:42.400000pt;}
.h16{height:42.432000pt;}
.h7{height:44.648750pt;}
.hb{height:46.281250pt;}
.h4{height:48.375000pt;}
.he{height:53.280000pt;}
.h12{height:53.312000pt;}
.h3{height:59.340000pt;}
.h8{height:60.057813pt;}
.ha{height:62.781250pt;}
.h6{height:62.812500pt;}
.h13{height:63.360000pt;}
.h11{height:63.520000pt;}
.h10{height:63.552000pt;}
.h2{height:64.500000pt;}
.h17{height:65.781915pt;}
.h9{height:83.540625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w9{width:142.720000pt;}
.w8{width:178.106667pt;}
.w6{width:221.946667pt;}
.w5{width:265.466667pt;}
.w3{width:265.626667pt;}
.wa{width:286.266667pt;}
.w7{width:321.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:35.040000pt;}
.x5{left:85.152000pt;}
.x17{left:92.672000pt;}
.x15{left:94.911988pt;}
.xf{left:96.831988pt;}
.xb{left:111.071988pt;}
.x1a{left:113.631988pt;}
.xe{left:119.071988pt;}
.xa{left:121.311988pt;}
.x13{left:124.992000pt;}
.xd{left:132.351988pt;}
.x3{left:169.466655pt;}
.x12{left:178.106655pt;}
.x10{left:226.106655pt;}
.xc{left:248.226655pt;}
.x6{left:258.434667pt;}
.x18{left:271.586667pt;}
.x11{left:286.466655pt;}
.x2{left:296.226655pt;}
.x4{left:304.546655pt;}
.x16{left:336.226655pt;}
.x14{left:347.586667pt;}
.x7{left:350.786667pt;}
.x19{left:414.973333pt;}
.x9{left:443.293333pt;}
.x1{left:708.773322pt;}
}




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