
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_00424216ccf8ff314273a58c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.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_0fb1daae9c396a2fd8bab035.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_ec10395e4ee5d572ca6fc360.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c9869f8ae9a643e3a6470de5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c2f1fc950e09c47b96e81a70.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0f9a4b152bd19c143bab333a.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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7d409d867f13e801f68f6085.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1a68c578e8028b85dec42ed4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b5227a095aa81422d9d4805a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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;}
.lsa{letter-spacing:-0.690000px;}
.lse{letter-spacing:-0.378600px;}
.lsd{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.341400px;}
.ls7{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.037440px;}
.lsb{letter-spacing:0.252720px;}
.lsf{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.360000px;}
.ls10{letter-spacing:21.221280px;}
.lsc{letter-spacing:35.100000px;}
.ls9{letter-spacing:64.026720px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws9{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.401400px;}
.wsa{word-spacing:-21.312720px;}
.ws5{word-spacing:-21.097440px;}
.ws6{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.370000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-0.322440px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._36{margin-left:-9.701280px;}
._3d{margin-left:-6.149520px;}
._1d{margin-left:-2.327520px;}
._1{margin-left:-1.126080px;}
._3{width:1.209120px;}
._4{width:2.831280px;}
._7{width:3.907920px;}
._8{width:5.096880px;}
._12{width:6.396960px;}
._a{width:8.118000px;}
._17{width:9.354000px;}
._1e{width:10.420080px;}
._26{width:11.793600px;}
._c{width:12.804480px;}
._15{width:14.657760px;}
._6{width:16.089840px;}
._5{width:17.552880px;}
._1c{width:18.755760px;}
._18{width:19.889280px;}
._2b{width:22.797840px;}
._20{width:24.040320px;}
._1f{width:25.272000px;}
._25{width:26.451360px;}
._2a{width:27.493200px;}
._2e{width:28.744800px;}
._16{width:30.242160px;}
._b{width:31.536720px;}
._9{width:32.685120px;}
._19{width:33.981840px;}
._d{width:35.633520px;}
._29{width:36.645600px;}
._24{width:38.636160px;}
._11{width:40.687920px;}
._1a{width:42.709680px;}
._1b{width:43.835760px;}
._22{width:45.198240px;}
._13{width:46.584720px;}
._14{width:48.248400px;}
._21{width:50.396400px;}
._28{width:52.795200px;}
._27{width:54.189600px;}
._23{width:55.453200px;}
._e{width:56.471760px;}
._39{width:57.566880px;}
._38{width:63.011520px;}
._46{width:67.644720px;}
._f{width:73.878480px;}
._10{width:75.311760px;}
._40{width:79.522560px;}
._34{width:85.876560px;}
._35{width:87.350640px;}
._2d{width:90.681600px;}
._2c{width:91.821600px;}
._3c{width:103.952160px;}
._41{width:108.447840px;}
._30{width:112.460400px;}
._32{width:136.913280px;}
._31{width:138.184560px;}
._3f{width:141.048720px;}
._43{width:146.271600px;}
._44{width:155.001600px;}
._42{width:156.907920px;}
._37{width:164.099520px;}
._3b{width:191.730240px;}
._45{width:215.822880px;}
._3e{width:254.236320px;}
._3a{width:374.615280px;}
._2f{width:580.283760px;}
._2{width:638.842080px;}
._33{width:681.922800px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y5e{bottom:31.680000px;}
.y6d{bottom:32.034000px;}
.y6f{bottom:32.040000px;}
.y77{bottom:32.220000px;}
.y81{bottom:32.256000px;}
.y66{bottom:32.265000px;}
.y6c{bottom:68.214000px;}
.y73{bottom:68.400000px;}
.y7d{bottom:68.430000px;}
.y65{bottom:68.445000px;}
.y6e{bottom:78.480000px;}
.y24{bottom:82.440000px;}
.y7f{bottom:95.220000px;}
.y6b{bottom:104.574000px;}
.y72{bottom:104.580000px;}
.y7c{bottom:104.610000px;}
.y76{bottom:104.625000px;}
.y64{bottom:104.805000px;}
.y31{bottom:112.860000px;}
.y53{bottom:113.940000px;}
.y23{bottom:118.620000px;}
.y67{bottom:130.536000px;}
.y82{bottom:133.776000px;}
.y6a{bottom:140.754000px;}
.y71{bottom:140.790000px;}
.y75{bottom:140.805000px;}
.y7b{bottom:140.970000px;}
.y63{bottom:140.985000px;}
.y30{bottom:149.256000px;}
.y22{bottom:155.010000px;}
.y52{bottom:171.030000px;}
.y69{bottom:176.934000px;}
.y7a{bottom:177.150000px;}
.y62{bottom:177.165000px;}
.y2f{bottom:185.430000px;}
.y21{bottom:191.190000px;}
.y51{bottom:207.210000px;}
.y68{bottom:213.114000px;}
.y79{bottom:213.330000px;}
.y61{bottom:213.345000px;}
.y2e{bottom:221.790000px;}
.y20{bottom:227.370000px;}
.y80{bottom:249.510000px;}
.y60{bottom:249.525000px;}
.y1f{bottom:263.550000px;}
.y87{bottom:267.150000px;}
.y50{bottom:270.570000px;}
.y2d{bottom:278.850000px;}
.y43{bottom:291.450000px;}
.y1e{bottom:299.910000px;}
.y86{bottom:303.330000px;}
.y4f{bottom:306.750000px;}
.y2c{bottom:315.030000px;}
.y42{bottom:327.810000px;}
.y1d{bottom:336.090000px;}
.y85{bottom:339.690000px;}
.y4e{bottom:343.110000px;}
.y2b{bottom:351.390000px;}
.y5f{bottom:363.450000px;}
.y41{bottom:363.990000px;}
.y7e{bottom:364.530000px;}
.y1c{bottom:372.270000px;}
.y84{bottom:396.795000px;}
.y40{bottom:400.215000px;}
.y1b{bottom:408.495000px;}
.y4d{bottom:436.395000px;}
.y3f{bottom:436.575000px;}
.y1a{bottom:444.855000px;}
.y83{bottom:460.155000px;}
.y4c{bottom:472.755000px;}
.y19{bottom:481.035000px;}
.y3e{bottom:493.635000px;}
.y18{bottom:517.215000px;}
.y3d{bottom:529.815000px;}
.y4b{bottom:535.935000px;}
.y17{bottom:553.395000px;}
.y3c{bottom:566.175000px;}
.y16{bottom:589.755000px;}
.y4a{bottom:593.175000px;}
.y78{bottom:597.675000px;}
.y3b{bottom:602.355000px;}
.y15{bottom:625.935000px;}
.y49{bottom:629.355000px;}
.y5d{bottom:632.985000px;}
.y14{bottom:662.145000px;}
.y3a{bottom:665.565000px;}
.y48{bottom:665.745000px;}
.y13{bottom:698.325000px;}
.y39{bottom:701.925000px;}
.y5c{bottom:702.105000px;}
.y47{bottom:722.805000px;}
.y12{bottom:734.505000px;}
.y5b{bottom:738.285000px;}
.y38{bottom:758.985000px;}
.y11{bottom:770.865000px;}
.y37{bottom:795.165000px;}
.y10{bottom:807.045000px;}
.y5a{bottom:810.465000px;}
.y74{bottom:830.805000px;}
.y36{bottom:831.525000px;}
.yf{bottom:843.225000px;}
.y59{bottom:846.825000px;}
.y46{bottom:858.525000px;}
.y35{bottom:867.885000px;}
.ye{bottom:879.405000px;}
.y45{bottom:894.750000px;}
.y58{bottom:903.930000px;}
.yd{bottom:915.810000px;}
.y34{bottom:924.990000px;}
.y44{bottom:931.110000px;}
.y57{bottom:940.110000px;}
.yc{bottom:951.990000px;}
.y33{bottom:961.170000px;}
.y56{bottom:976.470000px;}
.yb{bottom:987.810000px;}
.y2a{bottom:988.170000px;}
.y55{bottom:1012.830000px;}
.ya{bottom:1023.990000px;}
.y29{bottom:1024.350000px;}
.y70{bottom:1027.770000px;}
.y9{bottom:1060.350000px;}
.y28{bottom:1060.710000px;}
.y54{bottom:1069.890000px;}
.y8{bottom:1096.530000px;}
.y27{bottom:1096.890000px;}
.y7{bottom:1132.710000px;}
.y26{bottom:1133.070000px;}
.y6{bottom:1168.920000px;}
.y25{bottom:1169.280000px;}
.y32{bottom:1169.460000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.h8{height:51.120000px;}
.hb{height:51.156000px;}
.h11{height:59.601445px;}
.h7{height:60.917695px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.h10{height:86.585445px;}
.hc{height:159.870000px;}
.hd{height:196.230000px;}
.ha{height:232.200000px;}
.he{height:232.410000px;}
.hf{height:268.590000px;}
.h9{height:268.635000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w3{width:177.150000px;}
.w6{width:177.285000px;}
.w5{width:177.300000px;}
.w4{width:177.330000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.776000px;}
.x12{left:16.410000px;}
.x4{left:20.550000px;}
.xd{left:88.020000px;}
.x1{left:95.796000px;}
.x5{left:107.856000px;}
.x2{left:111.636000px;}
.xc{left:122.796000px;}
.xb{left:148.896000px;}
.x6{left:202.170000px;}
.xf{left:266.070000px;}
.x9{left:313.995000px;}
.x7{left:325.695000px;}
.x13{left:413.535000px;}
.x3{left:438.915000px;}
.x10{left:444.135000px;}
.xa{left:469.905000px;}
.x8{left:573.945000px;}
.x11{left:622.185000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.613333pt;}
.lse{letter-spacing:-0.336533pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.303467pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.033280pt;}
.lsb{letter-spacing:0.224640pt;}
.lsf{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls10{letter-spacing:18.863360pt;}
.lsc{letter-spacing:31.200000pt;}
.ls9{letter-spacing:56.912640pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws8{word-spacing:-53.120000pt;}
.ws9{word-spacing:-19.040000pt;}
.ws3{word-spacing:-19.023467pt;}
.wsa{word-spacing:-18.944640pt;}
.ws5{word-spacing:-18.753280pt;}
.ws6{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.106667pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-0.286613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._36{margin-left:-8.623360pt;}
._3d{margin-left:-5.466240pt;}
._1d{margin-left:-2.068907pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.074773pt;}
._4{width:2.516693pt;}
._7{width:3.473707pt;}
._8{width:4.530560pt;}
._12{width:5.686187pt;}
._a{width:7.216000pt;}
._17{width:8.314667pt;}
._1e{width:9.262293pt;}
._26{width:10.483200pt;}
._c{width:11.381760pt;}
._15{width:13.029120pt;}
._6{width:14.302080pt;}
._5{width:15.602560pt;}
._1c{width:16.671787pt;}
._18{width:17.679360pt;}
._2b{width:20.264747pt;}
._20{width:21.369173pt;}
._1f{width:22.464000pt;}
._25{width:23.512320pt;}
._2a{width:24.438400pt;}
._2e{width:25.550933pt;}
._16{width:26.881920pt;}
._b{width:28.032640pt;}
._9{width:29.053440pt;}
._19{width:30.206080pt;}
._d{width:31.674240pt;}
._29{width:32.573867pt;}
._24{width:34.343253pt;}
._11{width:36.167040pt;}
._1a{width:37.964160pt;}
._1b{width:38.965120pt;}
._22{width:40.176213pt;}
._13{width:41.408640pt;}
._14{width:42.887467pt;}
._21{width:44.796800pt;}
._28{width:46.929067pt;}
._27{width:48.168533pt;}
._23{width:49.291733pt;}
._e{width:50.197120pt;}
._39{width:51.170560pt;}
._38{width:56.010240pt;}
._46{width:60.128640pt;}
._f{width:65.669760pt;}
._10{width:66.943787pt;}
._40{width:70.686720pt;}
._34{width:76.334720pt;}
._35{width:77.645013pt;}
._2d{width:80.605867pt;}
._2c{width:81.619200pt;}
._3c{width:92.401920pt;}
._41{width:96.398080pt;}
._30{width:99.964800pt;}
._32{width:121.700693pt;}
._31{width:122.830720pt;}
._3f{width:125.376640pt;}
._43{width:130.019200pt;}
._44{width:137.779200pt;}
._42{width:139.473707pt;}
._37{width:145.866240pt;}
._3b{width:170.426880pt;}
._45{width:191.842560pt;}
._3e{width:225.987840pt;}
._3a{width:332.991360pt;}
._2f{width:515.807787pt;}
._2{width:567.859627pt;}
._33{width:606.153600pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y5e{bottom:28.160000pt;}
.y6d{bottom:28.474667pt;}
.y6f{bottom:28.480000pt;}
.y77{bottom:28.640000pt;}
.y81{bottom:28.672000pt;}
.y66{bottom:28.680000pt;}
.y6c{bottom:60.634667pt;}
.y73{bottom:60.800000pt;}
.y7d{bottom:60.826667pt;}
.y65{bottom:60.840000pt;}
.y6e{bottom:69.760000pt;}
.y24{bottom:73.280000pt;}
.y7f{bottom:84.640000pt;}
.y6b{bottom:92.954667pt;}
.y72{bottom:92.960000pt;}
.y7c{bottom:92.986667pt;}
.y76{bottom:93.000000pt;}
.y64{bottom:93.160000pt;}
.y31{bottom:100.320000pt;}
.y53{bottom:101.280000pt;}
.y23{bottom:105.440000pt;}
.y67{bottom:116.032000pt;}
.y82{bottom:118.912000pt;}
.y6a{bottom:125.114667pt;}
.y71{bottom:125.146667pt;}
.y75{bottom:125.160000pt;}
.y7b{bottom:125.306667pt;}
.y63{bottom:125.320000pt;}
.y30{bottom:132.672000pt;}
.y22{bottom:137.786667pt;}
.y52{bottom:152.026667pt;}
.y69{bottom:157.274667pt;}
.y7a{bottom:157.466667pt;}
.y62{bottom:157.480000pt;}
.y2f{bottom:164.826667pt;}
.y21{bottom:169.946667pt;}
.y51{bottom:184.186667pt;}
.y68{bottom:189.434667pt;}
.y79{bottom:189.626667pt;}
.y61{bottom:189.640000pt;}
.y2e{bottom:197.146667pt;}
.y20{bottom:202.106667pt;}
.y80{bottom:221.786667pt;}
.y60{bottom:221.800000pt;}
.y1f{bottom:234.266667pt;}
.y87{bottom:237.466667pt;}
.y50{bottom:240.506667pt;}
.y2d{bottom:247.866667pt;}
.y43{bottom:259.066667pt;}
.y1e{bottom:266.586667pt;}
.y86{bottom:269.626667pt;}
.y4f{bottom:272.666667pt;}
.y2c{bottom:280.026667pt;}
.y42{bottom:291.386667pt;}
.y1d{bottom:298.746667pt;}
.y85{bottom:301.946667pt;}
.y4e{bottom:304.986667pt;}
.y2b{bottom:312.346667pt;}
.y5f{bottom:323.066667pt;}
.y41{bottom:323.546667pt;}
.y7e{bottom:324.026667pt;}
.y1c{bottom:330.906667pt;}
.y84{bottom:352.706667pt;}
.y40{bottom:355.746667pt;}
.y1b{bottom:363.106667pt;}
.y4d{bottom:387.906667pt;}
.y3f{bottom:388.066667pt;}
.y1a{bottom:395.426667pt;}
.y83{bottom:409.026667pt;}
.y4c{bottom:420.226667pt;}
.y19{bottom:427.586667pt;}
.y3e{bottom:438.786667pt;}
.y18{bottom:459.746667pt;}
.y3d{bottom:470.946667pt;}
.y4b{bottom:476.386667pt;}
.y17{bottom:491.906667pt;}
.y3c{bottom:503.266667pt;}
.y16{bottom:524.226667pt;}
.y4a{bottom:527.266667pt;}
.y78{bottom:531.266667pt;}
.y3b{bottom:535.426667pt;}
.y15{bottom:556.386667pt;}
.y49{bottom:559.426667pt;}
.y5d{bottom:562.653333pt;}
.y14{bottom:588.573333pt;}
.y3a{bottom:591.613333pt;}
.y48{bottom:591.773333pt;}
.y13{bottom:620.733333pt;}
.y39{bottom:623.933333pt;}
.y5c{bottom:624.093333pt;}
.y47{bottom:642.493333pt;}
.y12{bottom:652.893333pt;}
.y5b{bottom:656.253333pt;}
.y38{bottom:674.653333pt;}
.y11{bottom:685.213333pt;}
.y37{bottom:706.813333pt;}
.y10{bottom:717.373333pt;}
.y5a{bottom:720.413333pt;}
.y74{bottom:738.493333pt;}
.y36{bottom:739.133333pt;}
.yf{bottom:749.533333pt;}
.y59{bottom:752.733333pt;}
.y46{bottom:763.133333pt;}
.y35{bottom:771.453333pt;}
.ye{bottom:781.693333pt;}
.y45{bottom:795.333333pt;}
.y58{bottom:803.493333pt;}
.yd{bottom:814.053333pt;}
.y34{bottom:822.213333pt;}
.y44{bottom:827.653333pt;}
.y57{bottom:835.653333pt;}
.yc{bottom:846.213333pt;}
.y33{bottom:854.373333pt;}
.y56{bottom:867.973333pt;}
.yb{bottom:878.053333pt;}
.y2a{bottom:878.373333pt;}
.y55{bottom:900.293333pt;}
.ya{bottom:910.213333pt;}
.y29{bottom:910.533333pt;}
.y70{bottom:913.573333pt;}
.y9{bottom:942.533333pt;}
.y28{bottom:942.853333pt;}
.y54{bottom:951.013333pt;}
.y8{bottom:974.693333pt;}
.y27{bottom:975.013333pt;}
.y7{bottom:1006.853333pt;}
.y26{bottom:1007.173333pt;}
.y6{bottom:1039.040000pt;}
.y25{bottom:1039.360000pt;}
.y32{bottom:1039.520000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.h8{height:45.440000pt;}
.hb{height:45.472000pt;}
.h11{height:52.979062pt;}
.h7{height:54.149062pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.h10{height:76.964840pt;}
.hc{height:142.106667pt;}
.hd{height:174.426667pt;}
.ha{height:206.400000pt;}
.he{height:206.586667pt;}
.hf{height:238.746667pt;}
.h9{height:238.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w3{width:157.466667pt;}
.w6{width:157.586667pt;}
.w5{width:157.600000pt;}
.w4{width:157.626667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.912000pt;}
.x12{left:14.586667pt;}
.x4{left:18.266667pt;}
.xd{left:78.240000pt;}
.x1{left:85.152000pt;}
.x5{left:95.872000pt;}
.x2{left:99.232000pt;}
.xc{left:109.152000pt;}
.xb{left:132.352000pt;}
.x6{left:179.706667pt;}
.xf{left:236.506667pt;}
.x9{left:279.106667pt;}
.x7{left:289.506667pt;}
.x13{left:367.586667pt;}
.x3{left:390.146667pt;}
.x10{left:394.786667pt;}
.xa{left:417.693333pt;}
.x8{left:510.173333pt;}
.x11{left:553.053333pt;}
}




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