
    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_d174ce8158a88c3dab04735e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_efe85422d63c7b17c8c2d87f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_e65d5a95bcffe33466df4dc0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_65b751c6b2ddae4d3e27b8bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_ff65d453437f430a474d7ab3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_83e6731e2f43201482401821.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_5810518059b0c5850f35e3b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_33ebb4f2ef6141a565505348.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1eeeb7fe4ee917aed39faa26.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5f0933dc77e04914a0f4eabf.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_635de69203906864ecad3ebf.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.253200px;}
.ls7{letter-spacing:-0.094800px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.054720px;}
.ls2{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls8{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.245520px;}
.ls9{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.666720px;}
.lsd{letter-spacing:0.900000px;}
.ls6{letter-spacing:3.600000px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws6{word-spacing:-18.953520px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.488000px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.734480px;}
.ws3{word-spacing:-13.680000px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._13{margin-left:-3.204000px;}
._1{margin-left:-1.996800px;}
._6{width:1.015920px;}
._9{width:2.280240px;}
._14{width:3.353760px;}
._7{width:4.502400px;}
._0{width:5.587200px;}
._23{width:6.745680px;}
._2c{width:8.136000px;}
._a{width:9.792000px;}
._b{width:10.924800px;}
._15{width:12.286560px;}
._16{width:14.137680px;}
._11{width:15.408000px;}
._12{width:16.416000px;}
._29{width:19.224000px;}
._2d{width:20.448000px;}
._1b{width:21.744000px;}
._1c{width:22.824000px;}
._d{width:24.408000px;}
._e{width:26.064000px;}
._24{width:27.072000px;}
._21{width:28.440000px;}
._22{width:29.592000px;}
._1d{width:30.744000px;}
._f{width:32.184000px;}
._10{width:33.360000px;}
._26{width:34.848000px;}
._27{width:36.036960px;}
._31{width:38.160000px;}
._2e{width:41.112000px;}
._2f{width:42.336000px;}
._33{width:43.416000px;}
._1e{width:44.928000px;}
._1f{width:45.936000px;}
._34{width:47.016000px;}
._8{width:48.816000px;}
._30{width:49.828080px;}
._2a{width:50.832000px;}
._2b{width:52.416000px;}
._28{width:54.096000px;}
._19{width:55.272000px;}
._1a{width:56.352000px;}
._17{width:60.048000px;}
._18{width:61.120080px;}
._25{width:62.976000px;}
._32{width:65.880000px;}
._20{width:67.608000px;}
._c{width:75.600000px;}
._5{width:736.848000px;}
._4{width:1548.564000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(19,138,196);}
.fc2{color:rgb(54,54,54);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs6{font-size:84.240000px;}
.fs0{font-size:96.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.960000px;}
.yc{bottom:8.040000px;}
.y19{bottom:56.196000px;}
.y4a{bottom:57.996000px;}
.y18{bottom:70.236000px;}
.y1a{bottom:70.416000px;}
.y49{bottom:79.956000px;}
.y13{bottom:99.795000px;}
.y45{bottom:122.796000px;}
.y16{bottom:135.750000px;}
.yb8{bottom:137.196000px;}
.y9c{bottom:139.536000px;}
.y44{bottom:143.496000px;}
.y74{bottom:147.816000px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y15{bottom:157.830000px;}
.yb7{bottom:157.890000px;}
.y9b{bottom:160.230000px;}
.y43{bottom:164.190000px;}
.y73{bottom:168.510000px;}
.y9a{bottom:180.930000px;}
.y42{bottom:184.890000px;}
.y72{bottom:189.210000px;}
.yb6{bottom:196.590000px;}
.y99{bottom:201.630000px;}
.y41{bottom:205.590000px;}
.y71{bottom:209.910000px;}
.y98{bottom:222.330000px;}
.y40{bottom:226.290000px;}
.yb5{bottom:235.830000px;}
.y97{bottom:243.030000px;}
.y70{bottom:248.610000px;}
.y96{bottom:263.730000px;}
.y3f{bottom:264.990000px;}
.y6f{bottom:269.310000px;}
.yb4{bottom:277.455000px;}
.y3e{bottom:285.735000px;}
.y6e{bottom:290.055000px;}
.y95{bottom:294.015000px;}
.yb3{bottom:298.155000px;}
.y3d{bottom:306.435000px;}
.y6d{bottom:310.755000px;}
.yb2{bottom:318.855000px;}
.y3c{bottom:327.135000px;}
.y6c{bottom:331.455000px;}
.y94{bottom:335.595000px;}
.ya{bottom:344.680500px;}
.y3b{bottom:347.835000px;}
.y6b{bottom:352.155000px;}
.y93{bottom:356.295000px;}
.yb1{bottom:358.095000px;}
.y6a{bottom:372.855000px;}
.y92{bottom:376.995000px;}
.yd{bottom:386.490000px;}
.y3a{bottom:386.535000px;}
.y69{bottom:393.555000px;}
.y9{bottom:395.689500px;}
.y91{bottom:397.695000px;}
.yb0{bottom:399.675000px;}
.y39{bottom:407.235000px;}
.y68{bottom:414.255000px;}
.y90{bottom:418.395000px;}
.yaf{bottom:420.375000px;}
.y38{bottom:427.935000px;}
.yb{bottom:434.850000px;}
.y67{bottom:434.955000px;}
.y8{bottom:446.698500px;}
.y37{bottom:448.635000px;}
.y66{bottom:455.655000px;}
.y8f{bottom:457.095000px;}
.yae{bottom:459.075000px;}
.y36{bottom:469.335000px;}
.y8e{bottom:477.795000px;}
.yad{bottom:479.775000px;}
.y65{bottom:485.895000px;}
.y10{bottom:488.055000px;}
.y35{bottom:490.035000px;}
.y7{bottom:497.707500px;}
.y8d{bottom:498.495000px;}
.yac{bottom:500.475000px;}
.y34{bottom:510.735000px;}
.y8c{bottom:519.195000px;}
.yab{bottom:521.175000px;}
.y64{bottom:536.475000px;}
.y11{bottom:538.230000px;}
.y8b{bottom:539.895000px;}
.yaa{bottom:541.875000px;}
.y6{bottom:548.716500px;}
.y33{bottom:549.435000px;}
.y63{bottom:557.175000px;}
.y8a{bottom:560.415000px;}
.ya9{bottom:562.605000px;}
.y32{bottom:570.165000px;}
.y62{bottom:577.905000px;}
.y89{bottom:581.145000px;}
.y17{bottom:589.605000px;}
.y31{bottom:590.865000px;}
.ya8{bottom:592.665000px;}
.y61{bottom:598.605000px;}
.y5{bottom:599.725500px;}
.y30{bottom:611.565000px;}
.y60{bottom:619.305000px;}
.y88{bottom:619.845000px;}
.ye{bottom:631.920000px;}
.y2f{bottom:632.085000px;}
.y5f{bottom:640.005000px;}
.y87{bottom:640.545000px;}
.ya7{bottom:643.245000px;}
.y2e{bottom:652.785000px;}
.y5e{bottom:660.705000px;}
.y86{bottom:661.245000px;}
.ya6{bottom:663.945000px;}
.y2d{bottom:673.485000px;}
.y5d{bottom:681.405000px;}
.y85{bottom:681.945000px;}
.ya5{bottom:684.645000px;}
.y2c{bottom:694.185000px;}
.y5c{bottom:702.105000px;}
.y84{bottom:702.645000px;}
.ya4{bottom:705.345000px;}
.y2b{bottom:714.885000px;}
.y83{bottom:723.345000px;}
.ya3{bottom:726.045000px;}
.y5b{bottom:740.805000px;}
.y82{bottom:744.045000px;}
.y2a{bottom:753.585000px;}
.y5a{bottom:761.505000px;}
.y81{bottom:764.745000px;}
.y4{bottom:778.225500px;}
.y59{bottom:782.205000px;}
.y80{bottom:785.445000px;}
.y29{bottom:792.285000px;}
.y58{bottom:802.905000px;}
.ya2{bottom:806.145000px;}
.y12{bottom:815.670000px;}
.y57{bottom:823.425000px;}
.y7f{bottom:824.145000px;}
.ya1{bottom:826.845000px;}
.y28{bottom:839.985000px;}
.y56{bottom:844.125000px;}
.y7e{bottom:844.845000px;}
.ya0{bottom:847.590000px;}
.y27{bottom:860.730000px;}
.y55{bottom:864.870000px;}
.y7d{bottom:865.590000px;}
.y9f{bottom:868.290000px;}
.y26{bottom:881.430000px;}
.y54{bottom:885.570000px;}
.y7c{bottom:886.290000px;}
.y3{bottom:905.716500px;}
.y53{bottom:906.270000px;}
.y7b{bottom:906.990000px;}
.y52{bottom:926.970000px;}
.y7a{bottom:927.690000px;}
.y25{bottom:930.930000px;}
.y51{bottom:947.670000px;}
.y79{bottom:948.390000px;}
.y2{bottom:964.228500px;}
.y50{bottom:968.370000px;}
.y78{bottom:969.090000px;}
.y4f{bottom:989.070000px;}
.y1{bottom:989.716500px;}
.y77{bottom:989.790000px;}
.y24{bottom:995.910000px;}
.y76{bottom:1010.490000px;}
.y4e{bottom:1019.310000px;}
.y9e{bottom:1031.190000px;}
.y23{bottom:1043.790000px;}
.y75{bottom:1049.190000px;}
.y9d{bottom:1051.890000px;}
.y21{bottom:1053.150000px;}
.y4d{bottom:1069.890000px;}
.y20{bottom:1070.250000px;}
.y22{bottom:1078.710000px;}
.y1f{bottom:1087.530000px;}
.y4c{bottom:1090.590000px;}
.y1e{bottom:1104.810000px;}
.y4b{bottom:1111.290000px;}
.y1d{bottom:1121.910000px;}
.y1c{bottom:1139.760000px;}
.y48{bottom:1161.180000px;}
.y47{bottom:1178.460000px;}
.y46{bottom:1195.740000px;}
.h4{height:33.000000px;}
.hf{height:43.506914px;}
.hc{height:47.700000px;}
.h12{height:50.273438px;}
.he{height:52.453125px;}
.h3{height:58.406250px;}
.h13{height:58.651172px;}
.h14{height:61.370156px;}
.hb{height:62.327813px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hd{height:70.664062px;}
.ha{height:71.613281px;}
.h11{height:72.562500px;}
.h10{height:78.679688px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h9{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:27.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.wa{width:892.979987px;}
.w9{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:108.035987px;}
.xd{left:116.495987px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xb{left:129.275987px;}
.x10{left:134.855987px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x11{left:432.794987px;}
.x12{left:456.374987px;}
.xf{left:550.364987px;}
.xc{left:731.310000px;}
.xe{left:784.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.225067pt;}
.ls7{letter-spacing:-0.084267pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.048640pt;}
.ls2{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls8{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.218240pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.592640pt;}
.lsd{letter-spacing:0.800000pt;}
.ls6{letter-spacing:3.200000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws6{word-spacing:-16.847573pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.656000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.208427pt;}
.ws3{word-spacing:-12.160000pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._13{margin-left:-2.848000pt;}
._1{margin-left:-1.774933pt;}
._6{width:0.903040pt;}
._9{width:2.026880pt;}
._14{width:2.981120pt;}
._7{width:4.002133pt;}
._0{width:4.966400pt;}
._23{width:5.996160pt;}
._2c{width:7.232000pt;}
._a{width:8.704000pt;}
._b{width:9.710933pt;}
._15{width:10.921387pt;}
._16{width:12.566827pt;}
._11{width:13.696000pt;}
._12{width:14.592000pt;}
._29{width:17.088000pt;}
._2d{width:18.176000pt;}
._1b{width:19.328000pt;}
._1c{width:20.288000pt;}
._d{width:21.696000pt;}
._e{width:23.168000pt;}
._24{width:24.064000pt;}
._21{width:25.280000pt;}
._22{width:26.304000pt;}
._1d{width:27.328000pt;}
._f{width:28.608000pt;}
._10{width:29.653333pt;}
._26{width:30.976000pt;}
._27{width:32.032853pt;}
._31{width:33.920000pt;}
._2e{width:36.544000pt;}
._2f{width:37.632000pt;}
._33{width:38.592000pt;}
._1e{width:39.936000pt;}
._1f{width:40.832000pt;}
._34{width:41.792000pt;}
._8{width:43.392000pt;}
._30{width:44.291627pt;}
._2a{width:45.184000pt;}
._2b{width:46.592000pt;}
._28{width:48.085333pt;}
._19{width:49.130667pt;}
._1a{width:50.090667pt;}
._17{width:53.376000pt;}
._18{width:54.328960pt;}
._25{width:55.978667pt;}
._32{width:58.560000pt;}
._20{width:60.096000pt;}
._c{width:67.200000pt;}
._5{width:654.976000pt;}
._4{width:1376.501333pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs6{font-size:74.880000pt;}
.fs0{font-size:85.333333pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.520000pt;}
.yc{bottom:7.146667pt;}
.y19{bottom:49.952000pt;}
.y4a{bottom:51.552000pt;}
.y18{bottom:62.432000pt;}
.y1a{bottom:62.592000pt;}
.y49{bottom:71.072000pt;}
.y13{bottom:88.706667pt;}
.y45{bottom:109.152000pt;}
.y16{bottom:120.666667pt;}
.yb8{bottom:121.952000pt;}
.y9c{bottom:124.032000pt;}
.y44{bottom:127.552000pt;}
.y74{bottom:131.392000pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y15{bottom:140.293333pt;}
.yb7{bottom:140.346667pt;}
.y9b{bottom:142.426667pt;}
.y43{bottom:145.946667pt;}
.y73{bottom:149.786667pt;}
.y9a{bottom:160.826667pt;}
.y42{bottom:164.346667pt;}
.y72{bottom:168.186667pt;}
.yb6{bottom:174.746667pt;}
.y99{bottom:179.226667pt;}
.y41{bottom:182.746667pt;}
.y71{bottom:186.586667pt;}
.y98{bottom:197.626667pt;}
.y40{bottom:201.146667pt;}
.yb5{bottom:209.626667pt;}
.y97{bottom:216.026667pt;}
.y70{bottom:220.986667pt;}
.y96{bottom:234.426667pt;}
.y3f{bottom:235.546667pt;}
.y6f{bottom:239.386667pt;}
.yb4{bottom:246.626667pt;}
.y3e{bottom:253.986667pt;}
.y6e{bottom:257.826667pt;}
.y95{bottom:261.346667pt;}
.yb3{bottom:265.026667pt;}
.y3d{bottom:272.386667pt;}
.y6d{bottom:276.226667pt;}
.yb2{bottom:283.426667pt;}
.y3c{bottom:290.786667pt;}
.y6c{bottom:294.626667pt;}
.y94{bottom:298.306667pt;}
.ya{bottom:306.382667pt;}
.y3b{bottom:309.186667pt;}
.y6b{bottom:313.026667pt;}
.y93{bottom:316.706667pt;}
.yb1{bottom:318.306667pt;}
.y6a{bottom:331.426667pt;}
.y92{bottom:335.106667pt;}
.yd{bottom:343.546667pt;}
.y3a{bottom:343.586667pt;}
.y69{bottom:349.826667pt;}
.y9{bottom:351.724000pt;}
.y91{bottom:353.506667pt;}
.yb0{bottom:355.266667pt;}
.y39{bottom:361.986667pt;}
.y68{bottom:368.226667pt;}
.y90{bottom:371.906667pt;}
.yaf{bottom:373.666667pt;}
.y38{bottom:380.386667pt;}
.yb{bottom:386.533333pt;}
.y67{bottom:386.626667pt;}
.y8{bottom:397.065333pt;}
.y37{bottom:398.786667pt;}
.y66{bottom:405.026667pt;}
.y8f{bottom:406.306667pt;}
.yae{bottom:408.066667pt;}
.y36{bottom:417.186667pt;}
.y8e{bottom:424.706667pt;}
.yad{bottom:426.466667pt;}
.y65{bottom:431.906667pt;}
.y10{bottom:433.826667pt;}
.y35{bottom:435.586667pt;}
.y7{bottom:442.406667pt;}
.y8d{bottom:443.106667pt;}
.yac{bottom:444.866667pt;}
.y34{bottom:453.986667pt;}
.y8c{bottom:461.506667pt;}
.yab{bottom:463.266667pt;}
.y64{bottom:476.866667pt;}
.y11{bottom:478.426667pt;}
.y8b{bottom:479.906667pt;}
.yaa{bottom:481.666667pt;}
.y6{bottom:487.748000pt;}
.y33{bottom:488.386667pt;}
.y63{bottom:495.266667pt;}
.y8a{bottom:498.146667pt;}
.ya9{bottom:500.093333pt;}
.y32{bottom:506.813333pt;}
.y62{bottom:513.693333pt;}
.y89{bottom:516.573333pt;}
.y17{bottom:524.093333pt;}
.y31{bottom:525.213333pt;}
.ya8{bottom:526.813333pt;}
.y61{bottom:532.093333pt;}
.y5{bottom:533.089333pt;}
.y30{bottom:543.613333pt;}
.y60{bottom:550.493333pt;}
.y88{bottom:550.973333pt;}
.ye{bottom:561.706667pt;}
.y2f{bottom:561.853333pt;}
.y5f{bottom:568.893333pt;}
.y87{bottom:569.373333pt;}
.ya7{bottom:571.773333pt;}
.y2e{bottom:580.253333pt;}
.y5e{bottom:587.293333pt;}
.y86{bottom:587.773333pt;}
.ya6{bottom:590.173333pt;}
.y2d{bottom:598.653333pt;}
.y5d{bottom:605.693333pt;}
.y85{bottom:606.173333pt;}
.ya5{bottom:608.573333pt;}
.y2c{bottom:617.053333pt;}
.y5c{bottom:624.093333pt;}
.y84{bottom:624.573333pt;}
.ya4{bottom:626.973333pt;}
.y2b{bottom:635.453333pt;}
.y83{bottom:642.973333pt;}
.ya3{bottom:645.373333pt;}
.y5b{bottom:658.493333pt;}
.y82{bottom:661.373333pt;}
.y2a{bottom:669.853333pt;}
.y5a{bottom:676.893333pt;}
.y81{bottom:679.773333pt;}
.y4{bottom:691.756000pt;}
.y59{bottom:695.293333pt;}
.y80{bottom:698.173333pt;}
.y29{bottom:704.253333pt;}
.y58{bottom:713.693333pt;}
.ya2{bottom:716.573333pt;}
.y12{bottom:725.040000pt;}
.y57{bottom:731.933333pt;}
.y7f{bottom:732.573333pt;}
.ya1{bottom:734.973333pt;}
.y28{bottom:746.653333pt;}
.y56{bottom:750.333333pt;}
.y7e{bottom:750.973333pt;}
.ya0{bottom:753.413333pt;}
.y27{bottom:765.093333pt;}
.y55{bottom:768.773333pt;}
.y7d{bottom:769.413333pt;}
.y9f{bottom:771.813333pt;}
.y26{bottom:783.493333pt;}
.y54{bottom:787.173333pt;}
.y7c{bottom:787.813333pt;}
.y3{bottom:805.081333pt;}
.y53{bottom:805.573333pt;}
.y7b{bottom:806.213333pt;}
.y52{bottom:823.973333pt;}
.y7a{bottom:824.613333pt;}
.y25{bottom:827.493333pt;}
.y51{bottom:842.373333pt;}
.y79{bottom:843.013333pt;}
.y2{bottom:857.092000pt;}
.y50{bottom:860.773333pt;}
.y78{bottom:861.413333pt;}
.y4f{bottom:879.173333pt;}
.y1{bottom:879.748000pt;}
.y77{bottom:879.813333pt;}
.y24{bottom:885.253333pt;}
.y76{bottom:898.213333pt;}
.y4e{bottom:906.053333pt;}
.y9e{bottom:916.613333pt;}
.y23{bottom:927.813333pt;}
.y75{bottom:932.613333pt;}
.y9d{bottom:935.013333pt;}
.y21{bottom:936.133333pt;}
.y4d{bottom:951.013333pt;}
.y20{bottom:951.333333pt;}
.y22{bottom:958.853333pt;}
.y1f{bottom:966.693333pt;}
.y4c{bottom:969.413333pt;}
.y1e{bottom:982.053333pt;}
.y4b{bottom:987.813333pt;}
.y1d{bottom:997.253333pt;}
.y1c{bottom:1013.120000pt;}
.y48{bottom:1032.160000pt;}
.y47{bottom:1047.520000pt;}
.y46{bottom:1062.880000pt;}
.h4{height:29.333333pt;}
.hf{height:38.672812pt;}
.hc{height:42.400000pt;}
.h12{height:44.687500pt;}
.he{height:46.625000pt;}
.h3{height:51.916667pt;}
.h13{height:52.134375pt;}
.h14{height:54.551250pt;}
.hb{height:55.402500pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hd{height:62.812500pt;}
.ha{height:63.656250pt;}
.h11{height:64.500000pt;}
.h10{height:69.937500pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:24.000000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.wa{width:793.759988pt;}
.w9{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:96.031988pt;}
.xd{left:103.551988pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xb{left:114.911988pt;}
.x10{left:119.871988pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x11{left:384.706655pt;}
.x12{left:405.666655pt;}
.xf{left:489.213322pt;}
.xc{left:650.053333pt;}
.xe{left:697.253322pt;}
}




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