
    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_397a401e10c629628d9cdde6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_0b32e1030ab930ed8e6813e8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fc7ea147d5fb46f287504b5b.woff2')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_f2bd510c696d7c5d5e900386.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c483da0d8347a5b3d0d761a5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a480403690f4eb1c33a02f58.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_ed4067a1e16490da0e5b7b3d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_41cc2c819a99e71bd7e163db.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.480000px;}
.ls5{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.138000px;}
.ls9{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.384000px;}
.ls4{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.684000px;}
.lse{letter-spacing:15.720000px;}
.lsd{letter-spacing:45.720000px;}
.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:-18.384000px;}
.ws7{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.054000px;}
.ws2{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.100000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.900000px;}
.ws3{word-spacing:0.000000px;}
._16{margin-left:-6.318000px;}
._5{margin-left:-4.098000px;}
._4{margin-left:-2.460000px;}
._1{margin-left:-1.302000px;}
._0{width:1.134000px;}
._9{width:2.316000px;}
._8{width:3.360000px;}
._b{width:4.680000px;}
._7{width:6.006000px;}
._6{width:7.020000px;}
._10{width:8.220000px;}
._f{width:9.300000px;}
._12{width:10.350000px;}
._11{width:11.448000px;}
._c{width:12.756000px;}
._a{width:13.968000px;}
._15{width:16.260000px;}
._17{width:17.472000px;}
._14{width:18.690000px;}
._13{width:19.980000px;}
._d{width:21.780000px;}
._e{width:22.962000px;}
._2{width:336.180000px;}
._3{width:1188.480000px;}
.fc5{color:transparent;}
.fc6{color:rgb(127,127,127);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(162,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs9{font-size:6.000000px;}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs7{font-size:69.600000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y5{bottom:12.337500px;}
.y41{bottom:13.200000px;}
.y40{bottom:32.685000px;}
.y4{bottom:46.800000px;}
.y3f{bottom:47.385000px;}
.y1{bottom:57.037500px;}
.y3e{bottom:64.500000px;}
.y43{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y3d{bottom:81.885000px;}
.y3c{bottom:99.000000px;}
.y38{bottom:113.437500px;}
.y9c{bottom:116.137500px;}
.y3b{bottom:116.385000px;}
.y87{bottom:116.437500px;}
.y9b{bottom:129.937500px;}
.y37{bottom:130.537500px;}
.y86{bottom:133.837500px;}
.y3a{bottom:134.130000px;}
.y7a{bottom:136.237500px;}
.yc1{bottom:137.737500px;}
.y36{bottom:147.937500px;}
.y85{bottom:150.345000px;}
.y79{bottom:153.630000px;}
.yc0{bottom:155.430000px;}
.y35{bottom:164.430000px;}
.y84{bottom:164.745000px;}
.y78{bottom:170.745000px;}
.ybf{bottom:172.530000px;}
.y34{bottom:178.875000px;}
.y83{bottom:182.175000px;}
.y77{bottom:188.175000px;}
.y33{bottom:196.275000px;}
.y82{bottom:199.275000px;}
.ybe{bottom:201.675000px;}
.y76{bottom:205.875000px;}
.y32{bottom:213.375000px;}
.y81{bottom:216.675000px;}
.ybd{bottom:219.075000px;}
.y31{bottom:230.775000px;}
.y80{bottom:234.375000px;}
.ybc{bottom:236.475000px;}
.y75{bottom:240.675000px;}
.y30{bottom:247.875000px;}
.y7f{bottom:253.875000px;}
.ybb{bottom:254.175000px;}
.y74{bottom:258.375000px;}
.y2f{bottom:268.275000px;}
.yba{bottom:274.275000px;}
.y73{bottom:282.675000px;}
.y2e{bottom:285.675000px;}
.yb9{bottom:291.675000px;}
.y72{bottom:300.375000px;}
.y2d{bottom:302.775000px;}
.yb8{bottom:308.775000px;}
.y71{bottom:317.475000px;}
.y2c{bottom:320.175000px;}
.yb7{bottom:326.175000px;}
.yeb{bottom:327.675000px;}
.y70{bottom:334.875000px;}
.y2b{bottom:337.275000px;}
.yb6{bottom:343.275000px;}
.yea{bottom:344.775000px;}
.y6f{bottom:352.020000px;}
.y2a{bottom:354.705000px;}
.yb5{bottom:360.705000px;}
.ye9{bottom:362.220000px;}
.y29{bottom:371.820000px;}
.y6e{bottom:376.620000px;}
.yb4{bottom:377.820000px;}
.ye8{bottom:379.320000px;}
.y28{bottom:389.220000px;}
.y6d{bottom:394.005000px;}
.yb3{bottom:395.205000px;}
.ye7{bottom:396.720000px;}
.y27{bottom:406.320000px;}
.y6c{bottom:411.420000px;}
.yb2{bottom:412.320000px;}
.ye6{bottom:413.820000px;}
.y26{bottom:423.705000px;}
.y6b{bottom:428.505000px;}
.yb1{bottom:429.720000px;}
.ye5{bottom:431.220000px;}
.y25{bottom:440.820000px;}
.yb0{bottom:446.820000px;}
.ye4{bottom:448.320000px;}
.y6a{bottom:453.120000px;}
.y24{bottom:458.220000px;}
.yaf{bottom:464.205000px;}
.ye3{bottom:465.705000px;}
.y69{bottom:470.505000px;}
.y23{bottom:475.320000px;}
.yae{bottom:481.320000px;}
.ye2{bottom:482.820000px;}
.y68{bottom:487.920000px;}
.y22{bottom:492.705000px;}
.y9a{bottom:495.120000px;}
.yad{bottom:498.720000px;}
.ye1{bottom:500.220000px;}
.y99{bottom:501.420000px;}
.y67{bottom:505.020000px;}
.y21{bottom:509.820000px;}
.yac{bottom:515.850000px;}
.ye0{bottom:517.350000px;}
.y98{bottom:518.550000px;}
.y66{bottom:522.450000px;}
.y20{bottom:527.250000px;}
.yab{bottom:533.250000px;}
.ydf{bottom:534.750000px;}
.y97{bottom:535.950000px;}
.y65{bottom:540.150000px;}
.y1f{bottom:544.350000px;}
.yaa{bottom:550.350000px;}
.yde{bottom:551.850000px;}
.y96{bottom:553.050000px;}
.y64{bottom:559.650000px;}
.y1e{bottom:561.750000px;}
.ya9{bottom:567.750000px;}
.ydd{bottom:569.250000px;}
.y95{bottom:570.450000px;}
.y63{bottom:574.050000px;}
.y1d{bottom:578.850000px;}
.ya8{bottom:584.850000px;}
.ydc{bottom:586.350000px;}
.y94{bottom:586.950000px;}
.y62{bottom:591.450000px;}
.y1c{bottom:596.250000px;}
.y93{bottom:601.350000px;}
.ya7{bottom:602.250000px;}
.ydb{bottom:603.750000px;}
.y61{bottom:608.550000px;}
.y1b{bottom:613.350000px;}
.y92{bottom:618.750000px;}
.ya6{bottom:619.350000px;}
.yda{bottom:620.850000px;}
.y60{bottom:625.950000px;}
.y1a{bottom:630.750000px;}
.y91{bottom:635.850000px;}
.ya5{bottom:636.750000px;}
.yd9{bottom:638.250000px;}
.y5f{bottom:643.050000px;}
.y7e{bottom:645.150000px;}
.y7d{bottom:647.850000px;}
.y19{bottom:648.450000px;}
.y90{bottom:653.250000px;}
.ya4{bottom:653.850000px;}
.yd8{bottom:655.350000px;}
.y5e{bottom:660.450000px;}
.y18{bottom:668.550000px;}
.y8f{bottom:670.350000px;}
.ya3{bottom:671.250000px;}
.yd7{bottom:672.750000px;}
.y5d{bottom:677.550000px;}
.y8e{bottom:688.080000px;}
.ya2{bottom:688.380000px;}
.yd6{bottom:689.880000px;}
.y5c{bottom:694.980000px;}
.ya1{bottom:705.780000px;}
.yd5{bottom:707.295000px;}
.y8d{bottom:707.595000px;}
.y5b{bottom:712.080000px;}
.y8c{bottom:722.295000px;}
.ya0{bottom:722.880000px;}
.yd4{bottom:724.395000px;}
.y39{bottom:724.695000px;}
.y5a{bottom:729.495000px;}
.y8b{bottom:739.395000px;}
.y9f{bottom:740.280000px;}
.yd3{bottom:741.780000px;}
.y59{bottom:746.595000px;}
.y8a{bottom:756.780000px;}
.y9e{bottom:757.380000px;}
.yd2{bottom:758.880000px;}
.y58{bottom:763.980000px;}
.y89{bottom:773.880000px;}
.yd1{bottom:776.295000px;}
.y57{bottom:781.080000px;}
.yd0{bottom:793.395000px;}
.y56{bottom:798.495000px;}
.ycf{bottom:810.795000px;}
.y55{bottom:815.580000px;}
.yce{bottom:827.880000px;}
.y54{bottom:832.995000px;}
.ycd{bottom:845.295000px;}
.y53{bottom:850.125000px;}
.ycc{bottom:862.425000px;}
.y52{bottom:867.825000px;}
.ycb{bottom:879.825000px;}
.y51{bottom:887.325000px;}
.yca{bottom:897.525000px;}
.y50{bottom:902.025000px;}
.y17{bottom:916.125000px;}
.y4f{bottom:919.125000px;}
.yc9{bottom:932.325000px;}
.y16{bottom:933.525000px;}
.y4e{bottom:936.525000px;}
.yc8{bottom:950.025000px;}
.y15{bottom:950.325000px;}
.y4d{bottom:953.625000px;}
.yc7{bottom:967.125000px;}
.y14{bottom:968.925000px;}
.y4c{bottom:971.025000px;}
.y13{bottom:986.625000px;}
.y4b{bottom:988.125000px;}
.yc6{bottom:996.225000px;}
.y12{bottom:1003.725000px;}
.y4a{bottom:1005.525000px;}
.yc5{bottom:1013.625000px;}
.y11{bottom:1021.170000px;}
.y49{bottom:1022.670000px;}
.yc4{bottom:1031.070000px;}
.y10{bottom:1038.255000px;}
.y48{bottom:1040.070000px;}
.yd{bottom:1040.955000px;}
.y47{bottom:1057.170000px;}
.yc3{bottom:1059.870000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y46{bottom:1074.570000px;}
.yc2{bottom:1077.570000px;}
.ya{bottom:1083.570000px;}
.y9d{bottom:1089.570000px;}
.y7c{bottom:1096.170000px;}
.y9{bottom:1097.955000px;}
.y45{bottom:1106.370000px;}
.y7b{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y44{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y6{bottom:1141.170000px;}
.y88{bottom:1153.455000px;}
.y42{bottom:1196.400000px;}
.h16{height:4.189453px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h15{height:20.947266px;}
.ha{height:21.000000px;}
.he{height:33.515625px;}
.h7{height:33.867188px;}
.h12{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hd{height:38.100586px;}
.hc{height:41.894531px;}
.h4{height:42.333984px;}
.h17{height:43.681641px;}
.h13{height:44.507812px;}
.hb{height:49.107422px;}
.h11{height:49.453125px;}
.h14{height:50.273438px;}
.h6{height:50.800781px;}
.h10{height:51.996094px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.hf{height:150.930000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:252.975000px;}
.w5{width:483.450000px;}
.w7{width:731.025000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.x14{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.xc{left:78.337500px;}
.x1{left:81.037487px;}
.x10{left:87.337487px;}
.x1d{left:108.037487px;}
.xf{left:116.445000px;}
.xa{left:153.629987px;}
.x1c{left:186.674987px;}
.x18{left:204.074987px;}
.x17{left:235.574987px;}
.xd{left:241.567500px;}
.x1a{left:257.774987px;}
.x13{left:313.019987px;}
.x7{left:363.419987px;}
.x11{left:385.904987px;}
.x5{left:388.619987px;}
.x12{left:446.549987px;}
.x15{left:555.194987px;}
.xe{left:561.780000px;}
.x9{left:614.879987px;}
.x8{left:648.194987px;}
.x6{left:696.524987px;}
.x19{left:712.724987px;}
.x16{left:755.924987px;}
.x1b{left:773.024987px;}
.xb{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.122667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.341333pt;}
.ls4{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.608000pt;}
.lse{letter-spacing:13.973333pt;}
.lsd{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws7{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.381333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.533333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.466667pt;}
.ws3{word-spacing:0.000000pt;}
._16{margin-left:-5.616000pt;}
._5{margin-left:-3.642667pt;}
._4{margin-left:-2.186667pt;}
._1{margin-left:-1.157333pt;}
._0{width:1.008000pt;}
._9{width:2.058667pt;}
._8{width:2.986667pt;}
._b{width:4.160000pt;}
._7{width:5.338667pt;}
._6{width:6.240000pt;}
._10{width:7.306667pt;}
._f{width:8.266667pt;}
._12{width:9.200000pt;}
._11{width:10.176000pt;}
._c{width:11.338667pt;}
._a{width:12.416000pt;}
._15{width:14.453333pt;}
._17{width:15.530667pt;}
._14{width:16.613333pt;}
._13{width:17.760000pt;}
._d{width:19.360000pt;}
._e{width:20.410667pt;}
._2{width:298.826667pt;}
._3{width:1056.426667pt;}
.fs9{font-size:5.333333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs7{font-size:61.866667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y5{bottom:10.966667pt;}
.y41{bottom:11.733333pt;}
.y40{bottom:29.053333pt;}
.y4{bottom:41.600000pt;}
.y3f{bottom:42.120000pt;}
.y1{bottom:50.700000pt;}
.y3e{bottom:57.333333pt;}
.y43{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y3d{bottom:72.786667pt;}
.y3c{bottom:88.000000pt;}
.y38{bottom:100.833333pt;}
.y9c{bottom:103.233333pt;}
.y3b{bottom:103.453333pt;}
.y87{bottom:103.500000pt;}
.y9b{bottom:115.500000pt;}
.y37{bottom:116.033333pt;}
.y86{bottom:118.966667pt;}
.y3a{bottom:119.226667pt;}
.y7a{bottom:121.100000pt;}
.yc1{bottom:122.433333pt;}
.y36{bottom:131.500000pt;}
.y85{bottom:133.640000pt;}
.y79{bottom:136.560000pt;}
.yc0{bottom:138.160000pt;}
.y35{bottom:146.160000pt;}
.y84{bottom:146.440000pt;}
.y78{bottom:151.773333pt;}
.ybf{bottom:153.360000pt;}
.y34{bottom:159.000000pt;}
.y83{bottom:161.933333pt;}
.y77{bottom:167.266667pt;}
.y33{bottom:174.466667pt;}
.y82{bottom:177.133333pt;}
.ybe{bottom:179.266667pt;}
.y76{bottom:183.000000pt;}
.y32{bottom:189.666667pt;}
.y81{bottom:192.600000pt;}
.ybd{bottom:194.733333pt;}
.y31{bottom:205.133333pt;}
.y80{bottom:208.333333pt;}
.ybc{bottom:210.200000pt;}
.y75{bottom:213.933333pt;}
.y30{bottom:220.333333pt;}
.y7f{bottom:225.666667pt;}
.ybb{bottom:225.933333pt;}
.y74{bottom:229.666667pt;}
.y2f{bottom:238.466667pt;}
.yba{bottom:243.800000pt;}
.y73{bottom:251.266667pt;}
.y2e{bottom:253.933333pt;}
.yb9{bottom:259.266667pt;}
.y72{bottom:267.000000pt;}
.y2d{bottom:269.133333pt;}
.yb8{bottom:274.466667pt;}
.y71{bottom:282.200000pt;}
.y2c{bottom:284.600000pt;}
.yb7{bottom:289.933333pt;}
.yeb{bottom:291.266667pt;}
.y70{bottom:297.666667pt;}
.y2b{bottom:299.800000pt;}
.yb6{bottom:305.133333pt;}
.yea{bottom:306.466667pt;}
.y6f{bottom:312.906667pt;}
.y2a{bottom:315.293333pt;}
.yb5{bottom:320.626667pt;}
.ye9{bottom:321.973333pt;}
.y29{bottom:330.506667pt;}
.y6e{bottom:334.773333pt;}
.yb4{bottom:335.840000pt;}
.ye8{bottom:337.173333pt;}
.y28{bottom:345.973333pt;}
.y6d{bottom:350.226667pt;}
.yb3{bottom:351.293333pt;}
.ye7{bottom:352.640000pt;}
.y27{bottom:361.173333pt;}
.y6c{bottom:365.706667pt;}
.yb2{bottom:366.506667pt;}
.ye6{bottom:367.840000pt;}
.y26{bottom:376.626667pt;}
.y6b{bottom:380.893333pt;}
.yb1{bottom:381.973333pt;}
.ye5{bottom:383.306667pt;}
.y25{bottom:391.840000pt;}
.yb0{bottom:397.173333pt;}
.ye4{bottom:398.506667pt;}
.y6a{bottom:402.773333pt;}
.y24{bottom:407.306667pt;}
.yaf{bottom:412.626667pt;}
.ye3{bottom:413.960000pt;}
.y69{bottom:418.226667pt;}
.y23{bottom:422.506667pt;}
.yae{bottom:427.840000pt;}
.ye2{bottom:429.173333pt;}
.y68{bottom:433.706667pt;}
.y22{bottom:437.960000pt;}
.y9a{bottom:440.106667pt;}
.yad{bottom:443.306667pt;}
.ye1{bottom:444.640000pt;}
.y99{bottom:445.706667pt;}
.y67{bottom:448.906667pt;}
.y21{bottom:453.173333pt;}
.yac{bottom:458.533333pt;}
.ye0{bottom:459.866667pt;}
.y98{bottom:460.933333pt;}
.y66{bottom:464.400000pt;}
.y20{bottom:468.666667pt;}
.yab{bottom:474.000000pt;}
.ydf{bottom:475.333333pt;}
.y97{bottom:476.400000pt;}
.y65{bottom:480.133333pt;}
.y1f{bottom:483.866667pt;}
.yaa{bottom:489.200000pt;}
.yde{bottom:490.533333pt;}
.y96{bottom:491.600000pt;}
.y64{bottom:497.466667pt;}
.y1e{bottom:499.333333pt;}
.ya9{bottom:504.666667pt;}
.ydd{bottom:506.000000pt;}
.y95{bottom:507.066667pt;}
.y63{bottom:510.266667pt;}
.y1d{bottom:514.533333pt;}
.ya8{bottom:519.866667pt;}
.ydc{bottom:521.200000pt;}
.y94{bottom:521.733333pt;}
.y62{bottom:525.733333pt;}
.y1c{bottom:530.000000pt;}
.y93{bottom:534.533333pt;}
.ya7{bottom:535.333333pt;}
.ydb{bottom:536.666667pt;}
.y61{bottom:540.933333pt;}
.y1b{bottom:545.200000pt;}
.y92{bottom:550.000000pt;}
.ya6{bottom:550.533333pt;}
.yda{bottom:551.866667pt;}
.y60{bottom:556.400000pt;}
.y1a{bottom:560.666667pt;}
.y91{bottom:565.200000pt;}
.ya5{bottom:566.000000pt;}
.yd9{bottom:567.333333pt;}
.y5f{bottom:571.600000pt;}
.y7e{bottom:573.466667pt;}
.y7d{bottom:575.866667pt;}
.y19{bottom:576.400000pt;}
.y90{bottom:580.666667pt;}
.ya4{bottom:581.200000pt;}
.yd8{bottom:582.533333pt;}
.y5e{bottom:587.066667pt;}
.y18{bottom:594.266667pt;}
.y8f{bottom:595.866667pt;}
.ya3{bottom:596.666667pt;}
.yd7{bottom:598.000000pt;}
.y5d{bottom:602.266667pt;}
.y8e{bottom:611.626667pt;}
.ya2{bottom:611.893333pt;}
.yd6{bottom:613.226667pt;}
.y5c{bottom:617.760000pt;}
.ya1{bottom:627.360000pt;}
.yd5{bottom:628.706667pt;}
.y8d{bottom:628.973333pt;}
.y5b{bottom:632.960000pt;}
.y8c{bottom:642.040000pt;}
.ya0{bottom:642.560000pt;}
.yd4{bottom:643.906667pt;}
.y39{bottom:644.173333pt;}
.y5a{bottom:648.440000pt;}
.y8b{bottom:657.240000pt;}
.y9f{bottom:658.026667pt;}
.yd3{bottom:659.360000pt;}
.y59{bottom:663.640000pt;}
.y8a{bottom:672.693333pt;}
.y9e{bottom:673.226667pt;}
.yd2{bottom:674.560000pt;}
.y58{bottom:679.093333pt;}
.y89{bottom:687.893333pt;}
.yd1{bottom:690.040000pt;}
.y57{bottom:694.293333pt;}
.yd0{bottom:705.240000pt;}
.y56{bottom:709.773333pt;}
.ycf{bottom:720.706667pt;}
.y55{bottom:724.960000pt;}
.yce{bottom:735.893333pt;}
.y54{bottom:740.440000pt;}
.ycd{bottom:751.373333pt;}
.y53{bottom:755.666667pt;}
.ycc{bottom:766.600000pt;}
.y52{bottom:771.400000pt;}
.ycb{bottom:782.066667pt;}
.y51{bottom:788.733333pt;}
.yca{bottom:797.800000pt;}
.y50{bottom:801.800000pt;}
.y17{bottom:814.333333pt;}
.y4f{bottom:817.000000pt;}
.yc9{bottom:828.733333pt;}
.y16{bottom:829.800000pt;}
.y4e{bottom:832.466667pt;}
.yc8{bottom:844.466667pt;}
.y15{bottom:844.733333pt;}
.y4d{bottom:847.666667pt;}
.yc7{bottom:859.666667pt;}
.y14{bottom:861.266667pt;}
.y4c{bottom:863.133333pt;}
.y13{bottom:877.000000pt;}
.y4b{bottom:878.333333pt;}
.yc6{bottom:885.533333pt;}
.y12{bottom:892.200000pt;}
.y4a{bottom:893.800000pt;}
.yc5{bottom:901.000000pt;}
.y11{bottom:907.706667pt;}
.y49{bottom:909.040000pt;}
.yc4{bottom:916.506667pt;}
.y10{bottom:922.893333pt;}
.y48{bottom:924.506667pt;}
.yd{bottom:925.293333pt;}
.y47{bottom:939.706667pt;}
.yc3{bottom:942.106667pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y46{bottom:955.173333pt;}
.yc2{bottom:957.840000pt;}
.ya{bottom:963.173333pt;}
.y9d{bottom:968.506667pt;}
.y7c{bottom:974.373333pt;}
.y9{bottom:975.960000pt;}
.y45{bottom:983.440000pt;}
.y7b{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y44{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y6{bottom:1014.373333pt;}
.y88{bottom:1025.293333pt;}
.y42{bottom:1063.466667pt;}
.h16{height:3.723958pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h15{height:18.619792pt;}
.ha{height:18.666667pt;}
.he{height:29.791667pt;}
.h7{height:30.104167pt;}
.h12{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hd{height:33.867188pt;}
.hc{height:37.239583pt;}
.h4{height:37.630208pt;}
.h17{height:38.828125pt;}
.h13{height:39.562500pt;}
.hb{height:43.651042pt;}
.h11{height:43.958333pt;}
.h14{height:44.687500pt;}
.h6{height:45.156250pt;}
.h10{height:46.218750pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.hf{height:134.160000pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:224.866667pt;}
.w5{width:429.733333pt;}
.w7{width:649.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.x14{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.xc{left:69.633333pt;}
.x1{left:72.033322pt;}
.x10{left:77.633322pt;}
.x1d{left:96.033322pt;}
.xf{left:103.506667pt;}
.xa{left:136.559988pt;}
.x1c{left:165.933322pt;}
.x18{left:181.399988pt;}
.x17{left:209.399988pt;}
.xd{left:214.726667pt;}
.x1a{left:229.133322pt;}
.x13{left:278.239988pt;}
.x7{left:323.039988pt;}
.x11{left:343.026655pt;}
.x5{left:345.439988pt;}
.x12{left:396.933322pt;}
.x15{left:493.506655pt;}
.xe{left:499.360000pt;}
.x9{left:546.559988pt;}
.x8{left:576.173322pt;}
.x6{left:619.133322pt;}
.x19{left:633.533322pt;}
.x16{left:671.933322pt;}
.x1b{left:687.133322pt;}
.xb{left:722.106655pt;}
}




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