
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2b5ef86c6c6c33f838eab1a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_feaeab5fc8d39da461514939.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_686e317eb1081ab4de81039e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_d34559e6decc88cf520d2a99.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6a551196cbb8ae410179b2ae.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')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_3fcdf4208f6819bca819e57f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f0f058f179ebc3b6a47ae6e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_c79611dcd4c3f83f7a2461e3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_239f8187c25ac52af58f2999.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.457800px;}
.ls12{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.274800px;}
.ls11{letter-spacing:-0.262200px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls10{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259200px;}
.ls4{letter-spacing:0.262080px;}
.ls8{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.720000px;}
.ls16{letter-spacing:6.785280px;}
.ls15{letter-spacing:39.905280px;}
.lsf{letter-spacing:55.386720px;}
.lse{letter-spacing:64.026720px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.wsd{word-spacing:-37.756800px;}
.ws9{word-spacing:-28.712400px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.712400px;}
.wse{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.297800px;}
.wsf{word-spacing:-16.102200px;}
.ws4{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.ws8{word-spacing:-13.939200px;}
.ws7{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-2.106720px;}
._0{margin-left:-1.044000px;}
._1{width:1.596000px;}
._19{width:2.690400px;}
._1a{width:4.239360px;}
._7{width:5.774400px;}
._8{width:6.998400px;}
._11{width:8.116800px;}
._12{width:9.393120px;}
._5{width:10.405440px;}
._3{width:11.592000px;}
._4{width:13.181760px;}
._f{width:14.970240px;}
._b{width:17.817120px;}
._18{width:19.015200px;}
._17{width:21.040800px;}
._10{width:22.634880px;}
._a{width:23.912640px;}
._e{width:24.966240px;}
._9{width:26.085600px;}
._d{width:27.196800px;}
._c{width:28.209600px;}
._16{width:29.656320px;}
._14{width:31.331520px;}
._15{width:32.457600px;}
._31{width:33.848640px;}
._35{width:35.010240px;}
._2c{width:36.829440px;}
._13{width:38.684160px;}
._1b{width:40.472640px;}
._3a{width:41.585760px;}
._3b{width:42.665280px;}
._40{width:44.049600px;}
._20{width:45.109440px;}
._21{width:46.368000px;}
._32{width:47.806080px;}
._34{width:49.547520px;}
._33{width:50.734080px;}
._1c{width:52.329600px;}
._1d{width:53.881920px;}
._3c{width:55.707840px;}
._1e{width:57.363840px;}
._1f{width:59.139360px;}
._26{width:60.145920px;}
._23{width:62.133120px;}
._22{width:64.306080px;}
._3d{width:65.643840px;}
._2e{width:67.781280px;}
._2d{width:69.214560px;}
._3e{width:70.217280px;}
._3f{width:71.472960px;}
._27{width:76.242240px;}
._28{width:77.256480px;}
._25{width:78.693600px;}
._24{width:80.308800px;}
._41{width:81.359520px;}
._29{width:84.588480px;}
._37{width:85.780800px;}
._39{width:92.537280px;}
._38{width:94.656960px;}
._2b{width:98.830080px;}
._2a{width:100.221120px;}
._36{width:105.652800px;}
._30{width:110.475360px;}
._2f{width:111.746880px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y7b{bottom:-0.720000px;}
.y78{bottom:-0.540000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y75{bottom:13.500000px;}
.y9e{bottom:13.530000px;}
.y77{bottom:13.680000px;}
.ya{bottom:20.880000px;}
.y73{bottom:27.720000px;}
.y9f{bottom:27.750000px;}
.y37{bottom:30.600000px;}
.y93{bottom:41.580000px;}
.y7d{bottom:41.940000px;}
.y74{bottom:41.970000px;}
.y8f{bottom:42.120000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y34{bottom:79.056000px;}
.y30{bottom:97.596000px;}
.yb2{bottom:104.616000px;}
.yb9{bottom:109.476000px;}
.y5e{bottom:109.836000px;}
.y2f{bottom:126.036000px;}
.yb1{bottom:133.056000px;}
.y71{bottom:138.096000px;}
.y5c{bottom:138.456000px;}
.y2e{bottom:154.470000px;}
.yb0{bottom:161.490000px;}
.y70{bottom:166.530000px;}
.y5b{bottom:166.890000px;}
.ya5{bottom:174.810000px;}
.y2d{bottom:182.910000px;}
.y95{bottom:184.710000px;}
.yaf{bottom:189.930000px;}
.y6f{bottom:194.970000px;}
.y5a{bottom:195.330000px;}
.ya4{bottom:203.250000px;}
.y94{bottom:204.510000px;}
.y2c{bottom:211.350000px;}
.yae{bottom:218.550000px;}
.y62{bottom:223.410000px;}
.y59{bottom:223.770000px;}
.ya3{bottom:231.330000px;}
.y2b{bottom:239.790000px;}
.yad{bottom:246.990000px;}
.y69{bottom:251.850000px;}
.y58{bottom:252.210000px;}
.ya2{bottom:256.170000px;}
.y92{bottom:267.510000px;}
.y2a{bottom:268.230000px;}
.yac{bottom:275.430000px;}
.y67{bottom:280.290000px;}
.y57{bottom:280.650000px;}
.y29{bottom:296.850000px;}
.yab{bottom:303.510000px;}
.yb6{bottom:308.730000px;}
.y56{bottom:309.090000px;}
.y28{bottom:325.335000px;}
.y91{bottom:330.375000px;}
.yaa{bottom:332.355000px;}
.y55{bottom:337.575000px;}
.y27{bottom:353.775000px;}
.ya9{bottom:360.795000px;}
.y54{bottom:366.015000px;}
.y26{bottom:382.215000px;}
.ya8{bottom:389.235000px;}
.y90{bottom:393.375000px;}
.y66{bottom:394.275000px;}
.y53{bottom:394.635000px;}
.y25{bottom:410.655000px;}
.ya7{bottom:417.675000px;}
.y61{bottom:422.715000px;}
.y52{bottom:423.075000px;}
.y24{bottom:439.095000px;}
.ya6{bottom:446.115000px;}
.y51{bottom:451.515000px;}
.y8e{bottom:456.195000px;}
.y23{bottom:467.535000px;}
.ya1{bottom:474.735000px;}
.y50{bottom:479.955000px;}
.ya0{bottom:494.535000px;}
.y22{bottom:495.975000px;}
.y6e{bottom:508.035000px;}
.y4f{bottom:508.395000px;}
.y21{bottom:524.415000px;}
.y8d{bottom:531.615000px;}
.y65{bottom:536.475000px;}
.y4e{bottom:536.835000px;}
.y20{bottom:553.035000px;}
.y9d{bottom:557.355000px;}
.y8c{bottom:560.055000px;}
.y4d{bottom:565.275000px;}
.y81{bottom:575.025000px;}
.y1f{bottom:581.505000px;}
.y8b{bottom:588.525000px;}
.y68{bottom:593.385000px;}
.y4c{bottom:593.745000px;}
.y80{bottom:603.465000px;}
.y1e{bottom:609.945000px;}
.y8a{bottom:616.965000px;}
.y9c{bottom:620.385000px;}
.y60{bottom:621.825000px;}
.y4b{bottom:622.185000px;}
.y7f{bottom:628.485000px;}
.y1d{bottom:638.025000px;}
.y31{bottom:638.385000px;}
.y89{bottom:645.405000px;}
.y5f{bottom:650.445000px;}
.y4a{bottom:650.805000px;}
.y1c{bottom:670.605000px;}
.y88{bottom:673.845000px;}
.y49{bottom:679.245000px;}
.y9b{bottom:683.205000px;}
.y1b{bottom:699.045000px;}
.y87{bottom:702.285000px;}
.yb3{bottom:707.325000px;}
.y48{bottom:707.685000px;}
.y1a{bottom:727.485000px;}
.y86{bottom:730.905000px;}
.yb5{bottom:735.765000px;}
.y47{bottom:736.125000px;}
.y9a{bottom:746.205000px;}
.y19{bottom:755.925000px;}
.y85{bottom:759.345000px;}
.yb4{bottom:764.205000px;}
.y46{bottom:764.565000px;}
.y18{bottom:784.365000px;}
.y84{bottom:787.785000px;}
.y45{bottom:793.005000px;}
.y17{bottom:812.805000px;}
.y83{bottom:815.865000px;}
.yb8{bottom:821.130000px;}
.y44{bottom:821.490000px;}
.y16{bottom:841.290000px;}
.y82{bottom:844.350000px;}
.y7e{bottom:844.710000px;}
.y6d{bottom:849.570000px;}
.y43{bottom:849.930000px;}
.y98{bottom:864.330000px;}
.y7c{bottom:864.510000px;}
.y15{bottom:869.910000px;}
.y42{bottom:878.370000px;}
.y97{bottom:892.770000px;}
.y14{bottom:898.350000px;}
.y64{bottom:906.630000px;}
.y41{bottom:906.990000px;}
.y96{bottom:917.610000px;}
.y13{bottom:926.790000px;}
.y7a{bottom:927.510000px;}
.y6c{bottom:935.070000px;}
.y40{bottom:935.430000px;}
.y12{bottom:961.170000px;}
.y79{bottom:961.890000px;}
.y3f{bottom:963.510000px;}
.y5d{bottom:963.870000px;}
.y11{bottom:983.310000px;}
.y6b{bottom:991.950000px;}
.y3e{bottom:992.310000px;}
.y76{bottom:996.270000px;}
.y10{bottom:1011.750000px;}
.y6a{bottom:1020.390000px;}
.y3d{bottom:1020.750000px;}
.y72{bottom:1030.830000px;}
.y4{bottom:1032.810000px;}
.yb7{bottom:1048.830000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y2{bottom:1072.620000px;}
.y99{bottom:1077.300000px;}
.y3b{bottom:1077.660000px;}
.y63{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h14{height:28.440000px;}
.h13{height:28.620000px;}
.h6{height:33.480000px;}
.hb{height:41.250937px;}
.h11{height:47.901094px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h15{height:56.880000px;}
.h12{height:56.916000px;}
.h16{height:57.060000px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h17{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.hf{height:111.043849px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.wf{width:51.660000px;}
.w16{width:52.020000px;}
.w1d{width:66.780000px;}
.w15{width:68.256000px;}
.wb{width:70.236000px;}
.we{width:71.100000px;}
.w1a{width:81.000000px;}
.wa{width:81.360000px;}
.wd{width:83.196000px;}
.w13{width:85.176000px;}
.w1c{width:90.900000px;}
.w1b{width:91.836000px;}
.w9{width:102.636000px;}
.w12{width:106.380000px;}
.w11{width:109.656000px;}
.wc{width:124.200000px;}
.w14{width:134.100000px;}
.w19{width:145.116000px;}
.w18{width:155.730000px;}
.w17{width:158.790000px;}
.w10{width:159.510000px;}
.w8{width:201.270000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:1.080000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x12{left:52.920000px;}
.x2{left:53.999986px;}
.xc{left:80.999986px;}
.xd{left:85.859986px;}
.xe{left:112.895986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x1c{left:216.210000px;}
.x14{left:257.970000px;}
.x1d{left:329.475000px;}
.x15{left:364.215000px;}
.x22{left:375.015000px;}
.x21{left:435.314986px;}
.x1b{left:436.574986px;}
.x1e{left:439.635000px;}
.x16{left:449.355000px;}
.x8{left:482.144986px;}
.x11{left:509.144986px;}
.xf{left:514.004986px;}
.x5{left:521.025000px;}
.x17{left:523.365000px;}
.x1f{left:528.405000px;}
.x10{left:541.004986px;}
.x23{left:608.505000px;}
.x18{left:651.345000px;}
.x20{left:666.285000px;}
.x24{left:703.950000px;}
.x19{left:738.150000px;}
.x25{left:798.450000px;}
.x1a{left:813.030000px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.406933pt;}
.ls12{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.244267pt;}
.ls11{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls10{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230400pt;}
.ls4{letter-spacing:0.232960pt;}
.ls8{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls16{letter-spacing:6.031360pt;}
.ls15{letter-spacing:35.471360pt;}
.lsf{letter-spacing:49.232640pt;}
.lse{letter-spacing:56.912640pt;}
.ls0{letter-spacing:184.370347pt;}
.wsb{word-spacing:-53.120000pt;}
.wsd{word-spacing:-33.561600pt;}
.ws9{word-spacing:-25.522133pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.855467pt;}
.wse{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.486933pt;}
.wsf{word-spacing:-14.313067pt;}
.ws4{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws8{word-spacing:-12.390400pt;}
.ws7{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-1.872640pt;}
._0{margin-left:-0.928000pt;}
._1{width:1.418667pt;}
._19{width:2.391467pt;}
._1a{width:3.768320pt;}
._7{width:5.132800pt;}
._8{width:6.220800pt;}
._11{width:7.214933pt;}
._12{width:8.349440pt;}
._5{width:9.249280pt;}
._3{width:10.304000pt;}
._4{width:11.717120pt;}
._f{width:13.306880pt;}
._b{width:15.837440pt;}
._18{width:16.902400pt;}
._17{width:18.702933pt;}
._10{width:20.119893pt;}
._a{width:21.255680pt;}
._e{width:22.192213pt;}
._9{width:23.187200pt;}
._d{width:24.174933pt;}
._c{width:25.075200pt;}
._16{width:26.361173pt;}
._14{width:27.850240pt;}
._15{width:28.851200pt;}
._31{width:30.087680pt;}
._35{width:31.120213pt;}
._2c{width:32.737280pt;}
._13{width:34.385920pt;}
._1b{width:35.975680pt;}
._3a{width:36.965120pt;}
._3b{width:37.924693pt;}
._40{width:39.155200pt;}
._20{width:40.097280pt;}
._21{width:41.216000pt;}
._32{width:42.494293pt;}
._34{width:44.042240pt;}
._33{width:45.096960pt;}
._1c{width:46.515200pt;}
._1d{width:47.895040pt;}
._3c{width:49.518080pt;}
._1e{width:50.990080pt;}
._1f{width:52.568320pt;}
._26{width:53.463040pt;}
._23{width:55.229440pt;}
._22{width:57.160960pt;}
._3d{width:58.350080pt;}
._2e{width:60.250027pt;}
._2d{width:61.524053pt;}
._3e{width:62.415360pt;}
._3f{width:63.531520pt;}
._27{width:67.770880pt;}
._28{width:68.672427pt;}
._25{width:69.949867pt;}
._24{width:71.385600pt;}
._41{width:72.319573pt;}
._29{width:75.189760pt;}
._37{width:76.249600pt;}
._39{width:82.255360pt;}
._38{width:84.139520pt;}
._2b{width:87.848960pt;}
._2a{width:89.085440pt;}
._36{width:93.913600pt;}
._30{width:98.200320pt;}
._2f{width:99.330560pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y7b{bottom:-0.640000pt;}
.y78{bottom:-0.480000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y75{bottom:12.000000pt;}
.y9e{bottom:12.026667pt;}
.y77{bottom:12.160000pt;}
.ya{bottom:18.560000pt;}
.y73{bottom:24.640000pt;}
.y9f{bottom:24.666667pt;}
.y37{bottom:27.200000pt;}
.y93{bottom:36.960000pt;}
.y7d{bottom:37.280000pt;}
.y74{bottom:37.306667pt;}
.y8f{bottom:37.440000pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y34{bottom:70.272000pt;}
.y30{bottom:86.752000pt;}
.yb2{bottom:92.992000pt;}
.yb9{bottom:97.312000pt;}
.y5e{bottom:97.632000pt;}
.y2f{bottom:112.032000pt;}
.yb1{bottom:118.272000pt;}
.y71{bottom:122.752000pt;}
.y5c{bottom:123.072000pt;}
.y2e{bottom:137.306667pt;}
.yb0{bottom:143.546667pt;}
.y70{bottom:148.026667pt;}
.y5b{bottom:148.346667pt;}
.ya5{bottom:155.386667pt;}
.y2d{bottom:162.586667pt;}
.y95{bottom:164.186667pt;}
.yaf{bottom:168.826667pt;}
.y6f{bottom:173.306667pt;}
.y5a{bottom:173.626667pt;}
.ya4{bottom:180.666667pt;}
.y94{bottom:181.786667pt;}
.y2c{bottom:187.866667pt;}
.yae{bottom:194.266667pt;}
.y62{bottom:198.586667pt;}
.y59{bottom:198.906667pt;}
.ya3{bottom:205.626667pt;}
.y2b{bottom:213.146667pt;}
.yad{bottom:219.546667pt;}
.y69{bottom:223.866667pt;}
.y58{bottom:224.186667pt;}
.ya2{bottom:227.706667pt;}
.y92{bottom:237.786667pt;}
.y2a{bottom:238.426667pt;}
.yac{bottom:244.826667pt;}
.y67{bottom:249.146667pt;}
.y57{bottom:249.466667pt;}
.y29{bottom:263.866667pt;}
.yab{bottom:269.786667pt;}
.yb6{bottom:274.426667pt;}
.y56{bottom:274.746667pt;}
.y28{bottom:289.186667pt;}
.y91{bottom:293.666667pt;}
.yaa{bottom:295.426667pt;}
.y55{bottom:300.066667pt;}
.y27{bottom:314.466667pt;}
.ya9{bottom:320.706667pt;}
.y54{bottom:325.346667pt;}
.y26{bottom:339.746667pt;}
.ya8{bottom:345.986667pt;}
.y90{bottom:349.666667pt;}
.y66{bottom:350.466667pt;}
.y53{bottom:350.786667pt;}
.y25{bottom:365.026667pt;}
.ya7{bottom:371.266667pt;}
.y61{bottom:375.746667pt;}
.y52{bottom:376.066667pt;}
.y24{bottom:390.306667pt;}
.ya6{bottom:396.546667pt;}
.y51{bottom:401.346667pt;}
.y8e{bottom:405.506667pt;}
.y23{bottom:415.586667pt;}
.ya1{bottom:421.986667pt;}
.y50{bottom:426.626667pt;}
.ya0{bottom:439.586667pt;}
.y22{bottom:440.866667pt;}
.y6e{bottom:451.586667pt;}
.y4f{bottom:451.906667pt;}
.y21{bottom:466.146667pt;}
.y8d{bottom:472.546667pt;}
.y65{bottom:476.866667pt;}
.y4e{bottom:477.186667pt;}
.y20{bottom:491.586667pt;}
.y9d{bottom:495.426667pt;}
.y8c{bottom:497.826667pt;}
.y4d{bottom:502.466667pt;}
.y81{bottom:511.133333pt;}
.y1f{bottom:516.893333pt;}
.y8b{bottom:523.133333pt;}
.y68{bottom:527.453333pt;}
.y4c{bottom:527.773333pt;}
.y80{bottom:536.413333pt;}
.y1e{bottom:542.173333pt;}
.y8a{bottom:548.413333pt;}
.y9c{bottom:551.453333pt;}
.y60{bottom:552.733333pt;}
.y4b{bottom:553.053333pt;}
.y7f{bottom:558.653333pt;}
.y1d{bottom:567.133333pt;}
.y31{bottom:567.453333pt;}
.y89{bottom:573.693333pt;}
.y5f{bottom:578.173333pt;}
.y4a{bottom:578.493333pt;}
.y1c{bottom:596.093333pt;}
.y88{bottom:598.973333pt;}
.y49{bottom:603.773333pt;}
.y9b{bottom:607.293333pt;}
.y1b{bottom:621.373333pt;}
.y87{bottom:624.253333pt;}
.yb3{bottom:628.733333pt;}
.y48{bottom:629.053333pt;}
.y1a{bottom:646.653333pt;}
.y86{bottom:649.693333pt;}
.yb5{bottom:654.013333pt;}
.y47{bottom:654.333333pt;}
.y9a{bottom:663.293333pt;}
.y19{bottom:671.933333pt;}
.y85{bottom:674.973333pt;}
.yb4{bottom:679.293333pt;}
.y46{bottom:679.613333pt;}
.y18{bottom:697.213333pt;}
.y84{bottom:700.253333pt;}
.y45{bottom:704.893333pt;}
.y17{bottom:722.493333pt;}
.y83{bottom:725.213333pt;}
.yb8{bottom:729.893333pt;}
.y44{bottom:730.213333pt;}
.y16{bottom:747.813333pt;}
.y82{bottom:750.533333pt;}
.y7e{bottom:750.853333pt;}
.y6d{bottom:755.173333pt;}
.y43{bottom:755.493333pt;}
.y98{bottom:768.293333pt;}
.y7c{bottom:768.453333pt;}
.y15{bottom:773.253333pt;}
.y42{bottom:780.773333pt;}
.y97{bottom:793.573333pt;}
.y14{bottom:798.533333pt;}
.y64{bottom:805.893333pt;}
.y41{bottom:806.213333pt;}
.y96{bottom:815.653333pt;}
.y13{bottom:823.813333pt;}
.y7a{bottom:824.453333pt;}
.y6c{bottom:831.173333pt;}
.y40{bottom:831.493333pt;}
.y12{bottom:854.373333pt;}
.y79{bottom:855.013333pt;}
.y3f{bottom:856.453333pt;}
.y5d{bottom:856.773333pt;}
.y11{bottom:874.053333pt;}
.y6b{bottom:881.733333pt;}
.y3e{bottom:882.053333pt;}
.y76{bottom:885.573333pt;}
.y10{bottom:899.333333pt;}
.y6a{bottom:907.013333pt;}
.y3d{bottom:907.333333pt;}
.y72{bottom:916.293333pt;}
.y4{bottom:918.053333pt;}
.yb7{bottom:932.293333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y2{bottom:953.440000pt;}
.y99{bottom:957.600000pt;}
.y3b{bottom:957.920000pt;}
.y63{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h14{height:25.280000pt;}
.h13{height:25.440000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h11{height:42.578750pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h15{height:50.560000pt;}
.h12{height:50.592000pt;}
.h16{height:50.720000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h17{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.hf{height:98.705643pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.wf{width:45.920000pt;}
.w16{width:46.240000pt;}
.w1d{width:59.360000pt;}
.w15{width:60.672000pt;}
.wb{width:62.432000pt;}
.we{width:63.200000pt;}
.w1a{width:72.000000pt;}
.wa{width:72.320000pt;}
.wd{width:73.952000pt;}
.w13{width:75.712000pt;}
.w1c{width:80.800000pt;}
.w1b{width:81.632000pt;}
.w9{width:91.232000pt;}
.w12{width:94.560000pt;}
.w11{width:97.472000pt;}
.wc{width:110.400000pt;}
.w14{width:119.200000pt;}
.w19{width:128.992000pt;}
.w18{width:138.426667pt;}
.w17{width:141.146667pt;}
.w10{width:141.786667pt;}
.w8{width:178.906667pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:0.960000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x12{left:47.040000pt;}
.x2{left:47.999988pt;}
.xc{left:71.999988pt;}
.xd{left:76.319988pt;}
.xe{left:100.351988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x1c{left:192.186667pt;}
.x14{left:229.306667pt;}
.x1d{left:292.866667pt;}
.x15{left:323.746667pt;}
.x22{left:333.346667pt;}
.x21{left:386.946655pt;}
.x1b{left:388.066655pt;}
.x1e{left:390.786667pt;}
.x16{left:399.426667pt;}
.x8{left:428.573321pt;}
.x11{left:452.573321pt;}
.xf{left:456.893321pt;}
.x5{left:463.133333pt;}
.x17{left:465.213333pt;}
.x1f{left:469.693333pt;}
.x10{left:480.893321pt;}
.x23{left:540.893333pt;}
.x18{left:578.973333pt;}
.x20{left:592.253333pt;}
.x24{left:625.733333pt;}
.x19{left:656.133333pt;}
.x25{left:709.733333pt;}
.x1a{left:722.693333pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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