
    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_16cde034aefa04000d327a7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_8fe0e82f800c9f5a9fbb3891.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.726562;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_d76a2de39add248a40ac5bd2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120117;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_1b1782643a14ccb0cdba5962.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_11fc62691cb92bd7e6c34bbb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_45aea284c2d7e852af4e3a5b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_2807ba06166d2819f81b57a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.856934;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_6ac78ced950cd099653f9271.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.719727;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_e158b45b383d265b2c345178.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_7c42e223825ce0387a31d6c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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);}
.v4{vertical-align:-216.000000px;}
.v2{vertical-align:-108.000000px;}
.v3{vertical-align:-2.671800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.172400px;}
.ls13{letter-spacing:-8.832000px;}
.ls19{letter-spacing:-4.752000px;}
.ls1a{letter-spacing:-0.069000px;}
.ls1b{letter-spacing:-0.021600px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014280px;}
.ls15{letter-spacing:0.018720px;}
.ls1{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.037248px;}
.lsd{letter-spacing:0.038016px;}
.ls5{letter-spacing:0.038400px;}
.ls11{letter-spacing:0.039600px;}
.ls17{letter-spacing:0.041400px;}
.ls2{letter-spacing:0.042000px;}
.lse{letter-spacing:0.042768px;}
.lsa{letter-spacing:0.043200px;}
.ls12{letter-spacing:0.048000px;}
.ls6{letter-spacing:0.076800px;}
.lsf{letter-spacing:1.920000px;}
.lsb{letter-spacing:2.160000px;}
.ls18{letter-spacing:32.616000px;}
.lsc{letter-spacing:147.312180px;}
.ls16{letter-spacing:148.799760px;}
.ls14{letter-spacing:148.799820px;}
.ls9{letter-spacing:148.800180px;}
.ls7{letter-spacing:196.716180px;}
.ls3{letter-spacing:202.799760px;}
.ls10{letter-spacing:202.800300px;}
.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;}
}
.ws9{word-spacing:-60.048000px;}
.ws7{word-spacing:-58.246560px;}
.ws4{word-spacing:-53.414400px;}
.ws3{word-spacing:-53.376000px;}
.wsc{word-spacing:-52.842240px;}
.ws5{word-spacing:-43.392000px;}
.wse{word-spacing:-38.405400px;}
.wsf{word-spacing:-24.386400px;}
.wsd{word-spacing:-0.240000px;}
.wsa{word-spacing:-0.216000px;}
.ws1{word-spacing:-0.210000px;}
.ws2{word-spacing:-0.192000px;}
.wsb{word-spacing:-0.190080px;}
.ws6{word-spacing:-0.186240px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:29.380680px;}
._1{margin-left:-26.688000px;}
._c{margin-left:-22.540200px;}
._d{margin-left:-21.446400px;}
._2{margin-left:-15.519000px;}
._6{margin-left:-14.188800px;}
._7{margin-left:-12.480000px;}
._b{margin-left:-10.603584px;}
._5{margin-left:-9.446400px;}
._0{margin-left:-7.981200px;}
._a{margin-left:-6.281280px;}
._3{margin-left:-4.108800px;}
._9{margin-left:-3.027480px;}
._4{margin-left:-1.785600px;}
._8{width:1.459200px;}
._e{width:4.590000px;}
._f{width:5.670000px;}
._10{width:32.616000px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc1{color:rgb(37,41,44);}
.fc7{color:rgb(35,35,35);}
.fc5{color:rgb(40,40,40);}
.fc3{color:rgb(71,71,71);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.fsd{font-size:138.000000px;}
.fs7{font-size:186.240000px;}
.fsa{font-size:190.080000px;}
.fs5{font-size:192.000000px;}
.fsb{font-size:198.000000px;}
.fs6{font-size:209.520000px;}
.fs4{font-size:210.000000px;}
.fs9{font-size:213.840000px;}
.fs8{font-size:216.000000px;}
.fs1{font-size:240.000000px;}
.fs2{font-size:270.000000px;}
.fsc{font-size:276.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:10.333125px;}
.y2{bottom:12.959400px;}
.yb{bottom:14.399400px;}
.y1f{bottom:33.259800px;}
.y1a{bottom:33.259950px;}
.y1c{bottom:36.259800px;}
.y2e{bottom:56.962425px;}
.y78{bottom:106.701870px;}
.y16{bottom:125.250630px;}
.y2d{bottom:137.229030px;}
.y56{bottom:162.097350px;}
.y77{bottom:163.701900px;}
.y4c{bottom:169.066500px;}
.y38{bottom:175.687650px;}
.y15{bottom:196.512300px;}
.y85{bottom:201.448350px;}
.y55{bottom:216.465300px;}
.y76{bottom:235.581750px;}
.y6b{bottom:240.869700px;}
.y84{bottom:243.448350px;}
.y7{bottom:245.202450px;}
.y37{bottom:251.031600px;}
.y4b{bottom:252.619050px;}
.y41{bottom:263.369850px;}
.y2c{bottom:284.251050px;}
.y83{bottom:285.448350px;}
.y6{bottom:305.182650px;}
.y14{bottom:312.844350px;}
.y6a{bottom:321.869700px;}
.y86{bottom:322.673700px;}
.y60{bottom:327.553350px;}
.y82{bottom:330.978600px;}
.y40{bottom:342.869850px;}
.y75{bottom:344.369850px;}
.y54{bottom:353.797350px;}
.y2b{bottom:367.576050px;}
.y13{bottom:384.106050px;}
.y69{bottom:402.869700px;}
.y53{bottom:408.165300px;}
.y74{bottom:414.869850px;}
.y4a{bottom:421.060200px;}
.y3f{bottom:427.537800px;}
.y7e{bottom:443.369700px;}
.y2a{bottom:450.901050px;}
.y36{bottom:478.551750px;}
.y5f{bottom:479.662650px;}
.y68{bottom:481.581600px;}
.y73{bottom:488.662800px;}
.y12{bottom:500.438100px;}
.y49{bottom:506.335200px;}
.y7d{bottom:524.369700px;}
.y35{bottom:533.212650px;}
.y29{bottom:534.226050px;}
.y52{bottom:545.497350px;}
.y20{bottom:547.526550px;}
.y5e{bottom:556.162650px;}
.y11{bottom:571.699800px;}
.y48{bottom:591.610200px;}
.y72{bottom:593.369850px;}
.y3e{bottom:594.869850px;}
.y51{bottom:599.865300px;}
.y7c{bottom:605.369700px;}
.y81{bottom:608.086500px;}
.y28{bottom:615.219000px;}
.y67{bottom:619.701750px;}
.y5d{bottom:632.662650px;}
.y1e{bottom:639.452550px;}
.y71{bottom:663.869850px;}
.y3d{bottom:674.369850px;}
.y66{bottom:676.701750px;}
.y80{bottom:677.086500px;}
.y47{bottom:678.994050px;}
.y34{bottom:682.851750px;}
.y7b{bottom:684.081600px;}
.y10{bottom:688.031850px;}
.y5c{bottom:706.581600px;}
.y1d{bottom:731.378400px;}
.y50{bottom:737.197350px;}
.y65{bottom:737.369700px;}
.y33{bottom:737.512650px;}
.y70{bottom:737.662800px;}
.yf{bottom:745.031850px;}
.y3{bottom:746.523150px;}
.y3c{bottom:759.037800px;}
.y27{bottom:762.241050px;}
.y4f{bottom:791.811750px;}
.y64{bottom:814.701750px;}
.ye{bottom:816.293550px;}
.y1b{bottom:823.304400px;}
.y7f{bottom:828.916050px;}
.y6f{bottom:842.369850px;}
.y26{bottom:845.566050px;}
.y46{bottom:851.185200px;}
.y7a{bottom:851.369700px;}
.y5b{bottom:865.162650px;}
.y63{bottom:875.369700px;}
.y32{bottom:887.151750px;}
.y6e{bottom:912.869850px;}
.y3b{bottom:926.369850px;}
.y25{bottom:928.891050px;}
.y45{bottom:928.960200px;}
.y79{bottom:932.369700px;}
.yd{bottom:932.625600px;}
.y19{bottom:933.324000px;}
.y4e{bottom:936.637650px;}
.y5a{bottom:941.662650px;}
.y31{bottom:941.812650px;}
.y62{bottom:952.701750px;}
.y4{bottom:970.462950px;}
.y6d{bottom:986.662800px;}
.yc{bottom:1003.887300px;}
.y3a{bottom:1005.869850px;}
.y44{bottom:1006.735200px;}
.y24{bottom:1012.216050px;}
.y61{bottom:1013.369700px;}
.y59{bottom:1018.162650px;}
.y43{bottom:1090.369050px;}
.y4d{bottom:1090.537650px;}
.y39{bottom:1090.537800px;}
.y30{bottom:1092.081600px;}
.y6c{bottom:1092.081750px;}
.y23{bottom:1093.209000px;}
.y58{bottom:1282.697550px;}
.y9{bottom:1296.347550px;}
.y22{bottom:1300.847550px;}
.y42{bottom:1350.347550px;}
.y57{bottom:1357.246350px;}
.y18{bottom:1363.570350px;}
.ya{bottom:1370.684700px;}
.y21{bottom:1372.847550px;}
.y8{bottom:1377.347550px;}
.y17{bottom:1390.570350px;}
.y1{bottom:1463.451450px;}
.y5{bottom:1513.230000px;}
.h1{height:46.500000px;}
.h9{height:51.000000px;}
.h22{height:77.519531px;}
.h2{height:79.576172px;}
.h5{height:88.417969px;}
.hd{height:90.425940px;}
.h21{height:93.796875px;}
.hf{height:105.519690px;}
.h23{height:124.523438px;}
.he{height:130.500000px;}
.h14{height:137.224688px;}
.h7{height:137.812500px;}
.h17{height:138.796950px;}
.h1b{height:140.054062px;}
.h19{height:140.379263px;}
.hb{height:141.468750px;}
.hc{height:150.629883px;}
.h6{height:154.731445px;}
.h3{height:176.835938px;}
.h12{height:186.926400px;}
.h11{height:189.059063px;}
.h1a{height:191.090400px;}
.h1c{height:191.940000px;}
.h10{height:192.000000px;}
.h1d{height:193.171800px;}
.ha{height:193.172400px;}
.h15{height:194.906250px;}
.h8{height:210.000000px;}
.h18{height:213.840000px;}
.h16{height:216.000000px;}
.h1e{height:216.562500px;}
.h1f{height:240.000000px;}
.h4{height:243.632812px;}
.h20{height:249.046875px;}
.h13{height:1087.200300px;}
.h0{height:1620.000000px;}
.w2{width:103.429725px;}
.w1{width:438.826200px;}
.w3{width:771.306450px;}
.w4{width:2124.073500px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x2{left:6.750000px;}
.x14{left:15.277545px;}
.xf{left:21.259800px;}
.x18{left:35.031000px;}
.x19{left:36.136500px;}
.xa{left:43.372500px;}
.x13{left:107.309910px;}
.x12{left:122.587455px;}
.xb{left:132.485160px;}
.x15{left:144.187380px;}
.x1a{left:198.187500px;}
.xc{left:199.985100px;}
.x16{left:204.937350px;}
.x17{left:211.687500px;}
.xe{left:281.250000px;}
.x1{left:323.176500px;}
.x8{left:327.401550px;}
.xd{left:330.035700px;}
.x6{left:620.416200px;}
.x1f{left:698.174250px;}
.x20{left:719.774250px;}
.x3{left:788.244150px;}
.x4{left:875.632950px;}
.x1b{left:937.899150px;}
.x10{left:1054.056450px;}
.x7{left:1057.316850px;}
.x1e{left:1238.214750px;}
.x1d{left:1276.160100px;}
.x1c{left:1288.101600px;}
.x21{left:1565.490000px;}
.x22{left:1587.090000px;}
.x11{left:1826.863500px;}
.x5{left:2640.357000px;}
.x9{left:2694.364500px;}
@media print{
.v4{vertical-align:-192.000000pt;}
.v2{vertical-align:-96.000000pt;}
.v3{vertical-align:-2.374933pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.042133pt;}
.ls13{letter-spacing:-7.850667pt;}
.ls19{letter-spacing:-4.224000pt;}
.ls1a{letter-spacing:-0.061333pt;}
.ls1b{letter-spacing:-0.019200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.012693pt;}
.ls15{letter-spacing:0.016640pt;}
.ls1{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.033109pt;}
.lsd{letter-spacing:0.033792pt;}
.ls5{letter-spacing:0.034133pt;}
.ls11{letter-spacing:0.035200pt;}
.ls17{letter-spacing:0.036800pt;}
.ls2{letter-spacing:0.037333pt;}
.lse{letter-spacing:0.038016pt;}
.lsa{letter-spacing:0.038400pt;}
.ls12{letter-spacing:0.042667pt;}
.ls6{letter-spacing:0.068267pt;}
.lsf{letter-spacing:1.706667pt;}
.lsb{letter-spacing:1.920000pt;}
.ls18{letter-spacing:28.992000pt;}
.lsc{letter-spacing:130.944160pt;}
.ls16{letter-spacing:132.266453pt;}
.ls14{letter-spacing:132.266507pt;}
.ls9{letter-spacing:132.266827pt;}
.ls7{letter-spacing:174.858827pt;}
.ls3{letter-spacing:180.266453pt;}
.ls10{letter-spacing:180.266933pt;}
.ws9{word-spacing:-53.376000pt;}
.ws7{word-spacing:-51.774720pt;}
.ws4{word-spacing:-47.479467pt;}
.ws3{word-spacing:-47.445333pt;}
.wsc{word-spacing:-46.970880pt;}
.ws5{word-spacing:-38.570667pt;}
.wse{word-spacing:-34.138133pt;}
.wsf{word-spacing:-21.676800pt;}
.wsd{word-spacing:-0.213333pt;}
.wsa{word-spacing:-0.192000pt;}
.ws1{word-spacing:-0.186667pt;}
.ws2{word-spacing:-0.170667pt;}
.wsb{word-spacing:-0.168960pt;}
.ws6{word-spacing:-0.165547pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:26.116160pt;}
._1{margin-left:-23.722667pt;}
._c{margin-left:-20.035733pt;}
._d{margin-left:-19.063467pt;}
._2{margin-left:-13.794667pt;}
._6{margin-left:-12.612267pt;}
._7{margin-left:-11.093333pt;}
._b{margin-left:-9.425408pt;}
._5{margin-left:-8.396800pt;}
._0{margin-left:-7.094400pt;}
._a{margin-left:-5.583360pt;}
._3{margin-left:-3.652267pt;}
._9{margin-left:-2.691093pt;}
._4{margin-left:-1.587200pt;}
._8{width:1.297067pt;}
._e{width:4.080000pt;}
._f{width:5.040000pt;}
._10{width:28.992000pt;}
.fs0{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.fsd{font-size:122.666667pt;}
.fs7{font-size:165.546667pt;}
.fsa{font-size:168.960000pt;}
.fs5{font-size:170.666667pt;}
.fsb{font-size:176.000000pt;}
.fs6{font-size:186.240000pt;}
.fs4{font-size:186.666667pt;}
.fs9{font-size:190.080000pt;}
.fs8{font-size:192.000000pt;}
.fs1{font-size:213.333333pt;}
.fs2{font-size:240.000000pt;}
.fsc{font-size:245.333333pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:9.185000pt;}
.y2{bottom:11.519467pt;}
.yb{bottom:12.799467pt;}
.y1f{bottom:29.564267pt;}
.y1a{bottom:29.564400pt;}
.y1c{bottom:32.230933pt;}
.y2e{bottom:50.633267pt;}
.y78{bottom:94.846107pt;}
.y16{bottom:111.333893pt;}
.y2d{bottom:121.981360pt;}
.y56{bottom:144.086533pt;}
.y77{bottom:145.512800pt;}
.y4c{bottom:150.281333pt;}
.y38{bottom:156.166800pt;}
.y15{bottom:174.677600pt;}
.y85{bottom:179.065200pt;}
.y55{bottom:192.413600pt;}
.y76{bottom:209.406000pt;}
.y6b{bottom:214.106400pt;}
.y84{bottom:216.398533pt;}
.y7{bottom:217.957733pt;}
.y37{bottom:223.139200pt;}
.y4b{bottom:224.550267pt;}
.y41{bottom:234.106533pt;}
.y2c{bottom:252.667600pt;}
.y83{bottom:253.731867pt;}
.y6{bottom:271.273467pt;}
.y14{bottom:278.083867pt;}
.y6a{bottom:286.106400pt;}
.y86{bottom:286.821067pt;}
.y60{bottom:291.158533pt;}
.y82{bottom:294.203200pt;}
.y40{bottom:304.773200pt;}
.y75{bottom:306.106533pt;}
.y54{bottom:314.486533pt;}
.y2b{bottom:326.734267pt;}
.y13{bottom:341.427600pt;}
.y69{bottom:358.106400pt;}
.y53{bottom:362.813600pt;}
.y74{bottom:368.773200pt;}
.y4a{bottom:374.275733pt;}
.y3f{bottom:380.033600pt;}
.y7e{bottom:394.106400pt;}
.y2a{bottom:400.800933pt;}
.y36{bottom:425.379333pt;}
.y5f{bottom:426.366800pt;}
.y68{bottom:428.072533pt;}
.y73{bottom:434.366933pt;}
.y12{bottom:444.833867pt;}
.y49{bottom:450.075733pt;}
.y7d{bottom:466.106400pt;}
.y35{bottom:473.966800pt;}
.y29{bottom:474.867600pt;}
.y52{bottom:484.886533pt;}
.y20{bottom:486.690267pt;}
.y5e{bottom:494.366800pt;}
.y11{bottom:508.177600pt;}
.y48{bottom:525.875733pt;}
.y72{bottom:527.439867pt;}
.y3e{bottom:528.773200pt;}
.y51{bottom:533.213600pt;}
.y7c{bottom:538.106400pt;}
.y81{bottom:540.521333pt;}
.y28{bottom:546.861333pt;}
.y67{bottom:550.846000pt;}
.y5d{bottom:562.366800pt;}
.y1e{bottom:568.402267pt;}
.y71{bottom:590.106533pt;}
.y3d{bottom:599.439867pt;}
.y66{bottom:601.512667pt;}
.y80{bottom:601.854667pt;}
.y47{bottom:603.550267pt;}
.y34{bottom:606.979333pt;}
.y7b{bottom:608.072533pt;}
.y10{bottom:611.583867pt;}
.y5c{bottom:628.072533pt;}
.y1d{bottom:650.114133pt;}
.y50{bottom:655.286533pt;}
.y65{bottom:655.439733pt;}
.y33{bottom:655.566800pt;}
.y70{bottom:655.700267pt;}
.yf{bottom:662.250533pt;}
.y3{bottom:663.576133pt;}
.y3c{bottom:674.700267pt;}
.y27{bottom:677.547600pt;}
.y4f{bottom:703.832667pt;}
.y64{bottom:724.179333pt;}
.ye{bottom:725.594267pt;}
.y1b{bottom:731.826133pt;}
.y7f{bottom:736.814267pt;}
.y6f{bottom:748.773200pt;}
.y26{bottom:751.614267pt;}
.y46{bottom:756.609067pt;}
.y7a{bottom:756.773067pt;}
.y5b{bottom:769.033467pt;}
.y63{bottom:778.106400pt;}
.y32{bottom:788.579333pt;}
.y6e{bottom:811.439867pt;}
.y3b{bottom:823.439867pt;}
.y25{bottom:825.680933pt;}
.y45{bottom:825.742400pt;}
.y79{bottom:828.773067pt;}
.yd{bottom:829.000533pt;}
.y19{bottom:829.621333pt;}
.y4e{bottom:832.566800pt;}
.y5a{bottom:837.033467pt;}
.y31{bottom:837.166800pt;}
.y62{bottom:846.846000pt;}
.y4{bottom:862.633733pt;}
.y6d{bottom:877.033600pt;}
.yc{bottom:892.344267pt;}
.y3a{bottom:894.106533pt;}
.y44{bottom:894.875733pt;}
.y24{bottom:899.747600pt;}
.y61{bottom:900.773067pt;}
.y59{bottom:905.033467pt;}
.y43{bottom:969.216933pt;}
.y4d{bottom:969.366800pt;}
.y39{bottom:969.366933pt;}
.y30{bottom:970.739200pt;}
.y6c{bottom:970.739333pt;}
.y23{bottom:971.741333pt;}
.y58{bottom:1140.175600pt;}
.y9{bottom:1152.308933pt;}
.y22{bottom:1156.308933pt;}
.y42{bottom:1200.308933pt;}
.y57{bottom:1206.441200pt;}
.y18{bottom:1212.062533pt;}
.ya{bottom:1218.386400pt;}
.y21{bottom:1220.308933pt;}
.y8{bottom:1224.308933pt;}
.y17{bottom:1236.062533pt;}
.y1{bottom:1300.845733pt;}
.y5{bottom:1345.093333pt;}
.h1{height:41.333333pt;}
.h9{height:45.333333pt;}
.h22{height:68.906250pt;}
.h2{height:70.734375pt;}
.h5{height:78.593750pt;}
.hd{height:80.378613pt;}
.h21{height:83.375000pt;}
.hf{height:93.795280pt;}
.h23{height:110.687500pt;}
.he{height:116.000000pt;}
.h14{height:121.977500pt;}
.h7{height:122.500000pt;}
.h17{height:123.375067pt;}
.h1b{height:124.492500pt;}
.h19{height:124.781567pt;}
.hb{height:125.750000pt;}
.hc{height:133.893229pt;}
.h6{height:137.539062pt;}
.h3{height:157.187500pt;}
.h12{height:166.156800pt;}
.h11{height:168.052500pt;}
.h1a{height:169.858133pt;}
.h1c{height:170.613333pt;}
.h10{height:170.666667pt;}
.h1d{height:171.708267pt;}
.ha{height:171.708800pt;}
.h15{height:173.250000pt;}
.h8{height:186.666667pt;}
.h18{height:190.080000pt;}
.h16{height:192.000000pt;}
.h1e{height:192.500000pt;}
.h1f{height:213.333333pt;}
.h4{height:216.562500pt;}
.h20{height:221.375000pt;}
.h13{height:966.400267pt;}
.h0{height:1440.000000pt;}
.w2{width:91.937533pt;}
.w1{width:390.067733pt;}
.w3{width:685.605733pt;}
.w4{width:1888.065333pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x2{left:6.000000pt;}
.x14{left:13.580040pt;}
.xf{left:18.897600pt;}
.x18{left:31.138667pt;}
.x19{left:32.121333pt;}
.xa{left:38.553333pt;}
.x13{left:95.386587pt;}
.x12{left:108.966627pt;}
.xb{left:117.764587pt;}
.x15{left:128.166560pt;}
.x1a{left:176.166667pt;}
.xc{left:177.764533pt;}
.x16{left:182.166533pt;}
.x17{left:188.166667pt;}
.xe{left:250.000000pt;}
.x1{left:287.268000pt;}
.x8{left:291.023600pt;}
.xd{left:293.365067pt;}
.x6{left:551.481067pt;}
.x1f{left:620.599333pt;}
.x20{left:639.799333pt;}
.x3{left:700.661467pt;}
.x4{left:778.340400pt;}
.x1b{left:833.688133pt;}
.x10{left:936.939067pt;}
.x7{left:939.837200pt;}
.x1e{left:1100.635333pt;}
.x1d{left:1134.364533pt;}
.x1c{left:1144.979200pt;}
.x21{left:1391.546667pt;}
.x22{left:1410.746667pt;}
.x11{left:1623.878667pt;}
.x5{left:2346.984000pt;}
.x9{left:2394.990667pt;}
}




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