
    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_f45bb6bb19955b4056046b60.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_ea9a64f29aea9845bbe3622e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_d6bddb300e09c29cce40b065.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ec83ccf5920945ce48f32a9d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_bea3eabefdee977e49c7f240.woff')format("woff");}.ff5{font-family:ff5;line-height:1.021484;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_f262c7dba907314b5dcdaed9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:115.800000px;}
.ls16{letter-spacing:-2.172000px;}
.ls15{letter-spacing:-2.022000px;}
.ls2{letter-spacing:-1.890000px;}
.ls8{letter-spacing:-1.596000px;}
.lsf{letter-spacing:-0.942000px;}
.ls12{letter-spacing:-0.732000px;}
.ls3{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.070200px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.079800px;}
.ls9{letter-spacing:0.348000px;}
.ls6{letter-spacing:0.498000px;}
.ls17{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.750000px;}
.lse{letter-spacing:1.068000px;}
.ls7{letter-spacing:1.206000px;}
.lsd{letter-spacing:1.224000px;}
.ls1{letter-spacing:2.610000px;}
.ls18{letter-spacing:21.651000px;}
.ls4{letter-spacing:92.422500px;}
.ls5{letter-spacing:92.542500px;}
.lsb{letter-spacing:93.052500px;}
.lsc{letter-spacing:93.105000px;}
.lsa{letter-spacing:97.147500px;}
.ls13{letter-spacing:97.297500px;}
.ls19{letter-spacing:98.379000px;}
.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;}
}
.wsb{word-spacing:-108.150000px;}
.ws1{word-spacing:-43.908900px;}
.ws4{word-spacing:-25.900950px;}
.ws9{word-spacing:-24.725400px;}
.ws6{word-spacing:-24.694950px;}
.ws5{word-spacing:-23.098950px;}
.wsa{word-spacing:-23.022450px;}
.ws7{word-spacing:-21.954450px;}
.wsc{word-spacing:-19.932450px;}
.wsd{word-spacing:-19.782450px;}
.ws3{word-spacing:-19.213950px;}
.wsf{word-spacing:-19.183500px;}
.ws0{word-spacing:-2.627550px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:2811.293850px;}
.wse{word-spacing:3402.863850px;}
._c{margin-left:-13.422600px;}
._b{margin-left:-9.591150px;}
._a{margin-left:-8.217450px;}
._5{margin-left:-5.889450px;}
._7{margin-left:-4.643100px;}
._3{margin-left:-3.284400px;}
._4{margin-left:-2.135250px;}
._1{margin-left:-1.114350px;}
._2{width:1.524900px;}
._8{width:2.595600px;}
._0{width:3.636300px;}
._9{width:5.158650px;}
._6{width:20.974650px;}
._d{width:326.140950px;}
.fc5{color:rgb(23,122,191);}
.fc4{color:rgb(7,8,9);}
.fc2{color:transparent;}
.fc1{color:rgb(238,118,40);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:58.650000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:94.500000px;}
.fs1{font-size:94.650000px;}
.fs2{font-size:108.150000px;}
.fs8{font-size:121.650000px;}
.fs9{font-size:121.800000px;}
.fs7{font-size:144.150000px;}
.fs5{font-size:202.800000px;}
.fs4{font-size:216.300000px;}
.y0{bottom:0.000000px;}
.y28{bottom:32.625000px;}
.y66{bottom:71.812500px;}
.y4f{bottom:78.300000px;}
.y2e{bottom:82.125000px;}
.y4e{bottom:104.212500px;}
.y2d{bottom:104.325000px;}
.y27{bottom:104.475000px;}
.y20{bottom:105.255000px;}
.y22{bottom:105.420000px;}
.y4d{bottom:148.162500px;}
.y30{bottom:153.900000px;}
.y42{bottom:156.450000px;}
.y4c{bottom:174.075000px;}
.y36{bottom:177.600000px;}
.y2c{bottom:184.500000px;}
.y2f{bottom:186.600000px;}
.y62{bottom:194.880000px;}
.y34{bottom:195.450000px;}
.y1e{bottom:199.470000px;}
.y4b{bottom:199.950000px;}
.y25{bottom:202.125000px;}
.y41{bottom:203.775000px;}
.y35{bottom:209.130000px;}
.y61{bottom:220.770000px;}
.y40{bottom:233.070000px;}
.y24{bottom:234.795000px;}
.y1d{bottom:235.545000px;}
.y4a{bottom:243.900000px;}
.y5b{bottom:246.525000px;}
.y60{bottom:246.675000px;}
.y23{bottom:264.375000px;}
.y4{bottom:266.820000px;}
.y49{bottom:269.820000px;}
.y1c{bottom:271.575000px;}
.y5a{bottom:275.820000px;}
.y3f{bottom:280.380000px;}
.y26{bottom:292.500000px;}
.y2b{bottom:298.995000px;}
.y1b{bottom:307.605000px;}
.y3e{bottom:309.675000px;}
.y5f{bottom:311.595000px;}
.y3{bottom:314.130000px;}
.y48{bottom:314.895000px;}
.y59{bottom:323.130000px;}
.y2a{bottom:331.650000px;}
.y1a{bottom:343.695000px;}
.y3d{bottom:357.000000px;}
.y47{bottom:362.175000px;}
.y65{bottom:363.705000px;}
.y29{bottom:364.350000px;}
.y58{bottom:370.455000px;}
.y19{bottom:379.725000px;}
.y3c{bottom:386.280000px;}
.y5e{bottom:390.870000px;}
.y46{bottom:391.500000px;}
.y21{bottom:393.750000px;}
.y57{bottom:399.750000px;}
.y5c{bottom:405.750000px;}
.y64{bottom:411.000000px;}
.y18{bottom:415.755000px;}
.y16{bottom:416.820000px;}
.y5d{bottom:420.150000px;}
.y3b{bottom:433.620000px;}
.y45{bottom:438.780000px;}
.y11{bottom:438.870000px;}
.y5{bottom:438.900000px;}
.y15{bottom:442.725000px;}
.y56{bottom:447.075000px;}
.y3a{bottom:462.900000px;}
.y10{bottom:464.775000px;}
.y44{bottom:468.075000px;}
.y14{bottom:468.630000px;}
.ya{bottom:473.745000px;}
.y33{bottom:475.575000px;}
.y55{bottom:476.370000px;}
.y32{bottom:478.170000px;}
.yf{bottom:490.695000px;}
.y13{bottom:494.550000px;}
.y1f{bottom:496.125000px;}
.y43{bottom:497.370000px;}
.y31{bottom:509.700000px;}
.y39{bottom:510.195000px;}
.ye{bottom:516.600000px;}
.y12{bottom:520.425000px;}
.y54{bottom:523.650000px;}
.y9{bottom:532.320000px;}
.y38{bottom:539.475000px;}
.yd{bottom:542.505000px;}
.y63{bottom:552.975000px;}
.y53{bottom:570.975000px;}
.y50{bottom:583.995000px;}
.y37{bottom:586.800000px;}
.y8{bottom:589.755000px;}
.y52{bottom:600.255000px;}
.y51{bottom:629.130000px;}
.y17{bottom:631.650000px;}
.y7{bottom:648.345000px;}
.yc{bottom:682.875000px;}
.y6{bottom:706.905000px;}
.yb{bottom:830.850000px;}
.y2{bottom:834.375000px;}
.y1{bottom:860.580000px;}
.h1{height:50.831909px;}
.h4{height:62.402344px;}
.h8{height:81.903076px;}
.h7{height:82.033081px;}
.h14{height:82.041504px;}
.h2{height:82.171729px;}
.h3{height:93.733521px;}
.hc{height:93.891943px;}
.ha{height:105.433960px;}
.h11{height:105.612158px;}
.h13{height:105.742383px;}
.h9{height:125.145850px;}
.h6{height:176.063672px;}
.h5{height:187.783887px;}
.h12{height:221.412158px;}
.he{height:227.250000px;}
.hb{height:228.375000px;}
.h10{height:407.250000px;}
.hd{height:454.500000px;}
.hf{height:681.750000px;}
.h0{height:810.000000px;}
.w2{width:559.125000px;}
.w3{width:560.250000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x1{left:-1.425021px;}
.x0{left:0.000000px;}
.x16{left:11.745000px;}
.x3{left:84.974979px;}
.x2{left:100.574979px;}
.x4{left:102.262479px;}
.x10{left:109.687479px;}
.x22{left:118.874979px;}
.x11{left:143.437479px;}
.xd{left:162.749979px;}
.xb{left:180.074979px;}
.xe{left:185.519979px;}
.xa{left:190.124979px;}
.xc{left:195.449979px;}
.x15{left:219.375000px;}
.x1c{left:232.799979px;}
.x18{left:234.644979px;}
.xf{left:247.199979px;}
.x19{left:265.949979px;}
.x28{left:388.694979px;}
.x2a{left:416.069979px;}
.x27{left:427.574979px;}
.x29{left:428.999979px;}
.x26{left:432.869979px;}
.x1d{left:535.094979px;}
.x21{left:545.879979px;}
.x1f{left:556.079979px;}
.x1e{left:568.844979px;}
.x20{left:587.624979px;}
.x2c{left:621.194979px;}
.x2b{left:633.404979px;}
.x2d{left:645.749979px;}
.x25{left:701.069979px;}
.x17{left:777.375000px;}
.x13{left:807.419979px;}
.x14{left:841.199979px;}
.x2f{left:867.074979px;}
.x2e{left:884.069979px;}
.x24{left:900.944979px;}
.x33{left:918.719979px;}
.x12{left:934.079979px;}
.x23{left:940.124979px;}
.x1b{left:1038.299979px;}
.x1a{left:1065.194979px;}
.x5{left:1088.699979px;}
.x6{left:1112.369979px;}
.x8{left:1127.744979px;}
.x7{left:1139.369979px;}
.x9{left:1148.954979px;}
.x30{left:1151.774979px;}
.x32{left:1155.149979px;}
.x31{left:1161.224979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:102.933333pt;}
.ls16{letter-spacing:-1.930667pt;}
.ls15{letter-spacing:-1.797333pt;}
.ls2{letter-spacing:-1.680000pt;}
.ls8{letter-spacing:-1.418667pt;}
.lsf{letter-spacing:-0.837333pt;}
.ls12{letter-spacing:-0.650667pt;}
.ls3{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.062400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.070933pt;}
.ls9{letter-spacing:0.309333pt;}
.ls6{letter-spacing:0.442667pt;}
.ls17{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.666667pt;}
.lse{letter-spacing:0.949333pt;}
.ls7{letter-spacing:1.072000pt;}
.lsd{letter-spacing:1.088000pt;}
.ls1{letter-spacing:2.320000pt;}
.ls18{letter-spacing:19.245333pt;}
.ls4{letter-spacing:82.153333pt;}
.ls5{letter-spacing:82.260000pt;}
.lsb{letter-spacing:82.713333pt;}
.lsc{letter-spacing:82.760000pt;}
.lsa{letter-spacing:86.353333pt;}
.ls13{letter-spacing:86.486667pt;}
.ls19{letter-spacing:87.448000pt;}
.wsb{word-spacing:-96.133333pt;}
.ws1{word-spacing:-39.030133pt;}
.ws4{word-spacing:-23.023067pt;}
.ws9{word-spacing:-21.978133pt;}
.ws6{word-spacing:-21.951067pt;}
.ws5{word-spacing:-20.532400pt;}
.wsa{word-spacing:-20.464400pt;}
.ws7{word-spacing:-19.515067pt;}
.wsc{word-spacing:-17.717733pt;}
.wsd{word-spacing:-17.584400pt;}
.ws3{word-spacing:-17.079067pt;}
.wsf{word-spacing:-17.052000pt;}
.ws0{word-spacing:-2.335600pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:2498.927867pt;}
.wse{word-spacing:3024.767867pt;}
._c{margin-left:-11.931200pt;}
._b{margin-left:-8.525467pt;}
._a{margin-left:-7.304400pt;}
._5{margin-left:-5.235067pt;}
._7{margin-left:-4.127200pt;}
._3{margin-left:-2.919467pt;}
._4{margin-left:-1.898000pt;}
._1{margin-left:-0.990533pt;}
._2{width:1.355467pt;}
._8{width:2.307200pt;}
._0{width:3.232267pt;}
._9{width:4.585467pt;}
._6{width:18.644133pt;}
._d{width:289.903067pt;}
.fs0{font-size:52.133333pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:84.000000pt;}
.fs1{font-size:84.133333pt;}
.fs2{font-size:96.133333pt;}
.fs8{font-size:108.133333pt;}
.fs9{font-size:108.266667pt;}
.fs7{font-size:128.133333pt;}
.fs5{font-size:180.266667pt;}
.fs4{font-size:192.266667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:29.000000pt;}
.y66{bottom:63.833333pt;}
.y4f{bottom:69.600000pt;}
.y2e{bottom:73.000000pt;}
.y4e{bottom:92.633333pt;}
.y2d{bottom:92.733333pt;}
.y27{bottom:92.866667pt;}
.y20{bottom:93.560000pt;}
.y22{bottom:93.706667pt;}
.y4d{bottom:131.700000pt;}
.y30{bottom:136.800000pt;}
.y42{bottom:139.066667pt;}
.y4c{bottom:154.733333pt;}
.y36{bottom:157.866667pt;}
.y2c{bottom:164.000000pt;}
.y2f{bottom:165.866667pt;}
.y62{bottom:173.226667pt;}
.y34{bottom:173.733333pt;}
.y1e{bottom:177.306667pt;}
.y4b{bottom:177.733333pt;}
.y25{bottom:179.666667pt;}
.y41{bottom:181.133333pt;}
.y35{bottom:185.893333pt;}
.y61{bottom:196.240000pt;}
.y40{bottom:207.173333pt;}
.y24{bottom:208.706667pt;}
.y1d{bottom:209.373333pt;}
.y4a{bottom:216.800000pt;}
.y5b{bottom:219.133333pt;}
.y60{bottom:219.266667pt;}
.y23{bottom:235.000000pt;}
.y4{bottom:237.173333pt;}
.y49{bottom:239.840000pt;}
.y1c{bottom:241.400000pt;}
.y5a{bottom:245.173333pt;}
.y3f{bottom:249.226667pt;}
.y26{bottom:260.000000pt;}
.y2b{bottom:265.773333pt;}
.y1b{bottom:273.426667pt;}
.y3e{bottom:275.266667pt;}
.y5f{bottom:276.973333pt;}
.y3{bottom:279.226667pt;}
.y48{bottom:279.906667pt;}
.y59{bottom:287.226667pt;}
.y2a{bottom:294.800000pt;}
.y1a{bottom:305.506667pt;}
.y3d{bottom:317.333333pt;}
.y47{bottom:321.933333pt;}
.y65{bottom:323.293333pt;}
.y29{bottom:323.866667pt;}
.y58{bottom:329.293333pt;}
.y19{bottom:337.533333pt;}
.y3c{bottom:343.360000pt;}
.y5e{bottom:347.440000pt;}
.y46{bottom:348.000000pt;}
.y21{bottom:350.000000pt;}
.y57{bottom:355.333333pt;}
.y5c{bottom:360.666667pt;}
.y64{bottom:365.333333pt;}
.y18{bottom:369.560000pt;}
.y16{bottom:370.506667pt;}
.y5d{bottom:373.466667pt;}
.y3b{bottom:385.440000pt;}
.y45{bottom:390.026667pt;}
.y11{bottom:390.106667pt;}
.y5{bottom:390.133333pt;}
.y15{bottom:393.533333pt;}
.y56{bottom:397.400000pt;}
.y3a{bottom:411.466667pt;}
.y10{bottom:413.133333pt;}
.y44{bottom:416.066667pt;}
.y14{bottom:416.560000pt;}
.ya{bottom:421.106667pt;}
.y33{bottom:422.733333pt;}
.y55{bottom:423.440000pt;}
.y32{bottom:425.040000pt;}
.yf{bottom:436.173333pt;}
.y13{bottom:439.600000pt;}
.y1f{bottom:441.000000pt;}
.y43{bottom:442.106667pt;}
.y31{bottom:453.066667pt;}
.y39{bottom:453.506667pt;}
.ye{bottom:459.200000pt;}
.y12{bottom:462.600000pt;}
.y54{bottom:465.466667pt;}
.y9{bottom:473.173333pt;}
.y38{bottom:479.533333pt;}
.yd{bottom:482.226667pt;}
.y63{bottom:491.533333pt;}
.y53{bottom:507.533333pt;}
.y50{bottom:519.106667pt;}
.y37{bottom:521.600000pt;}
.y8{bottom:524.226667pt;}
.y52{bottom:533.560000pt;}
.y51{bottom:559.226667pt;}
.y17{bottom:561.466667pt;}
.y7{bottom:576.306667pt;}
.yc{bottom:607.000000pt;}
.y6{bottom:628.360000pt;}
.yb{bottom:738.533333pt;}
.y2{bottom:741.666667pt;}
.y1{bottom:764.960000pt;}
.h1{height:45.183919pt;}
.h4{height:55.468750pt;}
.h8{height:72.802734pt;}
.h7{height:72.918294pt;}
.h14{height:72.925781pt;}
.h2{height:73.041536pt;}
.h3{height:83.318685pt;}
.hc{height:83.459505pt;}
.ha{height:93.719076pt;}
.h11{height:93.877474pt;}
.h13{height:93.993229pt;}
.h9{height:111.240755pt;}
.h6{height:156.501042pt;}
.h5{height:166.919010pt;}
.h12{height:196.810807pt;}
.he{height:202.000000pt;}
.hb{height:203.000000pt;}
.h10{height:362.000000pt;}
.hd{height:404.000000pt;}
.hf{height:606.000000pt;}
.h0{height:720.000000pt;}
.w2{width:497.000000pt;}
.w3{width:498.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x1{left:-1.266686pt;}
.x0{left:0.000000pt;}
.x16{left:10.440000pt;}
.x3{left:75.533314pt;}
.x2{left:89.399981pt;}
.x4{left:90.899981pt;}
.x10{left:97.499981pt;}
.x22{left:105.666648pt;}
.x11{left:127.499981pt;}
.xd{left:144.666648pt;}
.xb{left:160.066648pt;}
.xe{left:164.906648pt;}
.xa{left:168.999981pt;}
.xc{left:173.733314pt;}
.x15{left:195.000000pt;}
.x1c{left:206.933314pt;}
.x18{left:208.573314pt;}
.xf{left:219.733314pt;}
.x19{left:236.399981pt;}
.x28{left:345.506648pt;}
.x2a{left:369.839981pt;}
.x27{left:380.066648pt;}
.x29{left:381.333314pt;}
.x26{left:384.773314pt;}
.x1d{left:475.639981pt;}
.x21{left:485.226648pt;}
.x1f{left:494.293314pt;}
.x1e{left:505.639981pt;}
.x20{left:522.333314pt;}
.x2c{left:552.173314pt;}
.x2b{left:563.026648pt;}
.x2d{left:573.999981pt;}
.x25{left:623.173314pt;}
.x17{left:691.000000pt;}
.x13{left:717.706648pt;}
.x14{left:747.733314pt;}
.x2f{left:770.733314pt;}
.x2e{left:785.839981pt;}
.x24{left:800.839981pt;}
.x33{left:816.639981pt;}
.x12{left:830.293314pt;}
.x23{left:835.666648pt;}
.x1b{left:922.933314pt;}
.x1a{left:946.839981pt;}
.x5{left:967.733314pt;}
.x6{left:988.773314pt;}
.x8{left:1002.439981pt;}
.x7{left:1012.773314pt;}
.x9{left:1021.293314pt;}
.x30{left:1023.799981pt;}
.x32{left:1026.799981pt;}
.x31{left:1032.199981pt;}
}




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