
    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_5376ed5466571d1eadfec2a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907227;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_b14fef073fe9dbba6dd63597.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.072266;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_8e6680d2a11bdfc5323a2688.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0cc8487cb83828a33102c633.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_f1cec0e3d657d1f502782f11.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_262843a90781bfc7c323bd1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894531;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_79bf8731ffa22ace1fcfc082.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939941;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_5fbf441454d42887fb662fe2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.892578;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_4b09691ad6901ce2323b68b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_08bce99ee28d8a888896caac.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.118000;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_078a765ff01c11423bd38a59.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.116000;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_6773c9b5c099886b4a147033.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_7cb23429344ccabf5e098b1a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_0cfda38fcfe8511a0f6fc16a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.688965;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_e4aa2d182eef319c942b46ea.woff2')format("woff");}.fff{font-family:fff;line-height:1.100000;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_5e9fc2b036356edc6f81a3b6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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_bde20d343592d4a4650424e0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;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_79c641242c1d0c85714475f1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.894531;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_9226ecad3a4fd4dfda93ca17.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.909668;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_2fca7a1fa06c7da7a3c104e1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.688965;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_4881bf4e80c3bbcc8507fa8e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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_ba6045a0511b445fd04e9242.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.688965;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_96b50ef782c1ca6a56a85cb6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;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_586ebe31b66643130d1528f1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.359375;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_8068951fa15c79f0d596244e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;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_4c7d7e5061d3dccc19a219e0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;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:ff1b;src:url('chunks/assets/font_5afed6c075289b3a3dc78b57.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;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;}
.m4{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v2{vertical-align:-20.944200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.944800px;}
.lsc{letter-spacing:-0.373905px;}
.ls10{letter-spacing:-0.367874px;}
.lsb{letter-spacing:-0.361843px;}
.ls9{letter-spacing:-0.355812px;}
.ls19{letter-spacing:-0.355413px;}
.ls13{letter-spacing:-0.132676px;}
.ls12{letter-spacing:-0.072369px;}
.ls4{letter-spacing:-0.060127px;}
.ls14{letter-spacing:-0.042215px;}
.ls5{letter-spacing:-0.036076px;}
.lse{letter-spacing:-0.012061px;}
.ls6{letter-spacing:-0.012025px;}
.lsa{letter-spacing:-0.006031px;}
.lsd{letter-spacing:-0.004803px;}
.ls7{letter-spacing:-0.003900px;}
.ls8{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.004803px;}
.ls0{letter-spacing:0.006031px;}
.ls1{letter-spacing:0.007203px;}
.ls2{letter-spacing:0.007803px;}
.ls16{letter-spacing:0.012061px;}
.ls3{letter-spacing:0.060307px;}
.ls11{letter-spacing:0.367874px;}
.ls17{letter-spacing:7.588550px;}
.lsf{letter-spacing:23.519808px;}
.ls15{letter-spacing:63.985939px;}
.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;}
}
.ws3{word-spacing:-15.143138px;}
.ws2{word-spacing:-15.137107px;}
.ws7{word-spacing:-15.125046px;}
.ws4{word-spacing:-14.763203px;}
.ws11{word-spacing:-11.555729px;}
.wsc{word-spacing:-0.428181px;}
.wsa{word-spacing:-0.349782px;}
.wsd{word-spacing:-0.086077px;}
.ws6{word-spacing:-0.048029px;}
.ws5{word-spacing:-0.043226px;}
.ws1{word-spacing:-0.039001px;}
.ws0{word-spacing:-0.035101px;}
.ws8{word-spacing:0.000000px;}
.wsb{word-spacing:0.004803px;}
.ws9{word-spacing:0.006031px;}
.wse{word-spacing:0.012061px;}
.ws10{word-spacing:0.018092px;}
.wsf{word-spacing:0.379935px;}
._13{margin-left:-1861.312296px;}
._1{margin-left:-7.215192px;}
._d{margin-left:-3.999886px;}
._0{margin-left:-2.513292px;}
._2{margin-left:-1.073468px;}
._3{width:1.288890px;}
._7{width:3.064237px;}
._5{width:4.308183px;}
._4{width:5.446466px;}
._b{width:6.507902px;}
._8{width:7.593353px;}
._f{width:9.027311px;}
._6{width:10.840100px;}
._10{width:12.652451px;}
._c{width:13.707420px;}
._9{width:14.821688px;}
._a{width:16.025492px;}
._e{width:17.318173px;}
._15{width:20.275281px;}
._11{width:21.294472px;}
._14{width:22.434278px;}
._12{width:150.210504px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:6.139200px;}
.fs3{font-size:24.195000px;}
.fs2{font-size:39.001200px;}
.fs6{font-size:47.820600px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:48.028800px;}
.fs1{font-size:60.307200px;}
.fs0{font-size:120.253200px;}
.y0{bottom:0.000000px;}
.y28{bottom:53.219100px;}
.y27{bottom:58.455450px;}
.y26{bottom:70.468798px;}
.y58{bottom:84.654635px;}
.y94{bottom:89.025449px;}
.y76{bottom:94.089346px;}
.ybe{bottom:96.690900px;}
.y25{bottom:97.637191px;}
.ybd{bottom:100.715834px;}
.y57{bottom:101.902494px;}
.y93{bottom:106.363769px;}
.y75{bottom:111.427666px;}
.ybc{bottom:114.524114px;}
.y24{bottom:114.975511px;}
.y92{bottom:123.702089px;}
.y56{bottom:128.166280px;}
.ybb{bottom:128.428452px;}
.y74{bottom:128.765986px;}
.y91{bottom:140.949948px;}
.yba{bottom:142.236732px;}
.y73{bottom:146.013845px;}
.y23{bottom:150.270300px;}
.yb9{bottom:156.045012px;}
.y90{bottom:158.288268px;}
.y72{bottom:163.352165px;}
.y55{bottom:163.551529px;}
.yb8{bottom:169.949350px;}
.y8f{bottom:175.626588px;}
.y71{bottom:180.690485px;}
.y54{bottom:180.889849px;}
.yb7{bottom:183.757630px;}
.y8e{bottom:192.874447px;}
.yb6{bottom:197.565910px;}
.y70{bottom:197.938344px;}
.y53{bottom:198.228169px;}
.y22{bottom:203.116663px;}
.y8d{bottom:211.298297px;}
.yb5{bottom:211.470247px;}
.y6f{bottom:215.276664px;}
.y52{bottom:215.476028px;}
.y21{bottom:217.021001px;}
.yb4{bottom:225.278527px;}
.y8c{bottom:228.636617px;}
.y6e{bottom:232.614984px;}
.y51{bottom:232.814348px;}
.yb3{bottom:239.086807px;}
.y8b{bottom:246.970006px;}
.y20{bottom:248.888110px;}
.y50{bottom:250.152668px;}
.yb2{bottom:252.991145px;}
.y1f{bottom:262.696390px;}
.y8a{bottom:265.393855px;}
.yb1{bottom:266.799425px;}
.y4f{bottom:267.400528px;}
.y6d{bottom:267.909773px;}
.y1e{bottom:276.600727px;}
.yb0{bottom:280.607705px;}
.y89{bottom:282.641714px;}
.y1d{bottom:290.409007px;}
.y4e{bottom:293.754774px;}
.yaf{bottom:294.512042px;}
.y88{bottom:299.980034px;}
.y6c{bottom:303.295022px;}
.y1c{bottom:304.217287px;}
.yae{bottom:308.320322px;}
.y87{bottom:317.318354px;}
.y1b{bottom:318.121625px;}
.y6b{bottom:320.633342px;}
.yad{bottom:322.128602px;}
.y4d{bottom:329.049563px;}
.y1a{bottom:331.929905px;}
.y86{bottom:334.566214px;}
.yac{bottom:336.032940px;}
.y6a{bottom:337.881202px;}
.y19{bottom:345.738185px;}
.yab{bottom:349.841220px;}
.y85{bottom:351.904534px;}
.y69{bottom:355.219522px;}
.y18{bottom:359.642522px;}
.yaa{bottom:363.649500px;}
.y4c{bottom:364.434812px;}
.y84{bottom:369.242854px;}
.y68{bottom:372.467381px;}
.y17{bottom:373.450802px;}
.y4b{bottom:381.773132px;}
.y83{bottom:386.490713px;}
.y16{bottom:387.259082px;}
.y67{bottom:389.805701px;}
.ya9{bottom:396.081016px;}
.y15{bottom:401.163420px;}
.y66{bottom:407.144021px;}
.y14{bottom:414.971700px;}
.y4a{bottom:417.067921px;}
.y82{bottom:421.875962px;}
.y65{bottom:424.391880px;}
.ya8{bottom:431.466265px;}
.y64{bottom:441.730200px;}
.y81{bottom:457.261212px;}
.y63{bottom:459.068520px;}
.y13{bottom:465.528600px;}
.ya7{bottom:466.761054px;}
.y49{bottom:470.515177px;}
.y80{bottom:474.509071px;}
.y62{bottom:476.316379px;}
.y12{bottom:482.862300px;}
.y48{bottom:487.853497px;}
.y7f{bottom:491.847391px;}
.y11{bottom:500.105850px;}
.y61{bottom:502.670626px;}
.y47{bottom:505.191817px;}
.y7e{bottom:509.185711px;}
.y10{bottom:517.417372px;}
.ya6{bottom:520.208310px;}
.y46{bottom:522.439676px;}
.yf{bottom:534.665231px;}
.ya5{bottom:537.546630px;}
.y60{bottom:538.055875px;}
.y45{bottom:539.777996px;}
.y7d{bottom:544.480500px;}
.ye{bottom:552.003551px;}
.ya4{bottom:554.794489px;}
.y5f{bottom:555.303734px;}
.y44{bottom:557.116316px;}
.yd{bottom:569.341871px;}
.ya3{bottom:572.132809px;}
.y5e{bottom:572.642054px;}
.y43{bottom:574.364176px;}
.y7c{bottom:579.242970px;}
.yc{bottom:586.589730px;}
.ya2{bottom:589.471129px;}
.y5d{bottom:589.980374px;}
.y42{bottom:591.702496px;}
.y7b{bottom:593.051250px;}
.ya1{bottom:606.718988px;}
.y5c{bottom:607.228234px;}
.y41{bottom:608.950355px;}
.yb{bottom:609.164250px;}
.y7a{bottom:610.292190px;}
.ya0{bottom:624.057308px;}
.y5b{bottom:624.566554px;}
.y40{bottom:626.288675px;}
.ya{bottom:626.498100px;}
.y9{bottom:638.500830px;}
.y9f{bottom:641.395628px;}
.y3f{bottom:643.626995px;}
.y5a{bottom:650.920800px;}
.y9e{bottom:658.643488px;}
.y3e{bottom:660.874854px;}
.y8{bottom:661.075350px;}
.y9d{bottom:675.981808px;}
.y3d{bottom:678.213174px;}
.y7{bottom:678.409200px;}
.y59{bottom:685.678650px;}
.y6{bottom:690.411930px;}
.y9c{bottom:693.320128px;}
.y3c{bottom:695.551494px;}
.y5{bottom:707.745780px;}
.y9b{bottom:710.567987px;}
.y3b{bottom:712.799353px;}
.y4{bottom:725.084100px;}
.y9a{bottom:727.906307px;}
.y3a{bottom:730.137673px;}
.y99{bottom:745.244627px;}
.y39{bottom:747.475993px;}
.y98{bottom:762.492486px;}
.y38{bottom:764.723852px;}
.y3{bottom:769.691570px;}
.y97{bottom:779.830806px;}
.y37{bottom:782.062172px;}
.y96{bottom:797.169126px;}
.y36{bottom:799.400492px;}
.y2{bottom:804.354555px;}
.y35{bottom:816.648352px;}
.y95{bottom:832.463915px;}
.y79{bottom:832.478992px;}
.y34{bottom:833.986672px;}
.y1{bottom:838.927350px;}
.y78{bottom:849.817312px;}
.y33{bottom:851.324992px;}
.y32{bottom:868.572851px;}
.y2e{bottom:882.284100px;}
.y77{bottom:885.112100px;}
.y31{bottom:885.911171px;}
.y2d{bottom:897.392100px;}
.y30{bottom:903.249491px;}
.y2c{bottom:911.792100px;}
.y2f{bottom:920.497350px;}
.y2b{bottom:926.192100px;}
.y2a{bottom:940.592100px;}
.y29{bottom:954.992100px;}
.hb{height:4.091801px;}
.h5{height:27.079935px;}
.h7{height:33.582637px;}
.h8{height:40.813369px;}
.h9{height:41.664000px;}
.h6{height:41.902903px;}
.ha{height:43.104000px;}
.h3{height:51.649819px;}
.h4{height:51.667699px;}
.h2{height:83.437401px;}
.h1{height:1020.000000px;}
.h0{height:1020.004050px;}
.w0{width:680.995950px;}
.w1{width:681.000000px;}
.x0{left:0.000000px;}
.x13{left:76.334850px;}
.xd{left:78.146017px;}
.xa{left:83.286300px;}
.x1{left:84.640500px;}
.x8{left:89.335200px;}
.x10{left:93.397800px;}
.xc{left:95.658287px;}
.xb{left:98.002050px;}
.xf{left:100.089102px;}
.x15{left:103.238250px;}
.x16{left:108.113400px;}
.x4{left:116.960850px;}
.x2{left:120.491701px;}
.x5{left:125.894870px;}
.x1f{left:131.795394px;}
.x1d{left:138.802500px;}
.x12{left:140.343450px;}
.x3{left:143.961766px;}
.x1a{left:147.039000px;}
.x7{left:160.837050px;}
.x1b{left:197.019000px;}
.x11{left:201.192300px;}
.x6{left:211.481453px;}
.x17{left:215.691000px;}
.x9{left:230.899934px;}
.x14{left:319.924190px;}
.xe{left:323.619208px;}
.x1c{left:481.023000px;}
.x18{left:497.703000px;}
.x19{left:502.899000px;}
.x1e{left:599.261468px;}
@media print{
.v2{vertical-align:-18.617067pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.617600pt;}
.lsc{letter-spacing:-0.332360pt;}
.ls10{letter-spacing:-0.326999pt;}
.lsb{letter-spacing:-0.321638pt;}
.ls9{letter-spacing:-0.316278pt;}
.ls19{letter-spacing:-0.315923pt;}
.ls13{letter-spacing:-0.117934pt;}
.ls12{letter-spacing:-0.064328pt;}
.ls4{letter-spacing:-0.053446pt;}
.ls14{letter-spacing:-0.037524pt;}
.ls5{letter-spacing:-0.032068pt;}
.lse{letter-spacing:-0.010721pt;}
.ls6{letter-spacing:-0.010689pt;}
.lsa{letter-spacing:-0.005361pt;}
.lsd{letter-spacing:-0.004269pt;}
.ls7{letter-spacing:-0.003467pt;}
.ls8{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.004269pt;}
.ls0{letter-spacing:0.005361pt;}
.ls1{letter-spacing:0.006403pt;}
.ls2{letter-spacing:0.006936pt;}
.ls16{letter-spacing:0.010721pt;}
.ls3{letter-spacing:0.053606pt;}
.ls11{letter-spacing:0.326999pt;}
.ls17{letter-spacing:6.745378pt;}
.lsf{letter-spacing:20.906496pt;}
.ls15{letter-spacing:56.876390pt;}
.ws3{word-spacing:-13.460567pt;}
.ws2{word-spacing:-13.455206pt;}
.ws7{word-spacing:-13.444485pt;}
.ws4{word-spacing:-13.122847pt;}
.ws11{word-spacing:-10.271759pt;}
.wsc{word-spacing:-0.380605pt;}
.wsa{word-spacing:-0.310917pt;}
.wsd{word-spacing:-0.076513pt;}
.ws6{word-spacing:-0.042692pt;}
.ws5{word-spacing:-0.038423pt;}
.ws1{word-spacing:-0.034668pt;}
.ws0{word-spacing:-0.031201pt;}
.ws8{word-spacing:0.000000pt;}
.wsb{word-spacing:0.004269pt;}
.ws9{word-spacing:0.005361pt;}
.wse{word-spacing:0.010721pt;}
.ws10{word-spacing:0.016082pt;}
.wsf{word-spacing:0.337720pt;}
._13{margin-left:-1654.499819pt;}
._1{margin-left:-6.413504pt;}
._d{margin-left:-3.555454pt;}
._0{margin-left:-2.234037pt;}
._2{margin-left:-0.954194pt;}
._3{width:1.145680pt;}
._7{width:2.723767pt;}
._5{width:3.829496pt;}
._4{width:4.841303pt;}
._b{width:5.784802pt;}
._8{width:6.749647pt;}
._f{width:8.024276pt;}
._6{width:9.635645pt;}
._10{width:11.246623pt;}
._c{width:12.184373pt;}
._9{width:13.174833pt;}
._a{width:14.244882pt;}
._e{width:15.393932pt;}
._15{width:18.022472pt;}
._11{width:18.928420pt;}
._14{width:19.941581pt;}
._12{width:133.520448pt;}
.fs7{font-size:5.457067pt;}
.fs3{font-size:21.506667pt;}
.fs2{font-size:34.667733pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:42.692267pt;}
.fs1{font-size:53.606400pt;}
.fs0{font-size:106.891733pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:47.305867pt;}
.y27{bottom:51.960400pt;}
.y26{bottom:62.638931pt;}
.y58{bottom:75.248564pt;}
.y94{bottom:79.133732pt;}
.y76{bottom:83.634974pt;}
.ybe{bottom:85.947467pt;}
.y25{bottom:86.788614pt;}
.ybd{bottom:89.525186pt;}
.y57{bottom:90.579995pt;}
.y93{bottom:94.545572pt;}
.y75{bottom:99.046814pt;}
.ybc{bottom:101.799213pt;}
.y24{bottom:102.200454pt;}
.y92{bottom:109.957412pt;}
.y56{bottom:113.925582pt;}
.ybb{bottom:114.158624pt;}
.y74{bottom:114.458654pt;}
.y91{bottom:125.288843pt;}
.yba{bottom:126.432651pt;}
.y73{bottom:129.790084pt;}
.y23{bottom:133.573600pt;}
.yb9{bottom:138.706677pt;}
.y90{bottom:140.700683pt;}
.y72{bottom:145.201924pt;}
.y55{bottom:145.379137pt;}
.yb8{bottom:151.066089pt;}
.y8f{bottom:156.112523pt;}
.y71{bottom:160.613764pt;}
.y54{bottom:160.790977pt;}
.yb7{bottom:163.340115pt;}
.y8e{bottom:171.443953pt;}
.yb6{bottom:175.614142pt;}
.y70{bottom:175.945195pt;}
.y53{bottom:176.202817pt;}
.y22{bottom:180.548145pt;}
.y8d{bottom:187.820708pt;}
.yb5{bottom:187.973553pt;}
.y6f{bottom:191.357035pt;}
.y52{bottom:191.534247pt;}
.y21{bottom:192.907556pt;}
.yb4{bottom:200.247580pt;}
.y8c{bottom:203.232548pt;}
.y6e{bottom:206.768875pt;}
.y51{bottom:206.946087pt;}
.yb3{bottom:212.521606pt;}
.y8b{bottom:219.528894pt;}
.y20{bottom:221.233875pt;}
.y50{bottom:222.357927pt;}
.yb2{bottom:224.881018pt;}
.y1f{bottom:233.507902pt;}
.y8a{bottom:235.905649pt;}
.yb1{bottom:237.155044pt;}
.y4f{bottom:237.689358pt;}
.y6d{bottom:238.142020pt;}
.y1e{bottom:245.867313pt;}
.yb0{bottom:249.429071pt;}
.y89{bottom:251.237079pt;}
.y1d{bottom:258.141340pt;}
.y4e{bottom:261.115355pt;}
.yaf{bottom:261.788482pt;}
.y88{bottom:266.648919pt;}
.y6c{bottom:269.595575pt;}
.y1c{bottom:270.415366pt;}
.yae{bottom:274.062509pt;}
.y87{bottom:282.060759pt;}
.y1b{bottom:282.774778pt;}
.y6b{bottom:285.007415pt;}
.yad{bottom:286.336535pt;}
.y4d{bottom:292.488500pt;}
.y1a{bottom:295.048804pt;}
.y86{bottom:297.392190pt;}
.yac{bottom:298.695947pt;}
.y6a{bottom:300.338846pt;}
.y19{bottom:307.322831pt;}
.yab{bottom:310.969973pt;}
.y85{bottom:312.804030pt;}
.y69{bottom:315.750686pt;}
.y18{bottom:319.682242pt;}
.yaa{bottom:323.244000pt;}
.y4c{bottom:323.942055pt;}
.y84{bottom:328.215870pt;}
.y68{bottom:331.082116pt;}
.y17{bottom:331.956269pt;}
.y4b{bottom:339.353895pt;}
.y83{bottom:343.547300pt;}
.y16{bottom:344.230295pt;}
.y67{bottom:346.493956pt;}
.ya9{bottom:352.072014pt;}
.y15{bottom:356.589707pt;}
.y66{bottom:361.905796pt;}
.y14{bottom:368.863733pt;}
.y4a{bottom:370.727041pt;}
.y82{bottom:375.000855pt;}
.y65{bottom:377.237227pt;}
.ya8{bottom:383.525569pt;}
.y64{bottom:392.649067pt;}
.y81{bottom:406.454411pt;}
.y63{bottom:408.060907pt;}
.y13{bottom:413.803200pt;}
.ya7{bottom:414.898715pt;}
.y49{bottom:418.235713pt;}
.y80{bottom:421.785841pt;}
.y62{bottom:423.392337pt;}
.y12{bottom:429.210933pt;}
.y48{bottom:433.647553pt;}
.y7f{bottom:437.197681pt;}
.y11{bottom:444.538533pt;}
.y61{bottom:446.818334pt;}
.y47{bottom:449.059393pt;}
.y7e{bottom:452.609521pt;}
.y10{bottom:459.926553pt;}
.ya6{bottom:462.407387pt;}
.y46{bottom:464.390823pt;}
.yf{bottom:475.257983pt;}
.ya5{bottom:477.819227pt;}
.y60{bottom:478.271889pt;}
.y45{bottom:479.802663pt;}
.y7d{bottom:483.982667pt;}
.ye{bottom:490.669823pt;}
.ya4{bottom:493.150657pt;}
.y5f{bottom:493.603319pt;}
.y44{bottom:495.214503pt;}
.yd{bottom:506.081663pt;}
.ya3{bottom:508.562497pt;}
.y5e{bottom:509.015159pt;}
.y43{bottom:510.545934pt;}
.y7c{bottom:514.882640pt;}
.yc{bottom:521.413093pt;}
.ya2{bottom:523.974337pt;}
.y5d{bottom:524.426999pt;}
.y42{bottom:525.957774pt;}
.y7b{bottom:527.156667pt;}
.ya1{bottom:539.305767pt;}
.y5c{bottom:539.758430pt;}
.y41{bottom:541.289204pt;}
.yb{bottom:541.479333pt;}
.y7a{bottom:542.481947pt;}
.ya0{bottom:554.717607pt;}
.y5b{bottom:555.170270pt;}
.y40{bottom:556.701044pt;}
.ya{bottom:556.887200pt;}
.y9{bottom:567.556293pt;}
.y9f{bottom:570.129447pt;}
.y3f{bottom:572.112884pt;}
.y5a{bottom:578.596267pt;}
.y9e{bottom:585.460878pt;}
.y3e{bottom:587.444315pt;}
.y8{bottom:587.622533pt;}
.y9d{bottom:600.872718pt;}
.y3d{bottom:602.856155pt;}
.y7{bottom:603.030400pt;}
.y59{bottom:609.492133pt;}
.y6{bottom:613.699493pt;}
.y9c{bottom:616.284558pt;}
.y3c{bottom:618.267995pt;}
.y5{bottom:629.107360pt;}
.y9b{bottom:631.615988pt;}
.y3b{bottom:633.599425pt;}
.y4{bottom:644.519200pt;}
.y9a{bottom:647.027828pt;}
.y3a{bottom:649.011265pt;}
.y99{bottom:662.439668pt;}
.y39{bottom:664.423105pt;}
.y98{bottom:677.771099pt;}
.y38{bottom:679.754535pt;}
.y3{bottom:684.170285pt;}
.y97{bottom:693.182939pt;}
.y37{bottom:695.166375pt;}
.y96{bottom:708.594779pt;}
.y36{bottom:710.578215pt;}
.y2{bottom:714.981827pt;}
.y35{bottom:725.909646pt;}
.y95{bottom:739.967924pt;}
.y79{bottom:739.981326pt;}
.y34{bottom:741.321486pt;}
.y1{bottom:745.713200pt;}
.y78{bottom:755.393166pt;}
.y33{bottom:756.733326pt;}
.y32{bottom:772.064756pt;}
.y2e{bottom:784.252533pt;}
.y77{bottom:786.766311pt;}
.y31{bottom:787.476596pt;}
.y2d{bottom:797.681867pt;}
.y30{bottom:802.888436pt;}
.y2c{bottom:810.481867pt;}
.y2f{bottom:818.219867pt;}
.y2b{bottom:823.281867pt;}
.y2a{bottom:836.081867pt;}
.y29{bottom:848.881867pt;}
.hb{height:3.637156pt;}
.h5{height:24.071053pt;}
.h7{height:29.851233pt;}
.h8{height:36.278550pt;}
.h9{height:37.034667pt;}
.h6{height:37.247025pt;}
.ha{height:38.314667pt;}
.h3{height:45.910950pt;}
.h4{height:45.926843pt;}
.h2{height:74.166579pt;}
.h1{height:906.666667pt;}
.h0{height:906.670267pt;}
.w0{width:605.329733pt;}
.w1{width:605.333333pt;}
.x0{left:0.000000pt;}
.x13{left:67.853200pt;}
.xd{left:69.463126pt;}
.xa{left:74.032267pt;}
.x1{left:75.236000pt;}
.x8{left:79.409067pt;}
.x10{left:83.020267pt;}
.xc{left:85.029588pt;}
.xb{left:87.112933pt;}
.xf{left:88.968091pt;}
.x15{left:91.767333pt;}
.x16{left:96.100800pt;}
.x4{left:103.965200pt;}
.x2{left:107.103734pt;}
.x5{left:111.906551pt;}
.x1f{left:117.151461pt;}
.x1d{left:123.380000pt;}
.x12{left:124.749733pt;}
.x3{left:127.966014pt;}
.x1a{left:130.701333pt;}
.x7{left:142.966267pt;}
.x1b{left:175.128000pt;}
.x11{left:178.837600pt;}
.x6{left:187.983514pt;}
.x17{left:191.725333pt;}
.x9{left:205.244386pt;}
.x14{left:284.377058pt;}
.xe{left:287.661518pt;}
.x1c{left:427.576000pt;}
.x18{left:442.402667pt;}
.x19{left:447.021333pt;}
.x1e{left:532.676861pt;}
}




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