
    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_e8496f346cd2731a1e2e92eb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_fc8c4aea2575495576750759.woff')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_9845717cd9038811663d91d9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_961698e0a0a9e394620ba2b3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_25dcfc35ef1bacc3a4e47e4b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_668efee2f7e1bcbf729e51e4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_18aeb6f581988e937c4cfd22.woff')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_49c709e489a74a730be41680.woff')format("woff");}.ff8{font-family:ff8;line-height:1.080566;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_5d765312eb3b7abf06af6c27.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_4b816554f04b40260c9715ee.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_e81aa2dbb00a5e4c29e7334a.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_db39b3a7d550919578f7bdcb.woff')format("woff");}.ffd{font-family:ffd;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.180000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.440000px;}
.ls9{letter-spacing:2.160000px;}
.lsa{letter-spacing:4.320000px;}
.ls6{letter-spacing:5.760000px;}
.lsd{letter-spacing:7.344000px;}
.lse{letter-spacing:9.360000px;}
.ls10{letter-spacing:10.224000px;}
.ls4{letter-spacing:15.120000px;}
.ls5{letter-spacing:23.040000px;}
.ls1{letter-spacing:26.820000px;}
.ls2{letter-spacing:32.400000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws1{word-spacing:-23.940000px;}
.ws6{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.488000px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-10.656000px;}
._16{margin-left:-2.434560px;}
._1{margin-left:-1.059840px;}
._0{width:1.347840px;}
._4{width:2.796960px;}
._a{width:3.849120px;}
._3{width:4.968000px;}
._2{width:6.120000px;}
._9{width:7.292160px;}
._7{width:9.000000px;}
._8{width:10.204320px;}
._18{width:11.574240px;}
._17{width:13.104000px;}
._5{width:15.048000px;}
._6{width:16.804320px;}
._f{width:19.656000px;}
._10{width:20.828160px;}
._14{width:21.960000px;}
._13{width:23.004000px;}
._12{width:24.315840px;}
._b{width:26.640000px;}
._11{width:30.168000px;}
._c{width:32.184000px;}
._d{width:33.636000px;}
._e{width:38.592000px;}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y7{bottom:20.700000px;}
.y4{bottom:27.900000px;}
.y6{bottom:45.360000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.ya{bottom:91.116000px;}
.y38{bottom:137.196000px;}
.ya0{bottom:140.436000px;}
.y7b{bottom:152.130000px;}
.y37{bottom:161.130000px;}
.y9f{bottom:165.450000px;}
.y53{bottom:173.190000px;}
.y7a{bottom:177.150000px;}
.y36{bottom:184.890000px;}
.y9e{bottom:189.210000px;}
.y52{bottom:197.130000px;}
.y79{bottom:202.170000px;}
.y35{bottom:208.650000px;}
.y9d{bottom:213.150000px;}
.y51{bottom:220.890000px;}
.y78{bottom:226.110000px;}
.y34{bottom:232.410000px;}
.y9c{bottom:238.170000px;}
.y50{bottom:244.650000px;}
.y77{bottom:249.870000px;}
.y33{bottom:256.350000px;}
.y9b{bottom:263.370000px;}
.y4f{bottom:268.410000px;}
.y76{bottom:273.630000px;}
.y32{bottom:280.155000px;}
.y9a{bottom:288.435000px;}
.y4e{bottom:293.655000px;}
.y75{bottom:297.435000px;}
.y31{bottom:303.915000px;}
.y99{bottom:313.635000px;}
.y4d{bottom:318.675000px;}
.y74{bottom:321.195000px;}
.y30{bottom:327.675000px;}
.y98{bottom:338.655000px;}
.y4c{bottom:343.875000px;}
.y73{bottom:345.135000px;}
.y2f{bottom:351.615000px;}
.y97{bottom:363.675000px;}
.y4b{bottom:368.895000px;}
.y2e{bottom:376.635000px;}
.y96{bottom:388.875000px;}
.y72{bottom:392.655000px;}
.y4a{bottom:393.915000px;}
.y2d{bottom:401.655000px;}
.y95{bottom:412.635000px;}
.y71{bottom:416.415000px;}
.y49{bottom:417.855000px;}
.y2c{bottom:425.595000px;}
.y94{bottom:436.395000px;}
.y70{bottom:440.355000px;}
.y48{bottom:441.615000px;}
.y2b{bottom:449.355000px;}
.y93{bottom:461.595000px;}
.y6f{bottom:464.115000px;}
.y47{bottom:466.635000px;}
.y2a{bottom:473.115000px;}
.y92{bottom:486.615000px;}
.y6e{bottom:487.875000px;}
.y46{bottom:491.835000px;}
.y29{bottom:496.875000px;}
.y91{bottom:510.375000px;}
.y6d{bottom:511.635000px;}
.yaa{bottom:511.815000px;}
.y45{bottom:516.855000px;}
.y28{bottom:520.815000px;}
.y90{bottom:534.315000px;}
.y6c{bottom:535.575000px;}
.y44{bottom:540.615000px;}
.y27{bottom:544.575000px;}
.y6b{bottom:559.335000px;}
.y43{bottom:564.585000px;}
.y26{bottom:568.365000px;}
.y6a{bottom:583.125000px;}
.y42{bottom:588.345000px;}
.y25{bottom:592.125000px;}
.y69{bottom:606.885000px;}
.y8f{bottom:608.325000px;}
.y41{bottom:612.105000px;}
.y24{bottom:616.065000px;}
.y68{bottom:630.825000px;}
.y8e{bottom:633.345000px;}
.y40{bottom:635.865000px;}
.y23{bottom:639.825000px;}
.y67{bottom:654.585000px;}
.y8d{bottom:658.545000px;}
.y3f{bottom:659.805000px;}
.y22{bottom:663.585000px;}
.ya9{bottom:677.985000px;}
.y66{bottom:678.345000px;}
.y8c{bottom:683.565000px;}
.y3e{bottom:684.825000px;}
.y21{bottom:687.345000px;}
.ya8{bottom:701.745000px;}
.y65{bottom:702.105000px;}
.y8b{bottom:707.325000px;}
.y3d{bottom:710.025000px;}
.y20{bottom:711.285000px;}
.y64{bottom:726.045000px;}
.y8a{bottom:732.345000px;}
.y1f{bottom:734.685000px;}
.y3c{bottom:735.045000px;}
.y63{bottom:749.805000px;}
.y89{bottom:756.285000px;}
.y1e{bottom:758.805000px;}
.y62{bottom:773.565000px;}
.y88{bottom:780.045000px;}
.y1d{bottom:782.565000px;}
.y61{bottom:797.325000px;}
.y87{bottom:803.805000px;}
.y1c{bottom:806.325000px;}
.y60{bottom:821.085000px;}
.y86{bottom:827.565000px;}
.y1b{bottom:830.265000px;}
.y5f{bottom:845.025000px;}
.y85{bottom:851.550000px;}
.y1a{bottom:854.070000px;}
.y5e{bottom:868.830000px;}
.y84{bottom:875.310000px;}
.y19{bottom:877.830000px;}
.y5d{bottom:892.590000px;}
.y83{bottom:899.070000px;}
.y18{bottom:901.590000px;}
.ya7{bottom:916.350000px;}
.y5c{bottom:917.790000px;}
.y82{bottom:922.830000px;}
.y17{bottom:925.530000px;}
.ya6{bottom:940.290000px;}
.y5b{bottom:942.810000px;}
.y81{bottom:946.770000px;}
.y16{bottom:949.290000px;}
.ya5{bottom:965.310000px;}
.y5a{bottom:968.010000px;}
.y80{bottom:970.530000px;}
.y15{bottom:973.050000px;}
.ya4{bottom:990.510000px;}
.y59{bottom:993.030000px;}
.y7f{bottom:994.290000px;}
.y14{bottom:996.810000px;}
.ya3{bottom:1014.270000px;}
.y58{bottom:1016.790000px;}
.y7e{bottom:1018.050000px;}
.y13{bottom:1020.750000px;}
.ya2{bottom:1039.290000px;}
.y57{bottom:1040.730000px;}
.y7d{bottom:1041.990000px;}
.y12{bottom:1044.150000px;}
.y3b{bottom:1044.510000px;}
.ya1{bottom:1064.490000px;}
.y56{bottom:1065.750000px;}
.y11{bottom:1068.270000px;}
.y7c{bottom:1089.510000px;}
.y55{bottom:1090.770000px;}
.y10{bottom:1091.670000px;}
.y3a{bottom:1092.030000px;}
.y54{bottom:1114.710000px;}
.yf{bottom:1115.610000px;}
.y39{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h8{height:33.120000px;}
.hb{height:59.343750px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.hc{height:74.004654px;}
.h4{height:82.635820px;}
.h2{height:109.800000px;}
.h5{height:129.250898px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:16.920000px;}
.w8{width:17.100000px;}
.w7{width:17.136000px;}
.w6{width:49.680000px;}
.w4{width:63.570000px;}
.wa{width:90.900000px;}
.w2{width:134.136000px;}
.w3{width:695.265000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.800000px;}
.x9{left:8.100000px;}
.x7{left:9.360000px;}
.x6{left:16.914000px;}
.x2{left:18.719973px;}
.x1{left:34.559970px;}
.x3{left:39.599973px;}
.x5{left:61.554000px;}
.xd{left:71.685000px;}
.x1b{left:116.315987px;}
.x4{left:134.136000px;}
.xa{left:138.275987px;}
.x1a{left:170.309987px;}
.x19{left:180.749987px;}
.x17{left:191.369987px;}
.x18{left:213.689987px;}
.x13{left:248.429987px;}
.x14{left:327.854987px;}
.x16{left:338.294987px;}
.x15{left:353.954987px;}
.xb{left:629.925000px;}
.xc{left:679.605000px;}
.xe{left:696.750000px;}
.xf{left:713.850000px;}
.x10{left:730.770000px;}
.x11{left:747.870000px;}
.x8{left:829.410000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.920000pt;}
.lsa{letter-spacing:3.840000pt;}
.ls6{letter-spacing:5.120000pt;}
.lsd{letter-spacing:6.528000pt;}
.lse{letter-spacing:8.320000pt;}
.ls10{letter-spacing:9.088000pt;}
.ls4{letter-spacing:13.440000pt;}
.ls5{letter-spacing:20.480000pt;}
.ls1{letter-spacing:23.840000pt;}
.ls2{letter-spacing:28.800000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-9.472000pt;}
._16{margin-left:-2.164053pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.198080pt;}
._4{width:2.486187pt;}
._a{width:3.421440pt;}
._3{width:4.416000pt;}
._2{width:5.440000pt;}
._9{width:6.481920pt;}
._7{width:8.000000pt;}
._8{width:9.070507pt;}
._18{width:10.288213pt;}
._17{width:11.648000pt;}
._5{width:13.376000pt;}
._6{width:14.937173pt;}
._f{width:17.472000pt;}
._10{width:18.513920pt;}
._14{width:19.520000pt;}
._13{width:20.448000pt;}
._12{width:21.614080pt;}
._b{width:23.680000pt;}
._11{width:26.816000pt;}
._c{width:28.608000pt;}
._d{width:29.898667pt;}
._e{width:34.304000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y7{bottom:18.400000pt;}
.y4{bottom:24.800000pt;}
.y6{bottom:40.320000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.ya{bottom:80.992000pt;}
.y38{bottom:121.952000pt;}
.ya0{bottom:124.832000pt;}
.y7b{bottom:135.226667pt;}
.y37{bottom:143.226667pt;}
.y9f{bottom:147.066667pt;}
.y53{bottom:153.946667pt;}
.y7a{bottom:157.466667pt;}
.y36{bottom:164.346667pt;}
.y9e{bottom:168.186667pt;}
.y52{bottom:175.226667pt;}
.y79{bottom:179.706667pt;}
.y35{bottom:185.466667pt;}
.y9d{bottom:189.466667pt;}
.y51{bottom:196.346667pt;}
.y78{bottom:200.986667pt;}
.y34{bottom:206.586667pt;}
.y9c{bottom:211.706667pt;}
.y50{bottom:217.466667pt;}
.y77{bottom:222.106667pt;}
.y33{bottom:227.866667pt;}
.y9b{bottom:234.106667pt;}
.y4f{bottom:238.586667pt;}
.y76{bottom:243.226667pt;}
.y32{bottom:249.026667pt;}
.y9a{bottom:256.386667pt;}
.y4e{bottom:261.026667pt;}
.y75{bottom:264.386667pt;}
.y31{bottom:270.146667pt;}
.y99{bottom:278.786667pt;}
.y4d{bottom:283.266667pt;}
.y74{bottom:285.506667pt;}
.y30{bottom:291.266667pt;}
.y98{bottom:301.026667pt;}
.y4c{bottom:305.666667pt;}
.y73{bottom:306.786667pt;}
.y2f{bottom:312.546667pt;}
.y97{bottom:323.266667pt;}
.y4b{bottom:327.906667pt;}
.y2e{bottom:334.786667pt;}
.y96{bottom:345.666667pt;}
.y72{bottom:349.026667pt;}
.y4a{bottom:350.146667pt;}
.y2d{bottom:357.026667pt;}
.y95{bottom:366.786667pt;}
.y71{bottom:370.146667pt;}
.y49{bottom:371.426667pt;}
.y2c{bottom:378.306667pt;}
.y94{bottom:387.906667pt;}
.y70{bottom:391.426667pt;}
.y48{bottom:392.546667pt;}
.y2b{bottom:399.426667pt;}
.y93{bottom:410.306667pt;}
.y6f{bottom:412.546667pt;}
.y47{bottom:414.786667pt;}
.y2a{bottom:420.546667pt;}
.y92{bottom:432.546667pt;}
.y6e{bottom:433.666667pt;}
.y46{bottom:437.186667pt;}
.y29{bottom:441.666667pt;}
.y91{bottom:453.666667pt;}
.y6d{bottom:454.786667pt;}
.yaa{bottom:454.946667pt;}
.y45{bottom:459.426667pt;}
.y28{bottom:462.946667pt;}
.y90{bottom:474.946667pt;}
.y6c{bottom:476.066667pt;}
.y44{bottom:480.546667pt;}
.y27{bottom:484.066667pt;}
.y6b{bottom:497.186667pt;}
.y43{bottom:501.853333pt;}
.y26{bottom:505.213333pt;}
.y6a{bottom:518.333333pt;}
.y42{bottom:522.973333pt;}
.y25{bottom:526.333333pt;}
.y69{bottom:539.453333pt;}
.y8f{bottom:540.733333pt;}
.y41{bottom:544.093333pt;}
.y24{bottom:547.613333pt;}
.y68{bottom:560.733333pt;}
.y8e{bottom:562.973333pt;}
.y40{bottom:565.213333pt;}
.y23{bottom:568.733333pt;}
.y67{bottom:581.853333pt;}
.y8d{bottom:585.373333pt;}
.y3f{bottom:586.493333pt;}
.y22{bottom:589.853333pt;}
.ya9{bottom:602.653333pt;}
.y66{bottom:602.973333pt;}
.y8c{bottom:607.613333pt;}
.y3e{bottom:608.733333pt;}
.y21{bottom:610.973333pt;}
.ya8{bottom:623.773333pt;}
.y65{bottom:624.093333pt;}
.y8b{bottom:628.733333pt;}
.y3d{bottom:631.133333pt;}
.y20{bottom:632.253333pt;}
.y64{bottom:645.373333pt;}
.y8a{bottom:650.973333pt;}
.y1f{bottom:653.053333pt;}
.y3c{bottom:653.373333pt;}
.y63{bottom:666.493333pt;}
.y89{bottom:672.253333pt;}
.y1e{bottom:674.493333pt;}
.y62{bottom:687.613333pt;}
.y88{bottom:693.373333pt;}
.y1d{bottom:695.613333pt;}
.y61{bottom:708.733333pt;}
.y87{bottom:714.493333pt;}
.y1c{bottom:716.733333pt;}
.y60{bottom:729.853333pt;}
.y86{bottom:735.613333pt;}
.y1b{bottom:738.013333pt;}
.y5f{bottom:751.133333pt;}
.y85{bottom:756.933333pt;}
.y1a{bottom:759.173333pt;}
.y5e{bottom:772.293333pt;}
.y84{bottom:778.053333pt;}
.y19{bottom:780.293333pt;}
.y5d{bottom:793.413333pt;}
.y83{bottom:799.173333pt;}
.y18{bottom:801.413333pt;}
.ya7{bottom:814.533333pt;}
.y5c{bottom:815.813333pt;}
.y82{bottom:820.293333pt;}
.y17{bottom:822.693333pt;}
.ya6{bottom:835.813333pt;}
.y5b{bottom:838.053333pt;}
.y81{bottom:841.573333pt;}
.y16{bottom:843.813333pt;}
.ya5{bottom:858.053333pt;}
.y5a{bottom:860.453333pt;}
.y80{bottom:862.693333pt;}
.y15{bottom:864.933333pt;}
.ya4{bottom:880.453333pt;}
.y59{bottom:882.693333pt;}
.y7f{bottom:883.813333pt;}
.y14{bottom:886.053333pt;}
.ya3{bottom:901.573333pt;}
.y58{bottom:903.813333pt;}
.y7e{bottom:904.933333pt;}
.y13{bottom:907.333333pt;}
.ya2{bottom:923.813333pt;}
.y57{bottom:925.093333pt;}
.y7d{bottom:926.213333pt;}
.y12{bottom:928.133333pt;}
.y3b{bottom:928.453333pt;}
.ya1{bottom:946.213333pt;}
.y56{bottom:947.333333pt;}
.y11{bottom:949.573333pt;}
.y7c{bottom:968.453333pt;}
.y55{bottom:969.573333pt;}
.y10{bottom:970.373333pt;}
.y3a{bottom:970.693333pt;}
.y54{bottom:990.853333pt;}
.yf{bottom:991.653333pt;}
.y39{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h8{height:29.440000pt;}
.hb{height:52.750000pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.hc{height:65.781915pt;}
.h4{height:73.454062pt;}
.h2{height:97.600000pt;}
.h5{height:114.889687pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:15.040000pt;}
.w8{width:15.200000pt;}
.w7{width:15.232000pt;}
.w6{width:44.160000pt;}
.w4{width:56.506667pt;}
.wa{width:80.800000pt;}
.w2{width:119.232000pt;}
.w3{width:618.013333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.600000pt;}
.x9{left:7.200000pt;}
.x7{left:8.320000pt;}
.x6{left:15.034667pt;}
.x2{left:16.639976pt;}
.x1{left:30.719974pt;}
.x3{left:35.199976pt;}
.x5{left:54.714667pt;}
.xd{left:63.720000pt;}
.x1b{left:103.391988pt;}
.x4{left:119.232000pt;}
.xa{left:122.911988pt;}
.x1a{left:151.386655pt;}
.x19{left:160.666655pt;}
.x17{left:170.106655pt;}
.x18{left:189.946655pt;}
.x13{left:220.826655pt;}
.x14{left:291.426655pt;}
.x16{left:300.706655pt;}
.x15{left:314.626655pt;}
.xb{left:559.933333pt;}
.xc{left:604.093333pt;}
.xe{left:619.333333pt;}
.xf{left:634.533333pt;}
.x10{left:649.573333pt;}
.x11{left:664.773333pt;}
.x8{left:737.253333pt;}
}




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