
    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_c83b9a340c48943f97870848.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972656;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_342eb42d9b61c4fe46b75a66.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.086000;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_8cfb89baceaaee5f42902614.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128906;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_b7dd7ead1cfefdc1039ad5ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_969516a0b2b0ca7637f59aa7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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:24.000000px;}
.ls3{letter-spacing:-0.528000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017400px;}
.ls2{letter-spacing:0.066000px;}
.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;}
}
.ws2{word-spacing:-21.600000px;}
.ws3{word-spacing:-15.906000px;}
.ws1{word-spacing:-10.116216px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-9.072000px;}
._b{margin-left:-6.720000px;}
._1{margin-left:-5.460000px;}
._4{margin-left:-3.600000px;}
._3{margin-left:-2.592000px;}
._0{margin-left:-1.560000px;}
._7{width:1.512000px;}
._6{width:2.592000px;}
._2{width:3.744000px;}
._5{width:4.896000px;}
._9{width:6.840000px;}
._8{width:8.496000px;}
._a{width:9.720000px;}
._d{width:10.872000px;}
._e{width:11.880000px;}
._13{width:13.014000px;}
._12{width:14.046000px;}
._14{width:17.424000px;}
._11{width:21.048000px;}
._10{width:22.308000px;}
._f{width:30.030000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:23.805000px;}
.y1d{bottom:23.805150px;}
.y7f{bottom:23.805300px;}
.y5a{bottom:50.340300px;}
.y1c{bottom:50.340450px;}
.y7e{bottom:50.340750px;}
.y73{bottom:68.337300px;}
.y36{bottom:68.337450px;}
.y92{bottom:68.337750px;}
.y9e{bottom:124.161600px;}
.yec{bottom:126.483600px;}
.y59{bottom:132.747900px;}
.y91{bottom:138.484050px;}
.y9d{bottom:142.161600px;}
.yd2{bottom:150.489600px;}
.yeb{bottom:151.989600px;}
.y1b{bottom:152.790900px;}
.y58{bottom:158.253900px;}
.y9c{bottom:160.161600px;}
.y90{bottom:163.990050px;}
.yd1{bottom:175.995600px;}
.yea{bottom:177.495600px;}
.y9b{bottom:178.161600px;}
.y57{bottom:183.759900px;}
.y8f{bottom:189.496050px;}
.y9a{bottom:196.161600px;}
.yd0{bottom:201.501600px;}
.ye9{bottom:203.001600px;}
.y1a{bottom:203.784900px;}
.y99{bottom:214.161600px;}
.y8e{bottom:215.002050px;}
.ycf{bottom:227.007600px;}
.y56{bottom:227.265900px;}
.ye8{bottom:228.507600px;}
.y19{bottom:229.290900px;}
.y98{bottom:232.161600px;}
.y8d{bottom:240.508050px;}
.y97{bottom:250.161600px;}
.ye7{bottom:254.013600px;}
.y18{bottom:254.796900px;}
.y8c{bottom:266.014050px;}
.y96{bottom:268.161600px;}
.ya9{bottom:275.661300px;}
.yce{bottom:278.001600px;}
.ye6{bottom:279.519600px;}
.y17{bottom:280.302900px;}
.y55{bottom:288.771900px;}
.ya8{bottom:293.661300px;}
.ycd{bottom:303.507600px;}
.ye5{bottom:305.025600px;}
.y16{bottom:305.808900px;}
.y8b{bottom:309.520050px;}
.ya7{bottom:311.661300px;}
.y54{bottom:314.277900px;}
.ycc{bottom:329.013600px;}
.ya6{bottom:329.661300px;}
.ye4{bottom:330.531600px;}
.y15{bottom:331.314900px;}
.y53{bottom:339.783900px;}
.ya5{bottom:347.661300px;}
.ycb{bottom:354.519600px;}
.ye3{bottom:356.037600px;}
.y14{bottom:356.820900px;}
.y52{bottom:365.289900px;}
.ya4{bottom:365.661300px;}
.y8a{bottom:371.026050px;}
.y13{bottom:382.326900px;}
.ya3{bottom:383.661300px;}
.y51{bottom:390.795900px;}
.y89{bottom:396.532050px;}
.y109{bottom:398.709750px;}
.ye2{bottom:399.543600px;}
.ya2{bottom:401.661300px;}
.yca{bottom:405.513600px;}
.y12{bottom:407.832900px;}
.y50{bottom:416.301900px;}
.y108{bottom:419.103750px;}
.y7d{bottom:419.625300px;}
.ya1{bottom:419.661300px;}
.y88{bottom:422.038050px;}
.yc9{bottom:431.019600px;}
.y11{bottom:433.338900px;}
.ya0{bottom:437.661300px;}
.y4f{bottom:441.807900px;}
.y7c{bottom:445.131300px;}
.y87{bottom:447.508050px;}
.y107{bottom:452.252250px;}
.y9f{bottom:455.661300px;}
.yc8{bottom:456.525600px;}
.y10{bottom:458.844900px;}
.y7b{bottom:470.637300px;}
.y86{bottom:473.014050px;}
.ybc{bottom:479.043600px;}
.yc7{bottom:482.031600px;}
.y35{bottom:484.161450px;}
.yf{bottom:484.350900px;}
.y106{bottom:485.400750px;}
.yd8{bottom:485.661300px;}
.y4e{bottom:492.801900px;}
.y7a{bottom:496.143300px;}
.ybb{bottom:497.043600px;}
.y85{bottom:498.520050px;}
.yd7{bottom:503.661300px;}
.y105{bottom:505.794750px;}
.yc6{bottom:507.537600px;}
.y72{bottom:509.589300px;}
.ye{bottom:509.856900px;}
.yba{bottom:515.043600px;}
.y4d{bottom:518.307900px;}
.y79{bottom:521.649300px;}
.yd6{bottom:521.661300px;}
.y84{bottom:524.026050px;}
.y104{bottom:526.188750px;}
.yb9{bottom:533.043600px;}
.y71{bottom:535.095300px;}
.y34{bottom:535.155450px;}
.yd{bottom:535.362900px;}
.yd5{bottom:539.661300px;}
.y4c{bottom:543.813900px;}
.y78{bottom:547.155300px;}
.y83{bottom:549.532050px;}
.yb8{bottom:551.043600px;}
.yd4{bottom:557.661300px;}
.y103{bottom:559.337250px;}
.y33{bottom:560.553450px;}
.y70{bottom:560.601300px;}
.yc{bottom:560.868900px;}
.yb7{bottom:569.043600px;}
.y4b{bottom:569.319900px;}
.y77{bottom:572.661300px;}
.y82{bottom:575.038050px;}
.yd3{bottom:575.661300px;}
.ye1{bottom:577.161300px;}
.y102{bottom:579.731250px;}
.y32{bottom:586.059450px;}
.y6f{bottom:586.107300px;}
.yb{bottom:586.374900px;}
.yb6{bottom:587.043600px;}
.y4a{bottom:594.825900px;}
.ye0{bottom:595.161300px;}
.y101{bottom:600.125250px;}
.y81{bottom:600.544050px;}
.yb5{bottom:605.043600px;}
.yb3{bottom:610.161300px;}
.y31{bottom:611.565450px;}
.y6e{bottom:611.613300px;}
.ya{bottom:611.880900px;}
.ydf{bottom:613.161300px;}
.y95{bottom:617.661600px;}
.y49{bottom:620.331900px;}
.yb4{bottom:623.043600px;}
.yb2{bottom:628.161300px;}
.yde{bottom:631.161300px;}
.y100{bottom:633.273750px;}
.y94{bottom:635.661600px;}
.y30{bottom:637.071450px;}
.y6d{bottom:637.119300px;}
.y9{bottom:637.386900px;}
.yc5{bottom:641.043600px;}
.y76{bottom:641.661300px;}
.y48{bottom:645.837900px;}
.yb1{bottom:646.161300px;}
.ydd{bottom:649.161300px;}
.y93{bottom:653.661600px;}
.yff{bottom:653.667750px;}
.yc4{bottom:659.043600px;}
.y75{bottom:659.661300px;}
.y2f{bottom:662.577450px;}
.y8{bottom:662.892900px;}
.yb0{bottom:664.161300px;}
.ydc{bottom:667.161300px;}
.y47{bottom:671.343900px;}
.yfe{bottom:674.061750px;}
.yc3{bottom:677.043600px;}
.y80{bottom:677.044050px;}
.y74{bottom:677.661300px;}
.yaf{bottom:682.161300px;}
.ydb{bottom:685.161300px;}
.y2e{bottom:688.083450px;}
.y6c{bottom:688.113300px;}
.y7{bottom:688.398900px;}
.yfd{bottom:694.455750px;}
.yc2{bottom:695.043600px;}
.y46{bottom:696.849900px;}
.yae{bottom:700.161300px;}
.yda{bottom:703.161300px;}
.yc1{bottom:713.043600px;}
.y2d{bottom:713.589450px;}
.y6b{bottom:713.619300px;}
.y6{bottom:713.904900px;}
.yad{bottom:718.161300px;}
.yd9{bottom:721.161300px;}
.y45{bottom:722.355900px;}
.yfc{bottom:727.604250px;}
.yc0{bottom:731.043600px;}
.yac{bottom:736.161300px;}
.y2c{bottom:739.095450px;}
.y6a{bottom:739.125300px;}
.y44{bottom:747.861900px;}
.yfb{bottom:747.998250px;}
.ybf{bottom:749.043600px;}
.yab{bottom:754.161300px;}
.y2b{bottom:764.601450px;}
.y69{bottom:764.631300px;}
.y5{bottom:764.898900px;}
.ybe{bottom:767.043600px;}
.yaa{bottom:772.161300px;}
.yfa{bottom:781.146750px;}
.ybd{bottom:785.043600px;}
.y2a{bottom:790.107450px;}
.y68{bottom:790.137300px;}
.y43{bottom:798.855900px;}
.yf9{bottom:814.295250px;}
.y29{bottom:815.613450px;}
.y67{bottom:815.643300px;}
.y42{bottom:824.361900px;}
.yf8{bottom:834.689250px;}
.y28{bottom:841.119450px;}
.y66{bottom:841.149300px;}
.y41{bottom:849.867900px;}
.y27{bottom:866.625450px;}
.y65{bottom:866.655300px;}
.yf7{bottom:867.837750px;}
.y40{bottom:875.373900px;}
.yf6{bottom:888.231750px;}
.y64{bottom:892.107300px;}
.y26{bottom:892.131450px;}
.y3f{bottom:900.879900px;}
.y63{bottom:917.613300px;}
.y25{bottom:917.637450px;}
.yf5{bottom:921.380250px;}
.y3e{bottom:926.385900px;}
.yf4{bottom:941.774250px;}
.y62{bottom:943.119300px;}
.y24{bottom:943.143450px;}
.y3d{bottom:951.891900px;}
.y61{bottom:968.625300px;}
.y23{bottom:968.649450px;}
.yf3{bottom:974.922750px;}
.y3c{bottom:977.397900px;}
.y60{bottom:994.131300px;}
.y22{bottom:994.155450px;}
.y4{bottom:994.398900px;}
.yf2{bottom:995.316750px;}
.y3b{bottom:1002.903900px;}
.yf1{bottom:1015.710750px;}
.y5f{bottom:1019.637300px;}
.y21{bottom:1019.655450px;}
.y3a{bottom:1028.409900px;}
.y5e{bottom:1045.143300px;}
.y20{bottom:1045.161450px;}
.yf0{bottom:1048.859250px;}
.y39{bottom:1053.915900px;}
.yef{bottom:1069.253250px;}
.y5d{bottom:1070.649300px;}
.y1f{bottom:1070.667450px;}
.y38{bottom:1079.421900px;}
.yee{bottom:1089.647250px;}
.y5c{bottom:1096.155300px;}
.y3{bottom:1096.392900px;}
.y5b{bottom:1121.661300px;}
.y1e{bottom:1121.661450px;}
.y2{bottom:1121.898900px;}
.yed{bottom:1122.795750px;}
.y37{bottom:1122.927900px;}
.h6{height:37.548000px;}
.h2{height:40.816406px;}
.hc{height:42.912000px;}
.h7{height:49.253906px;}
.hf{height:49.918945px;}
.h4{height:54.421875px;}
.he{height:60.199219px;}
.ha{height:64.368000px;}
.h5{height:65.671875px;}
.h8{height:65.695875px;}
.hd{height:65.815875px;}
.hb{height:65.887875px;}
.h9{height:66.103875px;}
.h3{height:69.732000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7{left:-663.595650px;}
.x0{left:0.000000px;}
.x5{left:127.554000px;}
.xb{left:170.086050px;}
.x3{left:212.851350px;}
.x6{left:229.317600px;}
.x9{left:241.472850px;}
.x4{left:258.576000px;}
.x2{left:303.818850px;}
.x8{left:313.733850px;}
.x10{left:365.782650px;}
.xf{left:378.797700px;}
.xa{left:404.752050px;}
.x11{left:407.362050px;}
.x1{left:446.651850px;}
.xc{left:448.385400px;}
.xe{left:510.236100px;}
.xd{left:552.755850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls3{letter-spacing:-0.469333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015467pt;}
.ls2{letter-spacing:0.058667pt;}
.ws2{word-spacing:-19.200000pt;}
.ws3{word-spacing:-14.138667pt;}
.ws1{word-spacing:-8.992192pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-8.064000pt;}
._b{margin-left:-5.973333pt;}
._1{margin-left:-4.853333pt;}
._4{margin-left:-3.200000pt;}
._3{margin-left:-2.304000pt;}
._0{margin-left:-1.386667pt;}
._7{width:1.344000pt;}
._6{width:2.304000pt;}
._2{width:3.328000pt;}
._5{width:4.352000pt;}
._9{width:6.080000pt;}
._8{width:7.552000pt;}
._a{width:8.640000pt;}
._d{width:9.664000pt;}
._e{width:10.560000pt;}
._13{width:11.568000pt;}
._12{width:12.485333pt;}
._14{width:15.488000pt;}
._11{width:18.709333pt;}
._10{width:19.829333pt;}
._f{width:26.693333pt;}
.fs4{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:21.160000pt;}
.y1d{bottom:21.160133pt;}
.y7f{bottom:21.160267pt;}
.y5a{bottom:44.746933pt;}
.y1c{bottom:44.747067pt;}
.y7e{bottom:44.747333pt;}
.y73{bottom:60.744267pt;}
.y36{bottom:60.744400pt;}
.y92{bottom:60.744667pt;}
.y9e{bottom:110.365867pt;}
.yec{bottom:112.429867pt;}
.y59{bottom:117.998133pt;}
.y91{bottom:123.096933pt;}
.y9d{bottom:126.365867pt;}
.yd2{bottom:133.768533pt;}
.yeb{bottom:135.101867pt;}
.y1b{bottom:135.814133pt;}
.y58{bottom:140.670133pt;}
.y9c{bottom:142.365867pt;}
.y90{bottom:145.768933pt;}
.yd1{bottom:156.440533pt;}
.yea{bottom:157.773867pt;}
.y9b{bottom:158.365867pt;}
.y57{bottom:163.342133pt;}
.y8f{bottom:168.440933pt;}
.y9a{bottom:174.365867pt;}
.yd0{bottom:179.112533pt;}
.ye9{bottom:180.445867pt;}
.y1a{bottom:181.142133pt;}
.y99{bottom:190.365867pt;}
.y8e{bottom:191.112933pt;}
.ycf{bottom:201.784533pt;}
.y56{bottom:202.014133pt;}
.ye8{bottom:203.117867pt;}
.y19{bottom:203.814133pt;}
.y98{bottom:206.365867pt;}
.y8d{bottom:213.784933pt;}
.y97{bottom:222.365867pt;}
.ye7{bottom:225.789867pt;}
.y18{bottom:226.486133pt;}
.y8c{bottom:236.456933pt;}
.y96{bottom:238.365867pt;}
.ya9{bottom:245.032267pt;}
.yce{bottom:247.112533pt;}
.ye6{bottom:248.461867pt;}
.y17{bottom:249.158133pt;}
.y55{bottom:256.686133pt;}
.ya8{bottom:261.032267pt;}
.ycd{bottom:269.784533pt;}
.ye5{bottom:271.133867pt;}
.y16{bottom:271.830133pt;}
.y8b{bottom:275.128933pt;}
.ya7{bottom:277.032267pt;}
.y54{bottom:279.358133pt;}
.ycc{bottom:292.456533pt;}
.ya6{bottom:293.032267pt;}
.ye4{bottom:293.805867pt;}
.y15{bottom:294.502133pt;}
.y53{bottom:302.030133pt;}
.ya5{bottom:309.032267pt;}
.ycb{bottom:315.128533pt;}
.ye3{bottom:316.477867pt;}
.y14{bottom:317.174133pt;}
.y52{bottom:324.702133pt;}
.ya4{bottom:325.032267pt;}
.y8a{bottom:329.800933pt;}
.y13{bottom:339.846133pt;}
.ya3{bottom:341.032267pt;}
.y51{bottom:347.374133pt;}
.y89{bottom:352.472933pt;}
.y109{bottom:354.408667pt;}
.ye2{bottom:355.149867pt;}
.ya2{bottom:357.032267pt;}
.yca{bottom:360.456533pt;}
.y12{bottom:362.518133pt;}
.y50{bottom:370.046133pt;}
.y108{bottom:372.536667pt;}
.y7d{bottom:373.000267pt;}
.ya1{bottom:373.032267pt;}
.y88{bottom:375.144933pt;}
.yc9{bottom:383.128533pt;}
.y11{bottom:385.190133pt;}
.ya0{bottom:389.032267pt;}
.y4f{bottom:392.718133pt;}
.y7c{bottom:395.672267pt;}
.y87{bottom:397.784933pt;}
.y107{bottom:402.002000pt;}
.y9f{bottom:405.032267pt;}
.yc8{bottom:405.800533pt;}
.y10{bottom:407.862133pt;}
.y7b{bottom:418.344267pt;}
.y86{bottom:420.456933pt;}
.ybc{bottom:425.816533pt;}
.yc7{bottom:428.472533pt;}
.y35{bottom:430.365733pt;}
.yf{bottom:430.534133pt;}
.y106{bottom:431.467333pt;}
.yd8{bottom:431.698933pt;}
.y4e{bottom:438.046133pt;}
.y7a{bottom:441.016267pt;}
.ybb{bottom:441.816533pt;}
.y85{bottom:443.128933pt;}
.yd7{bottom:447.698933pt;}
.y105{bottom:449.595333pt;}
.yc6{bottom:451.144533pt;}
.y72{bottom:452.968267pt;}
.ye{bottom:453.206133pt;}
.yba{bottom:457.816533pt;}
.y4d{bottom:460.718133pt;}
.y79{bottom:463.688267pt;}
.yd6{bottom:463.698933pt;}
.y84{bottom:465.800933pt;}
.y104{bottom:467.723333pt;}
.yb9{bottom:473.816533pt;}
.y71{bottom:475.640267pt;}
.y34{bottom:475.693733pt;}
.yd{bottom:475.878133pt;}
.yd5{bottom:479.698933pt;}
.y4c{bottom:483.390133pt;}
.y78{bottom:486.360267pt;}
.y83{bottom:488.472933pt;}
.yb8{bottom:489.816533pt;}
.yd4{bottom:495.698933pt;}
.y103{bottom:497.188667pt;}
.y33{bottom:498.269733pt;}
.y70{bottom:498.312267pt;}
.yc{bottom:498.550133pt;}
.yb7{bottom:505.816533pt;}
.y4b{bottom:506.062133pt;}
.y77{bottom:509.032267pt;}
.y82{bottom:511.144933pt;}
.yd3{bottom:511.698933pt;}
.ye1{bottom:513.032267pt;}
.y102{bottom:515.316667pt;}
.y32{bottom:520.941733pt;}
.y6f{bottom:520.984267pt;}
.yb{bottom:521.222133pt;}
.yb6{bottom:521.816533pt;}
.y4a{bottom:528.734133pt;}
.ye0{bottom:529.032267pt;}
.y101{bottom:533.444667pt;}
.y81{bottom:533.816933pt;}
.yb5{bottom:537.816533pt;}
.yb3{bottom:542.365600pt;}
.y31{bottom:543.613733pt;}
.y6e{bottom:543.656267pt;}
.ya{bottom:543.894133pt;}
.ydf{bottom:545.032267pt;}
.y95{bottom:549.032533pt;}
.y49{bottom:551.406133pt;}
.yb4{bottom:553.816533pt;}
.yb2{bottom:558.365600pt;}
.yde{bottom:561.032267pt;}
.y100{bottom:562.910000pt;}
.y94{bottom:565.032533pt;}
.y30{bottom:566.285733pt;}
.y6d{bottom:566.328267pt;}
.y9{bottom:566.566133pt;}
.yc5{bottom:569.816533pt;}
.y76{bottom:570.365600pt;}
.y48{bottom:574.078133pt;}
.yb1{bottom:574.365600pt;}
.ydd{bottom:577.032267pt;}
.y93{bottom:581.032533pt;}
.yff{bottom:581.038000pt;}
.yc4{bottom:585.816533pt;}
.y75{bottom:586.365600pt;}
.y2f{bottom:588.957733pt;}
.y8{bottom:589.238133pt;}
.yb0{bottom:590.365600pt;}
.ydc{bottom:593.032267pt;}
.y47{bottom:596.750133pt;}
.yfe{bottom:599.166000pt;}
.yc3{bottom:601.816533pt;}
.y80{bottom:601.816933pt;}
.y74{bottom:602.365600pt;}
.yaf{bottom:606.365600pt;}
.ydb{bottom:609.032267pt;}
.y2e{bottom:611.629733pt;}
.y6c{bottom:611.656267pt;}
.y7{bottom:611.910133pt;}
.yfd{bottom:617.294000pt;}
.yc2{bottom:617.816533pt;}
.y46{bottom:619.422133pt;}
.yae{bottom:622.365600pt;}
.yda{bottom:625.032267pt;}
.yc1{bottom:633.816533pt;}
.y2d{bottom:634.301733pt;}
.y6b{bottom:634.328267pt;}
.y6{bottom:634.582133pt;}
.yad{bottom:638.365600pt;}
.yd9{bottom:641.032267pt;}
.y45{bottom:642.094133pt;}
.yfc{bottom:646.759333pt;}
.yc0{bottom:649.816533pt;}
.yac{bottom:654.365600pt;}
.y2c{bottom:656.973733pt;}
.y6a{bottom:657.000267pt;}
.y44{bottom:664.766133pt;}
.yfb{bottom:664.887333pt;}
.ybf{bottom:665.816533pt;}
.yab{bottom:670.365600pt;}
.y2b{bottom:679.645733pt;}
.y69{bottom:679.672267pt;}
.y5{bottom:679.910133pt;}
.ybe{bottom:681.816533pt;}
.yaa{bottom:686.365600pt;}
.yfa{bottom:694.352667pt;}
.ybd{bottom:697.816533pt;}
.y2a{bottom:702.317733pt;}
.y68{bottom:702.344267pt;}
.y43{bottom:710.094133pt;}
.yf9{bottom:723.818000pt;}
.y29{bottom:724.989733pt;}
.y67{bottom:725.016267pt;}
.y42{bottom:732.766133pt;}
.yf8{bottom:741.946000pt;}
.y28{bottom:747.661733pt;}
.y66{bottom:747.688267pt;}
.y41{bottom:755.438133pt;}
.y27{bottom:770.333733pt;}
.y65{bottom:770.360267pt;}
.yf7{bottom:771.411333pt;}
.y40{bottom:778.110133pt;}
.yf6{bottom:789.539333pt;}
.y64{bottom:792.984267pt;}
.y26{bottom:793.005733pt;}
.y3f{bottom:800.782133pt;}
.y63{bottom:815.656267pt;}
.y25{bottom:815.677733pt;}
.yf5{bottom:819.004667pt;}
.y3e{bottom:823.454133pt;}
.yf4{bottom:837.132667pt;}
.y62{bottom:838.328267pt;}
.y24{bottom:838.349733pt;}
.y3d{bottom:846.126133pt;}
.y61{bottom:861.000267pt;}
.y23{bottom:861.021733pt;}
.yf3{bottom:866.598000pt;}
.y3c{bottom:868.798133pt;}
.y60{bottom:883.672267pt;}
.y22{bottom:883.693733pt;}
.y4{bottom:883.910133pt;}
.yf2{bottom:884.726000pt;}
.y3b{bottom:891.470133pt;}
.yf1{bottom:902.854000pt;}
.y5f{bottom:906.344267pt;}
.y21{bottom:906.360400pt;}
.y3a{bottom:914.142133pt;}
.y5e{bottom:929.016267pt;}
.y20{bottom:929.032400pt;}
.yf0{bottom:932.319333pt;}
.y39{bottom:936.814133pt;}
.yef{bottom:950.447333pt;}
.y5d{bottom:951.688267pt;}
.y1f{bottom:951.704400pt;}
.y38{bottom:959.486133pt;}
.yee{bottom:968.575333pt;}
.y5c{bottom:974.360267pt;}
.y3{bottom:974.571467pt;}
.y5b{bottom:997.032267pt;}
.y1e{bottom:997.032400pt;}
.y2{bottom:997.243467pt;}
.yed{bottom:998.040667pt;}
.y37{bottom:998.158133pt;}
.h6{height:33.376000pt;}
.h2{height:36.281250pt;}
.hc{height:38.144000pt;}
.h7{height:43.781250pt;}
.hf{height:44.372396pt;}
.h4{height:48.375000pt;}
.he{height:53.510417pt;}
.ha{height:57.216000pt;}
.h5{height:58.375000pt;}
.h8{height:58.396333pt;}
.hd{height:58.503000pt;}
.hb{height:58.567000pt;}
.h9{height:58.759000pt;}
.h3{height:61.984000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7{left:-589.862800pt;}
.x0{left:0.000000pt;}
.x5{left:113.381333pt;}
.xb{left:151.187600pt;}
.x3{left:189.201200pt;}
.x6{left:203.837867pt;}
.x9{left:214.642533pt;}
.x4{left:229.845333pt;}
.x2{left:270.061200pt;}
.x8{left:278.874533pt;}
.x10{left:325.140133pt;}
.xf{left:336.709067pt;}
.xa{left:359.779600pt;}
.x11{left:362.099600pt;}
.x1{left:397.023867pt;}
.xc{left:398.564800pt;}
.xe{left:453.543200pt;}
.xd{left:491.338533pt;}
}




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