
    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_fa199eb9af9380c28d23f681.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_f75c69c6d55adef952e68ec1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.109500;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_c012d1c8f8bba1902e91efa1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.074500;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_ba88141ba6bfeb381314aa0c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9aa68734b790d87365bb2ee9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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_173e9d9d59b4f570936723bd.woff')format("woff");}.ff7{font-family:ff7;line-height:1.157227;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0861e8a40ce905556cb88bb9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.088000;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_6f3c84f423b58ee3b2d78b1e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.997000;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:-4.784601px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-72.563484px;}
.ws0{word-spacing:-25.427204px;}
.ws5{word-spacing:-18.150027px;}
.ws4{word-spacing:-17.797136px;}
.ws2{word-spacing:-17.739910px;}
.ws6{word-spacing:-15.520499px;}
.ws7{word-spacing:-15.517653px;}
.ws3{word-spacing:-13.982101px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-9.305647px;}
._4{margin-left:-6.456358px;}
._5{margin-left:-5.280430px;}
._1{margin-left:-3.913618px;}
._3{margin-left:-2.564000px;}
._0{margin-left:-1.455633px;}
._2{width:1.536067px;}
._8{width:2.691720px;}
._7{width:3.822762px;}
._9{width:204.865462px;}
.fc7{color:transparent;}
.fc6{color:rgb(22,74,123);}
.fc5{color:rgb(26,77,124);}
.fc4{color:rgb(196,149,0);}
.fc3{color:rgb(26,77,125);}
.fc2{color:rgb(209,163,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.986336px;}
.fs1{font-size:59.969821px;}
.fsd{font-size:61.184516px;}
.fs9{font-size:65.953306px;}
.fs4{font-size:66.581390px;}
.fs7{font-size:69.304584px;}
.fsc{font-size:73.196476px;}
.fsb{font-size:73.209899px;}
.fs5{font-size:83.678821px;}
.fs3{font-size:83.948753px;}
.fsa{font-size:85.613336px;}
.fs8{font-size:107.972672px;}
.fs0{font-size:119.939644px;}
.fs6{font-size:311.906066px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.135021px;}
.y1e{bottom:4.222984px;}
.y25{bottom:4.383868px;}
.y22{bottom:4.470888px;}
.y36{bottom:4.608628px;}
.y62{bottom:4.648739px;}
.y5f{bottom:4.764351px;}
.y5b{bottom:4.820996px;}
.y47{bottom:4.902831px;}
.y8{bottom:14.504831px;}
.y1d{bottom:27.526470px;}
.y24{bottom:27.687354px;}
.y21{bottom:27.774375px;}
.y61{bottom:30.272204px;}
.y5e{bottom:30.387815px;}
.y5a{bottom:30.444461px;}
.y46{bottom:30.526296px;}
.y7{bottom:34.749707px;}
.y20{bottom:51.077861px;}
.y1b{bottom:51.736900px;}
.y5d{bottom:56.011280px;}
.y59{bottom:56.067926px;}
.y5{bottom:59.493489px;}
.y4{bottom:79.738365px;}
.y1a{bottom:80.979499px;}
.y3{bottom:102.607508px;}
.y19{bottom:110.222098px;}
.y12{bottom:135.110995px;}
.y18{bottom:139.464697px;}
.y11{bottom:153.106440px;}
.yc{bottom:157.715151px;}
.y17{bottom:168.707296px;}
.y10{bottom:171.101886px;}
.yb{bottom:177.960027px;}
.yf{bottom:189.097331px;}
.y16{bottom:197.949894px;}
.ya{bottom:198.204903px;}
.ye{bottom:207.092777px;}
.y9{bottom:218.449780px;}
.yd{bottom:225.088222px;}
.y15{bottom:227.192493px;}
.y2{bottom:247.732419px;}
.y6{bottom:249.519171px;}
.y14{bottom:256.435092px;}
.y55{bottom:292.729197px;}
.y57{bottom:308.798545px;}
.y23{bottom:312.255008px;}
.y54{bottom:314.098788px;}
.y43{bottom:320.055668px;}
.y56{bottom:330.168136px;}
.y53{bottom:335.468380px;}
.y42{bottom:343.674690px;}
.y41{bottom:371.792573px;}
.y60{bottom:375.975005px;}
.y1f{bottom:390.015004px;}
.y40{bottom:395.411595px;}
.y3f{bottom:423.529479px;}
.y3e{bottom:447.148501px;}
.y45{bottom:450.855002px;}
.y49{bottom:456.273608px;}
.y3d{bottom:475.266384px;}
.y48{bottom:481.017346px;}
.y3c{bottom:497.760691px;}
.y1c{bottom:500.535000px;}
.y3b{bottom:521.379713px;}
.y5c{bottom:531.494999px;}
.y58{bottom:534.374998px;}
.y3a{bottom:549.497597px;}
.y39{bottom:573.116619px;}
.y27{bottom:577.616228px;}
.y38{bottom:604.608648px;}
.y26{bottom:619.230695px;}
.y44{bottom:631.182689px;}
.y13{bottom:675.466077px;}
.y30{bottom:690.276314px;}
.y51{bottom:718.812363px;}
.y2f{bottom:719.518913px;}
.y50{bottom:748.054961px;}
.y2e{bottom:748.761512px;}
.y4f{bottom:777.297560px;}
.y2d{bottom:778.004111px;}
.y4e{bottom:806.540159px;}
.y2c{bottom:807.246709px;}
.y4d{bottom:835.782758px;}
.y2b{bottom:836.489308px;}
.y4c{bottom:865.025356px;}
.y2a{bottom:865.731907px;}
.y4b{bottom:894.267955px;}
.y29{bottom:894.974506px;}
.y4a{bottom:923.510554px;}
.y28{bottom:924.217104px;}
.y37{bottom:974.536215px;}
.y52{bottom:975.732365px;}
.y35{bottom:1017.854978px;}
.y34{bottom:1052.722678px;}
.y33{bottom:1081.965277px;}
.y32{bottom:1111.207875px;}
.y31{bottom:1157.575459px;}
.h10{height:20.879999px;}
.ha{height:43.559998px;}
.h20{height:47.879998px;}
.h17{height:48.239998px;}
.h6{height:48.776655px;}
.h4{height:49.535072px;}
.h1c{height:50.538410px;}
.h5{height:54.182734px;}
.h15{height:54.477431px;}
.h1b{height:56.106201px;}
.h19{height:60.460289px;}
.h1f{height:60.471377px;}
.hb{height:61.055134px;}
.h11{height:62.616692px;}
.h12{height:65.839355px;}
.hc{height:66.959997px;}
.h1a{height:67.121169px;}
.h18{height:67.133478px;}
.h14{height:69.341670px;}
.h1e{height:73.439997px;}
.h1d{height:73.799997px;}
.hf{height:75.847698px;}
.hd{height:76.733479px;}
.h8{height:76.981006px;}
.h16{height:78.507429px;}
.h9{height:79.751315px;}
.h13{height:99.010941px;}
.h3{height:99.070146px;}
.he{height:286.015426px;}
.h7{height:292.425983px;}
.h1{height:1263.000000px;}
.h2{height:1263.239947px;}
.h0{height:1263.374968px;}
.wb{width:91.799996px;}
.w9{width:92.519996px;}
.wc{width:109.439995px;}
.wa{width:115.559995px;}
.w8{width:199.079992px;}
.w7{width:236.519990px;}
.w4{width:362.519985px;}
.w6{width:372.599984px;}
.w5{width:406.799983px;}
.w3{width:957.132716px;}
.w2{width:1785.374926px;}
.w0{width:1785.375000px;}
.w1{width:1785.750000px;}
.x0{left:0.000000px;}
.x14{left:1.141509px;}
.x37{left:3.995841px;}
.x8{left:8.997723px;}
.x38{left:10.416006px;}
.x3a{left:17.425093px;}
.x11{left:21.298476px;}
.x2{left:24.180836px;}
.x5{left:25.761683px;}
.x1{left:28.239342px;}
.x15{left:37.410161px;}
.x7{left:44.672287px;}
.xf{left:47.698302px;}
.x32{left:54.494645px;}
.x2c{left:57.380644px;}
.x2f{left:76.248962px;}
.x9{left:80.364426px;}
.x12{left:107.594203px;}
.x1e{left:140.661509px;}
.xc{left:144.991984px;}
.xa{left:151.832298px;}
.x1f{left:157.987655px;}
.xd{left:165.974954px;}
.xb{left:172.815268px;}
.x33{left:178.498052px;}
.x36{left:192.599992px;}
.x34{left:198.532044px;}
.x1d{left:242.999990px;}
.x1a{left:270.758604px;}
.x1b{left:292.391801px;}
.x30{left:352.384438px;}
.x31{left:373.367397px;}
.x1c{left:418.359918px;}
.x35{left:434.273279px;}
.x2e{left:436.777443px;}
.x39{left:480.599980px;}
.x2d{left:485.087481px;}
.x18{left:498.012129px;}
.x19{left:526.800783px;}
.x17{left:718.172891px;}
.x16{left:763.196652px;}
.x10{left:772.919968px;}
.xe{left:777.239968px;}
.x13{left:789.119967px;}
.x6{left:800.938263px;}
.x20{left:867.281532px;}
.x3{left:902.391010px;}
.x4{left:915.822394px;}
.x28{left:1294.729768px;}
.x23{left:1307.154357px;}
.x2b{left:1345.746152px;}
.x2a{left:1355.991606px;}
.x22{left:1364.831166px;}
.x25{left:1371.052248px;}
.x24{left:1390.225129px;}
.x21{left:1398.221152px;}
.x26{left:1403.405387px;}
.x29{left:1409.890074px;}
.x27{left:1427.094704px;}
@media print{
.v1{vertical-align:-4.252979pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-64.500875pt;}
.ws0{word-spacing:-22.601959pt;}
.ws5{word-spacing:-16.133358pt;}
.ws4{word-spacing:-15.819676pt;}
.ws2{word-spacing:-15.768809pt;}
.ws6{word-spacing:-13.795999pt;}
.ws7{word-spacing:-13.793469pt;}
.ws3{word-spacing:-12.428534pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-8.271686pt;}
._4{margin-left:-5.738985pt;}
._5{margin-left:-4.693715pt;}
._1{margin-left:-3.478771pt;}
._3{margin-left:-2.279111pt;}
._0{margin-left:-1.293896pt;}
._2{width:1.365393pt;}
._8{width:2.392640pt;}
._7{width:3.398010pt;}
._9{width:182.102633pt;}
.fs2{font-size:47.987854pt;}
.fs1{font-size:53.306508pt;}
.fsd{font-size:54.386237pt;}
.fs9{font-size:58.625161pt;}
.fs4{font-size:59.183457pt;}
.fs7{font-size:61.604075pt;}
.fsc{font-size:65.063535pt;}
.fsb{font-size:65.075466pt;}
.fs5{font-size:74.381174pt;}
.fs3{font-size:74.621114pt;}
.fsa{font-size:76.100743pt;}
.fs8{font-size:95.975709pt;}
.fs0{font-size:106.613016pt;}
.fs6{font-size:277.249837pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.120018pt;}
.y1e{bottom:3.753763pt;}
.y25{bottom:3.896771pt;}
.y22{bottom:3.974123pt;}
.y36{bottom:4.096559pt;}
.y62{bottom:4.132213pt;}
.y5f{bottom:4.234978pt;}
.y5b{bottom:4.285330pt;}
.y47{bottom:4.358072pt;}
.y8{bottom:12.893183pt;}
.y1d{bottom:24.467974pt;}
.y24{bottom:24.610981pt;}
.y21{bottom:24.688333pt;}
.y61{bottom:26.908626pt;}
.y5e{bottom:27.011391pt;}
.y5a{bottom:27.061743pt;}
.y46{bottom:27.134485pt;}
.y7{bottom:30.888629pt;}
.y20{bottom:45.402543pt;}
.y1b{bottom:45.988356pt;}
.y5d{bottom:49.787805pt;}
.y59{bottom:49.838156pt;}
.y5{bottom:52.883102pt;}
.y4{bottom:70.878547pt;}
.y1a{bottom:71.981777pt;}
.y3{bottom:91.206674pt;}
.y19{bottom:97.975198pt;}
.y12{bottom:120.098662pt;}
.y18{bottom:123.968619pt;}
.y11{bottom:136.094614pt;}
.yc{bottom:140.191246pt;}
.y17{bottom:149.962040pt;}
.y10{bottom:152.090565pt;}
.yb{bottom:158.186691pt;}
.yf{bottom:168.086517pt;}
.y16{bottom:175.955462pt;}
.ya{bottom:176.182136pt;}
.ye{bottom:184.082468pt;}
.y9{bottom:194.177582pt;}
.yd{bottom:200.078420pt;}
.y15{bottom:201.948883pt;}
.y2{bottom:220.206595pt;}
.y6{bottom:221.794819pt;}
.y14{bottom:227.942304pt;}
.y55{bottom:260.203731pt;}
.y57{bottom:274.487595pt;}
.y23{bottom:277.560007pt;}
.y54{bottom:279.198923pt;}
.y43{bottom:284.493927pt;}
.y56{bottom:293.482788pt;}
.y53{bottom:298.194115pt;}
.y42{bottom:305.488613pt;}
.y41{bottom:330.482287pt;}
.y60{bottom:334.200004pt;}
.y1f{bottom:346.680004pt;}
.y40{bottom:351.476974pt;}
.y3f{bottom:376.470648pt;}
.y3e{bottom:397.465334pt;}
.y45{bottom:400.760002pt;}
.y49{bottom:405.576541pt;}
.y3d{bottom:422.459008pt;}
.y48{bottom:427.570974pt;}
.y3c{bottom:442.453948pt;}
.y1c{bottom:444.920000pt;}
.y3b{bottom:463.448634pt;}
.y5c{bottom:472.439999pt;}
.y58{bottom:474.999999pt;}
.y3a{bottom:488.442308pt;}
.y39{bottom:509.436994pt;}
.y27{bottom:513.436647pt;}
.y38{bottom:537.429909pt;}
.y26{bottom:550.427285pt;}
.y44{bottom:561.051279pt;}
.y13{bottom:600.414291pt;}
.y30{bottom:613.578946pt;}
.y51{bottom:638.944322pt;}
.y2f{bottom:639.572367pt;}
.y50{bottom:664.937743pt;}
.y2e{bottom:665.565788pt;}
.y4f{bottom:690.931165pt;}
.y2d{bottom:691.559209pt;}
.y4e{bottom:716.924586pt;}
.y2c{bottom:717.552631pt;}
.y4d{bottom:742.918007pt;}
.y2b{bottom:743.546052pt;}
.y4c{bottom:768.911428pt;}
.y2a{bottom:769.539473pt;}
.y4b{bottom:794.904849pt;}
.y29{bottom:795.532894pt;}
.y4a{bottom:820.898270pt;}
.y28{bottom:821.526315pt;}
.y37{bottom:866.254413pt;}
.y52{bottom:867.317658pt;}
.y35{bottom:904.759981pt;}
.y34{bottom:935.753491pt;}
.y33{bottom:961.746913pt;}
.y32{bottom:987.740334pt;}
.y31{bottom:1028.955964pt;}
.h10{height:18.559999pt;}
.ha{height:38.719998pt;}
.h20{height:42.559998pt;}
.h17{height:42.879998pt;}
.h6{height:43.357026pt;}
.h4{height:44.031175pt;}
.h1c{height:44.923031pt;}
.h5{height:48.162430pt;}
.h15{height:48.424383pt;}
.h1b{height:49.872179pt;}
.h19{height:53.742480pt;}
.h1f{height:53.752335pt;}
.hb{height:54.271230pt;}
.h11{height:55.659282pt;}
.h12{height:58.523871pt;}
.hc{height:59.519998pt;}
.h1a{height:59.663261pt;}
.h18{height:59.674202pt;}
.h14{height:61.637040pt;}
.h1e{height:65.279997pt;}
.h1d{height:65.599997pt;}
.hf{height:67.420176pt;}
.hd{height:68.207537pt;}
.h8{height:68.427561pt;}
.h16{height:69.784381pt;}
.h9{height:70.890058pt;}
.h13{height:88.009725pt;}
.h3{height:88.062352pt;}
.he{height:254.235934pt;}
.h7{height:259.934207pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.879953pt;}
.h0{height:1122.999972pt;}
.wb{width:81.599997pt;}
.w9{width:82.239997pt;}
.wc{width:97.279996pt;}
.wa{width:102.719996pt;}
.w8{width:176.959993pt;}
.w7{width:210.239991pt;}
.w4{width:322.239987pt;}
.w6{width:331.199986pt;}
.w5{width:361.599985pt;}
.w3{width:850.784637pt;}
.w2{width:1586.999934pt;}
.w0{width:1587.000000pt;}
.w1{width:1587.333333pt;}
.x0{left:0.000000pt;}
.x14{left:1.014675pt;}
.x37{left:3.551858pt;}
.x8{left:7.997976pt;}
.x38{left:9.258672pt;}
.x3a{left:15.488972pt;}
.x11{left:18.931979pt;}
.x2{left:21.494076pt;}
.x5{left:22.899274pt;}
.x1{left:25.101637pt;}
.x15{left:33.253476pt;}
.x7{left:39.708700pt;}
.xf{left:42.398491pt;}
.x32{left:48.439685pt;}
.x2c{left:51.005017pt;}
.x2f{left:67.776855pt;}
.x9{left:71.435045pt;}
.x12{left:95.639291pt;}
.x1e{left:125.032452pt;}
.xc{left:128.881763pt;}
.xa{left:134.962042pt;}
.x1f{left:140.433471pt;}
.xd{left:147.533293pt;}
.xb{left:153.613572pt;}
.x33{left:158.664935pt;}
.x36{left:171.199993pt;}
.x34{left:176.472928pt;}
.x1d{left:215.999991pt;}
.x1a{left:240.674315pt;}
.x1b{left:259.903823pt;}
.x30{left:313.230612pt;}
.x31{left:331.882131pt;}
.x1c{left:371.875483pt;}
.x35{left:386.020692pt;}
.x2e{left:388.246616pt;}
.x39{left:427.199982pt;}
.x2d{left:431.188872pt;}
.x18{left:442.677448pt;}
.x19{left:468.267363pt;}
.x17{left:638.375903pt;}
.x16{left:678.397024pt;}
.x10{left:687.039971pt;}
.xe{left:690.879971pt;}
.x13{left:701.439971pt;}
.x6{left:711.945122pt;}
.x20{left:770.916917pt;}
.x3{left:802.125343pt;}
.x4{left:814.064350pt;}
.x28{left:1150.870905pt;}
.x23{left:1161.914984pt;}
.x2b{left:1196.218802pt;}
.x2a{left:1205.325872pt;}
.x22{left:1213.183259pt;}
.x25{left:1218.713109pt;}
.x24{left:1235.755671pt;}
.x21{left:1242.863247pt;}
.x26{left:1247.471455pt;}
.x29{left:1253.235621pt;}
.x27{left:1268.528626pt;}
}




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