
    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_ea8eb1d31b5bbf31a12849c5.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8fad91f48edc9f1698aca550.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_53ebcc7748fa7b890d92fdfe.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b9e06e060e4f3d6fdf55874e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_da0fe1b293b73bfdf15033ed.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923340;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_14d48d8d6945ec5ae4a850dd.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2824062f5e033591b1f50f76.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_05178c578b58bede49792756.woff')format("woff");}.ff8{font-family:ff8;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;}
.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:-96.480000px;}
.v3{vertical-align:-95.040000px;}
.v1{vertical-align:-74.160000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.350400px;}
.ls6{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.350400px;}
.lsa{letter-spacing:0.360000px;}
.ls9{letter-spacing:21.221280px;}
.ls0{letter-spacing:194.940000px;}
.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;}
}
.ws5{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.410400px;}
.ws0{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.709600px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._23{margin-left:-2.368800px;}
._0{margin-left:-1.347840px;}
._1{width:1.054560px;}
._3{width:2.695680px;}
._15{width:3.875040px;}
._14{width:4.970160px;}
._4{width:5.981040px;}
._5{width:7.285200px;}
._13{width:8.424000px;}
._12{width:9.434880px;}
._1b{width:10.530000px;}
._17{width:11.877840px;}
._6{width:13.225680px;}
._16{width:14.994720px;}
._d{width:16.258320px;}
._c{width:17.521920px;}
._9{width:18.720000px;}
._a{width:19.880640px;}
._1f{width:22.195680px;}
._18{width:23.334480px;}
._19{width:24.450720px;}
._1a{width:25.587840px;}
._11{width:26.956800px;}
._e{width:28.388880px;}
._1c{width:29.568240px;}
._8{width:31.084560px;}
._7{width:32.179680px;}
._b{width:34.032960px;}
._24{width:35.060880px;}
._20{width:36.132240px;}
._f{width:37.945200px;}
._10{width:40.818960px;}
._21{width:41.867280px;}
._22{width:43.130880px;}
._1d{width:46.500480px;}
._1e{width:47.636160px;}
._2{width:1619.640960px;}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(128,100,162);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(95,73,122);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:57.960000px;}
.y7{bottom:76.860000px;}
.y5f{bottom:95.400000px;}
.y58{bottom:95.940000px;}
.y57{bottom:101.880000px;}
.y5e{bottom:113.040000px;}
.y2e{bottom:113.580000px;}
.y56{bottom:114.840000px;}
.y5d{bottom:118.980000px;}
.y5c{bottom:132.120000px;}
.y2d{bottom:137.736000px;}
.y55{bottom:158.430000px;}
.y2c{bottom:161.850000px;}
.y59{bottom:165.990000px;}
.y75{bottom:179.850000px;}
.y54{bottom:182.550000px;}
.y2b{bottom:185.970000px;}
.y53{bottom:206.670000px;}
.y2a{bottom:210.090000px;}
.y74{bottom:210.270000px;}
.y52{bottom:230.790000px;}
.y29{bottom:234.210000px;}
.y73{bottom:237.990000px;}
.y51{bottom:254.910000px;}
.y28{bottom:258.330000px;}
.y72{bottom:265.890000px;}
.y50{bottom:279.030000px;}
.y27{bottom:282.630000px;}
.y71{bottom:293.610000px;}
.y4f{bottom:303.330000px;}
.y26{bottom:306.750000px;}
.y70{bottom:321.330000px;}
.y4e{bottom:327.450000px;}
.y25{bottom:330.870000px;}
.y6f{bottom:349.050000px;}
.y4d{bottom:351.570000px;}
.y24{bottom:354.990000px;}
.y4c{bottom:375.690000px;}
.y6e{bottom:376.950000px;}
.y23{bottom:379.110000px;}
.y4b{bottom:399.855000px;}
.y22{bottom:403.275000px;}
.y6d{bottom:404.715000px;}
.y5b{bottom:423.615000px;}
.y4a{bottom:423.975000px;}
.y6c{bottom:432.435000px;}
.y49{bottom:448.275000px;}
.y21{bottom:451.335000px;}
.y6b{bottom:460.335000px;}
.y48{bottom:472.395000px;}
.y20{bottom:475.815000px;}
.y6a{bottom:488.055000px;}
.y47{bottom:496.515000px;}
.y1f{bottom:499.935000px;}
.y69{bottom:515.775000px;}
.y46{bottom:520.635000px;}
.y1e{bottom:524.055000px;}
.y68{bottom:543.495000px;}
.y44{bottom:544.755000px;}
.y1d{bottom:548.175000px;}
.y45{bottom:552.315000px;}
.y43{bottom:568.875000px;}
.y67{bottom:571.395000px;}
.y1c{bottom:572.295000px;}
.y42{bottom:592.995000px;}
.y66{bottom:599.115000px;}
.y41{bottom:617.295000px;}
.y1b{bottom:620.355000px;}
.y65{bottom:626.835000px;}
.y40{bottom:641.445000px;}
.y1a{bottom:644.865000px;}
.y64{bottom:654.765000px;}
.y3f{bottom:665.565000px;}
.y19{bottom:668.985000px;}
.y63{bottom:682.485000px;}
.y3e{bottom:689.685000px;}
.y18{bottom:693.105000px;}
.y62{bottom:710.205000px;}
.y3d{bottom:713.805000px;}
.y17{bottom:717.225000px;}
.y3c{bottom:737.925000px;}
.y16{bottom:741.525000px;}
.y61{bottom:761.865000px;}
.y3b{bottom:762.225000px;}
.y15{bottom:765.645000px;}
.y60{bottom:785.985000px;}
.y3a{bottom:786.345000px;}
.y14{bottom:789.765000px;}
.y39{bottom:810.465000px;}
.y13{bottom:813.885000px;}
.y38{bottom:834.585000px;}
.y12{bottom:838.005000px;}
.y5a{bottom:842.145000px;}
.y37{bottom:858.705000px;}
.y11{bottom:862.125000px;}
.y36{bottom:882.825000px;}
.y10{bottom:885.885000px;}
.y35{bottom:906.990000px;}
.yf{bottom:910.230000px;}
.y34{bottom:931.290000px;}
.ye{bottom:934.350000px;}
.y33{bottom:955.410000px;}
.yd{bottom:958.470000px;}
.y32{bottom:979.530000px;}
.yc{bottom:982.590000px;}
.y31{bottom:1003.650000px;}
.yb{bottom:1006.350000px;}
.ya{bottom:1027.410000px;}
.y30{bottom:1027.770000px;}
.y9{bottom:1051.530000px;}
.y2f{bottom:1051.890000px;}
.y6{bottom:1074.750000px;}
.y5{bottom:1094.010000px;}
.y4{bottom:1131.630000px;}
.y3{bottom:1150.920000px;}
.y2{bottom:1170.000000px;}
.y1{bottom:1189.620000px;}
.h9{height:40.985156px;}
.ha{height:41.726953px;}
.hb{height:42.281367px;}
.h8{height:52.998047px;}
.h7{height:58.819922px;}
.h3{height:65.010937px;}
.h4{height:66.757500px;}
.h5{height:70.664062px;}
.h6{height:82.676953px;}
.h2{height:84.898125px;}
.hc{height:86.585445px;}
.hd{height:93.983203px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1{width:893.250000px;}
.w3{width:893.339973px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:84.995987px;}
.x9{left:90.215987px;}
.xd{left:111.995987px;}
.x5{left:138.995987px;}
.xa{left:183.629973px;}
.xb{left:190.469987px;}
.x1{left:209.729987px;}
.x8{left:301.034987px;}
.x4{left:463.784987px;}
.x6{left:493.124973px;}
.x7{left:499.964987px;}
.xc{left:506.444987px;}
.x3{left:615.389987px;}
@media print{
.v2{vertical-align:-85.760000pt;}
.v3{vertical-align:-84.480000pt;}
.v1{vertical-align:-65.920000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.311467pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.311467pt;}
.lsa{letter-spacing:0.320000pt;}
.ls9{letter-spacing:18.863360pt;}
.ls0{letter-spacing:173.280000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws4{word-spacing:-19.031467pt;}
.ws0{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.408533pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._23{margin-left:-2.105600pt;}
._0{margin-left:-1.198080pt;}
._1{width:0.937387pt;}
._3{width:2.396160pt;}
._15{width:3.444480pt;}
._14{width:4.417920pt;}
._4{width:5.316480pt;}
._5{width:6.475733pt;}
._13{width:7.488000pt;}
._12{width:8.386560pt;}
._1b{width:9.360000pt;}
._17{width:10.558080pt;}
._6{width:11.756160pt;}
._16{width:13.328640pt;}
._d{width:14.451840pt;}
._c{width:15.575040pt;}
._9{width:16.640000pt;}
._a{width:17.671680pt;}
._1f{width:19.729493pt;}
._18{width:20.741760pt;}
._19{width:21.733973pt;}
._1a{width:22.744747pt;}
._11{width:23.961600pt;}
._e{width:25.234560pt;}
._1c{width:26.282880pt;}
._8{width:27.630720pt;}
._7{width:28.604160pt;}
._b{width:30.251520pt;}
._24{width:31.165227pt;}
._20{width:32.117547pt;}
._f{width:33.729067pt;}
._10{width:36.283520pt;}
._21{width:37.215360pt;}
._22{width:38.338560pt;}
._1d{width:41.333760pt;}
._1e{width:42.343253pt;}
._2{width:1439.680853pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:51.520000pt;}
.y7{bottom:68.320000pt;}
.y5f{bottom:84.800000pt;}
.y58{bottom:85.280000pt;}
.y57{bottom:90.560000pt;}
.y5e{bottom:100.480000pt;}
.y2e{bottom:100.960000pt;}
.y56{bottom:102.080000pt;}
.y5d{bottom:105.760000pt;}
.y5c{bottom:117.440000pt;}
.y2d{bottom:122.432000pt;}
.y55{bottom:140.826667pt;}
.y2c{bottom:143.866667pt;}
.y59{bottom:147.546667pt;}
.y75{bottom:159.866667pt;}
.y54{bottom:162.266667pt;}
.y2b{bottom:165.306667pt;}
.y53{bottom:183.706667pt;}
.y2a{bottom:186.746667pt;}
.y74{bottom:186.906667pt;}
.y52{bottom:205.146667pt;}
.y29{bottom:208.186667pt;}
.y73{bottom:211.546667pt;}
.y51{bottom:226.586667pt;}
.y28{bottom:229.626667pt;}
.y72{bottom:236.346667pt;}
.y50{bottom:248.026667pt;}
.y27{bottom:251.226667pt;}
.y71{bottom:260.986667pt;}
.y4f{bottom:269.626667pt;}
.y26{bottom:272.666667pt;}
.y70{bottom:285.626667pt;}
.y4e{bottom:291.066667pt;}
.y25{bottom:294.106667pt;}
.y6f{bottom:310.266667pt;}
.y4d{bottom:312.506667pt;}
.y24{bottom:315.546667pt;}
.y4c{bottom:333.946667pt;}
.y6e{bottom:335.066667pt;}
.y23{bottom:336.986667pt;}
.y4b{bottom:355.426667pt;}
.y22{bottom:358.466667pt;}
.y6d{bottom:359.746667pt;}
.y5b{bottom:376.546667pt;}
.y4a{bottom:376.866667pt;}
.y6c{bottom:384.386667pt;}
.y49{bottom:398.466667pt;}
.y21{bottom:401.186667pt;}
.y6b{bottom:409.186667pt;}
.y48{bottom:419.906667pt;}
.y20{bottom:422.946667pt;}
.y6a{bottom:433.826667pt;}
.y47{bottom:441.346667pt;}
.y1f{bottom:444.386667pt;}
.y69{bottom:458.466667pt;}
.y46{bottom:462.786667pt;}
.y1e{bottom:465.826667pt;}
.y68{bottom:483.106667pt;}
.y44{bottom:484.226667pt;}
.y1d{bottom:487.266667pt;}
.y45{bottom:490.946667pt;}
.y43{bottom:505.666667pt;}
.y67{bottom:507.906667pt;}
.y1c{bottom:508.706667pt;}
.y42{bottom:527.106667pt;}
.y66{bottom:532.546667pt;}
.y41{bottom:548.706667pt;}
.y1b{bottom:551.426667pt;}
.y65{bottom:557.186667pt;}
.y40{bottom:570.173333pt;}
.y1a{bottom:573.213333pt;}
.y64{bottom:582.013333pt;}
.y3f{bottom:591.613333pt;}
.y19{bottom:594.653333pt;}
.y63{bottom:606.653333pt;}
.y3e{bottom:613.053333pt;}
.y18{bottom:616.093333pt;}
.y62{bottom:631.293333pt;}
.y3d{bottom:634.493333pt;}
.y17{bottom:637.533333pt;}
.y3c{bottom:655.933333pt;}
.y16{bottom:659.133333pt;}
.y61{bottom:677.213333pt;}
.y3b{bottom:677.533333pt;}
.y15{bottom:680.573333pt;}
.y60{bottom:698.653333pt;}
.y3a{bottom:698.973333pt;}
.y14{bottom:702.013333pt;}
.y39{bottom:720.413333pt;}
.y13{bottom:723.453333pt;}
.y38{bottom:741.853333pt;}
.y12{bottom:744.893333pt;}
.y5a{bottom:748.573333pt;}
.y37{bottom:763.293333pt;}
.y11{bottom:766.333333pt;}
.y36{bottom:784.733333pt;}
.y10{bottom:787.453333pt;}
.y35{bottom:806.213333pt;}
.yf{bottom:809.093333pt;}
.y34{bottom:827.813333pt;}
.ye{bottom:830.533333pt;}
.y33{bottom:849.253333pt;}
.yd{bottom:851.973333pt;}
.y32{bottom:870.693333pt;}
.yc{bottom:873.413333pt;}
.y31{bottom:892.133333pt;}
.yb{bottom:894.533333pt;}
.ya{bottom:913.253333pt;}
.y30{bottom:913.573333pt;}
.y9{bottom:934.693333pt;}
.y2f{bottom:935.013333pt;}
.y6{bottom:955.333333pt;}
.y5{bottom:972.453333pt;}
.y4{bottom:1005.893333pt;}
.y3{bottom:1023.040000pt;}
.y2{bottom:1040.000000pt;}
.y1{bottom:1057.440000pt;}
.h9{height:36.431250pt;}
.ha{height:37.090625pt;}
.hb{height:37.583438pt;}
.h8{height:47.109375pt;}
.h7{height:52.284375pt;}
.h3{height:57.787500pt;}
.h4{height:59.340000pt;}
.h5{height:62.812500pt;}
.h6{height:73.490625pt;}
.h2{height:75.465000pt;}
.hc{height:76.964840pt;}
.hd{height:83.540625pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1{width:794.000000pt;}
.w3{width:794.079976pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:75.551988pt;}
.x9{left:80.191988pt;}
.xd{left:99.551988pt;}
.x5{left:123.551988pt;}
.xa{left:163.226643pt;}
.xb{left:169.306655pt;}
.x1{left:186.426655pt;}
.x8{left:267.586655pt;}
.x4{left:412.253321pt;}
.x6{left:438.333310pt;}
.x7{left:444.413321pt;}
.xc{left:450.173321pt;}
.x3{left:547.013321pt;}
}




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