
    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_1438e153aff594fb112fda4e.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_82ffc2cbe6c525321913665b.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_e5ebf33734bd63865214a906.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_6ba6a6abb19328000f9eb113.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_6193fc93719873dbca485474.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;}
.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:-23.760000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-0.960000px;}
.ls8{letter-spacing:-0.798000px;}
.lsb{letter-spacing:-0.780000px;}
.ls12{letter-spacing:-0.696000px;}
.ls18{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.463800px;}
.ls13{letter-spacing:-0.414000px;}
.lsd{letter-spacing:-0.303000px;}
.ls7{letter-spacing:-0.115800px;}
.lsf{letter-spacing:-0.107400px;}
.ls19{letter-spacing:-0.069600px;}
.lsc{letter-spacing:-0.061200px;}
.ls11{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.023760px;}
.lse{letter-spacing:0.140400px;}
.ls1a{letter-spacing:0.174000px;}
.lsa{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.306000px;}
.ls4{letter-spacing:0.479400px;}
.ls15{letter-spacing:0.479520px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls16{letter-spacing:12.186720px;}
.ls3{letter-spacing:38.106720px;}
.ls14{letter-spacing:42.426720px;}
.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;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws9{word-spacing:-13.811760px;}
.ws5{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.444560px;}
.wse{word-spacing:-13.436160px;}
.wsc{word-spacing:-13.398360px;}
.ws6{word-spacing:-13.389960px;}
.wsb{word-spacing:-13.202760px;}
.ws7{word-spacing:-12.707760px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1003.789440px;}
._5{margin-left:-581.774400px;}
._e{margin-left:-5.729760px;}
._7{margin-left:-4.329600px;}
._6{margin-left:-3.312000px;}
._f{margin-left:-2.289360px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._a{width:2.441280px;}
._8{width:4.059840px;}
._9{width:5.983200px;}
._b{width:7.719360px;}
._10{width:8.905200px;}
._11{width:10.008480px;}
._d{width:11.059200px;}
._c{width:12.131280px;}
._1b{width:15.242400px;}
._1a{width:22.350240px;}
._12{width:53.843760px;}
._17{width:59.042880px;}
._13{width:64.879440px;}
._16{width:82.827360px;}
._14{width:92.807280px;}
._15{width:116.591760px;}
._18{width:137.838240px;}
._19{width:202.470240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:6.660000px;}
.y5b{bottom:6.840000px;}
.y55{bottom:7.020000px;}
.y59{bottom:7.065000px;}
.y9f{bottom:7.560000px;}
.y6c{bottom:8.640000px;}
.y77{bottom:8.820000px;}
.y53{bottom:17.820000px;}
.y8c{bottom:18.180000px;}
.y9d{bottom:18.225000px;}
.y6a{bottom:21.240000px;}
.yd1{bottom:27.720000px;}
.y9b{bottom:28.665000px;}
.y8a{bottom:28.800000px;}
.yce{bottom:34.770000px;}
.y8b{bottom:39.240000px;}
.y9c{bottom:39.285000px;}
.yd0{bottom:48.810000px;}
.y9e{bottom:49.725000px;}
.y6{bottom:58.320000px;}
.ycf{bottom:69.870000px;}
.y99{bottom:87.120000px;}
.ycc{bottom:92.160000px;}
.y31{bottom:99.000000px;}
.y68{bottom:106.200000px;}
.y98{bottom:108.180000px;}
.ycb{bottom:113.220000px;}
.ycd{bottom:119.520000px;}
.y30{bottom:120.060000px;}
.y67{bottom:127.260000px;}
.y97{bottom:129.240000px;}
.yca{bottom:134.280000px;}
.y2f{bottom:141.120000px;}
.y66{bottom:148.320000px;}
.y96{bottom:150.300000px;}
.yc9{bottom:155.370000px;}
.y2e{bottom:162.210000px;}
.y65{bottom:169.230000px;}
.y95{bottom:171.390000px;}
.yc8{bottom:176.430000px;}
.y2d{bottom:183.270000px;}
.y64{bottom:190.290000px;}
.y94{bottom:192.450000px;}
.yc7{bottom:197.490000px;}
.y2c{bottom:204.330000px;}
.y63{bottom:211.350000px;}
.y93{bottom:213.510000px;}
.yc6{bottom:218.550000px;}
.y2b{bottom:225.390000px;}
.y62{bottom:232.410000px;}
.y92{bottom:234.570000px;}
.yc5{bottom:239.610000px;}
.y2a{bottom:246.450000px;}
.y91{bottom:249.690000px;}
.y61{bottom:253.470000px;}
.yc4{bottom:260.670000px;}
.y29{bottom:267.510000px;}
.y90{bottom:271.470000px;}
.y60{bottom:274.530000px;}
.yc3{bottom:281.730000px;}
.y28{bottom:288.570000px;}
.y8f{bottom:293.070000px;}
.y5f{bottom:295.590000px;}
.yc2{bottom:302.790000px;}
.y27{bottom:309.630000px;}
.y8e{bottom:314.850000px;}
.y5e{bottom:316.650000px;}
.yc1{bottom:323.850000px;}
.y26{bottom:330.690000px;}
.y8d{bottom:336.630000px;}
.y5d{bottom:337.710000px;}
.yc0{bottom:344.910000px;}
.y25{bottom:351.750000px;}
.y5c{bottom:358.770000px;}
.y89{bottom:359.130000px;}
.ybf{bottom:365.970000px;}
.y24{bottom:372.810000px;}
.y5a{bottom:374.070000px;}
.yb7{bottom:379.830000px;}
.ybe{bottom:387.030000px;}
.y23{bottom:393.870000px;}
.y58{bottom:395.670000px;}
.yb6{bottom:400.935000px;}
.ybd{bottom:408.135000px;}
.y22{bottom:414.975000px;}
.y57{bottom:417.495000px;}
.yb5{bottom:421.995000px;}
.ybc{bottom:429.195000px;}
.y88{bottom:431.895000px;}
.y21{bottom:436.035000px;}
.y56{bottom:439.275000px;}
.yb4{bottom:443.055000px;}
.ybb{bottom:450.255000px;}
.y87{bottom:452.955000px;}
.y20{bottom:457.095000px;}
.y54{bottom:461.055000px;}
.yb3{bottom:464.115000px;}
.yba{bottom:471.315000px;}
.y86{bottom:474.015000px;}
.y1f{bottom:478.155000px;}
.y52{bottom:483.555000px;}
.yb2{bottom:485.175000px;}
.yb9{bottom:492.375000px;}
.y85{bottom:495.075000px;}
.y1e{bottom:499.215000px;}
.yb1{bottom:506.235000px;}
.yb8{bottom:513.435000px;}
.y84{bottom:516.135000px;}
.y1d{bottom:522.615000px;}
.yb0{bottom:527.295000px;}
.y51{bottom:534.495000px;}
.y83{bottom:537.195000px;}
.yaf{bottom:548.355000px;}
.y1c{bottom:552.495000px;}
.y50{bottom:555.555000px;}
.y82{bottom:558.255000px;}
.yae{bottom:569.415000px;}
.y1b{bottom:573.555000px;}
.y4f{bottom:576.615000px;}
.y81{bottom:579.315000px;}
.yad{bottom:590.475000px;}
.y1a{bottom:594.615000px;}
.y4e{bottom:597.675000px;}
.y80{bottom:600.375000px;}
.yac{bottom:611.535000px;}
.y19{bottom:615.675000px;}
.y4d{bottom:618.735000px;}
.y7f{bottom:621.435000px;}
.yab{bottom:632.595000px;}
.y18{bottom:636.735000px;}
.y4c{bottom:639.795000px;}
.y7e{bottom:642.495000px;}
.yaa{bottom:653.685000px;}
.y17{bottom:657.825000px;}
.y4b{bottom:660.885000px;}
.y7d{bottom:663.585000px;}
.ya9{bottom:674.745000px;}
.y16{bottom:678.885000px;}
.y4a{bottom:681.945000px;}
.y7c{bottom:684.645000px;}
.ya8{bottom:695.805000px;}
.y15{bottom:699.945000px;}
.y49{bottom:703.005000px;}
.y7b{bottom:705.705000px;}
.ya7{bottom:716.865000px;}
.y7a{bottom:720.825000px;}
.y14{bottom:721.005000px;}
.y48{bottom:724.065000px;}
.ya6{bottom:737.925000px;}
.y13{bottom:742.065000px;}
.y47{bottom:745.125000px;}
.y79{bottom:745.845000px;}
.ya5{bottom:758.985000px;}
.y12{bottom:763.125000px;}
.y46{bottom:766.005000px;}
.y78{bottom:771.045000px;}
.ya4{bottom:780.045000px;}
.y11{bottom:784.185000px;}
.y45{bottom:787.065000px;}
.ya3{bottom:795.165000px;}
.y76{bottom:796.065000px;}
.y10{bottom:805.245000px;}
.y44{bottom:808.125000px;}
.ya2{bottom:816.945000px;}
.y75{bottom:821.265000px;}
.yf{bottom:826.305000px;}
.y43{bottom:829.185000px;}
.ya1{bottom:838.725000px;}
.y74{bottom:847.185000px;}
.ye{bottom:847.545000px;}
.y42{bottom:850.245000px;}
.ya0{bottom:860.505000px;}
.yd{bottom:870.765000px;}
.y41{bottom:871.305000px;}
.y9a{bottom:883.005000px;}
.y40{bottom:892.365000px;}
.yc{bottom:897.045000px;}
.y73{bottom:904.830000px;}
.y3f{bottom:913.470000px;}
.yb{bottom:918.150000px;}
.y72{bottom:925.890000px;}
.y3e{bottom:934.530000px;}
.ya{bottom:934.710000px;}
.y71{bottom:946.950000px;}
.y3d{bottom:955.590000px;}
.y9{bottom:958.650000px;}
.y70{bottom:962.070000px;}
.y3c{bottom:976.650000px;}
.y8{bottom:986.550000px;}
.y6f{bottom:987.090000px;}
.y3b{bottom:997.710000px;}
.y6e{bottom:1012.110000px;}
.y3a{bottom:1018.770000px;}
.y7{bottom:1020.210000px;}
.y6d{bottom:1036.950000px;}
.y39{bottom:1039.830000px;}
.y5{bottom:1060.350000px;}
.y38{bottom:1060.890000px;}
.y6b{bottom:1061.970000px;}
.y37{bottom:1081.950000px;}
.y69{bottom:1087.710000px;}
.y4{bottom:1092.570000px;}
.y36{bottom:1103.010000px;}
.y35{bottom:1124.070000px;}
.y3{bottom:1124.610000px;}
.y34{bottom:1145.130000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h16{height:2.864531px;}
.hd{height:21.600000px;}
.hb{height:21.780000px;}
.hc{height:21.816000px;}
.h10{height:24.840000px;}
.hf{height:25.020000px;}
.h12{height:25.200000px;}
.h7{height:38.671172px;}
.ha{height:43.560000px;}
.he{height:50.040000px;}
.h11{height:50.220000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h9{height:61.189805px;}
.h14{height:65.196000px;}
.h13{height:65.376000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h5{height:73.722656px;}
.h15{height:84.276000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:72.000000px;}
.wf{width:79.200000px;}
.wd{width:79.380000px;}
.we{width:79.416000px;}
.w10{width:85.500000px;}
.w7{width:88.380000px;}
.wa{width:89.640000px;}
.wb{width:89.676000px;}
.w17{width:92.916000px;}
.w5{width:93.060000px;}
.w3{width:93.096000px;}
.w6{width:94.536000px;}
.w14{width:96.876000px;}
.wc{width:98.856000px;}
.w11{width:99.216000px;}
.w13{width:99.756000px;}
.w15{width:99.900000px;}
.w18{width:100.620000px;}
.w8{width:100.656000px;}
.w12{width:105.480000px;}
.w16{width:106.380000px;}
.w9{width:113.976000px;}
.w19{width:210.810000px;}
.w1a{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:53.999987px;}
.x9{left:70.199987px;}
.x21{left:75.239987px;}
.x23{left:80.999987px;}
.x22{left:102.275987px;}
.xa{left:108.035987px;}
.x18{left:153.210000px;}
.x17{left:161.669987px;}
.xb{left:165.450000px;}
.x2{left:175.710000px;}
.x24{left:191.370000px;}
.x11{left:198.750000px;}
.x19{left:238.710000px;}
.x25{left:264.810000px;}
.x4{left:268.815000px;}
.xc{left:279.435000px;}
.x12{left:297.615000px;}
.x1a{left:337.935000px;}
.x1e{left:339.375000px;}
.x5{left:340.815000px;}
.xd{left:369.075000px;}
.x13{left:376.995000px;}
.x6{left:433.875000px;}
.x1b{left:443.415000px;}
.x1f{left:445.755000px;}
.x14{left:456.405000px;}
.xe{left:458.745000px;}
.x7{left:528.405000px;}
.x15{left:535.785000px;}
.x1c{left:543.165000px;}
.x20{left:546.405000px;}
.xf{left:548.385000px;}
.x16{left:614.985000px;}
.x8{left:616.785000px;}
.x10{left:638.070000px;}
.x1d{left:640.050000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.853333pt;}
.ls8{letter-spacing:-0.709333pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls12{letter-spacing:-0.618667pt;}
.ls18{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls13{letter-spacing:-0.368000pt;}
.lsd{letter-spacing:-0.269333pt;}
.ls7{letter-spacing:-0.102933pt;}
.lsf{letter-spacing:-0.095467pt;}
.ls19{letter-spacing:-0.061867pt;}
.lsc{letter-spacing:-0.054400pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.021120pt;}
.lse{letter-spacing:0.124800pt;}
.ls1a{letter-spacing:0.154667pt;}
.lsa{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.272000pt;}
.ls4{letter-spacing:0.426133pt;}
.ls15{letter-spacing:0.426240pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls16{letter-spacing:10.832640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls14{letter-spacing:37.712640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws9{word-spacing:-12.277120pt;}
.ws5{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.950720pt;}
.wse{word-spacing:-11.943253pt;}
.wsc{word-spacing:-11.909653pt;}
.ws6{word-spacing:-11.902187pt;}
.wsb{word-spacing:-11.735787pt;}
.ws7{word-spacing:-11.295787pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-892.257280pt;}
._5{margin-left:-517.132800pt;}
._e{margin-left:-5.093120pt;}
._7{margin-left:-3.848533pt;}
._6{margin-left:-2.944000pt;}
._f{margin-left:-2.034987pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._a{width:2.170027pt;}
._8{width:3.608747pt;}
._9{width:5.318400pt;}
._b{width:6.861653pt;}
._10{width:7.915733pt;}
._11{width:8.896427pt;}
._d{width:9.830400pt;}
._c{width:10.783360pt;}
._1b{width:13.548800pt;}
._1a{width:19.866880pt;}
._12{width:47.861120pt;}
._17{width:52.482560pt;}
._13{width:57.670613pt;}
._16{width:73.624320pt;}
._14{width:82.495360pt;}
._15{width:103.637120pt;}
._18{width:122.522880pt;}
._19{width:179.973547pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:5.920000pt;}
.y5b{bottom:6.080000pt;}
.y55{bottom:6.240000pt;}
.y59{bottom:6.280000pt;}
.y9f{bottom:6.720000pt;}
.y6c{bottom:7.680000pt;}
.y77{bottom:7.840000pt;}
.y53{bottom:15.840000pt;}
.y8c{bottom:16.160000pt;}
.y9d{bottom:16.200000pt;}
.y6a{bottom:18.880000pt;}
.yd1{bottom:24.640000pt;}
.y9b{bottom:25.480000pt;}
.y8a{bottom:25.600000pt;}
.yce{bottom:30.906667pt;}
.y8b{bottom:34.880000pt;}
.y9c{bottom:34.920000pt;}
.yd0{bottom:43.386667pt;}
.y9e{bottom:44.200000pt;}
.y6{bottom:51.840000pt;}
.ycf{bottom:62.106667pt;}
.y99{bottom:77.440000pt;}
.ycc{bottom:81.920000pt;}
.y31{bottom:88.000000pt;}
.y68{bottom:94.400000pt;}
.y98{bottom:96.160000pt;}
.ycb{bottom:100.640000pt;}
.ycd{bottom:106.240000pt;}
.y30{bottom:106.720000pt;}
.y67{bottom:113.120000pt;}
.y97{bottom:114.880000pt;}
.yca{bottom:119.360000pt;}
.y2f{bottom:125.440000pt;}
.y66{bottom:131.840000pt;}
.y96{bottom:133.600000pt;}
.yc9{bottom:138.106667pt;}
.y2e{bottom:144.186667pt;}
.y65{bottom:150.426667pt;}
.y95{bottom:152.346667pt;}
.yc8{bottom:156.826667pt;}
.y2d{bottom:162.906667pt;}
.y64{bottom:169.146667pt;}
.y94{bottom:171.066667pt;}
.yc7{bottom:175.546667pt;}
.y2c{bottom:181.626667pt;}
.y63{bottom:187.866667pt;}
.y93{bottom:189.786667pt;}
.yc6{bottom:194.266667pt;}
.y2b{bottom:200.346667pt;}
.y62{bottom:206.586667pt;}
.y92{bottom:208.506667pt;}
.yc5{bottom:212.986667pt;}
.y2a{bottom:219.066667pt;}
.y91{bottom:221.946667pt;}
.y61{bottom:225.306667pt;}
.yc4{bottom:231.706667pt;}
.y29{bottom:237.786667pt;}
.y90{bottom:241.306667pt;}
.y60{bottom:244.026667pt;}
.yc3{bottom:250.426667pt;}
.y28{bottom:256.506667pt;}
.y8f{bottom:260.506667pt;}
.y5f{bottom:262.746667pt;}
.yc2{bottom:269.146667pt;}
.y27{bottom:275.226667pt;}
.y8e{bottom:279.866667pt;}
.y5e{bottom:281.466667pt;}
.yc1{bottom:287.866667pt;}
.y26{bottom:293.946667pt;}
.y8d{bottom:299.226667pt;}
.y5d{bottom:300.186667pt;}
.yc0{bottom:306.586667pt;}
.y25{bottom:312.666667pt;}
.y5c{bottom:318.906667pt;}
.y89{bottom:319.226667pt;}
.ybf{bottom:325.306667pt;}
.y24{bottom:331.386667pt;}
.y5a{bottom:332.506667pt;}
.yb7{bottom:337.626667pt;}
.ybe{bottom:344.026667pt;}
.y23{bottom:350.106667pt;}
.y58{bottom:351.706667pt;}
.yb6{bottom:356.386667pt;}
.ybd{bottom:362.786667pt;}
.y22{bottom:368.866667pt;}
.y57{bottom:371.106667pt;}
.yb5{bottom:375.106667pt;}
.ybc{bottom:381.506667pt;}
.y88{bottom:383.906667pt;}
.y21{bottom:387.586667pt;}
.y56{bottom:390.466667pt;}
.yb4{bottom:393.826667pt;}
.ybb{bottom:400.226667pt;}
.y87{bottom:402.626667pt;}
.y20{bottom:406.306667pt;}
.y54{bottom:409.826667pt;}
.yb3{bottom:412.546667pt;}
.yba{bottom:418.946667pt;}
.y86{bottom:421.346667pt;}
.y1f{bottom:425.026667pt;}
.y52{bottom:429.826667pt;}
.yb2{bottom:431.266667pt;}
.yb9{bottom:437.666667pt;}
.y85{bottom:440.066667pt;}
.y1e{bottom:443.746667pt;}
.yb1{bottom:449.986667pt;}
.yb8{bottom:456.386667pt;}
.y84{bottom:458.786667pt;}
.y1d{bottom:464.546667pt;}
.yb0{bottom:468.706667pt;}
.y51{bottom:475.106667pt;}
.y83{bottom:477.506667pt;}
.yaf{bottom:487.426667pt;}
.y1c{bottom:491.106667pt;}
.y50{bottom:493.826667pt;}
.y82{bottom:496.226667pt;}
.yae{bottom:506.146667pt;}
.y1b{bottom:509.826667pt;}
.y4f{bottom:512.546667pt;}
.y81{bottom:514.946667pt;}
.yad{bottom:524.866667pt;}
.y1a{bottom:528.546667pt;}
.y4e{bottom:531.266667pt;}
.y80{bottom:533.666667pt;}
.yac{bottom:543.586667pt;}
.y19{bottom:547.266667pt;}
.y4d{bottom:549.986667pt;}
.y7f{bottom:552.386667pt;}
.yab{bottom:562.306667pt;}
.y18{bottom:565.986667pt;}
.y4c{bottom:568.706667pt;}
.y7e{bottom:571.106667pt;}
.yaa{bottom:581.053333pt;}
.y17{bottom:584.733333pt;}
.y4b{bottom:587.453333pt;}
.y7d{bottom:589.853333pt;}
.ya9{bottom:599.773333pt;}
.y16{bottom:603.453333pt;}
.y4a{bottom:606.173333pt;}
.y7c{bottom:608.573333pt;}
.ya8{bottom:618.493333pt;}
.y15{bottom:622.173333pt;}
.y49{bottom:624.893333pt;}
.y7b{bottom:627.293333pt;}
.ya7{bottom:637.213333pt;}
.y7a{bottom:640.733333pt;}
.y14{bottom:640.893333pt;}
.y48{bottom:643.613333pt;}
.ya6{bottom:655.933333pt;}
.y13{bottom:659.613333pt;}
.y47{bottom:662.333333pt;}
.y79{bottom:662.973333pt;}
.ya5{bottom:674.653333pt;}
.y12{bottom:678.333333pt;}
.y46{bottom:680.893333pt;}
.y78{bottom:685.373333pt;}
.ya4{bottom:693.373333pt;}
.y11{bottom:697.053333pt;}
.y45{bottom:699.613333pt;}
.ya3{bottom:706.813333pt;}
.y76{bottom:707.613333pt;}
.y10{bottom:715.773333pt;}
.y44{bottom:718.333333pt;}
.ya2{bottom:726.173333pt;}
.y75{bottom:730.013333pt;}
.yf{bottom:734.493333pt;}
.y43{bottom:737.053333pt;}
.ya1{bottom:745.533333pt;}
.y74{bottom:753.053333pt;}
.ye{bottom:753.373333pt;}
.y42{bottom:755.773333pt;}
.ya0{bottom:764.893333pt;}
.yd{bottom:774.013333pt;}
.y41{bottom:774.493333pt;}
.y9a{bottom:784.893333pt;}
.y40{bottom:793.213333pt;}
.yc{bottom:797.373333pt;}
.y73{bottom:804.293333pt;}
.y3f{bottom:811.973333pt;}
.yb{bottom:816.133333pt;}
.y72{bottom:823.013333pt;}
.y3e{bottom:830.693333pt;}
.ya{bottom:830.853333pt;}
.y71{bottom:841.733333pt;}
.y3d{bottom:849.413333pt;}
.y9{bottom:852.133333pt;}
.y70{bottom:855.173333pt;}
.y3c{bottom:868.133333pt;}
.y8{bottom:876.933333pt;}
.y6f{bottom:877.413333pt;}
.y3b{bottom:886.853333pt;}
.y6e{bottom:899.653333pt;}
.y3a{bottom:905.573333pt;}
.y7{bottom:906.853333pt;}
.y6d{bottom:921.733333pt;}
.y39{bottom:924.293333pt;}
.y5{bottom:942.533333pt;}
.y38{bottom:943.013333pt;}
.y6b{bottom:943.973333pt;}
.y37{bottom:961.733333pt;}
.y69{bottom:966.853333pt;}
.y4{bottom:971.173333pt;}
.y36{bottom:980.453333pt;}
.y35{bottom:999.173333pt;}
.y3{bottom:999.653333pt;}
.y34{bottom:1017.893333pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h16{height:2.546250pt;}
.hd{height:19.200000pt;}
.hb{height:19.360000pt;}
.hc{height:19.392000pt;}
.h10{height:22.080000pt;}
.hf{height:22.240000pt;}
.h12{height:22.400000pt;}
.h7{height:34.374375pt;}
.ha{height:38.720000pt;}
.he{height:44.480000pt;}
.h11{height:44.640000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h9{height:54.390938pt;}
.h14{height:57.952000pt;}
.h13{height:58.112000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h5{height:65.531250pt;}
.h15{height:74.912000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:64.000000pt;}
.wf{width:70.400000pt;}
.wd{width:70.560000pt;}
.we{width:70.592000pt;}
.w10{width:76.000000pt;}
.w7{width:78.560000pt;}
.wa{width:79.680000pt;}
.wb{width:79.712000pt;}
.w17{width:82.592000pt;}
.w5{width:82.720000pt;}
.w3{width:82.752000pt;}
.w6{width:84.032000pt;}
.w14{width:86.112000pt;}
.wc{width:87.872000pt;}
.w11{width:88.192000pt;}
.w13{width:88.672000pt;}
.w15{width:88.800000pt;}
.w18{width:89.440000pt;}
.w8{width:89.472000pt;}
.w12{width:93.760000pt;}
.w16{width:94.560000pt;}
.w9{width:101.312000pt;}
.w19{width:187.386667pt;}
.w1a{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:47.999988pt;}
.x9{left:62.399988pt;}
.x21{left:66.879988pt;}
.x23{left:71.999988pt;}
.x22{left:90.911988pt;}
.xa{left:96.031988pt;}
.x18{left:136.186667pt;}
.x17{left:143.706655pt;}
.xb{left:147.066667pt;}
.x2{left:156.186667pt;}
.x24{left:170.106667pt;}
.x11{left:176.666667pt;}
.x19{left:212.186667pt;}
.x25{left:235.386667pt;}
.x4{left:238.946667pt;}
.xc{left:248.386667pt;}
.x12{left:264.546667pt;}
.x1a{left:300.386667pt;}
.x1e{left:301.666667pt;}
.x5{left:302.946667pt;}
.xd{left:328.066667pt;}
.x13{left:335.106667pt;}
.x6{left:385.666667pt;}
.x1b{left:394.146667pt;}
.x1f{left:396.226667pt;}
.x14{left:405.693333pt;}
.xe{left:407.773333pt;}
.x7{left:469.693333pt;}
.x15{left:476.253333pt;}
.x1c{left:482.813333pt;}
.x20{left:485.693333pt;}
.xf{left:487.453333pt;}
.x16{left:546.653333pt;}
.x8{left:548.253333pt;}
.x10{left:567.173333pt;}
.x1d{left:568.933333pt;}
}




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