
    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_d0ba34a94d6bd9859006cbce.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_825503a2d5ab3546c33795f0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_48007847a43f52b2595b58a7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_ed23d80e1e4f27d80b2fd8a5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.964355;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_74b26d23af67e65d296f9830.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_931ec2c60b3a7209592e99df.woff')format("woff");}.ff6{font-family:ff6;line-height:1.068848;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_b1e0c4842c904526cc949503.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_824215d905cdd69add036e70.woff')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_1bd6614dce69288130944560.woff')format("woff");}.ff9{font-family:ff9;line-height:1.201172;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_3ea134708601735d21176cf8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.870117;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;}
.m5{transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,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);}
.m1{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-86.400000px;}
.v3{vertical-align:-57.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.174046px;}
.v1{vertical-align:86.400000px;}
.ls15{letter-spacing:-3.682649px;}
.ls18{letter-spacing:-0.929173px;}
.ls1b{letter-spacing:-0.674163px;}
.ls1a{letter-spacing:-0.592091px;}
.lsd{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.342000px;}
.lse{letter-spacing:-0.325200px;}
.ls19{letter-spacing:-0.225094px;}
.lsc{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.120884px;}
.ls13{letter-spacing:-0.025920px;}
.ls14{letter-spacing:-0.017280px;}
.lsb{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.023040px;}
.ls8{letter-spacing:0.025920px;}
.lsa{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.280200px;}
.ls12{letter-spacing:0.302211px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.702720px;}
.ls9{letter-spacing:1.065229px;}
.ls1c{letter-spacing:1.321947px;}
.ls5{letter-spacing:1.611790px;}
.ls17{letter-spacing:1.775386px;}
.ls16{letter-spacing:2.167561px;}
.ls0{letter-spacing:54.792000px;}
.ls4{letter-spacing:119.916000px;}
.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;}
}
.ws4{word-spacing:-192.240000px;}
.ws0{word-spacing:-53.442720px;}
.ws5{word-spacing:-53.117520px;}
.ws3{word-spacing:-50.400000px;}
.ws2{word-spacing:-50.040000px;}
.ws6{word-spacing:-43.434720px;}
.ws9{word-spacing:-41.633280px;}
.wsc{word-spacing:-33.426720px;}
.wsa{word-spacing:-21.634560px;}
.wsb{word-spacing:-21.600000px;}
.ws7{word-spacing:-1.985040px;}
.wsd{word-spacing:0.000000px;}
.ws1{word-spacing:0.288000px;}
.ws8{word-spacing:0.324720px;}
._8{margin-left:-75.284299px;}
._c{margin-left:-7.016179px;}
._3{margin-left:-3.588960px;}
._0{margin-left:-1.986000px;}
._1{width:1.188000px;}
._5{width:2.438527px;}
._2{width:3.472560px;}
._9{width:5.910499px;}
._a{width:7.067034px;}
._6{width:16.222827px;}
._7{width:17.867383px;}
._4{width:50.711040px;}
._e{width:367.060748px;}
._d{width:419.188195px;}
._b{width:1177.937958px;}
.fc11{color:rgb(255,0,0);}
.fce{color:rgb(239,110,94);}
.fcd{color:rgb(73,96,179);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(127,127,127);}
.fc4{color:rgb(255,255,255);}
.fca{color:rgb(82,82,82);}
.fcb{color:rgb(0,176,80);}
.fcf{color:rgb(255,85,13);}
.fc1{color:rgb(0,150,130);}
.fc10{color:rgb(178,34,34);}
.fc2{color:rgb(146,208,80);}
.fc5{color:rgb(170,70,19);}
.fc6{color:rgb(0,59,124);}
.fc7{color:rgb(250,178,88);}
.fc8{color:rgb(204,102,0);}
.fc12{color:transparent;}
.fc9{color:rgb(167,85,217);}
.fcc{color:rgb(0,176,240);}
.fsf{font-size:48.353689px;}
.fsc{font-size:68.501059px;}
.fsd{font-size:69.306954px;}
.fs11{font-size:77.760000px;}
.fs14{font-size:79.131298px;}
.fse{font-size:80.589482px;}
.fs10{font-size:81.395376px;}
.fs1a{font-size:84.410433px;}
.fs19{font-size:84.416984px;}
.fs16{font-size:85.218321px;}
.fs13{font-size:91.305344px;}
.fs15{font-size:109.566413px;}
.fs17{font-size:110.783817px;}
.fs8{font-size:120.240000px;}
.fs18{font-size:120.832227px;}
.fs4{font-size:128.160000px;}
.fs5{font-size:144.000000px;}
.fs12{font-size:146.088550px;}
.fsb{font-size:149.760000px;}
.fsa{font-size:156.240000px;}
.fs9{font-size:162.000000px;}
.fs7{font-size:180.000000px;}
.fs3{font-size:192.240000px;}
.fs0{font-size:198.000000px;}
.fs6{font-size:239.760000px;}
.fs2{font-size:288.000000px;}
.fs1{font-size:480.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:15.623119px;}
.y62{bottom:27.518824px;}
.y54{bottom:29.369886px;}
.y67{bottom:31.048354px;}
.y5d{bottom:35.456909px;}
.y46{bottom:36.777858px;}
.y58{bottom:36.978664px;}
.y55{bottom:53.717977px;}
.y65{bottom:62.704723px;}
.y64{bottom:63.584067px;}
.y5c{bottom:70.457290px;}
.y1{bottom:82.584000px;}
.y5b{bottom:100.892405px;}
.y5a{bottom:105.457672px;}
.y59{bottom:130.110115px;}
.y57{bottom:148.371184px;}
.y4d{bottom:177.001037px;}
.y66{bottom:184.407340px;}
.y56{bottom:200.110878px;}
.y4c{bottom:205.408830px;}
.y5f{bottom:246.067902px;}
.y48{bottom:246.710939px;}
.y5e{bottom:259.763703px;}
.y4b{bottom:269.880415px;}
.y4a{bottom:272.902521px;}
.y49{bottom:273.909889px;}
.y2b{bottom:278.100000px;}
.y4e{bottom:297.280839px;}
.y2a{bottom:329.040000px;}
.y4f{bottom:337.575580px;}
.y7{bottom:393.300000px;}
.y25{bottom:572.115000px;}
.y21{bottom:619.845000px;}
.y24{bottom:633.675000px;}
.y20{bottom:681.225000px;}
.y23{bottom:695.055000px;}
.y3e{bottom:709.230000px;}
.y1f{bottom:742.785000px;}
.y22{bottom:756.615000px;}
.y3d{bottom:803.085000px;}
.y61{bottom:909.172271px;}
.y34{bottom:998.460000px;}
.y33{bottom:1048.140000px;}
.y44{bottom:1089.900000px;}
.y32{bottom:1097.820000px;}
.y3a{bottom:1139.040000px;}
.y31{bottom:1147.320000px;}
.y39{bottom:1186.230000px;}
.y43{bottom:1190.520000px;}
.y38{bottom:1234.830000px;}
.y30{bottom:1251.360000px;}
.y42{bottom:1295.460000px;}
.y2f{bottom:1305.540000px;}
.y37{bottom:1331.670000px;}
.y2e{bottom:1359.900000px;}
.y36{bottom:1378.830000px;}
.y41{bottom:1400.760000px;}
.y2d{bottom:1406.700000px;}
.y35{bottom:1427.430000px;}
.y40{bottom:1447.920000px;}
.y2c{bottom:1492.200000px;}
.y3f{bottom:1496.520000px;}
.y3c{bottom:1551.090000px;}
.y52{bottom:1707.555000px;}
.y51{bottom:1730.955000px;}
.y53{bottom:1748.160000px;}
.y63{bottom:2129.728090px;}
.y1e{bottom:2142.210000px;}
.y45{bottom:2164.988901px;}
.y50{bottom:2184.330000px;}
.y1d{bottom:2198.370000px;}
.y1c{bottom:2310.510000px;}
.y1b{bottom:2366.670000px;}
.y1a{bottom:2422.650000px;}
.y19{bottom:2478.810000px;}
.y3b{bottom:2588.370000px;}
.y60{bottom:2639.265000px;}
.y12{bottom:2853.570000px;}
.y11{bottom:2909.730000px;}
.y18{bottom:2912.790000px;}
.y10{bottom:2965.710000px;}
.y17{bottom:2974.890000px;}
.yf{bottom:3021.870000px;}
.y16{bottom:3044.550000px;}
.ye{bottom:3078.030000px;}
.y15{bottom:3106.650000px;}
.yd{bottom:3134.010000px;}
.y14{bottom:3176.175000px;}
.yc{bottom:3190.215000px;}
.y13{bottom:3245.835000px;}
.yb{bottom:3246.375000px;}
.ya{bottom:3345.195000px;}
.y29{bottom:3475.590000px;}
.y28{bottom:3533.190000px;}
.y27{bottom:3590.790000px;}
.y26{bottom:3648.390000px;}
.y6{bottom:3834.690000px;}
.y5{bottom:3892.320000px;}
.y4{bottom:3966.120000px;}
.y3{bottom:4095.255000px;}
.y2{bottom:4239.285000px;}
.y9{bottom:4443.630000px;}
.y8{bottom:4515.630000px;}
.h12{height:49.510589px;}
.h11{height:67.918674px;}
.hf{height:68.133134px;}
.h10{height:68.934700px;}
.h19{height:78.706276px;}
.h13{height:80.156628px;}
.h14{height:80.958194px;}
.h15{height:81.101250px;}
.h22{height:83.957056px;}
.h21{height:83.963572px;}
.h1b{height:84.760605px;}
.h23{height:86.436726px;}
.h18{height:90.814934px;}
.h1d{height:110.188787px;}
.h1a{height:112.187875px;}
.h1c{height:121.151967px;}
.h1f{height:123.723233px;}
.ha{height:125.406562px;}
.h5{height:142.900312px;}
.h17{height:145.303895px;}
.h6{height:150.187500px;}
.hd{height:156.195000px;}
.hc{height:162.953438px;}
.hb{height:168.960938px;}
.h7{height:179.937070px;}
.h1e{height:182.838239px;}
.h9{height:187.734375px;}
.h8{height:200.500313px;}
.h2{height:206.507812px;}
.h4{height:300.375000px;}
.h16{height:349.382434px;}
.he{height:363.660036px;}
.h20{height:462.534723px;}
.h3{height:500.875313px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w5{width:408.889923px;}
.w6{width:453.706075px;}
.w3{width:513.396896px;}
.w4{width:636.048714px;}
.w2{width:3576.419947px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x3b{left:22.051274px;}
.x41{left:26.283042px;}
.x3f{left:50.618829px;}
.x39{left:66.483385px;}
.x38{left:73.482964px;}
.x36{left:78.352236px;}
.x26{left:81.590475px;}
.x1{left:85.895947px;}
.x25{left:87.037122px;}
.x42{left:108.407359px;}
.x2{left:198.974947px;}
.x3{left:205.889947px;}
.x3a{left:214.083206px;}
.x19{left:219.029947px;}
.x18{left:226.259947px;}
.xd{left:230.069947px;}
.x2a{left:237.929412px;}
.x17{left:240.089947px;}
.x2d{left:241.358782px;}
.x30{left:256.677770px;}
.x6{left:260.069947px;}
.xb{left:262.109947px;}
.x37{left:269.775510px;}
.x32{left:273.731793px;}
.x2f{left:277.484947px;}
.x11{left:278.924947px;}
.x1a{left:285.089947px;}
.x16{left:287.969947px;}
.x7{left:291.599947px;}
.x33{left:295.034860px;}
.x15{left:298.229947px;}
.xc{left:304.049947px;}
.x31{left:308.425360px;}
.x27{left:319.427387px;}
.x12{left:332.924947px;}
.x8{left:345.959947px;}
.x2c{left:350.493447px;}
.x2b{left:381.962962px;}
.x29{left:392.856255px;}
.x28{left:410.003106px;}
.x34{left:446.590965px;}
.x35{left:473.676293px;}
.x1d{left:707.324947px;}
.x24{left:1044.354410px;}
.x3d{left:1236.884947px;}
.x3c{left:1276.739947px;}
.x2e{left:1286.609947px;}
.x1b{left:1322.969947px;}
.x1e{left:1326.629947px;}
.x20{left:1477.004947px;}
.x4{left:1503.689947px;}
.x1f{left:1693.544947px;}
.x1c{left:1833.329947px;}
.x3e{left:1842.531302px;}
.x40{left:2069.542783px;}
.x21{left:2123.204947px;}
.x9{left:2432.624947px;}
.x43{left:2456.459947px;}
.xa{left:2474.564947px;}
.x10{left:2535.044947px;}
.xe{left:2577.884947px;}
.x13{left:2597.219947px;}
.xf{left:2609.024947px;}
.x14{left:2651.219947px;}
.x5{left:2821.649947px;}
.x22{left:2964.989947px;}
.x23{left:3007.829947px;}
@media print{
.v2{vertical-align:-76.800000pt;}
.v3{vertical-align:-51.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.821374pt;}
.v1{vertical-align:76.800000pt;}
.ls15{letter-spacing:-3.273466pt;}
.ls18{letter-spacing:-0.825932pt;}
.ls1b{letter-spacing:-0.599256pt;}
.ls1a{letter-spacing:-0.526303pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.304000pt;}
.lse{letter-spacing:-0.289067pt;}
.ls19{letter-spacing:-0.200084pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.107453pt;}
.ls13{letter-spacing:-0.023040pt;}
.ls14{letter-spacing:-0.015360pt;}
.lsb{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.020480pt;}
.ls8{letter-spacing:0.023040pt;}
.lsa{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.249067pt;}
.ls12{letter-spacing:0.268632pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.624640pt;}
.ls9{letter-spacing:0.946870pt;}
.ls1c{letter-spacing:1.175064pt;}
.ls5{letter-spacing:1.432702pt;}
.ls17{letter-spacing:1.578121pt;}
.ls16{letter-spacing:1.926721pt;}
.ls0{letter-spacing:48.704000pt;}
.ls4{letter-spacing:106.592000pt;}
.ws4{word-spacing:-170.880000pt;}
.ws0{word-spacing:-47.504640pt;}
.ws5{word-spacing:-47.215573pt;}
.ws3{word-spacing:-44.800000pt;}
.ws2{word-spacing:-44.480000pt;}
.ws6{word-spacing:-38.608640pt;}
.ws9{word-spacing:-37.007360pt;}
.wsc{word-spacing:-29.712640pt;}
.wsa{word-spacing:-19.230720pt;}
.wsb{word-spacing:-19.200000pt;}
.ws7{word-spacing:-1.764480pt;}
.wsd{word-spacing:0.000000pt;}
.ws1{word-spacing:0.256000pt;}
.ws8{word-spacing:0.288640pt;}
._8{margin-left:-66.919377pt;}
._c{margin-left:-6.236604pt;}
._3{margin-left:-3.190187pt;}
._0{margin-left:-1.765333pt;}
._1{width:1.056000pt;}
._5{width:2.167579pt;}
._2{width:3.086720pt;}
._9{width:5.253777pt;}
._a{width:6.281808pt;}
._6{width:14.420290pt;}
._7{width:15.882118pt;}
._4{width:45.076480pt;}
._e{width:326.276221pt;}
._d{width:372.611729pt;}
._b{width:1047.055963pt;}
.fsf{font-size:42.981057pt;}
.fsc{font-size:60.889831pt;}
.fsd{font-size:61.606182pt;}
.fs11{font-size:69.120000pt;}
.fs14{font-size:70.338932pt;}
.fse{font-size:71.635095pt;}
.fs10{font-size:72.351446pt;}
.fs1a{font-size:75.031496pt;}
.fs19{font-size:75.037319pt;}
.fs16{font-size:75.749619pt;}
.fs13{font-size:81.160306pt;}
.fs15{font-size:97.392367pt;}
.fs17{font-size:98.474504pt;}
.fs8{font-size:106.880000pt;}
.fs18{font-size:107.406424pt;}
.fs4{font-size:113.920000pt;}
.fs5{font-size:128.000000pt;}
.fs12{font-size:129.856489pt;}
.fsb{font-size:133.120000pt;}
.fsa{font-size:138.880000pt;}
.fs9{font-size:144.000000pt;}
.fs7{font-size:160.000000pt;}
.fs3{font-size:170.880000pt;}
.fs0{font-size:176.000000pt;}
.fs6{font-size:213.120000pt;}
.fs2{font-size:256.000000pt;}
.fs1{font-size:426.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:13.887217pt;}
.y62{bottom:24.461177pt;}
.y54{bottom:26.106565pt;}
.y67{bottom:27.598537pt;}
.y5d{bottom:31.517252pt;}
.y46{bottom:32.691429pt;}
.y58{bottom:32.869924pt;}
.y55{bottom:47.749313pt;}
.y65{bottom:55.737532pt;}
.y64{bottom:56.519170pt;}
.y5c{bottom:62.628702pt;}
.y1{bottom:73.408000pt;}
.y5b{bottom:89.682138pt;}
.y5a{bottom:93.740153pt;}
.y59{bottom:115.653435pt;}
.y57{bottom:131.885497pt;}
.y4d{bottom:157.334255pt;}
.y66{bottom:163.917636pt;}
.y56{bottom:177.876336pt;}
.y4c{bottom:182.585626pt;}
.y5f{bottom:218.727024pt;}
.y48{bottom:219.298612pt;}
.y5e{bottom:230.901069pt;}
.y4b{bottom:239.893702pt;}
.y4a{bottom:242.580018pt;}
.y49{bottom:243.475457pt;}
.y2b{bottom:247.200000pt;}
.y4e{bottom:264.249634pt;}
.y2a{bottom:292.480000pt;}
.y4f{bottom:300.067182pt;}
.y7{bottom:349.600000pt;}
.y25{bottom:508.546667pt;}
.y21{bottom:550.973333pt;}
.y24{bottom:563.266667pt;}
.y20{bottom:605.533333pt;}
.y23{bottom:617.826667pt;}
.y3e{bottom:630.426667pt;}
.y1f{bottom:660.253333pt;}
.y22{bottom:672.546667pt;}
.y3d{bottom:713.853333pt;}
.y61{bottom:808.153130pt;}
.y34{bottom:887.520000pt;}
.y33{bottom:931.680000pt;}
.y44{bottom:968.800000pt;}
.y32{bottom:975.840000pt;}
.y3a{bottom:1012.480000pt;}
.y31{bottom:1019.840000pt;}
.y39{bottom:1054.426667pt;}
.y43{bottom:1058.240000pt;}
.y38{bottom:1097.626667pt;}
.y30{bottom:1112.320000pt;}
.y42{bottom:1151.520000pt;}
.y2f{bottom:1160.480000pt;}
.y37{bottom:1183.706667pt;}
.y2e{bottom:1208.800000pt;}
.y36{bottom:1225.626667pt;}
.y41{bottom:1245.120000pt;}
.y2d{bottom:1250.400000pt;}
.y35{bottom:1268.826667pt;}
.y40{bottom:1287.040000pt;}
.y2c{bottom:1326.400000pt;}
.y3f{bottom:1330.240000pt;}
.y3c{bottom:1378.746667pt;}
.y52{bottom:1517.826667pt;}
.y51{bottom:1538.626667pt;}
.y53{bottom:1553.920000pt;}
.y63{bottom:1893.091636pt;}
.y1e{bottom:1904.186667pt;}
.y45{bottom:1924.434579pt;}
.y50{bottom:1941.626667pt;}
.y1d{bottom:1954.106667pt;}
.y1c{bottom:2053.786667pt;}
.y1b{bottom:2103.706667pt;}
.y1a{bottom:2153.466667pt;}
.y19{bottom:2203.386667pt;}
.y3b{bottom:2300.773333pt;}
.y60{bottom:2346.013333pt;}
.y12{bottom:2536.506667pt;}
.y11{bottom:2586.426667pt;}
.y18{bottom:2589.146667pt;}
.y10{bottom:2636.186667pt;}
.y17{bottom:2644.346667pt;}
.yf{bottom:2686.106667pt;}
.y16{bottom:2706.266667pt;}
.ye{bottom:2736.026667pt;}
.y15{bottom:2761.466667pt;}
.yd{bottom:2785.786667pt;}
.y14{bottom:2823.266667pt;}
.yc{bottom:2835.746667pt;}
.y13{bottom:2885.186667pt;}
.yb{bottom:2885.666667pt;}
.ya{bottom:2973.506667pt;}
.y29{bottom:3089.413333pt;}
.y28{bottom:3140.613333pt;}
.y27{bottom:3191.813333pt;}
.y26{bottom:3243.013333pt;}
.y6{bottom:3408.613333pt;}
.y5{bottom:3459.840000pt;}
.y4{bottom:3525.440000pt;}
.y3{bottom:3640.226667pt;}
.y2{bottom:3768.253333pt;}
.y9{bottom:3949.893333pt;}
.y8{bottom:4013.893333pt;}
.h12{height:44.009412pt;}
.h11{height:60.372155pt;}
.hf{height:60.562786pt;}
.h10{height:61.275289pt;}
.h19{height:69.961135pt;}
.h13{height:71.250336pt;}
.h14{height:71.962839pt;}
.h15{height:72.090000pt;}
.h22{height:74.628494pt;}
.h21{height:74.634286pt;}
.h1b{height:75.342760pt;}
.h23{height:76.832645pt;}
.h18{height:80.724386pt;}
.h1d{height:97.945588pt;}
.h1a{height:99.722555pt;}
.h1c{height:107.690637pt;}
.h1f{height:109.976207pt;}
.ha{height:111.472500pt;}
.h5{height:127.022500pt;}
.h17{height:129.159018pt;}
.h6{height:133.500000pt;}
.hd{height:138.840000pt;}
.hc{height:144.847500pt;}
.hb{height:150.187500pt;}
.h7{height:159.944063pt;}
.h1e{height:162.522879pt;}
.h9{height:166.875000pt;}
.h8{height:178.222500pt;}
.h2{height:183.562500pt;}
.h4{height:267.000000pt;}
.h16{height:310.562164pt;}
.he{height:323.253365pt;}
.h20{height:411.141976pt;}
.h3{height:445.222500pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w5{width:363.457709pt;}
.w6{width:403.294289pt;}
.w3{width:456.352796pt;}
.w4{width:565.376634pt;}
.w2{width:3179.039953pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x3b{left:19.601132pt;}
.x41{left:23.362704pt;}
.x3f{left:44.994515pt;}
.x39{left:59.096342pt;}
.x38{left:65.318190pt;}
.x36{left:69.646432pt;}
.x26{left:72.524867pt;}
.x1{left:76.351953pt;}
.x25{left:77.366331pt;}
.x42{left:96.362097pt;}
.x2{left:176.866619pt;}
.x3{left:183.013286pt;}
.x3a{left:190.296183pt;}
.x19{left:194.693286pt;}
.x18{left:201.119953pt;}
.xd{left:204.506619pt;}
.x2a{left:211.492811pt;}
.x17{left:213.413286pt;}
.x2d{left:214.541140pt;}
.x30{left:228.158018pt;}
.x6{left:231.173286pt;}
.xb{left:232.986619pt;}
.x37{left:239.800453pt;}
.x32{left:243.317150pt;}
.x2f{left:246.653286pt;}
.x11{left:247.933286pt;}
.x1a{left:253.413286pt;}
.x16{left:255.973286pt;}
.x7{left:259.199953pt;}
.x33{left:262.253209pt;}
.x15{left:265.093286pt;}
.xc{left:270.266619pt;}
.x31{left:274.155875pt;}
.x27{left:283.935455pt;}
.x12{left:295.933286pt;}
.x8{left:307.519953pt;}
.x2c{left:311.549730pt;}
.x2b{left:339.522632pt;}
.x29{left:349.205560pt;}
.x28{left:364.447206pt;}
.x34{left:396.969747pt;}
.x35{left:421.045594pt;}
.x1d{left:628.733286pt;}
.x24{left:928.315031pt;}
.x3d{left:1099.453286pt;}
.x3c{left:1134.879953pt;}
.x2e{left:1143.653286pt;}
.x1b{left:1175.973286pt;}
.x1e{left:1179.226619pt;}
.x20{left:1312.893286pt;}
.x4{left:1336.613286pt;}
.x1f{left:1505.373286pt;}
.x1c{left:1629.626619pt;}
.x3e{left:1637.805602pt;}
.x40{left:1839.593585pt;}
.x21{left:1887.293286pt;}
.x9{left:2162.333286pt;}
.x43{left:2183.519953pt;}
.xa{left:2199.613286pt;}
.x10{left:2253.373286pt;}
.xe{left:2291.453286pt;}
.x13{left:2308.639953pt;}
.xf{left:2319.133286pt;}
.x14{left:2356.639953pt;}
.x5{left:2508.133286pt;}
.x22{left:2635.546619pt;}
.x23{left:2673.626619pt;}
}




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