
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_48910c39207a59cafbc5b41c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_169ee56af868bbf70dc5a0b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_2c925d2e257a4e73bc7f0499.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_988cb76b177d680631452162.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_f729e9e7adc0b1a4d09a9972.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:30.240000px;}
.v3{vertical-align:35.280000px;}
.ls23{letter-spacing:-0.960000px;}
.ls28{letter-spacing:-0.696000px;}
.ls27{letter-spacing:-0.660000px;}
.lse{letter-spacing:-0.570000px;}
.ls20{letter-spacing:-0.544800px;}
.ls29{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls26{letter-spacing:-0.414000px;}
.lsa{letter-spacing:-0.240600px;}
.lsb{letter-spacing:-0.228000px;}
.ls18{letter-spacing:-0.115800px;}
.ls16{letter-spacing:-0.078600px;}
.ls21{letter-spacing:-0.069600px;}
.ls2b{letter-spacing:-0.064800px;}
.lsf{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.020160px;}
.ls1e{letter-spacing:-0.001440px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.023760px;}
.ls9{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.150000px;}
.ls1c{letter-spacing:0.167040px;}
.ls24{letter-spacing:0.172800px;}
.ls22{letter-spacing:0.174000px;}
.ls1b{letter-spacing:0.174240px;}
.ls14{letter-spacing:0.175200px;}
.ls2d{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.186600px;}
.lsc{letter-spacing:0.209400px;}
.ls1d{letter-spacing:0.227400px;}
.ls6{letter-spacing:0.256200px;}
.ls15{letter-spacing:0.306000px;}
.ls1f{letter-spacing:0.309000px;}
.ls25{letter-spacing:0.393600px;}
.ls8{letter-spacing:0.417000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls2c{letter-spacing:42.426720px;}
.ls1a{letter-spacing:43.146720px;}
.ls12{letter-spacing:44.586720px;}
.ls19{letter-spacing:45.306720px;}
.ls10{letter-spacing:45.450720px;}
.lsd{letter-spacing:46.026720px;}
.ls11{letter-spacing:47.466720px;}
.ls13{letter-spacing:51.066720px;}
.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:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wse{word-spacing:-13.814760px;}
.wsb{word-spacing:-13.811760px;}
.ws8{word-spacing:-13.715160px;}
.wsa{word-spacing:-13.680960px;}
.ws5{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.504320px;}
.ws9{word-spacing:-13.447440px;}
.ws13{word-spacing:-13.440960px;}
.wsf{word-spacing:-13.436160px;}
.wsc{word-spacing:-13.427160px;}
.ws6{word-spacing:-13.277760px;}
.ws4{word-spacing:-9.437760px;}
.ws12{word-spacing:-9.414600px;}
.ws11{word-spacing:-9.354240px;}
.ws10{word-spacing:-9.187200px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.156960px;}
._10{margin-left:-4.521360px;}
._6{margin-left:-3.312000px;}
._8{margin-left:-2.284080px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._a{width:2.867280px;}
._7{width:4.351440px;}
._9{width:5.411520px;}
._d{width:6.513840px;}
._f{width:7.689120px;}
._e{width:8.904240px;}
._11{width:10.059600px;}
._b{width:11.234880px;}
._c{width:12.270720px;}
._15{width:14.641200px;}
._14{width:16.493760px;}
._1b{width:19.282560px;}
._1c{width:20.437920px;}
._13{width:22.333920px;}
._12{width:23.366160px;}
._1a{width:41.635440px;}
._17{width:54.870240px;}
._16{width:100.414560px;}
._19{width:114.814560px;}
._18{width:202.494240px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yab{bottom:7.020000px;}
.y68{bottom:12.600000px;}
.y6a{bottom:18.900000px;}
.y6d{bottom:18.945000px;}
.yaa{bottom:28.110000px;}
.ya7{bottom:35.490000px;}
.ya9{bottom:49.530000px;}
.y6{bottom:60.480000px;}
.ya8{bottom:70.590000px;}
.y31{bottom:91.620000px;}
.y66{bottom:93.060000px;}
.y30{bottom:112.680000px;}
.y65{bottom:114.120000px;}
.ya6{bottom:126.180000px;}
.y2f{bottom:133.560000px;}
.y77{bottom:133.740000px;}
.y64{bottom:135.180000px;}
.y2e{bottom:154.650000px;}
.y76{bottom:154.830000px;}
.y63{bottom:156.270000px;}
.y2d{bottom:175.710000px;}
.y75{bottom:175.890000px;}
.y62{bottom:177.330000px;}
.y74{bottom:192.990000px;}
.y2c{bottom:196.770000px;}
.ya5{bottom:196.950000px;}
.y61{bottom:198.390000px;}
.y73{bottom:200.550000px;}
.y6e{bottom:211.350000px;}
.y2b{bottom:217.830000px;}
.ya4{bottom:218.010000px;}
.y60{bottom:219.450000px;}
.y72{bottom:221.430000px;}
.y71{bottom:228.990000px;}
.y2a{bottom:238.890000px;}
.ya3{bottom:239.070000px;}
.y5f{bottom:240.510000px;}
.y70{bottom:250.050000px;}
.y6f{bottom:257.610000px;}
.y29{bottom:259.950000px;}
.ya2{bottom:260.130000px;}
.y6b{bottom:260.850000px;}
.y5e{bottom:261.570000px;}
.y28{bottom:281.010000px;}
.ya1{bottom:281.190000px;}
.y5d{bottom:282.630000px;}
.y27{bottom:302.070000px;}
.ya0{bottom:302.250000px;}
.y5c{bottom:303.690000px;}
.y26{bottom:323.130000px;}
.y9f{bottom:323.310000px;}
.y5b{bottom:324.750000px;}
.y25{bottom:344.190000px;}
.y9e{bottom:344.370000px;}
.y5a{bottom:345.810000px;}
.y24{bottom:365.250000px;}
.y9d{bottom:365.430000px;}
.y59{bottom:366.870000px;}
.y23{bottom:386.310000px;}
.y9c{bottom:386.490000px;}
.y58{bottom:387.930000px;}
.y22{bottom:407.415000px;}
.y9b{bottom:407.595000px;}
.y57{bottom:409.035000px;}
.y21{bottom:428.475000px;}
.y9a{bottom:428.655000px;}
.y56{bottom:430.095000px;}
.y20{bottom:449.535000px;}
.y99{bottom:449.715000px;}
.y55{bottom:451.155000px;}
.y1f{bottom:470.595000px;}
.y98{bottom:470.775000px;}
.y54{bottom:472.215000px;}
.y1e{bottom:491.655000px;}
.y97{bottom:491.835000px;}
.y53{bottom:493.275000px;}
.y1d{bottom:512.715000px;}
.y96{bottom:512.895000px;}
.y52{bottom:514.335000px;}
.y1c{bottom:533.775000px;}
.y95{bottom:533.955000px;}
.y51{bottom:535.395000px;}
.y69{bottom:536.295000px;}
.y94{bottom:555.015000px;}
.y50{bottom:556.455000px;}
.y1b{bottom:557.355000px;}
.y93{bottom:576.075000px;}
.y4f{bottom:577.515000px;}
.y1a{bottom:587.235000px;}
.y92{bottom:597.135000px;}
.y4e{bottom:598.575000px;}
.y19{bottom:608.295000px;}
.y91{bottom:618.195000px;}
.y4d{bottom:619.635000px;}
.y18{bottom:629.355000px;}
.y90{bottom:639.255000px;}
.y4c{bottom:640.695000px;}
.y17{bottom:650.445000px;}
.y8f{bottom:660.345000px;}
.y4b{bottom:661.785000px;}
.y16{bottom:671.505000px;}
.y8e{bottom:681.405000px;}
.y4a{bottom:682.845000px;}
.y15{bottom:692.565000px;}
.y8d{bottom:702.465000px;}
.y49{bottom:703.905000px;}
.y14{bottom:713.625000px;}
.y8c{bottom:723.525000px;}
.y48{bottom:724.965000px;}
.y13{bottom:734.685000px;}
.y8b{bottom:744.585000px;}
.y47{bottom:746.025000px;}
.y12{bottom:755.745000px;}
.y8a{bottom:765.645000px;}
.y46{bottom:766.905000px;}
.y11{bottom:776.805000px;}
.y89{bottom:786.705000px;}
.y45{bottom:787.965000px;}
.y10{bottom:797.685000px;}
.y88{bottom:807.765000px;}
.y44{bottom:809.025000px;}
.yf{bottom:818.745000px;}
.y78{bottom:821.265000px;}
.y87{bottom:828.825000px;}
.y43{bottom:830.085000px;}
.ye{bottom:839.985000px;}
.y86{bottom:849.885000px;}
.y42{bottom:851.145000px;}
.yd{bottom:863.205000px;}
.y85{bottom:870.945000px;}
.y41{bottom:872.205000px;}
.y67{bottom:875.265000px;}
.yc{bottom:889.485000px;}
.y84{bottom:892.005000px;}
.y40{bottom:893.265000px;}
.y6c{bottom:893.985000px;}
.yb{bottom:906.270000px;}
.y83{bottom:913.110000px;}
.y3f{bottom:914.370000px;}
.ya{bottom:928.590000px;}
.y82{bottom:934.170000px;}
.y3e{bottom:935.430000px;}
.y9{bottom:953.790000px;}
.y81{bottom:955.230000px;}
.y3d{bottom:956.490000px;}
.y80{bottom:976.290000px;}
.y3c{bottom:977.550000px;}
.y8{bottom:987.450000px;}
.y7f{bottom:997.350000px;}
.y3b{bottom:998.610000px;}
.y7e{bottom:1014.450000px;}
.y3a{bottom:1019.670000px;}
.y7{bottom:1021.110000px;}
.y7d{bottom:1022.010000px;}
.y39{bottom:1040.730000px;}
.y7c{bottom:1042.890000px;}
.y7b{bottom:1050.450000px;}
.y5{bottom:1061.250000px;}
.y38{bottom:1061.790000px;}
.y7a{bottom:1071.330000px;}
.y79{bottom:1078.890000px;}
.y37{bottom:1082.850000px;}
.y4{bottom:1093.470000px;}
.y36{bottom:1103.910000px;}
.y35{bottom:1124.970000px;}
.y3{bottom:1125.510000px;}
.y34{bottom:1146.030000px;}
.y2{bottom:1157.760000px;}
.y33{bottom:1173.960000px;}
.y1{bottom:1192.320000px;}
.y32{bottom:1194.120000px;}
.hf{height:2.864531px;}
.h9{height:27.036000px;}
.ha{height:33.300000px;}
.hb{height:33.336000px;}
.h7{height:38.671172px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hc{height:70.474219px;}
.he{height:84.996000px;}
.hd{height:91.429805px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:210.810000px;}
.w7{width:383.865000px;}
.w6{width:416.985000px;}
.w4{width:422.895000px;}
.w8{width:445.245000px;}
.w5{width:478.005000px;}
.w3{width:534.345000px;}
.wa{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.785000px;}
.xe{left:31.140000px;}
.x1{left:53.999987px;}
.xf{left:63.180000px;}
.x5{left:69.479987px;}
.x1b{left:75.239987px;}
.x3{left:80.999987px;}
.x13{left:86.075987px;}
.x14{left:87.515987px;}
.x6{left:90.935987px;}
.x11{left:92.385000px;}
.x4{left:96.515987px;}
.xa{left:98.135987px;}
.x1c{left:102.275987px;}
.x2{left:108.035987px;}
.x7{left:117.935987px;}
.x1a{left:126.405000px;}
.x15{left:128.555987px;}
.xc{left:132.885000px;}
.x16{left:144.935987px;}
.x9{left:149.795987px;}
.x8{left:162.029987px;}
.xb{left:169.950000px;}
.x19{left:184.710000px;}
.x1d{left:190.110000px;}
.xd{left:201.090000px;}
.x10{left:227.910000px;}
.x12{left:248.970000px;}
.x17{left:261.029987px;}
.x1e{left:264.810000px;}
.x18{left:287.714987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:26.880000pt;}
.v3{vertical-align:31.360000pt;}
.ls23{letter-spacing:-0.853333pt;}
.ls28{letter-spacing:-0.618667pt;}
.ls27{letter-spacing:-0.586667pt;}
.lse{letter-spacing:-0.506667pt;}
.ls20{letter-spacing:-0.484267pt;}
.ls29{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls26{letter-spacing:-0.368000pt;}
.lsa{letter-spacing:-0.213867pt;}
.lsb{letter-spacing:-0.202667pt;}
.ls18{letter-spacing:-0.102933pt;}
.ls16{letter-spacing:-0.069867pt;}
.ls21{letter-spacing:-0.061867pt;}
.ls2b{letter-spacing:-0.057600pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.017920pt;}
.ls1e{letter-spacing:-0.001280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.021120pt;}
.ls9{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.133333pt;}
.ls1c{letter-spacing:0.148480pt;}
.ls24{letter-spacing:0.153600pt;}
.ls22{letter-spacing:0.154667pt;}
.ls1b{letter-spacing:0.154880pt;}
.ls14{letter-spacing:0.155733pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.165867pt;}
.lsc{letter-spacing:0.186133pt;}
.ls1d{letter-spacing:0.202133pt;}
.ls6{letter-spacing:0.227733pt;}
.ls15{letter-spacing:0.272000pt;}
.ls1f{letter-spacing:0.274667pt;}
.ls25{letter-spacing:0.349867pt;}
.ls8{letter-spacing:0.370667pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls2c{letter-spacing:37.712640pt;}
.ls1a{letter-spacing:38.352640pt;}
.ls12{letter-spacing:39.632640pt;}
.ls19{letter-spacing:40.272640pt;}
.ls10{letter-spacing:40.400640pt;}
.lsd{letter-spacing:40.912640pt;}
.ls11{letter-spacing:42.192640pt;}
.ls13{letter-spacing:45.392640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wse{word-spacing:-12.279787pt;}
.wsb{word-spacing:-12.277120pt;}
.ws8{word-spacing:-12.191253pt;}
.wsa{word-spacing:-12.160853pt;}
.ws5{word-spacing:-12.005120pt;}
.wsd{word-spacing:-12.003840pt;}
.ws9{word-spacing:-11.953280pt;}
.ws13{word-spacing:-11.947520pt;}
.wsf{word-spacing:-11.943253pt;}
.wsc{word-spacing:-11.935253pt;}
.ws6{word-spacing:-11.802453pt;}
.ws4{word-spacing:-8.389120pt;}
.ws12{word-spacing:-8.368533pt;}
.ws11{word-spacing:-8.314880pt;}
.ws10{word-spacing:-8.166400pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.472853pt;}
._10{margin-left:-4.018987pt;}
._6{margin-left:-2.944000pt;}
._8{margin-left:-2.030293pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._a{width:2.548693pt;}
._7{width:3.867947pt;}
._9{width:4.810240pt;}
._d{width:5.790080pt;}
._f{width:6.834773pt;}
._e{width:7.914880pt;}
._11{width:8.941867pt;}
._b{width:9.986560pt;}
._c{width:10.907307pt;}
._15{width:13.014400pt;}
._14{width:14.661120pt;}
._1b{width:17.140053pt;}
._1c{width:18.167040pt;}
._13{width:19.852373pt;}
._12{width:20.769920pt;}
._1a{width:37.009280pt;}
._17{width:48.773547pt;}
._16{width:89.257387pt;}
._19{width:102.057387pt;}
._18{width:179.994880pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:6.240000pt;}
.y68{bottom:11.200000pt;}
.y6a{bottom:16.800000pt;}
.y6d{bottom:16.840000pt;}
.yaa{bottom:24.986667pt;}
.ya7{bottom:31.546667pt;}
.ya9{bottom:44.026667pt;}
.y6{bottom:53.760000pt;}
.ya8{bottom:62.746667pt;}
.y31{bottom:81.440000pt;}
.y66{bottom:82.720000pt;}
.y30{bottom:100.160000pt;}
.y65{bottom:101.440000pt;}
.ya6{bottom:112.160000pt;}
.y2f{bottom:118.720000pt;}
.y77{bottom:118.880000pt;}
.y64{bottom:120.160000pt;}
.y2e{bottom:137.466667pt;}
.y76{bottom:137.626667pt;}
.y63{bottom:138.906667pt;}
.y2d{bottom:156.186667pt;}
.y75{bottom:156.346667pt;}
.y62{bottom:157.626667pt;}
.y74{bottom:171.546667pt;}
.y2c{bottom:174.906667pt;}
.ya5{bottom:175.066667pt;}
.y61{bottom:176.346667pt;}
.y73{bottom:178.266667pt;}
.y6e{bottom:187.866667pt;}
.y2b{bottom:193.626667pt;}
.ya4{bottom:193.786667pt;}
.y60{bottom:195.066667pt;}
.y72{bottom:196.826667pt;}
.y71{bottom:203.546667pt;}
.y2a{bottom:212.346667pt;}
.ya3{bottom:212.506667pt;}
.y5f{bottom:213.786667pt;}
.y70{bottom:222.266667pt;}
.y6f{bottom:228.986667pt;}
.y29{bottom:231.066667pt;}
.ya2{bottom:231.226667pt;}
.y6b{bottom:231.866667pt;}
.y5e{bottom:232.506667pt;}
.y28{bottom:249.786667pt;}
.ya1{bottom:249.946667pt;}
.y5d{bottom:251.226667pt;}
.y27{bottom:268.506667pt;}
.ya0{bottom:268.666667pt;}
.y5c{bottom:269.946667pt;}
.y26{bottom:287.226667pt;}
.y9f{bottom:287.386667pt;}
.y5b{bottom:288.666667pt;}
.y25{bottom:305.946667pt;}
.y9e{bottom:306.106667pt;}
.y5a{bottom:307.386667pt;}
.y24{bottom:324.666667pt;}
.y9d{bottom:324.826667pt;}
.y59{bottom:326.106667pt;}
.y23{bottom:343.386667pt;}
.y9c{bottom:343.546667pt;}
.y58{bottom:344.826667pt;}
.y22{bottom:362.146667pt;}
.y9b{bottom:362.306667pt;}
.y57{bottom:363.586667pt;}
.y21{bottom:380.866667pt;}
.y9a{bottom:381.026667pt;}
.y56{bottom:382.306667pt;}
.y20{bottom:399.586667pt;}
.y99{bottom:399.746667pt;}
.y55{bottom:401.026667pt;}
.y1f{bottom:418.306667pt;}
.y98{bottom:418.466667pt;}
.y54{bottom:419.746667pt;}
.y1e{bottom:437.026667pt;}
.y97{bottom:437.186667pt;}
.y53{bottom:438.466667pt;}
.y1d{bottom:455.746667pt;}
.y96{bottom:455.906667pt;}
.y52{bottom:457.186667pt;}
.y1c{bottom:474.466667pt;}
.y95{bottom:474.626667pt;}
.y51{bottom:475.906667pt;}
.y69{bottom:476.706667pt;}
.y94{bottom:493.346667pt;}
.y50{bottom:494.626667pt;}
.y1b{bottom:495.426667pt;}
.y93{bottom:512.066667pt;}
.y4f{bottom:513.346667pt;}
.y1a{bottom:521.986667pt;}
.y92{bottom:530.786667pt;}
.y4e{bottom:532.066667pt;}
.y19{bottom:540.706667pt;}
.y91{bottom:549.506667pt;}
.y4d{bottom:550.786667pt;}
.y18{bottom:559.426667pt;}
.y90{bottom:568.226667pt;}
.y4c{bottom:569.506667pt;}
.y17{bottom:578.173333pt;}
.y8f{bottom:586.973333pt;}
.y4b{bottom:588.253333pt;}
.y16{bottom:596.893333pt;}
.y8e{bottom:605.693333pt;}
.y4a{bottom:606.973333pt;}
.y15{bottom:615.613333pt;}
.y8d{bottom:624.413333pt;}
.y49{bottom:625.693333pt;}
.y14{bottom:634.333333pt;}
.y8c{bottom:643.133333pt;}
.y48{bottom:644.413333pt;}
.y13{bottom:653.053333pt;}
.y8b{bottom:661.853333pt;}
.y47{bottom:663.133333pt;}
.y12{bottom:671.773333pt;}
.y8a{bottom:680.573333pt;}
.y46{bottom:681.693333pt;}
.y11{bottom:690.493333pt;}
.y89{bottom:699.293333pt;}
.y45{bottom:700.413333pt;}
.y10{bottom:709.053333pt;}
.y88{bottom:718.013333pt;}
.y44{bottom:719.133333pt;}
.yf{bottom:727.773333pt;}
.y78{bottom:730.013333pt;}
.y87{bottom:736.733333pt;}
.y43{bottom:737.853333pt;}
.ye{bottom:746.653333pt;}
.y86{bottom:755.453333pt;}
.y42{bottom:756.573333pt;}
.yd{bottom:767.293333pt;}
.y85{bottom:774.173333pt;}
.y41{bottom:775.293333pt;}
.y67{bottom:778.013333pt;}
.yc{bottom:790.653333pt;}
.y84{bottom:792.893333pt;}
.y40{bottom:794.013333pt;}
.y6c{bottom:794.653333pt;}
.yb{bottom:805.573333pt;}
.y83{bottom:811.653333pt;}
.y3f{bottom:812.773333pt;}
.ya{bottom:825.413333pt;}
.y82{bottom:830.373333pt;}
.y3e{bottom:831.493333pt;}
.y9{bottom:847.813333pt;}
.y81{bottom:849.093333pt;}
.y3d{bottom:850.213333pt;}
.y80{bottom:867.813333pt;}
.y3c{bottom:868.933333pt;}
.y8{bottom:877.733333pt;}
.y7f{bottom:886.533333pt;}
.y3b{bottom:887.653333pt;}
.y7e{bottom:901.733333pt;}
.y3a{bottom:906.373333pt;}
.y7{bottom:907.653333pt;}
.y7d{bottom:908.453333pt;}
.y39{bottom:925.093333pt;}
.y7c{bottom:927.013333pt;}
.y7b{bottom:933.733333pt;}
.y5{bottom:943.333333pt;}
.y38{bottom:943.813333pt;}
.y7a{bottom:952.293333pt;}
.y79{bottom:959.013333pt;}
.y37{bottom:962.533333pt;}
.y4{bottom:971.973333pt;}
.y36{bottom:981.253333pt;}
.y35{bottom:999.973333pt;}
.y3{bottom:1000.453333pt;}
.y34{bottom:1018.693333pt;}
.y2{bottom:1029.120000pt;}
.y33{bottom:1043.520000pt;}
.y1{bottom:1059.840000pt;}
.y32{bottom:1061.440000pt;}
.hf{height:2.546250pt;}
.h9{height:24.032000pt;}
.ha{height:29.600000pt;}
.hb{height:29.632000pt;}
.h7{height:34.374375pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hc{height:62.643750pt;}
.he{height:75.552000pt;}
.hd{height:81.270937pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:187.386667pt;}
.w7{width:341.213333pt;}
.w6{width:370.653333pt;}
.w4{width:375.906667pt;}
.w8{width:395.773333pt;}
.w5{width:424.893333pt;}
.w3{width:474.973333pt;}
.wa{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.920000pt;}
.xe{left:27.680000pt;}
.x1{left:47.999988pt;}
.xf{left:56.160000pt;}
.x5{left:61.759988pt;}
.x1b{left:66.879988pt;}
.x3{left:71.999988pt;}
.x13{left:76.511988pt;}
.x14{left:77.791988pt;}
.x6{left:80.831988pt;}
.x11{left:82.120000pt;}
.x4{left:85.791988pt;}
.xa{left:87.231988pt;}
.x1c{left:90.911988pt;}
.x2{left:96.031988pt;}
.x7{left:104.831988pt;}
.x1a{left:112.360000pt;}
.x15{left:114.271988pt;}
.xc{left:118.120000pt;}
.x16{left:128.831988pt;}
.x9{left:133.151988pt;}
.x8{left:144.026655pt;}
.xb{left:151.066667pt;}
.x19{left:164.186667pt;}
.x1d{left:168.986667pt;}
.xd{left:178.746667pt;}
.x10{left:202.586667pt;}
.x12{left:221.306667pt;}
.x17{left:232.026655pt;}
.x1e{left:235.386667pt;}
.x18{left:255.746655pt;}
}




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