
    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_3747744c5b0eacd0c3fb94ad.woff')format("woff");}.ff1{font-family:ff1;line-height:0.935000;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_bde8f02f1475552dc3d066ed.woff')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_3df3759604cc042e122d2949.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_85167a82e2fa2f7cf3f167bd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_0dacd88bbdfb99c1eff850d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_db75d96c0f66787c8bcb3ad8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.909000;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_2c8026415ba3362c693d8db8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.935000;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_ee3d2c2f0201761b6a79f9a8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.940000;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_11c2f606b082e57363b00812.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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);}
.v3{vertical-align:-11.988000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:19.980000px;}
.ls3{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000072px;}
.ls1{letter-spacing:0.000120px;}
.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:-36.696000px;}
.ws5{word-spacing:-16.680000px;}
.ws8{word-spacing:-15.030000px;}
.ws3{word-spacing:-9.724440px;}
.ws6{word-spacing:-5.834664px;}
.ws7{word-spacing:-1.140000px;}
.wsa{word-spacing:-0.540000px;}
.ws9{word-spacing:-0.480000px;}
.ws4{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:18.300000px;}
._5{margin-left:-15.030000px;}
._7{margin-left:-9.252000px;}
._15{margin-left:-7.992000px;}
._4{margin-left:-6.660000px;}
._8{margin-left:-5.520000px;}
._1{margin-left:-4.440000px;}
._3{margin-left:-3.420000px;}
._0{margin-left:-1.620000px;}
._6{width:1.080000px;}
._9{width:15.030000px;}
._2{width:18.300000px;}
._11{width:21.191040px;}
._e{width:101.509920px;}
._d{width:116.082720px;}
._12{width:197.593920px;}
._f{width:465.829920px;}
._13{width:489.911040px;}
._14{width:517.364640px;}
._c{width:680.019840px;}
._a{width:751.589280px;}
._b{width:934.712640px;}
._10{width:972.072000px;}
.fc3{color:rgb(42,62,146);}
.fc2{color:rgb(157,23,28);}
.fc1{color:rgb(38,69,143);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:20.988000px;}
.fsb{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fsd{font-size:36.000000px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fse{font-size:66.240000px;}
.fsf{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:132.000000px;}
.fs1{font-size:168.000000px;}
.fs2{font-size:180.000000px;}
.fs3{font-size:198.000000px;}
.y0{bottom:0.000000px;}
.yc4{bottom:64.246350px;}
.yf7{bottom:65.746350px;}
.y77{bottom:67.258200px;}
.yc3{bottom:76.246350px;}
.yf6{bottom:77.746350px;}
.y76{bottom:79.258200px;}
.yf5{bottom:86.752350px;}
.yc2{bottom:88.246350px;}
.y75{bottom:91.258200px;}
.yc1{bottom:100.246350px;}
.yf4{bottom:101.746350px;}
.y74{bottom:103.258200px;}
.yd9{bottom:103.562250px;}
.y44{bottom:111.229800px;}
.y73{bottom:115.258200px;}
.yd8{bottom:115.562250px;}
.y10e{bottom:120.298950px;}
.y10c{bottom:125.205150px;}
.y72{bottom:127.258200px;}
.yab{bottom:128.205150px;}
.y43{bottom:129.229800px;}
.y10b{bottom:134.239200px;}
.y10d{bottom:141.898950px;}
.yc0{bottom:143.205150px;}
.yaa{bottom:146.205150px;}
.ybf{bottom:161.205150px;}
.ya9{bottom:164.205150px;}
.y42{bottom:165.229800px;}
.y5e{bottom:171.300600px;}
.ybe{bottom:179.205150px;}
.y10a{bottom:179.354280px;}
.ya8{bottom:182.205150px;}
.y41{bottom:183.229800px;}
.y70{bottom:186.657900px;}
.y5d{bottom:189.300600px;}
.yd7{bottom:197.205150px;}
.ya7{bottom:200.205150px;}
.y40{bottom:201.229800px;}
.y6f{bottom:204.657900px;}
.y5c{bottom:207.300600px;}
.ybd{bottom:215.205150px;}
.ya6{bottom:218.205150px;}
.y109{bottom:218.949240px;}
.y3f{bottom:219.229800px;}
.y6e{bottom:222.657900px;}
.y5b{bottom:225.300600px;}
.y20{bottom:229.729800px;}
.ybc{bottom:233.205150px;}
.ya5{bottom:236.205150px;}
.y3e{bottom:237.229800px;}
.y6d{bottom:240.657900px;}
.y5a{bottom:243.300600px;}
.y1f{bottom:247.729800px;}
.ybb{bottom:251.205150px;}
.ya4{bottom:254.205150px;}
.y108{bottom:254.950680px;}
.y3d{bottom:255.229800px;}
.y6c{bottom:258.657900px;}
.y1e{bottom:265.729800px;}
.yba{bottom:269.205150px;}
.ya3{bottom:272.205150px;}
.y107{bottom:272.951400px;}
.y3c{bottom:273.229800px;}
.y6b{bottom:276.657900px;}
.y59{bottom:279.300600px;}
.y1d{bottom:283.729800px;}
.yb9{bottom:287.205150px;}
.ya2{bottom:290.205150px;}
.y3b{bottom:291.229800px;}
.y6a{bottom:294.657900px;}
.y58{bottom:297.300600px;}
.yb8{bottom:305.205150px;}
.ya1{bottom:308.205150px;}
.y106{bottom:308.952840px;}
.y3a{bottom:309.229800px;}
.y69{bottom:312.657900px;}
.y57{bottom:315.300600px;}
.y1c{bottom:319.729800px;}
.yb7{bottom:323.205150px;}
.ya0{bottom:326.205150px;}
.y105{bottom:326.953560px;}
.y39{bottom:327.229800px;}
.y68{bottom:330.657900px;}
.y56{bottom:333.300600px;}
.yb6{bottom:341.205150px;}
.y38{bottom:345.229800px;}
.y1b{bottom:351.229800px;}
.y55{bottom:351.300600px;}
.yb5{bottom:359.205150px;}
.yda{bottom:361.010850px;}
.y9f{bottom:362.205150px;}
.y104{bottom:362.955000px;}
.y37{bottom:363.229800px;}
.y67{bottom:366.657900px;}
.y54{bottom:369.300600px;}
.yb4{bottom:377.205150px;}
.y36{bottom:381.229800px;}
.y1a{bottom:382.729800px;}
.y53{bottom:387.300600px;}
.yb3{bottom:395.205150px;}
.y103{bottom:398.956440px;}
.y35{bottom:399.229800px;}
.y66{bottom:399.657900px;}
.y52{bottom:405.300600px;}
.y9e{bottom:413.205150px;}
.y19{bottom:414.229800px;}
.y34{bottom:417.229800px;}
.y51{bottom:423.300600px;}
.y65{bottom:423.660600px;}
.y9d{bottom:431.205150px;}
.y102{bottom:434.957880px;}
.y33{bottom:435.229800px;}
.y50{bottom:441.300600px;}
.y64{bottom:441.660600px;}
.y18{bottom:445.729800px;}
.y9c{bottom:449.205150px;}
.y32{bottom:453.229800px;}
.y4f{bottom:459.300600px;}
.y63{bottom:459.660600px;}
.y9b{bottom:467.205150px;}
.y31{bottom:471.229800px;}
.y101{bottom:472.830600px;}
.y17{bottom:477.229800px;}
.y4e{bottom:477.300600px;}
.y62{bottom:477.660600px;}
.y9a{bottom:485.205150px;}
.y30{bottom:489.229800px;}
.y4d{bottom:495.300600px;}
.y61{bottom:495.660600px;}
.y99{bottom:503.205150px;}
.y16{bottom:508.729800px;}
.y60{bottom:513.660600px;}
.y98{bottom:521.205150px;}
.y100{bottom:523.889700px;}
.y2f{bottom:525.229800px;}
.y4c{bottom:531.300600px;}
.y5f{bottom:531.660600px;}
.y97{bottom:539.205150px;}
.yff{bottom:541.889700px;}
.y2e{bottom:543.229800px;}
.y96{bottom:557.205150px;}
.y15{bottom:558.229800px;}
.yfe{bottom:559.889700px;}
.yd6{bottom:560.205150px;}
.y2d{bottom:561.229800px;}
.yb2{bottom:575.205150px;}
.y14{bottom:576.229800px;}
.yd5{bottom:578.205150px;}
.y2c{bottom:579.229800px;}
.y95{bottom:593.205150px;}
.y13{bottom:594.229800px;}
.yfd{bottom:595.889700px;}
.yd4{bottom:596.205150px;}
.y71{bottom:596.286450px;}
.y2b{bottom:597.229800px;}
.y94{bottom:611.205150px;}
.y12{bottom:612.229800px;}
.yfc{bottom:613.889700px;}
.yd3{bottom:614.205150px;}
.y2a{bottom:615.229800px;}
.y93{bottom:629.205150px;}
.yb1{bottom:629.212650px;}
.yfb{bottom:631.889700px;}
.yd2{bottom:632.205150px;}
.y29{bottom:633.229800px;}
.y92{bottom:647.205150px;}
.y11{bottom:648.229800px;}
.yfa{bottom:649.889700px;}
.yb0{bottom:650.205150px;}
.y28{bottom:651.229800px;}
.y91{bottom:665.205150px;}
.y10{bottom:666.229800px;}
.yf9{bottom:667.889700px;}
.yd1{bottom:668.205150px;}
.y27{bottom:669.229800px;}
.y90{bottom:683.205150px;}
.yf{bottom:684.229800px;}
.yd0{bottom:686.205150px;}
.y26{bottom:687.229800px;}
.y8f{bottom:701.205150px;}
.ye{bottom:702.229800px;}
.yf8{bottom:703.889700px;}
.ycf{bottom:704.205150px;}
.y25{bottom:705.229800px;}
.y8e{bottom:719.205150px;}
.yd{bottom:720.229800px;}
.yce{bottom:722.205150px;}
.y24{bottom:723.229800px;}
.y8d{bottom:737.205150px;}
.yc{bottom:738.229800px;}
.ycd{bottom:740.205150px;}
.y23{bottom:741.229800px;}
.yf3{bottom:749.527350px;}
.y8c{bottom:755.205150px;}
.yb{bottom:756.229800px;}
.ycc{bottom:758.205150px;}
.y22{bottom:759.229800px;}
.yf2{bottom:767.527350px;}
.y8b{bottom:773.205150px;}
.ya{bottom:774.229800px;}
.ycb{bottom:776.205150px;}
.yf1{bottom:785.527350px;}
.y8a{bottom:791.205150px;}
.y9{bottom:792.229800px;}
.yca{bottom:794.205150px;}
.y21{bottom:795.229800px;}
.yf0{bottom:803.527350px;}
.y89{bottom:809.205150px;}
.yc9{bottom:812.205150px;}
.yef{bottom:821.527350px;}
.y88{bottom:827.205150px;}
.y8{bottom:828.229800px;}
.yc8{bottom:830.205150px;}
.yee{bottom:839.527350px;}
.y87{bottom:845.205150px;}
.yc7{bottom:848.205150px;}
.yed{bottom:857.527350px;}
.y86{bottom:863.205150px;}
.yc6{bottom:866.205150px;}
.yec{bottom:875.527350px;}
.yaf{bottom:881.205150px;}
.yeb{bottom:893.527350px;}
.y85{bottom:899.205150px;}
.yc5{bottom:902.205150px;}
.yea{bottom:911.527350px;}
.y7{bottom:914.856150px;}
.y84{bottom:917.205150px;}
.ye9{bottom:929.527350px;}
.yae{bottom:935.205150px;}
.ye8{bottom:947.527350px;}
.y83{bottom:953.205150px;}
.y6{bottom:956.856150px;}
.y47{bottom:963.721650px;}
.ye7{bottom:965.527350px;}
.y82{bottom:971.205150px;}
.ye6{bottom:983.527350px;}
.y5{bottom:983.856150px;}
.y81{bottom:989.205150px;}
.y46{bottom:989.214150px;}
.ye5{bottom:1001.527350px;}
.y80{bottom:1007.205150px;}
.y45{bottom:1010.812650px;}
.y4{bottom:1016.856150px;}
.ye4{bottom:1019.527350px;}
.yad{bottom:1025.205150px;}
.ye3{bottom:1037.527350px;}
.y7f{bottom:1043.205150px;}
.ydb{bottom:1043.228100px;}
.ye2{bottom:1055.527350px;}
.y7e{bottom:1061.205150px;}
.ye1{bottom:1073.527350px;}
.y7d{bottom:1079.205150px;}
.ye0{bottom:1091.527350px;}
.y4b{bottom:1096.481700px;}
.yac{bottom:1097.205150px;}
.y2{bottom:1106.822250px;}
.ydf{bottom:1109.527350px;}
.y4a{bottom:1114.481700px;}
.y7c{bottom:1115.205150px;}
.yde{bottom:1127.527350px;}
.y49{bottom:1132.481700px;}
.y7b{bottom:1133.205150px;}
.y1{bottom:1133.822250px;}
.ydd{bottom:1145.527350px;}
.y7a{bottom:1151.205150px;}
.y48{bottom:1168.481700px;}
.y79{bottom:1169.205150px;}
.ydc{bottom:1181.527350px;}
.y78{bottom:1187.205150px;}
.y3{bottom:1188.577950px;}
.h10{height:15.342228px;}
.h12{height:26.316000px;}
.hf{height:40.995342px;}
.h8{height:43.860000px;}
.he{height:45.480420px;}
.hd{height:45.539580px;}
.h11{height:45.549780px;}
.hc{height:45.550380px;}
.h9{height:48.048000px;}
.ha{height:48.246000px;}
.h13{height:48.421440px;}
.h15{height:52.632000px;}
.h14{height:52.649280px;}
.h2{height:65.610000px;}
.hb{height:65.790000px;}
.h5{height:70.176000px;}
.h6{height:78.948000px;}
.h7{height:96.492000px;}
.h3{height:122.808000px;}
.h4{height:144.738000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x9{left:80.279550px;}
.x6{left:85.034550px;}
.x5{left:147.401550px;}
.x7{left:449.999550px;}
.xa{left:454.960650px;}
.x8{left:466.463400px;}
.x4{left:472.724250px;}
.x2{left:475.511850px;}
.x3{left:651.968550px;}
@media print{
.v3{vertical-align:-10.656000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:17.760000pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000064pt;}
.ls1{letter-spacing:0.000107pt;}
.ws0{word-spacing:-32.618667pt;}
.ws5{word-spacing:-14.826667pt;}
.ws8{word-spacing:-13.360000pt;}
.ws3{word-spacing:-8.643947pt;}
.ws6{word-spacing:-5.186368pt;}
.ws7{word-spacing:-1.013333pt;}
.wsa{word-spacing:-0.480000pt;}
.ws9{word-spacing:-0.426667pt;}
.ws4{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:16.266667pt;}
._5{margin-left:-13.360000pt;}
._7{margin-left:-8.224000pt;}
._15{margin-left:-7.104000pt;}
._4{margin-left:-5.920000pt;}
._8{margin-left:-4.906667pt;}
._1{margin-left:-3.946667pt;}
._3{margin-left:-3.040000pt;}
._0{margin-left:-1.440000pt;}
._6{width:0.960000pt;}
._9{width:13.360000pt;}
._2{width:16.266667pt;}
._11{width:18.836480pt;}
._e{width:90.231040pt;}
._d{width:103.184640pt;}
._12{width:175.639040pt;}
._f{width:414.071040pt;}
._13{width:435.476480pt;}
._14{width:459.879680pt;}
._c{width:604.462080pt;}
._a{width:668.079360pt;}
._b{width:830.855680pt;}
._10{width:864.064000pt;}
.fsc{font-size:18.656000pt;}
.fsb{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fsd{font-size:32.000000pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fse{font-size:58.880000pt;}
.fsf{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:117.333333pt;}
.fs1{font-size:149.333333pt;}
.fs2{font-size:160.000000pt;}
.fs3{font-size:176.000000pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:57.107867pt;}
.yf7{bottom:58.441200pt;}
.y77{bottom:59.785067pt;}
.yc3{bottom:67.774533pt;}
.yf6{bottom:69.107867pt;}
.y76{bottom:70.451733pt;}
.yf5{bottom:77.113200pt;}
.yc2{bottom:78.441200pt;}
.y75{bottom:81.118400pt;}
.yc1{bottom:89.107867pt;}
.yf4{bottom:90.441200pt;}
.y74{bottom:91.785067pt;}
.yd9{bottom:92.055333pt;}
.y44{bottom:98.870933pt;}
.y73{bottom:102.451733pt;}
.yd8{bottom:102.722000pt;}
.y10e{bottom:106.932400pt;}
.y10c{bottom:111.293467pt;}
.y72{bottom:113.118400pt;}
.yab{bottom:113.960133pt;}
.y43{bottom:114.870933pt;}
.y10b{bottom:119.323733pt;}
.y10d{bottom:126.132400pt;}
.yc0{bottom:127.293467pt;}
.yaa{bottom:129.960133pt;}
.ybf{bottom:143.293467pt;}
.ya9{bottom:145.960133pt;}
.y42{bottom:146.870933pt;}
.y5e{bottom:152.267200pt;}
.ybe{bottom:159.293467pt;}
.y10a{bottom:159.426027pt;}
.ya8{bottom:161.960133pt;}
.y41{bottom:162.870933pt;}
.y70{bottom:165.918133pt;}
.y5d{bottom:168.267200pt;}
.yd7{bottom:175.293467pt;}
.ya7{bottom:177.960133pt;}
.y40{bottom:178.870933pt;}
.y6f{bottom:181.918133pt;}
.y5c{bottom:184.267200pt;}
.ybd{bottom:191.293467pt;}
.ya6{bottom:193.960133pt;}
.y109{bottom:194.621547pt;}
.y3f{bottom:194.870933pt;}
.y6e{bottom:197.918133pt;}
.y5b{bottom:200.267200pt;}
.y20{bottom:204.204267pt;}
.ybc{bottom:207.293467pt;}
.ya5{bottom:209.960133pt;}
.y3e{bottom:210.870933pt;}
.y6d{bottom:213.918133pt;}
.y5a{bottom:216.267200pt;}
.y1f{bottom:220.204267pt;}
.ybb{bottom:223.293467pt;}
.ya4{bottom:225.960133pt;}
.y108{bottom:226.622827pt;}
.y3d{bottom:226.870933pt;}
.y6c{bottom:229.918133pt;}
.y1e{bottom:236.204267pt;}
.yba{bottom:239.293467pt;}
.ya3{bottom:241.960133pt;}
.y107{bottom:242.623467pt;}
.y3c{bottom:242.870933pt;}
.y6b{bottom:245.918133pt;}
.y59{bottom:248.267200pt;}
.y1d{bottom:252.204267pt;}
.yb9{bottom:255.293467pt;}
.ya2{bottom:257.960133pt;}
.y3b{bottom:258.870933pt;}
.y6a{bottom:261.918133pt;}
.y58{bottom:264.267200pt;}
.yb8{bottom:271.293467pt;}
.ya1{bottom:273.960133pt;}
.y106{bottom:274.624747pt;}
.y3a{bottom:274.870933pt;}
.y69{bottom:277.918133pt;}
.y57{bottom:280.267200pt;}
.y1c{bottom:284.204267pt;}
.yb7{bottom:287.293467pt;}
.ya0{bottom:289.960133pt;}
.y105{bottom:290.625387pt;}
.y39{bottom:290.870933pt;}
.y68{bottom:293.918133pt;}
.y56{bottom:296.267200pt;}
.yb6{bottom:303.293467pt;}
.y38{bottom:306.870933pt;}
.y1b{bottom:312.204267pt;}
.y55{bottom:312.267200pt;}
.yb5{bottom:319.293467pt;}
.yda{bottom:320.898533pt;}
.y9f{bottom:321.960133pt;}
.y104{bottom:322.626667pt;}
.y37{bottom:322.870933pt;}
.y67{bottom:325.918133pt;}
.y54{bottom:328.267200pt;}
.yb4{bottom:335.293467pt;}
.y36{bottom:338.870933pt;}
.y1a{bottom:340.204267pt;}
.y53{bottom:344.267200pt;}
.yb3{bottom:351.293467pt;}
.y103{bottom:354.627947pt;}
.y35{bottom:354.870933pt;}
.y66{bottom:355.251467pt;}
.y52{bottom:360.267200pt;}
.y9e{bottom:367.293467pt;}
.y19{bottom:368.204267pt;}
.y34{bottom:370.870933pt;}
.y51{bottom:376.267200pt;}
.y65{bottom:376.587200pt;}
.y9d{bottom:383.293467pt;}
.y102{bottom:386.629227pt;}
.y33{bottom:386.870933pt;}
.y50{bottom:392.267200pt;}
.y64{bottom:392.587200pt;}
.y18{bottom:396.204267pt;}
.y9c{bottom:399.293467pt;}
.y32{bottom:402.870933pt;}
.y4f{bottom:408.267200pt;}
.y63{bottom:408.587200pt;}
.y9b{bottom:415.293467pt;}
.y31{bottom:418.870933pt;}
.y101{bottom:420.293867pt;}
.y17{bottom:424.204267pt;}
.y4e{bottom:424.267200pt;}
.y62{bottom:424.587200pt;}
.y9a{bottom:431.293467pt;}
.y30{bottom:434.870933pt;}
.y4d{bottom:440.267200pt;}
.y61{bottom:440.587200pt;}
.y99{bottom:447.293467pt;}
.y16{bottom:452.204267pt;}
.y60{bottom:456.587200pt;}
.y98{bottom:463.293467pt;}
.y100{bottom:465.679733pt;}
.y2f{bottom:466.870933pt;}
.y4c{bottom:472.267200pt;}
.y5f{bottom:472.587200pt;}
.y97{bottom:479.293467pt;}
.yff{bottom:481.679733pt;}
.y2e{bottom:482.870933pt;}
.y96{bottom:495.293467pt;}
.y15{bottom:496.204267pt;}
.yfe{bottom:497.679733pt;}
.yd6{bottom:497.960133pt;}
.y2d{bottom:498.870933pt;}
.yb2{bottom:511.293467pt;}
.y14{bottom:512.204267pt;}
.yd5{bottom:513.960133pt;}
.y2c{bottom:514.870933pt;}
.y95{bottom:527.293467pt;}
.y13{bottom:528.204267pt;}
.yfd{bottom:529.679733pt;}
.yd4{bottom:529.960133pt;}
.y71{bottom:530.032400pt;}
.y2b{bottom:530.870933pt;}
.y94{bottom:543.293467pt;}
.y12{bottom:544.204267pt;}
.yfc{bottom:545.679733pt;}
.yd3{bottom:545.960133pt;}
.y2a{bottom:546.870933pt;}
.y93{bottom:559.293467pt;}
.yb1{bottom:559.300133pt;}
.yfb{bottom:561.679733pt;}
.yd2{bottom:561.960133pt;}
.y29{bottom:562.870933pt;}
.y92{bottom:575.293467pt;}
.y11{bottom:576.204267pt;}
.yfa{bottom:577.679733pt;}
.yb0{bottom:577.960133pt;}
.y28{bottom:578.870933pt;}
.y91{bottom:591.293467pt;}
.y10{bottom:592.204267pt;}
.yf9{bottom:593.679733pt;}
.yd1{bottom:593.960133pt;}
.y27{bottom:594.870933pt;}
.y90{bottom:607.293467pt;}
.yf{bottom:608.204267pt;}
.yd0{bottom:609.960133pt;}
.y26{bottom:610.870933pt;}
.y8f{bottom:623.293467pt;}
.ye{bottom:624.204267pt;}
.yf8{bottom:625.679733pt;}
.ycf{bottom:625.960133pt;}
.y25{bottom:626.870933pt;}
.y8e{bottom:639.293467pt;}
.yd{bottom:640.204267pt;}
.yce{bottom:641.960133pt;}
.y24{bottom:642.870933pt;}
.y8d{bottom:655.293467pt;}
.yc{bottom:656.204267pt;}
.ycd{bottom:657.960133pt;}
.y23{bottom:658.870933pt;}
.yf3{bottom:666.246533pt;}
.y8c{bottom:671.293467pt;}
.yb{bottom:672.204267pt;}
.ycc{bottom:673.960133pt;}
.y22{bottom:674.870933pt;}
.yf2{bottom:682.246533pt;}
.y8b{bottom:687.293467pt;}
.ya{bottom:688.204267pt;}
.ycb{bottom:689.960133pt;}
.yf1{bottom:698.246533pt;}
.y8a{bottom:703.293467pt;}
.y9{bottom:704.204267pt;}
.yca{bottom:705.960133pt;}
.y21{bottom:706.870933pt;}
.yf0{bottom:714.246533pt;}
.y89{bottom:719.293467pt;}
.yc9{bottom:721.960133pt;}
.yef{bottom:730.246533pt;}
.y88{bottom:735.293467pt;}
.y8{bottom:736.204267pt;}
.yc8{bottom:737.960133pt;}
.yee{bottom:746.246533pt;}
.y87{bottom:751.293467pt;}
.yc7{bottom:753.960133pt;}
.yed{bottom:762.246533pt;}
.y86{bottom:767.293467pt;}
.yc6{bottom:769.960133pt;}
.yec{bottom:778.246533pt;}
.yaf{bottom:783.293467pt;}
.yeb{bottom:794.246533pt;}
.y85{bottom:799.293467pt;}
.yc5{bottom:801.960133pt;}
.yea{bottom:810.246533pt;}
.y7{bottom:813.205467pt;}
.y84{bottom:815.293467pt;}
.ye9{bottom:826.246533pt;}
.yae{bottom:831.293467pt;}
.ye8{bottom:842.246533pt;}
.y83{bottom:847.293467pt;}
.y6{bottom:850.538800pt;}
.y47{bottom:856.641467pt;}
.ye7{bottom:858.246533pt;}
.y82{bottom:863.293467pt;}
.ye6{bottom:874.246533pt;}
.y5{bottom:874.538800pt;}
.y81{bottom:879.293467pt;}
.y46{bottom:879.301467pt;}
.ye5{bottom:890.246533pt;}
.y80{bottom:895.293467pt;}
.y45{bottom:898.500133pt;}
.y4{bottom:903.872133pt;}
.ye4{bottom:906.246533pt;}
.yad{bottom:911.293467pt;}
.ye3{bottom:922.246533pt;}
.y7f{bottom:927.293467pt;}
.ydb{bottom:927.313867pt;}
.ye2{bottom:938.246533pt;}
.y7e{bottom:943.293467pt;}
.ye1{bottom:954.246533pt;}
.y7d{bottom:959.293467pt;}
.ye0{bottom:970.246533pt;}
.y4b{bottom:974.650400pt;}
.yac{bottom:975.293467pt;}
.y2{bottom:983.842000pt;}
.ydf{bottom:986.246533pt;}
.y4a{bottom:990.650400pt;}
.y7c{bottom:991.293467pt;}
.yde{bottom:1002.246533pt;}
.y49{bottom:1006.650400pt;}
.y7b{bottom:1007.293467pt;}
.y1{bottom:1007.842000pt;}
.ydd{bottom:1018.246533pt;}
.y7a{bottom:1023.293467pt;}
.y48{bottom:1038.650400pt;}
.y79{bottom:1039.293467pt;}
.ydc{bottom:1050.246533pt;}
.y78{bottom:1055.293467pt;}
.y3{bottom:1056.513733pt;}
.h10{height:13.637536pt;}
.h12{height:23.392000pt;}
.hf{height:36.440304pt;}
.h8{height:38.986667pt;}
.he{height:40.427040pt;}
.hd{height:40.479627pt;}
.h11{height:40.488693pt;}
.hc{height:40.489227pt;}
.h9{height:42.709333pt;}
.ha{height:42.885333pt;}
.h13{height:43.041280pt;}
.h15{height:46.784000pt;}
.h14{height:46.799360pt;}
.h2{height:58.320000pt;}
.hb{height:58.480000pt;}
.h5{height:62.378667pt;}
.h6{height:70.176000pt;}
.h7{height:85.770667pt;}
.h3{height:109.162667pt;}
.h4{height:128.656000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x9{left:71.359600pt;}
.x6{left:75.586267pt;}
.x5{left:131.023600pt;}
.x7{left:399.999600pt;}
.xa{left:404.409467pt;}
.x8{left:414.634133pt;}
.x4{left:420.199333pt;}
.x2{left:422.677200pt;}
.x3{left:579.527600pt;}
}




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