
    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_d1c8dd74019c677566731d72.woff')format("woff");}.ff1{font-family:ff1;line-height:1.100000;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_0a04080b4172f018f1aae2d2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666000;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_6bbaa652cfa0cf106eb11b79.woff')format("woff");}.ff3{font-family:ff3;line-height:1.109000;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_3e4e430a4ccf72aca05d60eb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.077000;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_95f9a0303e619b20cb6983ce.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_02962a635e860d0e08582311.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099000;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_3b0c450f5a6fe6a798e5e1c5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.032000;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_f83dfe4dff6d37388d2a494a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.026000;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_cd5cc1c1ac3496c0a27593a3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.854000px;}
.ls5{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.036726px;}
.ls20{letter-spacing:0.037926px;}
.ls21{letter-spacing:0.039126px;}
.ls1e{letter-spacing:0.041526px;}
.ls22{letter-spacing:0.042726px;}
.ls18{letter-spacing:0.046326px;}
.ls15{letter-spacing:0.096000px;}
.ls2b{letter-spacing:0.165600px;}
.lsa{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.662400px;}
.ls10{letter-spacing:0.690000px;}
.ls1c{letter-spacing:1.145526px;}
.ls1b{letter-spacing:1.150326px;}
.ls19{letter-spacing:1.151526px;}
.ls1d{letter-spacing:1.152726px;}
.ls1a{letter-spacing:1.153926px;}
.ls7{letter-spacing:1.800000px;}
.ls1{letter-spacing:3.256398px;}
.ls2{letter-spacing:3.257994px;}
.ls3{letter-spacing:3.261486px;}
.ls6{letter-spacing:3.493926px;}
.ls27{letter-spacing:4.272726px;}
.ls24{letter-spacing:4.273926px;}
.ls29{letter-spacing:4.276326px;}
.ls28{letter-spacing:4.277526px;}
.ls0{letter-spacing:4.632600px;}
.ls26{letter-spacing:5.377926px;}
.ls2a{letter-spacing:5.379126px;}
.ls23{letter-spacing:5.380326px;}
.ls25{letter-spacing:5.383926px;}
.ls14{letter-spacing:68.653926px;}
.ls12{letter-spacing:69.283926px;}
.lse{letter-spacing:70.525926px;}
.ls17{letter-spacing:70.633926px;}
.ls16{letter-spacing:70.687926px;}
.ls11{letter-spacing:71.065926px;}
.ls13{letter-spacing:71.119926px;}
.ls9{letter-spacing:73.009926px;}
.lsc{letter-spacing:73.981926px;}
.lsb{letter-spacing:74.089926px;}
.lsf{letter-spacing:81.271926px;}
.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:-97.284600px;}
.ws8{word-spacing:-91.800000px;}
.ws7{word-spacing:-90.000000px;}
.ws15{word-spacing:-69.690000px;}
.ws2{word-spacing:-66.660000px;}
.ws0{word-spacing:-66.000000px;}
.ws9{word-spacing:-60.000000px;}
.wsd{word-spacing:-55.862400px;}
.ws5{word-spacing:-55.590000px;}
.wsa{word-spacing:-55.200000px;}
.wsf{word-spacing:-54.540000px;}
.wse{word-spacing:-54.000000px;}
.ws12{word-spacing:-48.576000px;}
.ws16{word-spacing:-48.096000px;}
.ws11{word-spacing:-48.000000px;}
.ws4{word-spacing:-34.799340px;}
.ws17{word-spacing:-34.720800px;}
.wsb{word-spacing:-34.555200px;}
.ws6{word-spacing:-31.805808px;}
.ws10{word-spacing:-30.048000px;}
.ws13{word-spacing:-24.576000px;}
.ws14{word-spacing:-24.000000px;}
.wsc{word-spacing:-22.234781px;}
.ws3{word-spacing:0.000000px;}
._b{margin-left:-14.896914px;}
._a{margin-left:-13.176189px;}
._7{margin-left:-11.906586px;}
._5{margin-left:-10.569540px;}
._4{margin-left:-8.893194px;}
._6{margin-left:-7.498314px;}
._3{margin-left:-5.831988px;}
._2{margin-left:-4.632600px;}
._8{margin-left:-3.441840px;}
._1{margin-left:-2.056074px;}
._9{margin-left:-1.028397px;}
._0{width:1.848000px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.640000px;}
.fs9{font-size:48.000000px;}
.fs4{font-size:50.808000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:55.200000px;}
.fs3{font-size:55.590000px;}
.fs1{font-size:59.778000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fsb{font-size:69.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:92.652000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:73.626000px;}
.y3e{bottom:77.530500px;}
.yb4{bottom:82.851000px;}
.y78{bottom:90.126000px;}
.ya3{bottom:92.826000px;}
.ye8{bottom:94.926000px;}
.y3d{bottom:95.194500px;}
.yb3{bottom:102.051000px;}
.yd1{bottom:102.616500px;}
.y77{bottom:106.626000px;}
.y1d{bottom:110.985000px;}
.ya2{bottom:112.026000px;}
.y3c{bottom:112.858500px;}
.ye7{bottom:114.126000px;}
.yb2{bottom:121.251000px;}
.yd0{bottom:121.816500px;}
.yc4{bottom:123.126000px;}
.y1c{bottom:129.666000px;}
.y3b{bottom:130.522500px;}
.ya1{bottom:131.226000px;}
.ye6{bottom:133.326000px;}
.yc3{bottom:139.626000px;}
.yb1{bottom:140.451000px;}
.ycf{bottom:141.016500px;}
.y3a{bottom:148.186500px;}
.y1b{bottom:148.345500px;}
.ya0{bottom:150.426000px;}
.ye5{bottom:152.526000px;}
.yc2{bottom:156.126000px;}
.y76{bottom:159.651000px;}
.yce{bottom:160.216500px;}
.y1a{bottom:167.025000px;}
.y9f{bottom:169.626000px;}
.ye4{bottom:171.726000px;}
.yc1{bottom:172.626000px;}
.y75{bottom:178.851000px;}
.ycd{bottom:179.416500px;}
.y39{bottom:185.164500px;}
.y19{bottom:185.706000px;}
.y9e{bottom:188.826000px;}
.yc0{bottom:189.126000px;}
.ye3{bottom:190.926000px;}
.y74{bottom:198.051000px;}
.ycc{bottom:198.616500px;}
.y38{bottom:204.364500px;}
.y18{bottom:204.385500px;}
.y9d{bottom:208.026000px;}
.ye2{bottom:210.126000px;}
.y73{bottom:217.251000px;}
.ycb{bottom:217.816500px;}
.y17{bottom:223.065000px;}
.y37{bottom:223.564500px;}
.y9c{bottom:227.226000px;}
.ye1{bottom:229.326000px;}
.y72{bottom:236.451000px;}
.yca{bottom:237.016500px;}
.ybf{bottom:238.189500px;}
.y36{bottom:242.764500px;}
.y9b{bottom:246.426000px;}
.ye0{bottom:248.526000px;}
.y71{bottom:255.651000px;}
.yc9{bottom:256.216500px;}
.ybe{bottom:257.389500px;}
.y16{bottom:260.425500px;}
.y35{bottom:261.964500px;}
.y9a{bottom:265.626000px;}
.ydf{bottom:267.726000px;}
.y70{bottom:274.851000px;}
.yc8{bottom:275.416500px;}
.ybd{bottom:276.589500px;}
.y34{bottom:281.164500px;}
.y99{bottom:284.826000px;}
.yde{bottom:286.926000px;}
.y5f{bottom:292.392000px;}
.y6f{bottom:294.051000px;}
.ybc{bottom:295.789500px;}
.y15{bottom:297.784500px;}
.y33{bottom:300.364500px;}
.y98{bottom:304.026000px;}
.ydd{bottom:306.126000px;}
.y5e{bottom:311.592000px;}
.y6e{bottom:313.251000px;}
.ybb{bottom:314.989500px;}
.yc7{bottom:315.826500px;}
.y32{bottom:319.564500px;}
.y97{bottom:323.226000px;}
.ydc{bottom:325.326000px;}
.y5d{bottom:330.792000px;}
.y6d{bottom:332.451000px;}
.yba{bottom:334.189500px;}
.yc6{bottom:335.026500px;}
.y14{bottom:335.145000px;}
.y31{bottom:338.764500px;}
.y96{bottom:342.426000px;}
.ydb{bottom:344.526000px;}
.y5c{bottom:349.992000px;}
.y13{bottom:350.089500px;}
.y6c{bottom:351.651000px;}
.yb9{bottom:353.389500px;}
.y30{bottom:357.964500px;}
.y95{bottom:361.626000px;}
.yda{bottom:363.726000px;}
.y12{bottom:365.032500px;}
.y5b{bottom:369.192000px;}
.y6b{bottom:370.851000px;}
.yb8{bottom:372.589500px;}
.y2f{bottom:377.164500px;}
.y11{bottom:379.977000px;}
.y94{bottom:380.826000px;}
.yd9{bottom:382.926000px;}
.y5a{bottom:388.392000px;}
.y6a{bottom:390.051000px;}
.y10{bottom:394.921500px;}
.y2e{bottom:396.364500px;}
.y93{bottom:400.026000px;}
.yd8{bottom:402.126000px;}
.y59{bottom:407.592000px;}
.y69{bottom:409.251000px;}
.yf{bottom:409.864500px;}
.yb7{bottom:412.999500px;}
.y2d{bottom:415.564500px;}
.y92{bottom:419.226000px;}
.yb0{bottom:421.326000px;}
.ye{bottom:424.809000px;}
.y58{bottom:426.792000px;}
.y68{bottom:428.449500px;}
.yb6{bottom:432.199500px;}
.y2c{bottom:434.764500px;}
.y91{bottom:438.426000px;}
.yd{bottom:439.753500px;}
.yaf{bottom:440.526000px;}
.y57{bottom:445.992000px;}
.y67{bottom:447.649500px;}
.y2b{bottom:453.964500px;}
.yc{bottom:454.696500px;}
.y90{bottom:457.626000px;}
.yae{bottom:459.726000px;}
.y56{bottom:465.192000px;}
.y66{bottom:466.849500px;}
.yb{bottom:469.641000px;}
.y2a{bottom:473.164500px;}
.y8f{bottom:476.826000px;}
.yad{bottom:478.926000px;}
.y55{bottom:484.392000px;}
.y65{bottom:486.049500px;}
.y29{bottom:492.364500px;}
.y8e{bottom:496.026000px;}
.yac{bottom:498.126000px;}
.y54{bottom:503.592000px;}
.y64{bottom:505.249500px;}
.y28{bottom:511.564500px;}
.y8d{bottom:515.226000px;}
.yab{bottom:517.326000px;}
.y53{bottom:522.792000px;}
.y63{bottom:524.449500px;}
.y27{bottom:530.764500px;}
.y8c{bottom:534.426000px;}
.yaa{bottom:536.526000px;}
.ya{bottom:541.851000px;}
.y52{bottom:541.992000px;}
.y62{bottom:543.649500px;}
.y26{bottom:549.964500px;}
.y8b{bottom:553.626000px;}
.ya9{bottom:555.726000px;}
.y9{bottom:560.532000px;}
.y51{bottom:561.192000px;}
.y25{bottom:569.164500px;}
.y8a{bottom:572.826000px;}
.ya8{bottom:574.926000px;}
.y8{bottom:579.211500px;}
.y50{bottom:580.392000px;}
.y61{bottom:584.059500px;}
.y24{bottom:588.364500px;}
.y89{bottom:592.026000px;}
.ya7{bottom:594.126000px;}
.y7{bottom:597.891000px;}
.y4f{bottom:599.592000px;}
.y60{bottom:603.259500px;}
.y23{bottom:607.564500px;}
.y88{bottom:611.226000px;}
.ya6{bottom:613.326000px;}
.y4e{bottom:618.792000px;}
.y22{bottom:626.764500px;}
.y87{bottom:630.426000px;}
.ya5{bottom:632.526000px;}
.y4d{bottom:637.992000px;}
.y86{bottom:649.626000px;}
.yc5{bottom:650.191500px;}
.yd7{bottom:651.726000px;}
.y4c{bottom:657.192000px;}
.y85{bottom:668.826000px;}
.ya4{bottom:670.926000px;}
.y4b{bottom:676.392000px;}
.y21{bottom:678.219000px;}
.y84{bottom:688.026000px;}
.yd6{bottom:690.126000px;}
.y4a{bottom:695.592000px;}
.y83{bottom:707.226000px;}
.yd5{bottom:709.326000px;}
.y49{bottom:714.792000px;}
.y20{bottom:716.619000px;}
.y82{bottom:726.426000px;}
.yd4{bottom:728.526000px;}
.y48{bottom:733.992000px;}
.y1f{bottom:744.069000px;}
.y81{bottom:745.626000px;}
.yb5{bottom:747.364500px;}
.yd3{bottom:747.726000px;}
.y47{bottom:753.192000px;}
.y80{bottom:764.826000px;}
.y46{bottom:772.392000px;}
.y7f{bottom:784.026000px;}
.yd2{bottom:786.126000px;}
.y45{bottom:791.592000px;}
.y7e{bottom:803.226000px;}
.y7d{bottom:822.426000px;}
.y44{bottom:830.106000px;}
.y7c{bottom:841.626000px;}
.y6{bottom:843.705000px;}
.y43{bottom:847.770000px;}
.y3{bottom:855.831000px;}
.y7b{bottom:860.826000px;}
.y5{bottom:862.386000px;}
.y42{bottom:865.434000px;}
.y7a{bottom:880.024500px;}
.y41{bottom:883.098000px;}
.y2{bottom:885.295500px;}
.y79{bottom:899.224500px;}
.y4{bottom:899.745000px;}
.y40{bottom:900.762000px;}
.y1{bottom:918.424500px;}
.y3f{bottom:956.692500px;}
.hd{height:39.812148px;}
.hf{height:40.032000px;}
.h6{height:41.052864px;}
.h8{height:42.780000px;}
.ha{height:44.601600px;}
.h4{height:44.916720px;}
.h9{height:45.816000px;}
.hb{height:46.036800px;}
.hc{height:48.168000px;}
.h5{height:50.197770px;}
.h2{height:58.872000px;}
.h10{height:62.307000px;}
.he{height:62.666148px;}
.h7{height:81.270000px;}
.h3{height:83.664756px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x4{left:59.527500px;}
.x1{left:76.536000px;}
.x2{left:93.543000px;}
.x3{left:97.795500px;}
.x8{left:104.136000px;}
.x7{left:113.791500px;}
.x5{left:114.802500px;}
.x9{left:121.143000px;}
.x6{left:173.986500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.314667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.032645pt;}
.ls20{letter-spacing:0.033712pt;}
.ls21{letter-spacing:0.034779pt;}
.ls1e{letter-spacing:0.036912pt;}
.ls22{letter-spacing:0.037979pt;}
.ls18{letter-spacing:0.041179pt;}
.ls15{letter-spacing:0.085333pt;}
.ls2b{letter-spacing:0.147200pt;}
.lsa{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.588800pt;}
.ls10{letter-spacing:0.613333pt;}
.ls1c{letter-spacing:1.018245pt;}
.ls1b{letter-spacing:1.022512pt;}
.ls19{letter-spacing:1.023579pt;}
.ls1d{letter-spacing:1.024645pt;}
.ls1a{letter-spacing:1.025712pt;}
.ls7{letter-spacing:1.600000pt;}
.ls1{letter-spacing:2.894576pt;}
.ls2{letter-spacing:2.895995pt;}
.ls3{letter-spacing:2.899099pt;}
.ls6{letter-spacing:3.105712pt;}
.ls27{letter-spacing:3.797979pt;}
.ls24{letter-spacing:3.799045pt;}
.ls29{letter-spacing:3.801179pt;}
.ls28{letter-spacing:3.802245pt;}
.ls0{letter-spacing:4.117867pt;}
.ls26{letter-spacing:4.780379pt;}
.ls2a{letter-spacing:4.781445pt;}
.ls23{letter-spacing:4.782512pt;}
.ls25{letter-spacing:4.785712pt;}
.ls14{letter-spacing:61.025712pt;}
.ls12{letter-spacing:61.585712pt;}
.lse{letter-spacing:62.689712pt;}
.ls17{letter-spacing:62.785712pt;}
.ls16{letter-spacing:62.833712pt;}
.ls11{letter-spacing:63.169712pt;}
.ls13{letter-spacing:63.217712pt;}
.ls9{letter-spacing:64.897712pt;}
.lsc{letter-spacing:65.761712pt;}
.lsb{letter-spacing:65.857712pt;}
.lsf{letter-spacing:72.241712pt;}
.ws1{word-spacing:-86.475200pt;}
.ws8{word-spacing:-81.600000pt;}
.ws7{word-spacing:-80.000000pt;}
.ws15{word-spacing:-61.946667pt;}
.ws2{word-spacing:-59.253333pt;}
.ws0{word-spacing:-58.666667pt;}
.ws9{word-spacing:-53.333333pt;}
.wsd{word-spacing:-49.655467pt;}
.ws5{word-spacing:-49.413333pt;}
.wsa{word-spacing:-49.066667pt;}
.wsf{word-spacing:-48.480000pt;}
.wse{word-spacing:-48.000000pt;}
.ws12{word-spacing:-43.178667pt;}
.ws16{word-spacing:-42.752000pt;}
.ws11{word-spacing:-42.666667pt;}
.ws4{word-spacing:-30.932747pt;}
.ws17{word-spacing:-30.862933pt;}
.wsb{word-spacing:-30.715733pt;}
.ws6{word-spacing:-28.271829pt;}
.ws10{word-spacing:-26.709333pt;}
.ws13{word-spacing:-21.845333pt;}
.ws14{word-spacing:-21.333333pt;}
.wsc{word-spacing:-19.764250pt;}
.ws3{word-spacing:0.000000pt;}
._b{margin-left:-13.241701pt;}
._a{margin-left:-11.712168pt;}
._7{margin-left:-10.583632pt;}
._5{margin-left:-9.395147pt;}
._4{margin-left:-7.905061pt;}
._6{margin-left:-6.665168pt;}
._3{margin-left:-5.183989pt;}
._2{margin-left:-4.117867pt;}
._8{margin-left:-3.059413pt;}
._1{margin-left:-1.827621pt;}
._9{margin-left:-0.914130pt;}
._0{width:1.642667pt;}
.fsa{font-size:34.346667pt;}
.fs9{font-size:42.666667pt;}
.fs4{font-size:45.162667pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:49.066667pt;}
.fs3{font-size:49.413333pt;}
.fs1{font-size:53.136000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fsb{font-size:61.333333pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:82.357333pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:65.445333pt;}
.y3e{bottom:68.916000pt;}
.yb4{bottom:73.645333pt;}
.y78{bottom:80.112000pt;}
.ya3{bottom:82.512000pt;}
.ye8{bottom:84.378667pt;}
.y3d{bottom:84.617333pt;}
.yb3{bottom:90.712000pt;}
.yd1{bottom:91.214667pt;}
.y77{bottom:94.778667pt;}
.y1d{bottom:98.653333pt;}
.ya2{bottom:99.578667pt;}
.y3c{bottom:100.318667pt;}
.ye7{bottom:101.445333pt;}
.yb2{bottom:107.778667pt;}
.yd0{bottom:108.281333pt;}
.yc4{bottom:109.445333pt;}
.y1c{bottom:115.258667pt;}
.y3b{bottom:116.020000pt;}
.ya1{bottom:116.645333pt;}
.ye6{bottom:118.512000pt;}
.yc3{bottom:124.112000pt;}
.yb1{bottom:124.845333pt;}
.ycf{bottom:125.348000pt;}
.y3a{bottom:131.721333pt;}
.y1b{bottom:131.862667pt;}
.ya0{bottom:133.712000pt;}
.ye5{bottom:135.578667pt;}
.yc2{bottom:138.778667pt;}
.y76{bottom:141.912000pt;}
.yce{bottom:142.414667pt;}
.y1a{bottom:148.466667pt;}
.y9f{bottom:150.778667pt;}
.ye4{bottom:152.645333pt;}
.yc1{bottom:153.445333pt;}
.y75{bottom:158.978667pt;}
.ycd{bottom:159.481333pt;}
.y39{bottom:164.590667pt;}
.y19{bottom:165.072000pt;}
.y9e{bottom:167.845333pt;}
.yc0{bottom:168.112000pt;}
.ye3{bottom:169.712000pt;}
.y74{bottom:176.045333pt;}
.ycc{bottom:176.548000pt;}
.y38{bottom:181.657333pt;}
.y18{bottom:181.676000pt;}
.y9d{bottom:184.912000pt;}
.ye2{bottom:186.778667pt;}
.y73{bottom:193.112000pt;}
.ycb{bottom:193.614667pt;}
.y17{bottom:198.280000pt;}
.y37{bottom:198.724000pt;}
.y9c{bottom:201.978667pt;}
.ye1{bottom:203.845333pt;}
.y72{bottom:210.178667pt;}
.yca{bottom:210.681333pt;}
.ybf{bottom:211.724000pt;}
.y36{bottom:215.790667pt;}
.y9b{bottom:219.045333pt;}
.ye0{bottom:220.912000pt;}
.y71{bottom:227.245333pt;}
.yc9{bottom:227.748000pt;}
.ybe{bottom:228.790667pt;}
.y16{bottom:231.489333pt;}
.y35{bottom:232.857333pt;}
.y9a{bottom:236.112000pt;}
.ydf{bottom:237.978667pt;}
.y70{bottom:244.312000pt;}
.yc8{bottom:244.814667pt;}
.ybd{bottom:245.857333pt;}
.y34{bottom:249.924000pt;}
.y99{bottom:253.178667pt;}
.yde{bottom:255.045333pt;}
.y5f{bottom:259.904000pt;}
.y6f{bottom:261.378667pt;}
.ybc{bottom:262.924000pt;}
.y15{bottom:264.697333pt;}
.y33{bottom:266.990667pt;}
.y98{bottom:270.245333pt;}
.ydd{bottom:272.112000pt;}
.y5e{bottom:276.970667pt;}
.y6e{bottom:278.445333pt;}
.ybb{bottom:279.990667pt;}
.yc7{bottom:280.734667pt;}
.y32{bottom:284.057333pt;}
.y97{bottom:287.312000pt;}
.ydc{bottom:289.178667pt;}
.y5d{bottom:294.037333pt;}
.y6d{bottom:295.512000pt;}
.yba{bottom:297.057333pt;}
.yc6{bottom:297.801333pt;}
.y14{bottom:297.906667pt;}
.y31{bottom:301.124000pt;}
.y96{bottom:304.378667pt;}
.ydb{bottom:306.245333pt;}
.y5c{bottom:311.104000pt;}
.y13{bottom:311.190667pt;}
.y6c{bottom:312.578667pt;}
.yb9{bottom:314.124000pt;}
.y30{bottom:318.190667pt;}
.y95{bottom:321.445333pt;}
.yda{bottom:323.312000pt;}
.y12{bottom:324.473333pt;}
.y5b{bottom:328.170667pt;}
.y6b{bottom:329.645333pt;}
.yb8{bottom:331.190667pt;}
.y2f{bottom:335.257333pt;}
.y11{bottom:337.757333pt;}
.y94{bottom:338.512000pt;}
.yd9{bottom:340.378667pt;}
.y5a{bottom:345.237333pt;}
.y6a{bottom:346.712000pt;}
.y10{bottom:351.041333pt;}
.y2e{bottom:352.324000pt;}
.y93{bottom:355.578667pt;}
.yd8{bottom:357.445333pt;}
.y59{bottom:362.304000pt;}
.y69{bottom:363.778667pt;}
.yf{bottom:364.324000pt;}
.yb7{bottom:367.110667pt;}
.y2d{bottom:369.390667pt;}
.y92{bottom:372.645333pt;}
.yb0{bottom:374.512000pt;}
.ye{bottom:377.608000pt;}
.y58{bottom:379.370667pt;}
.y68{bottom:380.844000pt;}
.yb6{bottom:384.177333pt;}
.y2c{bottom:386.457333pt;}
.y91{bottom:389.712000pt;}
.yd{bottom:390.892000pt;}
.yaf{bottom:391.578667pt;}
.y57{bottom:396.437333pt;}
.y67{bottom:397.910667pt;}
.y2b{bottom:403.524000pt;}
.yc{bottom:404.174667pt;}
.y90{bottom:406.778667pt;}
.yae{bottom:408.645333pt;}
.y56{bottom:413.504000pt;}
.y66{bottom:414.977333pt;}
.yb{bottom:417.458667pt;}
.y2a{bottom:420.590667pt;}
.y8f{bottom:423.845333pt;}
.yad{bottom:425.712000pt;}
.y55{bottom:430.570667pt;}
.y65{bottom:432.044000pt;}
.y29{bottom:437.657333pt;}
.y8e{bottom:440.912000pt;}
.yac{bottom:442.778667pt;}
.y54{bottom:447.637333pt;}
.y64{bottom:449.110667pt;}
.y28{bottom:454.724000pt;}
.y8d{bottom:457.978667pt;}
.yab{bottom:459.845333pt;}
.y53{bottom:464.704000pt;}
.y63{bottom:466.177333pt;}
.y27{bottom:471.790667pt;}
.y8c{bottom:475.045333pt;}
.yaa{bottom:476.912000pt;}
.ya{bottom:481.645333pt;}
.y52{bottom:481.770667pt;}
.y62{bottom:483.244000pt;}
.y26{bottom:488.857333pt;}
.y8b{bottom:492.112000pt;}
.ya9{bottom:493.978667pt;}
.y9{bottom:498.250667pt;}
.y51{bottom:498.837333pt;}
.y25{bottom:505.924000pt;}
.y8a{bottom:509.178667pt;}
.ya8{bottom:511.045333pt;}
.y8{bottom:514.854667pt;}
.y50{bottom:515.904000pt;}
.y61{bottom:519.164000pt;}
.y24{bottom:522.990667pt;}
.y89{bottom:526.245333pt;}
.ya7{bottom:528.112000pt;}
.y7{bottom:531.458667pt;}
.y4f{bottom:532.970667pt;}
.y60{bottom:536.230667pt;}
.y23{bottom:540.057333pt;}
.y88{bottom:543.312000pt;}
.ya6{bottom:545.178667pt;}
.y4e{bottom:550.037333pt;}
.y22{bottom:557.124000pt;}
.y87{bottom:560.378667pt;}
.ya5{bottom:562.245333pt;}
.y4d{bottom:567.104000pt;}
.y86{bottom:577.445333pt;}
.yc5{bottom:577.948000pt;}
.yd7{bottom:579.312000pt;}
.y4c{bottom:584.170667pt;}
.y85{bottom:594.512000pt;}
.ya4{bottom:596.378667pt;}
.y4b{bottom:601.237333pt;}
.y21{bottom:602.861333pt;}
.y84{bottom:611.578667pt;}
.yd6{bottom:613.445333pt;}
.y4a{bottom:618.304000pt;}
.y83{bottom:628.645333pt;}
.yd5{bottom:630.512000pt;}
.y49{bottom:635.370667pt;}
.y20{bottom:636.994667pt;}
.y82{bottom:645.712000pt;}
.yd4{bottom:647.578667pt;}
.y48{bottom:652.437333pt;}
.y1f{bottom:661.394667pt;}
.y81{bottom:662.778667pt;}
.yb5{bottom:664.324000pt;}
.yd3{bottom:664.645333pt;}
.y47{bottom:669.504000pt;}
.y80{bottom:679.845333pt;}
.y46{bottom:686.570667pt;}
.y7f{bottom:696.912000pt;}
.yd2{bottom:698.778667pt;}
.y45{bottom:703.637333pt;}
.y7e{bottom:713.978667pt;}
.y7d{bottom:731.045333pt;}
.y44{bottom:737.872000pt;}
.y7c{bottom:748.112000pt;}
.y6{bottom:749.960000pt;}
.y43{bottom:753.573333pt;}
.y3{bottom:760.738667pt;}
.y7b{bottom:765.178667pt;}
.y5{bottom:766.565333pt;}
.y42{bottom:769.274667pt;}
.y7a{bottom:782.244000pt;}
.y41{bottom:784.976000pt;}
.y2{bottom:786.929333pt;}
.y79{bottom:799.310667pt;}
.y4{bottom:799.773333pt;}
.y40{bottom:800.677333pt;}
.y1{bottom:816.377333pt;}
.y3f{bottom:850.393333pt;}
.hd{height:35.388576pt;}
.hf{height:35.584000pt;}
.h6{height:36.491435pt;}
.h8{height:38.026667pt;}
.ha{height:39.645867pt;}
.h4{height:39.925973pt;}
.h9{height:40.725333pt;}
.hb{height:40.921600pt;}
.hc{height:42.816000pt;}
.h5{height:44.620240pt;}
.h2{height:52.330667pt;}
.h10{height:55.384000pt;}
.he{height:55.703243pt;}
.h7{height:72.240000pt;}
.h3{height:74.368672pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x4{left:52.913333pt;}
.x1{left:68.032000pt;}
.x2{left:83.149333pt;}
.x3{left:86.929333pt;}
.x8{left:92.565333pt;}
.x7{left:101.148000pt;}
.x5{left:102.046667pt;}
.x9{left:107.682667pt;}
.x6{left:154.654667pt;}
}




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