
    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_4caee3b4eea5d407c4a9be6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.702148;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_339d8d505845dbaee0e0bab5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942383;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_4a20895da896911c5707a596.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_da819f4a20974b24c0ad787d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5765a84e7c86cd7926545de0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5aacde7cf8035fc026dc918e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c72cf93924489b93172e501.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.077148;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_2164634c916aee793a614847.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.072754;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_83c1faace85d6995be6a93b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.050293;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.080640px;}
.lsc{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.198000px;}
.ls6{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.ls2{letter-spacing:4.469760px;}
.ls0{letter-spacing:1565.400000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(31,56,100),0 0.015em rgb(31,56,100),0.015em 0 rgb(31,56,100),0 -0.015em  rgb(31,56,100);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(31,56,100);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.948000px;}
.ws9{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.402000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-4.939200px;}
._a{margin-left:-3.113280px;}
._2{margin-left:-1.836000px;}
._0{width:1.260000px;}
._5{width:2.616000px;}
._1{width:3.720000px;}
._d{width:4.726320px;}
._8{width:5.910000px;}
._c{width:7.101120px;}
._b{width:8.147520px;}
._10{width:9.964800px;}
._e{width:11.145600px;}
._f{width:12.500640px;}
._15{width:15.367680px;}
._1b{width:16.570080px;}
._9{width:17.866080px;}
._11{width:19.474560px;}
._17{width:20.585280px;}
._16{width:21.660480px;}
._13{width:23.051520px;}
._14{width:24.526560px;}
._1a{width:25.542720px;}
._7{width:34.011840px;}
._6{width:35.458320px;}
._18{width:37.670400px;}
._19{width:39.057120px;}
._3{width:456.708000px;}
._4{width:1158.540000px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,56,100);}
.fc6{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(62,62,62);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs8{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.640000px;}
.ya{bottom:56.700000px;}
.y3e{bottom:71.316000px;}
.y9{bottom:95.256000px;}
.y3d{bottom:104.976000px;}
.y8{bottom:111.636000px;}
.y3c{bottom:124.236000px;}
.y7{bottom:128.196000px;}
.y3b{bottom:140.616000px;}
.y6{bottom:144.576000px;}
.y69{bottom:173.910000px;}
.y68{bottom:189.210000px;}
.y36{bottom:195.870000px;}
.y35{bottom:214.770000px;}
.y67{bottom:216.930000px;}
.y66{bottom:232.230000px;}
.y34{bottom:233.670000px;}
.y33{bottom:252.750000px;}
.y65{bottom:259.950000px;}
.y32{bottom:271.650000px;}
.y64{bottom:275.430000px;}
.y31{bottom:290.730000px;}
.y63{bottom:302.970000px;}
.y30{bottom:309.630000px;}
.y62{bottom:318.450000px;}
.y2f{bottom:328.530000px;}
.y61{bottom:346.215000px;}
.y2e{bottom:359.715000px;}
.y60{bottom:361.515000px;}
.y2d{bottom:378.615000px;}
.y5f{bottom:389.235000px;}
.y2c{bottom:397.515000px;}
.y5e{bottom:404.535000px;}
.y2b{bottom:416.595000px;}
.y5d{bottom:432.255000px;}
.y2a{bottom:435.495000px;}
.y5c{bottom:447.555000px;}
.y29{bottom:454.575000px;}
.y28{bottom:473.475000px;}
.y5b{bottom:475.455000px;}
.y27{bottom:504.435000px;}
.y5a{bottom:505.875000px;}
.y26{bottom:523.335000px;}
.y59{bottom:533.415000px;}
.y25{bottom:542.415000px;}
.y24{bottom:561.315000px;}
.y58{bottom:561.495000px;}
.y23{bottom:580.395000px;}
.y57{bottom:592.815000px;}
.y22{bottom:599.295000px;}
.y21{bottom:618.405000px;}
.y56{bottom:623.805000px;}
.y20{bottom:637.305000px;}
.y55{bottom:642.885000px;}
.y54{bottom:661.785000px;}
.y1f{bottom:668.265000px;}
.y53{bottom:680.865000px;}
.y1e{bottom:687.165000px;}
.y52{bottom:699.765000px;}
.y1d{bottom:706.245000px;}
.y51{bottom:718.665000px;}
.y1c{bottom:725.145000px;}
.y50{bottom:737.745000px;}
.y1b{bottom:744.225000px;}
.y4f{bottom:756.645000px;}
.y1a{bottom:763.125000px;}
.y4e{bottom:775.725000px;}
.y19{bottom:782.025000px;}
.y4d{bottom:806.685000px;}
.y18{bottom:813.165000px;}
.y4c{bottom:825.585000px;}
.y17{bottom:832.065000px;}
.y4b{bottom:844.485000px;}
.y16{bottom:850.965000px;}
.y4a{bottom:863.565000px;}
.y15{bottom:870.045000px;}
.y49{bottom:882.510000px;}
.y14{bottom:888.990000px;}
.y48{bottom:901.590000px;}
.y13{bottom:908.070000px;}
.y47{bottom:920.490000px;}
.y12{bottom:939.030000px;}
.y46{bottom:951.450000px;}
.y11{bottom:969.630000px;}
.y45{bottom:970.530000px;}
.y44{bottom:989.430000px;}
.y10{bottom:992.670000px;}
.y43{bottom:1008.330000px;}
.yf{bottom:1016.610000px;}
.y42{bottom:1027.410000px;}
.y41{bottom:1046.310000px;}
.ye{bottom:1049.910000px;}
.yd{bottom:1074.030000px;}
.y40{bottom:1077.270000px;}
.y3f{bottom:1096.350000px;}
.y5{bottom:1096.710000px;}
.y4{bottom:1112.190000px;}
.y3{bottom:1128.570000px;}
.y3a{bottom:1129.470000px;}
.y2{bottom:1160.820000px;}
.y39{bottom:1163.340000px;}
.y1{bottom:1180.980000px;}
.y38{bottom:1182.060000px;}
.yb{bottom:1182.780000px;}
.y37{bottom:1197.540000px;}
.ha{height:22.860000px;}
.hd{height:35.332031px;}
.h6{height:52.998047px;}
.h7{height:53.709961px;}
.h11{height:54.421875px;}
.h10{height:55.275469px;}
.h5{height:58.651172px;}
.hb{height:61.189805px;}
.h9{height:63.019687px;}
.hf{height:65.010937px;}
.h8{height:65.884219px;}
.he{height:66.757500px;}
.h4{height:72.562500px;}
.h3{height:82.676953px;}
.hc{height:84.898125px;}
.h2{height:86.071289px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:176.250000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:33.345000px;}
.x1{left:106.235987px;}
.x2{left:207.389987px;}
.x6{left:243.929987px;}
.x5{left:436.214987px;}
.x3{left:637.845000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.071680pt;}
.lsc{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.176000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls2{letter-spacing:3.973120pt;}
.ls0{letter-spacing:1391.466667pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.176000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.005120pt;}
.ws7{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.024000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-4.390400pt;}
._a{margin-left:-2.767360pt;}
._2{margin-left:-1.632000pt;}
._0{width:1.120000pt;}
._5{width:2.325333pt;}
._1{width:3.306667pt;}
._d{width:4.201173pt;}
._8{width:5.253333pt;}
._c{width:6.312107pt;}
._b{width:7.242240pt;}
._10{width:8.857600pt;}
._e{width:9.907200pt;}
._f{width:11.111680pt;}
._15{width:13.660160pt;}
._1b{width:14.728960pt;}
._9{width:15.880960pt;}
._11{width:17.310720pt;}
._17{width:18.298027pt;}
._16{width:19.253760pt;}
._13{width:20.490240pt;}
._14{width:21.801387pt;}
._1a{width:22.704640pt;}
._7{width:30.232747pt;}
._6{width:31.518507pt;}
._18{width:33.484800pt;}
._19{width:34.717440pt;}
._3{width:405.962667pt;}
._4{width:1029.813333pt;}
.fs8{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.680000pt;}
.ya{bottom:50.400000pt;}
.y3e{bottom:63.392000pt;}
.y9{bottom:84.672000pt;}
.y3d{bottom:93.312000pt;}
.y8{bottom:99.232000pt;}
.y3c{bottom:110.432000pt;}
.y7{bottom:113.952000pt;}
.y3b{bottom:124.992000pt;}
.y6{bottom:128.512000pt;}
.y69{bottom:154.586667pt;}
.y68{bottom:168.186667pt;}
.y36{bottom:174.106667pt;}
.y35{bottom:190.906667pt;}
.y67{bottom:192.826667pt;}
.y66{bottom:206.426667pt;}
.y34{bottom:207.706667pt;}
.y33{bottom:224.666667pt;}
.y65{bottom:231.066667pt;}
.y32{bottom:241.466667pt;}
.y64{bottom:244.826667pt;}
.y31{bottom:258.426667pt;}
.y63{bottom:269.306667pt;}
.y30{bottom:275.226667pt;}
.y62{bottom:283.066667pt;}
.y2f{bottom:292.026667pt;}
.y61{bottom:307.746667pt;}
.y2e{bottom:319.746667pt;}
.y60{bottom:321.346667pt;}
.y2d{bottom:336.546667pt;}
.y5f{bottom:345.986667pt;}
.y2c{bottom:353.346667pt;}
.y5e{bottom:359.586667pt;}
.y2b{bottom:370.306667pt;}
.y5d{bottom:384.226667pt;}
.y2a{bottom:387.106667pt;}
.y5c{bottom:397.826667pt;}
.y29{bottom:404.066667pt;}
.y28{bottom:420.866667pt;}
.y5b{bottom:422.626667pt;}
.y27{bottom:448.386667pt;}
.y5a{bottom:449.666667pt;}
.y26{bottom:465.186667pt;}
.y59{bottom:474.146667pt;}
.y25{bottom:482.146667pt;}
.y24{bottom:498.946667pt;}
.y58{bottom:499.106667pt;}
.y23{bottom:515.906667pt;}
.y57{bottom:526.946667pt;}
.y22{bottom:532.706667pt;}
.y21{bottom:549.693333pt;}
.y56{bottom:554.493333pt;}
.y20{bottom:566.493333pt;}
.y55{bottom:571.453333pt;}
.y54{bottom:588.253333pt;}
.y1f{bottom:594.013333pt;}
.y53{bottom:605.213333pt;}
.y1e{bottom:610.813333pt;}
.y52{bottom:622.013333pt;}
.y1d{bottom:627.773333pt;}
.y51{bottom:638.813333pt;}
.y1c{bottom:644.573333pt;}
.y50{bottom:655.773333pt;}
.y1b{bottom:661.533333pt;}
.y4f{bottom:672.573333pt;}
.y1a{bottom:678.333333pt;}
.y4e{bottom:689.533333pt;}
.y19{bottom:695.133333pt;}
.y4d{bottom:717.053333pt;}
.y18{bottom:722.813333pt;}
.y4c{bottom:733.853333pt;}
.y17{bottom:739.613333pt;}
.y4b{bottom:750.653333pt;}
.y16{bottom:756.413333pt;}
.y4a{bottom:767.613333pt;}
.y15{bottom:773.373333pt;}
.y49{bottom:784.453333pt;}
.y14{bottom:790.213333pt;}
.y48{bottom:801.413333pt;}
.y13{bottom:807.173333pt;}
.y47{bottom:818.213333pt;}
.y12{bottom:834.693333pt;}
.y46{bottom:845.733333pt;}
.y11{bottom:861.893333pt;}
.y45{bottom:862.693333pt;}
.y44{bottom:879.493333pt;}
.y10{bottom:882.373333pt;}
.y43{bottom:896.293333pt;}
.yf{bottom:903.653333pt;}
.y42{bottom:913.253333pt;}
.y41{bottom:930.053333pt;}
.ye{bottom:933.253333pt;}
.yd{bottom:954.693333pt;}
.y40{bottom:957.573333pt;}
.y3f{bottom:974.533333pt;}
.y5{bottom:974.853333pt;}
.y4{bottom:988.613333pt;}
.y3{bottom:1003.173333pt;}
.y3a{bottom:1003.973333pt;}
.y2{bottom:1031.840000pt;}
.y39{bottom:1034.080000pt;}
.y1{bottom:1049.760000pt;}
.y38{bottom:1050.720000pt;}
.yb{bottom:1051.360000pt;}
.y37{bottom:1064.480000pt;}
.ha{height:20.320000pt;}
.hd{height:31.406250pt;}
.h6{height:47.109375pt;}
.h7{height:47.742188pt;}
.h11{height:48.375000pt;}
.h10{height:49.133750pt;}
.h5{height:52.134375pt;}
.hb{height:54.390938pt;}
.h9{height:56.017500pt;}
.hf{height:57.787500pt;}
.h8{height:58.563750pt;}
.he{height:59.340000pt;}
.h4{height:64.500000pt;}
.h3{height:73.490625pt;}
.hc{height:75.465000pt;}
.h2{height:76.507812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:156.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:29.640000pt;}
.x1{left:94.431988pt;}
.x2{left:184.346655pt;}
.x6{left:216.826655pt;}
.x5{left:387.746655pt;}
.x3{left:566.973333pt;}
}




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