
    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_eaa22d8675250156ffd35551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ac06a1fea0f118abadd73baf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914551;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_73708b585efe70053ec4ba46.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.670898;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_6b2239caa2107fdda2d04900.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_2e15a61e04b73d6bf9d43bcf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_7e4dd8a60f9c1e2facbec62f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675293;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_4f52c8d38278bfcfdcb029ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.882324;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_12b565a54ad64b6c0114600f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.851074;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_df6a1765aeb61e08ebdd86d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675293;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_81fe53372f1aa53128374089.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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_eb48d1d0ec681edf6efd4f18.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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:ffc;src:url('chunks/assets/font_6be343b106ddf68a3f21ca56.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675293;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:ffd;src:url('chunks/assets/font_32cd6141b63de97e59c5bfb9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.839844;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:ffe;src:url('chunks/assets/font_14ea9dae27e2715045886fbf.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_90274e17f6b67895a16df14e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1a00b64551b24f1ea00d26fd.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_3b8f17771dd8e850a4233714.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v1{vertical-align:-32.664600px;}
.v3{vertical-align:-21.776700px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:32.664600px;}
.ls2b{letter-spacing:-4.664567px;}
.ls31{letter-spacing:-3.782611px;}
.ls2e{letter-spacing:-2.317040px;}
.ls1f{letter-spacing:-0.594504px;}
.ls20{letter-spacing:-0.533529px;}
.ls21{letter-spacing:-0.450777px;}
.ls26{letter-spacing:-0.411579px;}
.ls2f{letter-spacing:-0.365848px;}
.ls1e{letter-spacing:-0.243899px;}
.ls22{letter-spacing:-0.169858px;}
.ls1c{letter-spacing:-0.156792px;}
.ls17{letter-spacing:-0.086400px;}
.ls30{letter-spacing:-0.078396px;}
.ls1b{letter-spacing:-0.064800px;}
.ls16{letter-spacing:-0.043200px;}
.ls33{letter-spacing:-0.024000px;}
.ls15{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.021600px;}
.ls32{letter-spacing:0.026132px;}
.ls1a{letter-spacing:0.043200px;}
.ls10{letter-spacing:0.053327px;}
.ls18{letter-spacing:0.064800px;}
.ls2c{letter-spacing:0.137193px;}
.ls14{letter-spacing:0.158400px;}
.lse{letter-spacing:0.174214px;}
.ls11{letter-spacing:0.213412px;}
.ls24{letter-spacing:0.222122px;}
.lsa{letter-spacing:0.259143px;}
.ls5{letter-spacing:0.306000px;}
.ls2a{letter-spacing:0.372381px;}
.ls13{letter-spacing:0.435572px;}
.ls12{letter-spacing:0.436772px;}
.ls23{letter-spacing:0.472554px;}
.ls29{letter-spacing:0.509575px;}
.ls27{letter-spacing:0.518285px;}
.ls2d{letter-spacing:0.624991px;}
.lsb{letter-spacing:0.636968px;}
.ls28{letter-spacing:0.640235px;}
.ls25{letter-spacing:0.679433px;}
.ls1d{letter-spacing:3.518024px;}
.ls6{letter-spacing:10.122000px;}
.ls7{letter-spacing:25.182000px;}
.ls8{letter-spacing:25.212000px;}
.ls0{letter-spacing:28.512000px;}
.ls1{letter-spacing:28.542000px;}
.ls2{letter-spacing:30.462000px;}
.lsf{letter-spacing:30.639779px;}
.lsc{letter-spacing:30.640379px;}
.ls9{letter-spacing:30.642179px;}
.lsd{letter-spacing:40.134208px;}
.ls3{letter-spacing:47.712000px;}
.ls4{letter-spacing:61.182000px;}
.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;}
}
.ws4{word-spacing:-60.112800px;}
.ws3{word-spacing:-60.091200px;}
.ws2{word-spacing:-60.069600px;}
.ws1{word-spacing:-60.048000px;}
.ws0{word-spacing:-60.004800px;}
.ws6{word-spacing:-59.983200px;}
.ws5{word-spacing:-59.961600px;}
.wsf{word-spacing:-40.295588px;}
.wsc{word-spacing:-39.629221px;}
.wsd{word-spacing:-39.374434px;}
.ws11{word-spacing:-35.121446px;}
.wsa{word-spacing:-31.203820px;}
.ws8{word-spacing:-0.152437px;}
.ws12{word-spacing:-0.108000px;}
.ws13{word-spacing:0.000000px;}
.ws10{word-spacing:25.732789px;}
.wsb{word-spacing:25.735189px;}
.wse{word-spacing:25.735789px;}
.ws9{word-spacing:25.738789px;}
.ws7{word-spacing:107.541600px;}
._14{margin-left:-26.352006px;}
._16{margin-left:-22.406400px;}
._1{margin-left:-16.221600px;}
._13{margin-left:-14.869124px;}
._15{margin-left:-10.707137px;}
._e{margin-left:-9.363245px;}
._11{margin-left:-7.452865px;}
._10{margin-left:-6.114013px;}
._2{margin-left:-3.888000px;}
._f{margin-left:-2.040497px;}
._0{margin-left:-1.008240px;}
._7{width:1.197600px;}
._d{width:2.613321px;}
._12{width:4.507775px;}
._9{width:9.780000px;}
._a{width:10.858800px;}
._b{width:24.918000px;}
._c{width:26.067600px;}
._3{width:28.207440px;}
._4{width:29.305920px;}
._5{width:30.693600px;}
._6{width:47.571600px;}
._8{width:61.795200px;}
.fc1{color:rgb(29,28,29);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:87.106762px;}
.fs3{font-size:97.995107px;}
.fsb{font-size:108.000000px;}
.fs5{font-size:130.660142px;}
.fs4{font-size:141.548488px;}
.fs2{font-size:152.436833px;}
.fs6{font-size:174.213523px;}
.fs1{font-size:195.990214px;}
.fs0{font-size:216.000000px;}
.fs8{font-size:240.000048px;}
.fs9{font-size:263.999952px;}
.fsa{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:40.920000px;}
.y1c{bottom:55.625484px;}
.y27{bottom:61.069584px;}
.y22{bottom:70.596984px;}
.y26{bottom:101.900934px;}
.y44{bottom:133.080000px;}
.y25{bottom:142.732284px;}
.y21{bottom:149.537484px;}
.yd{bottom:152.520000px;}
.y1b{bottom:194.451834px;}
.y20{bottom:195.812934px;}
.y43{bottom:205.080000px;}
.yc{bottom:218.760000px;}
.y24{bottom:232.561134px;}
.y1a{bottom:238.005234px;}
.y1f{bottom:242.088384px;}
.y23{bottom:281.558634px;}
.yb{bottom:283.200000px;}
.y19{bottom:284.280684px;}
.y1e{bottom:285.641784px;}
.y17{bottom:294.360000px;}
.y1d{bottom:331.917234px;}
.y18{bottom:333.278334px;}
.ya{bottom:347.640000px;}
.y16{bottom:359.160000px;}
.y9{bottom:412.080000px;}
.y15{bottom:423.600000px;}
.y2c{bottom:433.995534px;}
.y38{bottom:436.717584px;}
.y32{bottom:438.078534px;}
.y2b{bottom:474.826734px;}
.y37{bottom:477.548784px;}
.y31{bottom:478.909884px;}
.y36{bottom:523.824384px;}
.y30{bottom:525.185334px;}
.y8{bottom:542.760000px;}
.y14{bottom:553.920000px;}
.y2a{bottom:559.211484px;}
.y35{bottom:567.377634px;}
.y2f{bottom:568.738734px;}
.y7{bottom:607.200000px;}
.y29{bottom:608.208984px;}
.y34{bottom:613.653084px;}
.y2e{bottom:615.014184px;}
.y13{bottom:620.160000px;}
.y28{bottom:659.928684px;}
.y33{bottom:662.650734px;}
.y2d{bottom:664.011684px;}
.y6{bottom:671.640000px;}
.y12{bottom:683.160000px;}
.y5{bottom:736.080000px;}
.y3f{bottom:744.313284px;}
.y42{bottom:749.757534px;}
.y3e{bottom:782.422434px;}
.y41{bottom:790.588734px;}
.y4{bottom:800.520000px;}
.y11{bottom:812.040000px;}
.y3d{bottom:823.253784px;}
.y3{bottom:866.760000px;}
.y3c{bottom:869.529234px;}
.y10{bottom:877.920000px;}
.y40{bottom:913.082634px;}
.y3b{bottom:915.804684px;}
.y2{bottom:931.200000px;}
.yf{bottom:942.360000px;}
.y3a{bottom:959.358114px;}
.y1{bottom:995.640000px;}
.ye{bottom:1007.160000px;}
.y39{bottom:1008.355659px;}
.y47{bottom:4688.520150px;}
.y46{bottom:4862.400150px;}
.y45{bottom:4949.880120px;}
.hc{height:78.626953px;}
.h7{height:87.085495px;}
.h6{height:94.342620px;}
.h5{height:101.674177px;}
.h4{height:103.237250px;}
.h8{height:116.113994px;}
.h3{height:130.628243px;}
.h1{height:157.359375px;}
.h9{height:174.726597px;}
.ha{height:192.199184px;}
.hb{height:419.343750px;}
.h2{height:1072.324602px;}
.h0{height:5055.000000px;}
.w1{width:1167.775050px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x33{left:38.849550px;}
.x13{left:53.480850px;}
.x14{left:58.625550px;}
.x19{left:60.397650px;}
.x36{left:66.573900px;}
.x3c{left:69.754020px;}
.x1{left:80.030910px;}
.x3b{left:88.084020px;}
.x34{left:90.569100px;}
.x37{left:93.971700px;}
.x35{left:95.836350px;}
.x17{left:97.445250px;}
.x11{left:104.125200px;}
.x16{left:111.436800px;}
.x32{left:114.019950px;}
.x18{left:122.066550px;}
.x10{left:123.574500px;}
.x15{left:127.429050px;}
.x12{left:128.746500px;}
.xf{left:134.122650px;}
.x1b{left:397.187550px;}
.xa{left:399.568350px;}
.x2c{left:419.475150px;}
.x30{left:422.905050px;}
.x2d{left:424.470150px;}
.x1f{left:454.650750px;}
.x1c{left:456.692400px;}
.xb{left:458.256450px;}
.x1e{left:462.299850px;}
.xe{left:466.586100px;}
.xd{left:467.960700px;}
.x1d{left:472.167450px;}
.xc{left:473.745150px;}
.x2e{left:486.397650px;}
.x31{left:487.609050px;}
.x1a{left:489.861000px;}
.x2f{left:491.678550px;}
.x9{left:526.553550px;}
.x21{left:805.581900px;}
.x20{left:810.522900px;}
.x8{left:816.933900px;}
.x25{left:822.948900px;}
.x24{left:838.043400px;}
.x5{left:841.323900px;}
.x7{left:846.944400px;}
.x28{left:849.857400px;}
.x29{left:851.531400px;}
.x22{left:852.837900px;}
.x2a{left:856.811400px;}
.x23{left:858.119400px;}
.x6{left:862.256400px;}
.x26{left:864.461400px;}
.x27{left:880.793400px;}
.x4{left:886.754400px;}
.x2b{left:899.345400px;}
.x3{left:906.689100px;}
.x2{left:2097.003000px;}
.x38{left:2187.301500px;}
.x3a{left:2201.913000px;}
.x39{left:2460.271500px;}
.x3d{left:2920.944000px;}
@media print{
.v1{vertical-align:-29.035200pt;}
.v3{vertical-align:-19.357067pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.035200pt;}
.ls2b{letter-spacing:-4.146282pt;}
.ls31{letter-spacing:-3.362321pt;}
.ls2e{letter-spacing:-2.059591pt;}
.ls1f{letter-spacing:-0.528448pt;}
.ls20{letter-spacing:-0.474248pt;}
.ls21{letter-spacing:-0.400691pt;}
.ls26{letter-spacing:-0.365848pt;}
.ls2f{letter-spacing:-0.325199pt;}
.ls1e{letter-spacing:-0.216799pt;}
.ls22{letter-spacing:-0.150985pt;}
.ls1c{letter-spacing:-0.139371pt;}
.ls17{letter-spacing:-0.076800pt;}
.ls30{letter-spacing:-0.069685pt;}
.ls1b{letter-spacing:-0.057600pt;}
.ls16{letter-spacing:-0.038400pt;}
.ls33{letter-spacing:-0.021333pt;}
.ls15{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.019200pt;}
.ls32{letter-spacing:0.023228pt;}
.ls1a{letter-spacing:0.038400pt;}
.ls10{letter-spacing:0.047402pt;}
.ls18{letter-spacing:0.057600pt;}
.ls2c{letter-spacing:0.121949pt;}
.ls14{letter-spacing:0.140800pt;}
.lse{letter-spacing:0.154856pt;}
.ls11{letter-spacing:0.189699pt;}
.ls24{letter-spacing:0.197442pt;}
.lsa{letter-spacing:0.230349pt;}
.ls5{letter-spacing:0.272000pt;}
.ls2a{letter-spacing:0.331006pt;}
.ls13{letter-spacing:0.387175pt;}
.ls12{letter-spacing:0.388242pt;}
.ls23{letter-spacing:0.420048pt;}
.ls29{letter-spacing:0.452955pt;}
.ls27{letter-spacing:0.460698pt;}
.ls2d{letter-spacing:0.555548pt;}
.lsb{letter-spacing:0.566194pt;}
.ls28{letter-spacing:0.569098pt;}
.ls25{letter-spacing:0.603940pt;}
.ls1d{letter-spacing:3.127133pt;}
.ls6{letter-spacing:8.997333pt;}
.ls7{letter-spacing:22.384000pt;}
.ls8{letter-spacing:22.410667pt;}
.ls0{letter-spacing:25.344000pt;}
.ls1{letter-spacing:25.370667pt;}
.ls2{letter-spacing:27.077333pt;}
.lsf{letter-spacing:27.235359pt;}
.lsc{letter-spacing:27.235892pt;}
.ls9{letter-spacing:27.237492pt;}
.lsd{letter-spacing:35.674851pt;}
.ls3{letter-spacing:42.410667pt;}
.ls4{letter-spacing:54.384000pt;}
.ws4{word-spacing:-53.433600pt;}
.ws3{word-spacing:-53.414400pt;}
.ws2{word-spacing:-53.395200pt;}
.ws1{word-spacing:-53.376000pt;}
.ws0{word-spacing:-53.337600pt;}
.ws6{word-spacing:-53.318400pt;}
.ws5{word-spacing:-53.299200pt;}
.wsf{word-spacing:-35.818300pt;}
.wsc{word-spacing:-35.225974pt;}
.wsd{word-spacing:-34.999497pt;}
.ws11{word-spacing:-31.219063pt;}
.wsa{word-spacing:-27.736729pt;}
.ws8{word-spacing:-0.135499pt;}
.ws12{word-spacing:-0.096000pt;}
.ws13{word-spacing:0.000000pt;}
.ws10{word-spacing:22.873590pt;}
.wsb{word-spacing:22.875723pt;}
.wse{word-spacing:22.876257pt;}
.ws9{word-spacing:22.878923pt;}
.ws7{word-spacing:95.592533pt;}
._14{margin-left:-23.424005pt;}
._16{margin-left:-19.916800pt;}
._1{margin-left:-14.419200pt;}
._13{margin-left:-13.216999pt;}
._15{margin-left:-9.517455pt;}
._e{margin-left:-8.322884pt;}
._11{margin-left:-6.624769pt;}
._10{margin-left:-5.434678pt;}
._2{margin-left:-3.456000pt;}
._f{margin-left:-1.813775pt;}
._0{margin-left:-0.896213pt;}
._7{width:1.064533pt;}
._d{width:2.322952pt;}
._12{width:4.006911pt;}
._9{width:8.693333pt;}
._a{width:9.652267pt;}
._b{width:22.149333pt;}
._c{width:23.171200pt;}
._3{width:25.073280pt;}
._4{width:26.049707pt;}
._5{width:27.283200pt;}
._6{width:42.285867pt;}
._8{width:54.929067pt;}
.fs7{font-size:77.428233pt;}
.fs3{font-size:87.106762pt;}
.fsb{font-size:96.000000pt;}
.fs5{font-size:116.142349pt;}
.fs4{font-size:125.820878pt;}
.fs2{font-size:135.499407pt;}
.fs6{font-size:154.856465pt;}
.fs1{font-size:174.213523pt;}
.fs0{font-size:192.000000pt;}
.fs8{font-size:213.333376pt;}
.fs9{font-size:234.666624pt;}
.fsa{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:36.373333pt;}
.y1c{bottom:49.444874pt;}
.y27{bottom:54.284074pt;}
.y22{bottom:62.752874pt;}
.y26{bottom:90.578608pt;}
.y44{bottom:118.293333pt;}
.y25{bottom:126.873141pt;}
.y21{bottom:132.922208pt;}
.yd{bottom:135.573333pt;}
.y1b{bottom:172.846074pt;}
.y20{bottom:174.055941pt;}
.y43{bottom:182.293333pt;}
.yc{bottom:194.453333pt;}
.y24{bottom:206.721008pt;}
.y1a{bottom:211.560208pt;}
.y1f{bottom:215.189674pt;}
.y23{bottom:250.274341pt;}
.yb{bottom:251.733333pt;}
.y19{bottom:252.693941pt;}
.y1e{bottom:253.903808pt;}
.y17{bottom:261.653333pt;}
.y1d{bottom:295.037541pt;}
.y18{bottom:296.247408pt;}
.ya{bottom:309.013333pt;}
.y16{bottom:319.253333pt;}
.y9{bottom:366.293333pt;}
.y15{bottom:376.533333pt;}
.y2c{bottom:385.773808pt;}
.y38{bottom:388.193408pt;}
.y32{bottom:389.403141pt;}
.y2b{bottom:422.068208pt;}
.y37{bottom:424.487808pt;}
.y31{bottom:425.697674pt;}
.y36{bottom:465.621674pt;}
.y30{bottom:466.831408pt;}
.y8{bottom:482.453333pt;}
.y14{bottom:492.373333pt;}
.y2a{bottom:497.076874pt;}
.y35{bottom:504.335674pt;}
.y2f{bottom:505.545541pt;}
.y7{bottom:539.733333pt;}
.y29{bottom:540.630208pt;}
.y34{bottom:545.469408pt;}
.y2e{bottom:546.679274pt;}
.y13{bottom:551.253333pt;}
.y28{bottom:586.603274pt;}
.y33{bottom:589.022874pt;}
.y2d{bottom:590.232608pt;}
.y6{bottom:597.013333pt;}
.y12{bottom:607.253333pt;}
.y5{bottom:654.293333pt;}
.y3f{bottom:661.611808pt;}
.y42{bottom:666.451141pt;}
.y3e{bottom:695.486608pt;}
.y41{bottom:702.745541pt;}
.y4{bottom:711.573333pt;}
.y11{bottom:721.813333pt;}
.y3d{bottom:731.781141pt;}
.y3{bottom:770.453333pt;}
.y3c{bottom:772.914874pt;}
.y10{bottom:780.373333pt;}
.y40{bottom:811.629008pt;}
.y3b{bottom:814.048608pt;}
.y2{bottom:827.733333pt;}
.yf{bottom:837.653333pt;}
.y3a{bottom:852.762768pt;}
.y1{bottom:885.013333pt;}
.ye{bottom:895.253333pt;}
.y39{bottom:896.316141pt;}
.y47{bottom:4167.573467pt;}
.y46{bottom:4322.133467pt;}
.y45{bottom:4399.893440pt;}
.hc{height:69.890625pt;}
.h7{height:77.409329pt;}
.h6{height:83.860107pt;}
.h5{height:90.377046pt;}
.h4{height:91.766444pt;}
.h8{height:103.212439pt;}
.h3{height:116.113994pt;}
.h1{height:139.875000pt;}
.h9{height:155.312531pt;}
.ha{height:170.843719pt;}
.hb{height:372.750000pt;}
.h2{height:953.177424pt;}
.h0{height:4493.333333pt;}
.w1{width:1038.022267pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x33{left:34.532933pt;}
.x13{left:47.538533pt;}
.x14{left:52.111600pt;}
.x19{left:53.686800pt;}
.x36{left:59.176800pt;}
.x3c{left:62.003573pt;}
.x1{left:71.138587pt;}
.x3b{left:78.296907pt;}
.x34{left:80.505867pt;}
.x37{left:83.530400pt;}
.x35{left:85.187867pt;}
.x17{left:86.618000pt;}
.x11{left:92.555733pt;}
.x16{left:99.054933pt;}
.x32{left:101.351067pt;}
.x18{left:108.503600pt;}
.x10{left:109.844000pt;}
.x15{left:113.270267pt;}
.x12{left:114.441333pt;}
.xf{left:119.220133pt;}
.x1b{left:353.055600pt;}
.xa{left:355.171867pt;}
.x2c{left:372.866800pt;}
.x30{left:375.915600pt;}
.x2d{left:377.306800pt;}
.x1f{left:404.134000pt;}
.x1c{left:405.948800pt;}
.xb{left:407.339067pt;}
.x1e{left:410.933200pt;}
.xe{left:414.743200pt;}
.xd{left:415.965067pt;}
.x1d{left:419.704400pt;}
.xc{left:421.106800pt;}
.x2e{left:432.353467pt;}
.x31{left:433.430267pt;}
.x1a{left:435.432000pt;}
.x2f{left:437.047600pt;}
.x9{left:468.047600pt;}
.x21{left:716.072800pt;}
.x20{left:720.464800pt;}
.x8{left:726.163467pt;}
.x25{left:731.510133pt;}
.x24{left:744.927467pt;}
.x5{left:747.843467pt;}
.x7{left:752.839467pt;}
.x28{left:755.428800pt;}
.x29{left:756.916800pt;}
.x22{left:758.078133pt;}
.x2a{left:761.610133pt;}
.x23{left:762.772800pt;}
.x6{left:766.450133pt;}
.x26{left:768.410133pt;}
.x27{left:782.927467pt;}
.x4{left:788.226133pt;}
.x2b{left:799.418133pt;}
.x3{left:805.945867pt;}
.x2{left:1864.002667pt;}
.x38{left:1944.268000pt;}
.x3a{left:1957.256000pt;}
.x39{left:2186.908000pt;}
.x3d{left:2596.394667pt;}
}




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