
    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_a92b6c8fd4282211c1435645.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_42bf3261296073fc75217928.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_d11153ebaa0939b6d9c4fa39.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6fb18e19537137240df9b542.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_ce2fe88f5878cbebf3397299.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_3189c71f52ba7a10b284ee1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056152;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_dc19b3fa69c915eaa65602f0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_caf575ae38e6c85d1dedb6f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.lsb{letter-spacing:-0.618000px;}
.ls10{letter-spacing:-0.597600px;}
.ls5{letter-spacing:-0.529200px;}
.ls3{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.247800px;}
.ls12{letter-spacing:-0.233400px;}
.ls1c{letter-spacing:-0.207600px;}
.ls1f{letter-spacing:-0.172800px;}
.lsa{letter-spacing:-0.094800px;}
.ls14{letter-spacing:-0.043200px;}
.ls8{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.023040px;}
.ls11{letter-spacing:0.075000px;}
.ls17{letter-spacing:0.089400px;}
.ls1d{letter-spacing:0.100800px;}
.ls20{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.132600px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.190800px;}
.ls13{letter-spacing:0.308400px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:27.665280px;}
.ls1b{letter-spacing:39.161280px;}
.ls9{letter-spacing:39.185280px;}
.ls19{letter-spacing:39.881280px;}
.lse{letter-spacing:39.905280px;}
.ls16{letter-spacing:43.481280px;}
.lsd{letter-spacing:43.505280px;}
.ls1a{letter-spacing:47.081280px;}
.lsf{letter-spacing:47.105280px;}
.ls15{letter-spacing:55.745280px;}
.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:-65.934600px;}
.wsb{word-spacing:-14.881200px;}
.wsd{word-spacing:-14.662200px;}
.ws9{word-spacing:-14.647800px;}
.ws8{word-spacing:-14.595840px;}
.ws3{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.529600px;}
.wsa{word-spacing:-14.339400px;}
.ws0{word-spacing:-13.140000px;}
.ws1{word-spacing:-10.612800px;}
.ws2{word-spacing:-9.187200px;}
.ws7{word-spacing:-9.092400px;}
.ws4{word-spacing:-7.920000px;}
.ws5{word-spacing:-7.884000px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-5.260320px;}
._18{margin-left:-3.974400px;}
._11{margin-left:-2.689200px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._4{width:2.428800px;}
._10{width:4.003920px;}
._7{width:5.378400px;}
._8{width:6.394320px;}
._9{width:7.476480px;}
._a{width:9.078000px;}
._f{width:10.816560px;}
._e{width:11.952000px;}
._1e{width:13.115520px;}
._12{width:14.820480px;}
._1f{width:15.974160px;}
._17{width:17.081760px;}
._b{width:18.884160px;}
._14{width:20.064240px;}
._13{width:21.222240px;}
._d{width:22.437600px;}
._c{width:23.724720px;}
._22{width:25.049040px;}
._21{width:26.827200px;}
._1c{width:28.483200px;}
._1d{width:29.496240px;}
._15{width:30.801600px;}
._16{width:31.927680px;}
._20{width:33.041280px;}
._26{width:40.511520px;}
._25{width:41.598720px;}
._23{width:43.718400px;}
._24{width:44.729520px;}
._1a{width:47.621280px;}
._2b{width:48.738240px;}
._2a{width:49.831920px;}
._28{width:60.810480px;}
._0{width:75.000000px;}
._27{width:88.542480px;}
._29{width:176.386800px;}
._3{width:181.620000px;}
._5{width:197.349840px;}
._6{width:202.852800px;}
._1b{width:1056.007200px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y55{bottom:-32.580000px;}
.y54{bottom:-11.880000px;}
.y0{bottom:0.000000px;}
.y53{bottom:6.840000px;}
.y52{bottom:17.460000px;}
.y51{bottom:28.080000px;}
.y50{bottom:38.520000px;}
.y4f{bottom:56.160000px;}
.ya{bottom:56.520000px;}
.y9{bottom:70.596000px;}
.y8{bottom:84.636000px;}
.y7{bottom:98.676000px;}
.y4e{bottom:110.340000px;}
.y6{bottom:112.896000px;}
.y86{bottom:115.596000px;}
.y4d{bottom:129.780000px;}
.y85{bottom:137.916000px;}
.y3f{bottom:140.076000px;}
.y4c{bottom:143.820000px;}
.y4b{bottom:158.040000px;}
.y84{bottom:160.050000px;}
.y3e{bottom:162.390000px;}
.y4a{bottom:172.080000px;}
.y83{bottom:182.370000px;}
.y3d{bottom:184.530000px;}
.y49{bottom:186.120000px;}
.y48{bottom:200.160000px;}
.y82{bottom:204.510000px;}
.y3c{bottom:206.850000px;}
.y47{bottom:215.460000px;}
.y81{bottom:226.830000px;}
.y3b{bottom:228.990000px;}
.y46{bottom:234.945000px;}
.y45{bottom:248.985000px;}
.y80{bottom:249.150000px;}
.y3a{bottom:251.310000px;}
.y44{bottom:263.205000px;}
.y7f{bottom:271.290000px;}
.y39{bottom:273.630000px;}
.y43{bottom:277.245000px;}
.y42{bottom:291.285000px;}
.y7e{bottom:293.610000px;}
.y38{bottom:295.770000px;}
.y41{bottom:305.685000px;}
.y7d{bottom:315.750000px;}
.y37{bottom:318.090000px;}
.y7c{bottom:338.115000px;}
.y36{bottom:340.275000px;}
.y7b{bottom:360.255000px;}
.y35{bottom:362.595000px;}
.y34{bottom:381.855000px;}
.y7a{bottom:382.575000px;}
.y33{bottom:399.495000px;}
.y79{bottom:404.895000px;}
.y32{bottom:416.955000px;}
.y78{bottom:427.035000px;}
.y31{bottom:434.595000px;}
.y77{bottom:449.355000px;}
.y30{bottom:452.235000px;}
.y2f{bottom:469.695000px;}
.y76{bottom:471.495000px;}
.y2e{bottom:487.335000px;}
.y75{bottom:493.815000px;}
.y2d{bottom:504.975000px;}
.y74{bottom:516.135000px;}
.y2c{bottom:522.615000px;}
.y73{bottom:538.275000px;}
.y2b{bottom:540.075000px;}
.y2a{bottom:557.715000px;}
.y72{bottom:560.595000px;}
.y29{bottom:575.355000px;}
.y71{bottom:582.735000px;}
.y28{bottom:592.815000px;}
.y70{bottom:605.085000px;}
.y27{bottom:612.645000px;}
.y6f{bottom:627.405000px;}
.y26{bottom:630.285000px;}
.y40{bottom:640.905000px;}
.y25{bottom:647.925000px;}
.y6e{bottom:649.545000px;}
.y24{bottom:665.565000px;}
.y6d{bottom:671.865000px;}
.y23{bottom:683.025000px;}
.y6c{bottom:694.005000px;}
.y22{bottom:700.665000px;}
.y6b{bottom:716.325000px;}
.y21{bottom:718.305000px;}
.y20{bottom:735.765000px;}
.y6a{bottom:738.465000px;}
.y1f{bottom:753.405000px;}
.y69{bottom:760.785000px;}
.y1e{bottom:771.045000px;}
.y68{bottom:783.105000px;}
.y1d{bottom:788.505000px;}
.y67{bottom:805.245000px;}
.y1c{bottom:806.145000px;}
.y1b{bottom:823.785000px;}
.y66{bottom:827.565000px;}
.y1a{bottom:841.425000px;}
.y65{bottom:849.705000px;}
.y19{bottom:858.885000px;}
.y64{bottom:872.070000px;}
.y18{bottom:876.570000px;}
.y17{bottom:894.210000px;}
.y63{bottom:894.390000px;}
.y16{bottom:911.670000px;}
.y62{bottom:916.530000px;}
.y15{bottom:929.310000px;}
.y61{bottom:938.850000px;}
.y14{bottom:946.950000px;}
.y60{bottom:960.990000px;}
.y13{bottom:964.410000px;}
.y5f{bottom:983.310000px;}
.y12{bottom:987.090000px;}
.y11{bottom:1000.590000px;}
.y5e{bottom:1005.450000px;}
.y10{bottom:1019.850000px;}
.y5d{bottom:1027.770000px;}
.yf{bottom:1038.210000px;}
.y5c{bottom:1050.090000px;}
.ye{bottom:1053.330000px;}
.yd{bottom:1071.690000px;}
.y5b{bottom:1072.230000px;}
.yc{bottom:1087.350000px;}
.y5a{bottom:1094.550000px;}
.yb{bottom:1109.490000px;}
.y59{bottom:1116.690000px;}
.y5{bottom:1131.990000px;}
.y58{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y57{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y56{bottom:1197.540000px;}
.hc{height:30.480469px;}
.h7{height:33.480703px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.ha{height:50.273438px;}
.h8{height:50.597578px;}
.hb{height:50.800781px;}
.h5{height:56.084062px;}
.hd{height:58.819922px;}
.h6{height:65.837812px;}
.h9{height:318.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:209.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:102.275987px;}
.x1{left:108.035987px;}
.x6{left:112.355987px;}
.x4{left:114.515987px;}
.x2{left:116.135987px;}
.xb{left:134.994000px;}
.xd{left:140.075987px;}
.xf{left:144.935987px;}
.x8{left:148.355987px;}
.xa{left:162.029987px;}
.x10{left:166.889987px;}
.xc{left:172.649987px;}
.x13{left:189.029987px;}
.x12{left:193.889987px;}
.x5{left:208.469987px;}
.x14{left:216.029987px;}
.x7{left:322.454987px;}
.x9{left:335.774987px;}
.x3{left:446.474987px;}
.xe{left:531.644987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.549333pt;}
.ls10{letter-spacing:-0.531200pt;}
.ls5{letter-spacing:-0.470400pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.220267pt;}
.ls12{letter-spacing:-0.207467pt;}
.ls1c{letter-spacing:-0.184533pt;}
.ls1f{letter-spacing:-0.153600pt;}
.lsa{letter-spacing:-0.084267pt;}
.ls14{letter-spacing:-0.038400pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.020480pt;}
.ls11{letter-spacing:0.066667pt;}
.ls17{letter-spacing:0.079467pt;}
.ls1d{letter-spacing:0.089600pt;}
.ls20{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.117867pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.169600pt;}
.ls13{letter-spacing:0.274133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:24.591360pt;}
.ls1b{letter-spacing:34.810027pt;}
.ls9{letter-spacing:34.831360pt;}
.ls19{letter-spacing:35.450027pt;}
.lse{letter-spacing:35.471360pt;}
.ls16{letter-spacing:38.650027pt;}
.lsd{letter-spacing:38.671360pt;}
.ls1a{letter-spacing:41.850027pt;}
.lsf{letter-spacing:41.871360pt;}
.ls15{letter-spacing:49.551360pt;}
.wse{word-spacing:-58.608533pt;}
.wsb{word-spacing:-13.227733pt;}
.wsd{word-spacing:-13.033067pt;}
.ws9{word-spacing:-13.020267pt;}
.ws8{word-spacing:-12.974080pt;}
.ws3{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.915200pt;}
.wsa{word-spacing:-12.746133pt;}
.ws0{word-spacing:-11.680000pt;}
.ws1{word-spacing:-9.433600pt;}
.ws2{word-spacing:-8.166400pt;}
.ws7{word-spacing:-8.082133pt;}
.ws4{word-spacing:-7.040000pt;}
.ws5{word-spacing:-7.008000pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-4.675840pt;}
._18{margin-left:-3.532800pt;}
._11{margin-left:-2.390400pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._4{width:2.158933pt;}
._10{width:3.559040pt;}
._7{width:4.780800pt;}
._8{width:5.683840pt;}
._9{width:6.645760pt;}
._a{width:8.069333pt;}
._f{width:9.614720pt;}
._e{width:10.624000pt;}
._1e{width:11.658240pt;}
._12{width:13.173760pt;}
._1f{width:14.199253pt;}
._17{width:15.183787pt;}
._b{width:16.785920pt;}
._14{width:17.834880pt;}
._13{width:18.864213pt;}
._d{width:19.944533pt;}
._c{width:21.088640pt;}
._22{width:22.265813pt;}
._21{width:23.846400pt;}
._1c{width:25.318400pt;}
._1d{width:26.218880pt;}
._15{width:27.379200pt;}
._16{width:28.380160pt;}
._20{width:29.370027pt;}
._26{width:36.010240pt;}
._25{width:36.976640pt;}
._23{width:38.860800pt;}
._24{width:39.759573pt;}
._1a{width:42.330027pt;}
._2b{width:43.322880pt;}
._2a{width:44.295040pt;}
._28{width:54.053760pt;}
._0{width:66.666667pt;}
._27{width:78.704427pt;}
._29{width:156.788267pt;}
._3{width:161.440000pt;}
._5{width:175.422080pt;}
._6{width:180.313600pt;}
._1b{width:938.673067pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y55{bottom:-28.960000pt;}
.y54{bottom:-10.560000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:6.080000pt;}
.y52{bottom:15.520000pt;}
.y51{bottom:24.960000pt;}
.y50{bottom:34.240000pt;}
.y4f{bottom:49.920000pt;}
.ya{bottom:50.240000pt;}
.y9{bottom:62.752000pt;}
.y8{bottom:75.232000pt;}
.y7{bottom:87.712000pt;}
.y4e{bottom:98.080000pt;}
.y6{bottom:100.352000pt;}
.y86{bottom:102.752000pt;}
.y4d{bottom:115.360000pt;}
.y85{bottom:122.592000pt;}
.y3f{bottom:124.512000pt;}
.y4c{bottom:127.840000pt;}
.y4b{bottom:140.480000pt;}
.y84{bottom:142.266667pt;}
.y3e{bottom:144.346667pt;}
.y4a{bottom:152.960000pt;}
.y83{bottom:162.106667pt;}
.y3d{bottom:164.026667pt;}
.y49{bottom:165.440000pt;}
.y48{bottom:177.920000pt;}
.y82{bottom:181.786667pt;}
.y3c{bottom:183.866667pt;}
.y47{bottom:191.520000pt;}
.y81{bottom:201.626667pt;}
.y3b{bottom:203.546667pt;}
.y46{bottom:208.840000pt;}
.y45{bottom:221.320000pt;}
.y80{bottom:221.466667pt;}
.y3a{bottom:223.386667pt;}
.y44{bottom:233.960000pt;}
.y7f{bottom:241.146667pt;}
.y39{bottom:243.226667pt;}
.y43{bottom:246.440000pt;}
.y42{bottom:258.920000pt;}
.y7e{bottom:260.986667pt;}
.y38{bottom:262.906667pt;}
.y41{bottom:271.720000pt;}
.y7d{bottom:280.666667pt;}
.y37{bottom:282.746667pt;}
.y7c{bottom:300.546667pt;}
.y36{bottom:302.466667pt;}
.y7b{bottom:320.226667pt;}
.y35{bottom:322.306667pt;}
.y34{bottom:339.426667pt;}
.y7a{bottom:340.066667pt;}
.y33{bottom:355.106667pt;}
.y79{bottom:359.906667pt;}
.y32{bottom:370.626667pt;}
.y78{bottom:379.586667pt;}
.y31{bottom:386.306667pt;}
.y77{bottom:399.426667pt;}
.y30{bottom:401.986667pt;}
.y2f{bottom:417.506667pt;}
.y76{bottom:419.106667pt;}
.y2e{bottom:433.186667pt;}
.y75{bottom:438.946667pt;}
.y2d{bottom:448.866667pt;}
.y74{bottom:458.786667pt;}
.y2c{bottom:464.546667pt;}
.y73{bottom:478.466667pt;}
.y2b{bottom:480.066667pt;}
.y2a{bottom:495.746667pt;}
.y72{bottom:498.306667pt;}
.y29{bottom:511.426667pt;}
.y71{bottom:517.986667pt;}
.y28{bottom:526.946667pt;}
.y70{bottom:537.853333pt;}
.y27{bottom:544.573333pt;}
.y6f{bottom:557.693333pt;}
.y26{bottom:560.253333pt;}
.y40{bottom:569.693333pt;}
.y25{bottom:575.933333pt;}
.y6e{bottom:577.373333pt;}
.y24{bottom:591.613333pt;}
.y6d{bottom:597.213333pt;}
.y23{bottom:607.133333pt;}
.y6c{bottom:616.893333pt;}
.y22{bottom:622.813333pt;}
.y6b{bottom:636.733333pt;}
.y21{bottom:638.493333pt;}
.y20{bottom:654.013333pt;}
.y6a{bottom:656.413333pt;}
.y1f{bottom:669.693333pt;}
.y69{bottom:676.253333pt;}
.y1e{bottom:685.373333pt;}
.y68{bottom:696.093333pt;}
.y1d{bottom:700.893333pt;}
.y67{bottom:715.773333pt;}
.y1c{bottom:716.573333pt;}
.y1b{bottom:732.253333pt;}
.y66{bottom:735.613333pt;}
.y1a{bottom:747.933333pt;}
.y65{bottom:755.293333pt;}
.y19{bottom:763.453333pt;}
.y64{bottom:775.173333pt;}
.y18{bottom:779.173333pt;}
.y17{bottom:794.853333pt;}
.y63{bottom:795.013333pt;}
.y16{bottom:810.373333pt;}
.y62{bottom:814.693333pt;}
.y15{bottom:826.053333pt;}
.y61{bottom:834.533333pt;}
.y14{bottom:841.733333pt;}
.y60{bottom:854.213333pt;}
.y13{bottom:857.253333pt;}
.y5f{bottom:874.053333pt;}
.y12{bottom:877.413333pt;}
.y11{bottom:889.413333pt;}
.y5e{bottom:893.733333pt;}
.y10{bottom:906.533333pt;}
.y5d{bottom:913.573333pt;}
.yf{bottom:922.853333pt;}
.y5c{bottom:933.413333pt;}
.ye{bottom:936.293333pt;}
.yd{bottom:952.613333pt;}
.y5b{bottom:953.093333pt;}
.yc{bottom:966.533333pt;}
.y5a{bottom:972.933333pt;}
.yb{bottom:986.213333pt;}
.y59{bottom:992.613333pt;}
.y5{bottom:1006.213333pt;}
.y58{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y57{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y56{bottom:1064.480000pt;}
.hc{height:27.093750pt;}
.h7{height:29.760625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.ha{height:44.687500pt;}
.h8{height:44.975625pt;}
.hb{height:45.156250pt;}
.h5{height:49.852500pt;}
.hd{height:52.284375pt;}
.h6{height:58.522500pt;}
.h9{height:283.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:185.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:90.911988pt;}
.x1{left:96.031988pt;}
.x6{left:99.871988pt;}
.x4{left:101.791988pt;}
.x2{left:103.231988pt;}
.xb{left:119.994667pt;}
.xd{left:124.511988pt;}
.xf{left:128.831988pt;}
.x8{left:131.871988pt;}
.xa{left:144.026655pt;}
.x10{left:148.346655pt;}
.xc{left:153.466655pt;}
.x13{left:168.026655pt;}
.x12{left:172.346655pt;}
.x5{left:185.306655pt;}
.x14{left:192.026655pt;}
.x7{left:286.626655pt;}
.x9{left:298.466655pt;}
.x3{left:396.866655pt;}
.xe{left:472.573322pt;}
}




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