
    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_be1364917a82152c5951da76.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_4b5b822af96423cc7de1a736.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_c8d609044baac5ee82a8b96d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_7dab4fc39429fa28a30232a3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a2eb1792ce1b2bb23ed40cba.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_4b777497bd140043d5d88979.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b3df7c37c5bf9c4cd6f54802.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls5{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.023040px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:25.308000px;}
.ls1{letter-spacing:52.668000px;}
.ls8{letter-spacing:68.508000px;}
.ls7{letter-spacing:68.652000px;}
.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;}
}
.ws7{word-spacing:-54.000000px;}
.ws9{word-spacing:-19.457280px;}
.ws8{word-spacing:-19.440000px;}
.ws1{word-spacing:-19.431360px;}
.ws4{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.840000px;}
.ws2{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._11{width:2.545200px;}
._7{width:3.780000px;}
._8{width:4.860000px;}
._9{width:6.696000px;}
._6{width:8.100000px;}
._5{width:9.353760px;}
._4{width:10.397520px;}
._3{width:11.718000px;}
._10{width:12.908160px;}
._12{width:13.908480px;}
._19{width:15.552000px;}
._d{width:16.848000px;}
._b{width:18.011520px;}
._c{width:19.137120px;}
._a{width:20.196000px;}
._f{width:21.816720px;}
._15{width:23.004000px;}
._14{width:24.144480px;}
._e{width:25.427520px;}
._16{width:26.838000px;}
._1e{width:28.206000px;}
._2a{width:29.675520px;}
._17{width:31.698000px;}
._13{width:33.588000px;}
._1f{width:34.794000px;}
._18{width:35.802000px;}
._1d{width:37.415520px;}
._20{width:38.502000px;}
._29{width:40.763520px;}
._1c{width:43.428000px;}
._21{width:45.083520px;}
._1b{width:46.818480px;}
._1a{width:48.047520px;}
._22{width:53.568000px;}
._24{width:60.426000px;}
._23{width:61.715520px;}
._25{width:71.388000px;}
._26{width:83.477520px;}
._27{width:85.336800px;}
._28{width:102.708000px;}
._2{width:2903.467200px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:66.384000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y48{bottom:6.990000px;}
.y32{bottom:16.125000px;}
.y8{bottom:22.500000px;}
.y7{bottom:41.040000px;}
.y6{bottom:56.880000px;}
.y36{bottom:60.585000px;}
.y40{bottom:71.355000px;}
.y7d{bottom:80.820000px;}
.y2e{bottom:81.540000px;}
.y20{bottom:82.800000px;}
.y3f{bottom:91.155000px;}
.y7c{bottom:98.820000px;}
.y2d{bottom:99.360000px;}
.y1f{bottom:109.620000px;}
.y3e{bottom:110.955000px;}
.yae{bottom:114.300000px;}
.y2c{bottom:117.180000px;}
.y7b{bottom:117.540000px;}
.y1e{bottom:127.440000px;}
.y3d{bottom:130.755000px;}
.yad{bottom:131.940000px;}
.y2b{bottom:135.180000px;}
.y7a{bottom:135.540000px;}
.y30{bottom:144.870000px;}
.y1d{bottom:145.260000px;}
.yac{bottom:149.760000px;}
.y3c{bottom:150.735000px;}
.y79{bottom:154.260000px;}
.y2a{bottom:162.000000px;}
.y1c{bottom:163.260000px;}
.y3b{bottom:170.535000px;}
.y78{bottom:172.080000px;}
.yab{bottom:179.820000px;}
.y1b{bottom:181.080000px;}
.y29{bottom:188.820000px;}
.yaa{bottom:197.460000px;}
.y1a{bottom:198.900000px;}
.y77{bottom:199.620000px;}
.y28{bottom:215.670000px;}
.y19{bottom:225.750000px;}
.y76{bottom:226.830000px;}
.ya9{bottom:227.550000px;}
.y27{bottom:233.490000px;}
.y18{bottom:243.570000px;}
.y75{bottom:244.650000px;}
.ya8{bottom:245.190000px;}
.y26{bottom:260.310000px;}
.y17{bottom:261.390000px;}
.ya7{bottom:263.190000px;}
.y74{bottom:263.550000px;}
.y16{bottom:279.390000px;}
.y25{bottom:287.310000px;}
.y73{bottom:290.910000px;}
.ya6{bottom:293.250000px;}
.y15{bottom:297.210000px;}
.y24{bottom:305.130000px;}
.ya5{bottom:310.890000px;}
.y14{bottom:315.030000px;}
.y72{bottom:318.090000px;}
.y23{bottom:322.950000px;}
.ya4{bottom:328.710000px;}
.y13{bottom:332.850000px;}
.y71{bottom:336.090000px;}
.y22{bottom:340.770000px;}
.y12{bottom:352.650000px;}
.y70{bottom:354.810000px;}
.y21{bottom:358.590000px;}
.ya3{bottom:358.770000px;}
.y6f{bottom:372.810000px;}
.ya2{bottom:376.410000px;}
.y11{bottom:388.290000px;}
.y6e{bottom:400.170000px;}
.y3a{bottom:405.180000px;}
.ya1{bottom:406.470000px;}
.ya0{bottom:424.110000px;}
.y42{bottom:427.170000px;}
.y6d{bottom:427.350000px;}
.y9f{bottom:441.975000px;}
.y6c{bottom:445.395000px;}
.y41{bottom:456.735000px;}
.y6b{bottom:464.115000px;}
.y9e{bottom:472.035000px;}
.y6a{bottom:481.935000px;}
.y9d{bottom:489.675000px;}
.y69{bottom:509.295000px;}
.y9c{bottom:519.735000px;}
.y9b{bottom:537.375000px;}
.y68{bottom:538.635000px;}
.y9a{bottom:555.195000px;}
.y67{bottom:571.395000px;}
.y99{bottom:573.195000px;}
.y66{bottom:589.215000px;}
.y98{bottom:603.075000px;}
.y65{bottom:607.215000px;}
.y10{bottom:611.355000px;}
.y97{bottom:620.895000px;}
.y64{bottom:625.935000px;}
.y96{bottom:638.715000px;}
.y63{bottom:643.755000px;}
.yf{bottom:652.575000px;}
.y62{bottom:662.655000px;}
.ye{bottom:668.235000px;}
.y95{bottom:668.775000px;}
.y61{bottom:680.505000px;}
.y94{bottom:686.445000px;}
.y39{bottom:693.465000px;}
.y60{bottom:707.865000px;}
.y93{bottom:716.505000px;}
.y38{bottom:721.905000px;}
.y35{bottom:732.420000px;}
.y92{bottom:734.145000px;}
.y5f{bottom:735.045000px;}
.y5e{bottom:753.045000px;}
.yd{bottom:758.265000px;}
.y91{bottom:764.205000px;}
.y5d{bottom:770.865000px;}
.y90{bottom:781.845000px;}
.y5c{bottom:788.685000px;}
.y37{bottom:790.125000px;}
.y5b{bottom:806.505000px;}
.y8f{bottom:811.905000px;}
.yc{bottom:812.445000px;}
.y5a{bottom:832.965000px;}
.y34{bottom:834.585000px;}
.y8e{bottom:841.785000px;}
.y8d{bottom:859.425000px;}
.y59{bottom:860.325000px;}
.y31{bottom:874.440000px;}
.y58{bottom:878.145000px;}
.y8c{bottom:879.225000px;}
.y33{bottom:890.565000px;}
.y57{bottom:895.965000px;}
.y8b{bottom:912.030000px;}
.y56{bottom:913.830000px;}
.y8a{bottom:929.850000px;}
.y55{bottom:931.650000px;}
.yb{bottom:934.350000px;}
.y2f{bottom:941.400000px;}
.y89{bottom:947.670000px;}
.y47{bottom:955.800000px;}
.y54{bottom:958.110000px;}
.y88{bottom:965.670000px;}
.y87{bottom:983.490000px;}
.y53{bottom:985.470000px;}
.y46{bottom:989.430000px;}
.y86{bottom:1001.310000px;}
.y52{bottom:1003.290000px;}
.y45{bottom:1015.710000px;}
.y85{bottom:1019.130000px;}
.y51{bottom:1021.110000px;}
.y84{bottom:1036.950000px;}
.y50{bottom:1038.930000px;}
.y44{bottom:1041.990000px;}
.y83{bottom:1054.950000px;}
.y4f{bottom:1056.750000px;}
.yb3{bottom:1058.910000px;}
.y43{bottom:1068.450000px;}
.y4e{bottom:1074.750000px;}
.yb2{bottom:1076.550000px;}
.y4d{bottom:1101.210000px;}
.yb1{bottom:1106.610000px;}
.y82{bottom:1107.510000px;}
.ya{bottom:1107.690000px;}
.y4c{bottom:1121.370000px;}
.yb0{bottom:1124.250000px;}
.y81{bottom:1125.510000px;}
.y80{bottom:1144.230000px;}
.y4b{bottom:1154.160000px;}
.yaf{bottom:1154.340000px;}
.y7f{bottom:1162.080000px;}
.y4a{bottom:1171.980000px;}
.y7e{bottom:1189.440000px;}
.y49{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h1b{height:37.705078px;}
.h13{height:40.985156px;}
.h3{height:48.616875px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:53.709961px;}
.he{height:54.180000px;}
.hc{height:55.503491px;}
.h8{height:55.825312px;}
.h17{height:58.621992px;}
.h12{height:58.651172px;}
.h18{height:58.763250px;}
.h19{height:60.226875px;}
.h6{height:65.010937px;}
.h15{height:65.152266px;}
.h14{height:66.757500px;}
.h10{height:72.326250px;}
.h11{height:74.160000px;}
.hb{height:78.367500px;}
.hf{height:84.898125px;}
.h1a{height:132.480000px;}
.hd{height:160.380000px;}
.h16{height:193.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:20.340000px;}
.w2{width:85.320000px;}
.w3{width:470.160000px;}
.w8{width:500.940000px;}
.w7{width:774.540000px;}
.w4{width:783.360000px;}
.w5{width:784.080000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.xf{left:10.800000px;}
.x13{left:51.660000px;}
.x5{left:54.000000px;}
.x16{left:61.200000px;}
.x15{left:65.160000px;}
.x17{left:72.000000px;}
.x1c{left:81.000000px;}
.x1{left:100.080000px;}
.x1d{left:108.036000px;}
.x6{left:161.670000px;}
.x1b{left:170.895000px;}
.xa{left:174.090000px;}
.x1a{left:198.360000px;}
.x12{left:224.850000px;}
.x10{left:255.315000px;}
.x18{left:288.435000px;}
.x14{left:335.415000px;}
.x7{left:356.655000px;}
.x19{left:358.635000px;}
.x3{left:367.920000px;}
.x4{left:462.960000px;}
.xc{left:465.945000px;}
.xd{left:492.945000px;}
.xe{left:519.945000px;}
.x11{left:583.305000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
.xb{left:846.180000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.020480pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:22.496000pt;}
.ls1{letter-spacing:46.816000pt;}
.ls8{letter-spacing:60.896000pt;}
.ls7{letter-spacing:61.024000pt;}
.ws7{word-spacing:-48.000000pt;}
.ws9{word-spacing:-17.295360pt;}
.ws8{word-spacing:-17.280000pt;}
.ws1{word-spacing:-17.272320pt;}
.ws4{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws2{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._11{width:2.262400pt;}
._7{width:3.360000pt;}
._8{width:4.320000pt;}
._9{width:5.952000pt;}
._6{width:7.200000pt;}
._5{width:8.314453pt;}
._4{width:9.242240pt;}
._3{width:10.416000pt;}
._10{width:11.473920pt;}
._12{width:12.363093pt;}
._19{width:13.824000pt;}
._d{width:14.976000pt;}
._b{width:16.010240pt;}
._c{width:17.010773pt;}
._a{width:17.952000pt;}
._f{width:19.392640pt;}
._15{width:20.448000pt;}
._14{width:21.461760pt;}
._e{width:22.602240pt;}
._16{width:23.856000pt;}
._1e{width:25.072000pt;}
._2a{width:26.378240pt;}
._17{width:28.176000pt;}
._13{width:29.856000pt;}
._1f{width:30.928000pt;}
._18{width:31.824000pt;}
._1d{width:33.258240pt;}
._20{width:34.224000pt;}
._29{width:36.234240pt;}
._1c{width:38.602667pt;}
._21{width:40.074240pt;}
._1b{width:41.616427pt;}
._1a{width:42.708907pt;}
._22{width:47.616000pt;}
._24{width:53.712000pt;}
._23{width:54.858240pt;}
._25{width:63.456000pt;}
._26{width:74.202240pt;}
._27{width:75.854933pt;}
._28{width:91.296000pt;}
._2{width:2580.859733pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:59.008000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y48{bottom:6.213333pt;}
.y32{bottom:14.333333pt;}
.y8{bottom:20.000000pt;}
.y7{bottom:36.480000pt;}
.y6{bottom:50.560000pt;}
.y36{bottom:53.853333pt;}
.y40{bottom:63.426667pt;}
.y7d{bottom:71.840000pt;}
.y2e{bottom:72.480000pt;}
.y20{bottom:73.600000pt;}
.y3f{bottom:81.026667pt;}
.y7c{bottom:87.840000pt;}
.y2d{bottom:88.320000pt;}
.y1f{bottom:97.440000pt;}
.y3e{bottom:98.626667pt;}
.yae{bottom:101.600000pt;}
.y2c{bottom:104.160000pt;}
.y7b{bottom:104.480000pt;}
.y1e{bottom:113.280000pt;}
.y3d{bottom:116.226667pt;}
.yad{bottom:117.280000pt;}
.y2b{bottom:120.160000pt;}
.y7a{bottom:120.480000pt;}
.y30{bottom:128.773333pt;}
.y1d{bottom:129.120000pt;}
.yac{bottom:133.120000pt;}
.y3c{bottom:133.986667pt;}
.y79{bottom:137.120000pt;}
.y2a{bottom:144.000000pt;}
.y1c{bottom:145.120000pt;}
.y3b{bottom:151.586667pt;}
.y78{bottom:152.960000pt;}
.yab{bottom:159.840000pt;}
.y1b{bottom:160.960000pt;}
.y29{bottom:167.840000pt;}
.yaa{bottom:175.520000pt;}
.y1a{bottom:176.800000pt;}
.y77{bottom:177.440000pt;}
.y28{bottom:191.706667pt;}
.y19{bottom:200.666667pt;}
.y76{bottom:201.626667pt;}
.ya9{bottom:202.266667pt;}
.y27{bottom:207.546667pt;}
.y18{bottom:216.506667pt;}
.y75{bottom:217.466667pt;}
.ya8{bottom:217.946667pt;}
.y26{bottom:231.386667pt;}
.y17{bottom:232.346667pt;}
.ya7{bottom:233.946667pt;}
.y74{bottom:234.266667pt;}
.y16{bottom:248.346667pt;}
.y25{bottom:255.386667pt;}
.y73{bottom:258.586667pt;}
.ya6{bottom:260.666667pt;}
.y15{bottom:264.186667pt;}
.y24{bottom:271.226667pt;}
.ya5{bottom:276.346667pt;}
.y14{bottom:280.026667pt;}
.y72{bottom:282.746667pt;}
.y23{bottom:287.066667pt;}
.ya4{bottom:292.186667pt;}
.y13{bottom:295.866667pt;}
.y71{bottom:298.746667pt;}
.y22{bottom:302.906667pt;}
.y12{bottom:313.466667pt;}
.y70{bottom:315.386667pt;}
.y21{bottom:318.746667pt;}
.ya3{bottom:318.906667pt;}
.y6f{bottom:331.386667pt;}
.ya2{bottom:334.586667pt;}
.y11{bottom:345.146667pt;}
.y6e{bottom:355.706667pt;}
.y3a{bottom:360.160000pt;}
.ya1{bottom:361.306667pt;}
.ya0{bottom:376.986667pt;}
.y42{bottom:379.706667pt;}
.y6d{bottom:379.866667pt;}
.y9f{bottom:392.866667pt;}
.y6c{bottom:395.906667pt;}
.y41{bottom:405.986667pt;}
.y6b{bottom:412.546667pt;}
.y9e{bottom:419.586667pt;}
.y6a{bottom:428.386667pt;}
.y9d{bottom:435.266667pt;}
.y69{bottom:452.706667pt;}
.y9c{bottom:461.986667pt;}
.y9b{bottom:477.666667pt;}
.y68{bottom:478.786667pt;}
.y9a{bottom:493.506667pt;}
.y67{bottom:507.906667pt;}
.y99{bottom:509.506667pt;}
.y66{bottom:523.746667pt;}
.y98{bottom:536.066667pt;}
.y65{bottom:539.746667pt;}
.y10{bottom:543.426667pt;}
.y97{bottom:551.906667pt;}
.y64{bottom:556.386667pt;}
.y96{bottom:567.746667pt;}
.y63{bottom:572.226667pt;}
.yf{bottom:580.066667pt;}
.y62{bottom:589.026667pt;}
.ye{bottom:593.986667pt;}
.y95{bottom:594.466667pt;}
.y61{bottom:604.893333pt;}
.y94{bottom:610.173333pt;}
.y39{bottom:616.413333pt;}
.y60{bottom:629.213333pt;}
.y93{bottom:636.893333pt;}
.y38{bottom:641.693333pt;}
.y35{bottom:651.040000pt;}
.y92{bottom:652.573333pt;}
.y5f{bottom:653.373333pt;}
.y5e{bottom:669.373333pt;}
.yd{bottom:674.013333pt;}
.y91{bottom:679.293333pt;}
.y5d{bottom:685.213333pt;}
.y90{bottom:694.973333pt;}
.y5c{bottom:701.053333pt;}
.y37{bottom:702.333333pt;}
.y5b{bottom:716.893333pt;}
.y8f{bottom:721.693333pt;}
.yc{bottom:722.173333pt;}
.y5a{bottom:740.413333pt;}
.y34{bottom:741.853333pt;}
.y8e{bottom:748.253333pt;}
.y8d{bottom:763.933333pt;}
.y59{bottom:764.733333pt;}
.y31{bottom:777.280000pt;}
.y58{bottom:780.573333pt;}
.y8c{bottom:781.533333pt;}
.y33{bottom:791.613333pt;}
.y57{bottom:796.413333pt;}
.y8b{bottom:810.693333pt;}
.y56{bottom:812.293333pt;}
.y8a{bottom:826.533333pt;}
.y55{bottom:828.133333pt;}
.yb{bottom:830.533333pt;}
.y2f{bottom:836.800000pt;}
.y89{bottom:842.373333pt;}
.y47{bottom:849.600000pt;}
.y54{bottom:851.653333pt;}
.y88{bottom:858.373333pt;}
.y87{bottom:874.213333pt;}
.y53{bottom:875.973333pt;}
.y46{bottom:879.493333pt;}
.y86{bottom:890.053333pt;}
.y52{bottom:891.813333pt;}
.y45{bottom:902.853333pt;}
.y85{bottom:905.893333pt;}
.y51{bottom:907.653333pt;}
.y84{bottom:921.733333pt;}
.y50{bottom:923.493333pt;}
.y44{bottom:926.213333pt;}
.y83{bottom:937.733333pt;}
.y4f{bottom:939.333333pt;}
.yb3{bottom:941.253333pt;}
.y43{bottom:949.733333pt;}
.y4e{bottom:955.333333pt;}
.yb2{bottom:956.933333pt;}
.y4d{bottom:978.853333pt;}
.yb1{bottom:983.653333pt;}
.y82{bottom:984.453333pt;}
.ya{bottom:984.613333pt;}
.y4c{bottom:996.773333pt;}
.yb0{bottom:999.333333pt;}
.y81{bottom:1000.453333pt;}
.y80{bottom:1017.093333pt;}
.y4b{bottom:1025.920000pt;}
.yaf{bottom:1026.080000pt;}
.y7f{bottom:1032.960000pt;}
.y4a{bottom:1041.760000pt;}
.y7e{bottom:1057.280000pt;}
.y49{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h1b{height:33.515625pt;}
.h13{height:36.431250pt;}
.h3{height:43.215000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:47.742188pt;}
.he{height:48.160000pt;}
.hc{height:49.336436pt;}
.h8{height:49.622500pt;}
.h17{height:52.108438pt;}
.h12{height:52.134375pt;}
.h18{height:52.234000pt;}
.h19{height:53.535000pt;}
.h6{height:57.787500pt;}
.h15{height:57.913125pt;}
.h14{height:59.340000pt;}
.h10{height:64.290000pt;}
.h11{height:65.920000pt;}
.hb{height:69.660000pt;}
.hf{height:75.465000pt;}
.h1a{height:117.760000pt;}
.hd{height:142.560000pt;}
.h16{height:171.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:18.080000pt;}
.w2{width:75.840000pt;}
.w3{width:417.920000pt;}
.w8{width:445.280000pt;}
.w7{width:688.480000pt;}
.w4{width:696.320000pt;}
.w5{width:696.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.xf{left:9.600000pt;}
.x13{left:45.920000pt;}
.x5{left:48.000000pt;}
.x16{left:54.400000pt;}
.x15{left:57.920000pt;}
.x17{left:64.000000pt;}
.x1c{left:72.000000pt;}
.x1{left:88.960000pt;}
.x1d{left:96.032000pt;}
.x6{left:143.706667pt;}
.x1b{left:151.906667pt;}
.xa{left:154.746667pt;}
.x1a{left:176.320000pt;}
.x12{left:199.866667pt;}
.x10{left:226.946667pt;}
.x18{left:256.386667pt;}
.x14{left:298.146667pt;}
.x7{left:317.026667pt;}
.x19{left:318.786667pt;}
.x3{left:327.040000pt;}
.x4{left:411.520000pt;}
.xc{left:414.173333pt;}
.xd{left:438.173333pt;}
.xe{left:462.173333pt;}
.x11{left:518.493333pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
.xb{left:752.160000pt;}
}




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