
    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_f291542754a969eff4b101a3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8970e7763c8e83e005b271b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8e9db3f2c8de6d40ce5366a4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_28b60ab3c9f0d46a17c2e589.woff2')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_f23ddfe3f2831bf087a3996e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b6a2a0d0ff1b05dbd560841c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_972bef6c97d44ab47c2f1d72.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107910;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_6fef6cd09afb5251f91d7a21.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.123047;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_bdd9e68dc6b6201e2e1cfc10.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_f31f0e285ad0cab5add0f3f5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1f9519730ae10bfeb57daf22.woff2')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;}
.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);}
.v3{vertical-align:-70.560000px;}
.v1{vertical-align:-69.240000px;}
.v2{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-1.260000px;}
.ls40{letter-spacing:-1.080000px;}
.ls3f{letter-spacing:-0.612000px;}
.ls47{letter-spacing:-0.540000px;}
.ls41{letter-spacing:-0.413400px;}
.ls29{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.291600px;}
.lsa{letter-spacing:-0.206400px;}
.ls28{letter-spacing:-0.129600px;}
.ls3d{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.058320px;}
.ls2c{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.010080px;}
.ls1c{letter-spacing:0.018720px;}
.ls27{letter-spacing:0.053280px;}
.ls31{letter-spacing:0.066960px;}
.ls22{letter-spacing:0.106560px;}
.ls42{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.158400px;}
.ls2{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.182160px;}
.ls23{letter-spacing:0.226560px;}
.ls5{letter-spacing:0.259920px;}
.ls35{letter-spacing:0.286560px;}
.ls37{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.428400px;}
.ls15{letter-spacing:0.439920px;}
.ls39{letter-spacing:0.480000px;}
.ls25{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.666000px;}
.ls3b{letter-spacing:0.666720px;}
.ls34{letter-spacing:0.706080px;}
.ls3c{letter-spacing:0.730080px;}
.ls46{letter-spacing:0.774000px;}
.ls30{letter-spacing:0.826560px;}
.ls32{letter-spacing:0.900000px;}
.ls3e{letter-spacing:0.924000px;}
.ls43{letter-spacing:0.978000px;}
.ls38{letter-spacing:1.080000px;}
.ls2f{letter-spacing:1.620000px;}
.ls33{letter-spacing:2.106720px;}
.lsd{letter-spacing:2.340000px;}
.ls12{letter-spacing:3.036000px;}
.ls26{letter-spacing:3.060000px;}
.ls4{letter-spacing:3.780000px;}
.ls36{letter-spacing:3.960000px;}
.ls13{letter-spacing:4.500000px;}
.lsf{letter-spacing:5.220000px;}
.lse{letter-spacing:5.340000px;}
.ls19{letter-spacing:5.940000px;}
.ls3a{letter-spacing:6.060000px;}
.ls1a{letter-spacing:6.660000px;}
.ls1e{letter-spacing:7.380000px;}
.ls18{letter-spacing:8.100000px;}
.ls14{letter-spacing:8.820000px;}
.ls1b{letter-spacing:9.540000px;}
.ls45{letter-spacing:10.260000px;}
.ls16{letter-spacing:10.980000px;}
.ls1d{letter-spacing:11.700000px;}
.ls2e{letter-spacing:14.580000px;}
.ls44{letter-spacing:18.180000px;}
.ls17{letter-spacing:19.620000px;}
.ls24{letter-spacing:26.820000px;}
.ls10{letter-spacing:28.980000px;}
.ls2d{letter-spacing:31.602720px;}
.ls20{letter-spacing:31.626720px;}
.ls3{letter-spacing:38.802720px;}
.ls1f{letter-spacing:301.140000px;}
.ls1{letter-spacing:556.860000px;}
.ls0{letter-spacing:596.460000px;}
.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:-16.020000px;}
.wsf{word-spacing:-15.918000px;}
.wsc{word-spacing:-15.864000px;}
.ws10{word-spacing:-15.714000px;}
.ws8{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.098400px;}
.ws9{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.810400px;}
.ws3{word-spacing:-14.733600px;}
.ws6{word-spacing:-14.648400px;}
.wsd{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.447440px;}
.ws5{word-spacing:0.000000px;}
._1f{margin-left:-7.293120px;}
._f{margin-left:-3.466080px;}
._5{margin-left:-2.055840px;}
._3{margin-left:-1.003920px;}
._1{width:1.075680px;}
._2{width:2.607600px;}
._4{width:3.844080px;}
._d{width:5.345040px;}
._8{width:6.454080px;}
._11{width:7.649280px;}
._9{width:8.844480px;}
._a{width:9.884400px;}
._7{width:11.728320px;}
._6{width:12.789120px;}
._14{width:13.804560px;}
._12{width:16.613280px;}
._18{width:17.748720px;}
._10{width:19.063440px;}
._e{width:20.796480px;}
._15{width:22.230720px;}
._b{width:23.246640px;}
._c{width:24.382080px;}
._19{width:25.445760px;}
._1b{width:26.951760px;}
._17{width:28.146960px;}
._1a{width:29.700720px;}
._1d{width:31.134960px;}
._1c{width:32.509440px;}
._20{width:33.644880px;}
._16{width:36.393840px;}
._21{width:37.947600px;}
._1e{width:45.835920px;}
._0{width:767.850240px;}
._13{width:849.360000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.160000px;}
.y42{bottom:88.380000px;}
.y40{bottom:88.740000px;}
.y3f{bottom:106.020000px;}
.y3e{bottom:123.300000px;}
.y4f{bottom:140.040000px;}
.y3d{bottom:140.400000px;}
.y3c{bottom:157.680000px;}
.y3b{bottom:174.990000px;}
.y3a{bottom:192.270000px;}
.y39{bottom:209.550000px;}
.y38{bottom:226.830000px;}
.y37{bottom:243.930000px;}
.y36{bottom:261.210000px;}
.y35{bottom:278.490000px;}
.y34{bottom:295.770000px;}
.y33{bottom:313.050000px;}
.y32{bottom:330.330000px;}
.y31{bottom:347.430000px;}
.y30{bottom:364.710000px;}
.y2f{bottom:381.990000px;}
.y2e{bottom:399.270000px;}
.y2d{bottom:416.595000px;}
.y2c{bottom:433.695000px;}
.y2b{bottom:450.975000px;}
.y2a{bottom:468.255000px;}
.y29{bottom:485.535000px;}
.y28{bottom:502.815000px;}
.y27{bottom:520.095000px;}
.y26{bottom:537.195000px;}
.y25{bottom:554.475000px;}
.y24{bottom:571.755000px;}
.y23{bottom:589.035000px;}
.y22{bottom:605.955000px;}
.y41{bottom:606.315000px;}
.y21{bottom:623.595000px;}
.y20{bottom:640.695000px;}
.y1f{bottom:658.005000px;}
.y1e{bottom:675.285000px;}
.y1d{bottom:692.205000px;}
.y4b{bottom:692.565000px;}
.y1c{bottom:709.845000px;}
.y1b{bottom:726.945000px;}
.y1a{bottom:744.225000px;}
.y19{bottom:761.505000px;}
.y18{bottom:778.425000px;}
.y4a{bottom:778.785000px;}
.y17{bottom:796.065000px;}
.y16{bottom:813.345000px;}
.y15{bottom:830.445000px;}
.y14{bottom:847.725000px;}
.y50{bottom:864.645000px;}
.y13{bottom:865.005000px;}
.y12{bottom:881.925000px;}
.y49{bottom:882.285000px;}
.y11{bottom:899.610000px;}
.y10{bottom:916.890000px;}
.yf{bottom:933.990000px;}
.ye{bottom:951.270000px;}
.yd{bottom:968.550000px;}
.y4e{bottom:985.470000px;}
.y48{bottom:985.830000px;}
.yc{bottom:1002.750000px;}
.y47{bottom:1003.110000px;}
.yb{bottom:1020.030000px;}
.y46{bottom:1020.390000px;}
.ya{bottom:1037.130000px;}
.y45{bottom:1037.490000px;}
.y9{bottom:1054.770000px;}
.y8{bottom:1072.050000px;}
.y7{bottom:1089.330000px;}
.y6{bottom:1106.610000px;}
.y44{bottom:1123.710000px;}
.y5{bottom:1140.660000px;}
.y4d{bottom:1141.020000px;}
.y4{bottom:1157.940000px;}
.y43{bottom:1158.300000px;}
.y3{bottom:1175.220000px;}
.y4c{bottom:1175.580000px;}
.y1{bottom:1195.380000px;}
.ha{height:48.496641px;}
.h3{height:52.998047px;}
.h7{height:53.077852px;}
.h9{height:53.573906px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.hb{height:61.423863px;}
.h8{height:62.211094px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x2{left:116.495987px;}
.xe{left:136.115987px;}
.xf{left:138.815987px;}
.x9{left:143.495987px;}
.x3{left:152.489987px;}
.x7{left:160.049987px;}
.x10{left:163.649987px;}
.x8{left:168.869987px;}
.xb{left:352.334987px;}
.x5{left:365.294987px;}
.x11{left:457.274987px;}
.x4{left:461.414987px;}
.x12{left:487.004987px;}
.xc{left:537.944987px;}
.x6{left:542.264987px;}
.xa{left:683.789987px;}
.xd{left:786.749987px;}
@media print{
.v3{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.546667pt;}
.v2{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-1.120000pt;}
.ls40{letter-spacing:-0.960000pt;}
.ls3f{letter-spacing:-0.544000pt;}
.ls47{letter-spacing:-0.480000pt;}
.ls41{letter-spacing:-0.367467pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.259200pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls28{letter-spacing:-0.115200pt;}
.ls3d{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls2c{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.008960pt;}
.ls1c{letter-spacing:0.016640pt;}
.ls27{letter-spacing:0.047360pt;}
.ls31{letter-spacing:0.059520pt;}
.ls22{letter-spacing:0.094720pt;}
.ls42{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.140800pt;}
.ls2{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161920pt;}
.ls23{letter-spacing:0.201387pt;}
.ls5{letter-spacing:0.231040pt;}
.ls35{letter-spacing:0.254720pt;}
.ls37{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.380800pt;}
.ls15{letter-spacing:0.391040pt;}
.ls39{letter-spacing:0.426667pt;}
.ls25{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.592000pt;}
.ls3b{letter-spacing:0.592640pt;}
.ls34{letter-spacing:0.627627pt;}
.ls3c{letter-spacing:0.648960pt;}
.ls46{letter-spacing:0.688000pt;}
.ls30{letter-spacing:0.734720pt;}
.ls32{letter-spacing:0.800000pt;}
.ls3e{letter-spacing:0.821333pt;}
.ls43{letter-spacing:0.869333pt;}
.ls38{letter-spacing:0.960000pt;}
.ls2f{letter-spacing:1.440000pt;}
.ls33{letter-spacing:1.872640pt;}
.lsd{letter-spacing:2.080000pt;}
.ls12{letter-spacing:2.698667pt;}
.ls26{letter-spacing:2.720000pt;}
.ls4{letter-spacing:3.360000pt;}
.ls36{letter-spacing:3.520000pt;}
.ls13{letter-spacing:4.000000pt;}
.lsf{letter-spacing:4.640000pt;}
.lse{letter-spacing:4.746667pt;}
.ls19{letter-spacing:5.280000pt;}
.ls3a{letter-spacing:5.386667pt;}
.ls1a{letter-spacing:5.920000pt;}
.ls1e{letter-spacing:6.560000pt;}
.ls18{letter-spacing:7.200000pt;}
.ls14{letter-spacing:7.840000pt;}
.ls1b{letter-spacing:8.480000pt;}
.ls45{letter-spacing:9.120000pt;}
.ls16{letter-spacing:9.760000pt;}
.ls1d{letter-spacing:10.400000pt;}
.ls2e{letter-spacing:12.960000pt;}
.ls44{letter-spacing:16.160000pt;}
.ls17{letter-spacing:17.440000pt;}
.ls24{letter-spacing:23.840000pt;}
.ls10{letter-spacing:25.760000pt;}
.ls2d{letter-spacing:28.091307pt;}
.ls20{letter-spacing:28.112640pt;}
.ls3{letter-spacing:34.491307pt;}
.ls1f{letter-spacing:267.680000pt;}
.ls1{letter-spacing:494.986667pt;}
.ls0{letter-spacing:530.186667pt;}
.wse{word-spacing:-14.240000pt;}
.wsf{word-spacing:-14.149333pt;}
.wsc{word-spacing:-14.101333pt;}
.ws10{word-spacing:-13.968000pt;}
.ws8{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.420800pt;}
.ws9{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.164800pt;}
.ws3{word-spacing:-13.096533pt;}
.ws6{word-spacing:-13.020800pt;}
.wsd{word-spacing:-12.960000pt;}
.ws1{word-spacing:-11.953280pt;}
.ws5{word-spacing:0.000000pt;}
._1f{margin-left:-6.482773pt;}
._f{margin-left:-3.080960pt;}
._5{margin-left:-1.827413pt;}
._3{margin-left:-0.892373pt;}
._1{width:0.956160pt;}
._2{width:2.317867pt;}
._4{width:3.416960pt;}
._d{width:4.751147pt;}
._8{width:5.736960pt;}
._11{width:6.799360pt;}
._9{width:7.861760pt;}
._a{width:8.786133pt;}
._7{width:10.425173pt;}
._6{width:11.368107pt;}
._14{width:12.270720pt;}
._12{width:14.767360pt;}
._18{width:15.776640pt;}
._10{width:16.945280pt;}
._e{width:18.485760pt;}
._15{width:19.760640pt;}
._b{width:20.663680pt;}
._c{width:21.672960pt;}
._19{width:22.618453pt;}
._1b{width:23.957120pt;}
._17{width:25.019520pt;}
._1a{width:26.400640pt;}
._1d{width:27.675520pt;}
._1c{width:28.897280pt;}
._20{width:29.906560pt;}
._16{width:32.350080pt;}
._21{width:33.731200pt;}
._1e{width:40.743040pt;}
._0{width:682.533547pt;}
._13{width:754.986667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.920000pt;}
.y42{bottom:78.560000pt;}
.y40{bottom:78.880000pt;}
.y3f{bottom:94.240000pt;}
.y3e{bottom:109.600000pt;}
.y4f{bottom:124.480000pt;}
.y3d{bottom:124.800000pt;}
.y3c{bottom:140.160000pt;}
.y3b{bottom:155.546667pt;}
.y3a{bottom:170.906667pt;}
.y39{bottom:186.266667pt;}
.y38{bottom:201.626667pt;}
.y37{bottom:216.826667pt;}
.y36{bottom:232.186667pt;}
.y35{bottom:247.546667pt;}
.y34{bottom:262.906667pt;}
.y33{bottom:278.266667pt;}
.y32{bottom:293.626667pt;}
.y31{bottom:308.826667pt;}
.y30{bottom:324.186667pt;}
.y2f{bottom:339.546667pt;}
.y2e{bottom:354.906667pt;}
.y2d{bottom:370.306667pt;}
.y2c{bottom:385.506667pt;}
.y2b{bottom:400.866667pt;}
.y2a{bottom:416.226667pt;}
.y29{bottom:431.586667pt;}
.y28{bottom:446.946667pt;}
.y27{bottom:462.306667pt;}
.y26{bottom:477.506667pt;}
.y25{bottom:492.866667pt;}
.y24{bottom:508.226667pt;}
.y23{bottom:523.586667pt;}
.y22{bottom:538.626667pt;}
.y41{bottom:538.946667pt;}
.y21{bottom:554.306667pt;}
.y20{bottom:569.506667pt;}
.y1f{bottom:584.893333pt;}
.y1e{bottom:600.253333pt;}
.y1d{bottom:615.293333pt;}
.y4b{bottom:615.613333pt;}
.y1c{bottom:630.973333pt;}
.y1b{bottom:646.173333pt;}
.y1a{bottom:661.533333pt;}
.y19{bottom:676.893333pt;}
.y18{bottom:691.933333pt;}
.y4a{bottom:692.253333pt;}
.y17{bottom:707.613333pt;}
.y16{bottom:722.973333pt;}
.y15{bottom:738.173333pt;}
.y14{bottom:753.533333pt;}
.y50{bottom:768.573333pt;}
.y13{bottom:768.893333pt;}
.y12{bottom:783.933333pt;}
.y49{bottom:784.253333pt;}
.y11{bottom:799.653333pt;}
.y10{bottom:815.013333pt;}
.yf{bottom:830.213333pt;}
.ye{bottom:845.573333pt;}
.yd{bottom:860.933333pt;}
.y4e{bottom:875.973333pt;}
.y48{bottom:876.293333pt;}
.yc{bottom:891.333333pt;}
.y47{bottom:891.653333pt;}
.yb{bottom:906.693333pt;}
.y46{bottom:907.013333pt;}
.ya{bottom:921.893333pt;}
.y45{bottom:922.213333pt;}
.y9{bottom:937.573333pt;}
.y8{bottom:952.933333pt;}
.y7{bottom:968.293333pt;}
.y6{bottom:983.653333pt;}
.y44{bottom:998.853333pt;}
.y5{bottom:1013.920000pt;}
.y4d{bottom:1014.240000pt;}
.y4{bottom:1029.280000pt;}
.y43{bottom:1029.600000pt;}
.y3{bottom:1044.640000pt;}
.y4c{bottom:1044.960000pt;}
.y1{bottom:1062.560000pt;}
.ha{height:43.108125pt;}
.h3{height:47.109375pt;}
.h7{height:47.180312pt;}
.h9{height:47.621250pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.hb{height:54.598989pt;}
.h8{height:55.298750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x2{left:103.551988pt;}
.xe{left:120.991988pt;}
.xf{left:123.391988pt;}
.x9{left:127.551988pt;}
.x3{left:135.546655pt;}
.x7{left:142.266655pt;}
.x10{left:145.466655pt;}
.x8{left:150.106655pt;}
.xb{left:313.186655pt;}
.x5{left:324.706655pt;}
.x11{left:406.466655pt;}
.x4{left:410.146655pt;}
.x12{left:432.893322pt;}
.xc{left:478.173322pt;}
.x6{left:482.013322pt;}
.xa{left:607.813322pt;}
.xd{left:699.333322pt;}
}




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