
    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_67ee9e79997b533839d2514c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b8276d1f898d5edd2e575ad3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f9c7786ea26211a90881ae42.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_bf7459015f6071054edd707d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_54966aca2f0f803dc0b46d6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_af6c593e8489530376a5a637.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_1fab7da4cfc99ff1a104e507.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_14789b4e2f9602e8ff208518.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_6bc342cb39d886fdebc9c4e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls13{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.106800px;}
.ls3{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.000001px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.206400px;}
.lse{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.255000px;}
.ls10{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.612000px;}
.lsc{letter-spacing:0.666720px;}
.lsf{letter-spacing:1.080000px;}
.lsd{letter-spacing:2658.696000px;}
.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;}
}
.wsd{word-spacing:-17.225280px;}
.ws9{word-spacing:-16.819680px;}
.ws8{word-spacing:-16.613280px;}
.wsc{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.506480px;}
.ws1{word-spacing:-15.984000px;}
.ws0{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.768000px;}
.wsa{word-spacing:-15.696000px;}
.ws5{word-spacing:-15.624000px;}
.ws6{word-spacing:-15.552000px;}
.ws7{word-spacing:-10.867800px;}
.ws4{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:0.216000px;}
.wsf{word-spacing:0.504000px;}
._7{margin-left:-8.148000px;}
._4{margin-left:-6.274800px;}
._8{margin-left:-5.268000px;}
._5{margin-left:-4.003920px;}
._1{margin-left:-2.016000px;}
._2{margin-left:-1.008000px;}
._0{width:1.020000px;}
._3{width:2.040240px;}
._9{width:4.476000px;}
._6{width:6.838800px;}
._a{width:8.220000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:109.476000px;}
.ya6{bottom:112.176000px;}
.y6f{bottom:113.976000px;}
.y71{bottom:116.856000px;}
.yca{bottom:121.536000px;}
.y5e{bottom:126.396000px;}
.y4c{bottom:126.576000px;}
.y6e{bottom:126.936000px;}
.y4b{bottom:131.076000px;}
.ya5{bottom:133.236000px;}
.y31{bottom:133.956000px;}
.y1a{bottom:136.296000px;}
.yc9{bottom:142.596000px;}
.y68{bottom:143.856000px;}
.y4a{bottom:144.216000px;}
.y6c{bottom:147.456000px;}
.y6b{bottom:148.356000px;}
.y70{bottom:151.950000px;}
.ya4{bottom:154.290000px;}
.y67{bottom:161.130000px;}
.y6a{bottom:161.310000px;}
.yc8{bottom:163.650000px;}
.y5d{bottom:168.690000px;}
.ya3{bottom:175.530000px;}
.y30{bottom:176.070000px;}
.y19{bottom:178.410000px;}
.y49{bottom:189.750000px;}
.y66{bottom:195.690000px;}
.y8b{bottom:196.770000px;}
.y65{bottom:200.190000px;}
.yc7{bottom:202.710000px;}
.y5c{bottom:210.810000px;}
.y64{bottom:212.970000px;}
.ya2{bottom:214.590000px;}
.y89{bottom:217.830000px;}
.y2f{bottom:218.190000px;}
.y18{bottom:220.710000px;}
.y8a{bottom:222.330000px;}
.yc6{bottom:223.950000px;}
.y63{bottom:230.070000px;}
.y48{bottom:231.870000px;}
.y62{bottom:234.570000px;}
.ya1{bottom:235.650000px;}
.y88{bottom:238.890000px;}
.y61{bottom:247.710000px;}
.y5b{bottom:253.110000px;}
.ya0{bottom:256.710000px;}
.y87{bottom:260.130000px;}
.y2e{bottom:260.490000px;}
.y17{bottom:262.830000px;}
.yc5{bottom:263.010000px;}
.y47{bottom:274.170000px;}
.y9f{bottom:277.950000px;}
.yc4{bottom:284.070000px;}
.y5a{bottom:295.230000px;}
.y86{bottom:302.250000px;}
.y2d{bottom:302.610000px;}
.y16{bottom:305.130000px;}
.y46{bottom:316.290000px;}
.y9e{bottom:317.010000px;}
.yc3{bottom:326.190000px;}
.y59{bottom:337.575000px;}
.y9d{bottom:338.115000px;}
.y85{bottom:344.595000px;}
.y2c{bottom:344.955000px;}
.y15{bottom:347.295000px;}
.y44{bottom:358.635000px;}
.y45{bottom:362.415000px;}
.yc2{bottom:365.475000px;}
.y9c{bottom:377.175000px;}
.y58{bottom:379.695000px;}
.y14{bottom:382.035000px;}
.yc1{bottom:386.535000px;}
.y84{bottom:386.715000px;}
.y2b{bottom:387.075000px;}
.y43{bottom:400.755000px;}
.y9b{bottom:416.235000px;}
.y13{bottom:416.955000px;}
.y57{bottom:421.995000px;}
.yc0{bottom:425.595000px;}
.y83{bottom:429.015000px;}
.y2a{bottom:429.375000px;}
.y9a{bottom:437.475000px;}
.y42{bottom:443.055000px;}
.ybf{bottom:446.655000px;}
.y99{bottom:458.535000px;}
.y12{bottom:459.075000px;}
.y56{bottom:464.115000px;}
.y8c{bottom:467.895000px;}
.y82{bottom:471.135000px;}
.y29{bottom:471.495000px;}
.y41{bottom:485.175000px;}
.y98{bottom:497.595000px;}
.y11{bottom:501.195000px;}
.y55{bottom:506.235000px;}
.ybe{bottom:506.955000px;}
.y81{bottom:513.435000px;}
.y28{bottom:513.795000px;}
.y97{bottom:518.655000px;}
.y40{bottom:527.475000px;}
.ybd{bottom:528.015000px;}
.y10{bottom:543.495000px;}
.y54{bottom:548.535000px;}
.ybc{bottom:549.075000px;}
.y80{bottom:555.555000px;}
.y27{bottom:555.915000px;}
.y96{bottom:557.895000px;}
.y3f{bottom:569.595000px;}
.ybb{bottom:570.315000px;}
.y95{bottom:578.955000px;}
.yf{bottom:585.615000px;}
.y53{bottom:590.655000px;}
.yba{bottom:591.375000px;}
.y60{bottom:594.435000px;}
.y7f{bottom:597.855000px;}
.y26{bottom:598.215000px;}
.y3e{bottom:611.925000px;}
.y94{bottom:618.045000px;}
.ye{bottom:627.945000px;}
.yb9{bottom:630.465000px;}
.y52{bottom:632.985000px;}
.y93{bottom:639.105000px;}
.y7e{bottom:640.005000px;}
.y25{bottom:640.365000px;}
.yb8{bottom:651.525000px;}
.y3d{bottom:654.045000px;}
.yd{bottom:670.065000px;}
.yb7{bottom:672.765000px;}
.y51{bottom:675.105000px;}
.y92{bottom:678.345000px;}
.y7d{bottom:682.125000px;}
.y24{bottom:682.665000px;}
.yd1{bottom:693.825000px;}
.y3c{bottom:696.345000px;}
.y91{bottom:699.405000px;}
.yb6{bottom:711.825000px;}
.yc{bottom:712.365000px;}
.y50{bottom:717.405000px;}
.y7c{bottom:724.425000px;}
.y23{bottom:724.785000px;}
.yb5{bottom:732.885000px;}
.y3b{bottom:738.465000px;}
.yd0{bottom:753.945000px;}
.yb{bottom:754.485000px;}
.y4f{bottom:759.525000px;}
.y7b{bottom:766.545000px;}
.y22{bottom:767.085000px;}
.yb4{bottom:771.945000px;}
.ycf{bottom:775.185000px;}
.y3a{bottom:780.765000px;}
.yb3{bottom:793.185000px;}
.ya{bottom:796.785000px;}
.y4e{bottom:801.825000px;}
.y5f{bottom:805.605000px;}
.y7a{bottom:808.845000px;}
.y21{bottom:809.205000px;}
.yb2{bottom:814.245000px;}
.y39{bottom:822.885000px;}
.yb1{bottom:835.305000px;}
.y9{bottom:838.905000px;}
.y38{bottom:843.945000px;}
.y79{bottom:850.965000px;}
.y20{bottom:851.505000px;}
.yb0{bottom:856.365000px;}
.y37{bottom:865.185000px;}
.yce{bottom:874.410000px;}
.y8{bottom:881.250000px;}
.y36{bottom:886.290000px;}
.y6d{bottom:890.070000px;}
.y78{bottom:893.310000px;}
.y1f{bottom:893.670000px;}
.yaf{bottom:895.470000px;}
.y90{bottom:907.350000px;}
.yae{bottom:916.710000px;}
.y7{bottom:923.370000px;}
.y35{bottom:928.410000px;}
.y77{bottom:935.430000px;}
.y1e{bottom:935.970000px;}
.yad{bottom:937.770000px;}
.y8f{bottom:949.470000px;}
.ycd{bottom:955.770000px;}
.y6{bottom:958.110000px;}
.y34{bottom:970.710000px;}
.yac{bottom:976.830000px;}
.y76{bottom:977.730000px;}
.y1d{bottom:978.090000px;}
.y8e{bottom:991.770000px;}
.y5{bottom:993.030000px;}
.yab{bottom:997.890000px;}
.y33{bottom:1012.830000px;}
.yaa{bottom:1019.130000px;}
.y75{bottom:1019.850000px;}
.y1c{bottom:1020.210000px;}
.y4{bottom:1027.770000px;}
.y8d{bottom:1033.890000px;}
.ycc{bottom:1037.130000px;}
.ya9{bottom:1040.190000px;}
.y32{bottom:1055.130000px;}
.ycb{bottom:1058.190000px;}
.y69{bottom:1058.910000px;}
.y74{bottom:1062.150000px;}
.y3{bottom:1062.510000px;}
.ya8{bottom:1079.250000px;}
.y2{bottom:1097.250000px;}
.y73{bottom:1104.270000px;}
.y1b{bottom:1104.630000px;}
.ya7{bottom:1118.310000px;}
.y1{bottom:1139.580000px;}
.y72{bottom:1142.460000px;}
.h6{height:28.419609px;}
.h4{height:36.336094px;}
.ha{height:41.974453px;}
.h7{height:43.681992px;}
.h5{height:48.418594px;}
.h9{height:51.998203px;}
.h3{height:60.960938px;}
.h2{height:62.648438px;}
.h8{height:63.210938px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
.x6{left:111.635987px;}
.x7{left:146.195973px;}
.x12{left:149.795973px;}
.x8{left:151.949987px;}
.x13{left:155.549987px;}
.x2{left:160.229987px;}
.xf{left:212.429987px;}
.x10{left:263.369973px;}
.x11{left:270.029987px;}
.xb{left:293.654973px;}
.xc{left:299.414987px;}
.x5{left:322.274987px;}
.xd{left:474.944973px;}
.xe{left:480.704987px;}
.x9{left:584.384973px;}
.xa{left:590.144987px;}
.x3{left:620.564973px;}
.x4{left:626.324987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.226667pt;}
.ls10{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.544000pt;}
.lsc{letter-spacing:0.592640pt;}
.lsf{letter-spacing:0.960000pt;}
.lsd{letter-spacing:2363.285333pt;}
.wsd{word-spacing:-15.311360pt;}
.ws9{word-spacing:-14.950827pt;}
.ws8{word-spacing:-14.767360pt;}
.wsc{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.672427pt;}
.ws1{word-spacing:-14.208000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws2{word-spacing:-14.016000pt;}
.wsa{word-spacing:-13.952000pt;}
.ws5{word-spacing:-13.888000pt;}
.ws6{word-spacing:-13.824000pt;}
.ws7{word-spacing:-9.660267pt;}
.ws4{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:0.192000pt;}
.wsf{word-spacing:0.448000pt;}
._7{margin-left:-7.242667pt;}
._4{margin-left:-5.577600pt;}
._8{margin-left:-4.682667pt;}
._5{margin-left:-3.559040pt;}
._1{margin-left:-1.792000pt;}
._2{margin-left:-0.896000pt;}
._0{width:0.906667pt;}
._3{width:1.813547pt;}
._9{width:3.978667pt;}
._6{width:6.078933pt;}
._a{width:7.306667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:97.312000pt;}
.ya6{bottom:99.712000pt;}
.y6f{bottom:101.312000pt;}
.y71{bottom:103.872000pt;}
.yca{bottom:108.032000pt;}
.y5e{bottom:112.352000pt;}
.y4c{bottom:112.512000pt;}
.y6e{bottom:112.832000pt;}
.y4b{bottom:116.512000pt;}
.ya5{bottom:118.432000pt;}
.y31{bottom:119.072000pt;}
.y1a{bottom:121.152000pt;}
.yc9{bottom:126.752000pt;}
.y68{bottom:127.872000pt;}
.y4a{bottom:128.192000pt;}
.y6c{bottom:131.072000pt;}
.y6b{bottom:131.872000pt;}
.y70{bottom:135.066667pt;}
.ya4{bottom:137.146667pt;}
.y67{bottom:143.226667pt;}
.y6a{bottom:143.386667pt;}
.yc8{bottom:145.466667pt;}
.y5d{bottom:149.946667pt;}
.ya3{bottom:156.026667pt;}
.y30{bottom:156.506667pt;}
.y19{bottom:158.586667pt;}
.y49{bottom:168.666667pt;}
.y66{bottom:173.946667pt;}
.y8b{bottom:174.906667pt;}
.y65{bottom:177.946667pt;}
.yc7{bottom:180.186667pt;}
.y5c{bottom:187.386667pt;}
.y64{bottom:189.306667pt;}
.ya2{bottom:190.746667pt;}
.y89{bottom:193.626667pt;}
.y2f{bottom:193.946667pt;}
.y18{bottom:196.186667pt;}
.y8a{bottom:197.626667pt;}
.yc6{bottom:199.066667pt;}
.y63{bottom:204.506667pt;}
.y48{bottom:206.106667pt;}
.y62{bottom:208.506667pt;}
.ya1{bottom:209.466667pt;}
.y88{bottom:212.346667pt;}
.y61{bottom:220.186667pt;}
.y5b{bottom:224.986667pt;}
.ya0{bottom:228.186667pt;}
.y87{bottom:231.226667pt;}
.y2e{bottom:231.546667pt;}
.y17{bottom:233.626667pt;}
.yc5{bottom:233.786667pt;}
.y47{bottom:243.706667pt;}
.y9f{bottom:247.066667pt;}
.yc4{bottom:252.506667pt;}
.y5a{bottom:262.426667pt;}
.y86{bottom:268.666667pt;}
.y2d{bottom:268.986667pt;}
.y16{bottom:271.226667pt;}
.y46{bottom:281.146667pt;}
.y9e{bottom:281.786667pt;}
.yc3{bottom:289.946667pt;}
.y59{bottom:300.066667pt;}
.y9d{bottom:300.546667pt;}
.y85{bottom:306.306667pt;}
.y2c{bottom:306.626667pt;}
.y15{bottom:308.706667pt;}
.y44{bottom:318.786667pt;}
.y45{bottom:322.146667pt;}
.yc2{bottom:324.866667pt;}
.y9c{bottom:335.266667pt;}
.y58{bottom:337.506667pt;}
.y14{bottom:339.586667pt;}
.yc1{bottom:343.586667pt;}
.y84{bottom:343.746667pt;}
.y2b{bottom:344.066667pt;}
.y43{bottom:356.226667pt;}
.y9b{bottom:369.986667pt;}
.y13{bottom:370.626667pt;}
.y57{bottom:375.106667pt;}
.yc0{bottom:378.306667pt;}
.y83{bottom:381.346667pt;}
.y2a{bottom:381.666667pt;}
.y9a{bottom:388.866667pt;}
.y42{bottom:393.826667pt;}
.ybf{bottom:397.026667pt;}
.y99{bottom:407.586667pt;}
.y12{bottom:408.066667pt;}
.y56{bottom:412.546667pt;}
.y8c{bottom:415.906667pt;}
.y82{bottom:418.786667pt;}
.y29{bottom:419.106667pt;}
.y41{bottom:431.266667pt;}
.y98{bottom:442.306667pt;}
.y11{bottom:445.506667pt;}
.y55{bottom:449.986667pt;}
.ybe{bottom:450.626667pt;}
.y81{bottom:456.386667pt;}
.y28{bottom:456.706667pt;}
.y97{bottom:461.026667pt;}
.y40{bottom:468.866667pt;}
.ybd{bottom:469.346667pt;}
.y10{bottom:483.106667pt;}
.y54{bottom:487.586667pt;}
.ybc{bottom:488.066667pt;}
.y80{bottom:493.826667pt;}
.y27{bottom:494.146667pt;}
.y96{bottom:495.906667pt;}
.y3f{bottom:506.306667pt;}
.ybb{bottom:506.946667pt;}
.y95{bottom:514.626667pt;}
.yf{bottom:520.546667pt;}
.y53{bottom:525.026667pt;}
.yba{bottom:525.666667pt;}
.y60{bottom:528.386667pt;}
.y7f{bottom:531.426667pt;}
.y26{bottom:531.746667pt;}
.y3e{bottom:543.933333pt;}
.y94{bottom:549.373333pt;}
.ye{bottom:558.173333pt;}
.yb9{bottom:560.413333pt;}
.y52{bottom:562.653333pt;}
.y93{bottom:568.093333pt;}
.y7e{bottom:568.893333pt;}
.y25{bottom:569.213333pt;}
.yb8{bottom:579.133333pt;}
.y3d{bottom:581.373333pt;}
.yd{bottom:595.613333pt;}
.yb7{bottom:598.013333pt;}
.y51{bottom:600.093333pt;}
.y92{bottom:602.973333pt;}
.y7d{bottom:606.333333pt;}
.y24{bottom:606.813333pt;}
.yd1{bottom:616.733333pt;}
.y3c{bottom:618.973333pt;}
.y91{bottom:621.693333pt;}
.yb6{bottom:632.733333pt;}
.yc{bottom:633.213333pt;}
.y50{bottom:637.693333pt;}
.y7c{bottom:643.933333pt;}
.y23{bottom:644.253333pt;}
.yb5{bottom:651.453333pt;}
.y3b{bottom:656.413333pt;}
.yd0{bottom:670.173333pt;}
.yb{bottom:670.653333pt;}
.y4f{bottom:675.133333pt;}
.y7b{bottom:681.373333pt;}
.y22{bottom:681.853333pt;}
.yb4{bottom:686.173333pt;}
.ycf{bottom:689.053333pt;}
.y3a{bottom:694.013333pt;}
.yb3{bottom:705.053333pt;}
.ya{bottom:708.253333pt;}
.y4e{bottom:712.733333pt;}
.y5f{bottom:716.093333pt;}
.y7a{bottom:718.973333pt;}
.y21{bottom:719.293333pt;}
.yb2{bottom:723.773333pt;}
.y39{bottom:731.453333pt;}
.yb1{bottom:742.493333pt;}
.y9{bottom:745.693333pt;}
.y38{bottom:750.173333pt;}
.y79{bottom:756.413333pt;}
.y20{bottom:756.893333pt;}
.yb0{bottom:761.213333pt;}
.y37{bottom:769.053333pt;}
.yce{bottom:777.253333pt;}
.y8{bottom:783.333333pt;}
.y36{bottom:787.813333pt;}
.y6d{bottom:791.173333pt;}
.y78{bottom:794.053333pt;}
.y1f{bottom:794.373333pt;}
.yaf{bottom:795.973333pt;}
.y90{bottom:806.533333pt;}
.yae{bottom:814.853333pt;}
.y7{bottom:820.773333pt;}
.y35{bottom:825.253333pt;}
.y77{bottom:831.493333pt;}
.y1e{bottom:831.973333pt;}
.yad{bottom:833.573333pt;}
.y8f{bottom:843.973333pt;}
.ycd{bottom:849.573333pt;}
.y6{bottom:851.653333pt;}
.y34{bottom:862.853333pt;}
.yac{bottom:868.293333pt;}
.y76{bottom:869.093333pt;}
.y1d{bottom:869.413333pt;}
.y8e{bottom:881.573333pt;}
.y5{bottom:882.693333pt;}
.yab{bottom:887.013333pt;}
.y33{bottom:900.293333pt;}
.yaa{bottom:905.893333pt;}
.y75{bottom:906.533333pt;}
.y1c{bottom:906.853333pt;}
.y4{bottom:913.573333pt;}
.y8d{bottom:919.013333pt;}
.ycc{bottom:921.893333pt;}
.ya9{bottom:924.613333pt;}
.y32{bottom:937.893333pt;}
.ycb{bottom:940.613333pt;}
.y69{bottom:941.253333pt;}
.y74{bottom:944.133333pt;}
.y3{bottom:944.453333pt;}
.ya8{bottom:959.333333pt;}
.y2{bottom:975.333333pt;}
.y73{bottom:981.573333pt;}
.y1b{bottom:981.893333pt;}
.ya7{bottom:994.053333pt;}
.y1{bottom:1012.960000pt;}
.y72{bottom:1015.520000pt;}
.h6{height:25.261875pt;}
.h4{height:32.298750pt;}
.ha{height:37.310625pt;}
.h7{height:38.828437pt;}
.h5{height:43.038750pt;}
.h9{height:46.220625pt;}
.h3{height:54.187500pt;}
.h2{height:55.687500pt;}
.h8{height:56.187500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x6{left:99.231988pt;}
.x7{left:129.951976pt;}
.x12{left:133.151976pt;}
.x8{left:135.066655pt;}
.x13{left:138.266655pt;}
.x2{left:142.426655pt;}
.xf{left:188.826655pt;}
.x10{left:234.106643pt;}
.x11{left:240.026655pt;}
.xb{left:261.026643pt;}
.xc{left:266.146655pt;}
.x5{left:286.466655pt;}
.xd{left:422.173310pt;}
.xe{left:427.293322pt;}
.x9{left:519.453310pt;}
.xa{left:524.573322pt;}
.x3{left:551.613310pt;}
.x4{left:556.733322pt;}
}




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