
    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_86336d38f3162739cac49eb0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d086ff852a1485f5cbe6e792.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_c9020fe29394d762928a1950.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_e9023e92c63e7eab7be71bc7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_8e64ae0a1edf61284565a087.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119629;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_77d4ebee55be5b50be04ad3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_8c9b08a75a4c41c6824577a3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d16951bbb8a1d88f0910d900.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.119629;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_94bee28191c97a06c79ea13f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.022320px;}
.ls4{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.900000px;}
.lse{letter-spacing:1.440000px;}
.ls12{letter-spacing:2.160000px;}
.lsc{letter-spacing:3.780000px;}
.lsf{letter-spacing:4.320000px;}
.ls15{letter-spacing:4.500000px;}
.ls14{letter-spacing:5.040000px;}
.ls10{letter-spacing:5.220000px;}
.ls13{letter-spacing:5.760000px;}
.ls7{letter-spacing:5.940000px;}
.lsd{letter-spacing:6.480000px;}
.ls16{letter-spacing:16.020000px;}
.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;}
}
.ws9{word-spacing:-16.712400px;}
.ws6{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.482000px;}
.ws4{word-spacing:-13.284000px;}
.ws8{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.924560px;}
.ws1{word-spacing:-10.902240px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-7.659360px;}
._1{margin-left:-6.454080px;}
._5{margin-left:-5.356080px;}
._7{margin-left:-3.826320px;}
._6{margin-left:-2.569680px;}
._0{margin-left:-1.494000px;}
._2{width:1.015920px;}
._f{width:2.042880px;}
._3{width:3.050400px;}
._b{width:4.451760px;}
._c{width:5.940000px;}
._9{width:7.092000px;}
._8{width:8.370000px;}
._a{width:9.558000px;}
._d{width:10.962000px;}
._e{width:11.988000px;}
._13{width:13.075200px;}
._14{width:14.215680px;}
._12{width:15.228000px;}
._1c{width:16.421040px;}
._17{width:17.576640px;}
._15{width:18.613440px;}
._11{width:19.674000px;}
._10{width:20.898000px;}
._16{width:21.965040px;}
._18{width:23.011920px;}
._19{width:24.031440px;}
._1d{width:25.412640px;}
._1b{width:27.232080px;}
._1a{width:28.260000px;}
._20{width:171.760320px;}
._21{width:173.005200px;}
._1e{width:193.884480px;}
._1f{width:194.981040px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y41{bottom:2.880000px;}
.y9{bottom:5.610000px;}
.y2{bottom:6.510000px;}
.y43{bottom:9.720000px;}
.y44{bottom:10.800000px;}
.y40{bottom:18.540000px;}
.y5{bottom:25.410000px;}
.y8{bottom:28.830000px;}
.y3f{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y3e{bottom:49.500000px;}
.yb{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y3d{bottom:64.980000px;}
.y3c{bottom:80.640000px;}
.y3b{bottom:96.165000px;}
.y7e{bottom:110.376000px;}
.y3a{bottom:111.645000px;}
.y49{bottom:113.796000px;}
.y8c{bottom:114.876000px;}
.y7d{bottom:124.236000px;}
.y39{bottom:127.125000px;}
.y7c{bottom:128.736000px;}
.y48{bottom:135.576000px;}
.y7b{bottom:137.916000px;}
.y8b{bottom:142.416000px;}
.y38{bottom:142.785000px;}
.y7a{bottom:151.770000px;}
.y8a{bottom:153.750000px;}
.y81{bottom:153.930000px;}
.y79{bottom:156.270000px;}
.y47{bottom:157.350000px;}
.y37{bottom:158.265000px;}
.y78{bottom:165.630000px;}
.y87{bottom:167.610000px;}
.y85{bottom:170.130000px;}
.y36{bottom:173.745000px;}
.y80{bottom:175.710000px;}
.y46{bottom:179.130000px;}
.y77{bottom:179.310000px;}
.y84{bottom:181.290000px;}
.y76{bottom:183.810000px;}
.y35{bottom:189.225000px;}
.y75{bottom:195.150000px;}
.y7f{bottom:197.490000px;}
.y45{bottom:201.090000px;}
.y86{bottom:203.430000px;}
.y34{bottom:204.885000px;}
.y42{bottom:216.570000px;}
.y74{bottom:219.270000px;}
.y33{bottom:220.365000px;}
.y32{bottom:235.845000px;}
.y73{bottom:241.230000px;}
.y13{bottom:247.890000px;}
.y31{bottom:251.325000px;}
.y71{bottom:263.010000px;}
.y30{bottom:266.985000px;}
.y72{bottom:268.950000px;}
.y2f{bottom:282.465000px;}
.y70{bottom:284.790000px;}
.y2e{bottom:297.945000px;}
.y6f{bottom:306.570000px;}
.y2d{bottom:313.425000px;}
.y6e{bottom:328.350000px;}
.y2c{bottom:329.085000px;}
.y2b{bottom:344.565000px;}
.y6d{bottom:350.355000px;}
.y2a{bottom:360.075000px;}
.y6c{bottom:372.135000px;}
.y29{bottom:375.555000px;}
.y83{bottom:378.075000px;}
.y28{bottom:391.035000px;}
.y6b{bottom:393.915000px;}
.y27{bottom:406.695000px;}
.y6a{bottom:415.695000px;}
.y26{bottom:422.175000px;}
.y25{bottom:437.655000px;}
.y24{bottom:453.135000px;}
.y68{bottom:459.435000px;}
.y69{bottom:465.375000px;}
.y23{bottom:468.795000px;}
.y67{bottom:481.215000px;}
.y22{bottom:484.275000px;}
.y21{bottom:499.755000px;}
.y66{bottom:502.995000px;}
.y20{bottom:515.235000px;}
.y65{bottom:524.775000px;}
.y1f{bottom:530.895000px;}
.y1e{bottom:546.375000px;}
.y64{bottom:546.735000px;}
.y1d{bottom:561.855000px;}
.y63{bottom:568.515000px;}
.y1c{bottom:577.335000px;}
.y62{bottom:590.295000px;}
.y1b{bottom:592.995000px;}
.y1a{bottom:608.475000px;}
.y61{bottom:612.105000px;}
.y19{bottom:624.000000px;}
.y60{bottom:633.885000px;}
.y18{bottom:639.480000px;}
.y17{bottom:655.140000px;}
.y5f{bottom:655.845000px;}
.y16{bottom:670.620000px;}
.y5e{bottom:677.625000px;}
.y89{bottom:683.565000px;}
.y15{bottom:686.100000px;}
.y5d{bottom:699.405000px;}
.y14{bottom:701.580000px;}
.y82{bottom:705.345000px;}
.y5c{bottom:721.185000px;}
.y5b{bottom:743.145000px;}
.y5a{bottom:764.925000px;}
.y59{bottom:786.705000px;}
.y58{bottom:808.485000px;}
.y57{bottom:830.265000px;}
.y56{bottom:852.225000px;}
.y55{bottom:874.050000px;}
.y54{bottom:895.830000px;}
.y53{bottom:917.610000px;}
.y52{bottom:939.570000px;}
.y88{bottom:945.510000px;}
.y51{bottom:961.350000px;}
.y12{bottom:968.550000px;}
.y4f{bottom:983.130000px;}
.y11{bottom:987.270000px;}
.y50{bottom:989.070000px;}
.y10{bottom:1004.370000px;}
.y4e{bottom:1004.910000px;}
.yf{bottom:1024.710000px;}
.y4d{bottom:1026.690000px;}
.ye{bottom:1044.870000px;}
.y4c{bottom:1048.650000px;}
.yd{bottom:1063.770000px;}
.y4b{bottom:1070.430000px;}
.yc{bottom:1089.510000px;}
.y4a{bottom:1092.210000px;}
.ya{bottom:1112.190000px;}
.y1{bottom:1132.350000px;}
.h14{height:21.114844px;}
.h13{height:29.158594px;}
.h11{height:31.320000px;}
.ha{height:33.683203px;}
.hf{height:37.705078px;}
.he{height:38.100586px;}
.h15{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h10{height:44.507812px;}
.hc{height:46.251562px;}
.hb{height:46.736719px;}
.h8{height:47.980898px;}
.h6{height:49.255313px;}
.h4{height:50.800781px;}
.h12{height:53.709961px;}
.h16{height:54.596250px;}
.h9{height:54.864844px;}
.h7{height:65.884219px;}
.h2{height:77.436000px;}
.hd{height:714.165000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:283.530000px;}
.w9{width:391.575000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x15{left:9.540000px;}
.x6{left:20.160000px;}
.x13{left:29.520000px;}
.x2{left:58.494000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:104.445000px;}
.xa{left:108.035987px;}
.x1e{left:111.815987px;}
.xc{left:121.535987px;}
.x8{left:132.165000px;}
.x2c{left:144.035987px;}
.x1f{left:150.509987px;}
.x28{left:158.069973px;}
.x16{left:161.129987px;}
.x29{left:163.289987px;}
.x3{left:171.930000px;}
.x20{left:177.149973px;}
.x21{left:182.369987px;}
.xd{left:248.249987px;}
.xf{left:267.329987px;}
.x2a{left:282.674973px;}
.xe{left:285.194987px;}
.x2b{left:287.894987px;}
.x1d{left:324.074987px;}
.x10{left:333.974987px;}
.x14{left:391.575000px;}
.x11{left:446.474987px;}
.x19{left:451.154973px;}
.x1a{left:456.374987px;}
.xb{left:503.024987px;}
.x1b{left:512.744973px;}
.x1c{left:517.964987px;}
.x17{left:549.284973px;}
.x18{left:554.504987px;}
.x12{left:567.105000px;}
.x5{left:599.865000px;}
.x24{left:698.009973px;}
.x25{left:703.229987px;}
.x22{left:753.629973px;}
.x23{left:758.849987px;}
.x26{left:779.189973px;}
.x27{left:784.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.019840pt;}
.ls4{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.800000pt;}
.lse{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.920000pt;}
.lsc{letter-spacing:3.360000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls15{letter-spacing:4.000000pt;}
.ls14{letter-spacing:4.480000pt;}
.ls10{letter-spacing:4.640000pt;}
.ls13{letter-spacing:5.120000pt;}
.ls7{letter-spacing:5.280000pt;}
.lsd{letter-spacing:5.760000pt;}
.ls16{letter-spacing:14.240000pt;}
.ws9{word-spacing:-14.855467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.984000pt;}
.ws4{word-spacing:-11.808000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.710720pt;}
.ws1{word-spacing:-9.690880pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-6.808320pt;}
._1{margin-left:-5.736960pt;}
._5{margin-left:-4.760960pt;}
._7{margin-left:-3.401173pt;}
._6{margin-left:-2.284160pt;}
._0{margin-left:-1.328000pt;}
._2{width:0.903040pt;}
._f{width:1.815893pt;}
._3{width:2.711467pt;}
._b{width:3.957120pt;}
._c{width:5.280000pt;}
._9{width:6.304000pt;}
._8{width:7.440000pt;}
._a{width:8.496000pt;}
._d{width:9.744000pt;}
._e{width:10.656000pt;}
._13{width:11.622400pt;}
._14{width:12.636160pt;}
._12{width:13.536000pt;}
._1c{width:14.596480pt;}
._17{width:15.623680pt;}
._15{width:16.545280pt;}
._11{width:17.488000pt;}
._10{width:18.576000pt;}
._16{width:19.524480pt;}
._18{width:20.455040pt;}
._19{width:21.361280pt;}
._1d{width:22.589013pt;}
._1b{width:24.206293pt;}
._1a{width:25.120000pt;}
._20{width:152.675840pt;}
._21{width:153.782400pt;}
._1e{width:172.341760pt;}
._1f{width:173.316480pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.560000pt;}
.y9{bottom:4.986667pt;}
.y2{bottom:5.786667pt;}
.y43{bottom:8.640000pt;}
.y44{bottom:9.600000pt;}
.y40{bottom:16.480000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.626667pt;}
.y3f{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y3e{bottom:44.000000pt;}
.yb{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y3d{bottom:57.760000pt;}
.y3c{bottom:71.680000pt;}
.y3b{bottom:85.480000pt;}
.y7e{bottom:98.112000pt;}
.y3a{bottom:99.240000pt;}
.y49{bottom:101.152000pt;}
.y8c{bottom:102.112000pt;}
.y7d{bottom:110.432000pt;}
.y39{bottom:113.000000pt;}
.y7c{bottom:114.432000pt;}
.y48{bottom:120.512000pt;}
.y7b{bottom:122.592000pt;}
.y8b{bottom:126.592000pt;}
.y38{bottom:126.920000pt;}
.y7a{bottom:134.906667pt;}
.y8a{bottom:136.666667pt;}
.y81{bottom:136.826667pt;}
.y79{bottom:138.906667pt;}
.y47{bottom:139.866667pt;}
.y37{bottom:140.680000pt;}
.y78{bottom:147.226667pt;}
.y87{bottom:148.986667pt;}
.y85{bottom:151.226667pt;}
.y36{bottom:154.440000pt;}
.y80{bottom:156.186667pt;}
.y46{bottom:159.226667pt;}
.y77{bottom:159.386667pt;}
.y84{bottom:161.146667pt;}
.y76{bottom:163.386667pt;}
.y35{bottom:168.200000pt;}
.y75{bottom:173.466667pt;}
.y7f{bottom:175.546667pt;}
.y45{bottom:178.746667pt;}
.y86{bottom:180.826667pt;}
.y34{bottom:182.120000pt;}
.y42{bottom:192.506667pt;}
.y74{bottom:194.906667pt;}
.y33{bottom:195.880000pt;}
.y32{bottom:209.640000pt;}
.y73{bottom:214.426667pt;}
.y13{bottom:220.346667pt;}
.y31{bottom:223.400000pt;}
.y71{bottom:233.786667pt;}
.y30{bottom:237.320000pt;}
.y72{bottom:239.066667pt;}
.y2f{bottom:251.080000pt;}
.y70{bottom:253.146667pt;}
.y2e{bottom:264.840000pt;}
.y6f{bottom:272.506667pt;}
.y2d{bottom:278.600000pt;}
.y6e{bottom:291.866667pt;}
.y2c{bottom:292.520000pt;}
.y2b{bottom:306.280000pt;}
.y6d{bottom:311.426667pt;}
.y2a{bottom:320.066667pt;}
.y6c{bottom:330.786667pt;}
.y29{bottom:333.826667pt;}
.y83{bottom:336.066667pt;}
.y28{bottom:347.586667pt;}
.y6b{bottom:350.146667pt;}
.y27{bottom:361.506667pt;}
.y6a{bottom:369.506667pt;}
.y26{bottom:375.266667pt;}
.y25{bottom:389.026667pt;}
.y24{bottom:402.786667pt;}
.y68{bottom:408.386667pt;}
.y69{bottom:413.666667pt;}
.y23{bottom:416.706667pt;}
.y67{bottom:427.746667pt;}
.y22{bottom:430.466667pt;}
.y21{bottom:444.226667pt;}
.y66{bottom:447.106667pt;}
.y20{bottom:457.986667pt;}
.y65{bottom:466.466667pt;}
.y1f{bottom:471.906667pt;}
.y1e{bottom:485.666667pt;}
.y64{bottom:485.986667pt;}
.y1d{bottom:499.426667pt;}
.y63{bottom:505.346667pt;}
.y1c{bottom:513.186667pt;}
.y62{bottom:524.706667pt;}
.y1b{bottom:527.106667pt;}
.y1a{bottom:540.866667pt;}
.y61{bottom:544.093333pt;}
.y19{bottom:554.666667pt;}
.y60{bottom:563.453333pt;}
.y18{bottom:568.426667pt;}
.y17{bottom:582.346667pt;}
.y5f{bottom:582.973333pt;}
.y16{bottom:596.106667pt;}
.y5e{bottom:602.333333pt;}
.y89{bottom:607.613333pt;}
.y15{bottom:609.866667pt;}
.y5d{bottom:621.693333pt;}
.y14{bottom:623.626667pt;}
.y82{bottom:626.973333pt;}
.y5c{bottom:641.053333pt;}
.y5b{bottom:660.573333pt;}
.y5a{bottom:679.933333pt;}
.y59{bottom:699.293333pt;}
.y58{bottom:718.653333pt;}
.y57{bottom:738.013333pt;}
.y56{bottom:757.533333pt;}
.y55{bottom:776.933333pt;}
.y54{bottom:796.293333pt;}
.y53{bottom:815.653333pt;}
.y52{bottom:835.173333pt;}
.y88{bottom:840.453333pt;}
.y51{bottom:854.533333pt;}
.y12{bottom:860.933333pt;}
.y4f{bottom:873.893333pt;}
.y11{bottom:877.573333pt;}
.y50{bottom:879.173333pt;}
.y10{bottom:892.773333pt;}
.y4e{bottom:893.253333pt;}
.yf{bottom:910.853333pt;}
.y4d{bottom:912.613333pt;}
.ye{bottom:928.773333pt;}
.y4c{bottom:932.133333pt;}
.yd{bottom:945.573333pt;}
.y4b{bottom:951.493333pt;}
.yc{bottom:968.453333pt;}
.y4a{bottom:970.853333pt;}
.ya{bottom:988.613333pt;}
.y1{bottom:1006.533333pt;}
.h14{height:18.768750pt;}
.h13{height:25.918750pt;}
.h11{height:27.840000pt;}
.ha{height:29.940625pt;}
.hf{height:33.515625pt;}
.he{height:33.867188pt;}
.h15{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h10{height:39.562500pt;}
.hc{height:41.112500pt;}
.hb{height:41.543750pt;}
.h8{height:42.649687pt;}
.h6{height:43.782500pt;}
.h4{height:45.156250pt;}
.h12{height:47.742188pt;}
.h16{height:48.530000pt;}
.h9{height:48.768750pt;}
.h7{height:58.563750pt;}
.h2{height:68.832000pt;}
.hd{height:634.813333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:252.026667pt;}
.w9{width:348.066667pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x15{left:8.480000pt;}
.x6{left:17.920000pt;}
.x13{left:26.240000pt;}
.x2{left:51.994667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:92.840000pt;}
.xa{left:96.031988pt;}
.x1e{left:99.391988pt;}
.xc{left:108.031988pt;}
.x8{left:117.480000pt;}
.x2c{left:128.031988pt;}
.x1f{left:133.786655pt;}
.x28{left:140.506643pt;}
.x16{left:143.226655pt;}
.x29{left:145.146655pt;}
.x3{left:152.826667pt;}
.x20{left:157.466643pt;}
.x21{left:162.106655pt;}
.xd{left:220.666655pt;}
.xf{left:237.626655pt;}
.x2a{left:251.266643pt;}
.xe{left:253.506655pt;}
.x2b{left:255.906655pt;}
.x1d{left:288.066655pt;}
.x10{left:296.866655pt;}
.x14{left:348.066667pt;}
.x11{left:396.866655pt;}
.x19{left:401.026643pt;}
.x1a{left:405.666655pt;}
.xb{left:447.133322pt;}
.x1b{left:455.773310pt;}
.x1c{left:460.413322pt;}
.x17{left:488.253310pt;}
.x18{left:492.893322pt;}
.x12{left:504.093333pt;}
.x5{left:533.213333pt;}
.x24{left:620.453310pt;}
.x25{left:625.093322pt;}
.x22{left:669.893310pt;}
.x23{left:674.533322pt;}
.x26{left:692.613310pt;}
.x27{left:697.253322pt;}
}




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