
    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_08917614be73bfe2e3475528.woff')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_64c3e068968ef13344ab5ce5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.030273;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_dadc16b0b4f59fff92650b49.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_5475cac046f61100581b15a4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_659fe6097c68c8ae97170926.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_3379ca4ed3e5b5fbdbf6a268.woff')format("woff");}.ff6{font-family:ff6;line-height:1.087891;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_2d88cd1006d9debbcd35638f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_ba8522820e3bf73f00fcb9c7.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3415c02009ba2557eb0e28c6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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:-36.180000px;}
.v4{vertical-align:-31.620000px;}
.v3{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:22.500000px;}
.v7{vertical-align:31.650000px;}
.v1{vertical-align:36.000000px;}
.v5{vertical-align:47.400000px;}
.ls28{letter-spacing:-1.122000px;}
.ls11{letter-spacing:-0.762000px;}
.ls12{letter-spacing:-0.702000px;}
.ls18{letter-spacing:-0.406200px;}
.ls19{letter-spacing:-0.187800px;}
.ls1b{letter-spacing:-0.123000px;}
.ls3{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.037950px;}
.ls7{letter-spacing:0.137550px;}
.ls29{letter-spacing:0.168600px;}
.ls15{letter-spacing:0.187950px;}
.ls25{letter-spacing:0.353550px;}
.ls2b{letter-spacing:0.370050px;}
.ls1a{letter-spacing:0.477000px;}
.ls23{letter-spacing:0.537000px;}
.ls10{letter-spacing:0.636000px;}
.ls16{letter-spacing:0.648900px;}
.lsc{letter-spacing:0.696000px;}
.ls14{letter-spacing:0.717000px;}
.ls5{letter-spacing:0.741000px;}
.lsa{letter-spacing:0.750000px;}
.ls8{letter-spacing:0.900000px;}
.ls1c{letter-spacing:1.074000px;}
.lse{letter-spacing:1.116000px;}
.ls13{letter-spacing:1.152000px;}
.lsd{letter-spacing:1.182000px;}
.ls1d{letter-spacing:1.224000px;}
.ls22{letter-spacing:1.296000px;}
.ls1f{letter-spacing:1.302000px;}
.lsf{letter-spacing:1.332000px;}
.ls20{letter-spacing:1.446000px;}
.ls9{letter-spacing:1.548000px;}
.lsb{letter-spacing:1.836000px;}
.ls27{letter-spacing:1.986000px;}
.ls1e{letter-spacing:2.196000px;}
.ls17{letter-spacing:2.370000px;}
.ls21{letter-spacing:2.514000px;}
.ls26{letter-spacing:2.520000px;}
.ls6{letter-spacing:21.501000px;}
.ls0{letter-spacing:22.788900px;}
.ls1{letter-spacing:22.848900px;}
.ls2{letter-spacing:22.869000px;}
.ls4{letter-spacing:43.251000px;}
.ls2c{letter-spacing:85.401000px;}
.ls2a{letter-spacing:130.896000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-261.261000px;}
.ws10{word-spacing:-144.300000px;}
.ws4{word-spacing:-108.150000px;}
.ws6{word-spacing:-30.810450px;}
.wsf{word-spacing:-29.262450px;}
.ws15{word-spacing:-29.169900px;}
.ws11{word-spacing:-28.886700px;}
.ws1a{word-spacing:-24.468450px;}
.ws1c{word-spacing:-23.793000px;}
.ws7{word-spacing:-23.790450px;}
.wsb{word-spacing:-23.286450px;}
.ws19{word-spacing:-23.256450px;}
.ws18{word-spacing:-23.178450px;}
.ws8{word-spacing:-23.136450px;}
.ws17{word-spacing:-23.106450px;}
.ws9{word-spacing:-23.070450px;}
.ws16{word-spacing:-23.028450px;}
.wsc{word-spacing:-22.854450px;}
.wsa{word-spacing:-22.704450px;}
.ws14{word-spacing:-22.603350px;}
.ws5{word-spacing:-21.954450px;}
.ws12{word-spacing:-21.766650px;}
.ws1b{word-spacing:-20.832450px;}
.ws1d{word-spacing:-17.820000px;}
.ws2{word-spacing:-15.559950px;}
.ws1{word-spacing:-15.529500px;}
.wse{word-spacing:-14.646450px;}
.ws13{word-spacing:-14.616000px;}
.ws1e{word-spacing:-0.465000px;}
.ws1f{word-spacing:-0.261000px;}
.ws3{word-spacing:0.000000px;}
.ws21{word-spacing:28.126950px;}
.wsd{word-spacing:48.025500px;}
.ws20{word-spacing:59.843850px;}
._7{margin-left:-22.230300px;}
._10{margin-left:-14.167650px;}
._11{margin-left:-11.355750px;}
._e{margin-left:-9.144900px;}
._12{margin-left:-7.570500px;}
._9{margin-left:-6.533700px;}
._c{margin-left:-5.532600px;}
._1{margin-left:-4.217850px;}
._4{margin-left:-2.920050px;}
._3{margin-left:-1.622250px;}
._0{width:1.946700px;}
._5{width:3.568950px;}
._8{width:4.803450px;}
._13{width:6.092850px;}
._15{width:12.861150px;}
._a{width:15.888750px;}
._d{width:17.168250px;}
._17{width:20.580750px;}
._16{width:22.984500px;}
._f{width:26.528550px;}
._b{width:28.030050px;}
._2{width:61.159800px;}
._6{width:64.190100px;}
._14{width:854.683800px;}
.fc5{color:rgb(25,107,36);}
.fc4{color:rgb(39,83,23);}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fsb{font-size:72.000000px;}
.fs8{font-size:72.150000px;}
.fs3{font-size:76.500000px;}
.fs2{font-size:76.650000px;}
.fsc{font-size:81.000000px;}
.fsa{font-size:94.500000px;}
.fs6{font-size:94.650000px;}
.fs5{font-size:108.150000px;}
.fs1{font-size:112.650000px;}
.fs4{font-size:112.800000px;}
.fs7{font-size:144.150000px;}
.fs9{font-size:144.300000px;}
.fs0{font-size:324.450000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:24.712500px;}
.y2a{bottom:77.362500px;}
.y19{bottom:95.062500px;}
.y7a{bottom:104.362500px;}
.y6e{bottom:107.062500px;}
.y29{bottom:110.025000px;}
.y40{bottom:116.737500px;}
.y61{bottom:120.975000px;}
.y18{bottom:127.725000px;}
.y53{bottom:128.962500px;}
.y6d{bottom:138.600000px;}
.y28{bottom:146.737500px;}
.yb{bottom:150.705000px;}
.y60{bottom:153.675000px;}
.y17{bottom:160.380000px;}
.y79{bottom:169.680000px;}
.y27{bottom:179.430000px;}
.y3f{bottom:180.930000px;}
.y5f{bottom:186.330000px;}
.y16{bottom:193.080000px;}
.y52{bottom:194.280000px;}
.y31{bottom:198.450000px;}
.ya{bottom:199.125000px;}
.y41{bottom:199.275000px;}
.y6c{bottom:203.970000px;}
.y26{bottom:212.100000px;}
.y3e{bottom:213.600000px;}
.y5e{bottom:219.000000px;}
.y24{bottom:220.620000px;}
.y4d{bottom:226.755000px;}
.y51{bottom:226.950000px;}
.y30{bottom:231.120000px;}
.y78{bottom:235.005000px;}
.y6b{bottom:236.625000px;}
.y9{bottom:237.450000px;}
.y25{bottom:244.755000px;}
.y3d{bottom:246.255000px;}
.y23{bottom:253.320000px;}
.y15{bottom:258.975000px;}
.y2f{bottom:263.820000px;}
.y8{bottom:276.870000px;}
.y3c{bottom:278.955000px;}
.y22{bottom:284.850000px;}
.y5d{bottom:287.550000px;}
.y14{bottom:288.270000px;}
.y77{bottom:299.250000px;}
.y6a{bottom:314.325000px;}
.y7{bottom:316.320000px;}
.y21{bottom:317.505000px;}
.y13{bottom:317.550000px;}
.y5c{bottom:320.220000px;}
.y3b{bottom:327.195000px;}
.y2e{bottom:329.130000px;}
.y50{bottom:330.900000px;}
.y76{bottom:331.920000px;}
.y20{bottom:350.175000px;}
.y3a{bottom:359.880000px;}
.y2d{bottom:360.675000px;}
.y4f{bottom:363.570000px;}
.y69{bottom:372.720000px;}
.y4b{bottom:378.300000px;}
.y59{bottom:379.950000px;}
.y12{bottom:387.255000px;}
.y6{bottom:388.380000px;}
.y39{bottom:392.550000px;}
.y75{bottom:397.230000px;}
.y68{bottom:405.375000px;}
.y4a{bottom:409.845000px;}
.y1f{bottom:415.530000px;}
.y2c{bottom:426.030000px;}
.y5{bottom:427.845000px;}
.y74{bottom:428.775000px;}
.y67{bottom:438.030000px;}
.y58{bottom:444.150000px;}
.y11{bottom:450.375000px;}
.y38{bottom:452.130000px;}
.y2b{bottom:458.700000px;}
.y4{bottom:466.125000px;}
.y49{bottom:475.155000px;}
.y1e{bottom:479.745000px;}
.y10{bottom:483.030000px;}
.y37{bottom:483.675000px;}
.y73{bottom:494.130000px;}
.y66{bottom:498.150000px;}
.y5b{bottom:504.675000px;}
.y3{bottom:505.575000px;}
.y48{bottom:507.870000px;}
.y57{bottom:509.505000px;}
.y1d{bottom:512.400000px;}
.y36{bottom:516.345000px;}
.y72{bottom:526.800000px;}
.y5a{bottom:537.345000px;}
.y56{bottom:542.175000px;}
.y1c{bottom:545.070000px;}
.y35{bottom:549.000000px;}
.y4c{bottom:551.550000px;}
.y2{bottom:569.070000px;}
.yf{bottom:572.925000px;}
.y47{bottom:573.630000px;}
.y34{bottom:581.700000px;}
.y65{bottom:581.925000px;}
.y71{bottom:591.000000px;}
.ye{bottom:605.595000px;}
.y46{bottom:606.300000px;}
.y64{bottom:614.580000px;}
.y55{bottom:616.380000px;}
.y44{bottom:620.700000px;}
.y70{bottom:623.700000px;}
.yd{bottom:638.250000px;}
.y63{bottom:647.280000px;}
.y43{bottom:653.400000px;}
.y4e{bottom:656.025000px;}
.y1{bottom:656.925000px;}
.yc{bottom:670.905000px;}
.y45{bottom:671.655000px;}
.y62{bottom:679.950000px;}
.y54{bottom:681.720000px;}
.y42{bottom:686.070000px;}
.y6f{bottom:689.025000px;}
.y33{bottom:762.780000px;}
.y1b{bottom:769.800000px;}
.y32{bottom:778.995000px;}
.h6{height:66.302490px;}
.h5{height:66.432495px;}
.ha{height:81.802002px;}
.h9{height:93.469482px;}
.h8{height:93.733521px;}
.he{height:93.891943px;}
.hf{height:94.182349px;}
.h7{height:97.763672px;}
.h3{height:102.302490px;}
.h2{height:102.432495px;}
.h4{height:102.612495px;}
.hb{height:124.934692px;}
.hc{height:125.064697px;}
.hd{height:141.133521px;}
.h1{height:274.229956px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2c{left:7.687479px;}
.x2d{left:12.524979px;}
.x37{left:16.837479px;}
.x2a{left:19.087479px;}
.x2b{left:23.324979px;}
.x1f{left:30.449979px;}
.x20{left:35.249979px;}
.x19{left:78.599979px;}
.x10{left:80.099979px;}
.x1d{left:91.049979px;}
.x1b{left:104.024979px;}
.xc{left:129.937479px;}
.x9{left:197.699979px;}
.x1{left:222.749979px;}
.x2{left:225.974979px;}
.x1a{left:229.199979px;}
.xa{left:237.494979px;}
.x1e{left:303.779979px;}
.x22{left:314.474979px;}
.x23{left:337.754979px;}
.x13{left:347.099979px;}
.x16{left:365.849979px;}
.x3c{left:406.604979px;}
.x5{left:423.374979px;}
.x21{left:431.369979px;}
.x7{left:444.869979px;}
.x40{left:477.449979px;}
.x11{left:513.074979px;}
.x31{left:516.074979px;}
.x4{left:524.519979px;}
.xd{left:527.129979px;}
.x36{left:536.879979px;}
.x1c{left:544.694979px;}
.x3d{left:548.624979px;}
.xb{left:557.999979px;}
.x35{left:578.819979px;}
.x8{left:607.469979px;}
.x3{left:620.819979px;}
.x38{left:634.499979px;}
.x6{left:635.744979px;}
.x3f{left:650.699979px;}
.x24{left:657.074979px;}
.xf{left:660.569979px;}
.xe{left:664.199979px;}
.x26{left:689.324979px;}
.x28{left:739.574979px;}
.x3a{left:780.449979px;}
.x32{left:790.799979px;}
.x34{left:811.049979px;}
.x3b{left:812.174979px;}
.x3e{left:830.294979px;}
.x33{left:835.544979px;}
.x2e{left:842.669979px;}
.x14{left:874.424979px;}
.x2f{left:878.249979px;}
.x30{left:933.194979px;}
.x12{left:993.869979px;}
.x39{left:1006.394979px;}
.x27{left:1052.624979px;}
.x18{left:1062.224979px;}
.x17{left:1067.669979px;}
.x25{left:1101.524979px;}
.x15{left:1242.374979px;}
.x29{left:1298.474979px;}
@media print{
.v2{vertical-align:-32.160000pt;}
.v4{vertical-align:-28.106667pt;}
.v3{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:20.000000pt;}
.v7{vertical-align:28.133333pt;}
.v1{vertical-align:32.000000pt;}
.v5{vertical-align:42.133333pt;}
.ls28{letter-spacing:-0.997333pt;}
.ls11{letter-spacing:-0.677333pt;}
.ls12{letter-spacing:-0.624000pt;}
.ls18{letter-spacing:-0.361067pt;}
.ls19{letter-spacing:-0.166933pt;}
.ls1b{letter-spacing:-0.109333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.033733pt;}
.ls7{letter-spacing:0.122267pt;}
.ls29{letter-spacing:0.149867pt;}
.ls15{letter-spacing:0.167067pt;}
.ls25{letter-spacing:0.314267pt;}
.ls2b{letter-spacing:0.328933pt;}
.ls1a{letter-spacing:0.424000pt;}
.ls23{letter-spacing:0.477333pt;}
.ls10{letter-spacing:0.565333pt;}
.ls16{letter-spacing:0.576800pt;}
.lsc{letter-spacing:0.618667pt;}
.ls14{letter-spacing:0.637333pt;}
.ls5{letter-spacing:0.658667pt;}
.lsa{letter-spacing:0.666667pt;}
.ls8{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.954667pt;}
.lse{letter-spacing:0.992000pt;}
.ls13{letter-spacing:1.024000pt;}
.lsd{letter-spacing:1.050667pt;}
.ls1d{letter-spacing:1.088000pt;}
.ls22{letter-spacing:1.152000pt;}
.ls1f{letter-spacing:1.157333pt;}
.lsf{letter-spacing:1.184000pt;}
.ls20{letter-spacing:1.285333pt;}
.ls9{letter-spacing:1.376000pt;}
.lsb{letter-spacing:1.632000pt;}
.ls27{letter-spacing:1.765333pt;}
.ls1e{letter-spacing:1.952000pt;}
.ls17{letter-spacing:2.106667pt;}
.ls21{letter-spacing:2.234667pt;}
.ls26{letter-spacing:2.240000pt;}
.ls6{letter-spacing:19.112000pt;}
.ls0{letter-spacing:20.256800pt;}
.ls1{letter-spacing:20.310133pt;}
.ls2{letter-spacing:20.328000pt;}
.ls4{letter-spacing:38.445333pt;}
.ls2c{letter-spacing:75.912000pt;}
.ls2a{letter-spacing:116.352000pt;}
.ws0{word-spacing:-232.232000pt;}
.ws10{word-spacing:-128.266667pt;}
.ws4{word-spacing:-96.133333pt;}
.ws6{word-spacing:-27.387067pt;}
.wsf{word-spacing:-26.011067pt;}
.ws15{word-spacing:-25.928800pt;}
.ws11{word-spacing:-25.677067pt;}
.ws1a{word-spacing:-21.749733pt;}
.ws1c{word-spacing:-21.149333pt;}
.ws7{word-spacing:-21.147067pt;}
.wsb{word-spacing:-20.699067pt;}
.ws19{word-spacing:-20.672400pt;}
.ws18{word-spacing:-20.603067pt;}
.ws8{word-spacing:-20.565733pt;}
.ws17{word-spacing:-20.539067pt;}
.ws9{word-spacing:-20.507067pt;}
.ws16{word-spacing:-20.469733pt;}
.wsc{word-spacing:-20.315067pt;}
.wsa{word-spacing:-20.181733pt;}
.ws14{word-spacing:-20.091867pt;}
.ws5{word-spacing:-19.515067pt;}
.ws12{word-spacing:-19.348133pt;}
.ws1b{word-spacing:-18.517733pt;}
.ws1d{word-spacing:-15.840000pt;}
.ws2{word-spacing:-13.831067pt;}
.ws1{word-spacing:-13.804000pt;}
.wse{word-spacing:-13.019067pt;}
.ws13{word-spacing:-12.992000pt;}
.ws1e{word-spacing:-0.413333pt;}
.ws1f{word-spacing:-0.232000pt;}
.ws3{word-spacing:0.000000pt;}
.ws21{word-spacing:25.001733pt;}
.wsd{word-spacing:42.689333pt;}
.ws20{word-spacing:53.194533pt;}
._7{margin-left:-19.760267pt;}
._10{margin-left:-12.593467pt;}
._11{margin-left:-10.094000pt;}
._e{margin-left:-8.128800pt;}
._12{margin-left:-6.729333pt;}
._9{margin-left:-5.807733pt;}
._c{margin-left:-4.917867pt;}
._1{margin-left:-3.749200pt;}
._4{margin-left:-2.595600pt;}
._3{margin-left:-1.442000pt;}
._0{width:1.730400pt;}
._5{width:3.172400pt;}
._8{width:4.269733pt;}
._13{width:5.415867pt;}
._15{width:11.432133pt;}
._a{width:14.123333pt;}
._d{width:15.260667pt;}
._17{width:18.294000pt;}
._16{width:20.430667pt;}
._f{width:23.580933pt;}
._b{width:24.915600pt;}
._2{width:54.364267pt;}
._6{width:57.057867pt;}
._14{width:759.718933pt;}
.fsb{font-size:64.000000pt;}
.fs8{font-size:64.133333pt;}
.fs3{font-size:68.000000pt;}
.fs2{font-size:68.133333pt;}
.fsc{font-size:72.000000pt;}
.fsa{font-size:84.000000pt;}
.fs6{font-size:84.133333pt;}
.fs5{font-size:96.133333pt;}
.fs1{font-size:100.133333pt;}
.fs4{font-size:100.266667pt;}
.fs7{font-size:128.133333pt;}
.fs9{font-size:128.266667pt;}
.fs0{font-size:288.400000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:21.966667pt;}
.y2a{bottom:68.766667pt;}
.y19{bottom:84.500000pt;}
.y7a{bottom:92.766667pt;}
.y6e{bottom:95.166667pt;}
.y29{bottom:97.800000pt;}
.y40{bottom:103.766667pt;}
.y61{bottom:107.533333pt;}
.y18{bottom:113.533333pt;}
.y53{bottom:114.633333pt;}
.y6d{bottom:123.200000pt;}
.y28{bottom:130.433333pt;}
.yb{bottom:133.960000pt;}
.y60{bottom:136.600000pt;}
.y17{bottom:142.560000pt;}
.y79{bottom:150.826667pt;}
.y27{bottom:159.493333pt;}
.y3f{bottom:160.826667pt;}
.y5f{bottom:165.626667pt;}
.y16{bottom:171.626667pt;}
.y52{bottom:172.693333pt;}
.y31{bottom:176.400000pt;}
.ya{bottom:177.000000pt;}
.y41{bottom:177.133333pt;}
.y6c{bottom:181.306667pt;}
.y26{bottom:188.533333pt;}
.y3e{bottom:189.866667pt;}
.y5e{bottom:194.666667pt;}
.y24{bottom:196.106667pt;}
.y4d{bottom:201.560000pt;}
.y51{bottom:201.733333pt;}
.y30{bottom:205.440000pt;}
.y78{bottom:208.893333pt;}
.y6b{bottom:210.333333pt;}
.y9{bottom:211.066667pt;}
.y25{bottom:217.560000pt;}
.y3d{bottom:218.893333pt;}
.y23{bottom:225.173333pt;}
.y15{bottom:230.200000pt;}
.y2f{bottom:234.506667pt;}
.y8{bottom:246.106667pt;}
.y3c{bottom:247.960000pt;}
.y22{bottom:253.200000pt;}
.y5d{bottom:255.600000pt;}
.y14{bottom:256.240000pt;}
.y77{bottom:266.000000pt;}
.y6a{bottom:279.400000pt;}
.y7{bottom:281.173333pt;}
.y21{bottom:282.226667pt;}
.y13{bottom:282.266667pt;}
.y5c{bottom:284.640000pt;}
.y3b{bottom:290.840000pt;}
.y2e{bottom:292.560000pt;}
.y50{bottom:294.133333pt;}
.y76{bottom:295.040000pt;}
.y20{bottom:311.266667pt;}
.y3a{bottom:319.893333pt;}
.y2d{bottom:320.600000pt;}
.y4f{bottom:323.173333pt;}
.y69{bottom:331.306667pt;}
.y4b{bottom:336.266667pt;}
.y59{bottom:337.733333pt;}
.y12{bottom:344.226667pt;}
.y6{bottom:345.226667pt;}
.y39{bottom:348.933333pt;}
.y75{bottom:353.093333pt;}
.y68{bottom:360.333333pt;}
.y4a{bottom:364.306667pt;}
.y1f{bottom:369.360000pt;}
.y2c{bottom:378.693333pt;}
.y5{bottom:380.306667pt;}
.y74{bottom:381.133333pt;}
.y67{bottom:389.360000pt;}
.y58{bottom:394.800000pt;}
.y11{bottom:400.333333pt;}
.y38{bottom:401.893333pt;}
.y2b{bottom:407.733333pt;}
.y4{bottom:414.333333pt;}
.y49{bottom:422.360000pt;}
.y1e{bottom:426.440000pt;}
.y10{bottom:429.360000pt;}
.y37{bottom:429.933333pt;}
.y73{bottom:439.226667pt;}
.y66{bottom:442.800000pt;}
.y5b{bottom:448.600000pt;}
.y3{bottom:449.400000pt;}
.y48{bottom:451.440000pt;}
.y57{bottom:452.893333pt;}
.y1d{bottom:455.466667pt;}
.y36{bottom:458.973333pt;}
.y72{bottom:468.266667pt;}
.y5a{bottom:477.640000pt;}
.y56{bottom:481.933333pt;}
.y1c{bottom:484.506667pt;}
.y35{bottom:488.000000pt;}
.y4c{bottom:490.266667pt;}
.y2{bottom:505.840000pt;}
.yf{bottom:509.266667pt;}
.y47{bottom:509.893333pt;}
.y34{bottom:517.066667pt;}
.y65{bottom:517.266667pt;}
.y71{bottom:525.333333pt;}
.ye{bottom:538.306667pt;}
.y46{bottom:538.933333pt;}
.y64{bottom:546.293333pt;}
.y55{bottom:547.893333pt;}
.y44{bottom:551.733333pt;}
.y70{bottom:554.400000pt;}
.yd{bottom:567.333333pt;}
.y63{bottom:575.360000pt;}
.y43{bottom:580.800000pt;}
.y4e{bottom:583.133333pt;}
.y1{bottom:583.933333pt;}
.yc{bottom:596.360000pt;}
.y45{bottom:597.026667pt;}
.y62{bottom:604.400000pt;}
.y54{bottom:605.973333pt;}
.y42{bottom:609.840000pt;}
.y6f{bottom:612.466667pt;}
.y33{bottom:678.026667pt;}
.y1b{bottom:684.266667pt;}
.y32{bottom:692.440000pt;}
.h6{height:58.935547pt;}
.h5{height:59.051107pt;}
.ha{height:72.712891pt;}
.h9{height:83.083984pt;}
.h8{height:83.318685pt;}
.he{height:83.459505pt;}
.hf{height:83.717643pt;}
.h7{height:86.901042pt;}
.h3{height:90.935547pt;}
.h2{height:91.051107pt;}
.h4{height:91.211107pt;}
.hb{height:111.053060pt;}
.hc{height:111.168620pt;}
.hd{height:125.452018pt;}
.h1{height:243.759961pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:6.833314pt;}
.x2d{left:11.133314pt;}
.x37{left:14.966648pt;}
.x2a{left:16.966648pt;}
.x2b{left:20.733314pt;}
.x1f{left:27.066648pt;}
.x20{left:31.333314pt;}
.x19{left:69.866648pt;}
.x10{left:71.199981pt;}
.x1d{left:80.933314pt;}
.x1b{left:92.466648pt;}
.xc{left:115.499981pt;}
.x9{left:175.733314pt;}
.x1{left:197.999981pt;}
.x2{left:200.866648pt;}
.x1a{left:203.733314pt;}
.xa{left:211.106648pt;}
.x1e{left:270.026648pt;}
.x22{left:279.533314pt;}
.x23{left:300.226648pt;}
.x13{left:308.533314pt;}
.x16{left:325.199981pt;}
.x3c{left:361.426648pt;}
.x5{left:376.333314pt;}
.x21{left:383.439981pt;}
.x7{left:395.439981pt;}
.x40{left:424.399981pt;}
.x11{left:456.066648pt;}
.x31{left:458.733314pt;}
.x4{left:466.239981pt;}
.xd{left:468.559981pt;}
.x36{left:477.226648pt;}
.x1c{left:484.173314pt;}
.x3d{left:487.666648pt;}
.xb{left:495.999981pt;}
.x35{left:514.506648pt;}
.x8{left:539.973314pt;}
.x3{left:551.839981pt;}
.x38{left:563.999981pt;}
.x6{left:565.106648pt;}
.x3f{left:578.399981pt;}
.x24{left:584.066648pt;}
.xf{left:587.173314pt;}
.xe{left:590.399981pt;}
.x26{left:612.733314pt;}
.x28{left:657.399981pt;}
.x3a{left:693.733314pt;}
.x32{left:702.933314pt;}
.x34{left:720.933314pt;}
.x3b{left:721.933314pt;}
.x3e{left:738.039981pt;}
.x33{left:742.706648pt;}
.x2e{left:749.039981pt;}
.x14{left:777.266648pt;}
.x2f{left:780.666648pt;}
.x30{left:829.506648pt;}
.x12{left:883.439981pt;}
.x39{left:894.573314pt;}
.x27{left:935.666648pt;}
.x18{left:944.199981pt;}
.x17{left:949.039981pt;}
.x25{left:979.133314pt;}
.x15{left:1104.333314pt;}
.x29{left:1154.199981pt;}
}




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