
    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_6a391c70e8f46d40b70fd1b8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.435059;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_df8958c44bfccbdb856057b1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_71f512daf68e8a39892ed4c7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_557598bdfd96f34006a3ad53.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_083003faa5ec3f1c0a979295.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_cae9fbed7b45590ffe226570.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_3a6f040f5b5b321f7935e681.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_2eb7c3188fc7ed2fe4ed106b.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.014760px;}
.ls8{letter-spacing:0.048960px;}
.ls6{letter-spacing:0.074160px;}
.lsf{letter-spacing:0.143400px;}
.lsb{letter-spacing:0.173400px;}
.ls0{letter-spacing:11.880000px;}
.ls9{letter-spacing:13.886640px;}
.lse{letter-spacing:35.846640px;}
.ls7{letter-spacing:50.184000px;}
.lsa{letter-spacing:56.925360px;}
.ls2{letter-spacing:71.687520px;}
.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:-15.696000px;}
.ws3{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.369800px;}
.ws8{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:61.184880px;}
._b{margin-left:-3.881400px;}
._2{margin-left:-2.130600px;}
._0{margin-left:-1.020000px;}
._1{width:1.258200px;}
._9{width:2.322000px;}
._3{width:3.366600px;}
._4{width:5.170200px;}
._8{width:6.313201px;}
._7{width:7.408921px;}
._5{width:8.476800px;}
._6{width:9.585600px;}
._a{width:10.701600px;}
._c{width:11.783520px;}
._1d{width:14.248440px;}
._2a{width:15.263639px;}
._d{width:16.412760px;}
._13{width:17.735400px;}
._14{width:18.937800px;}
._24{width:20.320560px;}
._15{width:21.522960px;}
._1e{width:23.386680px;}
._f{width:24.589080px;}
._20{width:26.573040px;}
._1c{width:27.835560px;}
._1a{width:29.278440px;}
._12{width:31.382640px;}
._1f{width:37.815480px;}
._1b{width:44.007840px;}
._e{width:58.075920px;}
._16{width:61.863480px;}
._29{width:63.276120px;}
._23{width:65.651040px;}
._25{width:71.843400px;}
._28{width:74.007720px;}
._11{width:78.997680px;}
._27{width:80.079840px;}
._18{width:89.458560px;}
._26{width:110.801160px;}
._21{width:112.544640px;}
._22{width:120.841200px;}
._19{width:135.390240px;}
._17{width:149.518440px;}
._10{width:152.223840px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y75{bottom:3.330000px;}
.y57{bottom:7.830000px;}
.y49{bottom:7.920000px;}
.y74{bottom:20.970000px;}
.y6e{bottom:25.380000px;}
.y55{bottom:25.470000px;}
.y73{bottom:38.520000px;}
.y54{bottom:43.020000px;}
.y68{bottom:43.110000px;}
.y72{bottom:56.160000px;}
.y61{bottom:60.570000px;}
.y53{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y71{bottom:73.710000px;}
.y24{bottom:74.190000px;}
.y52{bottom:78.210000px;}
.y70{bottom:91.260000px;}
.y51{bottom:95.760000px;}
.y5e{bottom:95.850000px;}
.y1{bottom:100.560000px;}
.y4a{bottom:110.820000px;}
.y60{bottom:113.310000px;}
.y50{bottom:113.400000px;}
.y5d{bottom:113.430000px;}
.y6f{bottom:120.180000px;}
.ya3{bottom:124.680000px;}
.y4f{bottom:130.950000px;}
.y5c{bottom:130.980000px;}
.y67{bottom:131.040000px;}
.ya2{bottom:142.320000px;}
.y6d{bottom:148.500000px;}
.y4e{bottom:148.590000px;}
.y5b{bottom:148.620000px;}
.y4d{bottom:166.140000px;}
.y5a{bottom:166.170000px;}
.ya1{bottom:168.870000px;}
.y4c{bottom:183.690000px;}
.y66{bottom:183.780000px;}
.y59{bottom:183.810000px;}
.ya0{bottom:186.420000px;}
.y6c{bottom:201.240000px;}
.y4b{bottom:201.330000px;}
.y9f{bottom:213.060000px;}
.y22{bottom:215.580000px;}
.y6b{bottom:218.880000px;}
.y65{bottom:218.970000px;}
.y9e{bottom:230.610000px;}
.y69{bottom:230.970000px;}
.y21{bottom:233.130000px;}
.y6a{bottom:236.430000px;}
.y64{bottom:236.520000px;}
.y20{bottom:250.770000px;}
.y63{bottom:254.070000px;}
.y9d{bottom:257.250000px;}
.y9c{bottom:274.800000px;}
.y1f{bottom:277.680000px;}
.y9b{bottom:292.350000px;}
.y1e{bottom:314.670000px;}
.y9a{bottom:318.990000px;}
.y48{bottom:331.590000px;}
.y1d{bottom:332.220000px;}
.y99{bottom:336.540000px;}
.y1c{bottom:359.130000px;}
.y98{bottom:363.180000px;}
.y47{bottom:380.280000px;}
.y97{bottom:380.730000px;}
.y1b{bottom:396.210000px;}
.y46{bottom:407.190000px;}
.y96{bottom:407.640000px;}
.y1a{bottom:413.760000px;}
.y19{bottom:431.310000px;}
.y18{bottom:448.950000px;}
.y45{bottom:455.520000px;}
.y95{bottom:455.880000px;}
.y17{bottom:466.500000px;}
.y44{bottom:473.100000px;}
.y94{bottom:473.550000px;}
.y16{bottom:484.170000px;}
.y62{bottom:486.870000px;}
.y43{bottom:490.650000px;}
.y93{bottom:491.100000px;}
.y15{bottom:501.720000px;}
.y42{bottom:508.290000px;}
.y92{bottom:508.650000px;}
.y14{bottom:519.270000px;}
.y41{bottom:525.840000px;}
.y91{bottom:526.290000px;}
.y40{bottom:543.480000px;}
.y90{bottom:543.840000px;}
.y13{bottom:546.180000px;}
.y3f{bottom:561.030000px;}
.y8f{bottom:561.480000px;}
.y3e{bottom:578.580000px;}
.y8e{bottom:579.030000px;}
.y12{bottom:594.780000px;}
.y8d{bottom:596.580000px;}
.y3d{bottom:605.220000px;}
.y8c{bottom:614.220000px;}
.y11{bottom:631.860000px;}
.y3c{bottom:640.770000px;}
.y8b{bottom:641.130000px;}
.y10{bottom:649.410000px;}
.y3b{bottom:658.410000px;}
.yf{bottom:666.960000px;}
.y3a{bottom:675.960000px;}
.ye{bottom:684.600000px;}
.y8a{bottom:689.370000px;}
.y39{bottom:693.510000px;}
.yd{bottom:702.150000px;}
.y89{bottom:707.010000px;}
.y38{bottom:711.150000px;}
.yc{bottom:719.790000px;}
.y88{bottom:724.560000px;}
.yb{bottom:737.340000px;}
.y87{bottom:742.110000px;}
.y37{bottom:746.700000px;}
.ya{bottom:754.890000px;}
.y86{bottom:759.750000px;}
.y5f{bottom:760.470000px;}
.y36{bottom:764.340000px;}
.y85{bottom:777.300000px;}
.y9{bottom:781.890000px;}
.y84{bottom:794.850000px;}
.y35{bottom:799.440000px;}
.y83{bottom:812.490000px;}
.y34{bottom:817.080000px;}
.y8{bottom:828.600000px;}
.y33{bottom:834.630000px;}
.y82{bottom:848.040000px;}
.y32{bottom:852.270000px;}
.y7{bottom:864.240000px;}
.y81{bottom:865.680000px;}
.y31{bottom:869.820000px;}
.y80{bottom:883.230000px;}
.y30{bottom:887.370000px;}
.y6{bottom:899.790000px;}
.y7f{bottom:900.780000px;}
.y58{bottom:910.860000px;}
.y7e{bottom:918.420000px;}
.y2f{bottom:923.010000px;}
.y5{bottom:935.610000px;}
.y7d{bottom:935.970000px;}
.y2e{bottom:940.560000px;}
.y7c{bottom:953.610000px;}
.y2d{bottom:958.110000px;}
.y7b{bottom:971.160000px;}
.y4{bottom:971.700000px;}
.y2c{bottom:975.750000px;}
.y7a{bottom:988.710000px;}
.y2b{bottom:993.300000px;}
.y79{bottom:1006.350000px;}
.y3{bottom:1009.980000px;}
.y2a{bottom:1010.970000px;}
.y78{bottom:1023.930000px;}
.y29{bottom:1028.520000px;}
.y77{bottom:1041.570000px;}
.y28{bottom:1046.070000px;}
.ya8{bottom:1051.920000px;}
.y27{bottom:1063.710000px;}
.y76{bottom:1068.480000px;}
.ya7{bottom:1069.560000px;}
.y26{bottom:1090.260000px;}
.ya6{bottom:1096.110000px;}
.y56{bottom:1114.110000px;}
.ya5{bottom:1122.750000px;}
.y25{bottom:1126.170000px;}
.ya4{bottom:1140.300000px;}
.y23{bottom:1194.300000px;}
.ha{height:26.640000px;}
.h2{height:37.476562px;}
.h3{height:38.100586px;}
.hc{height:39.690000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h12{height:61.793886px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h7{height:74.953125px;}
.h11{height:109.980000px;}
.he{height:149.670000px;}
.hd{height:202.530000px;}
.hb{height:220.050000px;}
.h10{height:255.180000px;}
.hf{height:272.790000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:77.670000px;}
.w4{width:103.800000px;}
.w5{width:572.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.960000px;}
.x1{left:68.040000px;}
.x9{left:78.659987px;}
.x2{left:95.040000px;}
.xa{left:110.609987px;}
.x3{left:122.040000px;}
.x7{left:147.150000px;}
.x4{left:202.799987px;}
.x8{left:251.760000px;}
.x5{left:792.059987px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.013120pt;}
.ls8{letter-spacing:0.043520pt;}
.ls6{letter-spacing:0.065920pt;}
.lsf{letter-spacing:0.127467pt;}
.lsb{letter-spacing:0.154133pt;}
.ls0{letter-spacing:10.560000pt;}
.ls9{letter-spacing:12.343680pt;}
.lse{letter-spacing:31.863680pt;}
.ls7{letter-spacing:44.608000pt;}
.lsa{letter-spacing:50.600320pt;}
.ls2{letter-spacing:63.722240pt;}
.ws7{word-spacing:-13.952000pt;}
.ws3{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.884267pt;}
.ws8{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:54.386560pt;}
._b{margin-left:-3.450134pt;}
._2{margin-left:-1.893866pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.118400pt;}
._9{width:2.064000pt;}
._3{width:2.992533pt;}
._4{width:4.595733pt;}
._8{width:5.611734pt;}
._7{width:6.585708pt;}
._5{width:7.534933pt;}
._6{width:8.520533pt;}
._a{width:9.512534pt;}
._c{width:10.474240pt;}
._1d{width:12.665280pt;}
._2a{width:13.567679pt;}
._d{width:14.589120pt;}
._13{width:15.764800pt;}
._14{width:16.833600pt;}
._24{width:18.062720pt;}
._15{width:19.131520pt;}
._1e{width:20.788160pt;}
._f{width:21.856960pt;}
._20{width:23.620480pt;}
._1c{width:24.742720pt;}
._1a{width:26.025280pt;}
._12{width:27.895680pt;}
._1f{width:33.613760pt;}
._1b{width:39.118080pt;}
._e{width:51.623040pt;}
._16{width:54.989760pt;}
._29{width:56.245440pt;}
._23{width:58.356480pt;}
._25{width:63.860800pt;}
._28{width:65.784640pt;}
._11{width:70.220160pt;}
._27{width:71.182080pt;}
._18{width:79.518720pt;}
._26{width:98.489920pt;}
._21{width:100.039680pt;}
._22{width:107.414400pt;}
._19{width:120.346880pt;}
._17{width:132.905280pt;}
._10{width:135.310080pt;}
.fs0{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:2.960000pt;}
.y57{bottom:6.960000pt;}
.y49{bottom:7.040000pt;}
.y74{bottom:18.640000pt;}
.y6e{bottom:22.560000pt;}
.y55{bottom:22.640000pt;}
.y73{bottom:34.240000pt;}
.y54{bottom:38.240000pt;}
.y68{bottom:38.320000pt;}
.y72{bottom:49.920000pt;}
.y61{bottom:53.840000pt;}
.y53{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y71{bottom:65.520000pt;}
.y24{bottom:65.946667pt;}
.y52{bottom:69.520000pt;}
.y70{bottom:81.120000pt;}
.y51{bottom:85.120000pt;}
.y5e{bottom:85.200000pt;}
.y1{bottom:89.386667pt;}
.y4a{bottom:98.506667pt;}
.y60{bottom:100.720000pt;}
.y50{bottom:100.800000pt;}
.y5d{bottom:100.826667pt;}
.y6f{bottom:106.826667pt;}
.ya3{bottom:110.826667pt;}
.y4f{bottom:116.400000pt;}
.y5c{bottom:116.426667pt;}
.y67{bottom:116.480000pt;}
.ya2{bottom:126.506667pt;}
.y6d{bottom:132.000000pt;}
.y4e{bottom:132.080000pt;}
.y5b{bottom:132.106667pt;}
.y4d{bottom:147.680000pt;}
.y5a{bottom:147.706667pt;}
.ya1{bottom:150.106667pt;}
.y4c{bottom:163.280000pt;}
.y66{bottom:163.360000pt;}
.y59{bottom:163.386667pt;}
.ya0{bottom:165.706667pt;}
.y6c{bottom:178.880000pt;}
.y4b{bottom:178.960000pt;}
.y9f{bottom:189.386667pt;}
.y22{bottom:191.626667pt;}
.y6b{bottom:194.560000pt;}
.y65{bottom:194.640000pt;}
.y9e{bottom:204.986667pt;}
.y69{bottom:205.306667pt;}
.y21{bottom:207.226667pt;}
.y6a{bottom:210.160000pt;}
.y64{bottom:210.240000pt;}
.y20{bottom:222.906667pt;}
.y63{bottom:225.840000pt;}
.y9d{bottom:228.666667pt;}
.y9c{bottom:244.266667pt;}
.y1f{bottom:246.826667pt;}
.y9b{bottom:259.866667pt;}
.y1e{bottom:279.706667pt;}
.y9a{bottom:283.546667pt;}
.y48{bottom:294.746667pt;}
.y1d{bottom:295.306667pt;}
.y99{bottom:299.146667pt;}
.y1c{bottom:319.226667pt;}
.y98{bottom:322.826667pt;}
.y47{bottom:338.026667pt;}
.y97{bottom:338.426667pt;}
.y1b{bottom:352.186667pt;}
.y46{bottom:361.946667pt;}
.y96{bottom:362.346667pt;}
.y1a{bottom:367.786667pt;}
.y19{bottom:383.386667pt;}
.y18{bottom:399.066667pt;}
.y45{bottom:404.906667pt;}
.y95{bottom:405.226667pt;}
.y17{bottom:414.666667pt;}
.y44{bottom:420.533333pt;}
.y94{bottom:420.933333pt;}
.y16{bottom:430.373333pt;}
.y62{bottom:432.773333pt;}
.y43{bottom:436.133333pt;}
.y93{bottom:436.533333pt;}
.y15{bottom:445.973333pt;}
.y42{bottom:451.813333pt;}
.y92{bottom:452.133333pt;}
.y14{bottom:461.573333pt;}
.y41{bottom:467.413333pt;}
.y91{bottom:467.813333pt;}
.y40{bottom:483.093333pt;}
.y90{bottom:483.413333pt;}
.y13{bottom:485.493333pt;}
.y3f{bottom:498.693333pt;}
.y8f{bottom:499.093333pt;}
.y3e{bottom:514.293333pt;}
.y8e{bottom:514.693333pt;}
.y12{bottom:528.693333pt;}
.y8d{bottom:530.293333pt;}
.y3d{bottom:537.973333pt;}
.y8c{bottom:545.973333pt;}
.y11{bottom:561.653333pt;}
.y3c{bottom:569.573333pt;}
.y8b{bottom:569.893333pt;}
.y10{bottom:577.253333pt;}
.y3b{bottom:585.253333pt;}
.yf{bottom:592.853333pt;}
.y3a{bottom:600.853333pt;}
.ye{bottom:608.533333pt;}
.y8a{bottom:612.773333pt;}
.y39{bottom:616.453333pt;}
.yd{bottom:624.133333pt;}
.y89{bottom:628.453333pt;}
.y38{bottom:632.133333pt;}
.yc{bottom:639.813333pt;}
.y88{bottom:644.053333pt;}
.yb{bottom:655.413333pt;}
.y87{bottom:659.653333pt;}
.y37{bottom:663.733333pt;}
.ya{bottom:671.013333pt;}
.y86{bottom:675.333333pt;}
.y5f{bottom:675.973333pt;}
.y36{bottom:679.413333pt;}
.y85{bottom:690.933333pt;}
.y9{bottom:695.013333pt;}
.y84{bottom:706.533333pt;}
.y35{bottom:710.613333pt;}
.y83{bottom:722.213333pt;}
.y34{bottom:726.293333pt;}
.y8{bottom:736.533333pt;}
.y33{bottom:741.893333pt;}
.y82{bottom:753.813333pt;}
.y32{bottom:757.573333pt;}
.y7{bottom:768.213333pt;}
.y81{bottom:769.493333pt;}
.y31{bottom:773.173333pt;}
.y80{bottom:785.093333pt;}
.y30{bottom:788.773333pt;}
.y6{bottom:799.813333pt;}
.y7f{bottom:800.693333pt;}
.y58{bottom:809.653333pt;}
.y7e{bottom:816.373333pt;}
.y2f{bottom:820.453333pt;}
.y5{bottom:831.653333pt;}
.y7d{bottom:831.973333pt;}
.y2e{bottom:836.053333pt;}
.y7c{bottom:847.653333pt;}
.y2d{bottom:851.653333pt;}
.y7b{bottom:863.253333pt;}
.y4{bottom:863.733333pt;}
.y2c{bottom:867.333333pt;}
.y7a{bottom:878.853333pt;}
.y2b{bottom:882.933333pt;}
.y79{bottom:894.533333pt;}
.y3{bottom:897.760000pt;}
.y2a{bottom:898.640000pt;}
.y78{bottom:910.160000pt;}
.y29{bottom:914.240000pt;}
.y77{bottom:925.840000pt;}
.y28{bottom:929.840000pt;}
.ya8{bottom:935.040000pt;}
.y27{bottom:945.520000pt;}
.y76{bottom:949.760000pt;}
.ya7{bottom:950.720000pt;}
.y26{bottom:969.120000pt;}
.ya6{bottom:974.320000pt;}
.y56{bottom:990.320000pt;}
.ya5{bottom:998.000000pt;}
.y25{bottom:1001.040000pt;}
.ya4{bottom:1013.600000pt;}
.y23{bottom:1061.600000pt;}
.ha{height:23.680000pt;}
.h2{height:33.312500pt;}
.h3{height:33.867188pt;}
.hc{height:35.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h12{height:54.927899pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h7{height:66.625000pt;}
.h11{height:97.760000pt;}
.he{height:133.040000pt;}
.hd{height:180.026667pt;}
.hb{height:195.600000pt;}
.h10{height:226.826667pt;}
.hf{height:242.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:69.040000pt;}
.w4{width:92.266667pt;}
.w5{width:509.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.520000pt;}
.x1{left:60.480000pt;}
.x9{left:69.919988pt;}
.x2{left:84.480000pt;}
.xa{left:98.319988pt;}
.x3{left:108.480000pt;}
.x7{left:130.800000pt;}
.x4{left:180.266655pt;}
.x8{left:223.786667pt;}
.x5{left:704.053322pt;}
}




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