
    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_976964af656f80562abd1d5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_d6bf42e98c52210a7df36c53.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_763f0635b12e7ca18a7ad2ce.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7b82587a00bd065513f14fe9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_ff6d672041f4297bf714e74a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c0b301205843b1dfe5073d6d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5afd92f55c2d978603d7ca7e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7fe611394eb89b8c3d42b6d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ccd89cc4ddbb670241da1557.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.360000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.034560px;}
.ls9{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.217440px;}
.ls2{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.341280px;}
.ls4{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.378600px;}
.ls6{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.540000px;}
.lsd{letter-spacing:21.420000px;}
.lsc{letter-spacing:70.901280px;}
.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;}
}
.ws6{word-spacing:-21.438600px;}
.ws8{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.700000px;}
.ws0{word-spacing:-19.726560px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.832000px;}
.ws4{word-spacing:0.000000px;}
._1b{margin-left:-5.896800px;}
._13{margin-left:-4.801680px;}
._4{margin-left:-3.261120px;}
._2{margin-left:-1.432080px;}
._3{width:1.149120px;}
._6{width:2.954880px;}
._5{width:3.977280px;}
._17{width:5.120640px;}
._16{width:6.318000px;}
._10{width:7.665840px;}
._11{width:9.182160px;}
._12{width:10.476000px;}
._22{width:11.480400px;}
._1a{width:12.551760px;}
._d{width:13.983840px;}
._e{width:14.994720px;}
._f{width:16.035840px;}
._9{width:17.606160px;}
._a{width:18.664320px;}
._c{width:19.880640px;}
._b{width:22.155120px;}
._14{width:23.334480px;}
._15{width:24.598080px;}
._21{width:27.209520px;}
._18{width:33.022080px;}
._19{width:34.117200px;}
._24{width:35.321760px;}
._1e{width:41.783040px;}
._1d{width:43.552080px;}
._20{width:48.016800px;}
._1f{width:57.872880px;}
._7{width:71.351280px;}
._8{width:72.783360px;}
._1c{width:77.669280px;}
._23{width:79.438320px;}
._0{width:292.222560px;}
._1{width:1213.426560px;}
.fc6{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,128,0);}
.fc5{color:rgb(49,49,49);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.475850px;}
.y73{bottom:22.860000px;}
.y61{bottom:23.040000px;}
.y5{bottom:31.176000px;}
.y5f{bottom:36.900000px;}
.y75{bottom:44.280000px;}
.y6d{bottom:44.454000px;}
.y66{bottom:44.460000px;}
.y78{bottom:44.505000px;}
.y60{bottom:50.940000px;}
.y71{bottom:58.140000px;}
.y69{bottom:58.314000px;}
.y63{bottom:58.320000px;}
.y6b{bottom:65.694000px;}
.y76{bottom:65.700000px;}
.y67{bottom:65.745000px;}
.y6f{bottom:72.000000px;}
.y6c{bottom:72.354000px;}
.y29{bottom:80.676000px;}
.y4c{bottom:83.016000px;}
.y70{bottom:86.040000px;}
.y64{bottom:93.420000px;}
.y7f{bottom:93.600000px;}
.y6a{bottom:93.774000px;}
.y7a{bottom:99.900000px;}
.y8f{bottom:101.556000px;}
.y68{bottom:107.316000px;}
.y28{bottom:108.576000px;}
.y4b{bottom:110.916000px;}
.y7b{bottom:113.940000px;}
.y72{bottom:121.320000px;}
.y7e{bottom:121.500000px;}
.y8e{bottom:129.456000px;}
.y27{bottom:136.476000px;}
.y4a{bottom:138.636000px;}
.y7d{bottom:149.220000px;}
.y8d{bottom:157.170000px;}
.y26{bottom:164.190000px;}
.y49{bottom:166.350000px;}
.y7c{bottom:177.120000px;}
.y8c{bottom:184.890000px;}
.y25{bottom:191.910000px;}
.y48{bottom:209.010000px;}
.y8b{bottom:212.610000px;}
.y24{bottom:219.810000px;}
.y65{bottom:222.870000px;}
.y47{bottom:236.910000px;}
.y8a{bottom:240.510000px;}
.y23{bottom:247.530000px;}
.y46{bottom:264.810000px;}
.y89{bottom:268.230000px;}
.y22{bottom:290.055000px;}
.y45{bottom:292.575000px;}
.y62{bottom:310.755000px;}
.y88{bottom:310.935000px;}
.y21{bottom:318.135000px;}
.y44{bottom:320.295000px;}
.y20{bottom:345.855000px;}
.y43{bottom:348.015000px;}
.y87{bottom:359.895000px;}
.y1f{bottom:373.575000px;}
.y42{bottom:375.915000px;}
.y1e{bottom:401.475000px;}
.y41{bottom:403.635000px;}
.y86{bottom:408.675000px;}
.y5e{bottom:426.315000px;}
.y1d{bottom:429.195000px;}
.y85{bottom:436.395000px;}
.y40{bottom:446.295000px;}
.y1c{bottom:456.915000px;}
.y84{bottom:464.115000px;}
.y3f{bottom:474.195000px;}
.y1b{bottom:484.635000px;}
.y83{bottom:491.835000px;}
.y3e{bottom:501.915000px;}
.y82{bottom:519.735000px;}
.y1a{bottom:527.295000px;}
.y5d{bottom:528.195000px;}
.y3d{bottom:529.635000px;}
.y81{bottom:547.455000px;}
.y19{bottom:555.195000px;}
.y3c{bottom:557.535000px;}
.y5c{bottom:577.005000px;}
.y18{bottom:583.125000px;}
.y3b{bottom:585.285000px;}
.y80{bottom:596.265000px;}
.y17{bottom:610.845000px;}
.y3a{bottom:613.005000px;}
.y79{bottom:618.045000px;}
.y5b{bottom:625.785000px;}
.y16{bottom:638.565000px;}
.y39{bottom:640.905000px;}
.y15{bottom:666.285000px;}
.y5a{bottom:668.445000px;}
.y38{bottom:668.625000px;}
.y14{bottom:694.185000px;}
.y37{bottom:696.345000px;}
.y59{bottom:711.105000px;}
.y13{bottom:721.905000px;}
.y36{bottom:724.065000px;}
.y58{bottom:739.185000px;}
.y12{bottom:749.625000px;}
.y35{bottom:751.965000px;}
.y11{bottom:777.525000px;}
.y34{bottom:779.685000px;}
.y57{bottom:781.665000px;}
.y10{bottom:805.245000px;}
.y33{bottom:807.405000px;}
.y56{bottom:809.745000px;}
.y77{bottom:816.945000px;}
.yf{bottom:832.965000px;}
.y55{bottom:837.465000px;}
.y32{bottom:850.110000px;}
.ye{bottom:860.730000px;}
.y54{bottom:865.230000px;}
.y31{bottom:878.010000px;}
.yd{bottom:888.630000px;}
.y53{bottom:892.950000px;}
.y74{bottom:904.830000px;}
.y30{bottom:905.730000px;}
.y52{bottom:920.850000px;}
.yc{bottom:931.110000px;}
.y2f{bottom:933.630000px;}
.y51{bottom:948.570000px;}
.y2e{bottom:961.350000px;}
.yb{bottom:973.950000px;}
.y50{bottom:976.290000px;}
.y2d{bottom:989.070000px;}
.y6e{bottom:992.670000px;}
.ya{bottom:1001.850000px;}
.y4f{bottom:1004.190000px;}
.y2c{bottom:1016.970000px;}
.y4e{bottom:1031.910000px;}
.y9{bottom:1044.510000px;}
.y2b{bottom:1059.450000px;}
.y4d{bottom:1059.630000px;}
.y8{bottom:1087.170000px;}
.y2a{bottom:1087.350000px;}
.y7{bottom:1115.250000px;}
.y4{bottom:1139.400000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1183.320000px;}
.y1{bottom:1210.680000px;}
.h7{height:49.150080px;}
.h5{height:50.229844px;}
.hb{height:58.819922px;}
.h4{height:67.169883px;}
.hc{height:70.560000px;}
.h2{height:76.355508px;}
.ha{height:82.676953px;}
.h8{height:84.034336px;}
.h9{height:84.898125px;}
.h11{height:85.500000px;}
.he{height:85.536000px;}
.h13{height:86.585445px;}
.h6{height:95.874961px;}
.h3{height:105.060586px;}
.hd{height:113.220000px;}
.hf{height:113.400000px;}
.h10{height:140.976000px;}
.h12{height:196.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.260000px;}
.w6{width:211.530000px;}
.w5{width:250.995000px;}
.w4{width:336.495000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:4.500000px;}
.x28{left:6.516000px;}
.xd{left:8.820000px;}
.x10{left:14.436000px;}
.x29{left:15.480000px;}
.x12{left:19.800000px;}
.x1f{left:20.916000px;}
.x20{left:23.040000px;}
.xe{left:25.920000px;}
.x17{left:27.036000px;}
.x15{left:28.620000px;}
.x25{left:29.736000px;}
.x1b{left:35.316000px;}
.x5{left:42.479987px;}
.x21{left:45.180000px;}
.x1e{left:48.600000px;}
.x24{left:51.120000px;}
.x1c{left:52.230000px;}
.x1d{left:55.470000px;}
.x16{left:59.976000px;}
.x2a{left:65.370000px;}
.x14{left:68.940000px;}
.x1a{left:73.080000px;}
.x26{left:74.370000px;}
.x22{left:78.870000px;}
.xf{left:83.160000px;}
.x4{left:84.959987px;}
.x19{left:92.730000px;}
.x6{left:96.695987px;}
.x9{left:103.175987px;}
.x1{left:106.415987px;}
.xc{left:109.475987px;}
.x27{left:119.190000px;}
.x18{left:131.970000px;}
.x8{left:308.774987px;}
.x2b{left:327.674987px;}
.xa{left:396.254987px;}
.x11{left:420.735000px;}
.x7{left:446.474987px;}
.x2{left:521.564987px;}
.x3{left:641.624987px;}
.x13{left:672.810000px;}
.xb{left:734.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.030720pt;}
.ls9{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.193280pt;}
.ls2{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.303360pt;}
.ls4{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.336533pt;}
.ls6{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.480000pt;}
.lsd{letter-spacing:19.040000pt;}
.lsc{letter-spacing:63.023360pt;}
.ws6{word-spacing:-19.056533pt;}
.ws8{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.400000pt;}
.ws0{word-spacing:-17.534720pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.184000pt;}
.ws4{word-spacing:0.000000pt;}
._1b{margin-left:-5.241600pt;}
._13{margin-left:-4.268160pt;}
._4{margin-left:-2.898773pt;}
._2{margin-left:-1.272960pt;}
._3{width:1.021440pt;}
._6{width:2.626560pt;}
._5{width:3.535360pt;}
._17{width:4.551680pt;}
._16{width:5.616000pt;}
._10{width:6.814080pt;}
._11{width:8.161920pt;}
._12{width:9.312000pt;}
._22{width:10.204800pt;}
._1a{width:11.157120pt;}
._d{width:12.430080pt;}
._e{width:13.328640pt;}
._f{width:14.254080pt;}
._9{width:15.649920pt;}
._a{width:16.590507pt;}
._c{width:17.671680pt;}
._b{width:19.693440pt;}
._14{width:20.741760pt;}
._15{width:21.864960pt;}
._21{width:24.186240pt;}
._18{width:29.352960pt;}
._19{width:30.326400pt;}
._24{width:31.397120pt;}
._1e{width:37.140480pt;}
._1d{width:38.712960pt;}
._20{width:42.681600pt;}
._1f{width:51.442560pt;}
._7{width:63.423360pt;}
._8{width:64.696320pt;}
._1c{width:69.039360pt;}
._23{width:70.611840pt;}
._0{width:259.753387pt;}
._1{width:1078.601387pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.311867pt;}
.y73{bottom:20.320000pt;}
.y61{bottom:20.480000pt;}
.y5{bottom:27.712000pt;}
.y5f{bottom:32.800000pt;}
.y75{bottom:39.360000pt;}
.y6d{bottom:39.514667pt;}
.y66{bottom:39.520000pt;}
.y78{bottom:39.560000pt;}
.y60{bottom:45.280000pt;}
.y71{bottom:51.680000pt;}
.y69{bottom:51.834667pt;}
.y63{bottom:51.840000pt;}
.y6b{bottom:58.394667pt;}
.y76{bottom:58.400000pt;}
.y67{bottom:58.440000pt;}
.y6f{bottom:64.000000pt;}
.y6c{bottom:64.314667pt;}
.y29{bottom:71.712000pt;}
.y4c{bottom:73.792000pt;}
.y70{bottom:76.480000pt;}
.y64{bottom:83.040000pt;}
.y7f{bottom:83.200000pt;}
.y6a{bottom:83.354667pt;}
.y7a{bottom:88.800000pt;}
.y8f{bottom:90.272000pt;}
.y68{bottom:95.392000pt;}
.y28{bottom:96.512000pt;}
.y4b{bottom:98.592000pt;}
.y7b{bottom:101.280000pt;}
.y72{bottom:107.840000pt;}
.y7e{bottom:108.000000pt;}
.y8e{bottom:115.072000pt;}
.y27{bottom:121.312000pt;}
.y4a{bottom:123.232000pt;}
.y7d{bottom:132.640000pt;}
.y8d{bottom:139.706667pt;}
.y26{bottom:145.946667pt;}
.y49{bottom:147.866667pt;}
.y7c{bottom:157.440000pt;}
.y8c{bottom:164.346667pt;}
.y25{bottom:170.586667pt;}
.y48{bottom:185.786667pt;}
.y8b{bottom:188.986667pt;}
.y24{bottom:195.386667pt;}
.y65{bottom:198.106667pt;}
.y47{bottom:210.586667pt;}
.y8a{bottom:213.786667pt;}
.y23{bottom:220.026667pt;}
.y46{bottom:235.386667pt;}
.y89{bottom:238.426667pt;}
.y22{bottom:257.826667pt;}
.y45{bottom:260.066667pt;}
.y62{bottom:276.226667pt;}
.y88{bottom:276.386667pt;}
.y21{bottom:282.786667pt;}
.y44{bottom:284.706667pt;}
.y20{bottom:307.426667pt;}
.y43{bottom:309.346667pt;}
.y87{bottom:319.906667pt;}
.y1f{bottom:332.066667pt;}
.y42{bottom:334.146667pt;}
.y1e{bottom:356.866667pt;}
.y41{bottom:358.786667pt;}
.y86{bottom:363.266667pt;}
.y5e{bottom:378.946667pt;}
.y1d{bottom:381.506667pt;}
.y85{bottom:387.906667pt;}
.y40{bottom:396.706667pt;}
.y1c{bottom:406.146667pt;}
.y84{bottom:412.546667pt;}
.y3f{bottom:421.506667pt;}
.y1b{bottom:430.786667pt;}
.y83{bottom:437.186667pt;}
.y3e{bottom:446.146667pt;}
.y82{bottom:461.986667pt;}
.y1a{bottom:468.706667pt;}
.y5d{bottom:469.506667pt;}
.y3d{bottom:470.786667pt;}
.y81{bottom:486.626667pt;}
.y19{bottom:493.506667pt;}
.y3c{bottom:495.586667pt;}
.y5c{bottom:512.893333pt;}
.y18{bottom:518.333333pt;}
.y3b{bottom:520.253333pt;}
.y80{bottom:530.013333pt;}
.y17{bottom:542.973333pt;}
.y3a{bottom:544.893333pt;}
.y79{bottom:549.373333pt;}
.y5b{bottom:556.253333pt;}
.y16{bottom:567.613333pt;}
.y39{bottom:569.693333pt;}
.y15{bottom:592.253333pt;}
.y5a{bottom:594.173333pt;}
.y38{bottom:594.333333pt;}
.y14{bottom:617.053333pt;}
.y37{bottom:618.973333pt;}
.y59{bottom:632.093333pt;}
.y13{bottom:641.693333pt;}
.y36{bottom:643.613333pt;}
.y58{bottom:657.053333pt;}
.y12{bottom:666.333333pt;}
.y35{bottom:668.413333pt;}
.y11{bottom:691.133333pt;}
.y34{bottom:693.053333pt;}
.y57{bottom:694.813333pt;}
.y10{bottom:715.773333pt;}
.y33{bottom:717.693333pt;}
.y56{bottom:719.773333pt;}
.y77{bottom:726.173333pt;}
.yf{bottom:740.413333pt;}
.y55{bottom:744.413333pt;}
.y32{bottom:755.653333pt;}
.ye{bottom:765.093333pt;}
.y54{bottom:769.093333pt;}
.y31{bottom:780.453333pt;}
.yd{bottom:789.893333pt;}
.y53{bottom:793.733333pt;}
.y74{bottom:804.293333pt;}
.y30{bottom:805.093333pt;}
.y52{bottom:818.533333pt;}
.yc{bottom:827.653333pt;}
.y2f{bottom:829.893333pt;}
.y51{bottom:843.173333pt;}
.y2e{bottom:854.533333pt;}
.yb{bottom:865.733333pt;}
.y50{bottom:867.813333pt;}
.y2d{bottom:879.173333pt;}
.y6e{bottom:882.373333pt;}
.ya{bottom:890.533333pt;}
.y4f{bottom:892.613333pt;}
.y2c{bottom:903.973333pt;}
.y4e{bottom:917.253333pt;}
.y9{bottom:928.453333pt;}
.y2b{bottom:941.733333pt;}
.y4d{bottom:941.893333pt;}
.y8{bottom:966.373333pt;}
.y2a{bottom:966.533333pt;}
.y7{bottom:991.333333pt;}
.y4{bottom:1012.800000pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1051.840000pt;}
.y1{bottom:1076.160000pt;}
.h7{height:43.688960pt;}
.h5{height:44.648750pt;}
.hb{height:52.284375pt;}
.h4{height:59.706562pt;}
.hc{height:62.720000pt;}
.h2{height:67.871563pt;}
.ha{height:73.490625pt;}
.h8{height:74.697187pt;}
.h9{height:75.465000pt;}
.h11{height:76.000000pt;}
.he{height:76.032000pt;}
.h13{height:76.964840pt;}
.h6{height:85.222187pt;}
.h3{height:93.387187pt;}
.hd{height:100.640000pt;}
.hf{height:100.800000pt;}
.h10{height:125.312000pt;}
.h12{height:174.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:65.120000pt;}
.w6{width:188.026667pt;}
.w5{width:223.106667pt;}
.w4{width:299.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:4.000000pt;}
.x28{left:5.792000pt;}
.xd{left:7.840000pt;}
.x10{left:12.832000pt;}
.x29{left:13.760000pt;}
.x12{left:17.600000pt;}
.x1f{left:18.592000pt;}
.x20{left:20.480000pt;}
.xe{left:23.040000pt;}
.x17{left:24.032000pt;}
.x15{left:25.440000pt;}
.x25{left:26.432000pt;}
.x1b{left:31.392000pt;}
.x5{left:37.759988pt;}
.x21{left:40.160000pt;}
.x1e{left:43.200000pt;}
.x24{left:45.440000pt;}
.x1c{left:46.426667pt;}
.x1d{left:49.306667pt;}
.x16{left:53.312000pt;}
.x2a{left:58.106667pt;}
.x14{left:61.280000pt;}
.x1a{left:64.960000pt;}
.x26{left:66.106667pt;}
.x22{left:70.106667pt;}
.xf{left:73.920000pt;}
.x4{left:75.519988pt;}
.x19{left:82.426667pt;}
.x6{left:85.951988pt;}
.x9{left:91.711988pt;}
.x1{left:94.591988pt;}
.xc{left:97.311988pt;}
.x27{left:105.946667pt;}
.x18{left:117.306667pt;}
.x8{left:274.466655pt;}
.x2b{left:291.266655pt;}
.xa{left:352.226655pt;}
.x11{left:373.986667pt;}
.x7{left:396.866655pt;}
.x2{left:463.613322pt;}
.x3{left:570.333322pt;}
.x13{left:598.053333pt;}
.xb{left:652.933322pt;}
}




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