
    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_b34fab100ca51247db4c7fbf.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_eec8f0b767c8074c109be4aa.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5d78e497242a81a6549516af.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_48e8ac61acb33dbb453d2c46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932617;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_56513cd49e0104e4f4cf3fd1.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_7cdd22b04e351c48c89c9d9f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_49b082e0ded65023cad8cc3a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bbce4be19702a9b2c69f412c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_562c6ed20c0353b573a73d24.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v1{vertical-align:-94.320000px;}
.v2{vertical-align:-84.960000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.738000px;}
.lse{letter-spacing:-0.684000px;}
.ls6{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.125280px;}
.lsf{letter-spacing:0.252720px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.378600px;}
.ls3{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.540000px;}
.ls13{letter-spacing:2.880000px;}
.lsb{letter-spacing:17.100000px;}
.ls10{letter-spacing:23.580000px;}
.ls0{letter-spacing:23.760000px;}
.ls12{letter-spacing:33.984000px;}
.ls11{letter-spacing:1065.936000px;}
.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;}
}
.ws8{word-spacing:-21.438600px;}
.ws0{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.097440px;}
.ws9{word-spacing:-21.088080px;}
.ws6{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.700000px;}
.ws1{word-spacing:-20.322000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws2{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._35{margin-left:-9.013680px;}
._31{margin-left:-6.546960px;}
._2f{margin-left:-4.967520px;}
._34{margin-left:-3.824880px;}
._30{margin-left:-2.274480px;}
._0{margin-left:-1.179360px;}
._1{width:1.059360px;}
._13{width:2.289360px;}
._10{width:3.353760px;}
._17{width:5.307120px;}
._16{width:6.402240px;}
._4{width:7.920000px;}
._3{width:8.928000px;}
._c{width:10.124160px;}
._b{width:11.349120px;}
._2e{width:12.376320px;}
._12{width:13.394160px;}
._8{width:14.924160px;}
._7{width:16.342560px;}
._1c{width:17.521920px;}
._1b{width:18.659760px;}
._11{width:19.996320px;}
._25{width:22.155120px;}
._5{width:23.616000px;}
._f{width:25.366800px;}
._d{width:26.872560px;}
._e{width:28.434000px;}
._14{width:30.271680px;}
._6{width:31.392000px;}
._a{width:32.918400px;}
._15{width:34.257120px;}
._1d{width:35.410800px;}
._24{width:36.852960px;}
._20{width:37.992240px;}
._1e{width:39.255840px;}
._1f{width:40.576800px;}
._21{width:42.288480px;}
._18{width:43.636320px;}
._26{width:44.841360px;}
._23{width:46.206720px;}
._27{width:47.966640px;}
._33{width:49.311120px;}
._1a{width:51.334320px;}
._2{width:52.824000px;}
._22{width:54.483840px;}
._9{width:56.103840px;}
._19{width:57.318960px;}
._32{width:60.568560px;}
._2d{width:66.886560px;}
._2c{width:68.065920px;}
._29{width:70.087680px;}
._28{width:71.267040px;}
._2b{width:83.038080px;}
._2a{width:84.417120px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y2c{bottom:81.396000px;}
.y4e{bottom:96.876000px;}
.y2b{bottom:109.116000px;}
.y4d{bottom:124.596000px;}
.y2a{bottom:136.836000px;}
.y4c{bottom:152.490000px;}
.y29{bottom:164.730000px;}
.y4b{bottom:180.210000px;}
.y28{bottom:192.450000px;}
.y4a{bottom:207.930000px;}
.y27{bottom:220.170000px;}
.y49{bottom:235.650000px;}
.y26{bottom:247.890000px;}
.y48{bottom:263.550000px;}
.y25{bottom:275.790000px;}
.y47{bottom:291.315000px;}
.y24{bottom:303.555000px;}
.y56{bottom:309.495000px;}
.y46{bottom:319.035000px;}
.y23{bottom:331.275000px;}
.y55{bottom:345.675000px;}
.y45{bottom:346.935000px;}
.y22{bottom:359.175000px;}
.y54{bottom:369.255000px;}
.y44{bottom:374.655000px;}
.y21{bottom:386.895000px;}
.y53{bottom:389.955000px;}
.y43{bottom:402.375000px;}
.y52{bottom:410.655000px;}
.y20{bottom:414.615000px;}
.y42{bottom:430.095000px;}
.y51{bottom:431.355000px;}
.y1f{bottom:442.335000px;}
.y50{bottom:452.055000px;}
.y41{bottom:457.995000px;}
.y1e{bottom:470.235000px;}
.y40{bottom:485.715000px;}
.y4f{bottom:493.995000px;}
.y1d{bottom:494.355000px;}
.y3f{bottom:513.435000px;}
.y1c{bottom:518.475000px;}
.y3e{bottom:541.155000px;}
.y1b{bottom:542.595000px;}
.y1a{bottom:566.745000px;}
.y3d{bottom:569.085000px;}
.y19{bottom:590.865000px;}
.y3c{bottom:596.805000px;}
.y18{bottom:615.165000px;}
.y3b{bottom:624.525000px;}
.y17{bottom:639.285000px;}
.y3a{bottom:652.425000px;}
.y16{bottom:663.405000px;}
.y39{bottom:680.145000px;}
.y15{bottom:687.525000px;}
.y38{bottom:707.865000px;}
.y14{bottom:735.225000px;}
.y37{bottom:735.585000px;}
.y13{bottom:755.925000px;}
.y36{bottom:763.485000px;}
.y12{bottom:776.625000px;}
.y35{bottom:791.205000px;}
.y11{bottom:797.325000px;}
.y10{bottom:818.025000px;}
.y34{bottom:818.925000px;}
.yf{bottom:838.725000px;}
.y33{bottom:846.825000px;}
.ye{bottom:859.470000px;}
.y32{bottom:874.590000px;}
.yd{bottom:879.450000px;}
.yc{bottom:897.450000px;}
.y31{bottom:902.310000px;}
.yb{bottom:918.150000px;}
.y30{bottom:930.030000px;}
.ya{bottom:938.850000px;}
.y2f{bottom:957.930000px;}
.y9{bottom:959.550000px;}
.y8{bottom:980.250000px;}
.y2e{bottom:985.650000px;}
.y7{bottom:999.870000px;}
.y2d{bottom:1013.370000px;}
.y6{bottom:1016.970000px;}
.y5{bottom:1041.270000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.ha{height:47.344922px;}
.h5{height:54.421875px;}
.h8{height:58.621992px;}
.h9{height:58.819922px;}
.h7{height:70.628906px;}
.hc{height:70.664062px;}
.h6{height:72.562500px;}
.hb{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:27.360000px;}
.x1{left:84.959987px;}
.xe{left:90.035987px;}
.x4{left:113.075987px;}
.xd{left:117.035987px;}
.xc{left:127.475987px;}
.xb{left:138.095987px;}
.x9{left:186.869987px;}
.x5{left:196.769987px;}
.x8{left:295.454987px;}
.x7{left:336.134987px;}
.x2{left:409.035000px;}
.x6{left:446.474987px;}
.xa{left:462.494987px;}
@media print{
.v1{vertical-align:-83.840000pt;}
.v2{vertical-align:-75.520000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.656000pt;}
.lse{letter-spacing:-0.608000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.111360pt;}
.lsf{letter-spacing:0.224640pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.336533pt;}
.ls3{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls13{letter-spacing:2.560000pt;}
.lsb{letter-spacing:15.200000pt;}
.ls10{letter-spacing:20.960000pt;}
.ls0{letter-spacing:21.120000pt;}
.ls12{letter-spacing:30.208000pt;}
.ls11{letter-spacing:947.498667pt;}
.ws8{word-spacing:-19.056533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.753280pt;}
.ws9{word-spacing:-18.744960pt;}
.ws6{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.400000pt;}
.ws1{word-spacing:-18.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._35{margin-left:-8.012160pt;}
._31{margin-left:-5.819520pt;}
._2f{margin-left:-4.415573pt;}
._34{margin-left:-3.399893pt;}
._30{margin-left:-2.021760pt;}
._0{margin-left:-1.048320pt;}
._1{width:0.941653pt;}
._13{width:2.034987pt;}
._10{width:2.981120pt;}
._17{width:4.717440pt;}
._16{width:5.690880pt;}
._4{width:7.040000pt;}
._3{width:7.936000pt;}
._c{width:8.999253pt;}
._b{width:10.088107pt;}
._2e{width:11.001173pt;}
._12{width:11.905920pt;}
._8{width:13.265920pt;}
._7{width:14.526720pt;}
._1c{width:15.575040pt;}
._1b{width:16.586453pt;}
._11{width:17.774507pt;}
._25{width:19.693440pt;}
._5{width:20.992000pt;}
._f{width:22.548267pt;}
._d{width:23.886720pt;}
._e{width:25.274667pt;}
._14{width:26.908160pt;}
._6{width:27.904000pt;}
._a{width:29.260800pt;}
._15{width:30.450773pt;}
._1d{width:31.476267pt;}
._24{width:32.758187pt;}
._20{width:33.770880pt;}
._1e{width:34.894080pt;}
._1f{width:36.068267pt;}
._21{width:37.589760pt;}
._18{width:38.787840pt;}
._26{width:39.858987pt;}
._23{width:41.072640pt;}
._27{width:42.637013pt;}
._33{width:43.832107pt;}
._1a{width:45.630507pt;}
._2{width:46.954667pt;}
._22{width:48.430080pt;}
._9{width:49.870080pt;}
._19{width:50.950187pt;}
._32{width:53.838720pt;}
._2d{width:59.454720pt;}
._2c{width:60.503040pt;}
._29{width:62.300160pt;}
._28{width:63.348480pt;}
._2b{width:73.811627pt;}
._2a{width:75.037440pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y2c{bottom:72.352000pt;}
.y4e{bottom:86.112000pt;}
.y2b{bottom:96.992000pt;}
.y4d{bottom:110.752000pt;}
.y2a{bottom:121.632000pt;}
.y4c{bottom:135.546667pt;}
.y29{bottom:146.426667pt;}
.y4b{bottom:160.186667pt;}
.y28{bottom:171.066667pt;}
.y4a{bottom:184.826667pt;}
.y27{bottom:195.706667pt;}
.y49{bottom:209.466667pt;}
.y26{bottom:220.346667pt;}
.y48{bottom:234.266667pt;}
.y25{bottom:245.146667pt;}
.y47{bottom:258.946667pt;}
.y24{bottom:269.826667pt;}
.y56{bottom:275.106667pt;}
.y46{bottom:283.586667pt;}
.y23{bottom:294.466667pt;}
.y55{bottom:307.266667pt;}
.y45{bottom:308.386667pt;}
.y22{bottom:319.266667pt;}
.y54{bottom:328.226667pt;}
.y44{bottom:333.026667pt;}
.y21{bottom:343.906667pt;}
.y53{bottom:346.626667pt;}
.y43{bottom:357.666667pt;}
.y52{bottom:365.026667pt;}
.y20{bottom:368.546667pt;}
.y42{bottom:382.306667pt;}
.y51{bottom:383.426667pt;}
.y1f{bottom:393.186667pt;}
.y50{bottom:401.826667pt;}
.y41{bottom:407.106667pt;}
.y1e{bottom:417.986667pt;}
.y40{bottom:431.746667pt;}
.y4f{bottom:439.106667pt;}
.y1d{bottom:439.426667pt;}
.y3f{bottom:456.386667pt;}
.y1c{bottom:460.866667pt;}
.y3e{bottom:481.026667pt;}
.y1b{bottom:482.306667pt;}
.y1a{bottom:503.773333pt;}
.y3d{bottom:505.853333pt;}
.y19{bottom:525.213333pt;}
.y3c{bottom:530.493333pt;}
.y18{bottom:546.813333pt;}
.y3b{bottom:555.133333pt;}
.y17{bottom:568.253333pt;}
.y3a{bottom:579.933333pt;}
.y16{bottom:589.693333pt;}
.y39{bottom:604.573333pt;}
.y15{bottom:611.133333pt;}
.y38{bottom:629.213333pt;}
.y14{bottom:653.533333pt;}
.y37{bottom:653.853333pt;}
.y13{bottom:671.933333pt;}
.y36{bottom:678.653333pt;}
.y12{bottom:690.333333pt;}
.y35{bottom:703.293333pt;}
.y11{bottom:708.733333pt;}
.y10{bottom:727.133333pt;}
.y34{bottom:727.933333pt;}
.yf{bottom:745.533333pt;}
.y33{bottom:752.733333pt;}
.ye{bottom:763.973333pt;}
.y32{bottom:777.413333pt;}
.yd{bottom:781.733333pt;}
.yc{bottom:797.733333pt;}
.y31{bottom:802.053333pt;}
.yb{bottom:816.133333pt;}
.y30{bottom:826.693333pt;}
.ya{bottom:834.533333pt;}
.y2f{bottom:851.493333pt;}
.y9{bottom:852.933333pt;}
.y8{bottom:871.333333pt;}
.y2e{bottom:876.133333pt;}
.y7{bottom:888.773333pt;}
.y2d{bottom:900.773333pt;}
.y6{bottom:903.973333pt;}
.y5{bottom:925.573333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.ha{height:42.084375pt;}
.h5{height:48.375000pt;}
.h8{height:52.108438pt;}
.h9{height:52.284375pt;}
.h7{height:62.781250pt;}
.hc{height:62.812500pt;}
.h6{height:64.500000pt;}
.hb{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:24.320000pt;}
.x1{left:75.519988pt;}
.xe{left:80.031988pt;}
.x4{left:100.511988pt;}
.xd{left:104.031988pt;}
.xc{left:113.311988pt;}
.xb{left:122.751988pt;}
.x9{left:166.106655pt;}
.x5{left:174.906655pt;}
.x8{left:262.626655pt;}
.x7{left:298.786655pt;}
.x2{left:363.586667pt;}
.x6{left:396.866655pt;}
.xa{left:411.106655pt;}
}




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