
    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_590297b2b7dbab8d35635148.woff')format("woff");}.ff1{font-family:ff1;line-height:1.193359;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_5366eb812427e8a87a704a0c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.193359;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_21763d917100d0f023be9e33.woff')format("woff");}.ff3{font-family:ff3;line-height:1.330566;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_61411137f0f7da234ea046fb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.330566;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_87548b04ab6ca3cb489381d4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.193359;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_c264ed6fdcabdaf274b50d64.woff')format("woff");}.ff6{font-family:ff6;line-height:1.193359;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;}
.m1{transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,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);}
.m2{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);}
.v2{vertical-align:-4.968000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.040000px;}
.v3{vertical-align:37.368000px;}
.ls1{letter-spacing:-1.440000px;}
.ls2{letter-spacing:-0.960000px;}
.ls3{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.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:-20.304000px;}
.ws0{word-spacing:-19.152000px;}
.ws8{word-spacing:-18.936000px;}
.ws3{word-spacing:-1.440000px;}
.ws4{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:1261.980000px;}
.ws5{word-spacing:1282.500000px;}
.ws6{word-spacing:1293.948000px;}
._5{margin-left:-13.176000px;}
._4{margin-left:-12.095424px;}
._a{margin-left:-8.784000px;}
._8{margin-left:-7.632000px;}
._6{margin-left:-5.904000px;}
._f{margin-left:-4.320000px;}
._1{margin-left:-3.024000px;}
._0{margin-left:-1.872000px;}
._2{width:1.152000px;}
._3{width:2.304000px;}
._14{width:3.960000px;}
._10{width:5.184000px;}
._d{width:7.416000px;}
._c{width:9.072000px;}
._9{width:11.784000px;}
._7{width:12.792000px;}
._13{width:16.536000px;}
._b{width:19.008000px;}
._11{width:23.783976px;}
._e{width:140.508000px;}
._12{width:514.284000px;}
.fc4{color:rgb(0,82,204);}
.fc3{color:transparent;}
.fc2{color:rgb(255,86,48);}
.fc1{color:rgb(107,119,140);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs3{font-size:120.000000px;}
.fs2{font-size:144.000000px;}
.fs5{font-size:505.944229px;}
.y0{bottom:0.000000px;}
.y1b{bottom:2.526000px;}
.y39{bottom:74.568000px;}
.y7f{bottom:77.646000px;}
.yc0{bottom:77.832000px;}
.y19{bottom:80.346000px;}
.y13c{bottom:83.874000px;}
.y5d{bottom:87.432000px;}
.y10b{bottom:94.374000px;}
.ya1{bottom:97.068000px;}
.y38{bottom:102.510000px;}
.ybf{bottom:105.774000px;}
.y13b{bottom:107.874000px;}
.y5c{bottom:109.032000px;}
.y10a{bottom:118.374000px;}
.ya0{bottom:125.010000px;}
.ybe{bottom:127.374000px;}
.y18{bottom:128.604000px;}
.y13a{bottom:131.874000px;}
.y109{bottom:142.374000px;}
.y9f{bottom:146.610000px;}
.y5b{bottom:148.974000px;}
.yde{bottom:149.028000px;}
.y108{bottom:157.032000px;}
.y17{bottom:159.546000px;}
.y7e{bottom:161.004000px;}
.y107{bottom:184.974000px;}
.y37{bottom:185.868000px;}
.y139{bottom:185.874000px;}
.y7d{bottom:188.604000px;}
.yb8{bottom:190.032000px;}
.ybd{bottom:195.132000px;}
.y57{bottom:197.232000px;}
.y106{bottom:206.574000px;}
.y16{bottom:207.804000px;}
.y138{bottom:209.874000px;}
.y36{bottom:213.468000px;}
.y9e{bottom:214.368000px;}
.yb7{bottom:216.132000px;}
.y7c{bottom:216.204000px;}
.ybc{bottom:216.732000px;}
.y56{bottom:218.832000px;}
.y137{bottom:233.874000px;}
.y105{bottom:235.374000px;}
.y9d{bottom:235.968000px;}
.y15{bottom:238.746000px;}
.y55{bottom:240.432000px;}
.y35{bottom:241.068000px;}
.ydd{bottom:241.728000px;}
.yb6{bottom:242.232000px;}
.y7b{bottom:243.804000px;}
.ybb{bottom:251.832000px;}
.y136{bottom:257.874000px;}
.y9c{bottom:258.342000px;}
.y104{bottom:259.374000px;}
.y54{bottom:262.032000px;}
.ydc{bottom:263.400000px;}
.yb5{bottom:268.332000px;}
.y34{bottom:268.668000px;}
.y5a{bottom:270.132000px;}
.yba{bottom:273.432000px;}
.y100{bottom:278.832000px;}
.y7a{bottom:278.904000px;}
.y135{bottom:281.874000px;}
.y103{bottom:283.374000px;}
.ydb{bottom:285.882000px;}
.y59{bottom:291.732000px;}
.y53{bottom:292.974000px;}
.y14{bottom:293.004000px;}
.yb9{bottom:295.032000px;}
.yb4{bottom:296.274000px;}
.y132{bottom:298.932000px;}
.y33{bottom:303.768000px;}
.y134{bottom:305.874000px;}
.yff{bottom:306.774000px;}
.y102{bottom:307.374000px;}
.y58{bottom:313.332000px;}
.yda{bottom:313.482000px;}
.y52{bottom:314.574000px;}
.yb3{bottom:317.874000px;}
.y79{bottom:318.846000px;}
.y32{bottom:325.368000px;}
.y131{bottom:326.874000px;}
.yfe{bottom:328.374000px;}
.y133{bottom:329.874000px;}
.y101{bottom:331.374000px;}
.yd9{bottom:335.154000px;}
.y9b{bottom:335.532000px;}
.y51{bottom:336.174000px;}
.y97{bottom:340.932000px;}
.y31{bottom:346.968000px;}
.y130{bottom:348.474000px;}
.yfd{bottom:349.974000px;}
.y13{bottom:350.604000px;}
.y9a{bottom:357.132000px;}
.yd8{bottom:357.636000px;}
.yb2{bottom:358.632000px;}
.y96{bottom:362.532000px;}
.y1d{bottom:366.797402px;}
.y78{bottom:367.104000px;}
.y30{bottom:368.568000px;}
.y12f{bottom:370.074000px;}
.yfc{bottom:371.574000px;}
.y50{bottom:376.932000px;}
.yb1{bottom:380.232000px;}
.y12{bottom:381.546000px;}
.yd7{bottom:385.236000px;}
.y99{bottom:392.232000px;}
.y95{bottom:393.474000px;}
.y77{bottom:398.046000px;}
.y4f{bottom:398.532000px;}
.y12e{bottom:398.874000px;}
.yfb{bottom:400.374000px;}
.y11{bottom:403.146000px;}
.yd6{bottom:406.908000px;}
.y1c{bottom:408.237481px;}
.y2f{bottom:408.510000px;}
.y98{bottom:413.832000px;}
.y94{bottom:415.074000px;}
.yb0{bottom:416.574000px;}
.y4e{bottom:420.132000px;}
.y12d{bottom:422.874000px;}
.yfa{bottom:424.374000px;}
.yd5{bottom:428.580000px;}
.y93{bottom:436.674000px;}
.y10{bottom:437.904000px;}
.yaf{bottom:438.174000px;}
.y4d{bottom:441.732000px;}
.yf9{bottom:448.374000px;}
.yd4{bottom:451.062000px;}
.y2e{bottom:456.768000px;}
.y4c{bottom:464.106000px;}
.yf{bottom:465.846000px;}
.y92{bottom:471.432000px;}
.yf8{bottom:472.374000px;}
.yae{bottom:472.932000px;}
.y12c{bottom:476.874000px;}
.yd3{bottom:478.662000px;}
.y76{bottom:481.404000px;}
.y2d{bottom:487.710000px;}
.yf7{bottom:496.374000px;}
.y4b{bottom:499.296000px;}
.y12b{bottom:500.874000px;}
.yd2{bottom:501.144000px;}
.y91{bottom:502.374000px;}
.y75{bottom:503.004000px;}
.yad{bottom:503.874000px;}
.yf6{bottom:511.032000px;}
.ye{bottom:514.104000px;}
.y4a{bottom:520.896000px;}
.y74{bottom:524.604000px;}
.y12a{bottom:524.874000px;}
.y2c{bottom:535.968000px;}
.yd1{bottom:536.244000px;}
.yf5{bottom:538.974000px;}
.y49{bottom:542.496000px;}
.yd{bottom:545.046000px;}
.y73{bottom:546.204000px;}
.y129{bottom:548.874000px;}
.y90{bottom:550.632000px;}
.yac{bottom:552.132000px;}
.yd0{bottom:557.916000px;}
.y48{bottom:559.860000px;}
.yf4{bottom:560.574000px;}
.y2b{bottom:563.910000px;}
.y128{bottom:572.874000px;}
.y8f{bottom:576.732000px;}
.yab{bottom:578.232000px;}
.ycf{bottom:579.588000px;}
.y152{bottom:579.942000px;}
.y72{bottom:586.146000px;}
.y47{bottom:587.802000px;}
.yf3{bottom:589.374000px;}
.y127{bottom:596.874000px;}
.yc{bottom:597.258000px;}
.yce{bottom:601.260000px;}
.y8e{bottom:602.832000px;}
.yaa{bottom:606.174000px;}
.yf2{bottom:613.374000px;}
.y151{bottom:615.132000px;}
.y126{bottom:620.874000px;}
.y46{bottom:622.560000px;}
.y8d{bottom:628.932000px;}
.y2a{bottom:631.668000px;}
.yf1{bottom:637.374000px;}
.ycd{bottom:641.274000px;}
.y125{bottom:644.874000px;}
.y45{bottom:650.502000px;}
.y71{bottom:653.904000px;}
.y8c{bottom:656.874000px;}
.yf0{bottom:661.374000px;}
.ycc{bottom:662.874000px;}
.y124{bottom:668.874000px;}
.ya9{bottom:673.932000px;}
.y70{bottom:675.504000px;}
.yed{bottom:678.432000px;}
.y8b{bottom:678.474000px;}
.ycb{bottom:684.474000px;}
.yef{bottom:685.374000px;}
.y121{bottom:685.932000px;}
.y14d{bottom:687.132000px;}
.y29{bottom:689.268000px;}
.y150{bottom:692.232000px;}
.y123{bottom:692.874000px;}
.ya8{bottom:695.532000px;}
.y6f{bottom:697.104000px;}
.y8a{bottom:700.074000px;}
.yb{bottom:702.804000px;}
.yec{bottom:706.374000px;}
.y14c{bottom:708.732000px;}
.yee{bottom:709.374000px;}
.y14f{bottom:713.832000px;}
.y120{bottom:713.874000px;}
.y122{bottom:716.874000px;}
.y28{bottom:717.210000px;}
.y6e{bottom:719.478000px;}
.yeb{bottom:727.974000px;}
.y14b{bottom:730.332000px;}
.yca{bottom:732.732000px;}
.y44{bottom:733.860000px;}
.y14e{bottom:735.432000px;}
.y11f{bottom:735.474000px;}
.y27{bottom:738.810000px;}
.yea{bottom:749.574000px;}
.y89{bottom:752.286000px;}
.ya7{bottom:753.132000px;}
.yc9{bottom:754.332000px;}
.y6d{bottom:754.668000px;}
.y43{bottom:755.460000px;}
.y11e{bottom:757.074000px;}
.y14a{bottom:758.274000px;}
.y69{bottom:767.532000px;}
.y6c{bottom:776.268000px;}
.ye9{bottom:778.374000px;}
.ya6{bottom:779.232000px;}
.ya{bottom:779.904000px;}
.yc8{bottom:782.274000px;}
.y11d{bottom:785.874000px;}
.y26{bottom:787.068000px;}
.y117{bottom:788.532000px;}
.y68{bottom:793.632000px;}
.y42{bottom:795.402000px;}
.y6b{bottom:797.868000px;}
.y149{bottom:799.032000px;}
.y9{bottom:802.278000px;}
.ye8{bottom:802.374000px;}
.yc7{bottom:803.874000px;}
.ya5{bottom:805.332000px;}
.y11c{bottom:809.874000px;}
.y116{bottom:816.474000px;}
.y25{bottom:818.010000px;}
.y6a{bottom:820.242000px;}
.y148{bottom:820.632000px;}
.y67{bottom:821.574000px;}
.ye7{bottom:826.374000px;}
.ya4{bottom:833.274000px;}
.y11b{bottom:833.874000px;}
.y8{bottom:837.468000px;}
.y115{bottom:838.074000px;}
.y24{bottom:839.610000px;}
.y147{bottom:842.232000px;}
.y88{bottom:842.286000px;}
.y66{bottom:843.174000px;}
.y41{bottom:843.660000px;}
.ye6{bottom:850.374000px;}
.y11a{bottom:857.874000px;}
.y144{bottom:858.732000px;}
.y114{bottom:859.674000px;}
.y7{bottom:859.842000px;}
.y146{bottom:863.832000px;}
.y40{bottom:869.760000px;}
.yc6{bottom:871.632000px;}
.y23{bottom:874.368000px;}
.ye5{bottom:874.374000px;}
.y113{bottom:881.274000px;}
.y119{bottom:881.874000px;}
.y145{bottom:885.432000px;}
.ya3{bottom:885.486000px;}
.y143{bottom:886.674000px;}
.yc5{bottom:893.232000px;}
.y6{bottom:895.032000px;}
.y3f{bottom:897.702000px;}
.ye4{bottom:898.374000px;}
.y22{bottom:902.310000px;}
.y112{bottom:902.874000px;}
.y118{bottom:905.874000px;}
.y142{bottom:908.274000px;}
.y65{bottom:913.032000px;}
.y5{bottom:916.632000px;}
.ye3{bottom:922.374000px;}
.y111{bottom:924.474000px;}
.y64{bottom:934.632000px;}
.ye2{bottom:937.032000px;}
.y4{bottom:938.232000px;}
.y110{bottom:946.074000px;}
.y87{bottom:947.832000px;}
.yc4{bottom:950.832000px;}
.y141{bottom:952.374000px;}
.y63{bottom:962.232000px;}
.y84{bottom:964.332000px;}
.ye1{bottom:964.974000px;}
.y3e{bottom:965.460000px;}
.y86{bottom:969.432000px;}
.y21{bottom:970.068000px;}
.y140{bottom:973.974000px;}
.yc3{bottom:978.774000px;}
.y10f{bottom:980.832000px;}
.y62{bottom:983.832000px;}
.ye0{bottom:986.574000px;}
.y3d{bottom:987.132000px;}
.y85{bottom:991.032000px;}
.y20{bottom:991.668000px;}
.y83{bottom:992.274000px;}
.y13f{bottom:995.574000px;}
.y3{bottom:1000.992000px;}
.y10e{bottom:1002.432000px;}
.y61{bottom:1005.432000px;}
.y3c{bottom:1008.804000px;}
.ydf{bottom:1011.786000px;}
.y82{bottom:1013.874000px;}
.y1f{bottom:1014.042000px;}
.y10d{bottom:1024.032000px;}
.yc2{bottom:1027.032000px;}
.y3b{bottom:1031.178000px;}
.y60{bottom:1033.032000px;}
.y10c{bottom:1045.632000px;}
.y81{bottom:1048.632000px;}
.y13e{bottom:1051.374000px;}
.y3a{bottom:1053.642000px;}
.y5f{bottom:1054.632000px;}
.yc1{bottom:1054.974000px;}
.y1e{bottom:1071.732000px;}
.y80{bottom:1074.732000px;}
.y13d{bottom:1075.374000px;}
.y5e{bottom:1076.232000px;}
.ya2{bottom:1076.574000px;}
.y2{bottom:1118.964000px;}
.y1{bottom:1142.260500px;}
.y1a{bottom:1208.833466px;}
.h6{height:13.200073px;}
.h7{height:48.281250px;}
.h3{height:68.554688px;}
.h2{height:85.693359px;}
.ha{height:88.594687px;}
.hb{height:105.922687px;}
.h5{height:114.257812px;}
.h4{height:137.109375px;}
.h8{height:446.357811px;}
.h9{height:508.908746px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:50.685000px;}
.w4{width:132.744000px;}
.w3{width:176.098500px;}
.w5{width:446.357811px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:18.823214px;}
.x1{left:63.777000px;}
.xd{left:69.778500px;}
.xe{left:72.778500px;}
.xf{left:87.778500px;}
.x4{left:96.778500px;}
.x6{left:108.000000px;}
.x10{left:151.570500px;}
.x2{left:157.735500px;}
.x9{left:223.277618px;}
.x11{left:230.605500px;}
.x3{left:244.090500px;}
.xb{left:318.870000px;}
.x7{left:358.407028px;}
.x5{left:446.455500px;}
.xc{left:573.961500px;}
.x8{left:652.168533px;}
@media print{
.v2{vertical-align:-4.416000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.813333pt;}
.v3{vertical-align:33.216000pt;}
.ls1{letter-spacing:-1.280000pt;}
.ls2{letter-spacing:-0.853333pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-18.048000pt;}
.ws0{word-spacing:-17.024000pt;}
.ws8{word-spacing:-16.832000pt;}
.ws3{word-spacing:-1.280000pt;}
.ws4{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:1121.760000pt;}
.ws5{word-spacing:1140.000000pt;}
.ws6{word-spacing:1150.176000pt;}
._5{margin-left:-11.712000pt;}
._4{margin-left:-10.751488pt;}
._a{margin-left:-7.808000pt;}
._8{margin-left:-6.784000pt;}
._6{margin-left:-5.248000pt;}
._f{margin-left:-3.840000pt;}
._1{margin-left:-2.688000pt;}
._0{margin-left:-1.664000pt;}
._2{width:1.024000pt;}
._3{width:2.048000pt;}
._14{width:3.520000pt;}
._10{width:4.608000pt;}
._d{width:6.592000pt;}
._c{width:8.064000pt;}
._9{width:10.474667pt;}
._7{width:11.370667pt;}
._13{width:14.698667pt;}
._b{width:16.896000pt;}
._11{width:21.141312pt;}
._e{width:124.896000pt;}
._12{width:457.141333pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs3{font-size:106.666667pt;}
.fs2{font-size:128.000000pt;}
.fs5{font-size:449.728204pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:2.245333pt;}
.y39{bottom:66.282667pt;}
.y7f{bottom:69.018667pt;}
.yc0{bottom:69.184000pt;}
.y19{bottom:71.418667pt;}
.y13c{bottom:74.554667pt;}
.y5d{bottom:77.717333pt;}
.y10b{bottom:83.888000pt;}
.ya1{bottom:86.282667pt;}
.y38{bottom:91.120000pt;}
.ybf{bottom:94.021333pt;}
.y13b{bottom:95.888000pt;}
.y5c{bottom:96.917333pt;}
.y10a{bottom:105.221333pt;}
.ya0{bottom:111.120000pt;}
.ybe{bottom:113.221333pt;}
.y18{bottom:114.314667pt;}
.y13a{bottom:117.221333pt;}
.y109{bottom:126.554667pt;}
.y9f{bottom:130.320000pt;}
.y5b{bottom:132.421333pt;}
.yde{bottom:132.469333pt;}
.y108{bottom:139.584000pt;}
.y17{bottom:141.818667pt;}
.y7e{bottom:143.114667pt;}
.y107{bottom:164.421333pt;}
.y37{bottom:165.216000pt;}
.y139{bottom:165.221333pt;}
.y7d{bottom:167.648000pt;}
.yb8{bottom:168.917333pt;}
.ybd{bottom:173.450667pt;}
.y57{bottom:175.317333pt;}
.y106{bottom:183.621333pt;}
.y16{bottom:184.714667pt;}
.y138{bottom:186.554667pt;}
.y36{bottom:189.749333pt;}
.y9e{bottom:190.549333pt;}
.yb7{bottom:192.117333pt;}
.y7c{bottom:192.181333pt;}
.ybc{bottom:192.650667pt;}
.y56{bottom:194.517333pt;}
.y137{bottom:207.888000pt;}
.y105{bottom:209.221333pt;}
.y9d{bottom:209.749333pt;}
.y15{bottom:212.218667pt;}
.y55{bottom:213.717333pt;}
.y35{bottom:214.282667pt;}
.ydd{bottom:214.869333pt;}
.yb6{bottom:215.317333pt;}
.y7b{bottom:216.714667pt;}
.ybb{bottom:223.850667pt;}
.y136{bottom:229.221333pt;}
.y9c{bottom:229.637333pt;}
.y104{bottom:230.554667pt;}
.y54{bottom:232.917333pt;}
.ydc{bottom:234.133333pt;}
.yb5{bottom:238.517333pt;}
.y34{bottom:238.816000pt;}
.y5a{bottom:240.117333pt;}
.yba{bottom:243.050667pt;}
.y100{bottom:247.850667pt;}
.y7a{bottom:247.914667pt;}
.y135{bottom:250.554667pt;}
.y103{bottom:251.888000pt;}
.ydb{bottom:254.117333pt;}
.y59{bottom:259.317333pt;}
.y53{bottom:260.421333pt;}
.y14{bottom:260.448000pt;}
.yb9{bottom:262.250667pt;}
.yb4{bottom:263.354667pt;}
.y132{bottom:265.717333pt;}
.y33{bottom:270.016000pt;}
.y134{bottom:271.888000pt;}
.yff{bottom:272.688000pt;}
.y102{bottom:273.221333pt;}
.y58{bottom:278.517333pt;}
.yda{bottom:278.650667pt;}
.y52{bottom:279.621333pt;}
.yb3{bottom:282.554667pt;}
.y79{bottom:283.418667pt;}
.y32{bottom:289.216000pt;}
.y131{bottom:290.554667pt;}
.yfe{bottom:291.888000pt;}
.y133{bottom:293.221333pt;}
.y101{bottom:294.554667pt;}
.yd9{bottom:297.914667pt;}
.y9b{bottom:298.250667pt;}
.y51{bottom:298.821333pt;}
.y97{bottom:303.050667pt;}
.y31{bottom:308.416000pt;}
.y130{bottom:309.754667pt;}
.yfd{bottom:311.088000pt;}
.y13{bottom:311.648000pt;}
.y9a{bottom:317.450667pt;}
.yd8{bottom:317.898667pt;}
.yb2{bottom:318.784000pt;}
.y96{bottom:322.250667pt;}
.y1d{bottom:326.042136pt;}
.y78{bottom:326.314667pt;}
.y30{bottom:327.616000pt;}
.y12f{bottom:328.954667pt;}
.yfc{bottom:330.288000pt;}
.y50{bottom:335.050667pt;}
.yb1{bottom:337.984000pt;}
.y12{bottom:339.152000pt;}
.yd7{bottom:342.432000pt;}
.y99{bottom:348.650667pt;}
.y95{bottom:349.754667pt;}
.y77{bottom:353.818667pt;}
.y4f{bottom:354.250667pt;}
.y12e{bottom:354.554667pt;}
.yfb{bottom:355.888000pt;}
.y11{bottom:358.352000pt;}
.yd6{bottom:361.696000pt;}
.y1c{bottom:362.877761pt;}
.y2f{bottom:363.120000pt;}
.y98{bottom:367.850667pt;}
.y94{bottom:368.954667pt;}
.yb0{bottom:370.288000pt;}
.y4e{bottom:373.450667pt;}
.y12d{bottom:375.888000pt;}
.yfa{bottom:377.221333pt;}
.yd5{bottom:380.960000pt;}
.y93{bottom:388.154667pt;}
.y10{bottom:389.248000pt;}
.yaf{bottom:389.488000pt;}
.y4d{bottom:392.650667pt;}
.yf9{bottom:398.554667pt;}
.yd4{bottom:400.944000pt;}
.y2e{bottom:406.016000pt;}
.y4c{bottom:412.538667pt;}
.yf{bottom:414.085333pt;}
.y92{bottom:419.050667pt;}
.yf8{bottom:419.888000pt;}
.yae{bottom:420.384000pt;}
.y12c{bottom:423.888000pt;}
.yd3{bottom:425.477333pt;}
.y76{bottom:427.914667pt;}
.y2d{bottom:433.520000pt;}
.yf7{bottom:441.221333pt;}
.y4b{bottom:443.818667pt;}
.y12b{bottom:445.221333pt;}
.yd2{bottom:445.461333pt;}
.y91{bottom:446.554667pt;}
.y75{bottom:447.114667pt;}
.yad{bottom:447.888000pt;}
.yf6{bottom:454.250667pt;}
.ye{bottom:456.981333pt;}
.y4a{bottom:463.018667pt;}
.y74{bottom:466.314667pt;}
.y12a{bottom:466.554667pt;}
.y2c{bottom:476.416000pt;}
.yd1{bottom:476.661333pt;}
.yf5{bottom:479.088000pt;}
.y49{bottom:482.218667pt;}
.yd{bottom:484.485333pt;}
.y73{bottom:485.514667pt;}
.y129{bottom:487.888000pt;}
.y90{bottom:489.450667pt;}
.yac{bottom:490.784000pt;}
.yd0{bottom:495.925333pt;}
.y48{bottom:497.653333pt;}
.yf4{bottom:498.288000pt;}
.y2b{bottom:501.253333pt;}
.y128{bottom:509.221333pt;}
.y8f{bottom:512.650667pt;}
.yab{bottom:513.984000pt;}
.ycf{bottom:515.189333pt;}
.y152{bottom:515.504000pt;}
.y72{bottom:521.018667pt;}
.y47{bottom:522.490667pt;}
.yf3{bottom:523.888000pt;}
.y127{bottom:530.554667pt;}
.yc{bottom:530.896000pt;}
.yce{bottom:534.453333pt;}
.y8e{bottom:535.850667pt;}
.yaa{bottom:538.821333pt;}
.yf2{bottom:545.221333pt;}
.y151{bottom:546.784000pt;}
.y126{bottom:551.888000pt;}
.y46{bottom:553.386667pt;}
.y8d{bottom:559.050667pt;}
.y2a{bottom:561.482667pt;}
.yf1{bottom:566.554667pt;}
.ycd{bottom:570.021333pt;}
.y125{bottom:573.221333pt;}
.y45{bottom:578.224000pt;}
.y71{bottom:581.248000pt;}
.y8c{bottom:583.888000pt;}
.yf0{bottom:587.888000pt;}
.ycc{bottom:589.221333pt;}
.y124{bottom:594.554667pt;}
.ya9{bottom:599.050667pt;}
.y70{bottom:600.448000pt;}
.yed{bottom:603.050667pt;}
.y8b{bottom:603.088000pt;}
.ycb{bottom:608.421333pt;}
.yef{bottom:609.221333pt;}
.y121{bottom:609.717333pt;}
.y14d{bottom:610.784000pt;}
.y29{bottom:612.682667pt;}
.y150{bottom:615.317333pt;}
.y123{bottom:615.888000pt;}
.ya8{bottom:618.250667pt;}
.y6f{bottom:619.648000pt;}
.y8a{bottom:622.288000pt;}
.yb{bottom:624.714667pt;}
.yec{bottom:627.888000pt;}
.y14c{bottom:629.984000pt;}
.yee{bottom:630.554667pt;}
.y14f{bottom:634.517333pt;}
.y120{bottom:634.554667pt;}
.y122{bottom:637.221333pt;}
.y28{bottom:637.520000pt;}
.y6e{bottom:639.536000pt;}
.yeb{bottom:647.088000pt;}
.y14b{bottom:649.184000pt;}
.yca{bottom:651.317333pt;}
.y44{bottom:652.320000pt;}
.y14e{bottom:653.717333pt;}
.y11f{bottom:653.754667pt;}
.y27{bottom:656.720000pt;}
.yea{bottom:666.288000pt;}
.y89{bottom:668.698667pt;}
.ya7{bottom:669.450667pt;}
.yc9{bottom:670.517333pt;}
.y6d{bottom:670.816000pt;}
.y43{bottom:671.520000pt;}
.y11e{bottom:672.954667pt;}
.y14a{bottom:674.021333pt;}
.y69{bottom:682.250667pt;}
.y6c{bottom:690.016000pt;}
.ye9{bottom:691.888000pt;}
.ya6{bottom:692.650667pt;}
.ya{bottom:693.248000pt;}
.yc8{bottom:695.354667pt;}
.y11d{bottom:698.554667pt;}
.y26{bottom:699.616000pt;}
.y117{bottom:700.917333pt;}
.y68{bottom:705.450667pt;}
.y42{bottom:707.024000pt;}
.y6b{bottom:709.216000pt;}
.y149{bottom:710.250667pt;}
.y9{bottom:713.136000pt;}
.ye8{bottom:713.221333pt;}
.yc7{bottom:714.554667pt;}
.ya5{bottom:715.850667pt;}
.y11c{bottom:719.888000pt;}
.y116{bottom:725.754667pt;}
.y25{bottom:727.120000pt;}
.y6a{bottom:729.104000pt;}
.y148{bottom:729.450667pt;}
.y67{bottom:730.288000pt;}
.ye7{bottom:734.554667pt;}
.ya4{bottom:740.688000pt;}
.y11b{bottom:741.221333pt;}
.y8{bottom:744.416000pt;}
.y115{bottom:744.954667pt;}
.y24{bottom:746.320000pt;}
.y147{bottom:748.650667pt;}
.y88{bottom:748.698667pt;}
.y66{bottom:749.488000pt;}
.y41{bottom:749.920000pt;}
.ye6{bottom:755.888000pt;}
.y11a{bottom:762.554667pt;}
.y144{bottom:763.317333pt;}
.y114{bottom:764.154667pt;}
.y7{bottom:764.304000pt;}
.y146{bottom:767.850667pt;}
.y40{bottom:773.120000pt;}
.yc6{bottom:774.784000pt;}
.y23{bottom:777.216000pt;}
.ye5{bottom:777.221333pt;}
.y113{bottom:783.354667pt;}
.y119{bottom:783.888000pt;}
.y145{bottom:787.050667pt;}
.ya3{bottom:787.098667pt;}
.y143{bottom:788.154667pt;}
.yc5{bottom:793.984000pt;}
.y6{bottom:795.584000pt;}
.y3f{bottom:797.957333pt;}
.ye4{bottom:798.554667pt;}
.y22{bottom:802.053333pt;}
.y112{bottom:802.554667pt;}
.y118{bottom:805.221333pt;}
.y142{bottom:807.354667pt;}
.y65{bottom:811.584000pt;}
.y5{bottom:814.784000pt;}
.ye3{bottom:819.888000pt;}
.y111{bottom:821.754667pt;}
.y64{bottom:830.784000pt;}
.ye2{bottom:832.917333pt;}
.y4{bottom:833.984000pt;}
.y110{bottom:840.954667pt;}
.y87{bottom:842.517333pt;}
.yc4{bottom:845.184000pt;}
.y141{bottom:846.554667pt;}
.y63{bottom:855.317333pt;}
.y84{bottom:857.184000pt;}
.ye1{bottom:857.754667pt;}
.y3e{bottom:858.186667pt;}
.y86{bottom:861.717333pt;}
.y21{bottom:862.282667pt;}
.y140{bottom:865.754667pt;}
.yc3{bottom:870.021333pt;}
.y10f{bottom:871.850667pt;}
.y62{bottom:874.517333pt;}
.ye0{bottom:876.954667pt;}
.y3d{bottom:877.450667pt;}
.y85{bottom:880.917333pt;}
.y20{bottom:881.482667pt;}
.y83{bottom:882.021333pt;}
.y13f{bottom:884.954667pt;}
.y3{bottom:889.770667pt;}
.y10e{bottom:891.050667pt;}
.y61{bottom:893.717333pt;}
.y3c{bottom:896.714667pt;}
.ydf{bottom:899.365333pt;}
.y82{bottom:901.221333pt;}
.y1f{bottom:901.370667pt;}
.y10d{bottom:910.250667pt;}
.yc2{bottom:912.917333pt;}
.y3b{bottom:916.602667pt;}
.y60{bottom:918.250667pt;}
.y10c{bottom:929.450667pt;}
.y81{bottom:932.117333pt;}
.y13e{bottom:934.554667pt;}
.y3a{bottom:936.570667pt;}
.y5f{bottom:937.450667pt;}
.yc1{bottom:937.754667pt;}
.y1e{bottom:952.650667pt;}
.y80{bottom:955.317333pt;}
.y13d{bottom:955.888000pt;}
.y5e{bottom:956.650667pt;}
.ya2{bottom:956.954667pt;}
.y2{bottom:994.634667pt;}
.y1{bottom:1015.342667pt;}
.y1a{bottom:1074.518636pt;}
.h6{height:11.733399pt;}
.h7{height:42.916667pt;}
.h3{height:60.937500pt;}
.h2{height:76.171875pt;}
.ha{height:78.750833pt;}
.hb{height:94.153500pt;}
.h5{height:101.562500pt;}
.h4{height:121.875000pt;}
.h8{height:396.762499pt;}
.h9{height:452.363330pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:45.053333pt;}
.w4{width:117.994667pt;}
.w3{width:156.532000pt;}
.w5{width:396.762499pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:16.731746pt;}
.x1{left:56.690667pt;}
.xd{left:62.025333pt;}
.xe{left:64.692000pt;}
.xf{left:78.025333pt;}
.x4{left:86.025333pt;}
.x6{left:96.000000pt;}
.x10{left:134.729333pt;}
.x2{left:140.209333pt;}
.x9{left:198.468993pt;}
.x11{left:204.982667pt;}
.x3{left:216.969333pt;}
.xb{left:283.440000pt;}
.x7{left:318.584025pt;}
.x5{left:396.849333pt;}
.xc{left:510.188000pt;}
.x8{left:579.705363pt;}
}




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