
    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_5efa0d731b2b37b388d63f4b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_31deb35064c29b09b0ba7219.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_1327f9a09bd20262b9b3c4ff.woff')format("woff");}.ff3{font-family:ff3;line-height:0.908000;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_28e099586c2a62d9b2c0b72d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.715000;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_786a777b75868c9c96761ff7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.898000;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_cb30e9af4bdcb461e57fdd2c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.737000;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_6d0c3dbbd7d9fbc5947d003f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_82421eea2207106da10f0ab2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_6d9af08be8e93be0f16b4251.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_de72462f5c12834d813ef778.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_8e7d46b0dde28c3bb5eed74e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.926000;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_669947420f99698a5d88e55c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_058f04bd4fa99a5ce1ad2d3d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.773000;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_45cec17282616eb4d7fb8830.woff')format("woff");}.ffe{font-family:ffe;line-height:0.525000;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_9375b47617c16acf345200a2.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;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_df0e5a424b18fe16f18fa7a4.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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_792398677f6839ecb9af435a.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_4bfffbf6ed35fa16c714258a.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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_ed61ff5b474fbe925bf74982.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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_db533abca58f97593b244d1c.woff')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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_31a602a5ff703b47308f54c7.woff')format("woff");}.ff15{font-family:ff15;line-height:0.723000;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_bf0100b6ce78e6069a2d0ede.woff')format("woff");}.ff16{font-family:ff16;line-height:1.000000;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_329534c91802df0c852eeb34.woff')format("woff");}.ff17{font-family:ff17;line-height:1.000000;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_7eb529c7af870fbb2ccd3294.woff')format("woff");}.ff18{font-family:ff18;line-height:0.928000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.259446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259446,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-30.660000px;}
.v6{vertical-align:-21.690000px;}
.v4{vertical-align:-16.878000px;}
.v5{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.296000px;}
.v2{vertical-align:21.696000px;}
.v3{vertical-align:22.854000px;}
.ls13{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000538px;}
.ls2a{letter-spacing:0.000557px;}
.lsd{letter-spacing:0.001690px;}
.ls15{letter-spacing:0.003269px;}
.ls29{letter-spacing:0.004293px;}
.ls22{letter-spacing:0.038633px;}
.ls28{letter-spacing:0.042926px;}
.ls8{letter-spacing:2.985193px;}
.ls9{letter-spacing:2.985949px;}
.lsb{letter-spacing:2.986982px;}
.ls1{letter-spacing:2.988532px;}
.lse{letter-spacing:2.988564px;}
.ls1a{letter-spacing:2.994532px;}
.ls10{letter-spacing:4.688646px;}
.lsa{letter-spacing:12.955409px;}
.ls12{letter-spacing:14.279468px;}
.ls19{letter-spacing:16.602538px;}
.ls0{letter-spacing:16.940367px;}
.ls5{letter-spacing:16.976270px;}
.ls26{letter-spacing:18.171034px;}
.lsc{letter-spacing:18.264538px;}
.ls23{letter-spacing:18.315638px;}
.ls2d{letter-spacing:18.793309px;}
.ls6{letter-spacing:19.023723px;}
.ls27{letter-spacing:19.230136px;}
.ls24{letter-spacing:19.387409px;}
.ls25{letter-spacing:19.393564px;}
.ls2e{letter-spacing:19.561309px;}
.ls2c{letter-spacing:19.839809px;}
.ls7{letter-spacing:20.078172px;}
.ls2f{letter-spacing:20.607809px;}
.ls1f{letter-spacing:20.913723px;}
.ls1b{letter-spacing:21.459440px;}
.ls21{letter-spacing:21.818094px;}
.lsf{letter-spacing:21.960538px;}
.ls20{letter-spacing:21.968172px;}
.ls2b{letter-spacing:22.451950px;}
.ls11{letter-spacing:23.432035px;}
.ls18{letter-spacing:23.580538px;}
.ls1d{letter-spacing:24.375723px;}
.ls1c{letter-spacing:24.388445px;}
.ls1e{letter-spacing:25.436172px;}
.ls2{letter-spacing:27.315723px;}
.ls16{letter-spacing:28.572737px;}
.ls3{letter-spacing:35.511723px;}
.ls4{letter-spacing:36.566172px;}
.ls14{letter-spacing:1352.668200px;}
.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;}
}
.ws1f{word-spacing:-47.654765px;}
.ws1c{word-spacing:-38.937826px;}
.ws8{word-spacing:-16.605662px;}
.ws6c{word-spacing:-15.359443px;}
.ws77{word-spacing:-13.531962px;}
.ws22{word-spacing:-6.639062px;}
.ws4a{word-spacing:-6.623136px;}
.ws28{word-spacing:-2.438844px;}
.ws27{word-spacing:-2.423040px;}
.ws26{word-spacing:-2.379069px;}
.ws25{word-spacing:-1.243332px;}
.ws60{word-spacing:-1.123781px;}
.ws11{word-spacing:-0.944454px;}
.ws43{word-spacing:-0.526025px;}
.ws3d{word-spacing:-0.296647px;}
.ws3f{word-spacing:-0.286923px;}
.ws70{word-spacing:-0.085851px;}
.ws1e{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.047821px;}
.ws2e{word-spacing:0.000000px;}
.ws65{word-spacing:0.071731px;}
.ws19{word-spacing:0.131506px;}
.ws5b{word-spacing:0.251058px;}
.ws18{word-spacing:0.310833px;}
.ws17{word-spacing:0.370609px;}
.ws24{word-spacing:0.609711px;}
.ws14{word-spacing:0.669487px;}
.ws63{word-spacing:0.729262px;}
.ws78{word-spacing:1.364075px;}
.ws7e{word-spacing:1.371859px;}
.ws7f{word-spacing:1.425658px;}
.ws66{word-spacing:1.506345px;}
.ws47{word-spacing:1.685672px;}
.ws3a{word-spacing:1.864999px;}
.ws56{word-spacing:2.044326px;}
.ws6b{word-spacing:2.071238px;}
.ws80{word-spacing:2.178835px;}
.ws81{word-spacing:2.555424px;}
.ws79{word-spacing:2.577516px;}
.ws5c{word-spacing:2.701857px;}
.ws3e{word-spacing:2.761399px;}
.ws5f{word-spacing:2.761633px;}
.ws5{word-spacing:3.039610px;}
.ws6a{word-spacing:3.093408px;}
.ws75{word-spacing:3.121473px;}
.wse{word-spacing:3.299613px;}
.ws4d{word-spacing:3.598491px;}
.ws54{word-spacing:4.016920px;}
.ws52{word-spacing:4.017703px;}
.ws7c{word-spacing:4.115578px;}
.ws21{word-spacing:4.315798px;}
.ws40{word-spacing:4.495125px;}
.ws44{word-spacing:4.614676px;}
.ws57{word-spacing:4.674452px;}
.ws4f{word-spacing:4.853779px;}
.wsd{word-spacing:4.913554px;}
.ws67{word-spacing:5.012585px;}
.ws69{word-spacing:5.033106px;}
.ws59{word-spacing:5.152657px;}
.ws5a{word-spacing:5.212432px;}
.ws16{word-spacing:5.391759px;}
.ws55{word-spacing:5.498589px;}
.ws42{word-spacing:5.511310px;}
.ws7b{word-spacing:5.621933px;}
.ws50{word-spacing:5.630862px;}
.ws9{word-spacing:5.869964px;}
.ws48{word-spacing:6.017756px;}
.ws12{word-spacing:6.168842px;}
.ws20{word-spacing:6.467720px;}
.ws15{word-spacing:6.527496px;}
.ws3c{word-spacing:6.699621px;}
.ws2b{word-spacing:6.766598px;}
.ws2c{word-spacing:6.826374px;}
.ws4b{word-spacing:6.839437px;}
.ws29{word-spacing:6.945925px;}
.ws2a{word-spacing:7.005700px;}
.ws6{word-spacing:7.280717px;}
.ws36{word-spacing:7.483905px;}
.ws34{word-spacing:7.503595px;}
.ws38{word-spacing:7.663232px;}
.ws1a{word-spacing:7.782783px;}
.ws37{word-spacing:7.842559px;}
.wsb{word-spacing:8.423118px;}
.wsa{word-spacing:8.440315px;}
.ws2d{word-spacing:8.500090px;}
.ws45{word-spacing:9.217398px;}
.ws46{word-spacing:9.277173px;}
.wsc{word-spacing:10.114032px;}
.ws1b{word-spacing:10.353134px;}
.ws13{word-spacing:10.472685px;}
.ws31{word-spacing:11.967075px;}
.ws1d{word-spacing:12.086626px;}
.ws7d{word-spacing:12.292934px;}
.ws35{word-spacing:13.677621px;}
.ws58{word-spacing:14.059221px;}
.ws39{word-spacing:14.391621px;}
.ws23{word-spacing:14.761399px;}
.ws73{word-spacing:16.500636px;}
.ws10{word-spacing:16.629572px;}
.ws6f{word-spacing:16.659461px;}
.ws71{word-spacing:16.736727px;}
.ws1{word-spacing:16.880672px;}
.ws3{word-spacing:16.889078px;}
.ws72{word-spacing:17.964402px;}
.ws0{word-spacing:18.028366px;}
.ws7{word-spacing:18.315290px;}
.ws76{word-spacing:21.312315px;}
.ws4e{word-spacing:21.415331px;}
.ws74{word-spacing:21.895949px;}
.ws6e{word-spacing:21.982457px;}
.ws30{word-spacing:22.128927px;}
.ws2f{word-spacing:22.535401px;}
.ws61{word-spacing:22.555331px;}
.ws4{word-spacing:22.834279px;}
.ws6d{word-spacing:23.137014px;}
.ws64{word-spacing:23.833331px;}
.ws7a{word-spacing:24.101683px;}
.ws62{word-spacing:24.397331px;}
.ws3b{word-spacing:25.561331px;}
.ws5d{word-spacing:26.443331px;}
.ws5e{word-spacing:26.449331px;}
.ws49{word-spacing:26.620025px;}
.ws68{word-spacing:26.848859px;}
.ws4c{word-spacing:27.286025px;}
.ws53{word-spacing:27.703331px;}
.ws41{word-spacing:28.213331px;}
.ws51{word-spacing:29.359331px;}
.ws33{word-spacing:35.671331px;}
.ws32{word-spacing:35.928966px;}
.wsf{word-spacing:69.899197px;}
._18{margin-left:-31.944098px;}
._17{margin-left:-28.991166px;}
._19{margin-left:-27.377218px;}
._1e{margin-left:-26.217760px;}
._2{margin-left:-6.355166px;}
._1a{margin-left:-5.224412px;}
._3{margin-left:-4.208213px;}
._5{margin-left:-2.630133px;}
._0{margin-left:-1.434618px;}
._1{width:1.434618px;}
._11{width:3.085041px;}
._13{width:9.946428px;}
._15{width:15.406300px;}
._f{width:17.753360px;}
._1d{width:19.606397px;}
._b{width:20.921467px;}
._12{width:21.937652px;}
._1b{width:24.089573px;}
._c{width:25.129683px;}
._7{width:26.301264px;}
._8{width:28.453186px;}
._10{width:29.588929px;}
._a{width:31.143088px;}
._e{width:32.757029px;}
._1c{width:34.194202px;}
._d{width:35.446934px;}
._16{width:37.419526px;}
._14{width:39.870325px;}
._6{width:41.962471px;}
._1f{width:45.130578px;}
._9{width:46.983622px;}
._22{width:64.377955px;}
._4{width:65.772445px;}
._20{width:515.087241px;}
._21{width:573.795843px;}
.fc2{color:transparent;}
.fc1{color:rgb(46,49,146);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs7{font-size:42.925692px;}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs6{font-size:55.190703px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:61.322593px;}
.y67{bottom:-50.587169px;}
.y66{bottom:-33.723240px;}
.y65{bottom:-16.859312px;}
.y0{bottom:0.000000px;}
.y6a{bottom:21.507000px;}
.y69{bottom:37.944000px;}
.y68{bottom:54.382500px;}
.y63{bottom:65.818500px;}
.y30{bottom:97.935000px;}
.y62{bottom:116.595000px;}
.y2f{bottom:119.119500px;}
.y6f{bottom:133.236000px;}
.y2e{bottom:136.389000px;}
.y61{bottom:136.708500px;}
.y6e{bottom:149.674500px;}
.y60{bottom:157.510500px;}
.y6d{bottom:166.113000px;}
.y5f{bottom:177.624000px;}
.y6c{bottom:182.551500px;}
.y2d{bottom:184.209000px;}
.y5e{bottom:198.424500px;}
.y6b{bottom:198.990000px;}
.y2c{bottom:202.888500px;}
.y5d{bottom:218.539500px;}
.y2b{bottom:221.569500px;}
.y2a{bottom:240.249000px;}
.y5c{bottom:246.186000px;}
.y29{bottom:258.928500px;}
.y27{bottom:277.609500px;}
.y28{bottom:283.032000px;}
.y25{bottom:296.289000px;}
.y26{bottom:301.711500px;}
.y5b{bottom:303.720000px;}
.y24{bottom:314.968500px;}
.y5a{bottom:322.399500px;}
.y23{bottom:333.649500px;}
.y59{bottom:341.079000px;}
.y22{bottom:352.329000px;}
.y58{bottom:359.760000px;}
.y21{bottom:371.008500px;}
.y57{bottom:378.439500px;}
.y20{bottom:389.688000px;}
.y56{bottom:397.119000px;}
.y1f{bottom:408.369000px;}
.y55{bottom:415.800000px;}
.y1e{bottom:427.048500px;}
.y54{bottom:434.479500px;}
.y1d{bottom:445.728000px;}
.y53{bottom:453.159000px;}
.y1c{bottom:464.409000px;}
.y1b{bottom:483.088500px;}
.y52{bottom:492.598500px;}
.y1a{bottom:501.768000px;}
.y51{bottom:511.278000px;}
.y19{bottom:520.447500px;}
.y50{bottom:529.959000px;}
.y18{bottom:539.128500px;}
.y4f{bottom:548.638500px;}
.y17{bottom:557.808000px;}
.y4e{bottom:567.318000px;}
.y16{bottom:576.487500px;}
.y4d{bottom:585.999000px;}
.y15{bottom:595.168500px;}
.y4c{bottom:604.678500px;}
.y14{bottom:613.848000px;}
.y4b{bottom:629.335500px;}
.y13{bottom:632.527500px;}
.y85{bottom:648.763500px;}
.y96{bottom:653.245500px;}
.y12{bottom:657.186000px;}
.y4a{bottom:662.959500px;}
.y84{bottom:668.190000px;}
.y95{bottom:676.533000px;}
.y49{bottom:681.639000px;}
.y83{bottom:687.616500px;}
.y48{bottom:700.320000px;}
.y94{bottom:703.681500px;}
.y82{bottom:707.044500px;}
.y11{bottom:711.481500px;}
.y47{bottom:718.999500px;}
.y81{bottom:726.471000px;}
.y93{bottom:726.969000px;}
.y10{bottom:730.161000px;}
.y46{bottom:737.679000px;}
.y80{bottom:745.899000px;}
.y92{bottom:754.117500px;}
.y45{bottom:756.360000px;}
.y7f{bottom:765.325500px;}
.y44{bottom:775.039500px;}
.y91{bottom:777.405000px;}
.y7e{bottom:784.753500px;}
.yf{bottom:786.750000px;}
.y43{bottom:793.719000px;}
.y90{bottom:800.692500px;}
.y7d{bottom:804.180000px;}
.ye{bottom:805.429500px;}
.y42{bottom:812.398500px;}
.y7c{bottom:823.606500px;}
.yd{bottom:824.110500px;}
.y8f{bottom:827.841000px;}
.y41{bottom:831.079500px;}
.yc{bottom:842.790000px;}
.y7b{bottom:843.034500px;}
.y40{bottom:849.759000px;}
.y8e{bottom:851.128500px;}
.yb{bottom:861.469500px;}
.y7a{bottom:862.461000px;}
.y3f{bottom:874.416000px;}
.y8d{bottom:878.277000px;}
.y79{bottom:881.889000px;}
.ya{bottom:884.401500px;}
.y78{bottom:901.315500px;}
.y8c{bottom:901.564500px;}
.y3e{bottom:908.040000px;}
.y77{bottom:920.743500px;}
.y9{bottom:925.233000px;}
.y3d{bottom:926.721000px;}
.y8b{bottom:928.713000px;}
.y8{bottom:938.200500px;}
.y76{bottom:940.170000px;}
.y3c{bottom:945.400500px;}
.y8a{bottom:952.000500px;}
.y75{bottom:959.596500px;}
.y7{bottom:959.605500px;}
.y3a{bottom:964.080000px;}
.y3b{bottom:969.504000px;}
.y74{bottom:979.024500px;}
.y89{bottom:979.149000px;}
.y6{bottom:980.790000px;}
.y39{bottom:982.761000px;}
.y73{bottom:998.451000px;}
.y37{bottom:1001.440500px;}
.y88{bottom:1002.436500px;}
.y38{bottom:1006.863000px;}
.y5{bottom:1010.595000px;}
.y72{bottom:1017.879000px;}
.y36{bottom:1020.120000px;}
.y87{bottom:1025.724000px;}
.y71{bottom:1037.305500px;}
.y34{bottom:1038.799500px;}
.y35{bottom:1044.223500px;}
.y64{bottom:1048.524249px;}
.y86{bottom:1052.872500px;}
.y70{bottom:1056.733500px;}
.y33{bottom:1057.480500px;}
.y32{bottom:1076.160000px;}
.y4{bottom:1080.004500px;}
.y2{bottom:1082.578500px;}
.y3{bottom:1084.740000px;}
.y1{bottom:1099.764000px;}
.y31{bottom:1110.573000px;}
.ha{height:20.048870px;}
.h3{height:25.608038px;}
.h9{height:31.382100px;}
.hf{height:32.194269px;}
.h2{height:34.143908px;}
.h1{height:35.865450px;}
.hb{height:40.348800px;}
.he{height:41.393027px;}
.h10{height:42.902870px;}
.h4{height:44.439908px;}
.h7{height:44.831700px;}
.hd{height:45.991944px;}
.h5{height:47.596693px;}
.h6{height:48.462038px;}
.h8{height:53.072100px;}
.hc{height:1041.781140px;}
.h0{height:1188.000000px;}
.w1{width:812.852640px;}
.w0{width:918.000000px;}
.x1c{left:-3.609130px;}
.x0{left:0.000000px;}
.x1a{left:36.663000px;}
.x1{left:76.110000px;}
.xf{left:89.610000px;}
.xc{left:126.919500px;}
.xb{left:140.368500px;}
.x13{left:141.520500px;}
.x1b{left:150.342605px;}
.x2{left:161.881500px;}
.x3{left:168.012000px;}
.x4{left:175.069500px;}
.x5{left:196.063500px;}
.xd{left:199.827000px;}
.x19{left:209.722500px;}
.x9{left:219.519000px;}
.x11{left:225.840000px;}
.x12{left:233.272500px;}
.x7{left:262.158000px;}
.x8{left:274.774500px;}
.x14{left:313.048500px;}
.x6{left:398.025000px;}
.xe{left:400.792500px;}
.x16{left:408.141000px;}
.xa{left:416.542500px;}
.x15{left:430.369500px;}
.x17{left:480.868500px;}
.x18{left:494.691000px;}
.x10{left:537.979500px;}
@media print{
.v7{vertical-align:-27.253333pt;}
.v6{vertical-align:-19.280000pt;}
.v4{vertical-align:-15.002667pt;}
.v5{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.152000pt;}
.v2{vertical-align:19.285333pt;}
.v3{vertical-align:20.314667pt;}
.ls13{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000479pt;}
.ls2a{letter-spacing:0.000495pt;}
.lsd{letter-spacing:0.001503pt;}
.ls15{letter-spacing:0.002906pt;}
.ls29{letter-spacing:0.003816pt;}
.ls22{letter-spacing:0.034341pt;}
.ls28{letter-spacing:0.038156pt;}
.ls8{letter-spacing:2.653505pt;}
.ls9{letter-spacing:2.654177pt;}
.lsb{letter-spacing:2.655095pt;}
.ls1{letter-spacing:2.656473pt;}
.lse{letter-spacing:2.656501pt;}
.ls1a{letter-spacing:2.661806pt;}
.ls10{letter-spacing:4.167686pt;}
.lsa{letter-spacing:11.515919pt;}
.ls12{letter-spacing:12.692861pt;}
.ls19{letter-spacing:14.757812pt;}
.ls0{letter-spacing:15.058104pt;}
.ls5{letter-spacing:15.090018pt;}
.ls26{letter-spacing:16.152030pt;}
.lsc{letter-spacing:16.235145pt;}
.ls23{letter-spacing:16.280567pt;}
.ls2d{letter-spacing:16.705164pt;}
.ls6{letter-spacing:16.909976pt;}
.ls27{letter-spacing:17.093454pt;}
.ls24{letter-spacing:17.233252pt;}
.ls25{letter-spacing:17.238723pt;}
.ls2e{letter-spacing:17.387831pt;}
.ls2c{letter-spacing:17.635386pt;}
.ls7{letter-spacing:17.847264pt;}
.ls2f{letter-spacing:18.318053pt;}
.ls1f{letter-spacing:18.589976pt;}
.ls1b{letter-spacing:19.075058pt;}
.ls21{letter-spacing:19.393861pt;}
.lsf{letter-spacing:19.520479pt;}
.ls20{letter-spacing:19.527264pt;}
.ls2b{letter-spacing:19.957289pt;}
.ls11{letter-spacing:20.828476pt;}
.ls18{letter-spacing:20.960479pt;}
.ls1d{letter-spacing:21.667310pt;}
.ls1c{letter-spacing:21.678618pt;}
.ls1e{letter-spacing:22.609931pt;}
.ls2{letter-spacing:24.280643pt;}
.ls16{letter-spacing:25.397988pt;}
.ls3{letter-spacing:31.565976pt;}
.ls4{letter-spacing:32.503264pt;}
.ls14{letter-spacing:1202.371733pt;}
.ws1f{word-spacing:-42.359791pt;}
.ws1c{word-spacing:-34.611401pt;}
.ws8{word-spacing:-14.760588pt;}
.ws6c{word-spacing:-13.652838pt;}
.ws77{word-spacing:-12.028410pt;}
.ws22{word-spacing:-5.901388pt;}
.ws4a{word-spacing:-5.887232pt;}
.ws28{word-spacing:-2.167862pt;}
.ws27{word-spacing:-2.153813pt;}
.ws26{word-spacing:-2.114728pt;}
.ws25{word-spacing:-1.105184pt;}
.ws60{word-spacing:-0.998917pt;}
.ws11{word-spacing:-0.839515pt;}
.ws43{word-spacing:-0.467578pt;}
.ws3d{word-spacing:-0.263686pt;}
.ws3f{word-spacing:-0.255043pt;}
.ws70{word-spacing:-0.076312pt;}
.ws1e{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.042507pt;}
.ws2e{word-spacing:0.000000pt;}
.ws65{word-spacing:0.063761pt;}
.ws19{word-spacing:0.116895pt;}
.ws5b{word-spacing:0.223162pt;}
.ws18{word-spacing:0.276296pt;}
.ws17{word-spacing:0.329430pt;}
.ws24{word-spacing:0.541965pt;}
.ws14{word-spacing:0.595099pt;}
.ws63{word-spacing:0.648233pt;}
.ws78{word-spacing:1.212511pt;}
.ws7e{word-spacing:1.219430pt;}
.ws7f{word-spacing:1.267251pt;}
.ws66{word-spacing:1.338973pt;}
.ws47{word-spacing:1.498375pt;}
.ws3a{word-spacing:1.657777pt;}
.ws56{word-spacing:1.817178pt;}
.ws6b{word-spacing:1.841101pt;}
.ws80{word-spacing:1.936742pt;}
.ws81{word-spacing:2.271488pt;}
.ws79{word-spacing:2.291126pt;}
.ws5c{word-spacing:2.401651pt;}
.ws3e{word-spacing:2.454577pt;}
.ws5f{word-spacing:2.454785pt;}
.ws5{word-spacing:2.701875pt;}
.ws6a{word-spacing:2.749696pt;}
.ws75{word-spacing:2.774643pt;}
.wse{word-spacing:2.932989pt;}
.ws4d{word-spacing:3.198659pt;}
.ws54{word-spacing:3.570596pt;}
.ws52{word-spacing:3.571291pt;}
.ws7c{word-spacing:3.658291pt;}
.ws21{word-spacing:3.836265pt;}
.ws40{word-spacing:3.995667pt;}
.ws44{word-spacing:4.101935pt;}
.ws57{word-spacing:4.155068pt;}
.ws4f{word-spacing:4.314470pt;}
.wsd{word-spacing:4.367604pt;}
.ws67{word-spacing:4.455631pt;}
.ws69{word-spacing:4.473872pt;}
.ws59{word-spacing:4.580139pt;}
.ws5a{word-spacing:4.633273pt;}
.ws16{word-spacing:4.792675pt;}
.ws55{word-spacing:4.887634pt;}
.ws42{word-spacing:4.898943pt;}
.ws7b{word-spacing:4.997274pt;}
.ws50{word-spacing:5.005210pt;}
.ws9{word-spacing:5.217746pt;}
.ws48{word-spacing:5.349116pt;}
.ws12{word-spacing:5.483415pt;}
.ws20{word-spacing:5.749084pt;}
.ws15{word-spacing:5.802218pt;}
.ws3c{word-spacing:5.955219pt;}
.ws2b{word-spacing:6.014754pt;}
.ws2c{word-spacing:6.067888pt;}
.ws4b{word-spacing:6.079499pt;}
.ws29{word-spacing:6.174155pt;}
.ws2a{word-spacing:6.227289pt;}
.ws6{word-spacing:6.471748pt;}
.ws36{word-spacing:6.652360pt;}
.ws34{word-spacing:6.669862pt;}
.ws38{word-spacing:6.811762pt;}
.ws1a{word-spacing:6.918029pt;}
.ws37{word-spacing:6.971163pt;}
.wsb{word-spacing:7.487216pt;}
.wsa{word-spacing:7.502502pt;}
.ws2d{word-spacing:7.555636pt;}
.ws45{word-spacing:8.193242pt;}
.ws46{word-spacing:8.246376pt;}
.wsc{word-spacing:8.990250pt;}
.ws1b{word-spacing:9.202786pt;}
.ws13{word-spacing:9.309053pt;}
.ws31{word-spacing:10.637400pt;}
.ws1d{word-spacing:10.743668pt;}
.ws7d{word-spacing:10.927053pt;}
.ws35{word-spacing:12.157886pt;}
.ws58{word-spacing:12.497085pt;}
.ws39{word-spacing:12.792552pt;}
.ws23{word-spacing:13.121244pt;}
.ws73{word-spacing:14.667232pt;}
.ws10{word-spacing:14.781842pt;}
.ws6f{word-spacing:14.808409pt;}
.ws71{word-spacing:14.877091pt;}
.ws1{word-spacing:15.005042pt;}
.ws3{word-spacing:15.012514pt;}
.ws72{word-spacing:15.968357pt;}
.ws0{word-spacing:16.025214pt;}
.ws7{word-spacing:16.280258pt;}
.ws76{word-spacing:18.944280pt;}
.ws4e{word-spacing:19.035850pt;}
.ws74{word-spacing:19.463066pt;}
.ws6e{word-spacing:19.539962pt;}
.ws30{word-spacing:19.670157pt;}
.ws2f{word-spacing:20.031468pt;}
.ws61{word-spacing:20.049183pt;}
.ws4{word-spacing:20.297137pt;}
.ws6d{word-spacing:20.566235pt;}
.ws64{word-spacing:21.185183pt;}
.ws7a{word-spacing:21.423718pt;}
.ws62{word-spacing:21.686516pt;}
.ws3b{word-spacing:22.721183pt;}
.ws5d{word-spacing:23.505183pt;}
.ws5e{word-spacing:23.510516pt;}
.ws49{word-spacing:23.662245pt;}
.ws68{word-spacing:23.865653pt;}
.ws4c{word-spacing:24.254245pt;}
.ws53{word-spacing:24.625183pt;}
.ws41{word-spacing:25.078516pt;}
.ws51{word-spacing:26.097183pt;}
.ws33{word-spacing:31.707850pt;}
.ws32{word-spacing:31.936858pt;}
.wsf{word-spacing:62.132620pt;}
._18{margin-left:-28.394754pt;}
._17{margin-left:-25.769925pt;}
._19{margin-left:-24.335305pt;}
._1e{margin-left:-23.304675pt;}
._2{margin-left:-5.649036pt;}
._1a{margin-left:-4.643922pt;}
._3{margin-left:-3.740634pt;}
._5{margin-left:-2.337896pt;}
._0{margin-left:-1.275216pt;}
._1{width:1.275216pt;}
._11{width:2.742259pt;}
._13{width:8.841269pt;}
._15{width:13.694489pt;}
._f{width:15.780764pt;}
._1d{width:17.427908pt;}
._b{width:18.596859pt;}
._12{width:19.500135pt;}
._1b{width:21.412954pt;}
._c{width:22.337496pt;}
._7{width:23.378901pt;}
._8{width:25.291721pt;}
._10{width:26.301270pt;}
._a{width:27.682745pt;}
._e{width:29.117359pt;}
._1c{width:30.394846pt;}
._d{width:31.508386pt;}
._16{width:33.261801pt;}
._14{width:35.440289pt;}
._6{width:37.299974pt;}
._1f{width:40.116069pt;}
._9{width:41.763219pt;}
._22{width:57.224849pt;}
._4{width:58.464396pt;}
._20{width:457.855326pt;}
._21{width:510.040749pt;}
.fs1{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs7{font-size:38.156170pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs6{font-size:49.058402pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:54.508971pt;}
.y67{bottom:-44.966372pt;}
.y66{bottom:-29.976214pt;}
.y65{bottom:-14.986055pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:19.117333pt;}
.y69{bottom:33.728000pt;}
.y68{bottom:48.340000pt;}
.y63{bottom:58.505333pt;}
.y30{bottom:87.053333pt;}
.y62{bottom:103.640000pt;}
.y2f{bottom:105.884000pt;}
.y6f{bottom:118.432000pt;}
.y2e{bottom:121.234667pt;}
.y61{bottom:121.518667pt;}
.y6e{bottom:133.044000pt;}
.y60{bottom:140.009333pt;}
.y6d{bottom:147.656000pt;}
.y5f{bottom:157.888000pt;}
.y6c{bottom:162.268000pt;}
.y2d{bottom:163.741333pt;}
.y5e{bottom:176.377333pt;}
.y6b{bottom:176.880000pt;}
.y2c{bottom:180.345333pt;}
.y5d{bottom:194.257333pt;}
.y2b{bottom:196.950667pt;}
.y2a{bottom:213.554667pt;}
.y5c{bottom:218.832000pt;}
.y29{bottom:230.158667pt;}
.y27{bottom:246.764000pt;}
.y28{bottom:251.584000pt;}
.y25{bottom:263.368000pt;}
.y26{bottom:268.188000pt;}
.y5b{bottom:269.973333pt;}
.y24{bottom:279.972000pt;}
.y5a{bottom:286.577333pt;}
.y23{bottom:296.577333pt;}
.y59{bottom:303.181333pt;}
.y22{bottom:313.181333pt;}
.y58{bottom:319.786667pt;}
.y21{bottom:329.785333pt;}
.y57{bottom:336.390667pt;}
.y20{bottom:346.389333pt;}
.y56{bottom:352.994667pt;}
.y1f{bottom:362.994667pt;}
.y55{bottom:369.600000pt;}
.y1e{bottom:379.598667pt;}
.y54{bottom:386.204000pt;}
.y1d{bottom:396.202667pt;}
.y53{bottom:402.808000pt;}
.y1c{bottom:412.808000pt;}
.y1b{bottom:429.412000pt;}
.y52{bottom:437.865333pt;}
.y1a{bottom:446.016000pt;}
.y51{bottom:454.469333pt;}
.y19{bottom:462.620000pt;}
.y50{bottom:471.074667pt;}
.y18{bottom:479.225333pt;}
.y4f{bottom:487.678667pt;}
.y17{bottom:495.829333pt;}
.y4e{bottom:504.282667pt;}
.y16{bottom:512.433333pt;}
.y4d{bottom:520.888000pt;}
.y15{bottom:529.038667pt;}
.y4c{bottom:537.492000pt;}
.y14{bottom:545.642667pt;}
.y4b{bottom:559.409333pt;}
.y13{bottom:562.246667pt;}
.y85{bottom:576.678667pt;}
.y96{bottom:580.662667pt;}
.y12{bottom:584.165333pt;}
.y4a{bottom:589.297333pt;}
.y84{bottom:593.946667pt;}
.y95{bottom:601.362667pt;}
.y49{bottom:605.901333pt;}
.y83{bottom:611.214667pt;}
.y48{bottom:622.506667pt;}
.y94{bottom:625.494667pt;}
.y82{bottom:628.484000pt;}
.y11{bottom:632.428000pt;}
.y47{bottom:639.110667pt;}
.y81{bottom:645.752000pt;}
.y93{bottom:646.194667pt;}
.y10{bottom:649.032000pt;}
.y46{bottom:655.714667pt;}
.y80{bottom:663.021333pt;}
.y92{bottom:670.326667pt;}
.y45{bottom:672.320000pt;}
.y7f{bottom:680.289333pt;}
.y44{bottom:688.924000pt;}
.y91{bottom:691.026667pt;}
.y7e{bottom:697.558667pt;}
.yf{bottom:699.333333pt;}
.y43{bottom:705.528000pt;}
.y90{bottom:711.726667pt;}
.y7d{bottom:714.826667pt;}
.ye{bottom:715.937333pt;}
.y42{bottom:722.132000pt;}
.y7c{bottom:732.094667pt;}
.yd{bottom:732.542667pt;}
.y8f{bottom:735.858667pt;}
.y41{bottom:738.737333pt;}
.yc{bottom:749.146667pt;}
.y7b{bottom:749.364000pt;}
.y40{bottom:755.341333pt;}
.y8e{bottom:756.558667pt;}
.yb{bottom:765.750667pt;}
.y7a{bottom:766.632000pt;}
.y3f{bottom:777.258667pt;}
.y8d{bottom:780.690667pt;}
.y79{bottom:783.901333pt;}
.ya{bottom:786.134667pt;}
.y78{bottom:801.169333pt;}
.y8c{bottom:801.390667pt;}
.y3e{bottom:807.146667pt;}
.y77{bottom:818.438667pt;}
.y9{bottom:822.429333pt;}
.y3d{bottom:823.752000pt;}
.y8b{bottom:825.522667pt;}
.y8{bottom:833.956000pt;}
.y76{bottom:835.706667pt;}
.y3c{bottom:840.356000pt;}
.y8a{bottom:846.222667pt;}
.y75{bottom:852.974667pt;}
.y7{bottom:852.982667pt;}
.y3a{bottom:856.960000pt;}
.y3b{bottom:861.781333pt;}
.y74{bottom:870.244000pt;}
.y89{bottom:870.354667pt;}
.y6{bottom:871.813333pt;}
.y39{bottom:873.565333pt;}
.y73{bottom:887.512000pt;}
.y37{bottom:890.169333pt;}
.y88{bottom:891.054667pt;}
.y38{bottom:894.989333pt;}
.y5{bottom:898.306667pt;}
.y72{bottom:904.781333pt;}
.y36{bottom:906.773333pt;}
.y87{bottom:911.754667pt;}
.y71{bottom:922.049333pt;}
.y34{bottom:923.377333pt;}
.y35{bottom:928.198667pt;}
.y64{bottom:932.021555pt;}
.y86{bottom:935.886667pt;}
.y70{bottom:939.318667pt;}
.y33{bottom:939.982667pt;}
.y32{bottom:956.586667pt;}
.y4{bottom:960.004000pt;}
.y2{bottom:962.292000pt;}
.y3{bottom:964.213333pt;}
.y1{bottom:977.568000pt;}
.y31{bottom:987.176000pt;}
.ha{height:17.821218pt;}
.h3{height:22.762701pt;}
.h9{height:27.895200pt;}
.hf{height:28.617128pt;}
.h2{height:30.350141pt;}
.h1{height:31.880400pt;}
.hb{height:35.865600pt;}
.he{height:36.793802pt;}
.h10{height:38.135885pt;}
.h4{height:39.502141pt;}
.h7{height:39.850400pt;}
.hd{height:40.881728pt;}
.h5{height:42.308172pt;}
.h6{height:43.077367pt;}
.h8{height:47.175200pt;}
.hc{height:926.027680pt;}
.h0{height:1056.000000pt;}
.w1{width:722.535680pt;}
.w0{width:816.000000pt;}
.x1c{left:-3.208115pt;}
.x0{left:0.000000pt;}
.x1a{left:32.589333pt;}
.x1{left:67.653333pt;}
.xf{left:79.653333pt;}
.xc{left:112.817333pt;}
.xb{left:124.772000pt;}
.x13{left:125.796000pt;}
.x1b{left:133.637871pt;}
.x2{left:143.894667pt;}
.x3{left:149.344000pt;}
.x4{left:155.617333pt;}
.x5{left:174.278667pt;}
.xd{left:177.624000pt;}
.x19{left:186.420000pt;}
.x9{left:195.128000pt;}
.x11{left:200.746667pt;}
.x12{left:207.353333pt;}
.x7{left:233.029333pt;}
.x8{left:244.244000pt;}
.x14{left:278.265333pt;}
.x6{left:353.800000pt;}
.xe{left:356.260000pt;}
.x16{left:362.792000pt;}
.xa{left:370.260000pt;}
.x15{left:382.550667pt;}
.x17{left:427.438667pt;}
.x18{left:439.725333pt;}
.x10{left:478.204000pt;}
}




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