
    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_a5881354dbc210037d7cb68c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_28f62b7d6195d03b23121b63.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_de97f9895e01a18bc8870cf7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_784dccdd5acd46c51175ffd2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_53a14b0f783d30c9f17521a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_29951d957f838f55b9e794ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_e44b650cd9a142798e7e8acc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.781250;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_3ffa73833762090b1e63707d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.592000;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_82423882f58b7ccdf4c2ff7a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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:ffa;src:url('chunks/assets/font_deaaa08ec050861c5074ceaf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.241503,0.000000,-0.064716,0.241478,0,0);-ms-transform:matrix(0.241503,0.000000,-0.064716,0.241478,0,0);-webkit-transform:matrix(0.241503,0.000000,-0.064716,0.241478,0,0);}
.m0{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:70.560000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.775129px;}
.ls3{letter-spacing:0.775729px;}
.ls1{letter-spacing:1.427305px;}
.ls2{letter-spacing:38.864162px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-119.520000px;}
.ws6{word-spacing:-53.239680px;}
.ws7{word-spacing:-45.504000px;}
.wsa{word-spacing:-39.101139px;}
.wsb{word-spacing:-37.768320px;}
.ws1{word-spacing:-30.487301px;}
.wsd{word-spacing:-23.218560px;}
.ws9{word-spacing:-19.111680px;}
.ws4{word-spacing:-6.558043px;}
.wsc{word-spacing:-0.221532px;}
.ws5{word-spacing:-0.059035px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:0.297795px;}
.ws2{word-spacing:0.318529px;}
._2{margin-left:-3.808800px;}
._4{margin-left:-2.390400px;}
._1{margin-left:-1.195200px;}
._0{width:1.792800px;}
._a{width:2.817960px;}
._3{width:3.861089px;}
._5{width:12.930941px;}
._7{width:31.353150px;}
._c{width:36.631448px;}
._6{width:38.811169px;}
._9{width:40.250425px;}
._8{width:45.599054px;}
._d{width:607.417935px;}
._b{width:2403.698152px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.520000px;}
.fs9{font-size:54.719400px;}
.fs8{font-size:60.480000px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:83.520000px;}
.fs5{font-size:96.478800px;}
.fs0{font-size:119.520000px;}
.fs7{font-size:123.737781px;}
.fs1{font-size:144.000000px;}
.fs6{font-size:168.480000px;}
.fs4{font-size:191.520000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:6.480000px;}
.y76{bottom:46.080000px;}
.y95{bottom:49.680000px;}
.y75{bottom:61.560000px;}
.y9{bottom:64.080000px;}
.y8{bottom:78.480000px;}
.ycf{bottom:84.960000px;}
.y94{bottom:86.040000px;}
.y93{bottom:86.400000px;}
.yf6{bottom:91.440000px;}
.yf3{bottom:97.200000px;}
.y57{bottom:100.439850px;}
.ye3{bottom:104.040000px;}
.y92{bottom:104.400000px;}
.y8a{bottom:109.439850px;}
.yf5{bottom:127.439850px;}
.yf2{bottom:133.200000px;}
.y56{bottom:136.439850px;}
.ye2{bottom:140.040000px;}
.y96{bottom:144.000000px;}
.y89{bottom:145.439850px;}
.y1c{bottom:145.800000px;}
.ybb{bottom:154.440000px;}
.y6b{bottom:163.440000px;}
.yd2{bottom:165.600000px;}
.yf1{bottom:169.200000px;}
.y55{bottom:172.440000px;}
.y79{bottom:176.040000px;}
.y41{bottom:181.080000px;}
.y88{bottom:181.440000px;}
.yb9{bottom:190.440000px;}
.y30{bottom:190.800000px;}
.y6a{bottom:199.440000px;}
.y13{bottom:201.240000px;}
.y40{bottom:202.680000px;}
.y73{bottom:203.040000px;}
.yf0{bottom:205.200000px;}
.y54{bottom:208.440000px;}
.yaa{bottom:210.240000px;}
.y59{bottom:212.040000px;}
.yd1{bottom:215.640000px;}
.yd5{bottom:216.360000px;}
.y87{bottom:217.440000px;}
.y1b{bottom:217.800000px;}
.y77{bottom:221.040000px;}
.y3f{bottom:224.280000px;}
.yb8{bottom:226.440000px;}
.y2f{bottom:226.800000px;}
.y58{bottom:230.040000px;}
.y69{bottom:235.440000px;}
.yd0{bottom:240.840000px;}
.yd4{bottom:241.560000px;}
.y53{bottom:244.440000px;}
.y3e{bottom:245.880000px;}
.ya9{bottom:246.240000px;}
.ye1{bottom:248.040000px;}
.y7{bottom:250.200000px;}
.y86{bottom:253.440000px;}
.y1a{bottom:253.800000px;}
.yb7{bottom:262.440000px;}
.y2e{bottom:262.800000px;}
.y6d{bottom:265.320000px;}
.yd3{bottom:266.400000px;}
.y3d{bottom:267.480000px;}
.y68{bottom:271.440000px;}
.y12{bottom:273.240000px;}
.y8d{bottom:275.040000px;}
.yef{bottom:277.200000px;}
.y52{bottom:280.440000px;}
.ya8{bottom:282.240000px;}
.y6c{bottom:283.320000px;}
.ye0{bottom:284.040000px;}
.y85{bottom:289.440000px;}
.y8c{bottom:293.040000px;}
.ycd{bottom:298.440000px;}
.y2d{bottom:300.600000px;}
.y67{bottom:307.440000px;}
.ycc{bottom:308.160000px;}
.y8b{bottom:311.040000px;}
.yee{bottom:313.200000px;}
.y51{bottom:316.440000px;}
.ya7{bottom:318.240000px;}
.ydf{bottom:320.040000px;}
.y84{bottom:325.440000px;}
.y19{bottom:325.800000px;}
.y22{bottom:331.200000px;}
.ycb{bottom:333.360000px;}
.yb6{bottom:334.440000px;}
.y74{bottom:338.040000px;}
.y2c{bottom:342.000000px;}
.y66{bottom:343.440000px;}
.y11{bottom:345.240000px;}
.yed{bottom:349.200000px;}
.y50{bottom:352.440000px;}
.ya6{bottom:354.240000px;}
.yde{bottom:356.040000px;}
.yca{bottom:358.560000px;}
.y83{bottom:361.440000px;}
.yba{bottom:370.440000px;}
.y65{bottom:379.440000px;}
.y2b{bottom:379.800000px;}
.y10{bottom:381.240000px;}
.yc9{bottom:383.400000px;}
.yec{bottom:385.200000px;}
.y6{bottom:386.280000px;}
.y4f{bottom:388.440000px;}
.y3c{bottom:388.800000px;}
.ya5{bottom:390.240000px;}
.ydd{bottom:392.040000px;}
.y72{bottom:392.400000px;}
.y82{bottom:397.440000px;}
.y46{bottom:398.880000px;}
.y18{bottom:399.600000px;}
.yc2{bottom:401.040000px;}
.y21{bottom:403.200000px;}
.yb5{bottom:406.440000px;}
.y71{bottom:410.400000px;}
.y64{bottom:415.440000px;}
.y5{bottom:421.200000px;}
.y4e{bottom:424.440000px;}
.ydc{bottom:428.040000px;}
.yce{bottom:428.400000px;}
.y3b{bottom:430.200000px;}
.y81{bottom:433.440000px;}
.yc1{bottom:437.040000px;}
.y91{bottom:441.000000px;}
.y45{bottom:442.080000px;}
.yb4{bottom:442.440000px;}
.y78{bottom:446.400000px;}
.y63{bottom:451.440000px;}
.yf{bottom:453.240000px;}
.y4{bottom:457.200000px;}
.y90{bottom:459.000000px;}
.y4d{bottom:460.440000px;}
.ya4{bottom:462.240000px;}
.ydb{bottom:464.040000px;}
.y3a{bottom:466.200000px;}
.y80{bottom:469.440000px;}
.yc0{bottom:473.040000px;}
.y20{bottom:475.200000px;}
.yb3{bottom:478.440000px;}
.yc8{bottom:480.600000px;}
.y44{bottom:485.280000px;}
.y17{bottom:486.000000px;}
.y62{bottom:487.440000px;}
.yeb{bottom:493.200000px;}
.y4c{bottom:496.440000px;}
.y26{bottom:496.800000px;}
.ya3{bottom:498.240000px;}
.yf7{bottom:498.960000px;}
.yda{bottom:500.040000px;}
.y39{bottom:502.200000px;}
.y7f{bottom:505.440000px;}
.yc7{bottom:505.800000px;}
.y9d{bottom:507.240000px;}
.ybf{bottom:509.040000px;}
.yb2{bottom:514.440000px;}
.y3{bottom:523.080000px;}
.y61{bottom:523.440000px;}
.ye{bottom:525.240000px;}
.yfa{bottom:527.040000px;}
.y43{bottom:528.480000px;}
.y16{bottom:529.200000px;}
.yc6{bottom:530.640000px;}
.y2a{bottom:531.000000px;}
.y4b{bottom:532.440000px;}
.y25{bottom:532.800000px;}
.ya2{bottom:534.240000px;}
.yd9{bottom:536.040000px;}
.y38{bottom:538.200000px;}
.y7e{bottom:541.440000px;}
.y9c{bottom:543.240000px;}
.y9e{bottom:545.040000px;}
.y1f{bottom:547.200000px;}
.yb1{bottom:550.440000px;}
.yfc{bottom:554.040000px;}
.y32{bottom:555.840000px;}
.y60{bottom:559.440000px;}
.yd{bottom:561.240000px;}
.ye6{bottom:561.960000px;}
.yf9{bottom:563.040000px;}
.y8f{bottom:568.440000px;}
.yf4{bottom:570.240000px;}
.y24{bottom:570.600000px;}
.yd8{bottom:572.040000px;}
.y15{bottom:572.400000px;}
.y37{bottom:574.200000px;}
.y7d{bottom:577.440000px;}
.y9b{bottom:579.240000px;}
.yb0{bottom:586.440000px;}
.y42{bottom:587.520000px;}
.y5f{bottom:595.440000px;}
.yc{bottom:597.240000px;}
.y31{bottom:599.040000px;}
.yea{bottom:601.200000px;}
.y2{bottom:604.440000px;}
.y4a{bottom:606.240000px;}
.y29{bottom:608.040000px;}
.y36{bottom:610.200000px;}
.y7c{bottom:613.440000px;}
.y9a{bottom:615.240000px;}
.ybe{bottom:617.040000px;}
.y1e{bottom:619.200000px;}
.yaf{bottom:622.440000px;}
.y5e{bottom:631.440000px;}
.yb{bottom:633.240000px;}
.yc5{bottom:633.960000px;}
.ye9{bottom:637.200000px;}
.y1{bottom:640.440000px;}
.ya1{bottom:642.240000px;}
.y28{bottom:644.040000px;}
.y35{bottom:646.200000px;}
.y7b{bottom:649.440000px;}
.y99{bottom:651.240000px;}
.ybd{bottom:653.040000px;}
.yc4{bottom:656.640000px;}
.y23{bottom:657.000000px;}
.yae{bottom:658.440000px;}
.y5d{bottom:667.440000px;}
.yfb{bottom:671.040000px;}
.ye8{bottom:673.200000px;}
.y70{bottom:676.440000px;}
.ya0{bottom:678.240000px;}
.yd7{bottom:680.040000px;}
.yc3{bottom:681.840000px;}
.ye5{bottom:685.440000px;}
.y98{bottom:687.240000px;}
.ybc{bottom:689.040000px;}
.y49{bottom:692.280000px;}
.yad{bottom:694.440000px;}
.y1d{bottom:699.840000px;}
.y5c{bottom:703.440000px;}
.y14{bottom:703.800000px;}
.ya{bottom:711.360000px;}
.y6f{bottom:712.440000px;}
.y27{bottom:717.840000px;}
.y7a{bottom:721.440000px;}
.y34{bottom:726.840000px;}
.yac{bottom:730.440000px;}
.y48{bottom:735.480000px;}
.y5b{bottom:739.440000px;}
.y6e{bottom:748.440000px;}
.y9f{bottom:752.040000px;}
.ye7{bottom:753.840000px;}
.ye4{bottom:757.440000px;}
.y97{bottom:759.240000px;}
.yd6{bottom:761.040000px;}
.yab{bottom:766.440000px;}
.y33{bottom:770.040000px;}
.y5a{bottom:775.440000px;}
.y47{bottom:778.680000px;}
.y8e{bottom:784.440000px;}
.h13{height:36.359850px;}
.h6{height:46.638281px;}
.h5{height:47.891250px;}
.he{height:50.703840px;}
.hf{height:58.385600px;}
.hd{height:64.532160px;}
.h4{height:76.824000px;}
.h12{height:87.108750px;}
.h11{height:89.115840px;}
.h3{height:120.453750px;}
.h1{height:127.527840px;}
.ha{height:134.131755px;}
.h10{height:135.092160px;}
.hc{height:145.125000px;}
.h2{height:150.187500px;}
.h9{height:153.648000px;}
.hb{height:175.719375px;}
.h8{height:179.768160px;}
.h7{height:204.351840px;}
.h0{height:892.500000px;}
.w1{width:96.840000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x8{left:102.240000px;}
.x45{left:104.040000px;}
.x3e{left:106.920000px;}
.xa{left:111.960000px;}
.x1a{left:115.200000px;}
.x34{left:117.360000px;}
.x42{left:121.320000px;}
.x12{left:129.240000px;}
.x9{left:131.040000px;}
.x3d{left:132.120000px;}
.xb{left:138.240000px;}
.x43{left:139.680000px;}
.x1d{left:144.000000px;}
.x28{left:147.960000px;}
.x23{left:149.760000px;}
.x14{left:156.240000px;}
.x35{left:157.320000px;}
.xc{left:161.280000px;}
.x16{left:165.960000px;}
.x11{left:167.040000px;}
.xe{left:172.800000px;}
.x46{left:174.240000px;}
.x17{left:175.320000px;}
.xf{left:176.400000px;}
.x18{left:185.040000px;}
.x13{left:186.840000px;}
.x19{left:192.240000px;}
.xd{left:195.840000px;}
.x47{left:201.240000px;}
.x15{left:204.120000px;}
.x2c{left:210.240000px;}
.x22{left:219.240000px;}
.x4{left:228.600000px;}
.x10{left:243.720000px;}
.x36{left:248.040000px;}
.x1f{left:249.480000px;}
.x6{left:270.360000px;}
.x31{left:271.440000px;}
.x21{left:282.240000px;}
.x3c{left:289.440000px;}
.x3{left:335.520000px;}
.x1c{left:338.040000px;}
.x1e{left:354.240000px;}
.x1{left:358.200000px;}
.x5{left:391.680000px;}
.x32{left:395.280000px;}
.x20{left:405.720000px;}
.x2a{left:408.240000px;}
.x25{left:421.200000px;}
.x2{left:453.600000px;}
.x33{left:462.240000px;}
.x37{left:471.240000px;}
.x26{left:527.760000px;}
.x38{left:606.240000px;}
.x7{left:619.560000px;}
.x3f{left:625.680000px;}
.x2d{left:631.440000px;}
.x2e{left:642.240000px;}
.x30{left:669.240000px;}
.x2b{left:696.240000px;}
.x27{left:727.560000px;}
.x29{left:739.440000px;}
.x2f{left:750.240000px;}
.x39{left:757.440000px;}
.x3a{left:771.120000px;}
.x41{left:825.840000px;}
.x24{left:840.240000px;}
.x1b{left:887.040000px;}
.x40{left:891.360000px;}
.x3b{left:1037.520000px;}
.x44{left:1074.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:62.720000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.689003pt;}
.ls3{letter-spacing:0.689537pt;}
.ls1{letter-spacing:1.268716pt;}
.ls2{letter-spacing:34.545921pt;}
.ws3{word-spacing:-106.240000pt;}
.ws6{word-spacing:-47.324160pt;}
.ws7{word-spacing:-40.448000pt;}
.wsa{word-spacing:-34.756568pt;}
.wsb{word-spacing:-33.571840pt;}
.ws1{word-spacing:-27.099823pt;}
.wsd{word-spacing:-20.638720pt;}
.ws9{word-spacing:-16.988160pt;}
.ws4{word-spacing:-5.829372pt;}
.wsc{word-spacing:-0.196918pt;}
.ws5{word-spacing:-0.052476pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.264707pt;}
.ws2{word-spacing:0.283137pt;}
._2{margin-left:-3.385600pt;}
._4{margin-left:-2.124800pt;}
._1{margin-left:-1.062400pt;}
._0{width:1.593600pt;}
._a{width:2.504853pt;}
._3{width:3.432079pt;}
._5{width:11.494170pt;}
._7{width:27.869466pt;}
._c{width:32.561287pt;}
._6{width:34.498817pt;}
._9{width:35.778155pt;}
._8{width:40.532493pt;}
._d{width:539.927053pt;}
._b{width:2136.620579pt;}
.fs3{font-size:42.240000pt;}
.fs9{font-size:48.639467pt;}
.fs8{font-size:53.760000pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:74.240000pt;}
.fs5{font-size:85.758933pt;}
.fs0{font-size:106.240000pt;}
.fs7{font-size:109.989139pt;}
.fs1{font-size:128.000000pt;}
.fs6{font-size:149.760000pt;}
.fs4{font-size:170.240000pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:5.760000pt;}
.y76{bottom:40.960000pt;}
.y95{bottom:44.160000pt;}
.y75{bottom:54.720000pt;}
.y9{bottom:56.960000pt;}
.y8{bottom:69.760000pt;}
.ycf{bottom:75.520000pt;}
.y94{bottom:76.480000pt;}
.y93{bottom:76.800000pt;}
.yf6{bottom:81.280000pt;}
.yf3{bottom:86.400000pt;}
.y57{bottom:89.279867pt;}
.ye3{bottom:92.480000pt;}
.y92{bottom:92.800000pt;}
.y8a{bottom:97.279867pt;}
.yf5{bottom:113.279867pt;}
.yf2{bottom:118.400000pt;}
.y56{bottom:121.279867pt;}
.ye2{bottom:124.480000pt;}
.y96{bottom:128.000000pt;}
.y89{bottom:129.279867pt;}
.y1c{bottom:129.600000pt;}
.ybb{bottom:137.280000pt;}
.y6b{bottom:145.280000pt;}
.yd2{bottom:147.200000pt;}
.yf1{bottom:150.400000pt;}
.y55{bottom:153.280000pt;}
.y79{bottom:156.480000pt;}
.y41{bottom:160.960000pt;}
.y88{bottom:161.280000pt;}
.yb9{bottom:169.280000pt;}
.y30{bottom:169.600000pt;}
.y6a{bottom:177.280000pt;}
.y13{bottom:178.880000pt;}
.y40{bottom:180.160000pt;}
.y73{bottom:180.480000pt;}
.yf0{bottom:182.400000pt;}
.y54{bottom:185.280000pt;}
.yaa{bottom:186.880000pt;}
.y59{bottom:188.480000pt;}
.yd1{bottom:191.680000pt;}
.yd5{bottom:192.320000pt;}
.y87{bottom:193.280000pt;}
.y1b{bottom:193.600000pt;}
.y77{bottom:196.480000pt;}
.y3f{bottom:199.360000pt;}
.yb8{bottom:201.280000pt;}
.y2f{bottom:201.600000pt;}
.y58{bottom:204.480000pt;}
.y69{bottom:209.280000pt;}
.yd0{bottom:214.080000pt;}
.yd4{bottom:214.720000pt;}
.y53{bottom:217.280000pt;}
.y3e{bottom:218.560000pt;}
.ya9{bottom:218.880000pt;}
.ye1{bottom:220.480000pt;}
.y7{bottom:222.400000pt;}
.y86{bottom:225.280000pt;}
.y1a{bottom:225.600000pt;}
.yb7{bottom:233.280000pt;}
.y2e{bottom:233.600000pt;}
.y6d{bottom:235.840000pt;}
.yd3{bottom:236.800000pt;}
.y3d{bottom:237.760000pt;}
.y68{bottom:241.280000pt;}
.y12{bottom:242.880000pt;}
.y8d{bottom:244.480000pt;}
.yef{bottom:246.400000pt;}
.y52{bottom:249.280000pt;}
.ya8{bottom:250.880000pt;}
.y6c{bottom:251.840000pt;}
.ye0{bottom:252.480000pt;}
.y85{bottom:257.280000pt;}
.y8c{bottom:260.480000pt;}
.ycd{bottom:265.280000pt;}
.y2d{bottom:267.200000pt;}
.y67{bottom:273.280000pt;}
.ycc{bottom:273.920000pt;}
.y8b{bottom:276.480000pt;}
.yee{bottom:278.400000pt;}
.y51{bottom:281.280000pt;}
.ya7{bottom:282.880000pt;}
.ydf{bottom:284.480000pt;}
.y84{bottom:289.280000pt;}
.y19{bottom:289.600000pt;}
.y22{bottom:294.400000pt;}
.ycb{bottom:296.320000pt;}
.yb6{bottom:297.280000pt;}
.y74{bottom:300.480000pt;}
.y2c{bottom:304.000000pt;}
.y66{bottom:305.280000pt;}
.y11{bottom:306.880000pt;}
.yed{bottom:310.400000pt;}
.y50{bottom:313.280000pt;}
.ya6{bottom:314.880000pt;}
.yde{bottom:316.480000pt;}
.yca{bottom:318.720000pt;}
.y83{bottom:321.280000pt;}
.yba{bottom:329.280000pt;}
.y65{bottom:337.280000pt;}
.y2b{bottom:337.600000pt;}
.y10{bottom:338.880000pt;}
.yc9{bottom:340.800000pt;}
.yec{bottom:342.400000pt;}
.y6{bottom:343.360000pt;}
.y4f{bottom:345.280000pt;}
.y3c{bottom:345.600000pt;}
.ya5{bottom:346.880000pt;}
.ydd{bottom:348.480000pt;}
.y72{bottom:348.800000pt;}
.y82{bottom:353.280000pt;}
.y46{bottom:354.560000pt;}
.y18{bottom:355.200000pt;}
.yc2{bottom:356.480000pt;}
.y21{bottom:358.400000pt;}
.yb5{bottom:361.280000pt;}
.y71{bottom:364.800000pt;}
.y64{bottom:369.280000pt;}
.y5{bottom:374.400000pt;}
.y4e{bottom:377.280000pt;}
.ydc{bottom:380.480000pt;}
.yce{bottom:380.800000pt;}
.y3b{bottom:382.400000pt;}
.y81{bottom:385.280000pt;}
.yc1{bottom:388.480000pt;}
.y91{bottom:392.000000pt;}
.y45{bottom:392.960000pt;}
.yb4{bottom:393.280000pt;}
.y78{bottom:396.800000pt;}
.y63{bottom:401.280000pt;}
.yf{bottom:402.880000pt;}
.y4{bottom:406.400000pt;}
.y90{bottom:408.000000pt;}
.y4d{bottom:409.280000pt;}
.ya4{bottom:410.880000pt;}
.ydb{bottom:412.480000pt;}
.y3a{bottom:414.400000pt;}
.y80{bottom:417.280000pt;}
.yc0{bottom:420.480000pt;}
.y20{bottom:422.400000pt;}
.yb3{bottom:425.280000pt;}
.yc8{bottom:427.200000pt;}
.y44{bottom:431.360000pt;}
.y17{bottom:432.000000pt;}
.y62{bottom:433.280000pt;}
.yeb{bottom:438.400000pt;}
.y4c{bottom:441.280000pt;}
.y26{bottom:441.600000pt;}
.ya3{bottom:442.880000pt;}
.yf7{bottom:443.520000pt;}
.yda{bottom:444.480000pt;}
.y39{bottom:446.400000pt;}
.y7f{bottom:449.280000pt;}
.yc7{bottom:449.600000pt;}
.y9d{bottom:450.880000pt;}
.ybf{bottom:452.480000pt;}
.yb2{bottom:457.280000pt;}
.y3{bottom:464.960000pt;}
.y61{bottom:465.280000pt;}
.ye{bottom:466.880000pt;}
.yfa{bottom:468.480000pt;}
.y43{bottom:469.760000pt;}
.y16{bottom:470.400000pt;}
.yc6{bottom:471.680000pt;}
.y2a{bottom:472.000000pt;}
.y4b{bottom:473.280000pt;}
.y25{bottom:473.600000pt;}
.ya2{bottom:474.880000pt;}
.yd9{bottom:476.480000pt;}
.y38{bottom:478.400000pt;}
.y7e{bottom:481.280000pt;}
.y9c{bottom:482.880000pt;}
.y9e{bottom:484.480000pt;}
.y1f{bottom:486.400000pt;}
.yb1{bottom:489.280000pt;}
.yfc{bottom:492.480000pt;}
.y32{bottom:494.080000pt;}
.y60{bottom:497.280000pt;}
.yd{bottom:498.880000pt;}
.ye6{bottom:499.520000pt;}
.yf9{bottom:500.480000pt;}
.y8f{bottom:505.280000pt;}
.yf4{bottom:506.880000pt;}
.y24{bottom:507.200000pt;}
.yd8{bottom:508.480000pt;}
.y15{bottom:508.800000pt;}
.y37{bottom:510.400000pt;}
.y7d{bottom:513.280000pt;}
.y9b{bottom:514.880000pt;}
.yb0{bottom:521.280000pt;}
.y42{bottom:522.240000pt;}
.y5f{bottom:529.280000pt;}
.yc{bottom:530.880000pt;}
.y31{bottom:532.480000pt;}
.yea{bottom:534.400000pt;}
.y2{bottom:537.280000pt;}
.y4a{bottom:538.880000pt;}
.y29{bottom:540.480000pt;}
.y36{bottom:542.400000pt;}
.y7c{bottom:545.280000pt;}
.y9a{bottom:546.880000pt;}
.ybe{bottom:548.480000pt;}
.y1e{bottom:550.400000pt;}
.yaf{bottom:553.280000pt;}
.y5e{bottom:561.280000pt;}
.yb{bottom:562.880000pt;}
.yc5{bottom:563.520000pt;}
.ye9{bottom:566.400000pt;}
.y1{bottom:569.280000pt;}
.ya1{bottom:570.880000pt;}
.y28{bottom:572.480000pt;}
.y35{bottom:574.400000pt;}
.y7b{bottom:577.280000pt;}
.y99{bottom:578.880000pt;}
.ybd{bottom:580.480000pt;}
.yc4{bottom:583.680000pt;}
.y23{bottom:584.000000pt;}
.yae{bottom:585.280000pt;}
.y5d{bottom:593.280000pt;}
.yfb{bottom:596.480000pt;}
.ye8{bottom:598.400000pt;}
.y70{bottom:601.280000pt;}
.ya0{bottom:602.880000pt;}
.yd7{bottom:604.480000pt;}
.yc3{bottom:606.080000pt;}
.ye5{bottom:609.280000pt;}
.y98{bottom:610.880000pt;}
.ybc{bottom:612.480000pt;}
.y49{bottom:615.360000pt;}
.yad{bottom:617.280000pt;}
.y1d{bottom:622.080000pt;}
.y5c{bottom:625.280000pt;}
.y14{bottom:625.600000pt;}
.ya{bottom:632.320000pt;}
.y6f{bottom:633.280000pt;}
.y27{bottom:638.080000pt;}
.y7a{bottom:641.280000pt;}
.y34{bottom:646.080000pt;}
.yac{bottom:649.280000pt;}
.y48{bottom:653.760000pt;}
.y5b{bottom:657.280000pt;}
.y6e{bottom:665.280000pt;}
.y9f{bottom:668.480000pt;}
.ye7{bottom:670.080000pt;}
.ye4{bottom:673.280000pt;}
.y97{bottom:674.880000pt;}
.yd6{bottom:676.480000pt;}
.yab{bottom:681.280000pt;}
.y33{bottom:684.480000pt;}
.y5a{bottom:689.280000pt;}
.y47{bottom:692.160000pt;}
.y8e{bottom:697.280000pt;}
.h13{height:32.319867pt;}
.h6{height:41.456250pt;}
.h5{height:42.570000pt;}
.he{height:45.070080pt;}
.hf{height:51.898311pt;}
.hd{height:57.361920pt;}
.h4{height:68.288000pt;}
.h12{height:77.430000pt;}
.h11{height:79.214080pt;}
.h3{height:107.070000pt;}
.h1{height:113.358080pt;}
.ha{height:119.228226pt;}
.h10{height:120.081920pt;}
.hc{height:129.000000pt;}
.h2{height:133.500000pt;}
.h9{height:136.576000pt;}
.hb{height:156.195000pt;}
.h8{height:159.793920pt;}
.h7{height:181.646080pt;}
.h0{height:793.333333pt;}
.w1{width:86.080000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x8{left:90.880000pt;}
.x45{left:92.480000pt;}
.x3e{left:95.040000pt;}
.xa{left:99.520000pt;}
.x1a{left:102.400000pt;}
.x34{left:104.320000pt;}
.x42{left:107.840000pt;}
.x12{left:114.880000pt;}
.x9{left:116.480000pt;}
.x3d{left:117.440000pt;}
.xb{left:122.880000pt;}
.x43{left:124.160000pt;}
.x1d{left:128.000000pt;}
.x28{left:131.520000pt;}
.x23{left:133.120000pt;}
.x14{left:138.880000pt;}
.x35{left:139.840000pt;}
.xc{left:143.360000pt;}
.x16{left:147.520000pt;}
.x11{left:148.480000pt;}
.xe{left:153.600000pt;}
.x46{left:154.880000pt;}
.x17{left:155.840000pt;}
.xf{left:156.800000pt;}
.x18{left:164.480000pt;}
.x13{left:166.080000pt;}
.x19{left:170.880000pt;}
.xd{left:174.080000pt;}
.x47{left:178.880000pt;}
.x15{left:181.440000pt;}
.x2c{left:186.880000pt;}
.x22{left:194.880000pt;}
.x4{left:203.200000pt;}
.x10{left:216.640000pt;}
.x36{left:220.480000pt;}
.x1f{left:221.760000pt;}
.x6{left:240.320000pt;}
.x31{left:241.280000pt;}
.x21{left:250.880000pt;}
.x3c{left:257.280000pt;}
.x3{left:298.240000pt;}
.x1c{left:300.480000pt;}
.x1e{left:314.880000pt;}
.x1{left:318.400000pt;}
.x5{left:348.160000pt;}
.x32{left:351.360000pt;}
.x20{left:360.640000pt;}
.x2a{left:362.880000pt;}
.x25{left:374.400000pt;}
.x2{left:403.200000pt;}
.x33{left:410.880000pt;}
.x37{left:418.880000pt;}
.x26{left:469.120000pt;}
.x38{left:538.880000pt;}
.x7{left:550.720000pt;}
.x3f{left:556.160000pt;}
.x2d{left:561.280000pt;}
.x2e{left:570.880000pt;}
.x30{left:594.880000pt;}
.x2b{left:618.880000pt;}
.x27{left:646.720000pt;}
.x29{left:657.280000pt;}
.x2f{left:666.880000pt;}
.x39{left:673.280000pt;}
.x3a{left:685.440000pt;}
.x41{left:734.080000pt;}
.x24{left:746.880000pt;}
.x1b{left:788.480000pt;}
.x40{left:792.320000pt;}
.x3b{left:922.240000pt;}
.x44{left:955.200000pt;}
}




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