
    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_4c32aaff9ad4c61ef46d340d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7a49a3237b1a9ede0b7592ea.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_3b39d7a3b16dbb51cbf7b7dc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_3024c44bc85b94679a362c70.woff')format("woff");}.ff5{font-family:ff5;line-height:0.987305;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_bc3d6bee70909a9fe04e652e.woff')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_47803c389192e612725c7b63.woff')format("woff");}.ff7{font-family:ff7;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v2{vertical-align:-9.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.000000px;}
.ls7{letter-spacing:-1.344000px;}
.ls9{letter-spacing:-1.032000px;}
.lse{letter-spacing:-0.984000px;}
.ls8{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.024000px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.312000px;}
.lsd{letter-spacing:0.636000px;}
.lsc{letter-spacing:0.696000px;}
.ls12{letter-spacing:0.756000px;}
.ls17{letter-spacing:0.846000px;}
.ls4{letter-spacing:0.984000px;}
.ls10{letter-spacing:1.008000px;}
.ls11{letter-spacing:1.032000px;}
.ls18{letter-spacing:1.200000px;}
.lsf{letter-spacing:1.296000px;}
.ls2{letter-spacing:1.320000px;}
.ls14{letter-spacing:1.968000px;}
.ls19{letter-spacing:3.000000px;}
.ls13{letter-spacing:3.984000px;}
.ls15{letter-spacing:6.984000px;}
.ls16{letter-spacing:7.104000px;}
.ls1a{letter-spacing:27.984000px;}
.ls0{letter-spacing:166.806000px;}
.ls3{letter-spacing:488.016000px;}
.ls5{letter-spacing:841.584000px;}
.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;}
}
.ws3{word-spacing:-29.988000px;}
.ws9{word-spacing:-24.648000px;}
.wsd{word-spacing:-21.216000px;}
.wsb{word-spacing:-21.048000px;}
.wsa{word-spacing:-21.024000px;}
.wse{word-spacing:-21.000000px;}
.wsc{word-spacing:-20.040000px;}
.ws5{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.992000px;}
.ws8{word-spacing:-19.032000px;}
.ws4{word-spacing:-18.984000px;}
.ws2{word-spacing:-14.328000px;}
.ws1{word-spacing:-13.656000px;}
.ws0{word-spacing:-13.344000px;}
.ws7{word-spacing:0.000000px;}
._25{margin-left:-10.434000px;}
._f{margin-left:-5.262000px;}
._12{margin-left:-4.218000px;}
._5{margin-left:-2.586000px;}
._1{margin-left:-1.362000px;}
._0{width:1.584000px;}
._4{width:3.078000px;}
._7{width:4.602000px;}
._c{width:5.796000px;}
._b{width:7.674000px;}
._1a{width:9.150000px;}
._15{width:10.194000px;}
._16{width:11.256000px;}
._11{width:12.594000px;}
._10{width:13.680000px;}
._8{width:15.756000px;}
._19{width:16.758000px;}
._1b{width:17.988000px;}
._d{width:19.008000px;}
._14{width:21.522000px;}
._13{width:22.530000px;}
._18{width:24.756000px;}
._1d{width:25.764000px;}
._1e{width:26.988000px;}
._9{width:28.212000px;}
._e{width:30.096000px;}
._a{width:31.188000px;}
._23{width:38.952000px;}
._22{width:40.020000px;}
._24{width:42.156000px;}
._21{width:45.204000px;}
._1f{width:46.650000px;}
._20{width:49.140000px;}
._1c{width:52.194000px;}
._2{width:103.242000px;}
._3{width:656.136000px;}
._6{width:1171.770000px;}
._17{width:1173.126000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs4{font-size:34.059259px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.754693px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:28.413862px;}
.y6{bottom:36.114559px;}
.y3{bottom:45.787500px;}
.y2{bottom:65.287500px;}
.y60{bottom:91.575000px;}
.y99{bottom:95.325000px;}
.yab{bottom:101.325000px;}
.y85{bottom:102.075000px;}
.y2e{bottom:109.575000px;}
.y5f{bottom:112.575000px;}
.y98{bottom:116.325000px;}
.yaa{bottom:121.575000px;}
.y84{bottom:122.325000px;}
.y2d{bottom:130.575000px;}
.y5e{bottom:133.575000px;}
.y97{bottom:136.575000px;}
.yd7{bottom:138.825000px;}
.ya9{bottom:142.612500px;}
.y83{bottom:143.362500px;}
.y2c{bottom:147.862500px;}
.y5d{bottom:153.870000px;}
.y96{bottom:157.620000px;}
.yd6{bottom:159.870000px;}
.ya8{bottom:162.855000px;}
.y82{bottom:163.620000px;}
.y5c{bottom:174.870000px;}
.y95{bottom:178.620000px;}
.ya7{bottom:183.870000px;}
.y81{bottom:184.620000px;}
.y5b{bottom:195.120000px;}
.yd5{bottom:198.120000px;}
.y94{bottom:199.605000px;}
.ya6{bottom:204.900000px;}
.y80{bottom:205.650000px;}
.y5a{bottom:216.150000px;}
.yd4{bottom:219.150000px;}
.y93{bottom:219.900000px;}
.ya5{bottom:225.150000px;}
.y7f{bottom:225.900000px;}
.y59{bottom:237.900000px;}
.y92{bottom:240.900000px;}
.ya4{bottom:246.150000px;}
.y7e{bottom:246.900000px;}
.yd3{bottom:260.400000px;}
.y58{bottom:261.150000px;}
.ya3{bottom:266.400000px;}
.y7d{bottom:267.150000px;}
.yd2{bottom:280.695000px;}
.y57{bottom:281.445000px;}
.y91{bottom:282.195000px;}
.ya2{bottom:287.445000px;}
.y7c{bottom:288.195000px;}
.yd1{bottom:301.695000px;}
.y56{bottom:302.445000px;}
.y90{bottom:303.945000px;}
.ya1{bottom:308.445000px;}
.y7b{bottom:309.195000px;}
.yd0{bottom:321.945000px;}
.y55{bottom:323.445000px;}
.y8f{bottom:327.195000px;}
.ya0{bottom:328.695000px;}
.y7a{bottom:329.445000px;}
.ycf{bottom:342.975000px;}
.y54{bottom:343.725000px;}
.y8e{bottom:347.475000px;}
.y9f{bottom:349.725000px;}
.y79{bottom:350.475000px;}
.yce{bottom:363.225000px;}
.y53{bottom:364.725000px;}
.y8d{bottom:368.475000px;}
.y9e{bottom:369.975000px;}
.y2b{bottom:370.725000px;}
.y78{bottom:371.475000px;}
.ycd{bottom:384.225000px;}
.y52{bottom:384.975000px;}
.y8c{bottom:389.475000px;}
.y2a{bottom:390.975000px;}
.y77{bottom:391.725000px;}
.ycc{bottom:405.255000px;}
.y51{bottom:406.005000px;}
.y8b{bottom:409.755000px;}
.y29{bottom:412.005000px;}
.y76{bottom:412.755000px;}
.ycb{bottom:425.505000px;}
.y50{bottom:427.005000px;}
.y28{bottom:432.255000px;}
.y75{bottom:433.755000px;}
.yca{bottom:446.505000px;}
.y4f{bottom:447.255000px;}
.y27{bottom:453.255000px;}
.y74{bottom:454.005000px;}
.yc9{bottom:466.800000px;}
.y4e{bottom:468.300000px;}
.y9d{bottom:473.550000px;}
.y26{bottom:474.300000px;}
.y73{bottom:475.050000px;}
.yc8{bottom:487.800000px;}
.y4d{bottom:489.300000px;}
.y25{bottom:494.550000px;}
.y72{bottom:495.300000px;}
.yc7{bottom:508.800000px;}
.y4c{bottom:510.300000px;}
.y71{bottom:512.550000px;}
.y24{bottom:515.550000px;}
.yc6{bottom:529.095000px;}
.y4b{bottom:531.330000px;}
.y23{bottom:535.845000px;}
.y9c{bottom:539.580000px;}
.yc5{bottom:550.080000px;}
.y4a{bottom:551.580000px;}
.y22{bottom:556.830000px;}
.y9b{bottom:560.595000px;}
.yc4{bottom:570.330000px;}
.y49{bottom:572.595000px;}
.y21{bottom:577.845000px;}
.y9a{bottom:580.845000px;}
.yc3{bottom:591.375000px;}
.y48{bottom:593.625000px;}
.y20{bottom:598.125000px;}
.yc2{bottom:612.375000px;}
.y47{bottom:614.625000px;}
.y1f{bottom:619.125000px;}
.yc1{bottom:632.625000px;}
.y46{bottom:635.625000px;}
.y1e{bottom:639.375000px;}
.yc0{bottom:653.625000px;}
.y45{bottom:656.670000px;}
.y1d{bottom:660.405000px;}
.ybf{bottom:673.905000px;}
.y44{bottom:677.655000px;}
.y1c{bottom:681.405000px;}
.ybe{bottom:694.905000px;}
.y43{bottom:697.905000px;}
.y1b{bottom:701.655000px;}
.ybd{bottom:715.905000px;}
.y42{bottom:718.950000px;}
.y1a{bottom:722.700000px;}
.y8a{bottom:725.700000px;}
.ybc{bottom:736.200000px;}
.y41{bottom:739.200000px;}
.y19{bottom:742.950000px;}
.y89{bottom:746.700000px;}
.ybb{bottom:757.200000px;}
.y40{bottom:760.200000px;}
.y18{bottom:763.950000px;}
.y88{bottom:767.700000px;}
.yba{bottom:777.450000px;}
.y3f{bottom:781.950000px;}
.y17{bottom:784.995000px;}
.y87{bottom:787.995000px;}
.yb9{bottom:798.495000px;}
.y16{bottom:805.245000px;}
.y86{bottom:808.995000px;}
.yb8{bottom:819.480000px;}
.y3e{bottom:825.495000px;}
.y15{bottom:826.995000px;}
.y70{bottom:829.245000px;}
.yb7{bottom:839.745000px;}
.y3d{bottom:846.495000px;}
.y14{bottom:850.275000px;}
.yb6{bottom:860.775000px;}
.y3c{bottom:866.775000px;}
.y13{bottom:870.525000px;}
.y6f{bottom:871.275000px;}
.yb5{bottom:881.025000px;}
.y12{bottom:887.775000px;}
.y6e{bottom:891.525000px;}
.yb4{bottom:902.025000px;}
.y11{bottom:905.025000px;}
.y3b{bottom:908.775000px;}
.y6d{bottom:912.570000px;}
.y10{bottom:923.070000px;}
.y3a{bottom:929.070000px;}
.y6c{bottom:932.820000px;}
.yf{bottom:943.320000px;}
.y39{bottom:950.070000px;}
.y6b{bottom:953.820000px;}
.ye{bottom:964.320000px;}
.y38{bottom:971.070000px;}
.y6a{bottom:974.820000px;}
.yd{bottom:984.600000px;}
.yb3{bottom:986.100000px;}
.y37{bottom:992.100000px;}
.y69{bottom:995.100000px;}
.yc{bottom:1005.600000px;}
.yb2{bottom:1009.350000px;}
.y36{bottom:1012.350000px;}
.y68{bottom:1016.100000px;}
.yb{bottom:1028.100000px;}
.yb1{bottom:1029.600000px;}
.y35{bottom:1033.350000px;}
.y67{bottom:1036.350000px;}
.yb0{bottom:1050.630000px;}
.y34{bottom:1053.630000px;}
.y66{bottom:1057.380000px;}
.ya{bottom:1058.880000px;}
.yaf{bottom:1070.880000px;}
.y33{bottom:1074.630000px;}
.y65{bottom:1078.380000px;}
.y9{bottom:1090.380000px;}
.yae{bottom:1091.880000px;}
.y32{bottom:1095.630000px;}
.y64{bottom:1098.630000px;}
.yad{bottom:1112.925000px;}
.y31{bottom:1115.925000px;}
.y63{bottom:1119.675000px;}
.y8{bottom:1121.175000px;}
.yac{bottom:1133.925000px;}
.y30{bottom:1136.925000px;}
.y62{bottom:1139.925000px;}
.y7{bottom:1152.675000px;}
.y2f{bottom:1158.675000px;}
.y61{bottom:1160.925000px;}
.y4{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.h7{height:33.876323px;}
.h2{height:35.085938px;}
.h1{height:41.976562px;}
.hc{height:43.857422px;}
.h4{height:44.070184px;}
.h6{height:44.098032px;}
.h3{height:49.992188px;}
.ha{height:52.628906px;}
.h10{height:53.121094px;}
.he{height:56.085938px;}
.hf{height:60.679688px;}
.hb{height:62.964844px;}
.h5{height:66.396148px;}
.hd{height:73.458984px;}
.h8{height:78.943359px;}
.h9{height:94.447266px;}
.h0{height:1263.000000px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.491283px;}
.x1{left:84.824987px;}
.x5{left:88.574987px;}
.x18{left:97.574987px;}
.xe{left:104.324987px;}
.x13{left:108.074987px;}
.x1c{left:111.824987px;}
.x17{left:115.612487px;}
.x15{left:127.612487px;}
.x11{left:138.862487px;}
.x7{left:140.362487px;}
.xa{left:153.869987px;}
.x1d{left:180.899987px;}
.x9{left:204.899987px;}
.xb{left:226.694987px;}
.xf{left:270.974987px;}
.x6{left:289.724987px;}
.x1a{left:334.019987px;}
.x10{left:347.549987px;}
.x14{left:357.299987px;}
.x8{left:384.299987px;}
.x1b{left:389.594987px;}
.xc{left:403.844987px;}
.x3{left:407.594987px;}
.x19{left:426.344987px;}
.x4{left:446.624987px;}
.x16{left:744.599987px;}
.xd{left:755.099987px;}
.x12{left:807.674987px;}
@media print{
.v2{vertical-align:-8.053333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.666667pt;}
.ls7{letter-spacing:-1.194667pt;}
.ls9{letter-spacing:-0.917333pt;}
.lse{letter-spacing:-0.874667pt;}
.ls8{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.021333pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.277333pt;}
.lsd{letter-spacing:0.565333pt;}
.lsc{letter-spacing:0.618667pt;}
.ls12{letter-spacing:0.672000pt;}
.ls17{letter-spacing:0.752000pt;}
.ls4{letter-spacing:0.874667pt;}
.ls10{letter-spacing:0.896000pt;}
.ls11{letter-spacing:0.917333pt;}
.ls18{letter-spacing:1.066667pt;}
.lsf{letter-spacing:1.152000pt;}
.ls2{letter-spacing:1.173333pt;}
.ls14{letter-spacing:1.749333pt;}
.ls19{letter-spacing:2.666667pt;}
.ls13{letter-spacing:3.541333pt;}
.ls15{letter-spacing:6.208000pt;}
.ls16{letter-spacing:6.314667pt;}
.ls1a{letter-spacing:24.874667pt;}
.ls0{letter-spacing:148.272000pt;}
.ls3{letter-spacing:433.792000pt;}
.ls5{letter-spacing:748.074667pt;}
.ws3{word-spacing:-26.656000pt;}
.ws9{word-spacing:-21.909333pt;}
.wsd{word-spacing:-18.858667pt;}
.wsb{word-spacing:-18.709333pt;}
.wsa{word-spacing:-18.688000pt;}
.wse{word-spacing:-18.666667pt;}
.wsc{word-spacing:-17.813333pt;}
.ws5{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.770667pt;}
.ws8{word-spacing:-16.917333pt;}
.ws4{word-spacing:-16.874667pt;}
.ws2{word-spacing:-12.736000pt;}
.ws1{word-spacing:-12.138667pt;}
.ws0{word-spacing:-11.861333pt;}
.ws7{word-spacing:0.000000pt;}
._25{margin-left:-9.274667pt;}
._f{margin-left:-4.677333pt;}
._12{margin-left:-3.749333pt;}
._5{margin-left:-2.298667pt;}
._1{margin-left:-1.210667pt;}
._0{width:1.408000pt;}
._4{width:2.736000pt;}
._7{width:4.090667pt;}
._c{width:5.152000pt;}
._b{width:6.821333pt;}
._1a{width:8.133333pt;}
._15{width:9.061333pt;}
._16{width:10.005333pt;}
._11{width:11.194667pt;}
._10{width:12.160000pt;}
._8{width:14.005333pt;}
._19{width:14.896000pt;}
._1b{width:15.989333pt;}
._d{width:16.896000pt;}
._14{width:19.130667pt;}
._13{width:20.026667pt;}
._18{width:22.005333pt;}
._1d{width:22.901333pt;}
._1e{width:23.989333pt;}
._9{width:25.077333pt;}
._e{width:26.752000pt;}
._a{width:27.722667pt;}
._23{width:34.624000pt;}
._22{width:35.573333pt;}
._24{width:37.472000pt;}
._21{width:40.181333pt;}
._1f{width:41.466667pt;}
._20{width:43.680000pt;}
._1c{width:46.394667pt;}
._2{width:91.770667pt;}
._3{width:583.232000pt;}
._6{width:1041.573333pt;}
._17{width:1042.778667pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:59.337505pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:25.256766pt;}
.y6{bottom:32.101830pt;}
.y3{bottom:40.700000pt;}
.y2{bottom:58.033333pt;}
.y60{bottom:81.400000pt;}
.y99{bottom:84.733333pt;}
.yab{bottom:90.066667pt;}
.y85{bottom:90.733333pt;}
.y2e{bottom:97.400000pt;}
.y5f{bottom:100.066667pt;}
.y98{bottom:103.400000pt;}
.yaa{bottom:108.066667pt;}
.y84{bottom:108.733333pt;}
.y2d{bottom:116.066667pt;}
.y5e{bottom:118.733333pt;}
.y97{bottom:121.400000pt;}
.yd7{bottom:123.400000pt;}
.ya9{bottom:126.766667pt;}
.y83{bottom:127.433333pt;}
.y2c{bottom:131.433333pt;}
.y5d{bottom:136.773333pt;}
.y96{bottom:140.106667pt;}
.yd6{bottom:142.106667pt;}
.ya8{bottom:144.760000pt;}
.y82{bottom:145.440000pt;}
.y5c{bottom:155.440000pt;}
.y95{bottom:158.773333pt;}
.ya7{bottom:163.440000pt;}
.y81{bottom:164.106667pt;}
.y5b{bottom:173.440000pt;}
.yd5{bottom:176.106667pt;}
.y94{bottom:177.426667pt;}
.ya6{bottom:182.133333pt;}
.y80{bottom:182.800000pt;}
.y5a{bottom:192.133333pt;}
.yd4{bottom:194.800000pt;}
.y93{bottom:195.466667pt;}
.ya5{bottom:200.133333pt;}
.y7f{bottom:200.800000pt;}
.y59{bottom:211.466667pt;}
.y92{bottom:214.133333pt;}
.ya4{bottom:218.800000pt;}
.y7e{bottom:219.466667pt;}
.yd3{bottom:231.466667pt;}
.y58{bottom:232.133333pt;}
.ya3{bottom:236.800000pt;}
.y7d{bottom:237.466667pt;}
.yd2{bottom:249.506667pt;}
.y57{bottom:250.173333pt;}
.y91{bottom:250.840000pt;}
.ya2{bottom:255.506667pt;}
.y7c{bottom:256.173333pt;}
.yd1{bottom:268.173333pt;}
.y56{bottom:268.840000pt;}
.y90{bottom:270.173333pt;}
.ya1{bottom:274.173333pt;}
.y7b{bottom:274.840000pt;}
.yd0{bottom:286.173333pt;}
.y55{bottom:287.506667pt;}
.y8f{bottom:290.840000pt;}
.ya0{bottom:292.173333pt;}
.y7a{bottom:292.840000pt;}
.ycf{bottom:304.866667pt;}
.y54{bottom:305.533333pt;}
.y8e{bottom:308.866667pt;}
.y9f{bottom:310.866667pt;}
.y79{bottom:311.533333pt;}
.yce{bottom:322.866667pt;}
.y53{bottom:324.200000pt;}
.y8d{bottom:327.533333pt;}
.y9e{bottom:328.866667pt;}
.y2b{bottom:329.533333pt;}
.y78{bottom:330.200000pt;}
.ycd{bottom:341.533333pt;}
.y52{bottom:342.200000pt;}
.y8c{bottom:346.200000pt;}
.y2a{bottom:347.533333pt;}
.y77{bottom:348.200000pt;}
.ycc{bottom:360.226667pt;}
.y51{bottom:360.893333pt;}
.y8b{bottom:364.226667pt;}
.y29{bottom:366.226667pt;}
.y76{bottom:366.893333pt;}
.ycb{bottom:378.226667pt;}
.y50{bottom:379.560000pt;}
.y28{bottom:384.226667pt;}
.y75{bottom:385.560000pt;}
.yca{bottom:396.893333pt;}
.y4f{bottom:397.560000pt;}
.y27{bottom:402.893333pt;}
.y74{bottom:403.560000pt;}
.yc9{bottom:414.933333pt;}
.y4e{bottom:416.266667pt;}
.y9d{bottom:420.933333pt;}
.y26{bottom:421.600000pt;}
.y73{bottom:422.266667pt;}
.yc8{bottom:433.600000pt;}
.y4d{bottom:434.933333pt;}
.y25{bottom:439.600000pt;}
.y72{bottom:440.266667pt;}
.yc7{bottom:452.266667pt;}
.y4c{bottom:453.600000pt;}
.y71{bottom:455.600000pt;}
.y24{bottom:458.266667pt;}
.yc6{bottom:470.306667pt;}
.y4b{bottom:472.293333pt;}
.y23{bottom:476.306667pt;}
.y9c{bottom:479.626667pt;}
.yc5{bottom:488.960000pt;}
.y4a{bottom:490.293333pt;}
.y22{bottom:494.960000pt;}
.y9b{bottom:498.306667pt;}
.yc4{bottom:506.960000pt;}
.y49{bottom:508.973333pt;}
.y21{bottom:513.640000pt;}
.y9a{bottom:516.306667pt;}
.yc3{bottom:525.666667pt;}
.y48{bottom:527.666667pt;}
.y20{bottom:531.666667pt;}
.yc2{bottom:544.333333pt;}
.y47{bottom:546.333333pt;}
.y1f{bottom:550.333333pt;}
.yc1{bottom:562.333333pt;}
.y46{bottom:565.000000pt;}
.y1e{bottom:568.333333pt;}
.yc0{bottom:581.000000pt;}
.y45{bottom:583.706667pt;}
.y1d{bottom:587.026667pt;}
.ybf{bottom:599.026667pt;}
.y44{bottom:602.360000pt;}
.y1c{bottom:605.693333pt;}
.ybe{bottom:617.693333pt;}
.y43{bottom:620.360000pt;}
.y1b{bottom:623.693333pt;}
.ybd{bottom:636.360000pt;}
.y42{bottom:639.066667pt;}
.y1a{bottom:642.400000pt;}
.y8a{bottom:645.066667pt;}
.ybc{bottom:654.400000pt;}
.y41{bottom:657.066667pt;}
.y19{bottom:660.400000pt;}
.y89{bottom:663.733333pt;}
.ybb{bottom:673.066667pt;}
.y40{bottom:675.733333pt;}
.y18{bottom:679.066667pt;}
.y88{bottom:682.400000pt;}
.yba{bottom:691.066667pt;}
.y3f{bottom:695.066667pt;}
.y17{bottom:697.773333pt;}
.y87{bottom:700.440000pt;}
.yb9{bottom:709.773333pt;}
.y16{bottom:715.773333pt;}
.y86{bottom:719.106667pt;}
.yb8{bottom:728.426667pt;}
.y3e{bottom:733.773333pt;}
.y15{bottom:735.106667pt;}
.y70{bottom:737.106667pt;}
.yb7{bottom:746.440000pt;}
.y3d{bottom:752.440000pt;}
.y14{bottom:755.800000pt;}
.yb6{bottom:765.133333pt;}
.y3c{bottom:770.466667pt;}
.y13{bottom:773.800000pt;}
.y6f{bottom:774.466667pt;}
.yb5{bottom:783.133333pt;}
.y12{bottom:789.133333pt;}
.y6e{bottom:792.466667pt;}
.yb4{bottom:801.800000pt;}
.y11{bottom:804.466667pt;}
.y3b{bottom:807.800000pt;}
.y6d{bottom:811.173333pt;}
.y10{bottom:820.506667pt;}
.y3a{bottom:825.840000pt;}
.y6c{bottom:829.173333pt;}
.yf{bottom:838.506667pt;}
.y39{bottom:844.506667pt;}
.y6b{bottom:847.840000pt;}
.ye{bottom:857.173333pt;}
.y38{bottom:863.173333pt;}
.y6a{bottom:866.506667pt;}
.yd{bottom:875.200000pt;}
.yb3{bottom:876.533333pt;}
.y37{bottom:881.866667pt;}
.y69{bottom:884.533333pt;}
.yc{bottom:893.866667pt;}
.yb2{bottom:897.200000pt;}
.y36{bottom:899.866667pt;}
.y68{bottom:903.200000pt;}
.yb{bottom:913.866667pt;}
.yb1{bottom:915.200000pt;}
.y35{bottom:918.533333pt;}
.y67{bottom:921.200000pt;}
.yb0{bottom:933.893333pt;}
.y34{bottom:936.560000pt;}
.y66{bottom:939.893333pt;}
.ya{bottom:941.226667pt;}
.yaf{bottom:951.893333pt;}
.y33{bottom:955.226667pt;}
.y65{bottom:958.560000pt;}
.y9{bottom:969.226667pt;}
.yae{bottom:970.560000pt;}
.y32{bottom:973.893333pt;}
.y64{bottom:976.560000pt;}
.yad{bottom:989.266667pt;}
.y31{bottom:991.933333pt;}
.y63{bottom:995.266667pt;}
.y8{bottom:996.600000pt;}
.yac{bottom:1007.933333pt;}
.y30{bottom:1010.600000pt;}
.y62{bottom:1013.266667pt;}
.y7{bottom:1024.600000pt;}
.y2f{bottom:1029.933333pt;}
.y61{bottom:1031.933333pt;}
.y4{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.h7{height:30.112287pt;}
.h2{height:31.187500pt;}
.h1{height:37.312500pt;}
.hc{height:38.984375pt;}
.h4{height:39.173497pt;}
.h6{height:39.198251pt;}
.h3{height:44.437500pt;}
.ha{height:46.781250pt;}
.h10{height:47.218750pt;}
.he{height:49.854167pt;}
.hf{height:53.937500pt;}
.hb{height:55.968750pt;}
.h5{height:59.018798pt;}
.hd{height:65.296875pt;}
.h8{height:70.171875pt;}
.h9{height:83.953125pt;}
.h0{height:1122.666667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.325585pt;}
.x1{left:75.399988pt;}
.x5{left:78.733322pt;}
.x18{left:86.733322pt;}
.xe{left:92.733322pt;}
.x13{left:96.066655pt;}
.x1c{left:99.399988pt;}
.x17{left:102.766655pt;}
.x15{left:113.433322pt;}
.x11{left:123.433322pt;}
.x7{left:124.766655pt;}
.xa{left:136.773322pt;}
.x1d{left:160.799988pt;}
.x9{left:182.133322pt;}
.xb{left:201.506655pt;}
.xf{left:240.866655pt;}
.x6{left:257.533322pt;}
.x1a{left:296.906655pt;}
.x10{left:308.933322pt;}
.x14{left:317.599988pt;}
.x8{left:341.599988pt;}
.x1b{left:346.306655pt;}
.xc{left:358.973322pt;}
.x3{left:362.306655pt;}
.x19{left:378.973322pt;}
.x4{left:396.999988pt;}
.x16{left:661.866655pt;}
.xd{left:671.199988pt;}
.x12{left:717.933322pt;}
}




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