
    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_153593000b35b6c278251c10.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_c96bc9d950f27ea3a0ace3a9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_973dfd209a05c09527681d75.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b02fbd740eadf82037b1afe7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.142578;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_88102c97b7c6555b5f323d46.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_b0961afd53d7b4992fd0307a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fabdb35a151a788493ef4464.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_33dd29f20f7c5431a7ae6827.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_dd44eb8ad175aae9cc9fcc83.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5f335dc91bd63e28569d635f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_841ff95edefae36912f34ba6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_80bec23a24f0d1cbb55bc2f7.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-13.680000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.026000px;}
.ls12{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.306000px;}
.ls5{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.007680px;}
.ls2{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.037440px;}
.ls16{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.109200px;}
.ls14{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.ls17{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.264960px;}
.ls0{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.720000px;}
.ls10{letter-spacing:2.160000px;}
.lsa{letter-spacing:3.029040px;}
.lsb{letter-spacing:4.320000px;}
.ls8{letter-spacing:16.709040px;}
.ls9{letter-spacing:21.029040px;}
.lsc{letter-spacing:25.920000px;}
.lse{letter-spacing:26.100000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-66.240000px;}
.ws8{word-spacing:-51.641280px;}
.ws9{word-spacing:-48.309120px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.534000px;}
.wsd{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.wsf{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws2{word-spacing:-11.898000px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-31.521600px;}
._1c{margin-left:-22.650480px;}
._1b{margin-left:-15.258480px;}
._b{margin-left:-4.572000px;}
._a{margin-left:-3.509280px;}
._14{margin-left:-2.318400px;}
._0{margin-left:-1.260000px;}
._1{width:1.062000px;}
._2{width:2.452080px;}
._c{width:4.438080px;}
._d{width:5.896800px;}
._4{width:7.361280px;}
._3{width:8.478720px;}
._9{width:9.632640px;}
._6{width:10.732320px;}
._5{width:12.255840px;}
._12{width:13.608000px;}
._11{width:14.685360px;}
._1e{width:16.144560px;}
._19{width:17.665680px;}
._18{width:19.010880px;}
._13{width:20.026560px;}
._e{width:21.097920px;}
._7{width:22.322880px;}
._8{width:23.382720px;}
._1a{width:24.976320px;}
._16{width:25.982400px;}
._15{width:29.079360px;}
._1d{width:30.756240px;}
._f{width:32.258880px;}
._10{width:33.386400px;}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:86.760000px;}
.y4{bottom:103.140000px;}
.y3{bottom:119.700000px;}
.y2f{bottom:156.630000px;}
.y62{bottom:169.770000px;}
.y2e{bottom:175.530000px;}
.y90{bottom:185.070000px;}
.y61{bottom:188.670000px;}
.y2d{bottom:194.610000px;}
.y8f{bottom:202.350000px;}
.y60{bottom:207.570000px;}
.y2c{bottom:213.510000px;}
.y8e{bottom:219.630000px;}
.y5f{bottom:226.650000px;}
.y2b{bottom:232.590000px;}
.y8d{bottom:236.910000px;}
.y5e{bottom:245.550000px;}
.y2a{bottom:251.490000px;}
.y8c{bottom:254.190000px;}
.y5d{bottom:264.630000px;}
.y29{bottom:270.750000px;}
.y8b{bottom:271.470000px;}
.y5c{bottom:283.530000px;}
.y8a{bottom:288.570000px;}
.y28{bottom:291.450000px;}
.y5b{bottom:302.430000px;}
.y89{bottom:305.850000px;}
.y27{bottom:311.790000px;}
.y5a{bottom:321.510000px;}
.y88{bottom:323.130000px;}
.y26{bottom:330.870000px;}
.y59{bottom:340.410000px;}
.y25{bottom:349.770000px;}
.y87{bottom:357.690000px;}
.y58{bottom:359.490000px;}
.y24{bottom:369.030000px;}
.y86{bottom:375.330000px;}
.y57{bottom:378.390000px;}
.y23{bottom:389.595000px;}
.y85{bottom:394.275000px;}
.y56{bottom:397.335000px;}
.y22{bottom:408.495000px;}
.y84{bottom:413.355000px;}
.y55{bottom:416.415000px;}
.y21{bottom:427.395000px;}
.y83{bottom:432.255000px;}
.y54{bottom:435.315000px;}
.y20{bottom:446.475000px;}
.y82{bottom:451.335000px;}
.y53{bottom:454.395000px;}
.y1f{bottom:465.735000px;}
.y81{bottom:470.235000px;}
.y52{bottom:473.295000px;}
.y1e{bottom:486.435000px;}
.y80{bottom:489.135000px;}
.y51{bottom:492.195000px;}
.y1d{bottom:506.775000px;}
.y7f{bottom:508.215000px;}
.y50{bottom:511.275000px;}
.y1c{bottom:525.855000px;}
.y7e{bottom:527.115000px;}
.y4f{bottom:530.175000px;}
.y7d{bottom:546.195000px;}
.y4e{bottom:549.255000px;}
.y7c{bottom:565.095000px;}
.y1b{bottom:567.975000px;}
.y4d{bottom:568.515000px;}
.y7b{bottom:583.995000px;}
.y4c{bottom:588.855000px;}
.y7a{bottom:603.075000px;}
.y4b{bottom:607.935000px;}
.y1a{bottom:610.275000px;}
.y79{bottom:621.975000px;}
.y4a{bottom:626.835000px;}
.y19{bottom:629.535000px;}
.y78{bottom:641.085000px;}
.y49{bottom:646.125000px;}
.y18{bottom:648.465000px;}
.y77{bottom:659.985000px;}
.y48{bottom:666.465000px;}
.y17{bottom:667.545000px;}
.y76{bottom:678.885000px;}
.y47{bottom:685.725000px;}
.y16{bottom:686.445000px;}
.y75{bottom:697.965000px;}
.y15{bottom:705.345000px;}
.y46{bottom:706.425000px;}
.ya8{bottom:712.905000px;}
.y74{bottom:716.865000px;}
.y14{bottom:724.425000px;}
.y45{bottom:726.945000px;}
.ya7{bottom:734.145000px;}
.y73{bottom:735.945000px;}
.y13{bottom:743.325000px;}
.y44{bottom:746.205000px;}
.ya6{bottom:753.225000px;}
.y72{bottom:754.845000px;}
.y12{bottom:762.405000px;}
.y43{bottom:766.905000px;}
.ya5{bottom:772.125000px;}
.y71{bottom:773.925000px;}
.y11{bottom:781.305000px;}
.y42{bottom:787.245000px;}
.ya4{bottom:791.025000px;}
.y70{bottom:792.825000px;}
.y10{bottom:800.205000px;}
.y41{bottom:806.325000px;}
.ya3{bottom:810.105000px;}
.y6f{bottom:811.725000px;}
.yf{bottom:819.285000px;}
.y40{bottom:825.225000px;}
.ya2{bottom:829.005000px;}
.y6e{bottom:830.805000px;}
.y3f{bottom:844.125000px;}
.ya1{bottom:847.545000px;}
.y6d{bottom:849.705000px;}
.ye{bottom:861.405000px;}
.y3e{bottom:863.205000px;}
.ya0{bottom:864.825000px;}
.y6c{bottom:868.785000px;}
.y3d{bottom:882.105000px;}
.y6b{bottom:888.045000px;}
.y9f{bottom:899.430000px;}
.y3c{bottom:901.410000px;}
.yd{bottom:905.550000px;}
.y6a{bottom:908.790000px;}
.y9e{bottom:916.530000px;}
.y3b{bottom:922.110000px;}
.yc{bottom:928.950000px;}
.y69{bottom:929.130000px;}
.y9d{bottom:933.810000px;}
.y3a{bottom:942.810000px;}
.y68{bottom:948.030000px;}
.y9c{bottom:951.090000px;}
.yb{bottom:952.350000px;}
.y39{bottom:963.510000px;}
.y67{bottom:967.110000px;}
.y9b{bottom:968.370000px;}
.ya{bottom:976.290000px;}
.y38{bottom:984.210000px;}
.y9a{bottom:985.650000px;}
.y66{bottom:986.010000px;}
.y9{bottom:999.690000px;}
.y99{bottom:1002.930000px;}
.y37{bottom:1004.730000px;}
.y65{bottom:1005.270000px;}
.y98{bottom:1020.030000px;}
.y36{bottom:1023.990000px;}
.y64{bottom:1025.790000px;}
.y97{bottom:1037.310000px;}
.y35{bottom:1043.250000px;}
.y8{bottom:1044.330000px;}
.y63{bottom:1044.690000px;}
.y96{bottom:1054.590000px;}
.y34{bottom:1063.590000px;}
.y95{bottom:1071.870000px;}
.y33{bottom:1082.670000px;}
.y7{bottom:1087.710000px;}
.y94{bottom:1089.150000px;}
.y32{bottom:1101.570000px;}
.y93{bottom:1106.430000px;}
.y6{bottom:1111.830000px;}
.y31{bottom:1120.650000px;}
.y92{bottom:1123.530000px;}
.y30{bottom:1139.550000px;}
.y91{bottom:1140.810000px;}
.y2{bottom:1168.020000px;}
.y1{bottom:1185.480000px;}
.hd{height:41.726953px;}
.h2{height:43.242188px;}
.h6{height:46.251562px;}
.h9{height:46.736719px;}
.hb{height:50.273438px;}
.h3{height:53.709961px;}
.ha{height:54.596250px;}
.h4{height:55.291992px;}
.hc{height:55.825312px;}
.h7{height:57.656250px;}
.h8{height:59.343750px;}
.h5{height:59.436914px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:135.035987px;}
.x6{left:164.009987px;}
.x4{left:166.889987px;}
.x5{left:382.574987px;}
.x2{left:446.504987px;}
.x1{left:683.789987px;}
@media print{
.v1{vertical-align:-12.160000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.912000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.272000pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.006827pt;}
.ls2{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.033280pt;}
.ls16{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.097067pt;}
.ls14{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.ls17{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.235520pt;}
.ls0{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls10{letter-spacing:1.920000pt;}
.lsa{letter-spacing:2.692480pt;}
.lsb{letter-spacing:3.840000pt;}
.ls8{letter-spacing:14.852480pt;}
.ls9{letter-spacing:18.692480pt;}
.lsc{letter-spacing:23.040000pt;}
.lse{letter-spacing:23.200000pt;}
.ws7{word-spacing:-58.880000pt;}
.ws8{word-spacing:-45.903360pt;}
.ws9{word-spacing:-42.941440pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.808000pt;}
.wsd{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws2{word-spacing:-10.576000pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-28.019200pt;}
._1c{margin-left:-20.133760pt;}
._1b{margin-left:-13.563093pt;}
._b{margin-left:-4.064000pt;}
._a{margin-left:-3.119360pt;}
._14{margin-left:-2.060800pt;}
._0{margin-left:-1.120000pt;}
._1{width:0.944000pt;}
._2{width:2.179627pt;}
._c{width:3.944960pt;}
._d{width:5.241600pt;}
._4{width:6.543360pt;}
._3{width:7.536640pt;}
._9{width:8.562347pt;}
._6{width:9.539840pt;}
._5{width:10.894080pt;}
._12{width:12.096000pt;}
._11{width:13.053653pt;}
._1e{width:14.350720pt;}
._19{width:15.702827pt;}
._18{width:16.898560pt;}
._13{width:17.801387pt;}
._e{width:18.753707pt;}
._7{width:19.842560pt;}
._8{width:20.784640pt;}
._1a{width:22.201173pt;}
._16{width:23.095467pt;}
._15{width:25.848320pt;}
._1d{width:27.338880pt;}
._f{width:28.674560pt;}
._10{width:29.676800pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:77.120000pt;}
.y4{bottom:91.680000pt;}
.y3{bottom:106.400000pt;}
.y2f{bottom:139.226667pt;}
.y62{bottom:150.906667pt;}
.y2e{bottom:156.026667pt;}
.y90{bottom:164.506667pt;}
.y61{bottom:167.706667pt;}
.y2d{bottom:172.986667pt;}
.y8f{bottom:179.866667pt;}
.y60{bottom:184.506667pt;}
.y2c{bottom:189.786667pt;}
.y8e{bottom:195.226667pt;}
.y5f{bottom:201.466667pt;}
.y2b{bottom:206.746667pt;}
.y8d{bottom:210.586667pt;}
.y5e{bottom:218.266667pt;}
.y2a{bottom:223.546667pt;}
.y8c{bottom:225.946667pt;}
.y5d{bottom:235.226667pt;}
.y29{bottom:240.666667pt;}
.y8b{bottom:241.306667pt;}
.y5c{bottom:252.026667pt;}
.y8a{bottom:256.506667pt;}
.y28{bottom:259.066667pt;}
.y5b{bottom:268.826667pt;}
.y89{bottom:271.866667pt;}
.y27{bottom:277.146667pt;}
.y5a{bottom:285.786667pt;}
.y88{bottom:287.226667pt;}
.y26{bottom:294.106667pt;}
.y59{bottom:302.586667pt;}
.y25{bottom:310.906667pt;}
.y87{bottom:317.946667pt;}
.y58{bottom:319.546667pt;}
.y24{bottom:328.026667pt;}
.y86{bottom:333.626667pt;}
.y57{bottom:336.346667pt;}
.y23{bottom:346.306667pt;}
.y85{bottom:350.466667pt;}
.y56{bottom:353.186667pt;}
.y22{bottom:363.106667pt;}
.y84{bottom:367.426667pt;}
.y55{bottom:370.146667pt;}
.y21{bottom:379.906667pt;}
.y83{bottom:384.226667pt;}
.y54{bottom:386.946667pt;}
.y20{bottom:396.866667pt;}
.y82{bottom:401.186667pt;}
.y53{bottom:403.906667pt;}
.y1f{bottom:413.986667pt;}
.y81{bottom:417.986667pt;}
.y52{bottom:420.706667pt;}
.y1e{bottom:432.386667pt;}
.y80{bottom:434.786667pt;}
.y51{bottom:437.506667pt;}
.y1d{bottom:450.466667pt;}
.y7f{bottom:451.746667pt;}
.y50{bottom:454.466667pt;}
.y1c{bottom:467.426667pt;}
.y7e{bottom:468.546667pt;}
.y4f{bottom:471.266667pt;}
.y7d{bottom:485.506667pt;}
.y4e{bottom:488.226667pt;}
.y7c{bottom:502.306667pt;}
.y1b{bottom:504.866667pt;}
.y4d{bottom:505.346667pt;}
.y7b{bottom:519.106667pt;}
.y4c{bottom:523.426667pt;}
.y7a{bottom:536.066667pt;}
.y4b{bottom:540.386667pt;}
.y1a{bottom:542.466667pt;}
.y79{bottom:552.866667pt;}
.y4a{bottom:557.186667pt;}
.y19{bottom:559.586667pt;}
.y78{bottom:569.853333pt;}
.y49{bottom:574.333333pt;}
.y18{bottom:576.413333pt;}
.y77{bottom:586.653333pt;}
.y48{bottom:592.413333pt;}
.y17{bottom:593.373333pt;}
.y76{bottom:603.453333pt;}
.y47{bottom:609.533333pt;}
.y16{bottom:610.173333pt;}
.y75{bottom:620.413333pt;}
.y15{bottom:626.973333pt;}
.y46{bottom:627.933333pt;}
.ya8{bottom:633.693333pt;}
.y74{bottom:637.213333pt;}
.y14{bottom:643.933333pt;}
.y45{bottom:646.173333pt;}
.ya7{bottom:652.573333pt;}
.y73{bottom:654.173333pt;}
.y13{bottom:660.733333pt;}
.y44{bottom:663.293333pt;}
.ya6{bottom:669.533333pt;}
.y72{bottom:670.973333pt;}
.y12{bottom:677.693333pt;}
.y43{bottom:681.693333pt;}
.ya5{bottom:686.333333pt;}
.y71{bottom:687.933333pt;}
.y11{bottom:694.493333pt;}
.y42{bottom:699.773333pt;}
.ya4{bottom:703.133333pt;}
.y70{bottom:704.733333pt;}
.y10{bottom:711.293333pt;}
.y41{bottom:716.733333pt;}
.ya3{bottom:720.093333pt;}
.y6f{bottom:721.533333pt;}
.yf{bottom:728.253333pt;}
.y40{bottom:733.533333pt;}
.ya2{bottom:736.893333pt;}
.y6e{bottom:738.493333pt;}
.y3f{bottom:750.333333pt;}
.ya1{bottom:753.373333pt;}
.y6d{bottom:755.293333pt;}
.ye{bottom:765.693333pt;}
.y3e{bottom:767.293333pt;}
.ya0{bottom:768.733333pt;}
.y6c{bottom:772.253333pt;}
.y3d{bottom:784.093333pt;}
.y6b{bottom:789.373333pt;}
.y9f{bottom:799.493333pt;}
.y3c{bottom:801.253333pt;}
.yd{bottom:804.933333pt;}
.y6a{bottom:807.813333pt;}
.y9e{bottom:814.693333pt;}
.y3b{bottom:819.653333pt;}
.yc{bottom:825.733333pt;}
.y69{bottom:825.893333pt;}
.y9d{bottom:830.053333pt;}
.y3a{bottom:838.053333pt;}
.y68{bottom:842.693333pt;}
.y9c{bottom:845.413333pt;}
.yb{bottom:846.533333pt;}
.y39{bottom:856.453333pt;}
.y67{bottom:859.653333pt;}
.y9b{bottom:860.773333pt;}
.ya{bottom:867.813333pt;}
.y38{bottom:874.853333pt;}
.y9a{bottom:876.133333pt;}
.y66{bottom:876.453333pt;}
.y9{bottom:888.613333pt;}
.y99{bottom:891.493333pt;}
.y37{bottom:893.093333pt;}
.y65{bottom:893.573333pt;}
.y98{bottom:906.693333pt;}
.y36{bottom:910.213333pt;}
.y64{bottom:911.813333pt;}
.y97{bottom:922.053333pt;}
.y35{bottom:927.333333pt;}
.y8{bottom:928.293333pt;}
.y63{bottom:928.613333pt;}
.y96{bottom:937.413333pt;}
.y34{bottom:945.413333pt;}
.y95{bottom:952.773333pt;}
.y33{bottom:962.373333pt;}
.y7{bottom:966.853333pt;}
.y94{bottom:968.133333pt;}
.y32{bottom:979.173333pt;}
.y93{bottom:983.493333pt;}
.y6{bottom:988.293333pt;}
.y31{bottom:996.133333pt;}
.y92{bottom:998.693333pt;}
.y30{bottom:1012.933333pt;}
.y91{bottom:1014.053333pt;}
.y2{bottom:1038.240000pt;}
.y1{bottom:1053.760000pt;}
.hd{height:37.090625pt;}
.h2{height:38.437500pt;}
.h6{height:41.112500pt;}
.h9{height:41.543750pt;}
.hb{height:44.687500pt;}
.h3{height:47.742188pt;}
.ha{height:48.530000pt;}
.h4{height:49.148438pt;}
.hc{height:49.622500pt;}
.h7{height:51.250000pt;}
.h8{height:52.750000pt;}
.h5{height:52.832812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:120.031988pt;}
.x6{left:145.786655pt;}
.x4{left:148.346655pt;}
.x5{left:340.066655pt;}
.x2{left:396.893322pt;}
.x1{left:607.813322pt;}
}




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