
    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_3c874b8140ce66cb4e79a7cb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_596d40bc60ee83a148ff305e.woff')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_31606e176b8aba969025f1e6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b5bdfac12a9528c80d6cd5a1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_7e76890b400136cb2faee4df.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2b7e24ca2ef0973efc6ec46d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_cac92f898b37af4807e8c3fe.woff')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_5eae15436df1526a1840c557.woff')format("woff");}.ff8{font-family:ff8;line-height:0.767578;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.lsc{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.450600px;}
.ls8{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.092400px;}
.ls9{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.269280px;}
.ls6{letter-spacing:0.269400px;}
.lsd{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls10{letter-spacing:1.620000px;}
.ls11{letter-spacing:3.060000px;}
.ls12{letter-spacing:6.480000px;}
.lse{letter-spacing:7.380000px;}
.lsf{letter-spacing:10.980000px;}
.ls13{letter-spacing:19.656000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws3{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.064000px;}
.ws0{word-spacing:-13.354320px;}
.ws6{word-spacing:-12.329400px;}
.wsb{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.609400px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-4.344000px;}
._5{margin-left:-2.904000px;}
._4{margin-left:-1.800000px;}
._0{width:1.200000px;}
._c{width:2.736000px;}
._6{width:4.104000px;}
._7{width:5.124000px;}
._f{width:6.408000px;}
._3{width:7.968000px;}
._1{width:9.648000px;}
._2{width:11.124000px;}
._8{width:12.528000px;}
._9{width:14.400000px;}
._b{width:16.128000px;}
._d{width:19.872000px;}
._e{width:21.024000px;}
._10{width:22.824000px;}
._1b{width:23.904000px;}
._13{width:24.912000px;}
._14{width:26.040000px;}
._12{width:27.216000px;}
._11{width:28.440000px;}
._1c{width:30.672000px;}
._1d{width:31.968000px;}
._20{width:33.000000px;}
._1a{width:34.056000px;}
._1f{width:35.064000px;}
._1e{width:36.288000px;}
._25{width:40.104000px;}
._21{width:42.192000px;}
._17{width:50.112000px;}
._18{width:51.192000px;}
._16{width:61.632000px;}
._26{width:70.416000px;}
._27{width:71.712000px;}
._23{width:87.120000px;}
._24{width:88.812000px;}
._15{width:101.376000px;}
._22{width:149.112000px;}
._19{width:173.952000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:7.020000px;}
.y5d{bottom:7.200000px;}
.y67{bottom:14.220000px;}
.y65{bottom:14.400000px;}
.y6d{bottom:14.445000px;}
.y57{bottom:30.780000px;}
.y5a{bottom:30.825000px;}
.y8e{bottom:30.954000px;}
.y53{bottom:30.960000px;}
.y55{bottom:54.720000px;}
.y2{bottom:58.500000px;}
.y1{bottom:78.696000px;}
.y2b{bottom:117.576000px;}
.ybd{bottom:122.436000px;}
.y8d{bottom:123.696000px;}
.y74{bottom:126.396000px;}
.y87{bottom:129.276000px;}
.y4f{bottom:130.716000px;}
.ybc{bottom:146.196000px;}
.yad{bottom:146.916000px;}
.ye4{bottom:148.356000px;}
.y2a{bottom:148.536000px;}
.y73{bottom:157.530000px;}
.y86{bottom:160.410000px;}
.y4e{bottom:161.850000px;}
.ybb{bottom:170.130000px;}
.y8c{bottom:171.390000px;}
.ye3{bottom:172.110000px;}
.yac{bottom:177.870000px;}
.y29{bottom:179.670000px;}
.y72{bottom:188.490000px;}
.y85{bottom:191.370000px;}
.y4d{bottom:192.810000px;}
.yba{bottom:193.890000px;}
.ye2{bottom:195.870000px;}
.yab{bottom:208.830000px;}
.y28{bottom:210.630000px;}
.yb9{bottom:217.650000px;}
.y8b{bottom:218.910000px;}
.y71{bottom:219.630000px;}
.ye1{bottom:219.810000px;}
.y84{bottom:222.510000px;}
.y4c{bottom:223.950000px;}
.yaa{bottom:239.970000px;}
.yb8{bottom:241.410000px;}
.y27{bottom:241.770000px;}
.ye0{bottom:243.570000px;}
.y70{bottom:250.590000px;}
.y83{bottom:253.470000px;}
.y4b{bottom:254.910000px;}
.yb7{bottom:265.350000px;}
.y8a{bottom:267.330000px;}
.ya9{bottom:270.930000px;}
.y26{bottom:272.730000px;}
.y6f{bottom:281.730000px;}
.y82{bottom:284.610000px;}
.y4a{bottom:286.050000px;}
.yb6{bottom:289.110000px;}
.ydf{bottom:291.090000px;}
.y89{bottom:291.810000px;}
.y6e{bottom:299.190000px;}
.ya8{bottom:302.070000px;}
.y25{bottom:303.870000px;}
.yb5{bottom:312.870000px;}
.yde{bottom:315.030000px;}
.y81{bottom:315.570000px;}
.y49{bottom:317.010000px;}
.y24{bottom:327.630000px;}
.y6c{bottom:330.150000px;}
.ya7{bottom:333.030000px;}
.yb4{bottom:336.675000px;}
.ydd{bottom:338.835000px;}
.y88{bottom:340.275000px;}
.y80{bottom:346.755000px;}
.y48{bottom:348.015000px;}
.y23{bottom:351.435000px;}
.yb3{bottom:360.435000px;}
.y6b{bottom:361.335000px;}
.ydc{bottom:362.595000px;}
.ya6{bottom:364.215000px;}
.y22{bottom:375.195000px;}
.y7f{bottom:377.715000px;}
.y47{bottom:379.155000px;}
.yb2{bottom:384.375000px;}
.ydb{bottom:386.355000px;}
.y6a{bottom:392.295000px;}
.ya5{bottom:395.175000px;}
.y21{bottom:399.135000px;}
.yb1{bottom:408.135000px;}
.y7e{bottom:408.855000px;}
.y46{bottom:410.115000px;}
.y20{bottom:422.895000px;}
.y69{bottom:423.435000px;}
.ya4{bottom:426.315000px;}
.yb0{bottom:431.895000px;}
.yda{bottom:434.055000px;}
.y7d{bottom:439.815000px;}
.y45{bottom:441.255000px;}
.y1f{bottom:446.655000px;}
.y68{bottom:454.395000px;}
.yaf{bottom:455.655000px;}
.y7c{bottom:457.275000px;}
.yd9{bottom:457.815000px;}
.y1e{bottom:470.415000px;}
.y44{bottom:472.215000px;}
.yae{bottom:479.595000px;}
.yd8{bottom:481.575000px;}
.y66{bottom:485.535000px;}
.ya3{bottom:488.415000px;}
.y1d{bottom:494.355000px;}
.y7b{bottom:495.975000px;}
.y43{bottom:503.355000px;}
.yd7{bottom:505.335000px;}
.y64{bottom:517.215000px;}
.y1c{bottom:518.115000px;}
.ya2{bottom:519.375000px;}
.yd6{bottom:529.275000px;}
.y42{bottom:534.315000px;}
.y7a{bottom:534.675000px;}
.y1b{bottom:541.875000px;}
.ya1{bottom:550.515000px;}
.yd5{bottom:553.035000px;}
.y63{bottom:563.475000px;}
.y41{bottom:565.455000px;}
.y1a{bottom:565.635000px;}
.y79{bottom:573.375000px;}
.yd4{bottom:576.795000px;}
.ya0{bottom:581.475000px;}
.y19{bottom:589.575000px;}
.y62{bottom:594.435000px;}
.y40{bottom:596.415000px;}
.yd3{bottom:600.555000px;}
.y78{bottom:612.105000px;}
.y9f{bottom:612.645000px;}
.y18{bottom:613.365000px;}
.yd2{bottom:624.525000px;}
.y61{bottom:625.605000px;}
.y3f{bottom:627.585000px;}
.y17{bottom:637.125000px;}
.y9e{bottom:643.605000px;}
.yd1{bottom:648.285000px;}
.y77{bottom:650.805000px;}
.y60{bottom:656.565000px;}
.y3e{bottom:658.545000px;}
.y16{bottom:660.885000px;}
.yd0{bottom:672.045000px;}
.y5f{bottom:674.025000px;}
.y9d{bottom:674.745000px;}
.y15{bottom:684.825000px;}
.y76{bottom:689.505000px;}
.y3d{bottom:689.685000px;}
.ycf{bottom:695.805000px;}
.y9c{bottom:705.705000px;}
.y14{bottom:708.585000px;}
.yce{bottom:719.745000px;}
.y3c{bottom:720.645000px;}
.y5e{bottom:722.445000px;}
.y75{bottom:729.105000px;}
.y13{bottom:732.345000px;}
.y9b{bottom:736.845000px;}
.ycd{bottom:743.505000px;}
.y3b{bottom:751.785000px;}
.y12{bottom:763.485000px;}
.ycc{bottom:767.265000px;}
.y9a{bottom:767.805000px;}
.y5c{bottom:770.685000px;}
.y3a{bottom:782.745000px;}
.ycb{bottom:791.025000px;}
.y11{bottom:794.445000px;}
.y5b{bottom:795.345000px;}
.y99{bottom:798.945000px;}
.y39{bottom:813.885000px;}
.yca{bottom:814.965000px;}
.y10{bottom:825.585000px;}
.y98{bottom:829.905000px;}
.yc9{bottom:838.725000px;}
.y59{bottom:843.765000px;}
.y38{bottom:844.845000px;}
.yf{bottom:856.545000px;}
.y97{bottom:861.045000px;}
.yc8{bottom:862.485000px;}
.y37{bottom:876.030000px;}
.y96{bottom:878.550000px;}
.yc7{bottom:886.290000px;}
.ye{bottom:887.550000px;}
.y58{bottom:892.050000px;}
.y95{bottom:902.310000px;}
.y36{bottom:906.990000px;}
.yc6{bottom:910.050000px;}
.y56{bottom:916.710000px;}
.yd{bottom:918.690000px;}
.y94{bottom:926.070000px;}
.yc5{bottom:933.990000px;}
.y35{bottom:938.130000px;}
.yc{bottom:949.650000px;}
.y93{bottom:950.010000px;}
.yc4{bottom:957.750000px;}
.y54{bottom:964.950000px;}
.y34{bottom:969.090000px;}
.y92{bottom:973.770000px;}
.yb{bottom:980.790000px;}
.yc3{bottom:981.510000px;}
.y33{bottom:1000.230000px;}
.yc2{bottom:1005.270000px;}
.ya{bottom:1011.750000px;}
.y91{bottom:1021.290000px;}
.yc1{bottom:1029.210000px;}
.y32{bottom:1031.190000px;}
.y52{bottom:1037.130000px;}
.y9{bottom:1042.890000px;}
.y90{bottom:1045.230000px;}
.yc0{bottom:1052.970000px;}
.y31{bottom:1062.330000px;}
.y8{bottom:1073.850000px;}
.ybf{bottom:1076.730000px;}
.y50{bottom:1085.550000px;}
.y8f{bottom:1092.750000px;}
.y30{bottom:1093.290000px;}
.y7{bottom:1097.790000px;}
.ybe{bottom:1100.490000px;}
.y6{bottom:1121.550000px;}
.y2f{bottom:1124.430000px;}
.y5{bottom:1145.340000px;}
.y2e{bottom:1145.880000px;}
.y2d{bottom:1168.380000px;}
.y4{bottom:1169.100000px;}
.y2c{bottom:1192.140000px;}
.y3{bottom:1193.040000px;}
.h7{height:23.760000px;}
.hc{height:23.940000px;}
.he{height:30.960000px;}
.hd{height:31.140000px;}
.hf{height:31.176000px;}
.h10{height:38.700000px;}
.h11{height:38.736000px;}
.ha{height:47.520000px;}
.hb{height:47.556000px;}
.h8{height:47.700000px;}
.h12{height:47.736000px;}
.h5{height:50.273438px;}
.h3{height:50.800781px;}
.h6{height:54.246094px;}
.h13{height:54.597656px;}
.h4{height:54.773438px;}
.h2{height:57.410156px;}
.h9{height:71.460000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:77.796000px;}
.wc{width:78.300000px;}
.w12{width:80.100000px;}
.wd{width:83.700000px;}
.w10{width:83.736000px;}
.we{width:86.436000px;}
.wf{width:89.640000px;}
.w18{width:99.900000px;}
.w6{width:103.320000px;}
.w15{width:110.700000px;}
.w16{width:121.176000px;}
.w17{width:121.356000px;}
.w4{width:121.536000px;}
.w9{width:121.716000px;}
.wb{width:124.920000px;}
.w3{width:146.520000px;}
.wa{width:154.110000px;}
.w8{width:154.800000px;}
.w14{width:217.290000px;}
.w5{width:302.115000px;}
.w7{width:528.405000px;}
.w13{width:670.425000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x16{left:27.000000px;}
.x14{left:40.185000px;}
.x2c{left:42.480000px;}
.x19{left:45.045000px;}
.x1b{left:46.620000px;}
.x1a{left:56.700000px;}
.x1c{left:61.200000px;}
.x2b{left:99.180000px;}
.x2{left:108.035987px;}
.x29{left:109.980000px;}
.x23{left:114.876000px;}
.x2a{left:120.270000px;}
.x2d{left:162.029987px;}
.xd{left:179.129987px;}
.x9{left:181.109987px;}
.x1d{left:186.330000px;}
.x10{left:255.990000px;}
.xa{left:259.409987px;}
.x24{left:261.579000px;}
.x13{left:262.830000px;}
.x1e{left:270.030000px;}
.xc{left:308.234987px;}
.xb{left:322.454987px;}
.x25{left:332.175000px;}
.xe{left:346.934987px;}
.x1f{left:356.475000px;}
.x3{left:364.394987px;}
.x11{left:378.255000px;}
.x15{left:384.375000px;}
.x1{left:433.334987px;}
.x26{left:442.875000px;}
.x8{left:446.474987px;}
.x17{left:506.085000px;}
.x20{left:529.845000px;}
.x27{left:564.045000px;}
.x7{left:582.044987px;}
.x6{left:608.504987px;}
.x21{left:613.545000px;}
.x5{left:624.524987px;}
.x4{left:650.984987px;}
.x18{left:660.210000px;}
.x12{left:681.090000px;}
.x28{left:685.410000px;}
.x22{left:691.350000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.lsc{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.400533pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.082133pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.239360pt;}
.ls6{letter-spacing:0.239467pt;}
.lsd{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls11{letter-spacing:2.720000pt;}
.ls12{letter-spacing:5.760000pt;}
.lse{letter-spacing:6.560000pt;}
.lsf{letter-spacing:9.760000pt;}
.ls13{letter-spacing:17.472000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.168000pt;}
.ws0{word-spacing:-11.870507pt;}
.ws6{word-spacing:-10.959467pt;}
.wsb{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.319467pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-3.861333pt;}
._5{margin-left:-2.581333pt;}
._4{margin-left:-1.600000pt;}
._0{width:1.066667pt;}
._c{width:2.432000pt;}
._6{width:3.648000pt;}
._7{width:4.554667pt;}
._f{width:5.696000pt;}
._3{width:7.082667pt;}
._1{width:8.576000pt;}
._2{width:9.888000pt;}
._8{width:11.136000pt;}
._9{width:12.800000pt;}
._b{width:14.336000pt;}
._d{width:17.664000pt;}
._e{width:18.688000pt;}
._10{width:20.288000pt;}
._1b{width:21.248000pt;}
._13{width:22.144000pt;}
._14{width:23.146667pt;}
._12{width:24.192000pt;}
._11{width:25.280000pt;}
._1c{width:27.264000pt;}
._1d{width:28.416000pt;}
._20{width:29.333333pt;}
._1a{width:30.272000pt;}
._1f{width:31.168000pt;}
._1e{width:32.256000pt;}
._25{width:35.648000pt;}
._21{width:37.504000pt;}
._17{width:44.544000pt;}
._18{width:45.504000pt;}
._16{width:54.784000pt;}
._26{width:62.592000pt;}
._27{width:63.744000pt;}
._23{width:77.440000pt;}
._24{width:78.944000pt;}
._15{width:90.112000pt;}
._22{width:132.544000pt;}
._19{width:154.624000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:6.240000pt;}
.y5d{bottom:6.400000pt;}
.y67{bottom:12.640000pt;}
.y65{bottom:12.800000pt;}
.y6d{bottom:12.840000pt;}
.y57{bottom:27.360000pt;}
.y5a{bottom:27.400000pt;}
.y8e{bottom:27.514667pt;}
.y53{bottom:27.520000pt;}
.y55{bottom:48.640000pt;}
.y2{bottom:52.000000pt;}
.y1{bottom:69.952000pt;}
.y2b{bottom:104.512000pt;}
.ybd{bottom:108.832000pt;}
.y8d{bottom:109.952000pt;}
.y74{bottom:112.352000pt;}
.y87{bottom:114.912000pt;}
.y4f{bottom:116.192000pt;}
.ybc{bottom:129.952000pt;}
.yad{bottom:130.592000pt;}
.ye4{bottom:131.872000pt;}
.y2a{bottom:132.032000pt;}
.y73{bottom:140.026667pt;}
.y86{bottom:142.586667pt;}
.y4e{bottom:143.866667pt;}
.ybb{bottom:151.226667pt;}
.y8c{bottom:152.346667pt;}
.ye3{bottom:152.986667pt;}
.yac{bottom:158.106667pt;}
.y29{bottom:159.706667pt;}
.y72{bottom:167.546667pt;}
.y85{bottom:170.106667pt;}
.y4d{bottom:171.386667pt;}
.yba{bottom:172.346667pt;}
.ye2{bottom:174.106667pt;}
.yab{bottom:185.626667pt;}
.y28{bottom:187.226667pt;}
.yb9{bottom:193.466667pt;}
.y8b{bottom:194.586667pt;}
.y71{bottom:195.226667pt;}
.ye1{bottom:195.386667pt;}
.y84{bottom:197.786667pt;}
.y4c{bottom:199.066667pt;}
.yaa{bottom:213.306667pt;}
.yb8{bottom:214.586667pt;}
.y27{bottom:214.906667pt;}
.ye0{bottom:216.506667pt;}
.y70{bottom:222.746667pt;}
.y83{bottom:225.306667pt;}
.y4b{bottom:226.586667pt;}
.yb7{bottom:235.866667pt;}
.y8a{bottom:237.626667pt;}
.ya9{bottom:240.826667pt;}
.y26{bottom:242.426667pt;}
.y6f{bottom:250.426667pt;}
.y82{bottom:252.986667pt;}
.y4a{bottom:254.266667pt;}
.yb6{bottom:256.986667pt;}
.ydf{bottom:258.746667pt;}
.y89{bottom:259.386667pt;}
.y6e{bottom:265.946667pt;}
.ya8{bottom:268.506667pt;}
.y25{bottom:270.106667pt;}
.yb5{bottom:278.106667pt;}
.yde{bottom:280.026667pt;}
.y81{bottom:280.506667pt;}
.y49{bottom:281.786667pt;}
.y24{bottom:291.226667pt;}
.y6c{bottom:293.466667pt;}
.ya7{bottom:296.026667pt;}
.yb4{bottom:299.266667pt;}
.ydd{bottom:301.186667pt;}
.y88{bottom:302.466667pt;}
.y80{bottom:308.226667pt;}
.y48{bottom:309.346667pt;}
.y23{bottom:312.386667pt;}
.yb3{bottom:320.386667pt;}
.y6b{bottom:321.186667pt;}
.ydc{bottom:322.306667pt;}
.ya6{bottom:323.746667pt;}
.y22{bottom:333.506667pt;}
.y7f{bottom:335.746667pt;}
.y47{bottom:337.026667pt;}
.yb2{bottom:341.666667pt;}
.ydb{bottom:343.426667pt;}
.y6a{bottom:348.706667pt;}
.ya5{bottom:351.266667pt;}
.y21{bottom:354.786667pt;}
.yb1{bottom:362.786667pt;}
.y7e{bottom:363.426667pt;}
.y46{bottom:364.546667pt;}
.y20{bottom:375.906667pt;}
.y69{bottom:376.386667pt;}
.ya4{bottom:378.946667pt;}
.yb0{bottom:383.906667pt;}
.yda{bottom:385.826667pt;}
.y7d{bottom:390.946667pt;}
.y45{bottom:392.226667pt;}
.y1f{bottom:397.026667pt;}
.y68{bottom:403.906667pt;}
.yaf{bottom:405.026667pt;}
.y7c{bottom:406.466667pt;}
.yd9{bottom:406.946667pt;}
.y1e{bottom:418.146667pt;}
.y44{bottom:419.746667pt;}
.yae{bottom:426.306667pt;}
.yd8{bottom:428.066667pt;}
.y66{bottom:431.586667pt;}
.ya3{bottom:434.146667pt;}
.y1d{bottom:439.426667pt;}
.y7b{bottom:440.866667pt;}
.y43{bottom:447.426667pt;}
.yd7{bottom:449.186667pt;}
.y64{bottom:459.746667pt;}
.y1c{bottom:460.546667pt;}
.ya2{bottom:461.666667pt;}
.yd6{bottom:470.466667pt;}
.y42{bottom:474.946667pt;}
.y7a{bottom:475.266667pt;}
.y1b{bottom:481.666667pt;}
.ya1{bottom:489.346667pt;}
.yd5{bottom:491.586667pt;}
.y63{bottom:500.866667pt;}
.y41{bottom:502.626667pt;}
.y1a{bottom:502.786667pt;}
.y79{bottom:509.666667pt;}
.yd4{bottom:512.706667pt;}
.ya0{bottom:516.866667pt;}
.y19{bottom:524.066667pt;}
.y62{bottom:528.386667pt;}
.y40{bottom:530.146667pt;}
.yd3{bottom:533.826667pt;}
.y78{bottom:544.093333pt;}
.y9f{bottom:544.573333pt;}
.y18{bottom:545.213333pt;}
.yd2{bottom:555.133333pt;}
.y61{bottom:556.093333pt;}
.y3f{bottom:557.853333pt;}
.y17{bottom:566.333333pt;}
.y9e{bottom:572.093333pt;}
.yd1{bottom:576.253333pt;}
.y77{bottom:578.493333pt;}
.y60{bottom:583.613333pt;}
.y3e{bottom:585.373333pt;}
.y16{bottom:587.453333pt;}
.yd0{bottom:597.373333pt;}
.y5f{bottom:599.133333pt;}
.y9d{bottom:599.773333pt;}
.y15{bottom:608.733333pt;}
.y76{bottom:612.893333pt;}
.y3d{bottom:613.053333pt;}
.ycf{bottom:618.493333pt;}
.y9c{bottom:627.293333pt;}
.y14{bottom:629.853333pt;}
.yce{bottom:639.773333pt;}
.y3c{bottom:640.573333pt;}
.y5e{bottom:642.173333pt;}
.y75{bottom:648.093333pt;}
.y13{bottom:650.973333pt;}
.y9b{bottom:654.973333pt;}
.ycd{bottom:660.893333pt;}
.y3b{bottom:668.253333pt;}
.y12{bottom:678.653333pt;}
.ycc{bottom:682.013333pt;}
.y9a{bottom:682.493333pt;}
.y5c{bottom:685.053333pt;}
.y3a{bottom:695.773333pt;}
.ycb{bottom:703.133333pt;}
.y11{bottom:706.173333pt;}
.y5b{bottom:706.973333pt;}
.y99{bottom:710.173333pt;}
.y39{bottom:723.453333pt;}
.yca{bottom:724.413333pt;}
.y10{bottom:733.853333pt;}
.y98{bottom:737.693333pt;}
.yc9{bottom:745.533333pt;}
.y59{bottom:750.013333pt;}
.y38{bottom:750.973333pt;}
.yf{bottom:761.373333pt;}
.y97{bottom:765.373333pt;}
.yc8{bottom:766.653333pt;}
.y37{bottom:778.693333pt;}
.y96{bottom:780.933333pt;}
.yc7{bottom:787.813333pt;}
.ye{bottom:788.933333pt;}
.y58{bottom:792.933333pt;}
.y95{bottom:802.053333pt;}
.y36{bottom:806.213333pt;}
.yc6{bottom:808.933333pt;}
.y56{bottom:814.853333pt;}
.yd{bottom:816.613333pt;}
.y94{bottom:823.173333pt;}
.yc5{bottom:830.213333pt;}
.y35{bottom:833.893333pt;}
.yc{bottom:844.133333pt;}
.y93{bottom:844.453333pt;}
.yc4{bottom:851.333333pt;}
.y54{bottom:857.733333pt;}
.y34{bottom:861.413333pt;}
.y92{bottom:865.573333pt;}
.yb{bottom:871.813333pt;}
.yc3{bottom:872.453333pt;}
.y33{bottom:889.093333pt;}
.yc2{bottom:893.573333pt;}
.ya{bottom:899.333333pt;}
.y91{bottom:907.813333pt;}
.yc1{bottom:914.853333pt;}
.y32{bottom:916.613333pt;}
.y52{bottom:921.893333pt;}
.y9{bottom:927.013333pt;}
.y90{bottom:929.093333pt;}
.yc0{bottom:935.973333pt;}
.y31{bottom:944.293333pt;}
.y8{bottom:954.533333pt;}
.ybf{bottom:957.093333pt;}
.y50{bottom:964.933333pt;}
.y8f{bottom:971.333333pt;}
.y30{bottom:971.813333pt;}
.y7{bottom:975.813333pt;}
.ybe{bottom:978.213333pt;}
.y6{bottom:996.933333pt;}
.y2f{bottom:999.493333pt;}
.y5{bottom:1018.080000pt;}
.y2e{bottom:1018.560000pt;}
.y2d{bottom:1038.560000pt;}
.y4{bottom:1039.200000pt;}
.y2c{bottom:1059.680000pt;}
.y3{bottom:1060.480000pt;}
.h7{height:21.120000pt;}
.hc{height:21.280000pt;}
.he{height:27.520000pt;}
.hd{height:27.680000pt;}
.hf{height:27.712000pt;}
.h10{height:34.400000pt;}
.h11{height:34.432000pt;}
.ha{height:42.240000pt;}
.hb{height:42.272000pt;}
.h8{height:42.400000pt;}
.h12{height:42.432000pt;}
.h5{height:44.687500pt;}
.h3{height:45.156250pt;}
.h6{height:48.218750pt;}
.h13{height:48.531250pt;}
.h4{height:48.687500pt;}
.h2{height:51.031250pt;}
.h9{height:63.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:69.152000pt;}
.wc{width:69.600000pt;}
.w12{width:71.200000pt;}
.wd{width:74.400000pt;}
.w10{width:74.432000pt;}
.we{width:76.832000pt;}
.wf{width:79.680000pt;}
.w18{width:88.800000pt;}
.w6{width:91.840000pt;}
.w15{width:98.400000pt;}
.w16{width:107.712000pt;}
.w17{width:107.872000pt;}
.w4{width:108.032000pt;}
.w9{width:108.192000pt;}
.wb{width:111.040000pt;}
.w3{width:130.240000pt;}
.wa{width:136.986667pt;}
.w8{width:137.600000pt;}
.w14{width:193.146667pt;}
.w5{width:268.546667pt;}
.w7{width:469.693333pt;}
.w13{width:595.933333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x16{left:24.000000pt;}
.x14{left:35.720000pt;}
.x2c{left:37.760000pt;}
.x19{left:40.040000pt;}
.x1b{left:41.440000pt;}
.x1a{left:50.400000pt;}
.x1c{left:54.400000pt;}
.x2b{left:88.160000pt;}
.x2{left:96.031988pt;}
.x29{left:97.760000pt;}
.x23{left:102.112000pt;}
.x2a{left:106.906667pt;}
.x2d{left:144.026655pt;}
.xd{left:159.226655pt;}
.x9{left:160.986655pt;}
.x1d{left:165.626667pt;}
.x10{left:227.546667pt;}
.xa{left:230.586655pt;}
.x24{left:232.514667pt;}
.x13{left:233.626667pt;}
.x1e{left:240.026667pt;}
.xc{left:273.986655pt;}
.xb{left:286.626655pt;}
.x25{left:295.266667pt;}
.xe{left:308.386655pt;}
.x1f{left:316.866667pt;}
.x3{left:323.906655pt;}
.x11{left:336.226667pt;}
.x15{left:341.666667pt;}
.x1{left:385.186655pt;}
.x26{left:393.666667pt;}
.x8{left:396.866655pt;}
.x17{left:449.853333pt;}
.x20{left:470.973333pt;}
.x27{left:501.373333pt;}
.x7{left:517.373322pt;}
.x6{left:540.893322pt;}
.x21{left:545.373333pt;}
.x5{left:555.133322pt;}
.x4{left:578.653322pt;}
.x18{left:586.853333pt;}
.x12{left:605.413333pt;}
.x28{left:609.253333pt;}
.x22{left:614.533333pt;}
}




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