
    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_7224c79322ef7accfb8f0f33.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_373b051589687c77e3feb503.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_a6ffdb42c83d1805f0397617.woff')format("woff");}.ff6{font-family:ff6;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: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_77231d4d1ac47c2907fb5486.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_42cbb8117dcde6a2e0c35618.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_ac88d45eda812953af7ecb32.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_241a53bedd2dfbd042993294.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_373b051589687c77e3feb503.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_6c9b33e863d2d807a8ee9a2a.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_cc7ce4755907f445f53a3fac.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_54d33422f8d3f6a798ce88e6.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_a7e412473a28d608960ea5cb.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;}
.m3{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);}
.m2{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;}
}
.ws7{word-spacing:-89.988907px;}
.ws6{word-spacing:-71.982122px;}
.wsb{word-spacing:-53.363421px;}
.wsa{word-spacing:-42.685397px;}
.ws2{word-spacing:-30.881636px;}
.ws0{word-spacing:-30.363851px;}
.ws8{word-spacing:-22.778582px;}
.ws1{word-spacing:-18.211477px;}
.ws4{word-spacing:-15.773943px;}
.ws5{word-spacing:-13.252994px;}
.ws9{word-spacing:-10.725336px;}
.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;}
._c{margin-left:-2.518294px;}
._0{margin-left:-1.440382px;}
._a{width:1.138853px;}
._9{width:2.540355px;}
._8{width:4.321882px;}
._16{width:5.444504px;}
._4{width:6.462905px;}
._f{width:7.590715px;}
._6{width:9.172971px;}
._3{width:10.792772px;}
._d{width:12.327040px;}
._1a{width:14.806017px;}
._b{width:17.860075px;}
._19{width:22.799983px;}
._17{width:25.572734px;}
._18{width:26.607684px;}
._1b{width:28.220542px;}
._1c{width:29.330651px;}
._10{width:34.303375px;}
._11{width:36.272282px;}
._e{width:37.819200px;}
._12{width:38.852789px;}
._1d{width:40.979127px;}
._1e{width:42.649362px;}
._5{width:47.644332px;}
._13{width:49.118007px;}
._14{width:50.353543px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(59,105,102);}
.fc0{color:rgb(58,106,103);}
.fs15{font-size:42.017937px;}
.fsa{font-size:42.017940px;}
.fs14{font-size:43.947387px;}
.fs9{font-size:43.947388px;}
.fs7{font-size:48.018240px;}
.fs11{font-size:65.994864px;}
.fs5{font-size:65.994866px;}
.fs0{font-size:66.281296px;}
.fsc{font-size:66.281298px;}
.fsf{font-size:71.982120px;}
.fs3{font-size:71.982122px;}
.fs13{font-size:72.027138px;}
.fs8{font-size:72.027139px;}
.fs16{font-size:89.988906px;}
.fsb{font-size:89.988907px;}
.fs12{font-size:90.033923px;}
.fs6{font-size:90.033924px;}
.fs10{font-size:102.008434px;}
.fs4{font-size:102.008436px;}
.fse{font-size:120.015219px;}
.fs2{font-size:120.015221px;}
.fs1{font-size:150.041534px;}
.fsd{font-size:150.041541px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.000021px;}
.y32{bottom:0.028350px;}
.y6a{bottom:0.028480px;}
.y38{bottom:0.042131px;}
.y3{bottom:0.042150px;}
.y31{bottom:13.218450px;}
.y69{bottom:13.218530px;}
.y37{bottom:19.939031px;}
.y2{bottom:19.939050px;}
.y45{bottom:23.484858px;}
.y11{bottom:23.484862px;}
.y2b{bottom:25.865458px;}
.y62{bottom:25.865462px;}
.y34{bottom:118.780896px;}
.y6c{bottom:118.780900px;}
.y10{bottom:126.826531px;}
.y44{bottom:126.826550px;}
.y33{bottom:131.911502px;}
.y6b{bottom:131.911505px;}
.yf{bottom:149.335012px;}
.y43{bottom:149.335031px;}
.ye{bottom:171.843493px;}
.y42{bottom:171.843512px;}
.y35{bottom:240.869696px;}
.y6d{bottom:240.869725px;}
.y61{bottom:341.743938px;}
.y13{bottom:364.053249px;}
.y47{bottom:364.053272px;}
.y60{bottom:364.252419px;}
.y12{bottom:380.059329px;}
.y46{bottom:380.059352px;}
.y2a{bottom:384.954254px;}
.y5f{bottom:386.760899px;}
.y29{bottom:407.462735px;}
.y28{bottom:429.971216px;}
.y5e{bottom:431.777861px;}
.y40{bottom:444.067467px;}
.yc{bottom:444.067514px;}
.y5d{bottom:454.286341px;}
.y3f{bottom:468.826795px;}
.yb{bottom:468.826843px;}
.y27{bottom:474.988178px;}
.y5c{bottom:476.794822px;}
.y26{bottom:497.496659px;}
.y5b{bottom:499.303303px;}
.y25{bottom:520.005140px;}
.y5a{bottom:521.811783px;}
.y24{bottom:542.513621px;}
.y59{bottom:544.320264px;}
.y23{bottom:565.022102px;}
.y58{bottom:566.828745px;}
.y41{bottom:577.121470px;}
.yd{bottom:577.121474px;}
.y22{bottom:587.530583px;}
.y57{bottom:589.337225px;}
.y21{bottom:610.039064px;}
.y56{bottom:611.845706px;}
.y8{bottom:623.214497px;}
.y3c{bottom:623.214571px;}
.y20{bottom:632.547545px;}
.y55{bottom:634.354187px;}
.y1f{bottom:655.056026px;}
.y54{bottom:656.862667px;}
.y7{bottom:660.353491px;}
.y3b{bottom:660.353564px;}
.y1e{bottom:677.564507px;}
.y53{bottom:679.371148px;}
.y6{bottom:697.492484px;}
.y3a{bottom:697.492557px;}
.y1d{bottom:700.072988px;}
.y52{bottom:701.879629px;}
.y1c{bottom:722.581469px;}
.y51{bottom:724.388109px;}
.y5{bottom:734.631478px;}
.y39{bottom:734.631550px;}
.y1b{bottom:745.089950px;}
.y50{bottom:746.896590px;}
.y1a{bottom:767.598431px;}
.y4f{bottom:769.405071px;}
.y19{bottom:790.106912px;}
.y4e{bottom:791.913551px;}
.y18{bottom:812.615393px;}
.y4d{bottom:814.422032px;}
.y17{bottom:835.123874px;}
.y4c{bottom:836.930512px;}
.y1{bottom:840.588000px;}
.y36{bottom:840.588044px;}
.y16{bottom:857.632355px;}
.y4b{bottom:859.438993px;}
.y15{bottom:880.140836px;}
.y4a{bottom:881.947474px;}
.y14{bottom:902.649317px;}
.y49{bottom:904.455954px;}
.y48{bottom:926.964435px;}
.y68{bottom:947.263888px;}
.y30{bottom:947.263950px;}
.y67{bottom:993.419298px;}
.y2f{bottom:1006.976297px;}
.y66{bottom:1030.558291px;}
.y2e{bottom:1044.115291px;}
.y65{bottom:1067.697284px;}
.y2d{bottom:1081.254284px;}
.y64{bottom:1104.836277px;}
.ya{bottom:1112.940538px;}
.y3e{bottom:1112.940610px;}
.y2c{bottom:1118.393278px;}
.y63{bottom:1141.975270px;}
.y9{bottom:1154.581228px;}
.y3d{bottom:1154.581299px;}
.h20{height:29.412556px;}
.h10{height:29.412558px;}
.he{height:30.943425px;}
.hb{height:36.781972px;}
.h1b{height:46.196405px;}
.h9{height:46.196406px;}
.h3{height:46.668764px;}
.h15{height:46.668766px;}
.h1f{height:50.387484px;}
.hf{height:50.387486px;}
.h19{height:55.138304px;}
.h7{height:55.138306px;}
.hc{height:55.172789px;}
.h1d{height:60.752909px;}
.h1c{height:60.790905px;}
.h11{height:62.992235px;}
.ha{height:63.023747px;}
.h1a{height:78.138461px;}
.h8{height:78.138462px;}
.h18{height:84.010653px;}
.h6{height:84.010654px;}
.h5{height:105.029074px;}
.h17{height:105.029079px;}
.hd{height:199.200000px;}
.h1e{height:199.200052px;}
.h14{height:300.488189px;}
.h2{height:300.488250px;}
.h13{height:1263.000000px;}
.h16{height:1263.374947px;}
.h12{height:1263.374968px;}
.h4{height:1263.374979px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:271.227150px;}
.w5{width:271.227160px;}
.w3{width:409.654362px;}
.w1{width:409.654365px;}
.w4{width:893.249963px;}
.w0{width:893.250000px;}
.x2{left:-1.011810px;}
.x0{left:0.000000px;}
.xa{left:40.497300px;}
.x3{left:61.166115px;}
.x1{left:89.324985px;}
.xb{left:107.233901px;}
.x7{left:119.922451px;}
.xc{left:146.201715px;}
.x5{left:199.872300px;}
.x9{left:311.200050px;}
.xd{left:351.525845px;}
.x6{left:388.425011px;}
.xe{left:394.456545px;}
.x4{left:671.923500px;}
.x8{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;}
.ws7{word-spacing:-79.990140pt;}
.ws6{word-spacing:-63.984109pt;}
.wsb{word-spacing:-47.434152pt;}
.wsa{word-spacing:-37.942575pt;}
.ws2{word-spacing:-27.450343pt;}
.ws0{word-spacing:-26.990090pt;}
.ws8{word-spacing:-20.247629pt;}
.ws1{word-spacing:-16.187979pt;}
.ws4{word-spacing:-14.021283pt;}
.ws5{word-spacing:-11.780439pt;}
.ws9{word-spacing:-9.533632pt;}
.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;}
._c{margin-left:-2.238483pt;}
._0{margin-left:-1.280339pt;}
._a{width:1.012314pt;}
._9{width:2.258093pt;}
._8{width:3.841673pt;}
._16{width:4.839560pt;}
._4{width:5.744805pt;}
._f{width:6.747302pt;}
._6{width:8.153752pt;}
._3{width:9.593575pt;}
._d{width:10.957369pt;}
._1a{width:13.160904pt;}
._b{width:15.875622pt;}
._19{width:20.266651pt;}
._17{width:22.731320pt;}
._18{width:23.651275pt;}
._1b{width:25.084926pt;}
._1c{width:26.071690pt;}
._10{width:30.491889pt;}
._11{width:32.242029pt;}
._e{width:33.617067pt;}
._12{width:34.535813pt;}
._1d{width:36.425890pt;}
._1e{width:37.910544pt;}
._5{width:42.350517pt;}
._13{width:43.660451pt;}
._14{width:44.758705pt;}
.fs15{font-size:37.349278pt;}
.fsa{font-size:37.349280pt;}
.fs14{font-size:39.064344pt;}
.fs9{font-size:39.064345pt;}
.fs7{font-size:42.682880pt;}
.fs11{font-size:58.662102pt;}
.fs5{font-size:58.662103pt;}
.fs0{font-size:58.916708pt;}
.fsc{font-size:58.916710pt;}
.fsf{font-size:63.984107pt;}
.fs3{font-size:63.984109pt;}
.fs13{font-size:64.024123pt;}
.fs8{font-size:64.024124pt;}
.fs16{font-size:79.990138pt;}
.fsb{font-size:79.990140pt;}
.fs12{font-size:80.030153pt;}
.fs6{font-size:80.030155pt;}
.fs10{font-size:90.674164pt;}
.fs4{font-size:90.674165pt;}
.fse{font-size:106.680195pt;}
.fs2{font-size:106.680196pt;}
.fs1{font-size:133.370253pt;}
.fsd{font-size:133.370259pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.000018pt;}
.y32{bottom:0.025200pt;}
.y6a{bottom:0.025315pt;}
.y38{bottom:0.037450pt;}
.y3{bottom:0.037467pt;}
.y31{bottom:11.749733pt;}
.y69{bottom:11.749804pt;}
.y37{bottom:17.723583pt;}
.y2{bottom:17.723600pt;}
.y45{bottom:20.875429pt;}
.y11{bottom:20.875433pt;}
.y2b{bottom:22.991518pt;}
.y62{bottom:22.991522pt;}
.y34{bottom:105.583018pt;}
.y6c{bottom:105.583022pt;}
.y10{bottom:112.734694pt;}
.y44{bottom:112.734711pt;}
.y33{bottom:117.254668pt;}
.y6b{bottom:117.254671pt;}
.yf{bottom:132.742233pt;}
.y43{bottom:132.742250pt;}
.ye{bottom:152.749771pt;}
.y42{bottom:152.749788pt;}
.y35{bottom:214.106397pt;}
.y6d{bottom:214.106422pt;}
.y61{bottom:303.772389pt;}
.y13{bottom:323.602888pt;}
.y47{bottom:323.602909pt;}
.y60{bottom:323.779928pt;}
.y12{bottom:337.830515pt;}
.y46{bottom:337.830535pt;}
.y2a{bottom:342.181559pt;}
.y5f{bottom:343.787466pt;}
.y29{bottom:362.189097pt;}
.y28{bottom:382.196636pt;}
.y5e{bottom:383.802543pt;}
.y40{bottom:394.726637pt;}
.yc{bottom:394.726679pt;}
.y5d{bottom:403.810081pt;}
.y3f{bottom:416.734929pt;}
.yb{bottom:416.734971pt;}
.y27{bottom:422.211713pt;}
.y5c{bottom:423.817619pt;}
.y26{bottom:442.219252pt;}
.y5b{bottom:443.825158pt;}
.y25{bottom:462.226791pt;}
.y5a{bottom:463.832696pt;}
.y24{bottom:482.234329pt;}
.y59{bottom:483.840235pt;}
.y23{bottom:502.241868pt;}
.y58{bottom:503.847773pt;}
.y41{bottom:512.996862pt;}
.yd{bottom:512.996866pt;}
.y22{bottom:522.249407pt;}
.y57{bottom:523.855311pt;}
.y21{bottom:542.256945pt;}
.y56{bottom:543.862850pt;}
.y8{bottom:553.968442pt;}
.y3c{bottom:553.968507pt;}
.y20{bottom:562.264484pt;}
.y55{bottom:563.870388pt;}
.y1f{bottom:582.272023pt;}
.y54{bottom:583.877926pt;}
.y7{bottom:586.980881pt;}
.y3b{bottom:586.980946pt;}
.y1e{bottom:602.279561pt;}
.y53{bottom:603.885465pt;}
.y6{bottom:619.993319pt;}
.y3a{bottom:619.993384pt;}
.y1d{bottom:622.287100pt;}
.y52{bottom:623.893003pt;}
.y1c{bottom:642.294639pt;}
.y51{bottom:643.900541pt;}
.y5{bottom:653.005758pt;}
.y39{bottom:653.005822pt;}
.y1b{bottom:662.302177pt;}
.y50{bottom:663.908080pt;}
.y1a{bottom:682.309716pt;}
.y4f{bottom:683.915618pt;}
.y19{bottom:702.317255pt;}
.y4e{bottom:703.923157pt;}
.y18{bottom:722.324793pt;}
.y4d{bottom:723.930695pt;}
.y17{bottom:742.332332pt;}
.y4c{bottom:743.938233pt;}
.y1{bottom:747.189333pt;}
.y36{bottom:747.189373pt;}
.y16{bottom:762.339871pt;}
.y4b{bottom:763.945772pt;}
.y15{bottom:782.347409pt;}
.y4a{bottom:783.953310pt;}
.y14{bottom:802.354948pt;}
.y49{bottom:803.960848pt;}
.y48{bottom:823.968387pt;}
.y68{bottom:842.012345pt;}
.y30{bottom:842.012400pt;}
.y67{bottom:883.039376pt;}
.y2f{bottom:895.090042pt;}
.y66{bottom:916.051814pt;}
.y2e{bottom:928.102481pt;}
.y65{bottom:949.064252pt;}
.y2d{bottom:961.114919pt;}
.y64{bottom:982.076691pt;}
.ya{bottom:989.280478pt;}
.y3e{bottom:989.280542pt;}
.y2c{bottom:994.127358pt;}
.y63{bottom:1015.089129pt;}
.y9{bottom:1026.294425pt;}
.y3d{bottom:1026.294488pt;}
.h20{height:26.144494pt;}
.h10{height:26.144496pt;}
.he{height:27.505267pt;}
.hb{height:32.695086pt;}
.h1b{height:41.063471pt;}
.h9{height:41.063472pt;}
.h3{height:41.483346pt;}
.h15{height:41.483347pt;}
.h1f{height:44.788875pt;}
.hf{height:44.788876pt;}
.h19{height:49.011826pt;}
.h7{height:49.011827pt;}
.hc{height:49.042479pt;}
.h1d{height:54.002586pt;}
.h1c{height:54.036360pt;}
.h11{height:55.993098pt;}
.ha{height:56.021108pt;}
.h1a{height:69.456410pt;}
.h8{height:69.456411pt;}
.h18{height:74.676136pt;}
.h6{height:74.676137pt;}
.h5{height:93.359177pt;}
.h17{height:93.359181pt;}
.hd{height:177.066667pt;}
.h1e{height:177.066713pt;}
.h14{height:267.100613pt;}
.h2{height:267.100667pt;}
.h13{height:1122.666667pt;}
.h16{height:1122.999953pt;}
.h12{height:1122.999972pt;}
.h4{height:1122.999982pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:241.090800pt;}
.w5{width:241.090809pt;}
.w3{width:364.137210pt;}
.w1{width:364.137213pt;}
.w4{width:793.999967pt;}
.w0{width:794.000000pt;}
.x2{left:-0.899387pt;}
.x0{left:0.000000pt;}
.xa{left:35.997600pt;}
.x3{left:54.369880pt;}
.x1{left:79.399987pt;}
.xb{left:95.319023pt;}
.x7{left:106.597735pt;}
.xc{left:129.957080pt;}
.x5{left:177.664267pt;}
.x9{left:276.622267pt;}
.xd{left:312.467418pt;}
.x6{left:345.266676pt;}
.xe{left:350.628040pt;}
.x4{left:597.265333pt;}
.x8{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; }
  