
    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_ba46b92c7a37b9fbcaef54f0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_0b71723cf3b42998b8a38fed.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_761fa4f017767a16956621bd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_776b88824d0259771991b131.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9a469ed6d8e45bda4841b726.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_034b823dbcdbeff100ff9b21.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_de8b0302dfb3202b91d6fa55.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932617;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:-99.660000px;}
.v2{vertical-align:-98.400000px;}
.v0{vertical-align:0.000000px;}
.ls35{letter-spacing:-2.952000px;}
.lsb{letter-spacing:-2.400000px;}
.ls7{letter-spacing:-1.752000px;}
.ls30{letter-spacing:-1.476000px;}
.ls36{letter-spacing:-1.248000px;}
.ls2d{letter-spacing:-1.200000px;}
.ls2f{letter-spacing:-0.924000px;}
.ls1c{letter-spacing:-0.828000px;}
.ls2e{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.552000px;}
.ls19{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.516000px;}
.ls9{letter-spacing:-0.372000px;}
.ls12{letter-spacing:-0.276000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.096000px;}
.ls15{letter-spacing:-0.024000px;}
.ls5{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.096000px;}
.lsd{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.372000px;}
.ls1b{letter-spacing:0.444000px;}
.lsc{letter-spacing:0.474000px;}
.ls11{letter-spacing:0.492000px;}
.lsa{letter-spacing:0.528000px;}
.ls14{letter-spacing:0.552000px;}
.ls8{letter-spacing:0.600000px;}
.lse{letter-spacing:0.648000px;}
.lsf{letter-spacing:0.684000px;}
.ls3{letter-spacing:0.768000px;}
.ls4{letter-spacing:0.828000px;}
.ls6{letter-spacing:0.924000px;}
.ls27{letter-spacing:1.104000px;}
.ls17{letter-spacing:1.176000px;}
.ls16{letter-spacing:1.200000px;}
.ls2{letter-spacing:1.380000px;}
.ls32{letter-spacing:1.800000px;}
.ls31{letter-spacing:1.848000px;}
.ls22{letter-spacing:4.200000px;}
.ls20{letter-spacing:10.200000px;}
.ls29{letter-spacing:10.260000px;}
.ls25{letter-spacing:10.320000px;}
.ls23{letter-spacing:11.400000px;}
.ls21{letter-spacing:11.520000px;}
.ls1e{letter-spacing:13.860000px;}
.ls26{letter-spacing:15.000000px;}
.ls28{letter-spacing:18.600000px;}
.ls2c{letter-spacing:28.800000px;}
.ls24{letter-spacing:29.400000px;}
.ls1{letter-spacing:41.400000px;}
.ls2b{letter-spacing:42.618000px;}
.ls33{letter-spacing:51.120000px;}
.ls34{letter-spacing:85.920000px;}
.ls0{letter-spacing:810.930000px;}
.ls2a{letter-spacing:939.330000px;}
.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;}
}
.wsa{word-spacing:-22.200000px;}
.wsb{word-spacing:-22.176000px;}
.ws14{word-spacing:-22.104000px;}
.ws1{word-spacing:-21.924000px;}
.wsc{word-spacing:-21.828000px;}
.wsd{word-spacing:-21.648000px;}
.ws8{word-spacing:-21.552000px;}
.ws3{word-spacing:-21.528000px;}
.ws11{word-spacing:-21.444000px;}
.ws18{word-spacing:-21.096000px;}
.ws0{word-spacing:-21.000000px;}
.ws9{word-spacing:-20.976000px;}
.wse{word-spacing:-20.904000px;}
.ws10{word-spacing:-20.784000px;}
.ws6{word-spacing:-20.724000px;}
.ws2{word-spacing:-20.628000px;}
.wsf{word-spacing:-20.460000px;}
.ws7{word-spacing:-20.448000px;}
.ws12{word-spacing:-20.172000px;}
.ws16{word-spacing:-20.076000px;}
.ws15{word-spacing:-19.800000px;}
.ws17{word-spacing:-19.524000px;}
.ws4{word-spacing:-18.600000px;}
.ws13{word-spacing:-18.000000px;}
.ws5{word-spacing:0.000000px;}
._31{margin-left:-3.780000px;}
._f{margin-left:-2.778000px;}
._1{margin-left:-1.212000px;}
._0{width:1.386000px;}
._b{width:2.448000px;}
._2{width:4.236000px;}
._10{width:5.796000px;}
._e{width:7.134000px;}
._5{width:8.310000px;}
._4{width:9.528000px;}
._3{width:10.872000px;}
._18{width:12.312000px;}
._19{width:13.800000px;}
._9{width:14.898000px;}
._a{width:16.062000px;}
._1f{width:17.514000px;}
._17{width:18.786000px;}
._16{width:19.860000px;}
._2b{width:22.542000px;}
._1b{width:24.240000px;}
._1a{width:25.572000px;}
._20{width:26.652000px;}
._2a{width:27.810000px;}
._29{width:28.920000px;}
._23{width:30.528000px;}
._24{width:31.788000px;}
._21{width:33.390000px;}
._25{width:34.470000px;}
._30{width:35.724000px;}
._26{width:37.836000px;}
._2c{width:39.690000px;}
._14{width:40.944000px;}
._15{width:42.108000px;}
._c{width:43.968000px;}
._2f{width:45.030000px;}
._d{width:46.752000px;}
._8{width:48.474000px;}
._6{width:49.590000px;}
._7{width:50.604000px;}
._27{width:52.200000px;}
._28{width:53.460000px;}
._35{width:55.116000px;}
._22{width:59.928000px;}
._1c{width:60.996000px;}
._1d{width:62.040000px;}
._34{width:64.296000px;}
._32{width:66.630000px;}
._33{width:67.902000px;}
._2d{width:70.938000px;}
._2e{width:72.528000px;}
._11{width:82.572000px;}
._12{width:83.862000px;}
._13{width:85.158000px;}
._36{width:86.556000px;}
._1e{width:315.036000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:5.070000px;}
.y31{bottom:5.082000px;}
.y35{bottom:5.085000px;}
.y38{bottom:5.370000px;}
.y49{bottom:5.385000px;}
.y3c{bottom:5.415000px;}
.y2f{bottom:5.682000px;}
.y2d{bottom:17.682000px;}
.y37{bottom:29.370000px;}
.y3e{bottom:29.385000px;}
.y2e{bottom:29.682000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y30{bottom:87.055500px;}
.y63{bottom:89.137500px;}
.y73{bottom:96.037500px;}
.y70{bottom:97.537500px;}
.y62{bottom:109.837500px;}
.y2c{bottom:111.955500px;}
.y61{bottom:118.237500px;}
.y72{bottom:120.037500px;}
.y60{bottom:130.537500px;}
.y71{bottom:144.337500px;}
.y2b{bottom:168.375000px;}
.y5f{bottom:173.775000px;}
.y2a{bottom:192.075000px;}
.y6f{bottom:192.675000px;}
.y5e{bottom:198.075000px;}
.y29{bottom:216.075000px;}
.y6e{bottom:216.675000px;}
.y5d{bottom:222.075000px;}
.y7d{bottom:226.575000px;}
.y28{bottom:240.975000px;}
.y5c{bottom:246.375000px;}
.y27{bottom:264.975000px;}
.y5b{bottom:270.375000px;}
.y7c{bottom:274.875000px;}
.y26{bottom:289.275000px;}
.y5a{bottom:294.675000px;}
.y25{bottom:313.275000px;}
.y59{bottom:318.675000px;}
.y24{bottom:337.620000px;}
.y58{bottom:343.005000px;}
.y23{bottom:361.620000px;}
.y57{bottom:367.005000px;}
.y22{bottom:385.905000px;}
.y56{bottom:391.320000px;}
.y21{bottom:409.905000px;}
.y55{bottom:415.320000px;}
.y20{bottom:434.205000px;}
.y54{bottom:439.620000px;}
.y1f{bottom:458.205000px;}
.y52{bottom:463.620000px;}
.y53{bottom:473.505000px;}
.y1e{bottom:482.505000px;}
.y51{bottom:487.905000px;}
.y1d{bottom:506.550000px;}
.y50{bottom:507.465000px;}
.y6d{bottom:516.450000px;}
.y1c{bottom:530.850000px;}
.y4f{bottom:532.365000px;}
.y1b{bottom:554.250000px;}
.y6c{bottom:554.850000px;}
.y4e{bottom:557.265000px;}
.y1a{bottom:578.550000px;}
.y6b{bottom:579.150000px;}
.y4d{bottom:582.165000px;}
.y7b{bottom:602.550000px;}
.y19{bottom:603.150000px;}
.y4c{bottom:607.065000px;}
.y7a{bottom:626.850000px;}
.y18{bottom:627.450000px;}
.y4b{bottom:631.965000px;}
.y17{bottom:651.450000px;}
.y4a{bottom:656.865000px;}
.y16{bottom:675.780000px;}
.y48{bottom:681.810000px;}
.y15{bottom:699.780000px;}
.y47{bottom:706.710000px;}
.y14{bottom:724.080000px;}
.y13{bottom:748.080000px;}
.y46{bottom:755.910000px;}
.y12{bottom:771.795000px;}
.y6a{bottom:772.380000px;}
.y45{bottom:780.810000px;}
.y11{bottom:795.795000px;}
.y69{bottom:796.380000px;}
.y44{bottom:805.710000px;}
.y10{bottom:820.695000px;}
.y43{bottom:830.610000px;}
.yf{bottom:844.725000px;}
.y74{bottom:854.625000px;}
.y42{bottom:855.540000px;}
.ye{bottom:869.025000px;}
.y41{bottom:880.440000px;}
.yd{bottom:893.025000px;}
.y40{bottom:905.340000px;}
.yc{bottom:917.325000px;}
.y3f{bottom:930.240000px;}
.y79{bottom:940.725000px;}
.yb{bottom:941.325000px;}
.y3d{bottom:955.140000px;}
.y78{bottom:965.025000px;}
.ya{bottom:965.625000px;}
.y9{bottom:989.025000px;}
.y68{bottom:989.625000px;}
.y3b{bottom:1004.040000px;}
.y8{bottom:1013.955000px;}
.y67{bottom:1023.855000px;}
.y3a{bottom:1028.985000px;}
.y77{bottom:1037.355000px;}
.y7{bottom:1037.955000px;}
.y39{bottom:1053.885000px;}
.y6{bottom:1062.255000px;}
.y36{bottom:1078.785000px;}
.y76{bottom:1085.655000px;}
.y66{bottom:1086.255000px;}
.y75{bottom:1109.955000px;}
.y5{bottom:1110.570000px;}
.y34{bottom:1127.985000px;}
.y4{bottom:1133.955000px;}
.y65{bottom:1134.570000px;}
.y32{bottom:1152.885000px;}
.y3{bottom:1158.255000px;}
.y64{bottom:1158.870000px;}
.h9{height:23.970000px;}
.h7{height:23.982000px;}
.h8{height:23.985000px;}
.he{height:24.007500px;}
.hb{height:24.270000px;}
.hf{height:24.285000px;}
.hc{height:24.322500px;}
.h13{height:47.109375px;}
.ha{height:48.270000px;}
.hd{height:48.285000px;}
.h6{height:50.382000px;}
.h11{height:52.998047px;}
.h5{height:58.898438px;}
.h17{height:59.267578px;}
.h3{height:61.670545px;}
.h12{height:65.645508px;}
.h14{height:70.664062px;}
.h15{height:82.400391px;}
.h2{height:82.441406px;}
.h4{height:84.656250px;}
.h16{height:86.338763px;}
.h10{height:1262.681100px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:41.382000px;}
.w7{width:132.619500px;}
.w3{width:133.819500px;}
.w4{width:152.130000px;}
.w8{width:153.030000px;}
.w5{width:177.945000px;}
.w6{width:222.645000px;}
.w9{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.785000px;}
.x14{left:9.600000px;}
.xe{left:18.300000px;}
.x9{left:21.600000px;}
.xb{left:24.600000px;}
.x10{left:38.430000px;}
.xc{left:40.492500px;}
.x11{left:63.630000px;}
.x8{left:77.437500px;}
.x2{left:84.937500px;}
.x13{left:92.430000px;}
.x19{left:96.937500px;}
.xa{left:119.437500px;}
.x5{left:127.537500px;}
.x3{left:129.037500px;}
.x21{left:134.137500px;}
.x1f{left:157.211250px;}
.x20{left:171.030000px;}
.x24{left:177.330000px;}
.x4{left:179.145000px;}
.x6{left:187.275000px;}
.xd{left:253.875000px;}
.x18{left:301.020000px;}
.x28{left:336.701250px;}
.x23{left:344.520000px;}
.x7{left:348.720000px;}
.x29{left:350.520000px;}
.x25{left:374.520000px;}
.x22{left:395.505000px;}
.x1a{left:402.101250px;}
.xf{left:406.620000px;}
.x1b{left:415.905000px;}
.x1e{left:430.650000px;}
.x1{left:435.750000px;}
.x26{left:446.531250px;}
.x27{left:460.350000px;}
.x16{left:538.976250px;}
.x17{left:552.780000px;}
.x12{left:585.195000px;}
.x1c{left:736.406250px;}
.x1d{left:750.225000px;}
@media print{
.v1{vertical-align:-88.586667pt;}
.v2{vertical-align:-87.466667pt;}
.v0{vertical-align:0.000000pt;}
.ls35{letter-spacing:-2.624000pt;}
.lsb{letter-spacing:-2.133333pt;}
.ls7{letter-spacing:-1.557333pt;}
.ls30{letter-spacing:-1.312000pt;}
.ls36{letter-spacing:-1.109333pt;}
.ls2d{letter-spacing:-1.066667pt;}
.ls2f{letter-spacing:-0.821333pt;}
.ls1c{letter-spacing:-0.736000pt;}
.ls2e{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.490667pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.458667pt;}
.ls9{letter-spacing:-0.330667pt;}
.ls12{letter-spacing:-0.245333pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.085333pt;}
.ls15{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.085333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.330667pt;}
.ls1b{letter-spacing:0.394667pt;}
.lsc{letter-spacing:0.421333pt;}
.ls11{letter-spacing:0.437333pt;}
.lsa{letter-spacing:0.469333pt;}
.ls14{letter-spacing:0.490667pt;}
.ls8{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.576000pt;}
.lsf{letter-spacing:0.608000pt;}
.ls3{letter-spacing:0.682667pt;}
.ls4{letter-spacing:0.736000pt;}
.ls6{letter-spacing:0.821333pt;}
.ls27{letter-spacing:0.981333pt;}
.ls17{letter-spacing:1.045333pt;}
.ls16{letter-spacing:1.066667pt;}
.ls2{letter-spacing:1.226667pt;}
.ls32{letter-spacing:1.600000pt;}
.ls31{letter-spacing:1.642667pt;}
.ls22{letter-spacing:3.733333pt;}
.ls20{letter-spacing:9.066667pt;}
.ls29{letter-spacing:9.120000pt;}
.ls25{letter-spacing:9.173333pt;}
.ls23{letter-spacing:10.133333pt;}
.ls21{letter-spacing:10.240000pt;}
.ls1e{letter-spacing:12.320000pt;}
.ls26{letter-spacing:13.333333pt;}
.ls28{letter-spacing:16.533333pt;}
.ls2c{letter-spacing:25.600000pt;}
.ls24{letter-spacing:26.133333pt;}
.ls1{letter-spacing:36.800000pt;}
.ls2b{letter-spacing:37.882667pt;}
.ls33{letter-spacing:45.440000pt;}
.ls34{letter-spacing:76.373333pt;}
.ls0{letter-spacing:720.826667pt;}
.ls2a{letter-spacing:834.960000pt;}
.wsa{word-spacing:-19.733333pt;}
.wsb{word-spacing:-19.712000pt;}
.ws14{word-spacing:-19.648000pt;}
.ws1{word-spacing:-19.488000pt;}
.wsc{word-spacing:-19.402667pt;}
.wsd{word-spacing:-19.242667pt;}
.ws8{word-spacing:-19.157333pt;}
.ws3{word-spacing:-19.136000pt;}
.ws11{word-spacing:-19.061333pt;}
.ws18{word-spacing:-18.752000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws9{word-spacing:-18.645333pt;}
.wse{word-spacing:-18.581333pt;}
.ws10{word-spacing:-18.474667pt;}
.ws6{word-spacing:-18.421333pt;}
.ws2{word-spacing:-18.336000pt;}
.wsf{word-spacing:-18.186667pt;}
.ws7{word-spacing:-18.176000pt;}
.ws12{word-spacing:-17.930667pt;}
.ws16{word-spacing:-17.845333pt;}
.ws15{word-spacing:-17.600000pt;}
.ws17{word-spacing:-17.354667pt;}
.ws4{word-spacing:-16.533333pt;}
.ws13{word-spacing:-16.000000pt;}
.ws5{word-spacing:0.000000pt;}
._31{margin-left:-3.360000pt;}
._f{margin-left:-2.469333pt;}
._1{margin-left:-1.077333pt;}
._0{width:1.232000pt;}
._b{width:2.176000pt;}
._2{width:3.765333pt;}
._10{width:5.152000pt;}
._e{width:6.341333pt;}
._5{width:7.386667pt;}
._4{width:8.469333pt;}
._3{width:9.664000pt;}
._18{width:10.944000pt;}
._19{width:12.266667pt;}
._9{width:13.242667pt;}
._a{width:14.277333pt;}
._1f{width:15.568000pt;}
._17{width:16.698667pt;}
._16{width:17.653333pt;}
._2b{width:20.037333pt;}
._1b{width:21.546667pt;}
._1a{width:22.730667pt;}
._20{width:23.690667pt;}
._2a{width:24.720000pt;}
._29{width:25.706667pt;}
._23{width:27.136000pt;}
._24{width:28.256000pt;}
._21{width:29.680000pt;}
._25{width:30.640000pt;}
._30{width:31.754667pt;}
._26{width:33.632000pt;}
._2c{width:35.280000pt;}
._14{width:36.394667pt;}
._15{width:37.429333pt;}
._c{width:39.082667pt;}
._2f{width:40.026667pt;}
._d{width:41.557333pt;}
._8{width:43.088000pt;}
._6{width:44.080000pt;}
._7{width:44.981333pt;}
._27{width:46.400000pt;}
._28{width:47.520000pt;}
._35{width:48.992000pt;}
._22{width:53.269333pt;}
._1c{width:54.218667pt;}
._1d{width:55.146667pt;}
._34{width:57.152000pt;}
._32{width:59.226667pt;}
._33{width:60.357333pt;}
._2d{width:63.056000pt;}
._2e{width:64.469333pt;}
._11{width:73.397333pt;}
._12{width:74.544000pt;}
._13{width:75.696000pt;}
._36{width:76.938667pt;}
._1e{width:280.032000pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:4.506667pt;}
.y31{bottom:4.517333pt;}
.y35{bottom:4.520000pt;}
.y38{bottom:4.773333pt;}
.y49{bottom:4.786667pt;}
.y3c{bottom:4.813333pt;}
.y2f{bottom:5.050667pt;}
.y2d{bottom:15.717333pt;}
.y37{bottom:26.106667pt;}
.y3e{bottom:26.120000pt;}
.y2e{bottom:26.384000pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y30{bottom:77.382667pt;}
.y63{bottom:79.233333pt;}
.y73{bottom:85.366667pt;}
.y70{bottom:86.700000pt;}
.y62{bottom:97.633333pt;}
.y2c{bottom:99.516000pt;}
.y61{bottom:105.100000pt;}
.y72{bottom:106.700000pt;}
.y60{bottom:116.033333pt;}
.y71{bottom:128.300000pt;}
.y2b{bottom:149.666667pt;}
.y5f{bottom:154.466667pt;}
.y2a{bottom:170.733333pt;}
.y6f{bottom:171.266667pt;}
.y5e{bottom:176.066667pt;}
.y29{bottom:192.066667pt;}
.y6e{bottom:192.600000pt;}
.y5d{bottom:197.400000pt;}
.y7d{bottom:201.400000pt;}
.y28{bottom:214.200000pt;}
.y5c{bottom:219.000000pt;}
.y27{bottom:235.533333pt;}
.y5b{bottom:240.333333pt;}
.y7c{bottom:244.333333pt;}
.y26{bottom:257.133333pt;}
.y5a{bottom:261.933333pt;}
.y25{bottom:278.466667pt;}
.y59{bottom:283.266667pt;}
.y24{bottom:300.106667pt;}
.y58{bottom:304.893333pt;}
.y23{bottom:321.440000pt;}
.y57{bottom:326.226667pt;}
.y22{bottom:343.026667pt;}
.y56{bottom:347.840000pt;}
.y21{bottom:364.360000pt;}
.y55{bottom:369.173333pt;}
.y20{bottom:385.960000pt;}
.y54{bottom:390.773333pt;}
.y1f{bottom:407.293333pt;}
.y52{bottom:412.106667pt;}
.y53{bottom:420.893333pt;}
.y1e{bottom:428.893333pt;}
.y51{bottom:433.693333pt;}
.y1d{bottom:450.266667pt;}
.y50{bottom:451.080000pt;}
.y6d{bottom:459.066667pt;}
.y1c{bottom:471.866667pt;}
.y4f{bottom:473.213333pt;}
.y1b{bottom:492.666667pt;}
.y6c{bottom:493.200000pt;}
.y4e{bottom:495.346667pt;}
.y1a{bottom:514.266667pt;}
.y6b{bottom:514.800000pt;}
.y4d{bottom:517.480000pt;}
.y7b{bottom:535.600000pt;}
.y19{bottom:536.133333pt;}
.y4c{bottom:539.613333pt;}
.y7a{bottom:557.200000pt;}
.y18{bottom:557.733333pt;}
.y4b{bottom:561.746667pt;}
.y17{bottom:579.066667pt;}
.y4a{bottom:583.880000pt;}
.y16{bottom:600.693333pt;}
.y48{bottom:606.053333pt;}
.y15{bottom:622.026667pt;}
.y47{bottom:628.186667pt;}
.y14{bottom:643.626667pt;}
.y13{bottom:664.960000pt;}
.y46{bottom:671.920000pt;}
.y12{bottom:686.040000pt;}
.y6a{bottom:686.560000pt;}
.y45{bottom:694.053333pt;}
.y11{bottom:707.373333pt;}
.y69{bottom:707.893333pt;}
.y44{bottom:716.186667pt;}
.y10{bottom:729.506667pt;}
.y43{bottom:738.320000pt;}
.yf{bottom:750.866667pt;}
.y74{bottom:759.666667pt;}
.y42{bottom:760.480000pt;}
.ye{bottom:772.466667pt;}
.y41{bottom:782.613333pt;}
.yd{bottom:793.800000pt;}
.y40{bottom:804.746667pt;}
.yc{bottom:815.400000pt;}
.y3f{bottom:826.880000pt;}
.y79{bottom:836.200000pt;}
.yb{bottom:836.733333pt;}
.y3d{bottom:849.013333pt;}
.y78{bottom:857.800000pt;}
.ya{bottom:858.333333pt;}
.y9{bottom:879.133333pt;}
.y68{bottom:879.666667pt;}
.y3b{bottom:892.480000pt;}
.y8{bottom:901.293333pt;}
.y67{bottom:910.093333pt;}
.y3a{bottom:914.653333pt;}
.y77{bottom:922.093333pt;}
.y7{bottom:922.626667pt;}
.y39{bottom:936.786667pt;}
.y6{bottom:944.226667pt;}
.y36{bottom:958.920000pt;}
.y76{bottom:965.026667pt;}
.y66{bottom:965.560000pt;}
.y75{bottom:986.626667pt;}
.y5{bottom:987.173333pt;}
.y34{bottom:1002.653333pt;}
.y4{bottom:1007.960000pt;}
.y65{bottom:1008.506667pt;}
.y32{bottom:1024.786667pt;}
.y3{bottom:1029.560000pt;}
.y64{bottom:1030.106667pt;}
.h9{height:21.306667pt;}
.h7{height:21.317333pt;}
.h8{height:21.320000pt;}
.he{height:21.340000pt;}
.hb{height:21.573333pt;}
.hf{height:21.586667pt;}
.hc{height:21.620000pt;}
.h13{height:41.875000pt;}
.ha{height:42.906667pt;}
.hd{height:42.920000pt;}
.h6{height:44.784000pt;}
.h11{height:47.109375pt;}
.h5{height:52.354167pt;}
.h17{height:52.682292pt;}
.h3{height:54.818262pt;}
.h12{height:58.351562pt;}
.h14{height:62.812500pt;}
.h15{height:73.244792pt;}
.h2{height:73.281250pt;}
.h4{height:75.250000pt;}
.h16{height:76.745567pt;}
.h10{height:1122.383200pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:36.784000pt;}
.w7{width:117.884000pt;}
.w3{width:118.950667pt;}
.w4{width:135.226667pt;}
.w8{width:136.026667pt;}
.w5{width:158.173333pt;}
.w6{width:197.906667pt;}
.w9{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.920000pt;}
.x14{left:8.533333pt;}
.xe{left:16.266667pt;}
.x9{left:19.200000pt;}
.xb{left:21.866667pt;}
.x10{left:34.160000pt;}
.xc{left:35.993333pt;}
.x11{left:56.560000pt;}
.x8{left:68.833333pt;}
.x2{left:75.500000pt;}
.x13{left:82.160000pt;}
.x19{left:86.166667pt;}
.xa{left:106.166667pt;}
.x5{left:113.366667pt;}
.x3{left:114.700000pt;}
.x21{left:119.233333pt;}
.x1f{left:139.743333pt;}
.x20{left:152.026667pt;}
.x24{left:157.626667pt;}
.x4{left:159.240000pt;}
.x6{left:166.466667pt;}
.xd{left:225.666667pt;}
.x18{left:267.573333pt;}
.x28{left:299.290000pt;}
.x23{left:306.240000pt;}
.x7{left:309.973333pt;}
.x29{left:311.573333pt;}
.x25{left:332.906667pt;}
.x22{left:351.560000pt;}
.x1a{left:357.423333pt;}
.xf{left:361.440000pt;}
.x1b{left:369.693333pt;}
.x1e{left:382.800000pt;}
.x1{left:387.333333pt;}
.x26{left:396.916667pt;}
.x27{left:409.200000pt;}
.x16{left:479.090000pt;}
.x17{left:491.360000pt;}
.x12{left:520.173333pt;}
.x1c{left:654.583333pt;}
.x1d{left:666.866667pt;}
}




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