
    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_8be4ee95b19f032511045f54.woff2')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_978c319be9638b30672df9a5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9a528a7aeec6bb59a20eb447.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895508;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_5eb4f992d59dd15d36a0f690.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b3b706c48f9e61c369392558.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_40bf273347c854a0ce85ccf6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0e15ae1bc048bd72069b4081.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.903320;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{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);}
.v3{vertical-align:-247.680000px;}
.v1{vertical-align:-94.860000px;}
.v2{vertical-align:-93.600000px;}
.v4{vertical-align:-20.736000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.325200px;}
.ls9{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.098400px;}
.ls16{letter-spacing:-0.064200px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018720px;}
.ls0{letter-spacing:0.037440px;}
.ls19{letter-spacing:0.058740px;}
.ls5{letter-spacing:0.064200px;}
.ls1{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.162600px;}
.lsb{letter-spacing:0.162720px;}
.ls1b{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.295920px;}
.lsc{letter-spacing:0.325200px;}
.ls14{letter-spacing:42.125376px;}
.ls7{letter-spacing:42.205440px;}
.ls10{letter-spacing:68.004000px;}
.ls8{letter-spacing:94.665600px;}
.ls6{letter-spacing:94.716000px;}
.ls11{letter-spacing:148.716000px;}
.lsd{letter-spacing:259.037280px;}
.ls12{letter-spacing:287.785248px;}
.lse{letter-spacing:314.873280px;}
.ls15{letter-spacing:3528.293280px;}
.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;}
}
.wse{word-spacing:-66.653280px;}
.ws1{word-spacing:-60.192000px;}
.ws3{word-spacing:-60.152232px;}
.wsa{word-spacing:-60.088032px;}
.wsc{word-spacing:-53.605320px;}
.wsd{word-spacing:-53.541492px;}
.ws7{word-spacing:-53.442720px;}
.wsb{word-spacing:-53.344320px;}
.ws8{word-spacing:-53.117520px;}
.wsf{word-spacing:-50.220000px;}
.ws9{word-spacing:-46.962480px;}
.ws6{word-spacing:-46.677312px;}
.ws4{word-spacing:-46.637280px;}
.ws11{word-spacing:-46.082304px;}
.ws10{word-spacing:-46.049760px;}
.ws5{word-spacing:-33.426720px;}
.ws0{word-spacing:-26.602560px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-21.092160px;}
._a{margin-left:-19.218336px;}
._b{margin-left:-16.210800px;}
._8{margin-left:-12.414240px;}
._e{margin-left:-11.389920px;}
._9{margin-left:-10.233360px;}
._3{margin-left:-7.373520px;}
._2{margin-left:-6.187200px;}
._4{margin-left:-4.788000px;}
._c{margin-left:-3.592368px;}
._5{margin-left:-2.349792px;}
._0{margin-left:-1.204800px;}
._1{width:1.801920px;}
._6{width:3.290640px;}
._7{width:42.205440px;}
._f{width:1329.122880px;}
.fc10{color:rgb(5,99,193);}
.fcf{color:rgb(0,176,80);}
.fce{color:rgb(13,13,13);}
.fcd{color:rgb(255,0,0);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(89,89,89);}
.fc12{color:rgb(192,0,0);}
.fc3{color:rgb(38,38,38);}
.fc2{color:rgb(137,137,137);}
.fc4{color:rgb(166,166,166);}
.fc5{color:rgb(64,64,64);}
.fc6{color:rgb(0,0,0);}
.fc9{color:rgb(191,191,191);}
.fc7{color:transparent;}
.fcb{color:rgb(0,146,66);}
.fc8{color:rgb(250,109,22);}
.fca{color:rgb(0,159,72);}
.fc11{color:rgb(36,104,240);}
.fcc{color:rgb(213,59,85);}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs0{font-size:120.240000px;}
.fsd{font-size:120.384000px;}
.fse{font-size:144.000000px;}
.fs8{font-size:167.760000px;}
.fsc{font-size:167.904000px;}
.fsf{font-size:180.000000px;}
.fs7{font-size:192.240000px;}
.fs9{font-size:192.384000px;}
.fs10{font-size:203.760000px;}
.fs11{font-size:203.904000px;}
.fs4{font-size:216.000000px;}
.fs5{font-size:216.144000px;}
.fsb{font-size:239.760000px;}
.fsa{font-size:264.240000px;}
.fs12{font-size:408.240000px;}
.y0{bottom:0.000000px;}
.y40{bottom:12.672000px;}
.yc{bottom:31.428000px;}
.y6d{bottom:36.612000px;}
.y3b{bottom:45.180000px;}
.y3f{bottom:66.276000px;}
.y7{bottom:73.908000px;}
.y51{bottom:78.156000px;}
.y39{bottom:91.980000px;}
.y82{bottom:104.220000px;}
.y6c{bottom:105.732000px;}
.y38{bottom:105.876000px;}
.y6{bottom:106.308000px;}
.y85{bottom:106.884000px;}
.y3e{bottom:113.076000px;}
.y3c{bottom:114.690000px;}
.y32{bottom:114.735000px;}
.y91{bottom:119.088000px;}
.y1e{bottom:125.316000px;}
.y7a{bottom:128.520000px;}
.y50{bottom:128.556000px;}
.y34{bottom:138.780000px;}
.y37{bottom:141.876000px;}
.y5{bottom:143.028000px;}
.y7e{bottom:158.220000px;}
.y3d{bottom:159.870000px;}
.y46{bottom:162.105000px;}
.y87{bottom:163.080000px;}
.y84{bottom:164.490000px;}
.y15{bottom:167.835000px;}
.y4{bottom:173.265000px;}
.y6b{bottom:174.855000px;}
.y36{bottom:177.870000px;}
.y4f{bottom:178.995000px;}
.y31{bottom:185.580000px;}
.y79{bottom:186.120000px;}
.y1d{bottom:193.035000px;}
.y24{bottom:200.235000px;}
.y75{bottom:203.970000px;}
.y3{bottom:204.630000px;}
.y3a{bottom:206.715000px;}
.y90{bottom:209.085000px;}
.y7d{bottom:210.420000px;}
.y45{bottom:212.550000px;}
.y35{bottom:213.915000px;}
.y83{bottom:222.120000px;}
.y14{bottom:223.275000px;}
.y49{bottom:227.775000px;}
.y62{bottom:230.760000px;}
.y86{bottom:232.200000px;}
.y6a{bottom:232.485000px;}
.y4e{bottom:238.395000px;}
.y2{bottom:239.190000px;}
.y78{bottom:243.720000px;}
.y1c{bottom:253.515000px;}
.y23{bottom:257.835000px;}
.y44{bottom:262.950000px;}
.y7c{bottom:266.790000px;}
.y8f{bottom:266.910000px;}
.y25{bottom:267.735000px;}
.y1{bottom:275.910000px;}
.y74{bottom:275.970000px;}
.y48{bottom:278.205000px;}
.y13{bottom:278.715000px;}
.y61{bottom:281.190000px;}
.y4d{bottom:288.795000px;}
.y56{bottom:289.770000px;}
.y33{bottom:300.315000px;}
.y72{bottom:301.350000px;}
.y69{bottom:301.605000px;}
.yb{bottom:312.090000px;}
.y77{bottom:312.870000px;}
.y43{bottom:313.350000px;}
.y1b{bottom:315.435000px;}
.y30{bottom:324.030000px;}
.y7b{bottom:324.390000px;}
.y8e{bottom:324.870000px;}
.y22{bottom:326.955000px;}
.y47{bottom:328.605000px;}
.y60{bottom:331.590000px;}
.y12{bottom:344.595000px;}
.y4c{bottom:348.225000px;}
.y55{bottom:357.480000px;}
.y71{bottom:358.950000px;}
.y68{bottom:359.205000px;}
.y76{bottom:370.470000px;}
.y5f{bottom:381.990000px;}
.y8d{bottom:382.650000px;}
.y1a{bottom:384.585000px;}
.y2f{bottom:396.210000px;}
.y4b{bottom:398.625000px;}
.y6e{bottom:415.725000px;}
.y11{bottom:422.025000px;}
.y70{bottom:428.070000px;}
.y67{bottom:428.370000px;}
.y29{bottom:439.635000px;}
.y8c{bottom:440.460000px;}
.y19{bottom:442.185000px;}
.y5e{bottom:442.515000px;}
.y2e{bottom:446.610000px;}
.y4a{bottom:449.025000px;}
.y21{bottom:453.705000px;}
.ya{bottom:457.095000px;}
.y5c{bottom:468.360000px;}
.y10{bottom:477.465000px;}
.y54{bottom:479.880000px;}
.y6f{bottom:485.715000px;}
.y5a{bottom:492.870000px;}
.y5d{bottom:492.915000px;}
.y2d{bottom:497.055000px;}
.y28{bottom:497.235000px;}
.y66{bottom:497.490000px;}
.y8b{bottom:498.420000px;}
.y18{bottom:511.305000px;}
.y9{bottom:521.925000px;}
.yf{bottom:532.950000px;}
.y5b{bottom:537.510000px;}
.y8a{bottom:541.260000px;}
.y2c{bottom:547.455000px;}
.y53{bottom:549.030000px;}
.y59{bottom:550.470000px;}
.y27{bottom:554.835000px;}
.y65{bottom:555.090000px;}
.y17{bottom:568.950000px;}
.y8{bottom:586.725000px;}
.y81{bottom:595.185000px;}
.y2b{bottom:597.855000px;}
.y89{bottom:599.040000px;}
.y52{bottom:606.630000px;}
.ye{bottom:607.830000px;}
.y58{bottom:608.070000px;}
.y42{bottom:617.220000px;}
.y88{bottom:656.850000px;}
.y64{bottom:676.155000px;}
.y20{bottom:681.405000px;}
.y80{bottom:684.975000px;}
.y2a{bottom:705.315000px;}
.y26{bottom:708.555000px;}
.y7f{bottom:738.975000px;}
.y63{bottom:740.955000px;}
.y16{bottom:741.165000px;}
.yd{bottom:742.605000px;}
.y73{bottom:745.950000px;}
.y1f{bottom:746.205000px;}
.y57{bottom:748.590000px;}
.y41{bottom:748.905000px;}
.h7{height:51.679688px;}
.h3{height:87.859687px;}
.h2{height:99.874688px;}
.h4{height:112.640625px;}
.h1{height:125.406562px;}
.h10{height:125.556750px;}
.h15{height:146.253516px;}
.h18{height:146.356875px;}
.h17{height:147.944883px;}
.h16{height:148.049437px;}
.h14{height:150.187500px;}
.h9{height:174.968437px;}
.hd{height:175.118625px;}
.h13{height:187.734375px;}
.h8{height:200.500313px;}
.ha{height:200.650500px;}
.h12{height:203.580000px;}
.h5{height:225.281250px;}
.h6{height:225.431438px;}
.hc{height:250.062187px;}
.h11{height:250.380000px;}
.he{height:252.000000px;}
.hb{height:275.594063px;}
.h19{height:293.023828px;}
.hf{height:675.180000px;}
.h0{height:810.000000px;}
.w2{width:53.460000px;}
.w1{width:233.100000px;}
.w3{width:280.620000px;}
.w4{width:427.860000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x15{left:10.728000px;}
.x12{left:16.275000px;}
.xb{left:21.240000px;}
.x1{left:23.616000px;}
.x3a{left:40.644000px;}
.x30{left:42.732000px;}
.x14{left:46.800000px;}
.x1e{left:50.076000px;}
.x3b{left:51.192000px;}
.x2c{left:55.908000px;}
.x33{left:60.876000px;}
.x8{left:64.800000px;}
.x7{left:66.024000px;}
.xf{left:76.860000px;}
.xe{left:80.388000px;}
.x35{left:81.648000px;}
.x10{left:89.100000px;}
.x3c{left:91.692000px;}
.x38{left:99.072000px;}
.x3{left:100.188000px;}
.x34{left:101.376000px;}
.x23{left:103.320000px;}
.xa{left:105.300000px;}
.x2d{left:109.908000px;}
.x4{left:115.128000px;}
.x9{left:118.800000px;}
.x22{left:122.040000px;}
.x39{left:127.260000px;}
.x37{left:137.988000px;}
.x24{left:139.680000px;}
.x32{left:152.670000px;}
.x2e{left:163.905000px;}
.x1a{left:189.690000px;}
.x1d{left:196.485000px;}
.x1c{left:206.250000px;}
.x21{left:211.860000px;}
.x1f{left:227.055000px;}
.xc{left:229.350000px;}
.x2f{left:261.105000px;}
.x19{left:296.790000px;}
.x2{left:313.350000px;}
.x36{left:326.985000px;}
.x16{left:336.930000px;}
.x31{left:370.950000px;}
.x3f{left:375.735000px;}
.x11{left:380.880000px;}
.x3d{left:396.255000px;}
.x41{left:404.535000px;}
.x1b{left:415.155000px;}
.x20{left:448.635000px;}
.x42{left:452.235000px;}
.x40{left:492.045000px;}
.x2a{left:610.740000px;}
.x17{left:613.980000px;}
.x2b{left:642.420000px;}
.x3e{left:662.325000px;}
.x27{left:676.005000px;}
.x29{left:692.565000px;}
.x26{left:699.810000px;}
.x25{left:704.490000px;}
.x28{left:720.690000px;}
.x13{left:745.380000px;}
.x5{left:824.010000px;}
.x18{left:879.870000px;}
.xd{left:996.810000px;}
.x6{left:1005.990000px;}
@media print{
.v3{vertical-align:-220.160000pt;}
.v1{vertical-align:-84.320000pt;}
.v2{vertical-align:-83.200000pt;}
.v4{vertical-align:-18.432000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.289067pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.087467pt;}
.ls16{letter-spacing:-0.057067pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016640pt;}
.ls0{letter-spacing:0.033280pt;}
.ls19{letter-spacing:0.052213pt;}
.ls5{letter-spacing:0.057067pt;}
.ls1{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.144533pt;}
.lsb{letter-spacing:0.144640pt;}
.ls1b{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.263040pt;}
.lsc{letter-spacing:0.289067pt;}
.ls14{letter-spacing:37.444779pt;}
.ls7{letter-spacing:37.515947pt;}
.ls10{letter-spacing:60.448000pt;}
.ls8{letter-spacing:84.147200pt;}
.ls6{letter-spacing:84.192000pt;}
.ls11{letter-spacing:132.192000pt;}
.lsd{letter-spacing:230.255360pt;}
.ls12{letter-spacing:255.809109pt;}
.lse{letter-spacing:279.887360pt;}
.ls15{letter-spacing:3136.260693pt;}
.wse{word-spacing:-59.247360pt;}
.ws1{word-spacing:-53.504000pt;}
.ws3{word-spacing:-53.468651pt;}
.wsa{word-spacing:-53.411584pt;}
.wsc{word-spacing:-47.649173pt;}
.wsd{word-spacing:-47.592437pt;}
.ws7{word-spacing:-47.504640pt;}
.wsb{word-spacing:-47.417173pt;}
.ws8{word-spacing:-47.215573pt;}
.wsf{word-spacing:-44.640000pt;}
.ws9{word-spacing:-41.744427pt;}
.ws6{word-spacing:-41.490944pt;}
.ws4{word-spacing:-41.455360pt;}
.ws11{word-spacing:-40.962048pt;}
.ws10{word-spacing:-40.933120pt;}
.ws5{word-spacing:-29.712640pt;}
.ws0{word-spacing:-23.646720pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-18.748587pt;}
._a{margin-left:-17.082965pt;}
._b{margin-left:-14.409600pt;}
._8{margin-left:-11.034880pt;}
._e{margin-left:-10.124373pt;}
._9{margin-left:-9.096320pt;}
._3{margin-left:-6.554240pt;}
._2{margin-left:-5.499733pt;}
._4{margin-left:-4.256000pt;}
._c{margin-left:-3.193216pt;}
._5{margin-left:-2.088704pt;}
._0{margin-left:-1.070933pt;}
._1{width:1.601707pt;}
._6{width:2.925013pt;}
._7{width:37.515947pt;}
._f{width:1181.442560pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs0{font-size:106.880000pt;}
.fsd{font-size:107.008000pt;}
.fse{font-size:128.000000pt;}
.fs8{font-size:149.120000pt;}
.fsc{font-size:149.248000pt;}
.fsf{font-size:160.000000pt;}
.fs7{font-size:170.880000pt;}
.fs9{font-size:171.008000pt;}
.fs10{font-size:181.120000pt;}
.fs11{font-size:181.248000pt;}
.fs4{font-size:192.000000pt;}
.fs5{font-size:192.128000pt;}
.fsb{font-size:213.120000pt;}
.fsa{font-size:234.880000pt;}
.fs12{font-size:362.880000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:11.264000pt;}
.yc{bottom:27.936000pt;}
.y6d{bottom:32.544000pt;}
.y3b{bottom:40.160000pt;}
.y3f{bottom:58.912000pt;}
.y7{bottom:65.696000pt;}
.y51{bottom:69.472000pt;}
.y39{bottom:81.760000pt;}
.y82{bottom:92.640000pt;}
.y6c{bottom:93.984000pt;}
.y38{bottom:94.112000pt;}
.y6{bottom:94.496000pt;}
.y85{bottom:95.008000pt;}
.y3e{bottom:100.512000pt;}
.y3c{bottom:101.946667pt;}
.y32{bottom:101.986667pt;}
.y91{bottom:105.856000pt;}
.y1e{bottom:111.392000pt;}
.y7a{bottom:114.240000pt;}
.y50{bottom:114.272000pt;}
.y34{bottom:123.360000pt;}
.y37{bottom:126.112000pt;}
.y5{bottom:127.136000pt;}
.y7e{bottom:140.640000pt;}
.y3d{bottom:142.106667pt;}
.y46{bottom:144.093333pt;}
.y87{bottom:144.960000pt;}
.y84{bottom:146.213333pt;}
.y15{bottom:149.186667pt;}
.y4{bottom:154.013333pt;}
.y6b{bottom:155.426667pt;}
.y36{bottom:158.106667pt;}
.y4f{bottom:159.106667pt;}
.y31{bottom:164.960000pt;}
.y79{bottom:165.440000pt;}
.y1d{bottom:171.586667pt;}
.y24{bottom:177.986667pt;}
.y75{bottom:181.306667pt;}
.y3{bottom:181.893333pt;}
.y3a{bottom:183.746667pt;}
.y90{bottom:185.853333pt;}
.y7d{bottom:187.040000pt;}
.y45{bottom:188.933333pt;}
.y35{bottom:190.146667pt;}
.y83{bottom:197.440000pt;}
.y14{bottom:198.466667pt;}
.y49{bottom:202.466667pt;}
.y62{bottom:205.120000pt;}
.y86{bottom:206.400000pt;}
.y6a{bottom:206.653333pt;}
.y4e{bottom:211.906667pt;}
.y2{bottom:212.613333pt;}
.y78{bottom:216.640000pt;}
.y1c{bottom:225.346667pt;}
.y23{bottom:229.186667pt;}
.y44{bottom:233.733333pt;}
.y7c{bottom:237.146667pt;}
.y8f{bottom:237.253333pt;}
.y25{bottom:237.986667pt;}
.y1{bottom:245.253333pt;}
.y74{bottom:245.306667pt;}
.y48{bottom:247.293333pt;}
.y13{bottom:247.746667pt;}
.y61{bottom:249.946667pt;}
.y4d{bottom:256.706667pt;}
.y56{bottom:257.573333pt;}
.y33{bottom:266.946667pt;}
.y72{bottom:267.866667pt;}
.y69{bottom:268.093333pt;}
.yb{bottom:277.413333pt;}
.y77{bottom:278.106667pt;}
.y43{bottom:278.533333pt;}
.y1b{bottom:280.386667pt;}
.y30{bottom:288.026667pt;}
.y7b{bottom:288.346667pt;}
.y8e{bottom:288.773333pt;}
.y22{bottom:290.626667pt;}
.y47{bottom:292.093333pt;}
.y60{bottom:294.746667pt;}
.y12{bottom:306.306667pt;}
.y4c{bottom:309.533333pt;}
.y55{bottom:317.760000pt;}
.y71{bottom:319.066667pt;}
.y68{bottom:319.293333pt;}
.y76{bottom:329.306667pt;}
.y5f{bottom:339.546667pt;}
.y8d{bottom:340.133333pt;}
.y1a{bottom:341.853333pt;}
.y2f{bottom:352.186667pt;}
.y4b{bottom:354.333333pt;}
.y6e{bottom:369.533333pt;}
.y11{bottom:375.133333pt;}
.y70{bottom:380.506667pt;}
.y67{bottom:380.773333pt;}
.y29{bottom:390.786667pt;}
.y8c{bottom:391.520000pt;}
.y19{bottom:393.053333pt;}
.y5e{bottom:393.346667pt;}
.y2e{bottom:396.986667pt;}
.y4a{bottom:399.133333pt;}
.y21{bottom:403.293333pt;}
.ya{bottom:406.306667pt;}
.y5c{bottom:416.320000pt;}
.y10{bottom:424.413333pt;}
.y54{bottom:426.560000pt;}
.y6f{bottom:431.746667pt;}
.y5a{bottom:438.106667pt;}
.y5d{bottom:438.146667pt;}
.y2d{bottom:441.826667pt;}
.y28{bottom:441.986667pt;}
.y66{bottom:442.213333pt;}
.y8b{bottom:443.040000pt;}
.y18{bottom:454.493333pt;}
.y9{bottom:463.933333pt;}
.yf{bottom:473.733333pt;}
.y5b{bottom:477.786667pt;}
.y8a{bottom:481.120000pt;}
.y2c{bottom:486.626667pt;}
.y53{bottom:488.026667pt;}
.y59{bottom:489.306667pt;}
.y27{bottom:493.186667pt;}
.y65{bottom:493.413333pt;}
.y17{bottom:505.733333pt;}
.y8{bottom:521.533333pt;}
.y81{bottom:529.053333pt;}
.y2b{bottom:531.426667pt;}
.y89{bottom:532.480000pt;}
.y52{bottom:539.226667pt;}
.ye{bottom:540.293333pt;}
.y58{bottom:540.506667pt;}
.y42{bottom:548.640000pt;}
.y88{bottom:583.866667pt;}
.y64{bottom:601.026667pt;}
.y20{bottom:605.693333pt;}
.y80{bottom:608.866667pt;}
.y2a{bottom:626.946667pt;}
.y26{bottom:629.826667pt;}
.y7f{bottom:656.866667pt;}
.y63{bottom:658.626667pt;}
.y16{bottom:658.813333pt;}
.yd{bottom:660.093333pt;}
.y73{bottom:663.066667pt;}
.y1f{bottom:663.293333pt;}
.y57{bottom:665.413333pt;}
.y41{bottom:665.693333pt;}
.h7{height:45.937500pt;}
.h3{height:78.097500pt;}
.h2{height:88.777500pt;}
.h4{height:100.125000pt;}
.h1{height:111.472500pt;}
.h10{height:111.606000pt;}
.h15{height:130.003125pt;}
.h18{height:130.095000pt;}
.h17{height:131.506563pt;}
.h16{height:131.599500pt;}
.h14{height:133.500000pt;}
.h9{height:155.527500pt;}
.hd{height:155.661000pt;}
.h13{height:166.875000pt;}
.h8{height:178.222500pt;}
.ha{height:178.356000pt;}
.h12{height:180.960000pt;}
.h5{height:200.250000pt;}
.h6{height:200.383500pt;}
.hc{height:222.277500pt;}
.h11{height:222.560000pt;}
.he{height:224.000000pt;}
.hb{height:244.972500pt;}
.h19{height:260.465625pt;}
.hf{height:600.160000pt;}
.h0{height:720.000000pt;}
.w2{width:47.520000pt;}
.w1{width:207.200000pt;}
.w3{width:249.440000pt;}
.w4{width:380.320000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x15{left:9.536000pt;}
.x12{left:14.466667pt;}
.xb{left:18.880000pt;}
.x1{left:20.992000pt;}
.x3a{left:36.128000pt;}
.x30{left:37.984000pt;}
.x14{left:41.600000pt;}
.x1e{left:44.512000pt;}
.x3b{left:45.504000pt;}
.x2c{left:49.696000pt;}
.x33{left:54.112000pt;}
.x8{left:57.600000pt;}
.x7{left:58.688000pt;}
.xf{left:68.320000pt;}
.xe{left:71.456000pt;}
.x35{left:72.576000pt;}
.x10{left:79.200000pt;}
.x3c{left:81.504000pt;}
.x38{left:88.064000pt;}
.x3{left:89.056000pt;}
.x34{left:90.112000pt;}
.x23{left:91.840000pt;}
.xa{left:93.600000pt;}
.x2d{left:97.696000pt;}
.x4{left:102.336000pt;}
.x9{left:105.600000pt;}
.x22{left:108.480000pt;}
.x39{left:113.120000pt;}
.x37{left:122.656000pt;}
.x24{left:124.160000pt;}
.x32{left:135.706667pt;}
.x2e{left:145.693333pt;}
.x1a{left:168.613333pt;}
.x1d{left:174.653333pt;}
.x1c{left:183.333333pt;}
.x21{left:188.320000pt;}
.x1f{left:201.826667pt;}
.xc{left:203.866667pt;}
.x2f{left:232.093333pt;}
.x19{left:263.813333pt;}
.x2{left:278.533333pt;}
.x36{left:290.653333pt;}
.x16{left:299.493333pt;}
.x31{left:329.733333pt;}
.x3f{left:333.986667pt;}
.x11{left:338.560000pt;}
.x3d{left:352.226667pt;}
.x41{left:359.586667pt;}
.x1b{left:369.026667pt;}
.x20{left:398.786667pt;}
.x42{left:401.986667pt;}
.x40{left:437.373333pt;}
.x2a{left:542.880000pt;}
.x17{left:545.760000pt;}
.x2b{left:571.040000pt;}
.x3e{left:588.733333pt;}
.x27{left:600.893333pt;}
.x29{left:615.613333pt;}
.x26{left:622.053333pt;}
.x25{left:626.213333pt;}
.x28{left:640.613333pt;}
.x13{left:662.560000pt;}
.x5{left:732.453333pt;}
.x18{left:782.106667pt;}
.xd{left:886.053333pt;}
.x6{left:894.213333pt;}
}




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