
    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_806d06ac4087279e7271c156.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c29b237a1fca48b376219823.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_a308b8c989d7f449aa790471.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_016241aedb088c7c7da02447.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_88f747eefc550e05fda35ca5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897461;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_45bf79ef4c3fbf04a186311f.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.900000px;}
.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;}
.ws4{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:0.000000px;}
._21{margin-left:-5.228640px;}
._3{margin-left:-4.176000px;}
._4{margin-left:-2.664000px;}
._2{margin-left:-1.179360px;}
._0{width:1.075680px;}
._1{width:2.766480px;}
._d{width:3.888000px;}
._6{width:5.040000px;}
._f{width:6.147360px;}
._a{width:7.272000px;}
._e{width:8.424000px;}
._8{width:10.152000px;}
._9{width:11.232000px;}
._11{width:12.424320px;}
._1e{width:13.531680px;}
._5{width:14.544000px;}
._12{width:15.683040px;}
._10{width:16.848000px;}
._7{width:19.080000px;}
._b{width:20.880000px;}
._c{width:22.032000px;}
._1b{width:23.688000px;}
._15{width:25.632000px;}
._16{width:27.432000px;}
._17{width:28.584960px;}
._1d{width:30.761280px;}
._1c{width:31.923360px;}
._22{width:33.462720px;}
._1a{width:34.632000px;}
._18{width:35.856000px;}
._19{width:37.064640px;}
._13{width:38.952000px;}
._14{width:40.215360px;}
._1f{width:61.200000px;}
._20{width:62.496000px;}
._23{width:63.648000px;}
._24{width:65.532000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.160000px;}
.yf9{bottom:114.516000px;}
.y11f{bottom:119.556000px;}
.yb9{bottom:124.596000px;}
.y84{bottom:130.896000px;}
.y2a{bottom:133.596000px;}
.yf8{bottom:135.216000px;}
.y57{bottom:137.196000px;}
.ya8{bottom:139.536000px;}
.yb8{bottom:145.296000px;}
.y83{bottom:151.590000px;}
.yca{bottom:152.310000px;}
.y29{bottom:154.290000px;}
.yf7{bottom:155.910000px;}
.y56{bottom:157.890000px;}
.ya7{bottom:160.230000px;}
.y11e{bottom:162.750000px;}
.yb7{bottom:165.990000px;}
.y82{bottom:172.290000px;}
.yc9{bottom:173.010000px;}
.y28{bottom:174.990000px;}
.yf6{bottom:176.610000px;}
.y55{bottom:178.590000px;}
.ya6{bottom:180.930000px;}
.y13b{bottom:181.470000px;}
.y11d{bottom:183.450000px;}
.yd8{bottom:186.690000px;}
.y81{bottom:192.990000px;}
.yc8{bottom:193.710000px;}
.y27{bottom:195.690000px;}
.yf5{bottom:197.310000px;}
.y54{bottom:199.290000px;}
.ya5{bottom:201.630000px;}
.y13a{bottom:202.170000px;}
.y11c{bottom:204.150000px;}
.yd7{bottom:207.390000px;}
.y80{bottom:213.690000px;}
.yc7{bottom:214.410000px;}
.yf4{bottom:218.010000px;}
.y53{bottom:219.990000px;}
.ya4{bottom:222.330000px;}
.y11b{bottom:224.850000px;}
.ye5{bottom:228.090000px;}
.y7f{bottom:234.390000px;}
.y26{bottom:234.930000px;}
.yc6{bottom:235.110000px;}
.y139{bottom:237.810000px;}
.y52{bottom:240.690000px;}
.ya3{bottom:243.030000px;}
.y11a{bottom:245.550000px;}
.ye4{bottom:248.790000px;}
.yf3{bottom:253.650000px;}
.y7e{bottom:255.090000px;}
.y51{bottom:261.390000px;}
.ya2{bottom:263.730000px;}
.y119{bottom:266.250000px;}
.ye3{bottom:269.490000px;}
.yc5{bottom:270.750000px;}
.y138{bottom:273.630000px;}
.yf2{bottom:274.350000px;}
.y50{bottom:282.090000px;}
.ya1{bottom:284.430000px;}
.y25{bottom:285.510000px;}
.y7d{bottom:290.730000px;}
.yc4{bottom:291.450000px;}
.y137{bottom:294.330000px;}
.yf1{bottom:295.050000px;}
.y118{bottom:302.070000px;}
.y4f{bottom:302.790000px;}
.yb6{bottom:305.130000px;}
.y24{bottom:306.210000px;}
.y7c{bottom:311.430000px;}
.yc3{bottom:312.150000px;}
.y136{bottom:315.030000px;}
.yf0{bottom:315.750000px;}
.ya0{bottom:320.070000px;}
.y117{bottom:322.770000px;}
.y4e{bottom:323.490000px;}
.yd6{bottom:325.830000px;}
.y23{bottom:326.910000px;}
.y7b{bottom:332.130000px;}
.yc2{bottom:332.850000px;}
.y135{bottom:335.730000px;}
.yef{bottom:336.495000px;}
.y9f{bottom:340.815000px;}
.y116{bottom:343.515000px;}
.yd5{bottom:346.575000px;}
.y7a{bottom:352.875000px;}
.yc1{bottom:353.595000px;}
.yee{bottom:357.195000px;}
.y4d{bottom:359.355000px;}
.y9e{bottom:361.515000px;}
.y115{bottom:364.215000px;}
.y22{bottom:365.655000px;}
.yd4{bottom:367.275000px;}
.y134{bottom:371.415000px;}
.y79{bottom:373.575000px;}
.yc0{bottom:374.295000px;}
.y4c{bottom:380.055000px;}
.y9d{bottom:382.215000px;}
.y114{bottom:384.915000px;}
.y21{bottom:386.355000px;}
.ye2{bottom:387.975000px;}
.yed{bottom:393.015000px;}
.y78{bottom:394.275000px;}
.ybf{bottom:394.995000px;}
.y4b{bottom:400.755000px;}
.y9c{bottom:402.915000px;}
.y20{bottom:407.055000px;}
.ye1{bottom:408.675000px;}
.yec{bottom:413.715000px;}
.ybe{bottom:415.695000px;}
.y113{bottom:420.735000px;}
.y4a{bottom:421.455000px;}
.y9b{bottom:423.615000px;}
.y1f{bottom:427.755000px;}
.ye0{bottom:429.375000px;}
.y77{bottom:429.915000px;}
.yeb{bottom:434.415000px;}
.ybd{bottom:436.395000px;}
.y49{bottom:442.155000px;}
.y133{bottom:442.875000px;}
.y9a{bottom:444.315000px;}
.y1e{bottom:448.455000px;}
.y76{bottom:450.615000px;}
.yea{bottom:455.115000px;}
.y48{bottom:462.855000px;}
.y112{bottom:463.935000px;}
.y99{bottom:465.015000px;}
.y1d{bottom:469.155000px;}
.y75{bottom:471.315000px;}
.ybc{bottom:472.035000px;}
.ye9{bottom:475.815000px;}
.y132{bottom:478.515000px;}
.y47{bottom:483.555000px;}
.y111{bottom:484.635000px;}
.y98{bottom:485.715000px;}
.y1c{bottom:489.855000px;}
.y74{bottom:492.015000px;}
.ybb{bottom:492.735000px;}
.ye8{bottom:496.515000px;}
.y131{bottom:499.215000px;}
.y110{bottom:505.335000px;}
.y97{bottom:506.415000px;}
.y1b{bottom:510.555000px;}
.y73{bottom:512.715000px;}
.yba{bottom:513.435000px;}
.ye7{bottom:517.215000px;}
.y46{bottom:519.195000px;}
.y10f{bottom:526.035000px;}
.ydf{bottom:527.115000px;}
.y1a{bottom:531.255000px;}
.y72{bottom:533.415000px;}
.yb5{bottom:534.135000px;}
.y130{bottom:534.855000px;}
.y45{bottom:539.895000px;}
.y96{bottom:542.055000px;}
.y10e{bottom:546.735000px;}
.yde{bottom:547.815000px;}
.y19{bottom:551.955000px;}
.ye6{bottom:553.035000px;}
.y71{bottom:554.115000px;}
.yb4{bottom:554.835000px;}
.y44{bottom:560.595000px;}
.y95{bottom:562.755000px;}
.ydd{bottom:568.515000px;}
.y12f{bottom:570.675000px;}
.y18{bottom:572.655000px;}
.y70{bottom:574.815000px;}
.yb3{bottom:575.535000px;}
.y43{bottom:581.295000px;}
.y10d{bottom:582.555000px;}
.y94{bottom:583.455000px;}
.y17{bottom:593.355000px;}
.y6f{bottom:595.515000px;}
.yb2{bottom:596.235000px;}
.y10c{bottom:603.255000px;}
.y93{bottom:604.185000px;}
.y12e{bottom:606.345000px;}
.ydc{bottom:607.785000px;}
.y16{bottom:614.085000px;}
.y6e{bottom:616.245000px;}
.y42{bottom:616.965000px;}
.y10b{bottom:623.985000px;}
.y92{bottom:624.885000px;}
.y15{bottom:634.785000px;}
.y6d{bottom:636.945000px;}
.y41{bottom:637.665000px;}
.y12d{bottom:641.985000px;}
.y10a{bottom:644.685000px;}
.y91{bottom:645.585000px;}
.y14{bottom:655.485000px;}
.y6c{bottom:657.645000px;}
.y40{bottom:658.365000px;}
.y12c{bottom:662.685000px;}
.y109{bottom:665.385000px;}
.y90{bottom:666.285000px;}
.y13{bottom:676.185000px;}
.y6b{bottom:678.345000px;}
.y3f{bottom:679.065000px;}
.y108{bottom:686.085000px;}
.yd3{bottom:686.985000px;}
.yb1{bottom:694.185000px;}
.y12{bottom:696.705000px;}
.y12b{bottom:698.505000px;}
.y148{bottom:698.865000px;}
.y3e{bottom:699.765000px;}
.y8f{bottom:702.105000px;}
.y107{bottom:706.605000px;}
.y6a{bottom:713.985000px;}
.yb0{bottom:714.885000px;}
.y11{bottom:717.405000px;}
.y147{bottom:719.565000px;}
.y3d{bottom:720.465000px;}
.y8e{bottom:722.805000px;}
.y12a{bottom:734.145000px;}
.y69{bottom:734.685000px;}
.yaf{bottom:735.585000px;}
.y10{bottom:738.105000px;}
.ydb{bottom:741.165000px;}
.y106{bottom:742.605000px;}
.y8d{bottom:743.505000px;}
.y146{bottom:752.325000px;}
.y129{bottom:754.845000px;}
.y68{bottom:755.385000px;}
.y3c{bottom:756.105000px;}
.yae{bottom:756.285000px;}
.yf{bottom:758.805000px;}
.yda{bottom:761.865000px;}
.y8c{bottom:764.205000px;}
.y145{bottom:773.025000px;}
.y128{bottom:775.545000px;}
.y67{bottom:776.085000px;}
.y3b{bottom:776.805000px;}
.ye{bottom:779.505000px;}
.y8b{bottom:784.905000px;}
.y105{bottom:785.805000px;}
.y66{bottom:796.785000px;}
.y3a{bottom:797.505000px;}
.yd{bottom:800.205000px;}
.yd2{bottom:805.605000px;}
.y104{bottom:806.505000px;}
.y127{bottom:811.185000px;}
.y65{bottom:817.485000px;}
.y39{bottom:818.205000px;}
.yc{bottom:820.905000px;}
.y8a{bottom:823.965000px;}
.yd1{bottom:826.305000px;}
.y103{bottom:827.205000px;}
.yad{bottom:833.325000px;}
.y64{bottom:838.185000px;}
.y38{bottom:838.905000px;}
.yb{bottom:841.605000px;}
.y120{bottom:844.665000px;}
.y102{bottom:847.905000px;}
.y126{bottom:850.425000px;}
.yac{bottom:854.025000px;}
.y144{bottom:859.065000px;}
.y37{bottom:859.605000px;}
.yd0{bottom:861.945000px;}
.ya{bottom:862.305000px;}
.y63{bottom:874.050000px;}
.y89{bottom:874.770000px;}
.y143{bottom:879.810000px;}
.y36{bottom:880.350000px;}
.ycf{bottom:882.690000px;}
.y9{bottom:883.050000px;}
.y101{bottom:883.590000px;}
.y62{bottom:894.750000px;}
.y88{bottom:895.470000px;}
.yd9{bottom:901.050000px;}
.yce{bottom:903.390000px;}
.y8{bottom:903.750000px;}
.y100{bottom:904.290000px;}
.y142{bottom:912.570000px;}
.y61{bottom:915.450000px;}
.y35{bottom:916.170000px;}
.y125{bottom:921.750000px;}
.ycd{bottom:924.090000px;}
.yff{bottom:924.990000px;}
.y141{bottom:933.270000px;}
.y60{bottom:936.150000px;}
.y34{bottom:936.870000px;}
.y124{bottom:942.450000px;}
.y7{bottom:943.170000px;}
.ycc{bottom:944.790000px;}
.yfe{bottom:945.690000px;}
.y5f{bottom:956.850000px;}
.y33{bottom:957.570000px;}
.y123{bottom:963.150000px;}
.y140{bottom:965.850000px;}
.yfd{bottom:966.390000px;}
.y5e{bottom:977.550000px;}
.y32{bottom:978.270000px;}
.y122{bottom:983.850000px;}
.ycb{bottom:984.030000px;}
.y13f{bottom:986.550000px;}
.yfc{bottom:987.090000px;}
.yab{bottom:993.210000px;}
.y5d{bottom:998.250000px;}
.y31{bottom:998.970000px;}
.y6{bottom:1002.750000px;}
.y121{bottom:1004.550000px;}
.yaa{bottom:1013.910000px;}
.y13e{bottom:1019.310000px;}
.y30{bottom:1019.670000px;}
.yfb{bottom:1022.910000px;}
.y5{bottom:1032.450000px;}
.y5c{bottom:1033.890000px;}
.ya9{bottom:1034.610000px;}
.y2f{bottom:1040.370000px;}
.y13d{bottom:1052.070000px;}
.y5b{bottom:1054.590000px;}
.y87{bottom:1055.310000px;}
.y2e{bottom:1061.070000px;}
.yfa{bottom:1066.830000px;}
.y5a{bottom:1075.290000px;}
.y86{bottom:1076.010000px;}
.y2d{bottom:1081.770000px;}
.y13c{bottom:1084.650000px;}
.y4{bottom:1089.690000px;}
.y59{bottom:1095.990000px;}
.y85{bottom:1096.710000px;}
.y2c{bottom:1117.410000px;}
.y3{bottom:1132.530000px;}
.y58{bottom:1135.230000px;}
.y2b{bottom:1138.140000px;}
.y1{bottom:1195.740000px;}
.h2{height:50.273438px;}
.h6{height:50.800781px;}
.h7{height:54.864844px;}
.h5{height:59.343750px;}
.h4{height:59.436914px;}
.h3{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:108.035987px;}
.x3{left:139.715987px;}
.x9{left:162.029987px;}
.x4{left:210.629987px;}
.x6{left:336.314987px;}
.x5{left:401.294987px;}
.x8{left:439.094987px;}
.x2{left:442.694987px;}
.x1{left:586.724987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.800000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:0.000000pt;}
._21{margin-left:-4.647680pt;}
._3{margin-left:-3.712000pt;}
._4{margin-left:-2.368000pt;}
._2{margin-left:-1.048320pt;}
._0{width:0.956160pt;}
._1{width:2.459093pt;}
._d{width:3.456000pt;}
._6{width:4.480000pt;}
._f{width:5.464320pt;}
._a{width:6.464000pt;}
._e{width:7.488000pt;}
._8{width:9.024000pt;}
._9{width:9.984000pt;}
._11{width:11.043840pt;}
._1e{width:12.028160pt;}
._5{width:12.928000pt;}
._12{width:13.940480pt;}
._10{width:14.976000pt;}
._7{width:16.960000pt;}
._b{width:18.560000pt;}
._c{width:19.584000pt;}
._1b{width:21.056000pt;}
._15{width:22.784000pt;}
._16{width:24.384000pt;}
._17{width:25.408853pt;}
._1d{width:27.343360pt;}
._1c{width:28.376320pt;}
._22{width:29.744640pt;}
._1a{width:30.784000pt;}
._18{width:31.872000pt;}
._19{width:32.946347pt;}
._13{width:34.624000pt;}
._14{width:35.746987pt;}
._1f{width:54.400000pt;}
._20{width:55.552000pt;}
._23{width:56.576000pt;}
._24{width:58.250667pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.920000pt;}
.yf9{bottom:101.792000pt;}
.y11f{bottom:106.272000pt;}
.yb9{bottom:110.752000pt;}
.y84{bottom:116.352000pt;}
.y2a{bottom:118.752000pt;}
.yf8{bottom:120.192000pt;}
.y57{bottom:121.952000pt;}
.ya8{bottom:124.032000pt;}
.yb8{bottom:129.152000pt;}
.y83{bottom:134.746667pt;}
.yca{bottom:135.386667pt;}
.y29{bottom:137.146667pt;}
.yf7{bottom:138.586667pt;}
.y56{bottom:140.346667pt;}
.ya7{bottom:142.426667pt;}
.y11e{bottom:144.666667pt;}
.yb7{bottom:147.546667pt;}
.y82{bottom:153.146667pt;}
.yc9{bottom:153.786667pt;}
.y28{bottom:155.546667pt;}
.yf6{bottom:156.986667pt;}
.y55{bottom:158.746667pt;}
.ya6{bottom:160.826667pt;}
.y13b{bottom:161.306667pt;}
.y11d{bottom:163.066667pt;}
.yd8{bottom:165.946667pt;}
.y81{bottom:171.546667pt;}
.yc8{bottom:172.186667pt;}
.y27{bottom:173.946667pt;}
.yf5{bottom:175.386667pt;}
.y54{bottom:177.146667pt;}
.ya5{bottom:179.226667pt;}
.y13a{bottom:179.706667pt;}
.y11c{bottom:181.466667pt;}
.yd7{bottom:184.346667pt;}
.y80{bottom:189.946667pt;}
.yc7{bottom:190.586667pt;}
.yf4{bottom:193.786667pt;}
.y53{bottom:195.546667pt;}
.ya4{bottom:197.626667pt;}
.y11b{bottom:199.866667pt;}
.ye5{bottom:202.746667pt;}
.y7f{bottom:208.346667pt;}
.y26{bottom:208.826667pt;}
.yc6{bottom:208.986667pt;}
.y139{bottom:211.386667pt;}
.y52{bottom:213.946667pt;}
.ya3{bottom:216.026667pt;}
.y11a{bottom:218.266667pt;}
.ye4{bottom:221.146667pt;}
.yf3{bottom:225.466667pt;}
.y7e{bottom:226.746667pt;}
.y51{bottom:232.346667pt;}
.ya2{bottom:234.426667pt;}
.y119{bottom:236.666667pt;}
.ye3{bottom:239.546667pt;}
.yc5{bottom:240.666667pt;}
.y138{bottom:243.226667pt;}
.yf2{bottom:243.866667pt;}
.y50{bottom:250.746667pt;}
.ya1{bottom:252.826667pt;}
.y25{bottom:253.786667pt;}
.y7d{bottom:258.426667pt;}
.yc4{bottom:259.066667pt;}
.y137{bottom:261.626667pt;}
.yf1{bottom:262.266667pt;}
.y118{bottom:268.506667pt;}
.y4f{bottom:269.146667pt;}
.yb6{bottom:271.226667pt;}
.y24{bottom:272.186667pt;}
.y7c{bottom:276.826667pt;}
.yc3{bottom:277.466667pt;}
.y136{bottom:280.026667pt;}
.yf0{bottom:280.666667pt;}
.ya0{bottom:284.506667pt;}
.y117{bottom:286.906667pt;}
.y4e{bottom:287.546667pt;}
.yd6{bottom:289.626667pt;}
.y23{bottom:290.586667pt;}
.y7b{bottom:295.226667pt;}
.yc2{bottom:295.866667pt;}
.y135{bottom:298.426667pt;}
.yef{bottom:299.106667pt;}
.y9f{bottom:302.946667pt;}
.y116{bottom:305.346667pt;}
.yd5{bottom:308.066667pt;}
.y7a{bottom:313.666667pt;}
.yc1{bottom:314.306667pt;}
.yee{bottom:317.506667pt;}
.y4d{bottom:319.426667pt;}
.y9e{bottom:321.346667pt;}
.y115{bottom:323.746667pt;}
.y22{bottom:325.026667pt;}
.yd4{bottom:326.466667pt;}
.y134{bottom:330.146667pt;}
.y79{bottom:332.066667pt;}
.yc0{bottom:332.706667pt;}
.y4c{bottom:337.826667pt;}
.y9d{bottom:339.746667pt;}
.y114{bottom:342.146667pt;}
.y21{bottom:343.426667pt;}
.ye2{bottom:344.866667pt;}
.yed{bottom:349.346667pt;}
.y78{bottom:350.466667pt;}
.ybf{bottom:351.106667pt;}
.y4b{bottom:356.226667pt;}
.y9c{bottom:358.146667pt;}
.y20{bottom:361.826667pt;}
.ye1{bottom:363.266667pt;}
.yec{bottom:367.746667pt;}
.ybe{bottom:369.506667pt;}
.y113{bottom:373.986667pt;}
.y4a{bottom:374.626667pt;}
.y9b{bottom:376.546667pt;}
.y1f{bottom:380.226667pt;}
.ye0{bottom:381.666667pt;}
.y77{bottom:382.146667pt;}
.yeb{bottom:386.146667pt;}
.ybd{bottom:387.906667pt;}
.y49{bottom:393.026667pt;}
.y133{bottom:393.666667pt;}
.y9a{bottom:394.946667pt;}
.y1e{bottom:398.626667pt;}
.y76{bottom:400.546667pt;}
.yea{bottom:404.546667pt;}
.y48{bottom:411.426667pt;}
.y112{bottom:412.386667pt;}
.y99{bottom:413.346667pt;}
.y1d{bottom:417.026667pt;}
.y75{bottom:418.946667pt;}
.ybc{bottom:419.586667pt;}
.ye9{bottom:422.946667pt;}
.y132{bottom:425.346667pt;}
.y47{bottom:429.826667pt;}
.y111{bottom:430.786667pt;}
.y98{bottom:431.746667pt;}
.y1c{bottom:435.426667pt;}
.y74{bottom:437.346667pt;}
.ybb{bottom:437.986667pt;}
.ye8{bottom:441.346667pt;}
.y131{bottom:443.746667pt;}
.y110{bottom:449.186667pt;}
.y97{bottom:450.146667pt;}
.y1b{bottom:453.826667pt;}
.y73{bottom:455.746667pt;}
.yba{bottom:456.386667pt;}
.ye7{bottom:459.746667pt;}
.y46{bottom:461.506667pt;}
.y10f{bottom:467.586667pt;}
.ydf{bottom:468.546667pt;}
.y1a{bottom:472.226667pt;}
.y72{bottom:474.146667pt;}
.yb5{bottom:474.786667pt;}
.y130{bottom:475.426667pt;}
.y45{bottom:479.906667pt;}
.y96{bottom:481.826667pt;}
.y10e{bottom:485.986667pt;}
.yde{bottom:486.946667pt;}
.y19{bottom:490.626667pt;}
.ye6{bottom:491.586667pt;}
.y71{bottom:492.546667pt;}
.yb4{bottom:493.186667pt;}
.y44{bottom:498.306667pt;}
.y95{bottom:500.226667pt;}
.ydd{bottom:505.346667pt;}
.y12f{bottom:507.266667pt;}
.y18{bottom:509.026667pt;}
.y70{bottom:510.946667pt;}
.yb3{bottom:511.586667pt;}
.y43{bottom:516.706667pt;}
.y10d{bottom:517.826667pt;}
.y94{bottom:518.626667pt;}
.y17{bottom:527.426667pt;}
.y6f{bottom:529.346667pt;}
.yb2{bottom:529.986667pt;}
.y10c{bottom:536.226667pt;}
.y93{bottom:537.053333pt;}
.y12e{bottom:538.973333pt;}
.ydc{bottom:540.253333pt;}
.y16{bottom:545.853333pt;}
.y6e{bottom:547.773333pt;}
.y42{bottom:548.413333pt;}
.y10b{bottom:554.653333pt;}
.y92{bottom:555.453333pt;}
.y15{bottom:564.253333pt;}
.y6d{bottom:566.173333pt;}
.y41{bottom:566.813333pt;}
.y12d{bottom:570.653333pt;}
.y10a{bottom:573.053333pt;}
.y91{bottom:573.853333pt;}
.y14{bottom:582.653333pt;}
.y6c{bottom:584.573333pt;}
.y40{bottom:585.213333pt;}
.y12c{bottom:589.053333pt;}
.y109{bottom:591.453333pt;}
.y90{bottom:592.253333pt;}
.y13{bottom:601.053333pt;}
.y6b{bottom:602.973333pt;}
.y3f{bottom:603.613333pt;}
.y108{bottom:609.853333pt;}
.yd3{bottom:610.653333pt;}
.yb1{bottom:617.053333pt;}
.y12{bottom:619.293333pt;}
.y12b{bottom:620.893333pt;}
.y148{bottom:621.213333pt;}
.y3e{bottom:622.013333pt;}
.y8f{bottom:624.093333pt;}
.y107{bottom:628.093333pt;}
.y6a{bottom:634.653333pt;}
.yb0{bottom:635.453333pt;}
.y11{bottom:637.693333pt;}
.y147{bottom:639.613333pt;}
.y3d{bottom:640.413333pt;}
.y8e{bottom:642.493333pt;}
.y12a{bottom:652.573333pt;}
.y69{bottom:653.053333pt;}
.yaf{bottom:653.853333pt;}
.y10{bottom:656.093333pt;}
.ydb{bottom:658.813333pt;}
.y106{bottom:660.093333pt;}
.y8d{bottom:660.893333pt;}
.y146{bottom:668.733333pt;}
.y129{bottom:670.973333pt;}
.y68{bottom:671.453333pt;}
.y3c{bottom:672.093333pt;}
.yae{bottom:672.253333pt;}
.yf{bottom:674.493333pt;}
.yda{bottom:677.213333pt;}
.y8c{bottom:679.293333pt;}
.y145{bottom:687.133333pt;}
.y128{bottom:689.373333pt;}
.y67{bottom:689.853333pt;}
.y3b{bottom:690.493333pt;}
.ye{bottom:692.893333pt;}
.y8b{bottom:697.693333pt;}
.y105{bottom:698.493333pt;}
.y66{bottom:708.253333pt;}
.y3a{bottom:708.893333pt;}
.yd{bottom:711.293333pt;}
.yd2{bottom:716.093333pt;}
.y104{bottom:716.893333pt;}
.y127{bottom:721.053333pt;}
.y65{bottom:726.653333pt;}
.y39{bottom:727.293333pt;}
.yc{bottom:729.693333pt;}
.y8a{bottom:732.413333pt;}
.yd1{bottom:734.493333pt;}
.y103{bottom:735.293333pt;}
.yad{bottom:740.733333pt;}
.y64{bottom:745.053333pt;}
.y38{bottom:745.693333pt;}
.yb{bottom:748.093333pt;}
.y120{bottom:750.813333pt;}
.y102{bottom:753.693333pt;}
.y126{bottom:755.933333pt;}
.yac{bottom:759.133333pt;}
.y144{bottom:763.613333pt;}
.y37{bottom:764.093333pt;}
.yd0{bottom:766.173333pt;}
.ya{bottom:766.493333pt;}
.y63{bottom:776.933333pt;}
.y89{bottom:777.573333pt;}
.y143{bottom:782.053333pt;}
.y36{bottom:782.533333pt;}
.ycf{bottom:784.613333pt;}
.y9{bottom:784.933333pt;}
.y101{bottom:785.413333pt;}
.y62{bottom:795.333333pt;}
.y88{bottom:795.973333pt;}
.yd9{bottom:800.933333pt;}
.yce{bottom:803.013333pt;}
.y8{bottom:803.333333pt;}
.y100{bottom:803.813333pt;}
.y142{bottom:811.173333pt;}
.y61{bottom:813.733333pt;}
.y35{bottom:814.373333pt;}
.y125{bottom:819.333333pt;}
.ycd{bottom:821.413333pt;}
.yff{bottom:822.213333pt;}
.y141{bottom:829.573333pt;}
.y60{bottom:832.133333pt;}
.y34{bottom:832.773333pt;}
.y124{bottom:837.733333pt;}
.y7{bottom:838.373333pt;}
.ycc{bottom:839.813333pt;}
.yfe{bottom:840.613333pt;}
.y5f{bottom:850.533333pt;}
.y33{bottom:851.173333pt;}
.y123{bottom:856.133333pt;}
.y140{bottom:858.533333pt;}
.yfd{bottom:859.013333pt;}
.y5e{bottom:868.933333pt;}
.y32{bottom:869.573333pt;}
.y122{bottom:874.533333pt;}
.ycb{bottom:874.693333pt;}
.y13f{bottom:876.933333pt;}
.yfc{bottom:877.413333pt;}
.yab{bottom:882.853333pt;}
.y5d{bottom:887.333333pt;}
.y31{bottom:887.973333pt;}
.y6{bottom:891.333333pt;}
.y121{bottom:892.933333pt;}
.yaa{bottom:901.253333pt;}
.y13e{bottom:906.053333pt;}
.y30{bottom:906.373333pt;}
.yfb{bottom:909.253333pt;}
.y5{bottom:917.733333pt;}
.y5c{bottom:919.013333pt;}
.ya9{bottom:919.653333pt;}
.y2f{bottom:924.773333pt;}
.y13d{bottom:935.173333pt;}
.y5b{bottom:937.413333pt;}
.y87{bottom:938.053333pt;}
.y2e{bottom:943.173333pt;}
.yfa{bottom:948.293333pt;}
.y5a{bottom:955.813333pt;}
.y86{bottom:956.453333pt;}
.y2d{bottom:961.573333pt;}
.y13c{bottom:964.133333pt;}
.y4{bottom:968.613333pt;}
.y59{bottom:974.213333pt;}
.y85{bottom:974.853333pt;}
.y2c{bottom:993.253333pt;}
.y3{bottom:1006.693333pt;}
.y58{bottom:1009.093333pt;}
.y2b{bottom:1011.680000pt;}
.y1{bottom:1062.880000pt;}
.h2{height:44.687500pt;}
.h6{height:45.156250pt;}
.h7{height:48.768750pt;}
.h5{height:52.750000pt;}
.h4{height:52.832812pt;}
.h3{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.031988pt;}
.x3{left:124.191988pt;}
.x9{left:144.026655pt;}
.x4{left:187.226655pt;}
.x6{left:298.946655pt;}
.x5{left:356.706655pt;}
.x8{left:390.306655pt;}
.x2{left:393.506655pt;}
.x1{left:521.533322pt;}
}




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