
    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_56c7bab952ddf8a7c178858b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.008301;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_d10daef140830b09b94b737a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_05c4a8c12752c2f7d6e8cecc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_f8efae1da26d4dd34574c92f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.960938;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_c2986ac3d40cd3af9794de2c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.959961;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_1c34976bf0ffed388e764d27.woff')format("woff");}.ff6{font-family:ff6;line-height:1.014160;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_077758ac7395ca887f702840.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_6521dba186abb3433123fd29.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_35b1efccbe4f6df8728b5208.woff')format("woff");}.ff9{font-family:ff9;line-height:1.008301;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;}
.m1{transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,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);}
.m2{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;}
.v2{vertical-align:12.240000px;}
.v1{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.110400px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.125280px;}
.lse{letter-spacing:0.174000px;}
.lsc{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.181440px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:10.746720px;}
.ls7{letter-spacing:16.740000px;}
.ls6{letter-spacing:29.160000px;}
.ls5{letter-spacing:31.140000px;}
.ls10{letter-spacing:40.986720px;}
.ls4{letter-spacing:46.026720px;}
.ls2{letter-spacing:58.589280px;}
.ls0{letter-spacing:2641.740000px;}
.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;}
}
.ws4{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.829600px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.108160px;}
.ws5{word-spacing:-10.440000px;}
.ws0{word-spacing:-10.208160px;}
.ws6{word-spacing:-6.114000px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-4.087440px;}
._2{margin-left:-2.662560px;}
._1{margin-left:-1.545120px;}
._0{width:1.296000px;}
._8{width:2.430000px;}
._7{width:3.456000px;}
._10{width:4.479120px;}
._c{width:6.155280px;}
._f{width:7.466400px;}
._9{width:9.339840px;}
._3{width:10.622880px;}
._15{width:12.611520px;}
._12{width:13.788000px;}
._a{width:15.390000px;}
._1b{width:16.492320px;}
._b{width:17.550000px;}
._1e{width:18.604800px;}
._d{width:19.840320px;}
._e{width:21.072960px;}
._18{width:24.471360px;}
._1f{width:28.087200px;}
._11{width:29.795040px;}
._1d{width:35.035920px;}
._1c{width:36.632880px;}
._14{width:54.413280px;}
._17{width:55.707840px;}
._16{width:57.378240px;}
._13{width:87.737760px;}
._4{width:142.035360px;}
._1a{width:143.220480px;}
._5{width:203.940000px;}
._19{width:3056.460000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(47,132,155);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.760000px;}
.fs4{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:3.060000px;}
.y7{bottom:7.560000px;}
.y4{bottom:13.680000px;}
.y47{bottom:17.100000px;}
.yb{bottom:21.960000px;}
.y46{bottom:31.320000px;}
.ya{bottom:36.540000px;}
.ye{bottom:37.980000px;}
.y9{bottom:39.600000px;}
.y6{bottom:39.810000px;}
.y45{bottom:45.540000px;}
.yd{bottom:52.020000px;}
.y44{bottom:59.790000px;}
.y43{bottom:73.830000px;}
.y42{bottom:88.050000px;}
.y41{bottom:102.270000px;}
.y8{bottom:105.330000px;}
.y7d{bottom:107.640000px;}
.y33{bottom:112.500000px;}
.y40{bottom:117.750000px;}
.y34{bottom:124.200000px;}
.y7c{bottom:127.980000px;}
.ya8{bottom:130.140000px;}
.y32{bottom:132.840000px;}
.y7b{bottom:148.140000px;}
.ya7{bottom:150.480000px;}
.y31{bottom:153.000000px;}
.y3f{bottom:159.330000px;}
.y7a{bottom:168.480000px;}
.ya6{bottom:170.640000px;}
.y3e{bottom:173.550000px;}
.y30{bottom:177.840000px;}
.y3d{bottom:187.590000px;}
.y79{bottom:188.670000px;}
.ya5{bottom:195.510000px;}
.y2f{bottom:198.030000px;}
.y3c{bottom:201.810000px;}
.y78{bottom:209.010000px;}
.ya4{bottom:215.670000px;}
.y3b{bottom:216.030000px;}
.y2e{bottom:218.190000px;}
.y77{bottom:229.170000px;}
.y3a{bottom:230.250000px;}
.ya3{bottom:235.830000px;}
.y2d{bottom:243.030000px;}
.y39{bottom:244.290000px;}
.y76{bottom:249.330000px;}
.ya2{bottom:256.170000px;}
.y38{bottom:258.510000px;}
.y37{bottom:272.730000px;}
.ya1{bottom:276.330000px;}
.y2c{bottom:281.190000px;}
.y36{bottom:286.770000px;}
.y75{bottom:287.670000px;}
.y35{bottom:301.035000px;}
.ya0{bottom:301.170000px;}
.y2b{bottom:301.530000px;}
.y74{bottom:307.830000px;}
.y2a{bottom:321.690000px;}
.y73{bottom:328.170000px;}
.y9f{bottom:339.330000px;}
.y29{bottom:346.530000px;}
.y72{bottom:348.330000px;}
.y9e{bottom:359.670000px;}
.y28{bottom:366.690000px;}
.y71{bottom:368.670000px;}
.y9d{bottom:379.830000px;}
.y27{bottom:386.850000px;}
.y70{bottom:388.830000px;}
.y9c{bottom:399.990000px;}
.y26{bottom:407.190000px;}
.y6f{bottom:408.990000px;}
.y9b{bottom:420.330000px;}
.y25{bottom:427.395000px;}
.y6e{bottom:429.375000px;}
.y9a{bottom:440.535000px;}
.y24{bottom:447.735000px;}
.y6d{bottom:449.535000px;}
.y99{bottom:460.875000px;}
.y23{bottom:467.895000px;}
.y6c{bottom:469.875000px;}
.y98{bottom:481.035000px;}
.y22{bottom:488.235000px;}
.y6b{bottom:490.035000px;}
.y97{bottom:501.375000px;}
.y21{bottom:508.395000px;}
.yc1{bottom:510.015000px;}
.y6a{bottom:510.375000px;}
.y96{bottom:521.535000px;}
.y69{bottom:530.535000px;}
.y20{bottom:533.055000px;}
.y95{bottom:541.695000px;}
.yc0{bottom:542.235000px;}
.y68{bottom:555.195000px;}
.y94{bottom:562.035000px;}
.ybf{bottom:566.535000px;}
.y67{bottom:575.535000px;}
.y93{bottom:582.195000px;}
.ybe{bottom:586.695000px;}
.y1f{bottom:589.935000px;}
.y66{bottom:595.695000px;}
.y92{bottom:602.535000px;}
.ybd{bottom:607.035000px;}
.y1e{bottom:608.115000px;}
.y65{bottom:616.035000px;}
.y91{bottom:622.695000px;}
.ybc{bottom:627.195000px;}
.y64{bottom:636.195000px;}
.y90{bottom:643.035000px;}
.ybb{bottom:647.535000px;}
.y63{bottom:656.535000px;}
.y1d{bottom:662.295000px;}
.y8f{bottom:663.195000px;}
.yba{bottom:667.725000px;}
.y62{bottom:676.725000px;}
.y1c{bottom:680.505000px;}
.y8e{bottom:683.385000px;}
.yb9{bottom:687.885000px;}
.y61{bottom:696.885000px;}
.y1b{bottom:698.865000px;}
.y8d{bottom:703.725000px;}
.yb8{bottom:708.225000px;}
.y1a{bottom:717.045000px;}
.y60{bottom:717.225000px;}
.y8c{bottom:723.885000px;}
.yb7{bottom:728.385000px;}
.y19{bottom:735.225000px;}
.y5f{bottom:741.885000px;}
.y8b{bottom:744.225000px;}
.yb6{bottom:748.725000px;}
.y18{bottom:753.405000px;}
.y5e{bottom:762.225000px;}
.y8a{bottom:764.385000px;}
.yb5{bottom:768.885000px;}
.y17{bottom:771.585000px;}
.y5d{bottom:782.385000px;}
.y89{bottom:784.545000px;}
.yb4{bottom:789.045000px;}
.y16{bottom:789.765000px;}
.y5c{bottom:802.545000px;}
.y88{bottom:804.885000px;}
.y15{bottom:808.125000px;}
.yb3{bottom:809.385000px;}
.y5b{bottom:822.885000px;}
.y14{bottom:826.305000px;}
.y87{bottom:829.545000px;}
.y5a{bottom:847.545000px;}
.yb2{bottom:849.885000px;}
.y59{bottom:867.885000px;}
.yb1{bottom:870.045000px;}
.y13{bottom:880.125000px;}
.y58{bottom:888.045000px;}
.yb0{bottom:890.385000px;}
.y12{bottom:896.145000px;}
.y57{bottom:908.430000px;}
.yaf{bottom:910.590000px;}
.y86{bottom:912.930000px;}
.yae{bottom:930.750000px;}
.y56{bottom:933.090000px;}
.y85{bottom:937.590000px;}
.y11{bottom:939.750000px;}
.yad{bottom:951.090000px;}
.y55{bottom:953.250000px;}
.y84{bottom:957.750000px;}
.yac{bottom:971.250000px;}
.y54{bottom:973.590000px;}
.y83{bottom:978.090000px;}
.y10{bottom:990.510000px;}
.y53{bottom:993.750000px;}
.yab{bottom:996.090000px;}
.y82{bottom:998.250000px;}
.y52{bottom:1014.090000px;}
.y81{bottom:1018.590000px;}
.yf{bottom:1023.270000px;}
.yaa{bottom:1034.250000px;}
.y51{bottom:1038.750000px;}
.ya9{bottom:1054.590000px;}
.y50{bottom:1059.090000px;}
.yc{bottom:1061.610000px;}
.y4f{bottom:1079.250000px;}
.y3{bottom:1079.430000px;}
.y80{bottom:1083.750000px;}
.y4e{bottom:1099.410000px;}
.y7f{bottom:1103.910000px;}
.y4d{bottom:1119.750000px;}
.y7e{bottom:1124.250000px;}
.y5{bottom:1130.550000px;}
.y4c{bottom:1144.410000px;}
.y4b{bottom:1164.780000px;}
.y2{bottom:1205.640000px;}
.y4a{bottom:1220.220000px;}
.y1{bottom:1225.980000px;}
.y49{bottom:1229.040000px;}
.h14{height:30.361641px;}
.h15{height:30.483984px;}
.h8{height:31.727812px;}
.ha{height:35.072930px;}
.hf{height:35.214258px;}
.h9{height:35.355586px;}
.h11{height:39.260742px;}
.h10{height:39.418945px;}
.h2{height:43.448555px;}
.hd{height:43.623633px;}
.hb{height:43.798711px;}
.h7{height:48.780000px;}
.he{height:49.583118px;}
.h4{height:61.423863px;}
.h12{height:62.327813px;}
.h5{height:70.596000px;}
.hc{height:78.837891px;}
.h16{height:86.585445px;}
.h6{height:112.640625px;}
.h3{height:121.716000px;}
.h13{height:312.195000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:100.116000px;}
.w6{width:170.130000px;}
.w5{width:181.830000px;}
.w4{width:462.135000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x1{left:53.999987px;}
.x2{left:73.260000px;}
.x9{left:75.239987px;}
.xe{left:81.756000px;}
.x3{left:91.830000px;}
.xf{left:107.135987px;}
.x10{left:138.995987px;}
.x8{left:160.605000px;}
.x4{left:173.370000px;}
.xa{left:234.749987px;}
.xd{left:245.369987px;}
.xb{left:249.689987px;}
.xc{left:277.229987px;}
.x6{left:279.585000px;}
.x7{left:635.505000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880000pt;}
.v1{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.098133pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.111360pt;}
.lse{letter-spacing:0.154667pt;}
.lsc{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.161280pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:9.552640pt;}
.ls7{letter-spacing:14.880000pt;}
.ls6{letter-spacing:25.920000pt;}
.ls5{letter-spacing:27.680000pt;}
.ls10{letter-spacing:36.432640pt;}
.ls4{letter-spacing:40.912640pt;}
.ls2{letter-spacing:52.079360pt;}
.ls0{letter-spacing:2348.213333pt;}
.ws4{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.181867pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.873920pt;}
.ws5{word-spacing:-9.280000pt;}
.ws0{word-spacing:-9.073920pt;}
.ws6{word-spacing:-5.434667pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-3.633280pt;}
._2{margin-left:-2.366720pt;}
._1{margin-left:-1.373440pt;}
._0{width:1.152000pt;}
._8{width:2.160000pt;}
._7{width:3.072000pt;}
._10{width:3.981440pt;}
._c{width:5.471360pt;}
._f{width:6.636800pt;}
._9{width:8.302080pt;}
._3{width:9.442560pt;}
._15{width:11.210240pt;}
._12{width:12.256000pt;}
._a{width:13.680000pt;}
._1b{width:14.659840pt;}
._b{width:15.600000pt;}
._1e{width:16.537600pt;}
._d{width:17.635840pt;}
._e{width:18.731520pt;}
._18{width:21.752320pt;}
._1f{width:24.966400pt;}
._11{width:26.484480pt;}
._1d{width:31.143040pt;}
._1c{width:32.562560pt;}
._14{width:48.367360pt;}
._17{width:49.518080pt;}
._16{width:51.002880pt;}
._13{width:77.989120pt;}
._4{width:126.253653pt;}
._1a{width:127.307093pt;}
._5{width:181.280000pt;}
._19{width:2716.853333pt;}
.fs6{font-size:21.120000pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:2.720000pt;}
.y7{bottom:6.720000pt;}
.y4{bottom:12.160000pt;}
.y47{bottom:15.200000pt;}
.yb{bottom:19.520000pt;}
.y46{bottom:27.840000pt;}
.ya{bottom:32.480000pt;}
.ye{bottom:33.760000pt;}
.y9{bottom:35.200000pt;}
.y6{bottom:35.386667pt;}
.y45{bottom:40.480000pt;}
.yd{bottom:46.240000pt;}
.y44{bottom:53.146667pt;}
.y43{bottom:65.626667pt;}
.y42{bottom:78.266667pt;}
.y41{bottom:90.906667pt;}
.y8{bottom:93.626667pt;}
.y7d{bottom:95.680000pt;}
.y33{bottom:100.000000pt;}
.y40{bottom:104.666667pt;}
.y34{bottom:110.400000pt;}
.y7c{bottom:113.760000pt;}
.ya8{bottom:115.680000pt;}
.y32{bottom:118.080000pt;}
.y7b{bottom:131.680000pt;}
.ya7{bottom:133.760000pt;}
.y31{bottom:136.000000pt;}
.y3f{bottom:141.626667pt;}
.y7a{bottom:149.760000pt;}
.ya6{bottom:151.680000pt;}
.y3e{bottom:154.266667pt;}
.y30{bottom:158.080000pt;}
.y3d{bottom:166.746667pt;}
.y79{bottom:167.706667pt;}
.ya5{bottom:173.786667pt;}
.y2f{bottom:176.026667pt;}
.y3c{bottom:179.386667pt;}
.y78{bottom:185.786667pt;}
.ya4{bottom:191.706667pt;}
.y3b{bottom:192.026667pt;}
.y2e{bottom:193.946667pt;}
.y77{bottom:203.706667pt;}
.y3a{bottom:204.666667pt;}
.ya3{bottom:209.626667pt;}
.y2d{bottom:216.026667pt;}
.y39{bottom:217.146667pt;}
.y76{bottom:221.626667pt;}
.ya2{bottom:227.706667pt;}
.y38{bottom:229.786667pt;}
.y37{bottom:242.426667pt;}
.ya1{bottom:245.626667pt;}
.y2c{bottom:249.946667pt;}
.y36{bottom:254.906667pt;}
.y75{bottom:255.706667pt;}
.y35{bottom:267.586667pt;}
.ya0{bottom:267.706667pt;}
.y2b{bottom:268.026667pt;}
.y74{bottom:273.626667pt;}
.y2a{bottom:285.946667pt;}
.y73{bottom:291.706667pt;}
.y9f{bottom:301.626667pt;}
.y29{bottom:308.026667pt;}
.y72{bottom:309.626667pt;}
.y9e{bottom:319.706667pt;}
.y28{bottom:325.946667pt;}
.y71{bottom:327.706667pt;}
.y9d{bottom:337.626667pt;}
.y27{bottom:343.866667pt;}
.y70{bottom:345.626667pt;}
.y9c{bottom:355.546667pt;}
.y26{bottom:361.946667pt;}
.y6f{bottom:363.546667pt;}
.y9b{bottom:373.626667pt;}
.y25{bottom:379.906667pt;}
.y6e{bottom:381.666667pt;}
.y9a{bottom:391.586667pt;}
.y24{bottom:397.986667pt;}
.y6d{bottom:399.586667pt;}
.y99{bottom:409.666667pt;}
.y23{bottom:415.906667pt;}
.y6c{bottom:417.666667pt;}
.y98{bottom:427.586667pt;}
.y22{bottom:433.986667pt;}
.y6b{bottom:435.586667pt;}
.y97{bottom:445.666667pt;}
.y21{bottom:451.906667pt;}
.yc1{bottom:453.346667pt;}
.y6a{bottom:453.666667pt;}
.y96{bottom:463.586667pt;}
.y69{bottom:471.586667pt;}
.y20{bottom:473.826667pt;}
.y95{bottom:481.506667pt;}
.yc0{bottom:481.986667pt;}
.y68{bottom:493.506667pt;}
.y94{bottom:499.586667pt;}
.ybf{bottom:503.586667pt;}
.y67{bottom:511.586667pt;}
.y93{bottom:517.506667pt;}
.ybe{bottom:521.506667pt;}
.y1f{bottom:524.386667pt;}
.y66{bottom:529.506667pt;}
.y92{bottom:535.586667pt;}
.ybd{bottom:539.586667pt;}
.y1e{bottom:540.546667pt;}
.y65{bottom:547.586667pt;}
.y91{bottom:553.506667pt;}
.ybc{bottom:557.506667pt;}
.y64{bottom:565.506667pt;}
.y90{bottom:571.586667pt;}
.ybb{bottom:575.586667pt;}
.y63{bottom:583.586667pt;}
.y1d{bottom:588.706667pt;}
.y8f{bottom:589.506667pt;}
.yba{bottom:593.533333pt;}
.y62{bottom:601.533333pt;}
.y1c{bottom:604.893333pt;}
.y8e{bottom:607.453333pt;}
.yb9{bottom:611.453333pt;}
.y61{bottom:619.453333pt;}
.y1b{bottom:621.213333pt;}
.y8d{bottom:625.533333pt;}
.yb8{bottom:629.533333pt;}
.y1a{bottom:637.373333pt;}
.y60{bottom:637.533333pt;}
.y8c{bottom:643.453333pt;}
.yb7{bottom:647.453333pt;}
.y19{bottom:653.533333pt;}
.y5f{bottom:659.453333pt;}
.y8b{bottom:661.533333pt;}
.yb6{bottom:665.533333pt;}
.y18{bottom:669.693333pt;}
.y5e{bottom:677.533333pt;}
.y8a{bottom:679.453333pt;}
.yb5{bottom:683.453333pt;}
.y17{bottom:685.853333pt;}
.y5d{bottom:695.453333pt;}
.y89{bottom:697.373333pt;}
.yb4{bottom:701.373333pt;}
.y16{bottom:702.013333pt;}
.y5c{bottom:713.373333pt;}
.y88{bottom:715.453333pt;}
.y15{bottom:718.333333pt;}
.yb3{bottom:719.453333pt;}
.y5b{bottom:731.453333pt;}
.y14{bottom:734.493333pt;}
.y87{bottom:737.373333pt;}
.y5a{bottom:753.373333pt;}
.yb2{bottom:755.453333pt;}
.y59{bottom:771.453333pt;}
.yb1{bottom:773.373333pt;}
.y13{bottom:782.333333pt;}
.y58{bottom:789.373333pt;}
.yb0{bottom:791.453333pt;}
.y12{bottom:796.573333pt;}
.y57{bottom:807.493333pt;}
.yaf{bottom:809.413333pt;}
.y86{bottom:811.493333pt;}
.yae{bottom:827.333333pt;}
.y56{bottom:829.413333pt;}
.y85{bottom:833.413333pt;}
.y11{bottom:835.333333pt;}
.yad{bottom:845.413333pt;}
.y55{bottom:847.333333pt;}
.y84{bottom:851.333333pt;}
.yac{bottom:863.333333pt;}
.y54{bottom:865.413333pt;}
.y83{bottom:869.413333pt;}
.y10{bottom:880.453333pt;}
.y53{bottom:883.333333pt;}
.yab{bottom:885.413333pt;}
.y82{bottom:887.333333pt;}
.y52{bottom:901.413333pt;}
.y81{bottom:905.413333pt;}
.yf{bottom:909.573333pt;}
.yaa{bottom:919.333333pt;}
.y51{bottom:923.333333pt;}
.ya9{bottom:937.413333pt;}
.y50{bottom:941.413333pt;}
.yc{bottom:943.653333pt;}
.y4f{bottom:959.333333pt;}
.y3{bottom:959.493333pt;}
.y80{bottom:963.333333pt;}
.y4e{bottom:977.253333pt;}
.y7f{bottom:981.253333pt;}
.y4d{bottom:995.333333pt;}
.y7e{bottom:999.333333pt;}
.y5{bottom:1004.933333pt;}
.y4c{bottom:1017.253333pt;}
.y4b{bottom:1035.360000pt;}
.y2{bottom:1071.680000pt;}
.y4a{bottom:1084.640000pt;}
.y1{bottom:1089.760000pt;}
.y49{bottom:1092.480000pt;}
.h14{height:26.988125pt;}
.h15{height:27.096875pt;}
.h8{height:28.202500pt;}
.ha{height:31.175937pt;}
.hf{height:31.301562pt;}
.h9{height:31.427187pt;}
.h11{height:34.898438pt;}
.h10{height:35.039062pt;}
.h2{height:38.620938pt;}
.hd{height:38.776563pt;}
.hb{height:38.932188pt;}
.h7{height:43.360000pt;}
.he{height:44.073883pt;}
.h4{height:54.598989pt;}
.h12{height:55.402500pt;}
.h5{height:62.752000pt;}
.hc{height:70.078125pt;}
.h16{height:76.964840pt;}
.h6{height:100.125000pt;}
.h3{height:108.192000pt;}
.h13{height:277.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:88.992000pt;}
.w6{width:151.226667pt;}
.w5{width:161.626667pt;}
.w4{width:410.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x1{left:47.999988pt;}
.x2{left:65.120000pt;}
.x9{left:66.879988pt;}
.xe{left:72.672000pt;}
.x3{left:81.626667pt;}
.xf{left:95.231988pt;}
.x10{left:123.551988pt;}
.x8{left:142.760000pt;}
.x4{left:154.106667pt;}
.xa{left:208.666655pt;}
.xd{left:218.106655pt;}
.xb{left:221.946655pt;}
.xc{left:246.426655pt;}
.x6{left:248.520000pt;}
.x7{left:564.893333pt;}
}




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