
    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_e3fa9596580c139a52475f29.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_b84e59a66e1a4fa79d340fa8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.911000;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_b65c4199da01130a39a9b813.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_828e372529572d1ca8ccc847.woff')format("woff");}.ff4{font-family:ff4;line-height:0.977000;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_75a63fc01745407cfdb7822e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_b237f230949ebeaa748c9c38.woff')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.900000;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_236daa8a44a970c04d28e687.woff')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_a1918106d129a785020c2e6e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.911000;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_e3fa9596580c139a52475f29.woff')format("woff");}.ffa{font-family:ffa;line-height:0.919922;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_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_6eecee5b0eeba56be2fcf6e1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_53a8080cb8f87d3c29d61cab.woff')format("woff");}.ffd{font-family:ffd;line-height:0.900000;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:ffe;src:url('chunks/assets/font_e3fa9596580c139a52475f29.woff')format("woff");}.ffe{font-family:ffe;line-height:0.919922;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:fff;src:url('chunks/assets/font_0df4e085ba06b312cb483d66.woff')format("woff");}.fff{font-family:fff;line-height:0.911000;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:ff10;src:url('chunks/assets/font_b65c4199da01130a39a9b813.woff')format("woff");}.ff10{font-family:ff10;line-height:0.900000;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:ff11;src:url('chunks/assets/font_828e372529572d1ca8ccc847.woff')format("woff");}.ff11{font-family:ff11;line-height:0.977000;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:ff12;src:url('chunks/assets/font_75a63fc01745407cfdb7822e.woff')format("woff");}.ff12{font-family:ff12;line-height:0.911000;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:ff13;src:url('chunks/assets/font_4e7e8aef50d90067c3bbe507.woff')format("woff");}.ff13{font-family:ff13;line-height:1.055000;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:ff14;src:url('chunks/assets/font_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ff14{font-family:ff14;line-height:0.900000;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:ff15;src:url('chunks/assets/font_236daa8a44a970c04d28e687.woff')format("woff");}.ff15{font-family:ff15;line-height:0.900000;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:ff16;src:url('chunks/assets/font_4f0bd006a07cb076752f2497.woff')format("woff");}.ff16{font-family:ff16;line-height:0.911000;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:ff17;src:url('chunks/assets/font_e3fa9596580c139a52475f29.woff')format("woff");}.ff17{font-family:ff17;line-height:0.919922;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:ff18;src:url('chunks/assets/font_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ff18{font-family:ff18;line-height:0.900000;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:ff19;src:url('chunks/assets/font_6eecee5b0eeba56be2fcf6e1.woff')format("woff");}.ff19{font-family:ff19;line-height:0.900000;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:ff1a;src:url('chunks/assets/font_53a8080cb8f87d3c29d61cab.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.900000;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;}
.m2{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m0{transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);}
.m3{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;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.470628px;}
.ls3{letter-spacing:2.520950px;}
.ls1{letter-spacing:4.321642px;}
.ls0{letter-spacing:8.103053px;}
.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;}
}
.ws5{word-spacing:-89.988907px;}
.ws4{word-spacing:-71.982122px;}
.ws2{word-spacing:-30.881636px;}
.ws0{word-spacing:-30.363851px;}
.ws6{word-spacing:-22.778583px;}
.ws1{word-spacing:-18.211477px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-3299.566082px;}
._7{margin-left:-8.103143px;}
._1{margin-left:-5.341895px;}
._2{margin-left:-3.701860px;}
._d{margin-left:-2.521400px;}
._0{margin-left:-1.440382px;}
._a{width:1.138853px;}
._9{width:2.540355px;}
._8{width:4.321882px;}
._11{width:5.431824px;}
._4{width:6.462905px;}
._b{width:7.484880px;}
._6{width:9.172971px;}
._3{width:10.792772px;}
._16{width:14.314629px;}
._1a{width:16.914673px;}
._1b{width:18.570127px;}
._13{width:23.148532px;}
._10{width:24.183427px;}
._5{width:25.835910px;}
._c{width:27.810354px;}
._e{width:29.025362px;}
._f{width:30.075832px;}
._18{width:32.954596px;}
._19{width:34.036769px;}
._17{width:36.029551px;}
._12{width:37.746678px;}
._14{width:50.554949px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(59,105,102);}
.fc0{color:rgb(58,106,103);}
.fsa{font-size:42.017940px;}
.fs9{font-size:43.947388px;}
.fs7{font-size:48.018240px;}
.fs5{font-size:65.994866px;}
.fs0{font-size:66.281296px;}
.fs3{font-size:71.982122px;}
.fs8{font-size:72.027139px;}
.fsb{font-size:89.988907px;}
.fs6{font-size:90.033924px;}
.fs4{font-size:102.008436px;}
.fs2{font-size:120.015221px;}
.fs1{font-size:150.041534px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.000021px;}
.y2c{bottom:0.028350px;}
.y3{bottom:0.042150px;}
.y2b{bottom:13.218450px;}
.y2{bottom:19.939050px;}
.y11{bottom:23.484862px;}
.y25{bottom:25.865458px;}
.y2e{bottom:118.780896px;}
.y10{bottom:126.826531px;}
.y2d{bottom:131.911502px;}
.yf{bottom:149.335012px;}
.ye{bottom:171.843493px;}
.y2f{bottom:240.869696px;}
.y36{bottom:338.589549px;}
.y35{bottom:354.595629px;}
.y13{bottom:364.053249px;}
.y12{bottom:380.059329px;}
.y33{bottom:418.603814px;}
.y32{bottom:443.363143px;}
.yc{bottom:444.067514px;}
.y4a{bottom:447.357728px;}
.yb{bottom:468.826843px;}
.y49{bottom:469.866209px;}
.y48{bottom:492.374690px;}
.y34{bottom:506.403974px;}
.y47{bottom:514.883171px;}
.y46{bottom:537.391652px;}
.y24{bottom:542.513621px;}
.y31{bottom:548.936510px;}
.y45{bottom:559.900133px;}
.y23{bottom:565.022102px;}
.yd{bottom:577.121474px;}
.y44{bottom:582.408614px;}
.y30{bottom:586.075503px;}
.y22{bottom:587.530583px;}
.y43{bottom:604.917095px;}
.y21{bottom:610.039064px;}
.y8{bottom:623.214497px;}
.y42{bottom:627.425576px;}
.y20{bottom:632.547545px;}
.y41{bottom:649.934057px;}
.y1f{bottom:655.056026px;}
.y7{bottom:660.353491px;}
.y40{bottom:672.442538px;}
.y1e{bottom:677.564507px;}
.y3f{bottom:694.951019px;}
.y6{bottom:697.492484px;}
.y1d{bottom:700.072988px;}
.y3e{bottom:717.459500px;}
.y1c{bottom:722.581469px;}
.y5{bottom:734.631478px;}
.y3d{bottom:739.967981px;}
.y1b{bottom:745.089950px;}
.y3c{bottom:762.476462px;}
.y1a{bottom:767.598431px;}
.y3b{bottom:784.984943px;}
.y19{bottom:790.106912px;}
.y3a{bottom:807.493424px;}
.y18{bottom:812.615393px;}
.y39{bottom:830.001905px;}
.y17{bottom:835.123874px;}
.y1{bottom:840.588000px;}
.y38{bottom:852.510386px;}
.y16{bottom:857.632355px;}
.y37{bottom:875.018867px;}
.y15{bottom:880.140836px;}
.y14{bottom:902.649317px;}
.y4c{bottom:932.698310px;}
.y2a{bottom:947.263950px;}
.y4b{bottom:969.837303px;}
.y29{bottom:1006.976297px;}
.y28{bottom:1044.115291px;}
.y27{bottom:1081.254284px;}
.ya{bottom:1112.940538px;}
.y26{bottom:1118.393278px;}
.y9{bottom:1154.581228px;}
.h10{height:29.412558px;}
.hf{height:30.943425px;}
.hb{height:36.781972px;}
.h9{height:46.196406px;}
.h3{height:46.668764px;}
.hd{height:50.387486px;}
.hc{height:50.418997px;}
.h7{height:55.138306px;}
.h13{height:60.752911px;}
.h12{height:60.790905px;}
.h11{height:62.992235px;}
.ha{height:63.023747px;}
.h8{height:78.138462px;}
.h6{height:84.010654px;}
.h5{height:105.029074px;}
.he{height:199.200000px;}
.h2{height:300.488250px;}
.h4{height:1263.374979px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:271.227150px;}
.w1{width:409.654350px;}
.w0{width:893.250000px;}
.x2{left:-1.011810px;}
.x0{left:0.000000px;}
.x9{left:40.497300px;}
.x3{left:61.166115px;}
.x1{left:89.324985px;}
.xa{left:107.233901px;}
.xb{left:146.201715px;}
.x5{left:199.872300px;}
.x8{left:311.200050px;}
.xc{left:351.525845px;}
.x6{left:388.425011px;}
.xd{left:394.456586px;}
.x4{left:671.923500px;}
.x7{left:741.186300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.307225pt;}
.ls3{letter-spacing:2.240844pt;}
.ls1{letter-spacing:3.841459pt;}
.ls0{letter-spacing:7.202714pt;}
.ws5{word-spacing:-79.990140pt;}
.ws4{word-spacing:-63.984109pt;}
.ws2{word-spacing:-27.450343pt;}
.ws0{word-spacing:-26.990090pt;}
.ws6{word-spacing:-20.247629pt;}
.ws1{word-spacing:-16.187979pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-2932.947629pt;}
._7{margin-left:-7.202794pt;}
._1{margin-left:-4.748351pt;}
._2{margin-left:-3.290542pt;}
._d{margin-left:-2.241244pt;}
._0{margin-left:-1.280339pt;}
._a{width:1.012314pt;}
._9{width:2.258093pt;}
._8{width:3.841673pt;}
._11{width:4.828288pt;}
._4{width:5.744805pt;}
._b{width:6.653227pt;}
._6{width:8.153752pt;}
._3{width:9.593575pt;}
._16{width:12.724114pt;}
._1a{width:15.035265pt;}
._1b{width:16.506780pt;}
._13{width:20.576473pt;}
._10{width:21.496380pt;}
._5{width:22.965253pt;}
._c{width:24.720314pt;}
._e{width:25.800321pt;}
._f{width:26.734073pt;}
._18{width:29.292974pt;}
._19{width:30.254906pt;}
._17{width:32.026267pt;}
._12{width:33.552602pt;}
._14{width:44.937732pt;}
.fsa{font-size:37.349280pt;}
.fs9{font-size:39.064345pt;}
.fs7{font-size:42.682880pt;}
.fs5{font-size:58.662103pt;}
.fs0{font-size:58.916708pt;}
.fs3{font-size:63.984109pt;}
.fs8{font-size:64.024124pt;}
.fsb{font-size:79.990140pt;}
.fs6{font-size:80.030155pt;}
.fs4{font-size:90.674165pt;}
.fs2{font-size:106.680196pt;}
.fs1{font-size:133.370253pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.000018pt;}
.y2c{bottom:0.025200pt;}
.y3{bottom:0.037467pt;}
.y2b{bottom:11.749733pt;}
.y2{bottom:17.723600pt;}
.y11{bottom:20.875433pt;}
.y25{bottom:22.991518pt;}
.y2e{bottom:105.583018pt;}
.y10{bottom:112.734694pt;}
.y2d{bottom:117.254668pt;}
.yf{bottom:132.742233pt;}
.ye{bottom:152.749771pt;}
.y2f{bottom:214.106397pt;}
.y36{bottom:300.968488pt;}
.y35{bottom:315.196115pt;}
.y13{bottom:323.602888pt;}
.y12{bottom:337.830515pt;}
.y33{bottom:372.092279pt;}
.y32{bottom:394.100571pt;}
.yc{bottom:394.726679pt;}
.y4a{bottom:397.651313pt;}
.yb{bottom:416.734971pt;}
.y49{bottom:417.658852pt;}
.y48{bottom:437.666391pt;}
.y34{bottom:450.136866pt;}
.y47{bottom:457.673929pt;}
.y46{bottom:477.681468pt;}
.y24{bottom:482.234329pt;}
.y31{bottom:487.943564pt;}
.y45{bottom:497.689007pt;}
.y23{bottom:502.241868pt;}
.yd{bottom:512.996866pt;}
.y44{bottom:517.696545pt;}
.y30{bottom:520.956003pt;}
.y22{bottom:522.249407pt;}
.y43{bottom:537.704084pt;}
.y21{bottom:542.256945pt;}
.y8{bottom:553.968442pt;}
.y42{bottom:557.711623pt;}
.y20{bottom:562.264484pt;}
.y41{bottom:577.719161pt;}
.y1f{bottom:582.272023pt;}
.y7{bottom:586.980881pt;}
.y40{bottom:597.726700pt;}
.y1e{bottom:602.279561pt;}
.y3f{bottom:617.734239pt;}
.y6{bottom:619.993319pt;}
.y1d{bottom:622.287100pt;}
.y3e{bottom:637.741777pt;}
.y1c{bottom:642.294639pt;}
.y5{bottom:653.005758pt;}
.y3d{bottom:657.749316pt;}
.y1b{bottom:662.302177pt;}
.y3c{bottom:677.756855pt;}
.y1a{bottom:682.309716pt;}
.y3b{bottom:697.764393pt;}
.y19{bottom:702.317255pt;}
.y3a{bottom:717.771932pt;}
.y18{bottom:722.324793pt;}
.y39{bottom:737.779471pt;}
.y17{bottom:742.332332pt;}
.y1{bottom:747.189333pt;}
.y38{bottom:757.787009pt;}
.y16{bottom:762.339871pt;}
.y37{bottom:777.794548pt;}
.y15{bottom:782.347409pt;}
.y14{bottom:802.354948pt;}
.y4c{bottom:829.065164pt;}
.y2a{bottom:842.012400pt;}
.y4b{bottom:862.077603pt;}
.y29{bottom:895.090042pt;}
.y28{bottom:928.102481pt;}
.y27{bottom:961.114919pt;}
.ya{bottom:989.280478pt;}
.y26{bottom:994.127358pt;}
.y9{bottom:1026.294425pt;}
.h10{height:26.144496pt;}
.hf{height:27.505267pt;}
.hb{height:32.695086pt;}
.h9{height:41.063472pt;}
.h3{height:41.483346pt;}
.hd{height:44.788876pt;}
.hc{height:44.816887pt;}
.h7{height:49.011827pt;}
.h13{height:54.002588pt;}
.h12{height:54.036360pt;}
.h11{height:55.993098pt;}
.ha{height:56.021108pt;}
.h8{height:69.456411pt;}
.h6{height:74.676137pt;}
.h5{height:93.359177pt;}
.he{height:177.066667pt;}
.h2{height:267.100667pt;}
.h4{height:1122.999982pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:241.090800pt;}
.w1{width:364.137200pt;}
.w0{width:794.000000pt;}
.x2{left:-0.899387pt;}
.x0{left:0.000000pt;}
.x9{left:35.997600pt;}
.x3{left:54.369880pt;}
.x1{left:79.399987pt;}
.xa{left:95.319023pt;}
.xb{left:129.957080pt;}
.x5{left:177.664267pt;}
.x8{left:276.622267pt;}
.xc{left:312.467418pt;}
.x6{left:345.266676pt;}
.xd{left:350.628076pt;}
.x4{left:597.265333pt;}
.x7{left:658.832267pt;}
}




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