
    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_adf26d22758c1f41d22961dc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088000;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_101cf3242937849f1f5fc03a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_8dbcc98ee723b2e708338e61.woff')format("woff");}.ff3{font-family:ff3;line-height:0.878000;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_e3055aa583b033bf96f34140.woff')format("woff");}.ff4{font-family:ff4;line-height:1.007812;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_2350c270d825aba3bdae2905.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.240000px;}
.ls2{letter-spacing:59.640000px;}
.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;}
}
.ws0{word-spacing:-53.760000px;}
.ws4{word-spacing:-34.560000px;}
.ws2{word-spacing:-30.720000px;}
.ws1{word-spacing:-20.160000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-10.920000px;}
._7{margin-left:-7.680000px;}
._d{margin-left:-6.048000px;}
._2{margin-left:-4.872000px;}
._0{margin-left:-3.696000px;}
._4{margin-left:-2.520000px;}
._1{margin-left:-1.512000px;}
._6{width:1.008000px;}
._a{width:2.304000px;}
._5{width:3.528000px;}
._c{width:4.704000px;}
._9{width:6.024000px;}
._b{width:7.032000px;}
._8{width:8.088000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1b{bottom:89.491500px;}
.y6d{bottom:139.291500px;}
.ycb{bottom:140.641500px;}
.y152{bottom:143.641500px;}
.yfb{bottom:149.041500px;}
.yb5{bottom:156.691500px;}
.y6c{bottom:164.041500px;}
.yca{bottom:165.391500px;}
.y151{bottom:168.391500px;}
.yfa{bottom:170.491500px;}
.y51{bottom:178.741500px;}
.yb4{bottom:181.441500px;}
.y81{bottom:181.891500px;}
.y6b{bottom:188.791500px;}
.yf9{bottom:192.091500px;}
.y150{bottom:193.141500px;}
.y50{bottom:203.491500px;}
.yb3{bottom:206.191500px;}
.y80{bottom:206.641500px;}
.y6a{bottom:213.541500px;}
.y14f{bottom:217.891500px;}
.y4f{bottom:228.241500px;}
.y8b{bottom:228.841500px;}
.yb2{bottom:230.941500px;}
.y7f{bottom:231.391500px;}
.y69{bottom:238.291500px;}
.y14e{bottom:242.641500px;}
.y8a{bottom:248.041500px;}
.y130{bottom:248.791500px;}
.y4e{bottom:252.991500px;}
.yb1{bottom:255.691500px;}
.y7e{bottom:256.141500px;}
.yf8{bottom:256.291500px;}
.y68{bottom:263.041500px;}
.y89{bottom:267.241500px;}
.y14d{bottom:267.391500px;}
.y12f{bottom:273.541500px;}
.y4d{bottom:277.741500px;}
.y120{bottom:285.391500px;}
.y14c{bottom:292.141500px;}
.yf7{bottom:293.641500px;}
.ye8{bottom:294.091500px;}
.y7d{bottom:306.841500px;}
.y12e{bottom:308.791500px;}
.y88{bottom:309.241500px;}
.y11f{bottom:310.141500px;}
.y4c{bottom:312.991500px;}
.yf6{bottom:318.391500px;}
.ye7{bottom:318.841500px;}
.y7c{bottom:326.041500px;}
.y14b{bottom:327.391500px;}
.y1a{bottom:332.791500px;}
.y12d{bottom:333.541500px;}
.y11e{bottom:334.891500px;}
.y4b{bottom:337.741500px;}
.yf5{bottom:343.141500px;}
.ye6{bottom:343.591500px;}
.y14a{bottom:352.141500px;}
.y19{bottom:354.391500px;}
.ydb{bottom:358.591500px;}
.y11d{bottom:359.641500px;}
.y87{bottom:359.941500px;}
.y4a{bottom:362.491500px;}
.y7b{bottom:368.041500px;}
.ye5{bottom:368.341500px;}
.yb0{bottom:369.541500px;}
.y18{bottom:375.841500px;}
.y149{bottom:376.891500px;}
.y86{bottom:379.141500px;}
.yda{bottom:383.341500px;}
.y49{bottom:387.241500px;}
.yf4{bottom:387.991500px;}
.yaf{bottom:394.291500px;}
.y17{bottom:397.441500px;}
.y85{bottom:398.341500px;}
.y148{bottom:401.641500px;}
.y11b{bottom:404.491500px;}
.yf3{bottom:409.591500px;}
.y48{bottom:411.991500px;}
.ye4{bottom:413.191500px;}
.y84{bottom:417.541500px;}
.y7a{bottom:418.591500px;}
.y16{bottom:418.891500px;}
.yf2{bottom:431.041500px;}
.y90{bottom:431.191500px;}
.ye3{bottom:434.791500px;}
.y47{bottom:436.741500px;}
.y147{bottom:436.891500px;}
.y11a{bottom:439.741500px;}
.y15{bottom:440.491500px;}
.yd9{bottom:443.341500px;}
.yf1{bottom:452.641500px;}
.y8f{bottom:455.941500px;}
.ye2{bottom:456.241500px;}
.yc9{bottom:457.741500px;}
.y83{bottom:459.541500px;}
.y79{bottom:460.591500px;}
.y146{bottom:461.641500px;}
.y14{bottom:461.941500px;}
.y119{bottom:464.491500px;}
.y46{bottom:471.991500px;}
.y5d{bottom:478.591500px;}
.y8e{bottom:480.691500px;}
.yc8{bottom:482.491500px;}
.y13{bottom:483.541500px;}
.y145{bottom:486.391500px;}
.y118{bottom:489.241500px;}
.ye1{bottom:493.591500px;}
.yf0{bottom:495.391500px;}
.y45{bottom:496.741500px;}
.y5c{bottom:503.341500px;}
.y12{bottom:504.991500px;}
.y8d{bottom:505.441500px;}
.yc7{bottom:507.241500px;}
.y117{bottom:513.991500px;}
.yef{bottom:516.841500px;}
.y44{bottom:521.491500px;}
.y144{bottom:521.641500px;}
.y96{bottom:523.291500px;}
.yd2{bottom:524.041500px;}
.y11{bottom:526.591500px;}
.yc6{bottom:531.991500px;}
.y163{bottom:533.791500px;}
.y8c{bottom:536.791500px;}
.ye0{bottom:538.441500px;}
.y43{bottom:546.241500px;}
.y143{bottom:546.391500px;}
.y10{bottom:548.041500px;}
.yd1{bottom:548.791500px;}
.y116{bottom:549.241500px;}
.y5b{bottom:554.041500px;}
.y162{bottom:558.541500px;}
.yee{bottom:559.891500px;}
.ydf{bottom:560.041500px;}
.y13e{bottom:563.491500px;}
.yc5{bottom:567.241500px;}
.yf{bottom:569.641500px;}
.y142{bottom:571.141500px;}
.y5a{bottom:573.241500px;}
.y12c{bottom:573.841500px;}
.y115{bottom:573.991500px;}
.y42{bottom:581.491500px;}
.yd0{bottom:584.041500px;}
.y13d{bottom:588.241500px;}
.ye{bottom:591.091500px;}
.yc4{bottom:591.991500px;}
.y161{bottom:593.791500px;}
.y141{bottom:595.891500px;}
.yed{bottom:597.241500px;}
.y12b{bottom:598.591500px;}
.y114{bottom:598.741500px;}
.yde{bottom:603.091500px;}
.y41{bottom:606.241500px;}
.ycf{bottom:608.791500px;}
.yd{bottom:612.691500px;}
.y13c{bottom:612.991500px;}
.y59{bottom:615.241500px;}
.yc3{bottom:616.741500px;}
.y160{bottom:618.541500px;}
.y140{bottom:620.641500px;}
.yec{bottom:621.991500px;}
.y12a{bottom:623.341500px;}
.ydd{bottom:624.541500px;}
.y40{bottom:630.991500px;}
.yce{bottom:633.541500px;}
.y113{bottom:633.991500px;}
.yc{bottom:634.141500px;}
.y2f{bottom:634.891500px;}
.yc2{bottom:641.491500px;}
.y15f{bottom:643.291500px;}
.y13f{bottom:645.391500px;}
.ydc{bottom:646.141500px;}
.yeb{bottom:646.741500px;}
.y129{bottom:648.091500px;}
.y13b{bottom:648.241500px;}
.yb{bottom:655.741500px;}
.ycd{bottom:658.291500px;}
.y112{bottom:658.741500px;}
.y2e{bottom:659.641500px;}
.y58{bottom:665.791500px;}
.yc1{bottom:666.241500px;}
.y110{bottom:668.491500px;}
.yea{bottom:671.491500px;}
.y128{bottom:672.841500px;}
.y13a{bottom:672.991500px;}
.y67{bottom:674.341500px;}
.y15e{bottom:678.541500px;}
.ycc{bottom:683.041500px;}
.yae{bottom:683.491500px;}
.y2d{bottom:684.391500px;}
.y57{bottom:684.991500px;}
.ya{bottom:687.691500px;}
.y3f{bottom:690.991500px;}
.y10f{bottom:693.241500px;}
.ye9{bottom:696.241500px;}
.y139{bottom:697.741500px;}
.y66{bottom:699.091500px;}
.y82{bottom:700.291500px;}
.yc0{bottom:701.491500px;}
.y15d{bottom:703.291500px;}
.y127{bottom:708.091500px;}
.yad{bottom:708.241500px;}
.y2c{bottom:709.141500px;}
.y3e{bottom:715.741500px;}
.y78{bottom:716.191500px;}
.y138{bottom:722.491500px;}
.y65{bottom:723.841500px;}
.y9f{bottom:724.741500px;}
.ybf{bottom:726.241500px;}
.y56{bottom:726.991500px;}
.y15c{bottom:728.041500px;}
.y10e{bottom:728.491500px;}
.y126{bottom:732.841500px;}
.yac{bottom:732.991500px;}
.y2b{bottom:733.891500px;}
.yd8{bottom:737.191500px;}
.y3d{bottom:740.491500px;}
.y77{bottom:740.941500px;}
.y137{bottom:747.241500px;}
.y64{bottom:748.591500px;}
.y9e{bottom:749.491500px;}
.ybe{bottom:750.991500px;}
.y55{bottom:751.741500px;}
.y10d{bottom:753.241500px;}
.y125{bottom:757.591500px;}
.yab{bottom:757.741500px;}
.y15b{bottom:763.291500px;}
.y3c{bottom:765.241500px;}
.y76{bottom:765.691500px;}
.y2a{bottom:769.141500px;}
.y63{bottom:773.341500px;}
.ybd{bottom:775.741500px;}
.y54{bottom:776.491500px;}
.y10c{bottom:777.991500px;}
.y124{bottom:782.341500px;}
.yaa{bottom:782.491500px;}
.y9d{bottom:784.741500px;}
.y15a{bottom:788.041500px;}
.y3b{bottom:789.991500px;}
.y75{bottom:790.441500px;}
.y29{bottom:793.891500px;}
.ybc{bottom:800.491500px;}
.y10b{bottom:802.741500px;}
.y123{bottom:807.091500px;}
.y136{bottom:807.241500px;}
.y9c{bottom:809.491500px;}
.y159{bottom:812.791500px;}
.y3a{bottom:814.741500px;}
.y11c{bottom:815.191500px;}
.y9{bottom:817.141500px;}
.ya9{bottom:817.741500px;}
.y28{bottom:818.641500px;}
.y74{bottom:821.641500px;}
.ybb{bottom:825.241500px;}
.y10a{bottom:827.491500px;}
.y135{bottom:831.991500px;}
.y9b{bottom:834.241500px;}
.y158{bottom:837.541500px;}
.y8{bottom:841.891500px;}
.y122{bottom:842.341500px;}
.ya8{bottom:842.491500px;}
.y27{bottom:843.391500px;}
.y39{bottom:849.991500px;}
.y109{bottom:852.241500px;}
.y134{bottom:856.741500px;}
.y9a{bottom:858.991500px;}
.y157{bottom:862.291500px;}
.y121{bottom:867.091500px;}
.ya7{bottom:867.241500px;}
.y26{bottom:868.141500px;}
.y38{bottom:874.741500px;}
.y108{bottom:876.991500px;}
.y7{bottom:877.141500px;}
.yd7{bottom:880.441500px;}
.y133{bottom:881.491500px;}
.y99{bottom:883.741500px;}
.y111{bottom:891.991500px;}
.y25{bottom:892.891500px;}
.y37{bottom:899.491500px;}
.ya6{bottom:902.491500px;}
.y156{bottom:905.041500px;}
.y98{bottom:908.491500px;}
.y132{bottom:916.741500px;}
.yba{bottom:916.891500px;}
.y24{bottom:917.641500px;}
.y107{bottom:921.841500px;}
.yd6{bottom:923.191500px;}
.y36{bottom:924.241500px;}
.y155{bottom:926.641500px;}
.ya5{bottom:927.241500px;}
.y97{bottom:933.241500px;}
.y73{bottom:934.741500px;}
.y131{bottom:941.491500px;}
.yb9{bottom:941.641500px;}
.y23{bottom:942.391500px;}
.y106{bottom:943.291500px;}
.yd5{bottom:944.791500px;}
.y6{bottom:947.641500px;}
.y154{bottom:948.091500px;}
.ya4{bottom:951.991500px;}
.y35{bottom:959.491500px;}
.y105{bottom:964.891500px;}
.yd4{bottom:966.241500px;}
.y72{bottom:966.391500px;}
.y153{bottom:969.691500px;}
.ya3{bottom:976.741500px;}
.yb8{bottom:976.891500px;}
.y22{bottom:977.641500px;}
.y5{bottom:982.891500px;}
.y34{bottom:984.241500px;}
.y104{bottom:986.341500px;}
.y71{bottom:991.141500px;}
.ya2{bottom:1001.491500px;}
.yb7{bottom:1001.641500px;}
.y21{bottom:1002.391500px;}
.y103{bottom:1007.941500px;}
.y33{bottom:1008.991500px;}
.y62{bottom:1012.141500px;}
.y4{bottom:1019.491500px;}
.yd3{bottom:1026.241500px;}
.y70{bottom:1026.391500px;}
.y20{bottom:1027.141500px;}
.y95{bottom:1027.591500px;}
.y102{bottom:1029.391500px;}
.y32{bottom:1033.741500px;}
.ya1{bottom:1036.741500px;}
.y61{bottom:1036.891500px;}
.y101{bottom:1050.991500px;}
.y6f{bottom:1051.141500px;}
.y1f{bottom:1051.891500px;}
.y94{bottom:1052.341500px;}
.y60{bottom:1061.641500px;}
.y31{bottom:1068.991500px;}
.ya0{bottom:1069.441500px;}
.y3{bottom:1069.741500px;}
.y100{bottom:1072.441500px;}
.y6e{bottom:1075.891500px;}
.y1e{bottom:1076.641500px;}
.y93{bottom:1077.091500px;}
.y5f{bottom:1086.391500px;}
.yff{bottom:1094.041500px;}
.yb6{bottom:1100.641500px;}
.y1d{bottom:1101.391500px;}
.y30{bottom:1101.841500px;}
.y5e{bottom:1111.141500px;}
.yfe{bottom:1115.491500px;}
.y2{bottom:1119.991500px;}
.y92{bottom:1126.591500px;}
.y1c{bottom:1134.091500px;}
.y53{bottom:1135.891500px;}
.yfd{bottom:1137.091500px;}
.y91{bottom:1157.791500px;}
.yfc{bottom:1158.541500px;}
.y52{bottom:1160.641500px;}
.h4{height:51.480000px;}
.h6{height:51.552000px;}
.h9{height:52.787109px;}
.h5{height:63.720000px;}
.ha{height:74.340000px;}
.h7{height:84.960000px;}
.h8{height:95.580000px;}
.h3{height:148.680000px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:85.200000px;}
.xb{left:93.750000px;}
.xa{left:106.500000px;}
.x7{left:108.150000px;}
.x2{left:111.000000px;}
.xd{left:117.150000px;}
.x1{left:120.750000px;}
.xc{left:127.800000px;}
.xe{left:138.450000px;}
.x8{left:145.050000px;}
.x3{left:338.850000px;}
.x5{left:351.750000px;}
.x6{left:359.850000px;}
.x4{left:378.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls2{letter-spacing:53.013333pt;}
.ws0{word-spacing:-47.786667pt;}
.ws4{word-spacing:-30.720000pt;}
.ws2{word-spacing:-27.306667pt;}
.ws1{word-spacing:-17.920000pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-9.706667pt;}
._7{margin-left:-6.826667pt;}
._d{margin-left:-5.376000pt;}
._2{margin-left:-4.330667pt;}
._0{margin-left:-3.285333pt;}
._4{margin-left:-2.240000pt;}
._1{margin-left:-1.344000pt;}
._6{width:0.896000pt;}
._a{width:2.048000pt;}
._5{width:3.136000pt;}
._c{width:4.181333pt;}
._9{width:5.354667pt;}
._b{width:6.250667pt;}
._8{width:7.189333pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1b{bottom:79.548000pt;}
.y6d{bottom:123.814667pt;}
.ycb{bottom:125.014667pt;}
.y152{bottom:127.681333pt;}
.yfb{bottom:132.481333pt;}
.yb5{bottom:139.281333pt;}
.y6c{bottom:145.814667pt;}
.yca{bottom:147.014667pt;}
.y151{bottom:149.681333pt;}
.yfa{bottom:151.548000pt;}
.y51{bottom:158.881333pt;}
.yb4{bottom:161.281333pt;}
.y81{bottom:161.681333pt;}
.y6b{bottom:167.814667pt;}
.yf9{bottom:170.748000pt;}
.y150{bottom:171.681333pt;}
.y50{bottom:180.881333pt;}
.yb3{bottom:183.281333pt;}
.y80{bottom:183.681333pt;}
.y6a{bottom:189.814667pt;}
.y14f{bottom:193.681333pt;}
.y4f{bottom:202.881333pt;}
.y8b{bottom:203.414667pt;}
.yb2{bottom:205.281333pt;}
.y7f{bottom:205.681333pt;}
.y69{bottom:211.814667pt;}
.y14e{bottom:215.681333pt;}
.y8a{bottom:220.481333pt;}
.y130{bottom:221.148000pt;}
.y4e{bottom:224.881333pt;}
.yb1{bottom:227.281333pt;}
.y7e{bottom:227.681333pt;}
.yf8{bottom:227.814667pt;}
.y68{bottom:233.814667pt;}
.y89{bottom:237.548000pt;}
.y14d{bottom:237.681333pt;}
.y12f{bottom:243.148000pt;}
.y4d{bottom:246.881333pt;}
.y120{bottom:253.681333pt;}
.y14c{bottom:259.681333pt;}
.yf7{bottom:261.014667pt;}
.ye8{bottom:261.414667pt;}
.y7d{bottom:272.748000pt;}
.y12e{bottom:274.481333pt;}
.y88{bottom:274.881333pt;}
.y11f{bottom:275.681333pt;}
.y4c{bottom:278.214667pt;}
.yf6{bottom:283.014667pt;}
.ye7{bottom:283.414667pt;}
.y7c{bottom:289.814667pt;}
.y14b{bottom:291.014667pt;}
.y1a{bottom:295.814667pt;}
.y12d{bottom:296.481333pt;}
.y11e{bottom:297.681333pt;}
.y4b{bottom:300.214667pt;}
.yf5{bottom:305.014667pt;}
.ye6{bottom:305.414667pt;}
.y14a{bottom:313.014667pt;}
.y19{bottom:315.014667pt;}
.ydb{bottom:318.748000pt;}
.y11d{bottom:319.681333pt;}
.y87{bottom:319.948000pt;}
.y4a{bottom:322.214667pt;}
.y7b{bottom:327.148000pt;}
.ye5{bottom:327.414667pt;}
.yb0{bottom:328.481333pt;}
.y18{bottom:334.081333pt;}
.y149{bottom:335.014667pt;}
.y86{bottom:337.014667pt;}
.yda{bottom:340.748000pt;}
.y49{bottom:344.214667pt;}
.yf4{bottom:344.881333pt;}
.yaf{bottom:350.481333pt;}
.y17{bottom:353.281333pt;}
.y85{bottom:354.081333pt;}
.y148{bottom:357.014667pt;}
.y11b{bottom:359.548000pt;}
.yf3{bottom:364.081333pt;}
.y48{bottom:366.214667pt;}
.ye4{bottom:367.281333pt;}
.y84{bottom:371.148000pt;}
.y7a{bottom:372.081333pt;}
.y16{bottom:372.348000pt;}
.yf2{bottom:383.148000pt;}
.y90{bottom:383.281333pt;}
.ye3{bottom:386.481333pt;}
.y47{bottom:388.214667pt;}
.y147{bottom:388.348000pt;}
.y11a{bottom:390.881333pt;}
.y15{bottom:391.548000pt;}
.yd9{bottom:394.081333pt;}
.yf1{bottom:402.348000pt;}
.y8f{bottom:405.281333pt;}
.ye2{bottom:405.548000pt;}
.yc9{bottom:406.881333pt;}
.y83{bottom:408.481333pt;}
.y79{bottom:409.414667pt;}
.y146{bottom:410.348000pt;}
.y14{bottom:410.614667pt;}
.y119{bottom:412.881333pt;}
.y46{bottom:419.548000pt;}
.y5d{bottom:425.414667pt;}
.y8e{bottom:427.281333pt;}
.yc8{bottom:428.881333pt;}
.y13{bottom:429.814667pt;}
.y145{bottom:432.348000pt;}
.y118{bottom:434.881333pt;}
.ye1{bottom:438.748000pt;}
.yf0{bottom:440.348000pt;}
.y45{bottom:441.548000pt;}
.y5c{bottom:447.414667pt;}
.y12{bottom:448.881333pt;}
.y8d{bottom:449.281333pt;}
.yc7{bottom:450.881333pt;}
.y117{bottom:456.881333pt;}
.yef{bottom:459.414667pt;}
.y44{bottom:463.548000pt;}
.y144{bottom:463.681333pt;}
.y96{bottom:465.148000pt;}
.yd2{bottom:465.814667pt;}
.y11{bottom:468.081333pt;}
.yc6{bottom:472.881333pt;}
.y163{bottom:474.481333pt;}
.y8c{bottom:477.148000pt;}
.ye0{bottom:478.614667pt;}
.y43{bottom:485.548000pt;}
.y143{bottom:485.681333pt;}
.y10{bottom:487.148000pt;}
.yd1{bottom:487.814667pt;}
.y116{bottom:488.214667pt;}
.y5b{bottom:492.481333pt;}
.y162{bottom:496.481333pt;}
.yee{bottom:497.681333pt;}
.ydf{bottom:497.814667pt;}
.y13e{bottom:500.881333pt;}
.yc5{bottom:504.214667pt;}
.yf{bottom:506.348000pt;}
.y142{bottom:507.681333pt;}
.y5a{bottom:509.548000pt;}
.y12c{bottom:510.081333pt;}
.y115{bottom:510.214667pt;}
.y42{bottom:516.881333pt;}
.yd0{bottom:519.148000pt;}
.y13d{bottom:522.881333pt;}
.ye{bottom:525.414667pt;}
.yc4{bottom:526.214667pt;}
.y161{bottom:527.814667pt;}
.y141{bottom:529.681333pt;}
.yed{bottom:530.881333pt;}
.y12b{bottom:532.081333pt;}
.y114{bottom:532.214667pt;}
.yde{bottom:536.081333pt;}
.y41{bottom:538.881333pt;}
.ycf{bottom:541.148000pt;}
.yd{bottom:544.614667pt;}
.y13c{bottom:544.881333pt;}
.y59{bottom:546.881333pt;}
.yc3{bottom:548.214667pt;}
.y160{bottom:549.814667pt;}
.y140{bottom:551.681333pt;}
.yec{bottom:552.881333pt;}
.y12a{bottom:554.081333pt;}
.ydd{bottom:555.148000pt;}
.y40{bottom:560.881333pt;}
.yce{bottom:563.148000pt;}
.y113{bottom:563.548000pt;}
.yc{bottom:563.681333pt;}
.y2f{bottom:564.348000pt;}
.yc2{bottom:570.214667pt;}
.y15f{bottom:571.814667pt;}
.y13f{bottom:573.681333pt;}
.ydc{bottom:574.348000pt;}
.yeb{bottom:574.881333pt;}
.y129{bottom:576.081333pt;}
.y13b{bottom:576.214667pt;}
.yb{bottom:582.881333pt;}
.ycd{bottom:585.148000pt;}
.y112{bottom:585.548000pt;}
.y2e{bottom:586.348000pt;}
.y58{bottom:591.814667pt;}
.yc1{bottom:592.214667pt;}
.y110{bottom:594.214667pt;}
.yea{bottom:596.881333pt;}
.y128{bottom:598.081333pt;}
.y13a{bottom:598.214667pt;}
.y67{bottom:599.414667pt;}
.y15e{bottom:603.148000pt;}
.ycc{bottom:607.148000pt;}
.yae{bottom:607.548000pt;}
.y2d{bottom:608.348000pt;}
.y57{bottom:608.881333pt;}
.ya{bottom:611.281333pt;}
.y3f{bottom:614.214667pt;}
.y10f{bottom:616.214667pt;}
.ye9{bottom:618.881333pt;}
.y139{bottom:620.214667pt;}
.y66{bottom:621.414667pt;}
.y82{bottom:622.481333pt;}
.yc0{bottom:623.548000pt;}
.y15d{bottom:625.148000pt;}
.y127{bottom:629.414667pt;}
.yad{bottom:629.548000pt;}
.y2c{bottom:630.348000pt;}
.y3e{bottom:636.214667pt;}
.y78{bottom:636.614667pt;}
.y138{bottom:642.214667pt;}
.y65{bottom:643.414667pt;}
.y9f{bottom:644.214667pt;}
.ybf{bottom:645.548000pt;}
.y56{bottom:646.214667pt;}
.y15c{bottom:647.148000pt;}
.y10e{bottom:647.548000pt;}
.y126{bottom:651.414667pt;}
.yac{bottom:651.548000pt;}
.y2b{bottom:652.348000pt;}
.yd8{bottom:655.281333pt;}
.y3d{bottom:658.214667pt;}
.y77{bottom:658.614667pt;}
.y137{bottom:664.214667pt;}
.y64{bottom:665.414667pt;}
.y9e{bottom:666.214667pt;}
.ybe{bottom:667.548000pt;}
.y55{bottom:668.214667pt;}
.y10d{bottom:669.548000pt;}
.y125{bottom:673.414667pt;}
.yab{bottom:673.548000pt;}
.y15b{bottom:678.481333pt;}
.y3c{bottom:680.214667pt;}
.y76{bottom:680.614667pt;}
.y2a{bottom:683.681333pt;}
.y63{bottom:687.414667pt;}
.ybd{bottom:689.548000pt;}
.y54{bottom:690.214667pt;}
.y10c{bottom:691.548000pt;}
.y124{bottom:695.414667pt;}
.yaa{bottom:695.548000pt;}
.y9d{bottom:697.548000pt;}
.y15a{bottom:700.481333pt;}
.y3b{bottom:702.214667pt;}
.y75{bottom:702.614667pt;}
.y29{bottom:705.681333pt;}
.ybc{bottom:711.548000pt;}
.y10b{bottom:713.548000pt;}
.y123{bottom:717.414667pt;}
.y136{bottom:717.548000pt;}
.y9c{bottom:719.548000pt;}
.y159{bottom:722.481333pt;}
.y3a{bottom:724.214667pt;}
.y11c{bottom:724.614667pt;}
.y9{bottom:726.348000pt;}
.ya9{bottom:726.881333pt;}
.y28{bottom:727.681333pt;}
.y74{bottom:730.348000pt;}
.ybb{bottom:733.548000pt;}
.y10a{bottom:735.548000pt;}
.y135{bottom:739.548000pt;}
.y9b{bottom:741.548000pt;}
.y158{bottom:744.481333pt;}
.y8{bottom:748.348000pt;}
.y122{bottom:748.748000pt;}
.ya8{bottom:748.881333pt;}
.y27{bottom:749.681333pt;}
.y39{bottom:755.548000pt;}
.y109{bottom:757.548000pt;}
.y134{bottom:761.548000pt;}
.y9a{bottom:763.548000pt;}
.y157{bottom:766.481333pt;}
.y121{bottom:770.748000pt;}
.ya7{bottom:770.881333pt;}
.y26{bottom:771.681333pt;}
.y38{bottom:777.548000pt;}
.y108{bottom:779.548000pt;}
.y7{bottom:779.681333pt;}
.yd7{bottom:782.614667pt;}
.y133{bottom:783.548000pt;}
.y99{bottom:785.548000pt;}
.y111{bottom:792.881333pt;}
.y25{bottom:793.681333pt;}
.y37{bottom:799.548000pt;}
.ya6{bottom:802.214667pt;}
.y156{bottom:804.481333pt;}
.y98{bottom:807.548000pt;}
.y132{bottom:814.881333pt;}
.yba{bottom:815.014667pt;}
.y24{bottom:815.681333pt;}
.y107{bottom:819.414667pt;}
.yd6{bottom:820.614667pt;}
.y36{bottom:821.548000pt;}
.y155{bottom:823.681333pt;}
.ya5{bottom:824.214667pt;}
.y97{bottom:829.548000pt;}
.y73{bottom:830.881333pt;}
.y131{bottom:836.881333pt;}
.yb9{bottom:837.014667pt;}
.y23{bottom:837.681333pt;}
.y106{bottom:838.481333pt;}
.yd5{bottom:839.814667pt;}
.y6{bottom:842.348000pt;}
.y154{bottom:842.748000pt;}
.ya4{bottom:846.214667pt;}
.y35{bottom:852.881333pt;}
.y105{bottom:857.681333pt;}
.yd4{bottom:858.881333pt;}
.y72{bottom:859.014667pt;}
.y153{bottom:861.948000pt;}
.ya3{bottom:868.214667pt;}
.yb8{bottom:868.348000pt;}
.y22{bottom:869.014667pt;}
.y5{bottom:873.681333pt;}
.y34{bottom:874.881333pt;}
.y104{bottom:876.748000pt;}
.y71{bottom:881.014667pt;}
.ya2{bottom:890.214667pt;}
.yb7{bottom:890.348000pt;}
.y21{bottom:891.014667pt;}
.y103{bottom:895.948000pt;}
.y33{bottom:896.881333pt;}
.y62{bottom:899.681333pt;}
.y4{bottom:906.214667pt;}
.yd3{bottom:912.214667pt;}
.y70{bottom:912.348000pt;}
.y20{bottom:913.014667pt;}
.y95{bottom:913.414667pt;}
.y102{bottom:915.014667pt;}
.y32{bottom:918.881333pt;}
.ya1{bottom:921.548000pt;}
.y61{bottom:921.681333pt;}
.y101{bottom:934.214667pt;}
.y6f{bottom:934.348000pt;}
.y1f{bottom:935.014667pt;}
.y94{bottom:935.414667pt;}
.y60{bottom:943.681333pt;}
.y31{bottom:950.214667pt;}
.ya0{bottom:950.614667pt;}
.y3{bottom:950.881333pt;}
.y100{bottom:953.281333pt;}
.y6e{bottom:956.348000pt;}
.y1e{bottom:957.014667pt;}
.y93{bottom:957.414667pt;}
.y5f{bottom:965.681333pt;}
.yff{bottom:972.481333pt;}
.yb6{bottom:978.348000pt;}
.y1d{bottom:979.014667pt;}
.y30{bottom:979.414667pt;}
.y5e{bottom:987.681333pt;}
.yfe{bottom:991.548000pt;}
.y2{bottom:995.548000pt;}
.y92{bottom:1001.414667pt;}
.y1c{bottom:1008.081333pt;}
.y53{bottom:1009.681333pt;}
.yfd{bottom:1010.748000pt;}
.y91{bottom:1029.148000pt;}
.yfc{bottom:1029.814667pt;}
.y52{bottom:1031.681333pt;}
.h4{height:45.760000pt;}
.h6{height:45.824000pt;}
.h9{height:46.921875pt;}
.h5{height:56.640000pt;}
.ha{height:66.080000pt;}
.h7{height:75.520000pt;}
.h8{height:84.960000pt;}
.h3{height:132.160000pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:75.733333pt;}
.xb{left:83.333333pt;}
.xa{left:94.666667pt;}
.x7{left:96.133333pt;}
.x2{left:98.666667pt;}
.xd{left:104.133333pt;}
.x1{left:107.333333pt;}
.xc{left:113.600000pt;}
.xe{left:123.066667pt;}
.x8{left:128.933333pt;}
.x3{left:301.200000pt;}
.x5{left:312.666667pt;}
.x6{left:319.866667pt;}
.x4{left:336.666667pt;}
}




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