
    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_4bf983b8d05c2ce020913199.woff')format("woff");}.ff1{font-family:ff1;line-height:0.800293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_18a382d82c5e3fe2325c1bdd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_99bfa3732ddb2383663ea95c.woff')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_b881a4dc12372bc3b6c9902f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d2512d13b130e00b799ec9d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_705f352c5737436043a98a0f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_797c4b244b4edf53e07aaf2d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_78d79db1d309dc6a42fa2129.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a2d120bd1b8ff777d242af7c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_8c43a45d1449fe416af9ff5b.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d75cfd59fa85bfb44e993abe.woff')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls6{letter-spacing:-0.690000px;}
.lsa{letter-spacing:-0.684000px;}
.lsc{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.222000px;}
.ls10{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.129600px;}
.ls4{letter-spacing:-0.073200px;}
.ls5{letter-spacing:-0.070800px;}
.ls11{letter-spacing:-0.037440px;}
.ls13{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.028080px;}
.ls0{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.172080px;}
.ls18{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.249600px;}
.ls8{letter-spacing:0.252720px;}
.ls12{letter-spacing:0.350400px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.378600px;}
.ls16{letter-spacing:0.540000px;}
.ls19{letter-spacing:4.140000px;}
.ls1a{letter-spacing:24.300000px;}
.ls17{letter-spacing:26.460000px;}
.lsd{letter-spacing:111.396000px;}
.lse{letter-spacing:142.380000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.410400px;}
.ws7{word-spacing:-21.096000px;}
.ws2{word-spacing:-21.060000px;}
.wsb{word-spacing:-21.031920px;}
.ws9{word-spacing:-21.022560px;}
.ws6{word-spacing:-20.880000px;}
.ws8{word-spacing:-20.844000px;}
.wsc{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.376000px;}
.ws0{word-spacing:-19.976160px;}
.wsd{word-spacing:-19.596960px;}
.ws1{word-spacing:-14.904000px;}
.ws3{word-spacing:0.000000px;}
._1b{margin-left:-12.636000px;}
._1a{margin-left:-11.372400px;}
._1d{margin-left:-6.872640px;}
._22{margin-left:-5.804400px;}
._b{margin-left:-4.717440px;}
._12{margin-left:-3.453840px;}
._11{margin-left:-2.106000px;}
._0{margin-left:-1.095120px;}
._1{width:1.365120px;}
._f{width:2.766480px;}
._e{width:4.380480px;}
._7{width:5.812560px;}
._8{width:6.956400px;}
._10{width:8.676720px;}
._14{width:9.794640px;}
._24{width:10.809600px;}
._23{width:12.214800px;}
._4{width:13.478400px;}
._5{width:14.573520px;}
._6{width:15.668640px;}
._16{width:16.912080px;}
._2{width:18.617040px;}
._3{width:19.712160px;}
._27{width:22.422960px;}
._26{width:23.502960px;}
._18{width:25.096800px;}
._17{width:26.281440px;}
._13{width:27.697680px;}
._15{width:29.147040px;}
._25{width:30.916080px;}
._d{width:32.036400px;}
._c{width:33.088080px;}
._19{width:35.146320px;}
._9{width:43.804800px;}
._a{width:45.152640px;}
._28{width:49.954320px;}
._1f{width:82.622160px;}
._20{width:107.490240px;}
._21{width:109.343520px;}
._1e{width:191.484000px;}
._1c{width:270.915840px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc8{color:rgb(0,176,240);}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(0,32,96);}
.fc7{color:rgb(64,64,64);}
.fc3{color:rgb(204,153,0);}
.fc1{color:rgb(41,41,41);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs6{font-size:84.384000px;}
.fs1{font-size:90.000000px;}
.fs2{font-size:95.760000px;}
.y3f{bottom:-15.690000px;}
.y4f{bottom:-10.515000px;}
.y44{bottom:-5.250000px;}
.y4a{bottom:-2.595000px;}
.y59{bottom:-0.510000px;}
.y52{bottom:-0.465000px;}
.y5c{bottom:-0.330000px;}
.y6e{bottom:-0.324000px;}
.y56{bottom:-0.285000px;}
.y0{bottom:0.000000px;}
.y74{bottom:8.100000px;}
.y77{bottom:8.280000px;}
.y3e{bottom:9.870000px;}
.y4e{bottom:15.045000px;}
.y6{bottom:15.516000px;}
.y43{bottom:20.310000px;}
.y58{bottom:24.870000px;}
.y51{bottom:24.945000px;}
.y6b{bottom:25.050000px;}
.y54{bottom:25.095000px;}
.y5b{bottom:25.230000px;}
.y6d{bottom:25.236000px;}
.y3d{bottom:35.430000px;}
.y7b{bottom:35.820000px;}
.y73{bottom:36.000000px;}
.y71{bottom:36.540000px;}
.y5{bottom:40.536000px;}
.y48{bottom:48.525000px;}
.y70{bottom:64.440000px;}
.y4c{bottom:66.165000px;}
.y41{bottom:71.430000px;}
.y5d{bottom:92.736000px;}
.y3b{bottom:97.056000px;}
.y62{bottom:99.645000px;}
.y46{bottom:99.690000px;}
.y2b{bottom:109.296000px;}
.y3a{bottom:120.456000px;}
.y6c{bottom:123.120000px;}
.y8c{bottom:130.356000px;}
.y2a{bottom:137.016000px;}
.y5a{bottom:150.840000px;}
.y8b{bottom:158.070000px;}
.y29{bottom:164.730000px;}
.y99{bottom:170.130000px;}
.y8a{bottom:185.790000px;}
.y28{bottom:192.630000px;}
.y98{bottom:197.850000px;}
.y89{bottom:213.510000px;}
.y6a{bottom:219.600000px;}
.y27{bottom:220.350000px;}
.y97{bottom:225.570000px;}
.y88{bottom:241.410000px;}
.y57{bottom:247.500000px;}
.y26{bottom:248.070000px;}
.y96{bottom:253.290000px;}
.y87{bottom:269.130000px;}
.y25{bottom:275.790000px;}
.y95{bottom:281.190000px;}
.y86{bottom:296.895000px;}
.y24{bottom:303.735000px;}
.y94{bottom:308.955000px;}
.y69{bottom:318.600000px;}
.y85{bottom:324.615000px;}
.y39{bottom:326.595000px;}
.y23{bottom:331.455000px;}
.y93{bottom:336.675000px;}
.y55{bottom:346.320000px;}
.y84{bottom:352.515000px;}
.y38{bottom:354.315000px;}
.y22{bottom:359.175000px;}
.y92{bottom:371.955000px;}
.y83{bottom:380.235000px;}
.y37{bottom:382.215000px;}
.y21{bottom:387.075000px;}
.y91{bottom:399.675000px;}
.y82{bottom:407.955000px;}
.y36{bottom:409.935000px;}
.y20{bottom:414.795000px;}
.y68{bottom:415.260000px;}
.y90{bottom:427.395000px;}
.y81{bottom:435.855000px;}
.y35{bottom:437.655000px;}
.y1f{bottom:442.515000px;}
.y53{bottom:442.980000px;}
.y8f{bottom:462.855000px;}
.y80{bottom:463.575000px;}
.y34{bottom:465.555000px;}
.y1e{bottom:470.235000px;}
.y8e{bottom:490.575000px;}
.y7f{bottom:491.295000px;}
.y33{bottom:493.275000px;}
.y1d{bottom:498.135000px;}
.y67{bottom:513.000000px;}
.y8d{bottom:518.295000px;}
.y7e{bottom:519.015000px;}
.y1c{bottom:525.855000px;}
.y50{bottom:540.900000px;}
.y7d{bottom:546.915000px;}
.y1b{bottom:553.575000px;}
.y7c{bottom:567.285000px;}
.y1a{bottom:581.325000px;}
.y19{bottom:609.225000px;}
.y65{bottom:609.840000px;}
.y7a{bottom:623.625000px;}
.y18{bottom:636.945000px;}
.y4b{bottom:637.560000px;}
.y66{bottom:650.445000px;}
.y17{bottom:664.665000px;}
.y32{bottom:665.925000px;}
.y4d{bottom:678.165000px;}
.y79{bottom:679.785000px;}
.y16{bottom:692.565000px;}
.y31{bottom:693.645000px;}
.y15{bottom:720.285000px;}
.y30{bottom:721.545000px;}
.y78{bottom:736.125000px;}
.y61{bottom:744.120000px;}
.y14{bottom:748.005000px;}
.y2f{bottom:749.265000px;}
.y76{bottom:764.565000px;}
.y64{bottom:767.085000px;}
.y45{bottom:771.840000px;}
.y13{bottom:775.725000px;}
.y2e{bottom:776.985000px;}
.y49{bottom:794.805000px;}
.y12{bottom:803.625000px;}
.y2d{bottom:804.705000px;}
.y63{bottom:818.205000px;}
.y75{bottom:820.905000px;}
.y11{bottom:831.345000px;}
.y2c{bottom:832.605000px;}
.y47{bottom:845.925000px;}
.y6f{bottom:849.570000px;}
.y10{bottom:859.110000px;}
.y72{bottom:878.010000px;}
.yf{bottom:887.010000px;}
.y5f{bottom:909.000000px;}
.ye{bottom:914.730000px;}
.y40{bottom:936.720000px;}
.yd{bottom:942.450000px;}
.y60{bottom:954.870000px;}
.yc{bottom:970.170000px;}
.y42{bottom:982.590000px;}
.yb{bottom:998.070000px;}
.ya{bottom:1025.790000px;}
.y5e{bottom:1035.000000px;}
.y9{bottom:1053.510000px;}
.y3c{bottom:1062.720000px;}
.y8{bottom:1081.410000px;}
.y7{bottom:1109.130000px;}
.y4{bottom:1137.060000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1184.760000px;}
.y1{bottom:1210.680000px;}
.h15{height:27.720000px;}
.h16{height:27.756000px;}
.hf{height:44.640000px;}
.h11{height:44.820000px;}
.h12{height:45.000000px;}
.h9{height:55.080000px;}
.h17{height:55.440000px;}
.h14{height:55.620000px;}
.hc{height:59.066719px;}
.h6{height:62.506080px;}
.h18{height:64.084922px;}
.h2{height:67.169883px;}
.h3{height:71.762695px;}
.ha{height:72.846211px;}
.h5{height:76.355508px;}
.h4{height:82.635820px;}
.h8{height:82.676953px;}
.h13{height:84.060000px;}
.h7{height:84.898125px;}
.h10{height:85.043250px;}
.he{height:86.040000px;}
.hb{height:91.080000px;}
.hd{height:119.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:126.900000px;}
.wd{width:137.016000px;}
.wb{width:137.556000px;}
.w4{width:279.540000px;}
.w3{width:286.380000px;}
.w5{width:288.000000px;}
.wa{width:296.535000px;}
.w9{width:302.760000px;}
.w6{width:304.020000px;}
.w8{width:308.700000px;}
.w7{width:308.880000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:7.776000px;}
.x1b{left:21.456000px;}
.x1e{left:30.996000px;}
.x18{left:71.130000px;}
.x20{left:72.750000px;}
.x28{left:77.250000px;}
.x5{left:84.239987px;}
.x1c{left:86.070000px;}
.x24{left:87.150000px;}
.x26{left:90.540000px;}
.x21{left:92.340000px;}
.x2b{left:93.420000px;}
.x16{left:99.900000px;}
.x17{left:103.710000px;}
.x19{left:105.330000px;}
.x22{left:111.090000px;}
.x6{left:112.355987px;}
.x2c{left:124.950000px;}
.x1f{left:131.075987px;}
.x2a{left:143.850000px;}
.x4{left:146.735987px;}
.x29{left:150.870000px;}
.x2d{left:161.310000px;}
.x27{left:164.190000px;}
.x23{left:165.809987px;}
.x1d{left:172.829987px;}
.x25{left:180.210000px;}
.x1a{left:192.449987px;}
.xc{left:263.369987px;}
.xa{left:285.734987px;}
.x9{left:296.174987px;}
.x7{left:304.094987px;}
.xb{left:336.134987px;}
.x11{left:366.194987px;}
.x2f{left:383.115000px;}
.x32{left:397.154987px;}
.x10{left:425.054987px;}
.x8{left:446.474987px;}
.x1{left:503.024987px;}
.x2{left:507.884987px;}
.x30{left:521.385000px;}
.x3{left:632.084987px;}
.x31{left:649.005000px;}
.xd{left:697.109987px;}
.x15{left:754.349987px;}
.xf{left:765.149987px;}
.x12{left:766.409987px;}
.x14{left:777.569987px;}
.xe{left:782.789987px;}
.x13{left:790.529987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.613333pt;}
.lsa{letter-spacing:-0.608000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.197333pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.115200pt;}
.ls4{letter-spacing:-0.065067pt;}
.ls5{letter-spacing:-0.062933pt;}
.ls11{letter-spacing:-0.033280pt;}
.ls13{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.024960pt;}
.ls0{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.152960pt;}
.ls18{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.221867pt;}
.ls8{letter-spacing:0.224640pt;}
.ls12{letter-spacing:0.311467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.336533pt;}
.ls16{letter-spacing:0.480000pt;}
.ls19{letter-spacing:3.680000pt;}
.ls1a{letter-spacing:21.600000pt;}
.ls17{letter-spacing:23.520000pt;}
.lsd{letter-spacing:99.018667pt;}
.lse{letter-spacing:126.560000pt;}
.ws4{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.031467pt;}
.ws7{word-spacing:-18.752000pt;}
.ws2{word-spacing:-18.720000pt;}
.wsb{word-spacing:-18.695040pt;}
.ws9{word-spacing:-18.686720pt;}
.ws6{word-spacing:-18.560000pt;}
.ws8{word-spacing:-18.528000pt;}
.wsc{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.112000pt;}
.ws0{word-spacing:-17.756587pt;}
.wsd{word-spacing:-17.419520pt;}
.ws1{word-spacing:-13.248000pt;}
.ws3{word-spacing:0.000000pt;}
._1b{margin-left:-11.232000pt;}
._1a{margin-left:-10.108800pt;}
._1d{margin-left:-6.109013pt;}
._22{margin-left:-5.159467pt;}
._b{margin-left:-4.193280pt;}
._12{margin-left:-3.070080pt;}
._11{margin-left:-1.872000pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.213440pt;}
._f{width:2.459093pt;}
._e{width:3.893760pt;}
._7{width:5.166720pt;}
._8{width:6.183467pt;}
._10{width:7.712640pt;}
._14{width:8.706347pt;}
._24{width:9.608533pt;}
._23{width:10.857600pt;}
._4{width:11.980800pt;}
._5{width:12.954240pt;}
._6{width:13.927680pt;}
._16{width:15.032960pt;}
._2{width:16.548480pt;}
._3{width:17.521920pt;}
._27{width:19.931520pt;}
._26{width:20.891520pt;}
._18{width:22.308267pt;}
._17{width:23.361280pt;}
._13{width:24.620160pt;}
._15{width:25.908480pt;}
._25{width:27.480960pt;}
._d{width:28.476800pt;}
._c{width:29.411627pt;}
._19{width:31.241173pt;}
._9{width:38.937600pt;}
._a{width:40.135680pt;}
._28{width:44.403840pt;}
._1f{width:73.441920pt;}
._20{width:95.546880pt;}
._21{width:97.194240pt;}
._1e{width:170.208000pt;}
._1c{width:240.814080pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs6{font-size:75.008000pt;}
.fs1{font-size:80.000000pt;}
.fs2{font-size:85.120000pt;}
.y3f{bottom:-13.946667pt;}
.y4f{bottom:-9.346667pt;}
.y44{bottom:-4.666667pt;}
.y4a{bottom:-2.306667pt;}
.y59{bottom:-0.453333pt;}
.y52{bottom:-0.413333pt;}
.y5c{bottom:-0.293333pt;}
.y6e{bottom:-0.288000pt;}
.y56{bottom:-0.253333pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:7.200000pt;}
.y77{bottom:7.360000pt;}
.y3e{bottom:8.773333pt;}
.y4e{bottom:13.373333pt;}
.y6{bottom:13.792000pt;}
.y43{bottom:18.053333pt;}
.y58{bottom:22.106667pt;}
.y51{bottom:22.173333pt;}
.y6b{bottom:22.266667pt;}
.y54{bottom:22.306667pt;}
.y5b{bottom:22.426667pt;}
.y6d{bottom:22.432000pt;}
.y3d{bottom:31.493333pt;}
.y7b{bottom:31.840000pt;}
.y73{bottom:32.000000pt;}
.y71{bottom:32.480000pt;}
.y5{bottom:36.032000pt;}
.y48{bottom:43.133333pt;}
.y70{bottom:57.280000pt;}
.y4c{bottom:58.813333pt;}
.y41{bottom:63.493333pt;}
.y5d{bottom:82.432000pt;}
.y3b{bottom:86.272000pt;}
.y62{bottom:88.573333pt;}
.y46{bottom:88.613333pt;}
.y2b{bottom:97.152000pt;}
.y3a{bottom:107.072000pt;}
.y6c{bottom:109.440000pt;}
.y8c{bottom:115.872000pt;}
.y2a{bottom:121.792000pt;}
.y5a{bottom:134.080000pt;}
.y8b{bottom:140.506667pt;}
.y29{bottom:146.426667pt;}
.y99{bottom:151.226667pt;}
.y8a{bottom:165.146667pt;}
.y28{bottom:171.226667pt;}
.y98{bottom:175.866667pt;}
.y89{bottom:189.786667pt;}
.y6a{bottom:195.200000pt;}
.y27{bottom:195.866667pt;}
.y97{bottom:200.506667pt;}
.y88{bottom:214.586667pt;}
.y57{bottom:220.000000pt;}
.y26{bottom:220.506667pt;}
.y96{bottom:225.146667pt;}
.y87{bottom:239.226667pt;}
.y25{bottom:245.146667pt;}
.y95{bottom:249.946667pt;}
.y86{bottom:263.906667pt;}
.y24{bottom:269.986667pt;}
.y94{bottom:274.626667pt;}
.y69{bottom:283.200000pt;}
.y85{bottom:288.546667pt;}
.y39{bottom:290.306667pt;}
.y23{bottom:294.626667pt;}
.y93{bottom:299.266667pt;}
.y55{bottom:307.840000pt;}
.y84{bottom:313.346667pt;}
.y38{bottom:314.946667pt;}
.y22{bottom:319.266667pt;}
.y92{bottom:330.626667pt;}
.y83{bottom:337.986667pt;}
.y37{bottom:339.746667pt;}
.y21{bottom:344.066667pt;}
.y91{bottom:355.266667pt;}
.y82{bottom:362.626667pt;}
.y36{bottom:364.386667pt;}
.y20{bottom:368.706667pt;}
.y68{bottom:369.120000pt;}
.y90{bottom:379.906667pt;}
.y81{bottom:387.426667pt;}
.y35{bottom:389.026667pt;}
.y1f{bottom:393.346667pt;}
.y53{bottom:393.760000pt;}
.y8f{bottom:411.426667pt;}
.y80{bottom:412.066667pt;}
.y34{bottom:413.826667pt;}
.y1e{bottom:417.986667pt;}
.y8e{bottom:436.066667pt;}
.y7f{bottom:436.706667pt;}
.y33{bottom:438.466667pt;}
.y1d{bottom:442.786667pt;}
.y67{bottom:456.000000pt;}
.y8d{bottom:460.706667pt;}
.y7e{bottom:461.346667pt;}
.y1c{bottom:467.426667pt;}
.y50{bottom:480.800000pt;}
.y7d{bottom:486.146667pt;}
.y1b{bottom:492.066667pt;}
.y7c{bottom:504.253333pt;}
.y1a{bottom:516.733333pt;}
.y19{bottom:541.533333pt;}
.y65{bottom:542.080000pt;}
.y7a{bottom:554.333333pt;}
.y18{bottom:566.173333pt;}
.y4b{bottom:566.720000pt;}
.y66{bottom:578.173333pt;}
.y17{bottom:590.813333pt;}
.y32{bottom:591.933333pt;}
.y4d{bottom:602.813333pt;}
.y79{bottom:604.253333pt;}
.y16{bottom:615.613333pt;}
.y31{bottom:616.573333pt;}
.y15{bottom:640.253333pt;}
.y30{bottom:641.373333pt;}
.y78{bottom:654.333333pt;}
.y61{bottom:661.440000pt;}
.y14{bottom:664.893333pt;}
.y2f{bottom:666.013333pt;}
.y76{bottom:679.613333pt;}
.y64{bottom:681.853333pt;}
.y45{bottom:686.080000pt;}
.y13{bottom:689.533333pt;}
.y2e{bottom:690.653333pt;}
.y49{bottom:706.493333pt;}
.y12{bottom:714.333333pt;}
.y2d{bottom:715.293333pt;}
.y63{bottom:727.293333pt;}
.y75{bottom:729.693333pt;}
.y11{bottom:738.973333pt;}
.y2c{bottom:740.093333pt;}
.y47{bottom:751.933333pt;}
.y6f{bottom:755.173333pt;}
.y10{bottom:763.653333pt;}
.y72{bottom:780.453333pt;}
.yf{bottom:788.453333pt;}
.y5f{bottom:808.000000pt;}
.ye{bottom:813.093333pt;}
.y40{bottom:832.640000pt;}
.yd{bottom:837.733333pt;}
.y60{bottom:848.773333pt;}
.yc{bottom:862.373333pt;}
.y42{bottom:873.413333pt;}
.yb{bottom:887.173333pt;}
.ya{bottom:911.813333pt;}
.y5e{bottom:920.000000pt;}
.y9{bottom:936.453333pt;}
.y3c{bottom:944.640000pt;}
.y8{bottom:961.253333pt;}
.y7{bottom:985.893333pt;}
.y4{bottom:1010.720000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1053.120000pt;}
.y1{bottom:1076.160000pt;}
.h15{height:24.640000pt;}
.h16{height:24.672000pt;}
.hf{height:39.680000pt;}
.h11{height:39.840000pt;}
.h12{height:40.000000pt;}
.h9{height:48.960000pt;}
.h17{height:49.280000pt;}
.h14{height:49.440000pt;}
.hc{height:52.503750pt;}
.h6{height:55.560960pt;}
.h18{height:56.964375pt;}
.h2{height:59.706562pt;}
.h3{height:63.789062pt;}
.ha{height:64.752187pt;}
.h5{height:67.871563pt;}
.h4{height:73.454062pt;}
.h8{height:73.490625pt;}
.h13{height:74.720000pt;}
.h7{height:75.465000pt;}
.h10{height:75.594000pt;}
.he{height:76.480000pt;}
.hb{height:80.960000pt;}
.hd{height:106.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:112.800000pt;}
.wd{width:121.792000pt;}
.wb{width:122.272000pt;}
.w4{width:248.480000pt;}
.w3{width:254.560000pt;}
.w5{width:256.000000pt;}
.wa{width:263.586667pt;}
.w9{width:269.120000pt;}
.w6{width:270.240000pt;}
.w8{width:274.400000pt;}
.w7{width:274.560000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:6.912000pt;}
.x1b{left:19.072000pt;}
.x1e{left:27.552000pt;}
.x18{left:63.226667pt;}
.x20{left:64.666667pt;}
.x28{left:68.666667pt;}
.x5{left:74.879988pt;}
.x1c{left:76.506667pt;}
.x24{left:77.466667pt;}
.x26{left:80.480000pt;}
.x21{left:82.080000pt;}
.x2b{left:83.040000pt;}
.x16{left:88.800000pt;}
.x17{left:92.186667pt;}
.x19{left:93.626667pt;}
.x22{left:98.746667pt;}
.x6{left:99.871988pt;}
.x2c{left:111.066667pt;}
.x1f{left:116.511988pt;}
.x2a{left:127.866667pt;}
.x4{left:130.431988pt;}
.x29{left:134.106667pt;}
.x2d{left:143.386667pt;}
.x27{left:145.946667pt;}
.x23{left:147.386655pt;}
.x1d{left:153.626655pt;}
.x25{left:160.186667pt;}
.x1a{left:171.066655pt;}
.xc{left:234.106655pt;}
.xa{left:253.986655pt;}
.x9{left:263.266655pt;}
.x7{left:270.306655pt;}
.xb{left:298.786655pt;}
.x11{left:325.506655pt;}
.x2f{left:340.546667pt;}
.x32{left:353.026655pt;}
.x10{left:377.826655pt;}
.x8{left:396.866655pt;}
.x1{left:447.133322pt;}
.x2{left:451.453322pt;}
.x30{left:463.453333pt;}
.x3{left:561.853322pt;}
.x31{left:576.893333pt;}
.xd{left:619.653322pt;}
.x15{left:670.533322pt;}
.xf{left:680.133322pt;}
.x12{left:681.253322pt;}
.x14{left:691.173322pt;}
.xe{left:695.813322pt;}
.x13{left:702.693322pt;}
}




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