
    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_ffff0e0f864e7fc944325f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.097168;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_45bedbcf4f83b48682a87cd8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c38546c9f90829d27d092655.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a2762446e73946ad91f07bc1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_045dd32af1e79b504c68b88a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_da6dc9ff6ea0028cfe76900a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.246582;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);}
.v1{vertical-align:-97.200000px;}
.v2{vertical-align:-96.000000px;}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-3.000000px;}
.ls1f{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.516000px;}
.ls20{letter-spacing:-0.204000px;}
.ls13{letter-spacing:-0.096000px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.024000px;}
.ls17{letter-spacing:0.048000px;}
.ls1a{letter-spacing:0.312000px;}
.ls1d{letter-spacing:0.444000px;}
.ls15{letter-spacing:0.492000px;}
.lsf{letter-spacing:0.552000px;}
.ls9{letter-spacing:0.600000px;}
.ls1b{letter-spacing:0.660000px;}
.lsb{letter-spacing:0.768000px;}
.ls4{letter-spacing:0.828000px;}
.ls1{letter-spacing:0.888000px;}
.ls3{letter-spacing:1.008000px;}
.ls6{letter-spacing:1.200000px;}
.ls7{letter-spacing:3.600000px;}
.ls18{letter-spacing:5.340000px;}
.ls16{letter-spacing:5.400000px;}
.ls8{letter-spacing:7.200000px;}
.lse{letter-spacing:9.000000px;}
.ls11{letter-spacing:9.120000px;}
.ls10{letter-spacing:10.200000px;}
.ls2{letter-spacing:11.400000px;}
.ls1c{letter-spacing:15.000000px;}
.ls1e{letter-spacing:16.380000px;}
.ls19{letter-spacing:43.800000px;}
.lsd{letter-spacing:45.120000px;}
.ls0{letter-spacing:885.330000px;}
.lsc{letter-spacing:939.330000px;}
.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;}
}
.ws6{word-spacing:-37.296000px;}
.ws5{word-spacing:-37.092000px;}
.ws4{word-spacing:-21.492000px;}
.ws0{word-spacing:-21.000000px;}
.ws2{word-spacing:-20.904000px;}
.ws3{word-spacing:-20.460000px;}
.ws1{word-spacing:0.000000px;}
._50{margin-left:-1951.476000px;}
._51{margin-left:-1652.898000px;}
._3a{margin-left:-1195.092000px;}
._39{margin-left:-1193.064000px;}
._35{margin-left:-992.088000px;}
._4f{margin-left:-544.824000px;}
._4e{margin-left:-515.964000px;}
._43{margin-left:-428.778000px;}
._42{margin-left:-411.468000px;}
._47{margin-left:-311.628000px;}
._40{margin-left:-292.092000px;}
._41{margin-left:-288.852000px;}
._48{margin-left:-196.770000px;}
._38{margin-left:-191.808000px;}
._4a{margin-left:-171.276000px;}
._46{margin-left:-165.000000px;}
._4b{margin-left:-120.000000px;}
._49{margin-left:-107.400000px;}
._3d{margin-left:-87.468000px;}
._36{margin-left:-84.348000px;}
._44{margin-left:-72.000000px;}
._37{margin-left:-65.076000px;}
._45{margin-left:-63.972000px;}
._3e{margin-left:-62.022000px;}
._3b{margin-left:-47.196000px;}
._3c{margin-left:-44.496000px;}
._1b{margin-left:-2.700000px;}
._1{margin-left:-1.680000px;}
._0{width:1.092000px;}
._2{width:2.196000px;}
._3{width:3.276000px;}
._4{width:4.284000px;}
._13{width:5.880000px;}
._11{width:6.972000px;}
._10{width:8.316000px;}
._f{width:9.492000px;}
._23{width:10.500000px;}
._14{width:11.676000px;}
._24{width:12.702000px;}
._2a{width:14.346000px;}
._1a{width:15.624000px;}
._19{width:16.884000px;}
._12{width:17.976000px;}
._e{width:19.320000px;}
._16{width:22.092000px;}
._20{width:23.940000px;}
._8{width:24.948000px;}
._5{width:26.040000px;}
._6{width:27.552000px;}
._7{width:28.644000px;}
._15{width:29.736000px;}
._2b{width:30.996000px;}
._2c{width:32.100000px;}
._9{width:33.264000px;}
._a{width:34.272000px;}
._b{width:35.784000px;}
._2d{width:37.128000px;}
._27{width:38.616000px;}
._25{width:40.164000px;}
._26{width:41.856000px;}
._29{width:43.176000px;}
._28{width:44.196000px;}
._33{width:46.650000px;}
._2f{width:47.952000px;}
._1d{width:49.224000px;}
._1c{width:50.580000px;}
._30{width:57.498000px;}
._d{width:59.166000px;}
._c{width:60.390000px;}
._53{width:62.244000px;}
._17{width:63.588000px;}
._18{width:65.268000px;}
._2e{width:66.444000px;}
._31{width:71.820000px;}
._32{width:72.828000px;}
._1e{width:106.512000px;}
._1f{width:108.528000px;}
._21{width:123.648000px;}
._22{width:125.250000px;}
._54{width:843.330000px;}
._3f{width:1072.962000px;}
._4c{width:1372.650000px;}
._34{width:1690.230000px;}
._4d{width:2201.550000px;}
._52{width:2466.930000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y40{bottom:89.137500px;}
.y2e{bottom:96.037500px;}
.y44{bottom:97.537500px;}
.y3f{bottom:109.837500px;}
.y2d{bottom:120.037500px;}
.y3e{bottom:130.537500px;}
.y2c{bottom:144.337500px;}
.y3d{bottom:151.245000px;}
.y3c{bottom:159.630000px;}
.y2b{bottom:168.375000px;}
.y3b{bottom:171.975000px;}
.y2a{bottom:192.675000px;}
.y3a{bottom:201.075000px;}
.y39{bottom:213.375000px;}
.y29{bottom:216.675000px;}
.y28{bottom:240.975000px;}
.y27{bottom:264.975000px;}
.y26{bottom:289.275000px;}
.y25{bottom:313.275000px;}
.y38{bottom:323.175000px;}
.y24{bottom:337.620000px;}
.y43{bottom:361.005000px;}
.y23{bottom:361.620000px;}
.y42{bottom:385.320000px;}
.y22{bottom:385.905000px;}
.y21{bottom:409.905000px;}
.y20{bottom:434.205000px;}
.y1f{bottom:458.205000px;}
.y1e{bottom:482.505000px;}
.y1d{bottom:506.550000px;}
.y1c{bottom:530.850000px;}
.y37{bottom:540.750000px;}
.y1b{bottom:554.250000px;}
.y34{bottom:554.850000px;}
.y41{bottom:564.750000px;}
.y1a{bottom:578.550000px;}
.y33{bottom:579.150000px;}
.y19{bottom:603.150000px;}
.y18{bottom:627.450000px;}
.y17{bottom:651.450000px;}
.y16{bottom:675.780000px;}
.y15{bottom:699.780000px;}
.y14{bottom:724.080000px;}
.y13{bottom:748.080000px;}
.y12{bottom:772.380000px;}
.y11{bottom:796.380000px;}
.y10{bottom:820.695000px;}
.yf{bottom:844.725000px;}
.ye{bottom:869.025000px;}
.yd{bottom:893.025000px;}
.yc{bottom:917.325000px;}
.yb{bottom:941.325000px;}
.ya{bottom:965.625000px;}
.y9{bottom:989.025000px;}
.y32{bottom:989.625000px;}
.y8{bottom:1013.355000px;}
.y31{bottom:1013.955000px;}
.y7{bottom:1037.955000px;}
.y6{bottom:1062.255000px;}
.y30{bottom:1086.255000px;}
.y5{bottom:1109.955000px;}
.y2f{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y36{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y35{bottom:1158.870000px;}
.ha{height:47.109375px;}
.h8{height:52.998047px;}
.h4{height:59.267578px;}
.h3{height:61.670545px;}
.hc{height:63.457031px;}
.h9{height:65.645508px;}
.hb{height:70.664062px;}
.h6{height:74.033203px;}
.h2{height:82.441406px;}
.h5{height:84.656250px;}
.hd{height:86.748047px;}
.h7{height:1262.681100px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.937500px;}
.x3{left:100.537500px;}
.xd{left:102.937500px;}
.x5{left:127.537500px;}
.x4{left:174.030000px;}
.xa{left:183.656250px;}
.xb{left:204.375000px;}
.x7{left:244.875000px;}
.xe{left:255.956250px;}
.xf{left:276.675000px;}
.xc{left:301.020000px;}
.x6{left:302.820000px;}
.x1{left:430.650000px;}
.x8{left:787.151250px;}
.x9{left:807.870000px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v2{vertical-align:-85.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-2.666667pt;}
.ls1f{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.458667pt;}
.ls20{letter-spacing:-0.181333pt;}
.ls13{letter-spacing:-0.085333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.021333pt;}
.ls17{letter-spacing:0.042667pt;}
.ls1a{letter-spacing:0.277333pt;}
.ls1d{letter-spacing:0.394667pt;}
.ls15{letter-spacing:0.437333pt;}
.lsf{letter-spacing:0.490667pt;}
.ls9{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:0.586667pt;}
.lsb{letter-spacing:0.682667pt;}
.ls4{letter-spacing:0.736000pt;}
.ls1{letter-spacing:0.789333pt;}
.ls3{letter-spacing:0.896000pt;}
.ls6{letter-spacing:1.066667pt;}
.ls7{letter-spacing:3.200000pt;}
.ls18{letter-spacing:4.746667pt;}
.ls16{letter-spacing:4.800000pt;}
.ls8{letter-spacing:6.400000pt;}
.lse{letter-spacing:8.000000pt;}
.ls11{letter-spacing:8.106667pt;}
.ls10{letter-spacing:9.066667pt;}
.ls2{letter-spacing:10.133333pt;}
.ls1c{letter-spacing:13.333333pt;}
.ls1e{letter-spacing:14.560000pt;}
.ls19{letter-spacing:38.933333pt;}
.lsd{letter-spacing:40.106667pt;}
.ls0{letter-spacing:786.960000pt;}
.lsc{letter-spacing:834.960000pt;}
.ws6{word-spacing:-33.152000pt;}
.ws5{word-spacing:-32.970667pt;}
.ws4{word-spacing:-19.104000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws2{word-spacing:-18.581333pt;}
.ws3{word-spacing:-18.186667pt;}
.ws1{word-spacing:0.000000pt;}
._50{margin-left:-1734.645333pt;}
._51{margin-left:-1469.242667pt;}
._3a{margin-left:-1062.304000pt;}
._39{margin-left:-1060.501333pt;}
._35{margin-left:-881.856000pt;}
._4f{margin-left:-484.288000pt;}
._4e{margin-left:-458.634667pt;}
._43{margin-left:-381.136000pt;}
._42{margin-left:-365.749333pt;}
._47{margin-left:-277.002667pt;}
._40{margin-left:-259.637333pt;}
._41{margin-left:-256.757333pt;}
._48{margin-left:-174.906667pt;}
._38{margin-left:-170.496000pt;}
._4a{margin-left:-152.245333pt;}
._46{margin-left:-146.666667pt;}
._4b{margin-left:-106.666667pt;}
._49{margin-left:-95.466667pt;}
._3d{margin-left:-77.749333pt;}
._36{margin-left:-74.976000pt;}
._44{margin-left:-64.000000pt;}
._37{margin-left:-57.845333pt;}
._45{margin-left:-56.864000pt;}
._3e{margin-left:-55.130667pt;}
._3b{margin-left:-41.952000pt;}
._3c{margin-left:-39.552000pt;}
._1b{margin-left:-2.400000pt;}
._1{margin-left:-1.493333pt;}
._0{width:0.970667pt;}
._2{width:1.952000pt;}
._3{width:2.912000pt;}
._4{width:3.808000pt;}
._13{width:5.226667pt;}
._11{width:6.197333pt;}
._10{width:7.392000pt;}
._f{width:8.437333pt;}
._23{width:9.333333pt;}
._14{width:10.378667pt;}
._24{width:11.290667pt;}
._2a{width:12.752000pt;}
._1a{width:13.888000pt;}
._19{width:15.008000pt;}
._12{width:15.978667pt;}
._e{width:17.173333pt;}
._16{width:19.637333pt;}
._20{width:21.280000pt;}
._8{width:22.176000pt;}
._5{width:23.146667pt;}
._6{width:24.490667pt;}
._7{width:25.461333pt;}
._15{width:26.432000pt;}
._2b{width:27.552000pt;}
._2c{width:28.533333pt;}
._9{width:29.568000pt;}
._a{width:30.464000pt;}
._b{width:31.808000pt;}
._2d{width:33.002667pt;}
._27{width:34.325333pt;}
._25{width:35.701333pt;}
._26{width:37.205333pt;}
._29{width:38.378667pt;}
._28{width:39.285333pt;}
._33{width:41.466667pt;}
._2f{width:42.624000pt;}
._1d{width:43.754667pt;}
._1c{width:44.960000pt;}
._30{width:51.109333pt;}
._d{width:52.592000pt;}
._c{width:53.680000pt;}
._53{width:55.328000pt;}
._17{width:56.522667pt;}
._18{width:58.016000pt;}
._2e{width:59.061333pt;}
._31{width:63.840000pt;}
._32{width:64.736000pt;}
._1e{width:94.677333pt;}
._1f{width:96.469333pt;}
._21{width:109.909333pt;}
._22{width:111.333333pt;}
._54{width:749.626667pt;}
._3f{width:953.744000pt;}
._4c{width:1220.133333pt;}
._34{width:1502.426667pt;}
._4d{width:1956.933333pt;}
._52{width:2192.826667pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y40{bottom:79.233333pt;}
.y2e{bottom:85.366667pt;}
.y44{bottom:86.700000pt;}
.y3f{bottom:97.633333pt;}
.y2d{bottom:106.700000pt;}
.y3e{bottom:116.033333pt;}
.y2c{bottom:128.300000pt;}
.y3d{bottom:134.440000pt;}
.y3c{bottom:141.893333pt;}
.y2b{bottom:149.666667pt;}
.y3b{bottom:152.866667pt;}
.y2a{bottom:171.266667pt;}
.y3a{bottom:178.733333pt;}
.y39{bottom:189.666667pt;}
.y29{bottom:192.600000pt;}
.y28{bottom:214.200000pt;}
.y27{bottom:235.533333pt;}
.y26{bottom:257.133333pt;}
.y25{bottom:278.466667pt;}
.y38{bottom:287.266667pt;}
.y24{bottom:300.106667pt;}
.y43{bottom:320.893333pt;}
.y23{bottom:321.440000pt;}
.y42{bottom:342.506667pt;}
.y22{bottom:343.026667pt;}
.y21{bottom:364.360000pt;}
.y20{bottom:385.960000pt;}
.y1f{bottom:407.293333pt;}
.y1e{bottom:428.893333pt;}
.y1d{bottom:450.266667pt;}
.y1c{bottom:471.866667pt;}
.y37{bottom:480.666667pt;}
.y1b{bottom:492.666667pt;}
.y34{bottom:493.200000pt;}
.y41{bottom:502.000000pt;}
.y1a{bottom:514.266667pt;}
.y33{bottom:514.800000pt;}
.y19{bottom:536.133333pt;}
.y18{bottom:557.733333pt;}
.y17{bottom:579.066667pt;}
.y16{bottom:600.693333pt;}
.y15{bottom:622.026667pt;}
.y14{bottom:643.626667pt;}
.y13{bottom:664.960000pt;}
.y12{bottom:686.560000pt;}
.y11{bottom:707.893333pt;}
.y10{bottom:729.506667pt;}
.yf{bottom:750.866667pt;}
.ye{bottom:772.466667pt;}
.yd{bottom:793.800000pt;}
.yc{bottom:815.400000pt;}
.yb{bottom:836.733333pt;}
.ya{bottom:858.333333pt;}
.y9{bottom:879.133333pt;}
.y32{bottom:879.666667pt;}
.y8{bottom:900.760000pt;}
.y31{bottom:901.293333pt;}
.y7{bottom:922.626667pt;}
.y6{bottom:944.226667pt;}
.y30{bottom:965.560000pt;}
.y5{bottom:986.626667pt;}
.y2f{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y36{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y35{bottom:1030.106667pt;}
.ha{height:41.875000pt;}
.h8{height:47.109375pt;}
.h4{height:52.682292pt;}
.h3{height:54.818262pt;}
.hc{height:56.406250pt;}
.h9{height:58.351562pt;}
.hb{height:62.812500pt;}
.h6{height:65.807292pt;}
.h2{height:73.281250pt;}
.h5{height:75.250000pt;}
.hd{height:77.109375pt;}
.h7{height:1122.383200pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.500000pt;}
.x3{left:89.366667pt;}
.xd{left:91.500000pt;}
.x5{left:113.366667pt;}
.x4{left:154.693333pt;}
.xa{left:163.250000pt;}
.xb{left:181.666667pt;}
.x7{left:217.666667pt;}
.xe{left:227.516667pt;}
.xf{left:245.933333pt;}
.xc{left:267.573333pt;}
.x6{left:269.173333pt;}
.x1{left:382.800000pt;}
.x8{left:699.690000pt;}
.x9{left:718.106667pt;}
}




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