
    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_f47bc389a7fa489fd975a994.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_26ecdd91fffd02b383293b84.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_e82c44094afa045481d2d94a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.145000;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_1857f10807562dc15e153abf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.145000;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_23dbbf311193da8188ad8a4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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);}
.v2{vertical-align:-57.600000px;}
.v5{vertical-align:-43.800000px;}
.v6{vertical-align:-22.320000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.160000px;}
.v3{vertical-align:57.600000px;}
.v1{vertical-align:72.000000px;}
.ls13{letter-spacing:-0.894000px;}
.ls17{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.453000px;}
.ls16{letter-spacing:-0.285000px;}
.ls12{letter-spacing:-0.262800px;}
.lsb{letter-spacing:-0.198600px;}
.lsf{letter-spacing:-0.175200px;}
.lsa{letter-spacing:-0.169200px;}
.ls8{letter-spacing:-0.166800px;}
.ls14{letter-spacing:-0.165600px;}
.lsd{letter-spacing:-0.148200px;}
.ls9{letter-spacing:-0.121200px;}
.lsc{letter-spacing:-0.097200px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.065400px;}
.lse{letter-spacing:0.073200px;}
.ls4{letter-spacing:0.133200px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.262200px;}
.ls15{letter-spacing:0.285000px;}
.ls5{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.612000px;}
.ls3{letter-spacing:22.587120px;}
.ls2{letter-spacing:24.027120px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-76.448880px;}
.ws2{word-spacing:-75.836880px;}
.wsd{word-spacing:-55.435080px;}
.ws1b{word-spacing:-55.306080px;}
.wsb{word-spacing:-55.246080px;}
.ws13{word-spacing:-55.172880px;}
.ws9{word-spacing:-55.075680px;}
.wsa{word-spacing:-55.024680px;}
.ws10{word-spacing:-55.007280px;}
.ws7{word-spacing:-55.003680px;}
.wsc{word-spacing:-54.997680px;}
.ws8{word-spacing:-54.974280px;}
.wse{word-spacing:-54.951408px;}
.wsf{word-spacing:-54.278880px;}
.ws11{word-spacing:-48.147120px;}
.ws23{word-spacing:-41.328000px;}
.ws0{word-spacing:-36.276720px;}
.ws5{word-spacing:-34.508880px;}
.ws25{word-spacing:-29.220480px;}
.ws1{word-spacing:-29.099280px;}
.ws24{word-spacing:-28.935480px;}
.ws27{word-spacing:-20.664000px;}
.ws1e{word-spacing:-1.846080px;}
.ws21{word-spacing:-1.728000px;}
.ws16{word-spacing:-1.666800px;}
.ws1c{word-spacing:-1.476000px;}
.ws20{word-spacing:-1.152000px;}
.ws1a{word-spacing:-1.092240px;}
.ws19{word-spacing:-1.082160px;}
.ws14{word-spacing:-0.875520px;}
.ws1d{word-spacing:-0.820080px;}
.ws17{word-spacing:-0.756000px;}
.ws22{word-spacing:-0.576000px;}
.ws1f{word-spacing:-0.432000px;}
.ws15{word-spacing:-0.372240px;}
.ws18{word-spacing:-0.186720px;}
.ws26{word-spacing:-0.126720px;}
.ws28{word-spacing:0.000000px;}
.ws12{word-spacing:830.693760px;}
.ws3{word-spacing:4195.753200px;}
.ws4{word-spacing:4205.367360px;}
._3{margin-left:-20.517840px;}
._7{margin-left:-12.960000px;}
._8{margin-left:-7.278480px;}
._2{margin-left:-5.564160px;}
._9{margin-left:-4.501440px;}
._5{margin-left:-3.134880px;}
._4{margin-left:-2.120160px;}
._6{margin-left:-1.052400px;}
._1{width:1.043280px;}
._0{width:2.434320px;}
._e{width:5.254560px;}
._1a{width:8.542800px;}
._1b{width:9.821520px;}
._10{width:11.543040px;}
._11{width:12.784800px;}
._c{width:14.533680px;}
._d{width:15.685440px;}
._29{width:23.118480px;}
._28{width:24.221280px;}
._2c{width:28.317600px;}
._33{width:30.451080px;}
._20{width:33.486336px;}
._21{width:35.083488px;}
._24{width:36.231120px;}
._27{width:38.436240px;}
._31{width:40.032000px;}
._32{width:41.328000px;}
._f{width:44.175120px;}
._b{width:45.307920px;}
._a{width:46.584000px;}
._1c{width:48.157920px;}
._1d{width:50.201040px;}
._19{width:52.768800px;}
._2e{width:53.909280px;}
._30{width:55.236240px;}
._2f{width:56.422560px;}
._17{width:63.593760px;}
._18{width:65.203680px;}
._23{width:74.311920px;}
._22{width:75.526320px;}
._25{width:77.279040px;}
._26{width:78.626640px;}
._1e{width:80.007120px;}
._1f{width:81.601440px;}
._2d{width:89.400960px;}
._2b{width:98.231760px;}
._2a{width:99.297360px;}
._13{width:144.856320px;}
._12{width:146.111040px;}
._14{width:151.799040px;}
._16{width:206.907840px;}
._15{width:208.500240px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(4,97,156);}
.fsd{font-size:72.000000px;}
.fsb{font-size:108.000000px;}
.fs8{font-size:120.240000px;}
.fs3{font-size:128.160000px;}
.fsc{font-size:144.000000px;}
.fs2{font-size:159.840000px;}
.fs6{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs4{font-size:192.240000px;}
.fs9{font-size:192.384000px;}
.fs5{font-size:216.000000px;}
.fs1{font-size:239.760000px;}
.fs7{font-size:264.240000px;}
.fs0{font-size:347.760000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:180.930000px;}
.y7a{bottom:219.270000px;}
.y7e{bottom:330.585000px;}
.y6d{bottom:343.980000px;}
.y7f{bottom:344.805000px;}
.y6e{bottom:347.190000px;}
.y7c{bottom:377.490000px;}
.y7d{bottom:381.450000px;}
.y6c{bottom:446.730000px;}
.y6b{bottom:504.360000px;}
.yb{bottom:530.535000px;}
.y6a{bottom:570.960000px;}
.ya{bottom:571.500000px;}
.y9{bottom:585.750000px;}
.y69{bottom:628.560000px;}
.yc{bottom:648.210000px;}
.y68{bottom:686.160000px;}
.y71{bottom:1172.805000px;}
.y70{bottom:1232.205000px;}
.y73{bottom:1319.250000px;}
.y74{bottom:1324.440000px;}
.y72{bottom:1378.650000px;}
.y79{bottom:1473.270000px;}
.y78{bottom:1516.470000px;}
.y77{bottom:1568.670000px;}
.y76{bottom:1611.870000px;}
.y75{bottom:1655.070000px;}
.y61{bottom:1731.315000px;}
.y6f{bottom:1749.060000px;}
.y60{bottom:1788.915000px;}
.y5f{bottom:1846.515000px;}
.y5e{bottom:1904.115000px;}
.y5d{bottom:1961.715000px;}
.y7{bottom:2037.750000px;}
.y5c{bottom:2419.125000px;}
.y52{bottom:2471.940000px;}
.y5b{bottom:2476.725000px;}
.y51{bottom:2529.540000px;}
.y5a{bottom:2534.325000px;}
.y50{bottom:2587.140000px;}
.y59{bottom:2591.925000px;}
.y4f{bottom:2644.740000px;}
.y58{bottom:2649.525000px;}
.y67{bottom:2655.360000px;}
.y4e{bottom:2702.340000px;}
.y57{bottom:2707.125000px;}
.y66{bottom:2712.960000px;}
.y4d{bottom:2759.940000px;}
.y56{bottom:2764.725000px;}
.y65{bottom:2770.560000px;}
.y4c{bottom:2817.540000px;}
.y55{bottom:2822.370000px;}
.y64{bottom:2828.160000px;}
.y4b{bottom:2875.140000px;}
.y54{bottom:2879.970000px;}
.y63{bottom:2885.760000px;}
.y4a{bottom:2932.770000px;}
.y53{bottom:2937.570000px;}
.y62{bottom:2943.360000px;}
.y8{bottom:3034.050000px;}
.y20{bottom:3250.080000px;}
.y42{bottom:3256.455000px;}
.y1f{bottom:3307.680000px;}
.y41{bottom:3315.855000px;}
.y30{bottom:3325.065000px;}
.y1e{bottom:3365.310000px;}
.y49{bottom:3374.925000px;}
.y40{bottom:3375.255000px;}
.y2f{bottom:3382.665000px;}
.y1d{bottom:3422.910000px;}
.y48{bottom:3434.325000px;}
.y3f{bottom:3434.655000px;}
.y2e{bottom:3440.265000px;}
.y1c{bottom:3480.510000px;}
.y47{bottom:3493.725000px;}
.y3e{bottom:3494.055000px;}
.y2d{bottom:3497.865000px;}
.y39{bottom:3499.050000px;}
.y1b{bottom:3538.110000px;}
.y46{bottom:3553.125000px;}
.y3d{bottom:3553.455000px;}
.y2c{bottom:3555.465000px;}
.y34{bottom:3556.110000px;}
.y38{bottom:3558.450000px;}
.y1a{bottom:3595.710000px;}
.y45{bottom:3612.525000px;}
.y3c{bottom:3612.855000px;}
.y2b{bottom:3613.110000px;}
.y33{bottom:3615.510000px;}
.y37{bottom:3617.850000px;}
.y19{bottom:3653.310000px;}
.y2a{bottom:3670.710000px;}
.y44{bottom:3671.925000px;}
.y3b{bottom:3672.255000px;}
.y32{bottom:3674.955000px;}
.y36{bottom:3677.250000px;}
.y18{bottom:3710.910000px;}
.y29{bottom:3728.310000px;}
.y3a{bottom:3769.095000px;}
.y43{bottom:3770.250000px;}
.y35{bottom:3776.910000px;}
.y28{bottom:3785.910000px;}
.y17{bottom:3826.110000px;}
.y27{bottom:3843.510000px;}
.y16{bottom:3883.710000px;}
.y26{bottom:3901.110000px;}
.y15{bottom:3941.310000px;}
.y25{bottom:3958.710000px;}
.y11{bottom:3960.435000px;}
.y14{bottom:3998.910000px;}
.y24{bottom:4016.310000px;}
.y10{bottom:4018.035000px;}
.y13{bottom:4056.510000px;}
.y23{bottom:4073.910000px;}
.yf{bottom:4075.635000px;}
.y12{bottom:4114.110000px;}
.y22{bottom:4131.510000px;}
.ye{bottom:4133.235000px;}
.y21{bottom:4245.630000px;}
.y31{bottom:4249.050000px;}
.yd{bottom:4254.870000px;}
.y4{bottom:4476.345000px;}
.y6{bottom:4508.970000px;}
.y3{bottom:4559.145000px;}
.y5{bottom:4561.890000px;}
.y2{bottom:4631.145000px;}
.y1{bottom:4858.380000px;}
.h10{height:58.824000px;}
.he{height:88.236000px;}
.h4{height:93.303984px;}
.h9{height:98.236080px;}
.hf{height:117.648000px;}
.h6{height:122.133867px;}
.hd{height:137.059920px;}
.hc{height:137.177568px;}
.ha{height:157.060080px;}
.hb{height:157.177728px;}
.h5{height:157.253906px;}
.h3{height:188.367891px;}
.h7{height:215.884080px;}
.h8{height:224.044080px;}
.h2{height:253.178789px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x4f{left:75.131947px;}
.x5{left:82.367947px;}
.xe{left:145.583947px;}
.x9{left:152.204947px;}
.x2a{left:209.594947px;}
.x7{left:247.604947px;}
.xa{left:379.544947px;}
.x8{left:406.049947px;}
.xb{left:436.889947px;}
.xf{left:461.519947px;}
.x44{left:571.139947px;}
.x1{left:834.149947px;}
.x3f{left:905.834947px;}
.x4{left:915.149947px;}
.x50{left:999.689947px;}
.x10{left:1024.349947px;}
.x40{left:1029.854947px;}
.x3c{left:1095.989947px;}
.x3a{left:1098.509947px;}
.x3d{left:1101.029947px;}
.x3b{left:1131.629947px;}
.x2{left:1181.954947px;}
.x3e{left:1270.049947px;}
.x12{left:1291.574947px;}
.x43{left:1333.364947px;}
.x11{left:1386.149947px;}
.x46{left:1417.889947px;}
.x4a{left:1447.844947px;}
.x4b{left:1461.344947px;}
.x4d{left:1471.964947px;}
.x49{left:1483.379947px;}
.x45{left:1518.869947px;}
.x3{left:1521.254947px;}
.x4c{left:1650.344947px;}
.x41{left:1679.144947px;}
.x4e{left:1804.424947px;}
.x48{left:1894.349947px;}
.x47{left:1898.669947px;}
.x38{left:1900.229947px;}
.x24{left:1921.139947px;}
.x25{left:1931.729947px;}
.x29{left:1934.609947px;}
.x35{left:1938.929947px;}
.x36{left:1945.589947px;}
.x28{left:1956.749947px;}
.x37{left:1960.349947px;}
.xd{left:1967.429947px;}
.x27{left:1976.729947px;}
.x26{left:2015.609947px;}
.x42{left:2091.389947px;}
.x39{left:2119.469947px;}
.x23{left:2225.489947px;}
.x21{left:2261.849947px;}
.x22{left:2268.689947px;}
.x20{left:2300.729947px;}
.x1c{left:2316.389947px;}
.x1f{left:2371.289947px;}
.x1e{left:2373.809947px;}
.x1d{left:2379.209947px;}
.x1b{left:2413.694947px;}
.x6{left:2535.269947px;}
.xc{left:2571.914947px;}
.x2d{left:2713.319947px;}
.x32{left:2728.619947px;}
.x2c{left:2733.479947px;}
.x13{left:2737.829947px;}
.x30{left:2741.399947px;}
.x33{left:2748.779947px;}
.x15{left:2771.489947px;}
.x14{left:2780.669947px;}
.x2e{left:2790.899947px;}
.x16{left:2827.949947px;}
.x2f{left:2839.499947px;}
.x31{left:2843.279947px;}
.x2b{left:2856.059947px;}
.x34{left:2867.219947px;}
.x52{left:3066.839947px;}
.x17{left:3131.489947px;}
.x18{left:3161.009947px;}
.x1a{left:3166.589947px;}
.x19{left:3179.909947px;}
.x53{left:3264.839947px;}
.x51{left:3329.564947px;}
@media print{
.v2{vertical-align:-51.200000pt;}
.v5{vertical-align:-38.933333pt;}
.v6{vertical-align:-19.840000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.253333pt;}
.v3{vertical-align:51.200000pt;}
.v1{vertical-align:64.000000pt;}
.ls13{letter-spacing:-0.794667pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.402667pt;}
.ls16{letter-spacing:-0.253333pt;}
.ls12{letter-spacing:-0.233600pt;}
.lsb{letter-spacing:-0.176533pt;}
.lsf{letter-spacing:-0.155733pt;}
.lsa{letter-spacing:-0.150400pt;}
.ls8{letter-spacing:-0.148267pt;}
.ls14{letter-spacing:-0.147200pt;}
.lsd{letter-spacing:-0.131733pt;}
.ls9{letter-spacing:-0.107733pt;}
.lsc{letter-spacing:-0.086400pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.058133pt;}
.lse{letter-spacing:0.065067pt;}
.ls4{letter-spacing:0.118400pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.233067pt;}
.ls15{letter-spacing:0.253333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.544000pt;}
.ls3{letter-spacing:20.077440pt;}
.ls2{letter-spacing:21.357440pt;}
.ws6{word-spacing:-67.954560pt;}
.ws2{word-spacing:-67.410560pt;}
.wsd{word-spacing:-49.275627pt;}
.ws1b{word-spacing:-49.160960pt;}
.wsb{word-spacing:-49.107627pt;}
.ws13{word-spacing:-49.042560pt;}
.ws9{word-spacing:-48.956160pt;}
.wsa{word-spacing:-48.910827pt;}
.ws10{word-spacing:-48.895360pt;}
.ws7{word-spacing:-48.892160pt;}
.wsc{word-spacing:-48.886827pt;}
.ws8{word-spacing:-48.866027pt;}
.wse{word-spacing:-48.845696pt;}
.wsf{word-spacing:-48.247893pt;}
.ws11{word-spacing:-42.797440pt;}
.ws23{word-spacing:-36.736000pt;}
.ws0{word-spacing:-32.245973pt;}
.ws5{word-spacing:-30.674560pt;}
.ws25{word-spacing:-25.973760pt;}
.ws1{word-spacing:-25.866027pt;}
.ws24{word-spacing:-25.720427pt;}
.ws27{word-spacing:-18.368000pt;}
.ws1e{word-spacing:-1.640960pt;}
.ws21{word-spacing:-1.536000pt;}
.ws16{word-spacing:-1.481600pt;}
.ws1c{word-spacing:-1.312000pt;}
.ws20{word-spacing:-1.024000pt;}
.ws1a{word-spacing:-0.970880pt;}
.ws19{word-spacing:-0.961920pt;}
.ws14{word-spacing:-0.778240pt;}
.ws1d{word-spacing:-0.728960pt;}
.ws17{word-spacing:-0.672000pt;}
.ws22{word-spacing:-0.512000pt;}
.ws1f{word-spacing:-0.384000pt;}
.ws15{word-spacing:-0.330880pt;}
.ws18{word-spacing:-0.165973pt;}
.ws26{word-spacing:-0.112640pt;}
.ws28{word-spacing:0.000000pt;}
.ws12{word-spacing:738.394453pt;}
.ws3{word-spacing:3729.558400pt;}
.ws4{word-spacing:3738.104320pt;}
._3{margin-left:-18.238080pt;}
._7{margin-left:-11.520000pt;}
._8{margin-left:-6.469760pt;}
._2{margin-left:-4.945920pt;}
._9{margin-left:-4.001280pt;}
._5{margin-left:-2.786560pt;}
._4{margin-left:-1.884587pt;}
._6{margin-left:-0.935467pt;}
._1{width:0.927360pt;}
._0{width:2.163840pt;}
._e{width:4.670720pt;}
._1a{width:7.593600pt;}
._1b{width:8.730240pt;}
._10{width:10.260480pt;}
._11{width:11.364267pt;}
._c{width:12.918827pt;}
._d{width:13.942613pt;}
._29{width:20.549760pt;}
._28{width:21.530027pt;}
._2c{width:25.171200pt;}
._33{width:27.067627pt;}
._20{width:29.765632pt;}
._21{width:31.185323pt;}
._24{width:32.205440pt;}
._27{width:34.165547pt;}
._31{width:35.584000pt;}
._32{width:36.736000pt;}
._f{width:39.266773pt;}
._b{width:40.273707pt;}
._a{width:41.408000pt;}
._1c{width:42.807040pt;}
._1d{width:44.623147pt;}
._19{width:46.905600pt;}
._2e{width:47.919360pt;}
._30{width:49.098880pt;}
._2f{width:50.153387pt;}
._17{width:56.527787pt;}
._18{width:57.958827pt;}
._23{width:66.055040pt;}
._22{width:67.134507pt;}
._25{width:68.692480pt;}
._26{width:69.890347pt;}
._1e{width:71.117440pt;}
._1f{width:72.534613pt;}
._2d{width:79.467520pt;}
._2b{width:87.317120pt;}
._2a{width:88.264320pt;}
._13{width:128.761173pt;}
._12{width:129.876480pt;}
._14{width:134.932480pt;}
._16{width:183.918080pt;}
._15{width:185.333547pt;}
.fsd{font-size:64.000000pt;}
.fsb{font-size:96.000000pt;}
.fs8{font-size:106.880000pt;}
.fs3{font-size:113.920000pt;}
.fsc{font-size:128.000000pt;}
.fs2{font-size:142.080000pt;}
.fs6{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs4{font-size:170.880000pt;}
.fs9{font-size:171.008000pt;}
.fs5{font-size:192.000000pt;}
.fs1{font-size:213.120000pt;}
.fs7{font-size:234.880000pt;}
.fs0{font-size:309.120000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:160.826667pt;}
.y7a{bottom:194.906667pt;}
.y7e{bottom:293.853333pt;}
.y6d{bottom:305.760000pt;}
.y7f{bottom:306.493333pt;}
.y6e{bottom:308.613333pt;}
.y7c{bottom:335.546667pt;}
.y7d{bottom:339.066667pt;}
.y6c{bottom:397.093333pt;}
.y6b{bottom:448.320000pt;}
.yb{bottom:471.586667pt;}
.y6a{bottom:507.520000pt;}
.ya{bottom:508.000000pt;}
.y9{bottom:520.666667pt;}
.y69{bottom:558.720000pt;}
.yc{bottom:576.186667pt;}
.y68{bottom:609.920000pt;}
.y71{bottom:1042.493333pt;}
.y70{bottom:1095.293333pt;}
.y73{bottom:1172.666667pt;}
.y74{bottom:1177.280000pt;}
.y72{bottom:1225.466667pt;}
.y79{bottom:1309.573333pt;}
.y78{bottom:1347.973333pt;}
.y77{bottom:1394.373333pt;}
.y76{bottom:1432.773333pt;}
.y75{bottom:1471.173333pt;}
.y61{bottom:1538.946667pt;}
.y6f{bottom:1554.720000pt;}
.y60{bottom:1590.146667pt;}
.y5f{bottom:1641.346667pt;}
.y5e{bottom:1692.546667pt;}
.y5d{bottom:1743.746667pt;}
.y7{bottom:1811.333333pt;}
.y5c{bottom:2150.333333pt;}
.y52{bottom:2197.280000pt;}
.y5b{bottom:2201.533333pt;}
.y51{bottom:2248.480000pt;}
.y5a{bottom:2252.733333pt;}
.y50{bottom:2299.680000pt;}
.y59{bottom:2303.933333pt;}
.y4f{bottom:2350.880000pt;}
.y58{bottom:2355.133333pt;}
.y67{bottom:2360.320000pt;}
.y4e{bottom:2402.080000pt;}
.y57{bottom:2406.333333pt;}
.y66{bottom:2411.520000pt;}
.y4d{bottom:2453.280000pt;}
.y56{bottom:2457.533333pt;}
.y65{bottom:2462.720000pt;}
.y4c{bottom:2504.480000pt;}
.y55{bottom:2508.773333pt;}
.y64{bottom:2513.920000pt;}
.y4b{bottom:2555.680000pt;}
.y54{bottom:2559.973333pt;}
.y63{bottom:2565.120000pt;}
.y4a{bottom:2606.906667pt;}
.y53{bottom:2611.173333pt;}
.y62{bottom:2616.320000pt;}
.y8{bottom:2696.933333pt;}
.y20{bottom:2888.960000pt;}
.y42{bottom:2894.626667pt;}
.y1f{bottom:2940.160000pt;}
.y41{bottom:2947.426667pt;}
.y30{bottom:2955.613333pt;}
.y1e{bottom:2991.386667pt;}
.y49{bottom:2999.933333pt;}
.y40{bottom:3000.226667pt;}
.y2f{bottom:3006.813333pt;}
.y1d{bottom:3042.586667pt;}
.y48{bottom:3052.733333pt;}
.y3f{bottom:3053.026667pt;}
.y2e{bottom:3058.013333pt;}
.y1c{bottom:3093.786667pt;}
.y47{bottom:3105.533333pt;}
.y3e{bottom:3105.826667pt;}
.y2d{bottom:3109.213333pt;}
.y39{bottom:3110.266667pt;}
.y1b{bottom:3144.986667pt;}
.y46{bottom:3158.333333pt;}
.y3d{bottom:3158.626667pt;}
.y2c{bottom:3160.413333pt;}
.y34{bottom:3160.986667pt;}
.y38{bottom:3163.066667pt;}
.y1a{bottom:3196.186667pt;}
.y45{bottom:3211.133333pt;}
.y3c{bottom:3211.426667pt;}
.y2b{bottom:3211.653333pt;}
.y33{bottom:3213.786667pt;}
.y37{bottom:3215.866667pt;}
.y19{bottom:3247.386667pt;}
.y2a{bottom:3262.853333pt;}
.y44{bottom:3263.933333pt;}
.y3b{bottom:3264.226667pt;}
.y32{bottom:3266.626667pt;}
.y36{bottom:3268.666667pt;}
.y18{bottom:3298.586667pt;}
.y29{bottom:3314.053333pt;}
.y3a{bottom:3350.306667pt;}
.y43{bottom:3351.333333pt;}
.y35{bottom:3357.253333pt;}
.y28{bottom:3365.253333pt;}
.y17{bottom:3400.986667pt;}
.y27{bottom:3416.453333pt;}
.y16{bottom:3452.186667pt;}
.y26{bottom:3467.653333pt;}
.y15{bottom:3503.386667pt;}
.y25{bottom:3518.853333pt;}
.y11{bottom:3520.386667pt;}
.y14{bottom:3554.586667pt;}
.y24{bottom:3570.053333pt;}
.y10{bottom:3571.586667pt;}
.y13{bottom:3605.786667pt;}
.y23{bottom:3621.253333pt;}
.yf{bottom:3622.786667pt;}
.y12{bottom:3656.986667pt;}
.y22{bottom:3672.453333pt;}
.ye{bottom:3673.986667pt;}
.y21{bottom:3773.893333pt;}
.y31{bottom:3776.933333pt;}
.yd{bottom:3782.106667pt;}
.y4{bottom:3978.973333pt;}
.y6{bottom:4007.973333pt;}
.y3{bottom:4052.573333pt;}
.y5{bottom:4055.013333pt;}
.y2{bottom:4116.573333pt;}
.y1{bottom:4318.560000pt;}
.h10{height:52.288000pt;}
.he{height:78.432000pt;}
.h4{height:82.936875pt;}
.h9{height:87.320960pt;}
.hf{height:104.576000pt;}
.h6{height:108.563437pt;}
.hd{height:121.831040pt;}
.hc{height:121.935616pt;}
.ha{height:139.608960pt;}
.hb{height:139.713536pt;}
.h5{height:139.781250pt;}
.h3{height:167.438125pt;}
.h7{height:191.896960pt;}
.h8{height:199.150293pt;}
.h2{height:225.047812pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x4f{left:66.783953pt;}
.x5{left:73.215953pt;}
.xe{left:129.407953pt;}
.x9{left:135.293286pt;}
.x2a{left:186.306619pt;}
.x7{left:220.093286pt;}
.xa{left:337.373286pt;}
.x8{left:360.933286pt;}
.xb{left:388.346619pt;}
.xf{left:410.239953pt;}
.x44{left:507.679953pt;}
.x1{left:741.466619pt;}
.x3f{left:805.186619pt;}
.x4{left:813.466619pt;}
.x50{left:888.613286pt;}
.x10{left:910.533286pt;}
.x40{left:915.426619pt;}
.x3c{left:974.213286pt;}
.x3a{left:976.453286pt;}
.x3d{left:978.693286pt;}
.x3b{left:1005.893286pt;}
.x2{left:1050.626619pt;}
.x3e{left:1128.933286pt;}
.x12{left:1148.066619pt;}
.x43{left:1185.213286pt;}
.x11{left:1232.133286pt;}
.x46{left:1260.346619pt;}
.x4a{left:1286.973286pt;}
.x4b{left:1298.973286pt;}
.x4d{left:1308.413286pt;}
.x49{left:1318.559953pt;}
.x45{left:1350.106619pt;}
.x3{left:1352.226619pt;}
.x4c{left:1466.973286pt;}
.x41{left:1492.573286pt;}
.x4e{left:1603.933286pt;}
.x48{left:1683.866619pt;}
.x47{left:1687.706619pt;}
.x38{left:1689.093286pt;}
.x24{left:1707.679953pt;}
.x25{left:1717.093286pt;}
.x29{left:1719.653286pt;}
.x35{left:1723.493286pt;}
.x36{left:1729.413286pt;}
.x28{left:1739.333286pt;}
.x37{left:1742.533286pt;}
.xd{left:1748.826619pt;}
.x27{left:1757.093286pt;}
.x26{left:1791.653286pt;}
.x42{left:1859.013286pt;}
.x39{left:1883.973286pt;}
.x23{left:1978.213286pt;}
.x21{left:2010.533286pt;}
.x22{left:2016.613286pt;}
.x20{left:2045.093286pt;}
.x1c{left:2059.013286pt;}
.x1f{left:2107.813286pt;}
.x1e{left:2110.053286pt;}
.x1d{left:2114.853286pt;}
.x1b{left:2145.506619pt;}
.x6{left:2253.573286pt;}
.xc{left:2286.146619pt;}
.x2d{left:2411.839953pt;}
.x32{left:2425.439953pt;}
.x2c{left:2429.759953pt;}
.x13{left:2433.626619pt;}
.x30{left:2436.799953pt;}
.x33{left:2443.359953pt;}
.x15{left:2463.546619pt;}
.x14{left:2471.706619pt;}
.x2e{left:2480.799953pt;}
.x16{left:2513.733286pt;}
.x2f{left:2523.999953pt;}
.x31{left:2527.359953pt;}
.x2b{left:2538.719953pt;}
.x34{left:2548.639953pt;}
.x52{left:2726.079953pt;}
.x17{left:2783.546619pt;}
.x18{left:2809.786619pt;}
.x1a{left:2814.746619pt;}
.x19{left:2826.586619pt;}
.x53{left:2902.079953pt;}
.x51{left:2959.613286pt;}
}




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