
    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_310523c864a806ed8c485f39.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_8ebf21621f8e3091b2f29cf5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.891602;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_26d9a887160f25c3b502b736.woff')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_5963b9fadf273a1b6221cd35.woff')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_59a53eff3756cb793a5346ca.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_db4311d13bd99cd71bf84416.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_40e64e30681a4dba5e38f916.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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:-24.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.lsf{letter-spacing:-4.176000px;}
.lsb{letter-spacing:-3.420000px;}
.lsd{letter-spacing:-3.330000px;}
.lse{letter-spacing:-3.150000px;}
.lsa{letter-spacing:-3.024000px;}
.lsc{letter-spacing:-2.970000px;}
.ls9{letter-spacing:-2.736000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.276480px;}
.ls17{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.167760px;}
.ls10{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.143640px;}
.ls13{letter-spacing:-0.126360px;}
.ls16{letter-spacing:-0.096120px;}
.ls11{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.069120px;}
.ls14{letter-spacing:-0.065880px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.065880px;}
.ls1a{letter-spacing:0.069120px;}
.ls6{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.131760px;}
.ls1{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.147600px;}
.ls1e{letter-spacing:0.153000px;}
.ls19{letter-spacing:0.167760px;}
.ls2{letter-spacing:0.204840px;}
.ls18{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.216360px;}
.ls1b{letter-spacing:0.219960px;}
.ls7{letter-spacing:0.225360px;}
.ls1d{letter-spacing:0.287280px;}
.ls33{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.504000px;}
.ls32{letter-spacing:11.448000px;}
.ls31{letter-spacing:11.455200px;}
.ls4{letter-spacing:31.824000px;}
.ls3{letter-spacing:36.406440px;}
.ls26{letter-spacing:67.248000px;}
.ls2c{letter-spacing:101.808000px;}
.ls28{letter-spacing:118.008000px;}
.ls30{letter-spacing:127.368000px;}
.ls2b{letter-spacing:144.648000px;}
.ls2d{letter-spacing:145.728000px;}
.ls29{letter-spacing:147.168000px;}
.ls2e{letter-spacing:149.328000px;}
.ls2a{letter-spacing:154.008000px;}
.ls27{letter-spacing:332.208000px;}
.ls2f{letter-spacing:335.448000px;}
.ls25{letter-spacing:393.408000px;}
.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;}
}
.wse{word-spacing:-65.880000px;}
.ws27{word-spacing:-47.880000px;}
.ws1{word-spacing:-32.544000px;}
.ws5{word-spacing:-28.368000px;}
.ws10{word-spacing:-21.627000px;}
.ws2{word-spacing:-20.340000px;}
.ws11{word-spacing:-19.124640px;}
.ws2f{word-spacing:-18.789120px;}
.ws3{word-spacing:-17.370000px;}
.ws4{word-spacing:-17.190000px;}
.ws32{word-spacing:-16.632000px;}
.wsf{word-spacing:-16.488000px;}
.wsd{word-spacing:-16.416000px;}
.ws8{word-spacing:-16.344000px;}
.wsa{word-spacing:-16.272000px;}
.ws9{word-spacing:-16.200000px;}
.ws7{word-spacing:-16.128000px;}
.ws28{word-spacing:-16.056000px;}
.ws31{word-spacing:-15.984000px;}
.ws33{word-spacing:-15.912000px;}
.ws29{word-spacing:-15.690240px;}
.ws12{word-spacing:-15.621120px;}
.ws2e{word-spacing:-15.344640px;}
.ws0{word-spacing:-14.888880px;}
.ws6{word-spacing:-10.820880px;}
.wsb{word-spacing:-10.677240px;}
.wsc{word-spacing:-9.519120px;}
.ws23{word-spacing:-0.576000px;}
.ws26{word-spacing:-0.504000px;}
.ws2b{word-spacing:-0.432000px;}
.ws30{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.288000px;}
.ws1c{word-spacing:-0.263520px;}
.ws19{word-spacing:-0.216000px;}
.ws25{word-spacing:-0.207360px;}
.ws1e{word-spacing:-0.197640px;}
.ws1a{word-spacing:-0.144000px;}
.ws24{word-spacing:-0.138240px;}
.ws1d{word-spacing:-0.131760px;}
.ws20{word-spacing:-0.072000px;}
.ws14{word-spacing:-0.065880px;}
.ws13{word-spacing:0.000000px;}
.ws2d{word-spacing:0.069120px;}
.ws22{word-spacing:0.072000px;}
.ws1f{word-spacing:0.096120px;}
.ws1b{word-spacing:0.126360px;}
.ws21{word-spacing:0.144000px;}
.ws2a{word-spacing:0.216000px;}
.ws2c{word-spacing:0.288000px;}
.ws16{word-spacing:0.360000px;}
.ws17{word-spacing:0.630000px;}
.ws18{word-spacing:2.736000px;}
.ws34{word-spacing:11.376000px;}
.ws35{word-spacing:11.448000px;}
._1{margin-left:-4.680000px;}
._2{margin-left:-2.952000px;}
._0{margin-left:-1.800000px;}
._3{width:1.602000px;}
._5{width:32.472000px;}
._21{width:33.480000px;}
._23{width:40.968000px;}
._36{width:69.984000px;}
._37{width:71.064000px;}
._22{width:79.416000px;}
._34{width:98.118000px;}
._12{width:99.576000px;}
._38{width:107.766000px;}
._14{width:111.384000px;}
._33{width:117.414000px;}
._2e{width:118.944000px;}
._f{width:128.952000px;}
._1b{width:135.000000px;}
._35{width:136.944000px;}
._26{width:140.112000px;}
._32{width:144.432000px;}
._30{width:147.528000px;}
._b{width:152.208000px;}
._2b{width:153.648000px;}
._13{width:163.584000px;}
._2c{width:165.384000px;}
._11{width:167.976000px;}
._10{width:169.416000px;}
._18{width:172.224000px;}
._2d{width:180.864000px;}
._24{width:188.568000px;}
._d{width:197.352000px;}
._c{width:198.792000px;}
._e{width:202.104000px;}
._9{width:220.608000px;}
._8{width:222.048000px;}
._1a{width:224.352000px;}
._a{width:225.360000px;}
._2f{width:237.294000px;}
._1d{width:243.360000px;}
._1e{width:245.736000px;}
._31{width:250.398000px;}
._2a{width:258.768000px;}
._28{width:261.648000px;}
._1f{width:266.472000px;}
._19{width:282.312000px;}
._29{width:285.696000px;}
._17{width:292.176000px;}
._16{width:296.928000px;}
._20{width:303.192000px;}
._15{width:305.568000px;}
._6{width:315.936000px;}
._7{width:317.952000px;}
._4{width:324.072000px;}
._1c{width:361.008000px;}
._27{width:378.864000px;}
._25{width:847.728000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.120000px;}
.fs5{font-size:47.880000px;}
.fs0{font-size:65.880000px;}
.fs9{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:83.880000px;}
.fs2{font-size:90.000000px;}
.fs7{font-size:96.120000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:57.510720px;}
.y1d{bottom:77.670000px;}
.y1c{bottom:131.670000px;}
.y1b{bottom:159.210000px;}
.y1a{bottom:186.750000px;}
.y40{bottom:190.350000px;}
.y19{bottom:214.380000px;}
.y3f{bottom:217.890000px;}
.y3e{bottom:245.430000px;}
.y18{bottom:248.670000px;}
.y3d{bottom:273.060000px;}
.y17{bottom:293.670000px;}
.y3c{bottom:307.350000px;}
.y16{bottom:326.790000px;}
.y15{bottom:351.000000px;}
.y3b{bottom:352.350000px;}
.y14{bottom:375.120000px;}
.y3a{bottom:376.470000px;}
.y39{bottom:400.680000px;}
.y13{bottom:410.670000px;}
.y38{bottom:432.810000px;}
.y73{bottom:445.500000px;}
.y37{bottom:460.350000px;}
.y72{bottom:469.710000px;}
.y12{bottom:476.550000px;}
.y36{bottom:487.980000px;}
.y71{bottom:506.700000px;}
.y11{bottom:510.660000px;}
.y35{bottom:515.520000px;}
.y10{bottom:534.870000px;}
.y70{bottom:537.660000px;}
.y34{bottom:543.060000px;}
.y6d{bottom:544.410000px;}
.y6c{bottom:568.440000px;}
.y6f{bottom:568.530000px;}
.yf{bottom:568.980000px;}
.y33{bottom:572.940000px;}
.y6b{bottom:592.650000px;}
.y6e{bottom:599.490000px;}
.ye{bottom:603.090000px;}
.y32{bottom:617.850000px;}
.y6a{bottom:630.450000px;}
.yd{bottom:638.640000px;}
.y31{bottom:642.060000px;}
.y69{bottom:661.320000px;}
.y30{bottom:666.180000px;}
.y51{bottom:669.150000px;}
.y66{bottom:683.550000px;}
.y68{bottom:692.280000px;}
.y50{bottom:693.360000px;}
.y2f{bottom:698.400000px;}
.y65{bottom:707.580000px;}
.y4f{bottom:717.480000px;}
.y67{bottom:723.150000px;}
.y2e{bottom:725.940000px;}
.y64{bottom:731.790000px;}
.y4e{bottom:751.860000px;}
.y2d{bottom:753.480000px;}
.y63{bottom:754.110000px;}
.yc{bottom:763.560000px;}
.y2c{bottom:781.110000px;}
.y62{bottom:784.980000px;}
.yb{bottom:789.750000px;}
.y4d{bottom:796.860000px;}
.y2b{bottom:808.650000px;}
.y61{bottom:809.190000px;}
.ya{bottom:816.030000px;}
.y4c{bottom:821.070000px;}
.y2a{bottom:836.280000px;}
.y60{bottom:840.060000px;}
.y9{bottom:842.220000px;}
.y4b{bottom:845.190000px;}
.y29{bottom:863.820000px;}
.y4a{bottom:869.400000px;}
.y5f{bottom:871.020000px;}
.y8{bottom:876.600000px;}
.y28{bottom:891.360000px;}
.y59{bottom:893.160000px;}
.y7{bottom:900.270000px;}
.y49{bottom:901.530000px;}
.y5e{bottom:901.980000px;}
.y58{bottom:917.280000px;}
.y27{bottom:918.990000px;}
.y48{bottom:929.070000px;}
.y5d{bottom:932.850000px;}
.y57{bottom:941.490000px;}
.y26{bottom:946.530000px;}
.y6{bottom:954.000000px;}
.y47{bottom:956.700000px;}
.y5c{bottom:963.810000px;}
.y25{bottom:974.070000px;}
.y46{bottom:984.240000px;}
.y5b{bottom:994.680000px;}
.y24{bottom:1001.700000px;}
.y5{bottom:1003.320000px;}
.y45{bottom:1011.780000px;}
.y5a{bottom:1018.890000px;}
.y23{bottom:1029.240000px;}
.y4{bottom:1034.460000px;}
.y44{bottom:1046.160000px;}
.y56{bottom:1049.760000px;}
.y22{bottom:1056.780000px;}
.y3{bottom:1078.380000px;}
.y55{bottom:1080.720000px;}
.y21{bottom:1084.410000px;}
.y43{bottom:1091.070000px;}
.y53{bottom:1111.590000px;}
.y20{bottom:1111.950000px;}
.y42{bottom:1115.280000px;}
.y2{bottom:1122.300000px;}
.y54{bottom:1135.710000px;}
.y52{bottom:1135.800000px;}
.y41{bottom:1139.400000px;}
.y1f{bottom:1139.490000px;}
.y1{bottom:1194.030000px;}
.h6{height:30.232617px;}
.h2{height:47.286914px;}
.hc{height:49.218750px;}
.h8{height:51.679688px;}
.h5{height:56.850469px;}
.hb{height:58.486392px;}
.h9{height:58.486992px;}
.ha{height:60.206836px;}
.h4{height:64.204102px;}
.h7{height:68.992383px;}
.h3{height:102.726562px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.380000px;}
.x2{left:119.160000px;}
.x3{left:127.710000px;}
.x4{left:148.950000px;}
.x6{left:157.140000px;}
.x15{left:176.850000px;}
.x10{left:181.710000px;}
.xa{left:186.300000px;}
.xe{left:240.840000px;}
.xf{left:379.980000px;}
.x5{left:442.350000px;}
.x7{left:465.030000px;}
.x8{left:550.080000px;}
.x11{left:573.930000px;}
.x9{left:635.130000px;}
.xc{left:639.720000px;}
.x13{left:649.800000px;}
.x12{left:651.060000px;}
.xd{left:659.340000px;}
.x14{left:661.500000px;}
.xb{left:668.340000px;}
@media print{
.v2{vertical-align:-21.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.lsf{letter-spacing:-3.712000pt;}
.lsb{letter-spacing:-3.040000pt;}
.lsd{letter-spacing:-2.960000pt;}
.lse{letter-spacing:-2.800000pt;}
.lsa{letter-spacing:-2.688000pt;}
.lsc{letter-spacing:-2.640000pt;}
.ls9{letter-spacing:-2.432000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.245760pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.149120pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.127680pt;}
.ls13{letter-spacing:-0.112320pt;}
.ls16{letter-spacing:-0.085440pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.061440pt;}
.ls14{letter-spacing:-0.058560pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.058560pt;}
.ls1a{letter-spacing:0.061440pt;}
.ls6{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.117120pt;}
.ls1{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.131200pt;}
.ls1e{letter-spacing:0.136000pt;}
.ls19{letter-spacing:0.149120pt;}
.ls2{letter-spacing:0.182080pt;}
.ls18{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.192320pt;}
.ls1b{letter-spacing:0.195520pt;}
.ls7{letter-spacing:0.200320pt;}
.ls1d{letter-spacing:0.255360pt;}
.ls33{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls32{letter-spacing:10.176000pt;}
.ls31{letter-spacing:10.182400pt;}
.ls4{letter-spacing:28.288000pt;}
.ls3{letter-spacing:32.361280pt;}
.ls26{letter-spacing:59.776000pt;}
.ls2c{letter-spacing:90.496000pt;}
.ls28{letter-spacing:104.896000pt;}
.ls30{letter-spacing:113.216000pt;}
.ls2b{letter-spacing:128.576000pt;}
.ls2d{letter-spacing:129.536000pt;}
.ls29{letter-spacing:130.816000pt;}
.ls2e{letter-spacing:132.736000pt;}
.ls2a{letter-spacing:136.896000pt;}
.ls27{letter-spacing:295.296000pt;}
.ls2f{letter-spacing:298.176000pt;}
.ls25{letter-spacing:349.696000pt;}
.wse{word-spacing:-58.560000pt;}
.ws27{word-spacing:-42.560000pt;}
.ws1{word-spacing:-28.928000pt;}
.ws5{word-spacing:-25.216000pt;}
.ws10{word-spacing:-19.224000pt;}
.ws2{word-spacing:-18.080000pt;}
.ws11{word-spacing:-16.999680pt;}
.ws2f{word-spacing:-16.701440pt;}
.ws3{word-spacing:-15.440000pt;}
.ws4{word-spacing:-15.280000pt;}
.ws32{word-spacing:-14.784000pt;}
.wsf{word-spacing:-14.656000pt;}
.wsd{word-spacing:-14.592000pt;}
.ws8{word-spacing:-14.528000pt;}
.wsa{word-spacing:-14.464000pt;}
.ws9{word-spacing:-14.400000pt;}
.ws7{word-spacing:-14.336000pt;}
.ws28{word-spacing:-14.272000pt;}
.ws31{word-spacing:-14.208000pt;}
.ws33{word-spacing:-14.144000pt;}
.ws29{word-spacing:-13.946880pt;}
.ws12{word-spacing:-13.885440pt;}
.ws2e{word-spacing:-13.639680pt;}
.ws0{word-spacing:-13.234560pt;}
.ws6{word-spacing:-9.618560pt;}
.wsb{word-spacing:-9.490880pt;}
.wsc{word-spacing:-8.461440pt;}
.ws23{word-spacing:-0.512000pt;}
.ws26{word-spacing:-0.448000pt;}
.ws2b{word-spacing:-0.384000pt;}
.ws30{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.256000pt;}
.ws1c{word-spacing:-0.234240pt;}
.ws19{word-spacing:-0.192000pt;}
.ws25{word-spacing:-0.184320pt;}
.ws1e{word-spacing:-0.175680pt;}
.ws1a{word-spacing:-0.128000pt;}
.ws24{word-spacing:-0.122880pt;}
.ws1d{word-spacing:-0.117120pt;}
.ws20{word-spacing:-0.064000pt;}
.ws14{word-spacing:-0.058560pt;}
.ws13{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.061440pt;}
.ws22{word-spacing:0.064000pt;}
.ws1f{word-spacing:0.085440pt;}
.ws1b{word-spacing:0.112320pt;}
.ws21{word-spacing:0.128000pt;}
.ws2a{word-spacing:0.192000pt;}
.ws2c{word-spacing:0.256000pt;}
.ws16{word-spacing:0.320000pt;}
.ws17{word-spacing:0.560000pt;}
.ws18{word-spacing:2.432000pt;}
.ws34{word-spacing:10.112000pt;}
.ws35{word-spacing:10.176000pt;}
._1{margin-left:-4.160000pt;}
._2{margin-left:-2.624000pt;}
._0{margin-left:-1.600000pt;}
._3{width:1.424000pt;}
._5{width:28.864000pt;}
._21{width:29.760000pt;}
._23{width:36.416000pt;}
._36{width:62.208000pt;}
._37{width:63.168000pt;}
._22{width:70.592000pt;}
._34{width:87.216000pt;}
._12{width:88.512000pt;}
._38{width:95.792000pt;}
._14{width:99.008000pt;}
._33{width:104.368000pt;}
._2e{width:105.728000pt;}
._f{width:114.624000pt;}
._1b{width:120.000000pt;}
._35{width:121.728000pt;}
._26{width:124.544000pt;}
._32{width:128.384000pt;}
._30{width:131.136000pt;}
._b{width:135.296000pt;}
._2b{width:136.576000pt;}
._13{width:145.408000pt;}
._2c{width:147.008000pt;}
._11{width:149.312000pt;}
._10{width:150.592000pt;}
._18{width:153.088000pt;}
._2d{width:160.768000pt;}
._24{width:167.616000pt;}
._d{width:175.424000pt;}
._c{width:176.704000pt;}
._e{width:179.648000pt;}
._9{width:196.096000pt;}
._8{width:197.376000pt;}
._1a{width:199.424000pt;}
._a{width:200.320000pt;}
._2f{width:210.928000pt;}
._1d{width:216.320000pt;}
._1e{width:218.432000pt;}
._31{width:222.576000pt;}
._2a{width:230.016000pt;}
._28{width:232.576000pt;}
._1f{width:236.864000pt;}
._19{width:250.944000pt;}
._29{width:253.952000pt;}
._17{width:259.712000pt;}
._16{width:263.936000pt;}
._20{width:269.504000pt;}
._15{width:271.616000pt;}
._6{width:280.832000pt;}
._7{width:282.624000pt;}
._4{width:288.064000pt;}
._1c{width:320.896000pt;}
._27{width:336.768000pt;}
._25{width:753.536000pt;}
.fs6{font-size:37.440000pt;}
.fs5{font-size:42.560000pt;}
.fs0{font-size:58.560000pt;}
.fs9{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:74.560000pt;}
.fs2{font-size:80.000000pt;}
.fs7{font-size:85.440000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:51.120640pt;}
.y1d{bottom:69.040000pt;}
.y1c{bottom:117.040000pt;}
.y1b{bottom:141.520000pt;}
.y1a{bottom:166.000000pt;}
.y40{bottom:169.200000pt;}
.y19{bottom:190.560000pt;}
.y3f{bottom:193.680000pt;}
.y3e{bottom:218.160000pt;}
.y18{bottom:221.040000pt;}
.y3d{bottom:242.720000pt;}
.y17{bottom:261.040000pt;}
.y3c{bottom:273.200000pt;}
.y16{bottom:290.480000pt;}
.y15{bottom:312.000000pt;}
.y3b{bottom:313.200000pt;}
.y14{bottom:333.440000pt;}
.y3a{bottom:334.640000pt;}
.y39{bottom:356.160000pt;}
.y13{bottom:365.040000pt;}
.y38{bottom:384.720000pt;}
.y73{bottom:396.000000pt;}
.y37{bottom:409.200000pt;}
.y72{bottom:417.520000pt;}
.y12{bottom:423.600000pt;}
.y36{bottom:433.760000pt;}
.y71{bottom:450.400000pt;}
.y11{bottom:453.920000pt;}
.y35{bottom:458.240000pt;}
.y10{bottom:475.440000pt;}
.y70{bottom:477.920000pt;}
.y34{bottom:482.720000pt;}
.y6d{bottom:483.920000pt;}
.y6c{bottom:505.280000pt;}
.y6f{bottom:505.360000pt;}
.yf{bottom:505.760000pt;}
.y33{bottom:509.280000pt;}
.y6b{bottom:526.800000pt;}
.y6e{bottom:532.880000pt;}
.ye{bottom:536.080000pt;}
.y32{bottom:549.200000pt;}
.y6a{bottom:560.400000pt;}
.yd{bottom:567.680000pt;}
.y31{bottom:570.720000pt;}
.y69{bottom:587.840000pt;}
.y30{bottom:592.160000pt;}
.y51{bottom:594.800000pt;}
.y66{bottom:607.600000pt;}
.y68{bottom:615.360000pt;}
.y50{bottom:616.320000pt;}
.y2f{bottom:620.800000pt;}
.y65{bottom:628.960000pt;}
.y4f{bottom:637.760000pt;}
.y67{bottom:642.800000pt;}
.y2e{bottom:645.280000pt;}
.y64{bottom:650.480000pt;}
.y4e{bottom:668.320000pt;}
.y2d{bottom:669.760000pt;}
.y63{bottom:670.320000pt;}
.yc{bottom:678.720000pt;}
.y2c{bottom:694.320000pt;}
.y62{bottom:697.760000pt;}
.yb{bottom:702.000000pt;}
.y4d{bottom:708.320000pt;}
.y2b{bottom:718.800000pt;}
.y61{bottom:719.280000pt;}
.ya{bottom:725.360000pt;}
.y4c{bottom:729.840000pt;}
.y2a{bottom:743.360000pt;}
.y60{bottom:746.720000pt;}
.y9{bottom:748.640000pt;}
.y4b{bottom:751.280000pt;}
.y29{bottom:767.840000pt;}
.y4a{bottom:772.800000pt;}
.y5f{bottom:774.240000pt;}
.y8{bottom:779.200000pt;}
.y28{bottom:792.320000pt;}
.y59{bottom:793.920000pt;}
.y7{bottom:800.240000pt;}
.y49{bottom:801.360000pt;}
.y5e{bottom:801.760000pt;}
.y58{bottom:815.360000pt;}
.y27{bottom:816.880000pt;}
.y48{bottom:825.840000pt;}
.y5d{bottom:829.200000pt;}
.y57{bottom:836.880000pt;}
.y26{bottom:841.360000pt;}
.y6{bottom:848.000000pt;}
.y47{bottom:850.400000pt;}
.y5c{bottom:856.720000pt;}
.y25{bottom:865.840000pt;}
.y46{bottom:874.880000pt;}
.y5b{bottom:884.160000pt;}
.y24{bottom:890.400000pt;}
.y5{bottom:891.840000pt;}
.y45{bottom:899.360000pt;}
.y5a{bottom:905.680000pt;}
.y23{bottom:914.880000pt;}
.y4{bottom:919.520000pt;}
.y44{bottom:929.920000pt;}
.y56{bottom:933.120000pt;}
.y22{bottom:939.360000pt;}
.y3{bottom:958.560000pt;}
.y55{bottom:960.640000pt;}
.y21{bottom:963.920000pt;}
.y43{bottom:969.840000pt;}
.y53{bottom:988.080000pt;}
.y20{bottom:988.400000pt;}
.y42{bottom:991.360000pt;}
.y2{bottom:997.600000pt;}
.y54{bottom:1009.520000pt;}
.y52{bottom:1009.600000pt;}
.y41{bottom:1012.800000pt;}
.y1f{bottom:1012.880000pt;}
.y1{bottom:1061.360000pt;}
.h6{height:26.873437pt;}
.h2{height:42.032812pt;}
.hc{height:43.750000pt;}
.h8{height:45.937500pt;}
.h5{height:50.533750pt;}
.hb{height:51.987904pt;}
.h9{height:51.988438pt;}
.ha{height:53.517187pt;}
.h4{height:57.070312pt;}
.h7{height:61.326562pt;}
.h3{height:91.312500pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.560000pt;}
.x2{left:105.920000pt;}
.x3{left:113.520000pt;}
.x4{left:132.400000pt;}
.x6{left:139.680000pt;}
.x15{left:157.200000pt;}
.x10{left:161.520000pt;}
.xa{left:165.600000pt;}
.xe{left:214.080000pt;}
.xf{left:337.760000pt;}
.x5{left:393.200000pt;}
.x7{left:413.360000pt;}
.x8{left:488.960000pt;}
.x11{left:510.160000pt;}
.x9{left:564.560000pt;}
.xc{left:568.640000pt;}
.x13{left:577.600000pt;}
.x12{left:578.720000pt;}
.xd{left:586.080000pt;}
.x14{left:588.000000pt;}
.xb{left:594.080000pt;}
}




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