
    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_fb996ac7fe0f884088d38bde.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_67d7eb0770e230ae47a06520.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_99bc14c5b55a1cc32bdabe64.woff')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_e9ddf472169c22dc6ef061c3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2940e2a7e6724878508fe1f3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_97fc7997df73e5c09a1632d5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f8462506cd86511be220c285.woff')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_84dcc65d1f040971612cdaff.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_44cbc89e6f2621225fafd366.woff')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;}
.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;}
.ls23{letter-spacing:-0.900000px;}
.ls20{letter-spacing:-0.756000px;}
.ls8{letter-spacing:-0.369600px;}
.ls3{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.341400px;}
.lsb{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.139200px;}
.ls7{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.004080px;}
.ls4{letter-spacing:0.028080px;}
.ls1a{letter-spacing:0.129600px;}
.ls0{letter-spacing:0.148080px;}
.ls16{letter-spacing:0.252720px;}
.lsd{letter-spacing:0.291600px;}
.lsc{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.540000px;}
.lse{letter-spacing:1.260000px;}
.ls1e{letter-spacing:2.700000px;}
.ls17{letter-spacing:4.140000px;}
.ls22{letter-spacing:4.860000px;}
.ls18{letter-spacing:9.180000px;}
.lsa{letter-spacing:14.940000px;}
.ls14{letter-spacing:22.140000px;}
.ls15{letter-spacing:22.860000px;}
.ls11{letter-spacing:23.580000px;}
.ls12{letter-spacing:28.620000px;}
.ls13{letter-spacing:28.740000px;}
.lsf{letter-spacing:37.260000px;}
.ls9{letter-spacing:37.980000px;}
.ls1c{letter-spacing:39.420000px;}
.ls19{letter-spacing:41.580000px;}
.ls1f{letter-spacing:52.380000px;}
.ls1d{letter-spacing:83.520000px;}
.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;}
}
.ws1{word-spacing:-24.300000px;}
.ws7{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.351600px;}
.wsa{word-spacing:-21.312720px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.031920px;}
.ws9{word-spacing:-20.920800px;}
.wsc{word-spacing:-20.718600px;}
.ws3{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.690400px;}
.wsb{word-spacing:-20.304000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:0.000000px;}
._32{margin-left:-27.647280px;}
._34{margin-left:-19.818720px;}
._17{margin-left:-6.191520px;}
._18{margin-left:-5.099520px;}
._f{margin-left:-4.043520px;}
._6{margin-left:-2.270640px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._2{width:2.611440px;}
._5{width:4.356000px;}
._33{width:5.543280px;}
._8{width:6.907680px;}
._9{width:8.676720px;}
._3{width:10.614240px;}
._19{width:11.899680px;}
._2c{width:14.562720px;}
._2b{width:15.732240px;}
._10{width:17.606160px;}
._1b{width:19.186080px;}
._d{width:22.236960px;}
._1d{width:23.581200px;}
._7{width:24.598080px;}
._1a{width:25.728720px;}
._e{width:26.936160px;}
._28{width:28.190640px;}
._14{width:30.101760px;}
._13{width:31.120080px;}
._1e{width:32.769360px;}
._1f{width:34.032960px;}
._2f{width:36.307440px;}
._29{width:37.626480px;}
._24{width:38.729760px;}
._15{width:40.266720px;}
._16{width:41.425440px;}
._3a{width:42.810720px;}
._11{width:43.868400px;}
._27{width:45.434880px;}
._12{width:46.478160px;}
._4{width:49.596720px;}
._2d{width:51.386400px;}
._c{width:52.650000px;}
._1c{width:54.250560px;}
._38{width:55.682640px;}
._22{width:56.777760px;}
._23{width:57.831600px;}
._3b{width:59.115840px;}
._3c{width:60.557520px;}
._37{width:62.843040px;}
._25{width:68.487120px;}
._26{width:69.750720px;}
._2e{width:72.951840px;}
._2a{width:74.131200px;}
._21{width:76.549920px;}
._20{width:77.560560px;}
._31{width:80.845920px;}
._30{width:82.056000px;}
._39{width:83.215440px;}
._35{width:84.829680px;}
._36{width:86.089440px;}
._3d{width:99.571680px;}
._3e{width:100.646160px;}
._b{width:107.892480px;}
._a{width:109.006560px;}
._3f{width:113.787600px;}
._40{width:441.838800px;}
.fc4{color:rgb(79,129,189);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.y3{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.ya{bottom:17.280000px;}
.y9{bottom:19.440000px;}
.y4{bottom:27.900000px;}
.y2{bottom:36.720000px;}
.y8{bottom:44.640000px;}
.y6e{bottom:109.476000px;}
.y91{bottom:111.636000px;}
.y2b{bottom:114.336000px;}
.y93{bottom:121.536000px;}
.y6d{bottom:137.376000px;}
.y90{bottom:139.356000px;}
.y2a{bottom:142.056000px;}
.y4f{bottom:143.316000px;}
.y92{bottom:149.436000px;}
.y6c{bottom:165.090000px;}
.y8f{bottom:167.250000px;}
.y29{bottom:169.950000px;}
.y4e{bottom:171.210000px;}
.y49{bottom:177.150000px;}
.y6b{bottom:192.810000px;}
.y8e{bottom:194.970000px;}
.y28{bottom:197.670000px;}
.y4d{bottom:198.750000px;}
.y48{bottom:204.870000px;}
.y6a{bottom:220.710000px;}
.y8d{bottom:222.690000px;}
.y27{bottom:225.390000px;}
.y4c{bottom:228.090000px;}
.y47{bottom:232.770000px;}
.y69{bottom:248.430000px;}
.y8c{bottom:250.590000px;}
.y26{bottom:253.290000px;}
.y4b{bottom:257.250000px;}
.y46{bottom:260.490000px;}
.y68{bottom:276.150000px;}
.y8b{bottom:278.310000px;}
.y25{bottom:281.010000px;}
.y4a{bottom:286.590000px;}
.y45{bottom:288.210000px;}
.y67{bottom:303.870000px;}
.y8a{bottom:306.030000px;}
.y24{bottom:308.730000px;}
.y44{bottom:315.930000px;}
.y89{bottom:330.150000px;}
.y66{bottom:331.770000px;}
.y23{bottom:336.495000px;}
.y43{bottom:343.875000px;}
.y88{bottom:358.095000px;}
.y65{bottom:359.535000px;}
.y22{bottom:364.395000px;}
.y42{bottom:371.595000px;}
.y87{bottom:385.815000px;}
.y64{bottom:387.255000px;}
.y21{bottom:392.115000px;}
.y41{bottom:399.315000px;}
.y86{bottom:413.535000px;}
.y63{bottom:416.415000px;}
.y20{bottom:419.835000px;}
.y40{bottom:427.215000px;}
.y85{bottom:441.255000px;}
.y62{bottom:445.935000px;}
.y1f{bottom:447.735000px;}
.y3f{bottom:454.935000px;}
.y84{bottom:469.155000px;}
.y61{bottom:473.475000px;}
.y1e{bottom:475.455000px;}
.y3e{bottom:482.655000px;}
.y83{bottom:496.875000px;}
.y60{bottom:502.815000px;}
.y1d{bottom:503.175000px;}
.y3d{bottom:510.375000px;}
.y82{bottom:524.595000px;}
.y5f{bottom:532.155000px;}
.y3c{bottom:538.275000px;}
.y1c{bottom:539.355000px;}
.y81{bottom:552.495000px;}
.y5e{bottom:559.875000px;}
.y3b{bottom:565.995000px;}
.y1b{bottom:575.715000px;}
.y80{bottom:580.215000px;}
.y5d{bottom:589.215000px;}
.y3a{bottom:593.715000px;}
.y7f{bottom:607.965000px;}
.y1a{bottom:611.925000px;}
.y5c{bottom:616.965000px;}
.y39{bottom:621.465000px;}
.y7e{bottom:635.685000px;}
.y5b{bottom:644.865000px;}
.y19{bottom:648.105000px;}
.y38{bottom:649.365000px;}
.y7d{bottom:665.025000px;}
.y5a{bottom:672.585000px;}
.y37{bottom:677.085000px;}
.y18{bottom:684.285000px;}
.y7c{bottom:692.745000px;}
.y59{bottom:700.305000px;}
.y36{bottom:704.805000px;}
.y17{bottom:720.465000px;}
.y7b{bottom:721.905000px;}
.y58{bottom:728.025000px;}
.y35{bottom:732.705000px;}
.y7a{bottom:751.245000px;}
.y57{bottom:755.925000px;}
.y16{bottom:756.825000px;}
.y34{bottom:760.425000px;}
.y79{bottom:780.585000px;}
.y56{bottom:783.645000px;}
.y33{bottom:788.145000px;}
.y15{bottom:793.005000px;}
.y78{bottom:808.485000px;}
.y55{bottom:811.365000px;}
.y32{bottom:815.865000px;}
.y14{bottom:829.185000px;}
.y77{bottom:836.025000px;}
.y54{bottom:839.265000px;}
.y31{bottom:843.765000px;}
.y13{bottom:865.365000px;}
.y53{bottom:866.805000px;}
.y30{bottom:871.530000px;}
.y76{bottom:893.130000px;}
.y52{bottom:896.190000px;}
.y2f{bottom:899.250000px;}
.y12{bottom:901.770000px;}
.y75{bottom:922.470000px;}
.y51{bottom:923.910000px;}
.y2e{bottom:927.150000px;}
.y11{bottom:937.950000px;}
.y74{bottom:950.190000px;}
.y50{bottom:953.250000px;}
.y2d{bottom:954.870000px;}
.y10{bottom:974.130000px;}
.y73{bottom:979.530000px;}
.y2c{bottom:982.590000px;}
.y72{bottom:1007.430000px;}
.yf{bottom:1010.310000px;}
.y71{bottom:1034.970000px;}
.ye{bottom:1038.210000px;}
.y70{bottom:1064.490000px;}
.yd{bottom:1065.930000px;}
.y6f{bottom:1092.030000px;}
.yc{bottom:1093.650000px;}
.y7{bottom:1129.830000px;}
.y5{bottom:1149.480000px;}
.y1{bottom:1166.760000px;}
.h5{height:6.480000px;}
.h7{height:39.636000px;}
.h4{height:52.998047px;}
.h2{height:53.460000px;}
.hc{height:59.066719px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hb{height:72.846211px;}
.hd{height:82.635820px;}
.ha{height:82.676953px;}
.h6{height:84.898125px;}
.he{height:86.585445px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x7{left:19.800000px;}
.x1{left:31.860000px;}
.x4{left:59.970000px;}
.x5{left:84.959987px;}
.x14{left:105.335987px;}
.x9{left:110.735987px;}
.x8{left:122.975987px;}
.x13{left:127.475987px;}
.xe{left:164.729987px;}
.x17{left:176.069987px;}
.xd{left:215.129987px;}
.x19{left:250.049987px;}
.x10{left:252.749987px;}
.x11{left:278.714987px;}
.xf{left:294.374987px;}
.x1a{left:300.314987px;}
.xc{left:307.334987px;}
.xa{left:310.214987px;}
.x16{left:313.994987px;}
.x18{left:326.594987px;}
.x1c{left:368.894987px;}
.x12{left:375.914987px;}
.x15{left:382.754987px;}
.x1b{left:389.234987px;}
.xb{left:446.474987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-0.800000pt;}
.ls20{letter-spacing:-0.672000pt;}
.ls8{letter-spacing:-0.328533pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.303467pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.123733pt;}
.ls7{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.003627pt;}
.ls4{letter-spacing:0.024960pt;}
.ls1a{letter-spacing:0.115200pt;}
.ls0{letter-spacing:0.131627pt;}
.ls16{letter-spacing:0.224640pt;}
.lsd{letter-spacing:0.259200pt;}
.lsc{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.480000pt;}
.lse{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:2.400000pt;}
.ls17{letter-spacing:3.680000pt;}
.ls22{letter-spacing:4.320000pt;}
.ls18{letter-spacing:8.160000pt;}
.lsa{letter-spacing:13.280000pt;}
.ls14{letter-spacing:19.680000pt;}
.ls15{letter-spacing:20.320000pt;}
.ls11{letter-spacing:20.960000pt;}
.ls12{letter-spacing:25.440000pt;}
.ls13{letter-spacing:25.546667pt;}
.lsf{letter-spacing:33.120000pt;}
.ls9{letter-spacing:33.760000pt;}
.ls1c{letter-spacing:35.040000pt;}
.ls19{letter-spacing:36.960000pt;}
.ls1f{letter-spacing:46.560000pt;}
.ls1d{letter-spacing:74.240000pt;}
.ws1{word-spacing:-21.600000pt;}
.ws7{word-spacing:-19.040000pt;}
.ws8{word-spacing:-18.979200pt;}
.wsa{word-spacing:-18.944640pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.695040pt;}
.ws9{word-spacing:-18.596267pt;}
.wsc{word-spacing:-18.416533pt;}
.ws3{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.391467pt;}
.wsb{word-spacing:-18.048000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:0.000000pt;}
._32{margin-left:-24.575360pt;}
._34{margin-left:-17.616640pt;}
._17{margin-left:-5.503573pt;}
._18{margin-left:-4.532907pt;}
._f{margin-left:-3.594240pt;}
._6{margin-left:-2.018347pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._2{width:2.321280pt;}
._5{width:3.872000pt;}
._33{width:4.927360pt;}
._8{width:6.140160pt;}
._9{width:7.712640pt;}
._3{width:9.434880pt;}
._19{width:10.577493pt;}
._2c{width:12.944640pt;}
._2b{width:13.984213pt;}
._10{width:15.649920pt;}
._1b{width:17.054293pt;}
._d{width:19.766187pt;}
._1d{width:20.961067pt;}
._7{width:21.864960pt;}
._1a{width:22.869973pt;}
._e{width:23.943253pt;}
._28{width:25.058347pt;}
._14{width:26.757120pt;}
._13{width:27.662293pt;}
._1e{width:29.128320pt;}
._1f{width:30.251520pt;}
._2f{width:32.273280pt;}
._29{width:33.445760pt;}
._24{width:34.426453pt;}
._15{width:35.792640pt;}
._16{width:36.822613pt;}
._3a{width:38.053973pt;}
._11{width:38.994133pt;}
._27{width:40.386560pt;}
._12{width:41.313920pt;}
._4{width:44.085973pt;}
._2d{width:45.676800pt;}
._c{width:46.800000pt;}
._1c{width:48.222720pt;}
._38{width:49.495680pt;}
._22{width:50.469120pt;}
._23{width:51.405867pt;}
._3b{width:52.547413pt;}
._3c{width:53.828907pt;}
._37{width:55.860480pt;}
._25{width:60.877440pt;}
._26{width:62.000640pt;}
._2e{width:64.846080pt;}
._2a{width:65.894400pt;}
._21{width:68.044373pt;}
._20{width:68.942720pt;}
._31{width:71.863040pt;}
._30{width:72.938667pt;}
._39{width:73.969280pt;}
._35{width:75.404160pt;}
._36{width:76.523947pt;}
._3d{width:88.508160pt;}
._3e{width:89.463253pt;}
._b{width:95.904427pt;}
._a{width:96.894720pt;}
._3f{width:101.144533pt;}
._40{width:392.745600pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.ya{bottom:15.360000pt;}
.y9{bottom:17.280000pt;}
.y4{bottom:24.800000pt;}
.y2{bottom:32.640000pt;}
.y8{bottom:39.680000pt;}
.y6e{bottom:97.312000pt;}
.y91{bottom:99.232000pt;}
.y2b{bottom:101.632000pt;}
.y93{bottom:108.032000pt;}
.y6d{bottom:122.112000pt;}
.y90{bottom:123.872000pt;}
.y2a{bottom:126.272000pt;}
.y4f{bottom:127.392000pt;}
.y92{bottom:132.832000pt;}
.y6c{bottom:146.746667pt;}
.y8f{bottom:148.666667pt;}
.y29{bottom:151.066667pt;}
.y4e{bottom:152.186667pt;}
.y49{bottom:157.466667pt;}
.y6b{bottom:171.386667pt;}
.y8e{bottom:173.306667pt;}
.y28{bottom:175.706667pt;}
.y4d{bottom:176.666667pt;}
.y48{bottom:182.106667pt;}
.y6a{bottom:196.186667pt;}
.y8d{bottom:197.946667pt;}
.y27{bottom:200.346667pt;}
.y4c{bottom:202.746667pt;}
.y47{bottom:206.906667pt;}
.y69{bottom:220.826667pt;}
.y8c{bottom:222.746667pt;}
.y26{bottom:225.146667pt;}
.y4b{bottom:228.666667pt;}
.y46{bottom:231.546667pt;}
.y68{bottom:245.466667pt;}
.y8b{bottom:247.386667pt;}
.y25{bottom:249.786667pt;}
.y4a{bottom:254.746667pt;}
.y45{bottom:256.186667pt;}
.y67{bottom:270.106667pt;}
.y8a{bottom:272.026667pt;}
.y24{bottom:274.426667pt;}
.y44{bottom:280.826667pt;}
.y89{bottom:293.466667pt;}
.y66{bottom:294.906667pt;}
.y23{bottom:299.106667pt;}
.y43{bottom:305.666667pt;}
.y88{bottom:318.306667pt;}
.y65{bottom:319.586667pt;}
.y22{bottom:323.906667pt;}
.y42{bottom:330.306667pt;}
.y87{bottom:342.946667pt;}
.y64{bottom:344.226667pt;}
.y21{bottom:348.546667pt;}
.y41{bottom:354.946667pt;}
.y86{bottom:367.586667pt;}
.y63{bottom:370.146667pt;}
.y20{bottom:373.186667pt;}
.y40{bottom:379.746667pt;}
.y85{bottom:392.226667pt;}
.y62{bottom:396.386667pt;}
.y1f{bottom:397.986667pt;}
.y3f{bottom:404.386667pt;}
.y84{bottom:417.026667pt;}
.y61{bottom:420.866667pt;}
.y1e{bottom:422.626667pt;}
.y3e{bottom:429.026667pt;}
.y83{bottom:441.666667pt;}
.y60{bottom:446.946667pt;}
.y1d{bottom:447.266667pt;}
.y3d{bottom:453.666667pt;}
.y82{bottom:466.306667pt;}
.y5f{bottom:473.026667pt;}
.y3c{bottom:478.466667pt;}
.y1c{bottom:479.426667pt;}
.y81{bottom:491.106667pt;}
.y5e{bottom:497.666667pt;}
.y3b{bottom:503.106667pt;}
.y1b{bottom:511.746667pt;}
.y80{bottom:515.746667pt;}
.y5d{bottom:523.746667pt;}
.y3a{bottom:527.746667pt;}
.y7f{bottom:540.413333pt;}
.y1a{bottom:543.933333pt;}
.y5c{bottom:548.413333pt;}
.y39{bottom:552.413333pt;}
.y7e{bottom:565.053333pt;}
.y5b{bottom:573.213333pt;}
.y19{bottom:576.093333pt;}
.y38{bottom:577.213333pt;}
.y7d{bottom:591.133333pt;}
.y5a{bottom:597.853333pt;}
.y37{bottom:601.853333pt;}
.y18{bottom:608.253333pt;}
.y7c{bottom:615.773333pt;}
.y59{bottom:622.493333pt;}
.y36{bottom:626.493333pt;}
.y17{bottom:640.413333pt;}
.y7b{bottom:641.693333pt;}
.y58{bottom:647.133333pt;}
.y35{bottom:651.293333pt;}
.y7a{bottom:667.773333pt;}
.y57{bottom:671.933333pt;}
.y16{bottom:672.733333pt;}
.y34{bottom:675.933333pt;}
.y79{bottom:693.853333pt;}
.y56{bottom:696.573333pt;}
.y33{bottom:700.573333pt;}
.y15{bottom:704.893333pt;}
.y78{bottom:718.653333pt;}
.y55{bottom:721.213333pt;}
.y32{bottom:725.213333pt;}
.y14{bottom:737.053333pt;}
.y77{bottom:743.133333pt;}
.y54{bottom:746.013333pt;}
.y31{bottom:750.013333pt;}
.y13{bottom:769.213333pt;}
.y53{bottom:770.493333pt;}
.y30{bottom:774.693333pt;}
.y76{bottom:793.893333pt;}
.y52{bottom:796.613333pt;}
.y2f{bottom:799.333333pt;}
.y12{bottom:801.573333pt;}
.y75{bottom:819.973333pt;}
.y51{bottom:821.253333pt;}
.y2e{bottom:824.133333pt;}
.y11{bottom:833.733333pt;}
.y74{bottom:844.613333pt;}
.y50{bottom:847.333333pt;}
.y2d{bottom:848.773333pt;}
.y10{bottom:865.893333pt;}
.y73{bottom:870.693333pt;}
.y2c{bottom:873.413333pt;}
.y72{bottom:895.493333pt;}
.yf{bottom:898.053333pt;}
.y71{bottom:919.973333pt;}
.ye{bottom:922.853333pt;}
.y70{bottom:946.213333pt;}
.yd{bottom:947.493333pt;}
.y6f{bottom:970.693333pt;}
.yc{bottom:972.133333pt;}
.y7{bottom:1004.293333pt;}
.y5{bottom:1021.760000pt;}
.y1{bottom:1037.120000pt;}
.h5{height:5.760000pt;}
.h7{height:35.232000pt;}
.h4{height:47.109375pt;}
.h2{height:47.520000pt;}
.hc{height:52.503750pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hb{height:64.752187pt;}
.hd{height:73.454062pt;}
.ha{height:73.490625pt;}
.h6{height:75.465000pt;}
.he{height:76.964840pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x7{left:17.600000pt;}
.x1{left:28.320000pt;}
.x4{left:53.306667pt;}
.x5{left:75.519988pt;}
.x14{left:93.631988pt;}
.x9{left:98.431988pt;}
.x8{left:109.311988pt;}
.x13{left:113.311988pt;}
.xe{left:146.426655pt;}
.x17{left:156.506655pt;}
.xd{left:191.226655pt;}
.x19{left:222.266655pt;}
.x10{left:224.666655pt;}
.x11{left:247.746655pt;}
.xf{left:261.666655pt;}
.x1a{left:266.946655pt;}
.xc{left:273.186655pt;}
.xa{left:275.746655pt;}
.x16{left:279.106655pt;}
.x18{left:290.306655pt;}
.x1c{left:327.906655pt;}
.x12{left:334.146655pt;}
.x15{left:340.226655pt;}
.x1b{left:345.986655pt;}
.xb{left:396.866655pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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