
    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_fb01d1b7dd8d9af37a922d69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.121000;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_96aa44020d8a2de06148aa0d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_e531816dd1da06da05b2f23d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_346f9a7441033d2c07387cbc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_8ffe2918f7f4a8e13c5f4c98.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.fff{font-family:fff;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.121000;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:ff1c;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.132000;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:ff1d;src:url('chunks/assets/font_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.121000;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.237499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-0.439224px;}
.ls21{letter-spacing:-0.384321px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000893px;}
.ls11{letter-spacing:0.008146px;}
.ls24{letter-spacing:0.008593px;}
.ls9{letter-spacing:0.009039px;}
.lsc{letter-spacing:0.009150px;}
.lsf{letter-spacing:0.009597px;}
.ls10{letter-spacing:0.010043px;}
.lsd{letter-spacing:0.012833px;}
.ls25{letter-spacing:0.026782px;}
.ls14{letter-spacing:0.054903px;}
.ls1f{letter-spacing:0.171297px;}
.ls15{letter-spacing:0.214122px;}
.ls4{letter-spacing:0.247063px;}
.ls1d{letter-spacing:0.342595px;}
.lsb{letter-spacing:0.385419px;}
.ls6{letter-spacing:0.395302px;}
.ls12{letter-spacing:0.425953px;}
.ls16{letter-spacing:0.428243px;}
.ls22{letter-spacing:0.439224px;}
.ls5{letter-spacing:0.444714px;}
.lse{letter-spacing:0.469831px;}
.lsa{letter-spacing:0.471068px;}
.ls23{letter-spacing:0.494127px;}
.ls3{letter-spacing:0.543540px;}
.ls1a{letter-spacing:0.555167px;}
.ls19{letter-spacing:0.555725px;}
.ls1e{letter-spacing:0.556716px;}
.ls2{letter-spacing:0.592952px;}
.ls1{letter-spacing:0.933351px;}
.ls26{letter-spacing:4.780020px;}
.ls8{letter-spacing:8.943697px;}
.ls18{letter-spacing:10.886303px;}
.ls17{letter-spacing:10.886861px;}
.ls1b{letter-spacing:25.676633px;}
.ls1c{letter-spacing:25.677191px;}
.ls7{letter-spacing:710.280099px;}
.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;}
}
.ws0{word-spacing:-14.659098px;}
.ws1{word-spacing:-13.725748px;}
.ws2{word-spacing:-12.946125px;}
.ws8{word-spacing:-12.797887px;}
.ws4{word-spacing:-11.177151px;}
.ws7{word-spacing:-11.134326px;}
.ws5{word-spacing:-11.091502px;}
.ws6{word-spacing:-10.920205px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-8.877814px;}
._13{margin-left:-7.840147px;}
._1e{margin-left:-4.227530px;}
._0{margin-left:-2.141217px;}
._3{margin-left:-1.098060px;}
._1{width:1.152963px;}
._2{width:2.360829px;}
._a{width:3.513791px;}
._d{width:4.611851px;}
._14{width:5.929523px;}
._9{width:7.521710px;}
._f{width:9.377431px;}
._b{width:10.651180px;}
._7{width:11.968852px;}
._10{width:13.687316px;}
._e{width:14.692040px;}
._16{width:16.415994px;}
._c{width:17.898375px;}
._8{width:19.545465px;}
._19{width:20.996359px;}
._18{width:22.085906px;}
._1a{width:23.619030px;}
._1b{width:24.796387px;}
._17{width:26.078920px;}
._1c{width:27.561301px;}
._1d{width:28.604458px;}
._1f{width:29.867227px;}
._15{width:31.184899px;}
._20{width:43.483168px;}
._4{width:176.293279px;}
._6{width:710.280099px;}
._11{width:794.830370px;}
._5{width:807.788145px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.824333px;}
.fs2{font-size:45.020452px;}
.fs3{font-size:49.412691px;}
.fs0{font-size:50.216150px;}
.fs1{font-size:54.902990px;}
.ybf{bottom:-0.274286px;}
.y0{bottom:0.000000px;}
.y2{bottom:28.867033px;}
.y4{bottom:47.303055px;}
.y61{bottom:103.578620px;}
.y10f{bottom:104.402165px;}
.y12d{bottom:106.598285px;}
.ybd{bottom:109.617949px;}
.yed{bottom:110.715870px;}
.y149{bottom:118.127913px;}
.y60{bottom:119.500488px;}
.y10e{bottom:120.324032px;}
.y12c{bottom:122.245637px;}
.y16f{bottom:124.441757px;}
.ybc{bottom:125.539817px;}
.yec{bottom:126.363222px;}
.y30{bottom:129.369300px;}
.y8f{bottom:131.304631px;}
.y148{bottom:134.049780px;}
.y5f{bottom:135.147840px;}
.y10d{bottom:135.971385px;}
.y12b{bottom:138.167504px;}
.yf0{bottom:139.542869px;}
.y16e{bottom:140.089109px;}
.ybb{bottom:141.187169px;}
.yeb{bottom:142.285089px;}
.y12e{bottom:143.108773px;}
.y2f{bottom:143.649574px;}
.y8e{bottom:146.951983px;}
.yc2{bottom:147.226498px;}
.y1{bottom:148.500000px;}
.y147{bottom:149.697132px;}
.y5e{bottom:151.069707px;}
.y195{bottom:151.893252px;}
.y185{bottom:153.814857px;}
.y16d{bottom:156.010976px;}
.y198{bottom:156.841356px;}
.yba{bottom:157.109036px;}
.y2e{bottom:158.201656px;}
.y74{bottom:165.194100px;}
.y10c{bottom:165.619000px;}
.y5d{bottom:166.717059px;}
.y12a{bottom:167.540604px;}
.y8d{bottom:169.736724px;}
.yea{bottom:171.658189px;}
.y16c{bottom:171.658329px;}
.y2d{bottom:172.753599px;}
.yb9{bottom:172.756388px;}
.y10b{bottom:181.266352px;}
.y5c{bottom:182.364412px;}
.y129{bottom:183.462471px;}
.y8c{bottom:185.384076px;}
.y2c{bottom:187.305681px;}
.ye9{bottom:187.580056px;}
.y16b{bottom:187.580196px;}
.yb8{bottom:188.678256px;}
.y92{bottom:191.977875px;}
.y10a{bottom:197.188219px;}
.y5b{bottom:198.286279px;}
.y128{bottom:199.109824px;}
.y8b{bottom:201.305943px;}
.y2b{bottom:201.854973px;}
.y16a{bottom:203.227548px;}
.y8a{bottom:207.121930px;}
.y109{bottom:212.835571px;}
.y5a{bottom:213.933631px;}
.y127{bottom:215.031691px;}
.y184{bottom:216.953296px;}
.y2a{bottom:217.776840px;}
.yb7{bottom:218.051355px;}
.y169{bottom:219.149415px;}
.y108{bottom:228.757439px;}
.y59{bottom:229.855498px;}
.ye8{bottom:230.678904px;}
.y126{bottom:230.679043px;}
.y12f{bottom:232.326133px;}
.y183{bottom:232.875163px;}
.y29{bottom:233.424193px;}
.yb6{bottom:233.973223px;}
.y168{bottom:234.796768px;}
.y107{bottom:244.404791px;}
.y58{bottom:245.502851px;}
.ye7{bottom:246.600771px;}
.y89{bottom:246.600910px;}
.y182{bottom:248.522515px;}
.y28{bottom:249.346060px;}
.yb5{bottom:249.620575px;}
.y167{bottom:250.718635px;}
.y146{bottom:258.130538px;}
.y106{bottom:260.326658px;}
.y57{bottom:261.424718px;}
.ye6{bottom:262.248123px;}
.y88{bottom:262.248263px;}
.y181{bottom:264.444382px;}
.y27{bottom:264.993412px;}
.yb4{bottom:265.542442px;}
.y166{bottom:266.365987px;}
.y145{bottom:274.052406px;}
.y105{bottom:275.974010px;}
.y56{bottom:277.072070px;}
.ye5{bottom:278.169990px;}
.y87{bottom:278.170130px;}
.y180{bottom:280.091735px;}
.y26{bottom:280.915280px;}
.yb3{bottom:281.189794px;}
.y165{bottom:282.287854px;}
.y144{bottom:289.699758px;}
.y104{bottom:291.895878px;}
.y55{bottom:292.993937px;}
.ye4{bottom:293.817343px;}
.y125{bottom:293.817482px;}
.y17f{bottom:296.013602px;}
.y25{bottom:296.562632px;}
.yb2{bottom:297.111662px;}
.y164{bottom:297.935207px;}
.y86{bottom:300.680356px;}
.y143{bottom:305.621625px;}
.y103{bottom:307.543230px;}
.y54{bottom:308.641290px;}
.ye3{bottom:309.739210px;}
.y124{bottom:309.739349px;}
.y17e{bottom:311.660954px;}
.y24{bottom:312.484499px;}
.yb1{bottom:312.759014px;}
.y163{bottom:313.857074px;}
.y85{bottom:316.602223px;}
.y14b{bottom:318.798343px;}
.y142{bottom:321.268977px;}
.y102{bottom:323.465097px;}
.y53{bottom:324.563157px;}
.ye2{bottom:325.386562px;}
.y123{bottom:325.386702px;}
.y17d{bottom:327.582821px;}
.y23{bottom:328.131851px;}
.yb0{bottom:328.680881px;}
.yc1{bottom:330.597046px;}
.y84{bottom:332.249576px;}
.y141{bottom:337.190845px;}
.y101{bottom:339.112449px;}
.y52{bottom:340.210509px;}
.y122{bottom:341.308569px;}
.y162{bottom:343.230174px;}
.y22{bottom:344.053719px;}
.yaf{bottom:344.328233px;}
.y140{bottom:352.838197px;}
.ye1{bottom:355.034177px;}
.y83{bottom:355.034317px;}
.y51{bottom:356.132376px;}
.y121{bottom:356.955782px;}
.y161{bottom:359.152041px;}
.y21{bottom:359.415397px;}
.yae{bottom:360.250101px;}
.y13f{bottom:368.760064px;}
.ye0{bottom:370.681529px;}
.y82{bottom:370.681669px;}
.y50{bottom:371.779729px;}
.y120{bottom:372.877649px;}
.y20{bottom:373.967479px;}
.y15e{bottom:374.027021px;}
.y160{bottom:374.799393px;}
.yad{bottom:375.897453px;}
.y13e{bottom:384.407417px;}
.ydf{bottom:386.603397px;}
.y81{bottom:386.603536px;}
.y4f{bottom:387.701596px;}
.y1f{bottom:388.519561px;}
.y11f{bottom:388.525001px;}
.y15d{bottom:389.674373px;}
.y15f{bottom:390.721260px;}
.yac{bottom:391.544805px;}
.y13d{bottom:400.329284px;}
.yde{bottom:402.250749px;}
.y80{bottom:402.250888px;}
.y1e{bottom:402.799779px;}
.y4e{bottom:403.348948px;}
.y11e{bottom:404.446869px;}
.y15c{bottom:405.596240px;}
.y17c{bottom:406.368613px;}
.yab{bottom:407.466672px;}
.y188{bottom:409.941352px;}
.y13c{bottom:415.976636px;}
.y1d{bottom:417.623726px;}
.ydd{bottom:418.172616px;}
.y100{bottom:418.172756px;}
.y4d{bottom:419.270815px;}
.y11d{bottom:420.094221px;}
.y15b{bottom:421.243593px;}
.yef{bottom:421.738660px;}
.yaa{bottom:423.114025px;}
.y7d{bottom:423.988882px;}
.y7f{bottom:425.035629px;}
.y13b{bottom:431.898503px;}
.y19e{bottom:433.047875px;}
.y1c{bottom:433.271078px;}
.ydc{bottom:433.819968px;}
.y194{bottom:433.820108px;}
.y4c{bottom:434.918168px;}
.y11c{bottom:436.016088px;}
.y17b{bottom:436.016228px;}
.y15a{bottom:437.165460px;}
.ya9{bottom:439.035892px;}
.y7c{bottom:439.910749px;}
.y7e{bottom:440.682982px;}
.y112{bottom:440.949267px;}
.yff{bottom:447.545856px;}
.y19d{bottom:448.695227px;}
.y1b{bottom:449.192945px;}
.ydb{bottom:449.741836px;}
.y193{bottom:449.741975px;}
.y4b{bottom:450.840035px;}
.y17a{bottom:451.663580px;}
.y159{bottom:452.812812px;}
.ya8{bottom:454.683244px;}
.yfe{bottom:463.467723px;}
.y19c{bottom:464.617095px;}
.y1a{bottom:464.840298px;}
.yda{bottom:465.389188px;}
.y192{bottom:465.389327px;}
.y4a{bottom:466.487387px;}
.y179{bottom:467.585447px;}
.y158{bottom:468.734679px;}
.ya7{bottom:470.605112px;}
.y91{bottom:474.173806px;}
.y7b{bottom:479.115075px;}
.y19{bottom:480.762165px;}
.yd9{bottom:481.311055px;}
.y191{bottom:481.311195px;}
.y49{bottom:482.409254px;}
.y178{bottom:483.232799px;}
.y157{bottom:484.382032px;}
.y1a0{bottom:484.878494px;}
.y7a{bottom:495.036942px;}
.y18{bottom:496.409517px;}
.yd8{bottom:496.958407px;}
.y190{bottom:496.958547px;}
.y48{bottom:498.056607px;}
.y177{bottom:499.154667px;}
.ya6{bottom:499.978211px;}
.y156{bottom:500.303899px;}
.yc0{bottom:500.527241px;}
.yfd{bottom:510.684295px;}
.y17{bottom:512.331384px;}
.y11b{bottom:512.880275px;}
.y18f{bottom:512.880414px;}
.y47{bottom:513.978474px;}
.y176{bottom:514.802019px;}
.ya5{bottom:515.900079px;}
.y155{bottom:515.951251px;}
.y77{bottom:516.774936px;}
.y79{bottom:517.547168px;}
.yd7{bottom:526.606022px;}
.yfc{bottom:526.606162px;}
.y16{bottom:527.978737px;}
.y11a{bottom:528.527627px;}
.y18e{bottom:528.527766px;}
.y46{bottom:529.625826px;}
.y175{bottom:530.723886px;}
.ya4{bottom:531.547431px;}
.y76{bottom:532.422288px;}
.y78{bottom:533.469036px;}
.y197{bottom:533.748991px;}
.y171{bottom:537.866715px;}
.yd6{bottom:542.253375px;}
.yfb{bottom:542.253514px;}
.y15{bottom:543.900604px;}
.y119{bottom:544.449494px;}
.y45{bottom:545.547693px;}
.y174{bottom:546.371238px;}
.ya3{bottom:547.469298px;}
.y75{bottom:548.344155px;}
.y187{bottom:549.939793px;}
.yd5{bottom:558.175242px;}
.yfa{bottom:558.175381px;}
.y14{bottom:559.547956px;}
.y118{bottom:560.096846px;}
.y44{bottom:561.195046px;}
.y154{bottom:562.292966px;}
.ya2{bottom:563.116650px;}
.yd4{bottom:573.822594px;}
.yf9{bottom:573.822734px;}
.y13{bottom:575.469823px;}
.y117{bottom:576.018714px;}
.y173{bottom:576.018853px;}
.y43{bottom:577.116913px;}
.y14a{bottom:577.391428px;}
.y153{bottom:577.940318px;}
.ya1{bottom:579.038518px;}
.y73{bottom:587.548342px;}
.yd3{bottom:589.744461px;}
.yf8{bottom:589.744601px;}
.y12{bottom:591.117176px;}
.y116{bottom:591.666066px;}
.y172{bottom:591.666205px;}
.y42{bottom:592.764265px;}
.y152{bottom:593.862186px;}
.ya0{bottom:594.685870px;}
.y72{bottom:603.470209px;}
.y13a{bottom:603.470348px;}
.yd2{bottom:605.391814px;}
.yf7{bottom:605.391953px;}
.y11{bottom:607.039043px;}
.y115{bottom:607.587933px;}
.y41{bottom:608.686132px;}
.y151{bottom:609.509538px;}
.y9f{bottom:610.607737px;}
.y71{bottom:619.117701px;}
.yd1{bottom:621.313681px;}
.yf6{bottom:621.313820px;}
.y114{bottom:623.235285px;}
.y40{bottom:624.333485px;}
.y150{bottom:625.431405px;}
.y9e{bottom:626.255089px;}
.y111{bottom:628.445769px;}
.y70{bottom:635.039568px;}
.yd0{bottom:636.961033px;}
.yf5{bottom:636.961173px;}
.y10{bottom:637.510202px;}
.y3f{bottom:640.255352px;}
.y14f{bottom:641.078757px;}
.y9d{bottom:642.176957px;}
.y6f{bottom:650.686920px;}
.ycf{bottom:652.882900px;}
.yf4{bottom:652.883040px;}
.y3e{bottom:655.902704px;}
.yee{bottom:656.177219px;}
.y14e{bottom:657.000625px;}
.y9c{bottom:657.824309px;}
.y170{bottom:661.942033px;}
.y139{bottom:666.608648px;}
.y6e{bottom:666.608787px;}
.yce{bottom:668.530253px;}
.y18d{bottom:668.530392px;}
.y3d{bottom:671.824572px;}
.y9b{bottom:673.746176px;}
.yf{bottom:681.983020px;}
.y138{bottom:682.256000px;}
.y6d{bottom:682.256140px;}
.ycd{bottom:684.452120px;}
.y18c{bottom:684.452259px;}
.y14d{bottom:686.373724px;}
.y3c{bottom:687.471924px;}
.y9a{bottom:689.393528px;}
.ye{bottom:695.432857px;}
.y137{bottom:698.177867px;}
.y6c{bottom:698.178007px;}
.ycc{bottom:700.099472px;}
.y18b{bottom:700.099612px;}
.y14c{bottom:702.295592px;}
.y3b{bottom:703.393791px;}
.y99{bottom:705.315396px;}
.y90{bottom:708.884090px;}
.yd{bottom:709.158605px;}
.y136{bottom:713.825220px;}
.y6b{bottom:713.825359px;}
.ycb{bottom:716.021339px;}
.y18a{bottom:716.021479px;}
.y3a{bottom:719.041143px;}
.yc{bottom:724.805957px;}
.y135{bottom:729.747087px;}
.y6a{bottom:729.747226px;}
.yca{bottom:731.668692px;}
.y189{bottom:731.668831px;}
.y98{bottom:734.688496px;}
.y39{bottom:734.963011px;}
.y196{bottom:736.884615px;}
.yb{bottom:740.727825px;}
.y134{bottom:745.394439px;}
.y69{bottom:745.394579px;}
.yc9{bottom:747.590559px;}
.y19b{bottom:747.590698px;}
.y38{bottom:750.610363px;}
.ya{bottom:756.375177px;}
.y133{bottom:761.316306px;}
.y68{bottom:761.316446px;}
.yc8{bottom:763.237911px;}
.y19a{bottom:763.238051px;}
.y37{bottom:766.532230px;}
.y97{bottom:771.194102px;}
.y9{bottom:772.297044px;}
.y132{bottom:776.963659px;}
.y67{bottom:776.963798px;}
.yc7{bottom:779.159778px;}
.y199{bottom:779.159918px;}
.y36{bottom:782.179582px;}
.y19f{bottom:782.454097px;}
.y96{bottom:786.848150px;}
.y8{bottom:787.944396px;}
.yf3{bottom:791.838918px;}
.y131{bottom:792.885526px;}
.y66{bottom:792.885665px;}
.yc6{bottom:794.807131px;}
.y35{bottom:798.101450px;}
.y95{bottom:802.763182px;}
.y7{bottom:803.866264px;}
.yf2{bottom:807.760785px;}
.y130{bottom:808.532878px;}
.y65{bottom:808.533018px;}
.y113{bottom:810.728998px;}
.y34{bottom:813.737782px;}
.y110{bottom:815.670406px;}
.y94{bottom:818.415417px;}
.y6{bottom:819.513616px;}
.yf1{bottom:823.408137px;}
.yc5{bottom:824.454745px;}
.y64{bottom:824.454885px;}
.y33{bottom:828.018139px;}
.yc4{bottom:840.102098px;}
.y63{bottom:840.102237px;}
.y5{bottom:842.298357px;}
.y32{bottom:842.570082px;}
.y93{bottom:849.161091px;}
.yc3{bottom:856.023965px;}
.y62{bottom:856.024104px;}
.y31{bottom:857.122164px;}
.y186{bottom:858.769114px;}
.y3{bottom:904.887766px;}
.ybe{bottom:947.150250px;}
.h12{height:11.255393px;}
.h8{height:30.511908px;}
.h7{height:31.259318px;}
.ha{height:33.488680px;}
.hb{height:34.309007px;}
.h6{height:37.209644px;}
.he{height:37.575843px;}
.hc{height:38.121119px;}
.hf{height:43.887542px;}
.h3{height:44.061729px;}
.h4{height:47.381281px;}
.h11{height:48.166904px;}
.h9{height:48.174157px;}
.h13{height:48.174715px;}
.h10{height:48.193686px;}
.h5{height:48.763935px;}
.hd{height:935.134950px;}
.h2{height:967.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:30.198045px;}
.w3{width:653.208900px;}
.w2{width:670.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x24{left:11.850467px;}
.x8{left:41.327891px;}
.x26{left:70.493068px;}
.x21{left:76.286701px;}
.xa{left:83.452410px;}
.x18{left:88.633043px;}
.x1f{left:90.703901px;}
.x3{left:92.986500px;}
.x27{left:99.694405px;}
.xb{left:102.598294px;}
.x7{left:109.228495px;}
.x1{left:111.000000px;}
.xc{left:112.209107px;}
.x9{left:120.534090px;}
.x4{left:125.420442px;}
.x1c{left:132.441472px;}
.x19{left:134.122458px;}
.x1a{left:143.002626px;}
.xd{left:146.496554px;}
.x16{left:150.266253px;}
.xe{left:153.895764px;}
.x1b{left:173.447143px;}
.xf{left:183.751218px;}
.x20{left:185.394681px;}
.x1d{left:192.960860px;}
.x6{left:272.459717px;}
.x22{left:287.328161px;}
.x5{left:336.132260px;}
.x10{left:450.807677px;}
.x11{left:459.948272px;}
.x12{left:469.558806px;}
.x13{left:490.039184px;}
.x14{left:533.123943px;}
.x15{left:565.314029px;}
.x1e{left:575.846723px;}
.x17{left:579.278160px;}
.x25{left:588.806117px;}
.x2{left:612.025785px;}
.x23{left:687.955650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-0.390421pt;}
.ls21{letter-spacing:-0.341619pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000794pt;}
.ls11{letter-spacing:0.007241pt;}
.ls24{letter-spacing:0.007638pt;}
.ls9{letter-spacing:0.008035pt;}
.lsc{letter-spacing:0.008134pt;}
.lsf{letter-spacing:0.008531pt;}
.ls10{letter-spacing:0.008927pt;}
.lsd{letter-spacing:0.011407pt;}
.ls25{letter-spacing:0.023806pt;}
.ls14{letter-spacing:0.048803pt;}
.ls1f{letter-spacing:0.152264pt;}
.ls15{letter-spacing:0.190330pt;}
.ls4{letter-spacing:0.219612pt;}
.ls1d{letter-spacing:0.304529pt;}
.lsb{letter-spacing:0.342595pt;}
.ls6{letter-spacing:0.351379pt;}
.ls12{letter-spacing:0.378625pt;}
.ls16{letter-spacing:0.380661pt;}
.ls22{letter-spacing:0.390421pt;}
.ls5{letter-spacing:0.395302pt;}
.lse{letter-spacing:0.417628pt;}
.lsa{letter-spacing:0.418727pt;}
.ls23{letter-spacing:0.439224pt;}
.ls3{letter-spacing:0.483146pt;}
.ls1a{letter-spacing:0.493482pt;}
.ls19{letter-spacing:0.493978pt;}
.ls1e{letter-spacing:0.494859pt;}
.ls2{letter-spacing:0.527069pt;}
.ls1{letter-spacing:0.829645pt;}
.ls26{letter-spacing:4.248906pt;}
.ls8{letter-spacing:7.949953pt;}
.ls18{letter-spacing:9.676714pt;}
.ls17{letter-spacing:9.677210pt;}
.ls1b{letter-spacing:22.823674pt;}
.ls1c{letter-spacing:22.824170pt;}
.ls7{letter-spacing:631.360088pt;}
.ws0{word-spacing:-13.030310pt;}
.ws1{word-spacing:-12.200665pt;}
.ws2{word-spacing:-11.507667pt;}
.ws8{word-spacing:-11.375900pt;}
.ws4{word-spacing:-9.935245pt;}
.ws7{word-spacing:-9.897179pt;}
.ws5{word-spacing:-9.859113pt;}
.ws6{word-spacing:-9.706849pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-7.891390pt;}
._13{margin-left:-6.969020pt;}
._1e{margin-left:-3.757805pt;}
._0{margin-left:-1.903304pt;}
._3{margin-left:-0.976053pt;}
._1{width:1.024856pt;}
._2{width:2.098514pt;}
._a{width:3.123370pt;}
._d{width:4.099423pt;}
._14{width:5.270687pt;}
._9{width:6.685964pt;}
._f{width:8.335494pt;}
._b{width:9.467716pt;}
._7{width:10.638979pt;}
._10{width:12.166503pt;}
._e{width:13.059591pt;}
._16{width:14.591995pt;}
._c{width:15.909667pt;}
._8{width:17.373746pt;}
._19{width:18.663430pt;}
._18{width:19.631917pt;}
._1a{width:20.994693pt;}
._1b{width:22.041233pt;}
._17{width:23.181263pt;}
._1c{width:24.498934pt;}
._1d{width:25.426185pt;}
._1f{width:26.548646pt;}
._15{width:27.719910pt;}
._20{width:38.651705pt;}
._4{width:156.705137pt;}
._6{width:631.360088pt;}
._11{width:706.515884pt;}
._5{width:718.033907pt;}
.fs4{font-size:38.066073pt;}
.fs2{font-size:40.018180pt;}
.fs3{font-size:43.922392pt;}
.fs0{font-size:44.636578pt;}
.fs1{font-size:48.802658pt;}
.ybf{bottom:-0.243809pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:25.659585pt;}
.y4{bottom:42.047160pt;}
.y61{bottom:92.069885pt;}
.y10f{bottom:92.801925pt;}
.y12d{bottom:94.754031pt;}
.ybd{bottom:97.438177pt;}
.yed{bottom:98.414106pt;}
.y149{bottom:105.002589pt;}
.y60{bottom:106.222656pt;}
.y10e{bottom:106.954696pt;}
.y12c{bottom:108.662789pt;}
.y16f{bottom:110.614895pt;}
.ybc{bottom:111.590948pt;}
.yec{bottom:112.322864pt;}
.y30{bottom:114.994933pt;}
.y8f{bottom:116.715227pt;}
.y148{bottom:119.155360pt;}
.y5f{bottom:120.131413pt;}
.y10d{bottom:120.863453pt;}
.y12b{bottom:122.815559pt;}
.yf0{bottom:124.038106pt;}
.y16e{bottom:124.523652pt;}
.ybb{bottom:125.499706pt;}
.yeb{bottom:126.475635pt;}
.y12e{bottom:127.207799pt;}
.y2f{bottom:127.688510pt;}
.y8e{bottom:130.623985pt;}
.yc2{bottom:130.867998pt;}
.y1{bottom:132.000000pt;}
.y147{bottom:133.064118pt;}
.y5e{bottom:134.284184pt;}
.y195{bottom:135.016224pt;}
.y185{bottom:136.724317pt;}
.y16d{bottom:138.676423pt;}
.y198{bottom:139.414539pt;}
.yba{bottom:139.652476pt;}
.y2e{bottom:140.623694pt;}
.y74{bottom:146.839200pt;}
.y10c{bottom:147.216889pt;}
.y5d{bottom:148.192942pt;}
.y12a{bottom:148.924982pt;}
.y8d{bottom:150.877088pt;}
.yea{bottom:152.585057pt;}
.y16c{bottom:152.585181pt;}
.y2d{bottom:153.558754pt;}
.yb9{bottom:153.561234pt;}
.y10b{bottom:161.125646pt;}
.y5c{bottom:162.101699pt;}
.y129{bottom:163.077752pt;}
.y8c{bottom:164.785845pt;}
.y2c{bottom:166.493938pt;}
.ye9{bottom:166.737828pt;}
.y16b{bottom:166.737952pt;}
.yb8{bottom:167.714005pt;}
.y92{bottom:170.647000pt;}
.y10a{bottom:175.278417pt;}
.y5b{bottom:176.254470pt;}
.y128{bottom:176.986510pt;}
.y8b{bottom:178.938616pt;}
.y2b{bottom:179.426643pt;}
.y16a{bottom:180.646709pt;}
.y8a{bottom:184.108382pt;}
.y109{bottom:189.187175pt;}
.y5a{bottom:190.163228pt;}
.y127{bottom:191.139281pt;}
.y184{bottom:192.847374pt;}
.y2a{bottom:193.579414pt;}
.yb7{bottom:193.823427pt;}
.y169{bottom:194.799480pt;}
.y108{bottom:203.339945pt;}
.y59{bottom:204.315999pt;}
.ye8{bottom:205.047914pt;}
.y126{bottom:205.048038pt;}
.y12f{bottom:206.512118pt;}
.y183{bottom:207.000145pt;}
.y29{bottom:207.488171pt;}
.yb6{bottom:207.976198pt;}
.y168{bottom:208.708238pt;}
.y107{bottom:217.248703pt;}
.y58{bottom:218.224756pt;}
.ye7{bottom:219.200685pt;}
.y89{bottom:219.200809pt;}
.y182{bottom:220.908902pt;}
.y28{bottom:221.640942pt;}
.yb5{bottom:221.884956pt;}
.y167{bottom:222.861009pt;}
.y146{bottom:229.449368pt;}
.y106{bottom:231.401474pt;}
.y57{bottom:232.377527pt;}
.ye6{bottom:233.109443pt;}
.y88{bottom:233.109567pt;}
.y181{bottom:235.061673pt;}
.y27{bottom:235.549700pt;}
.yb4{bottom:236.037726pt;}
.y166{bottom:236.769766pt;}
.y145{bottom:243.602138pt;}
.y105{bottom:245.310231pt;}
.y56{bottom:246.286285pt;}
.ye5{bottom:247.262214pt;}
.y87{bottom:247.262338pt;}
.y180{bottom:248.970431pt;}
.y26{bottom:249.702471pt;}
.yb3{bottom:249.946484pt;}
.y165{bottom:250.922537pt;}
.y144{bottom:257.510896pt;}
.y104{bottom:259.463002pt;}
.y55{bottom:260.439055pt;}
.ye4{bottom:261.170971pt;}
.y125{bottom:261.171095pt;}
.y17f{bottom:263.123202pt;}
.y25{bottom:263.611228pt;}
.yb2{bottom:264.099255pt;}
.y164{bottom:264.831295pt;}
.y86{bottom:267.271428pt;}
.y143{bottom:271.663667pt;}
.y103{bottom:273.371760pt;}
.y54{bottom:274.347813pt;}
.ye3{bottom:275.323742pt;}
.y124{bottom:275.323866pt;}
.y17e{bottom:277.031959pt;}
.y24{bottom:277.763999pt;}
.yb1{bottom:278.008012pt;}
.y163{bottom:278.984066pt;}
.y85{bottom:281.424198pt;}
.y14b{bottom:283.376305pt;}
.y142{bottom:285.572424pt;}
.y102{bottom:287.524531pt;}
.y53{bottom:288.500584pt;}
.ye2{bottom:289.232500pt;}
.y123{bottom:289.232624pt;}
.y17d{bottom:291.184730pt;}
.y23{bottom:291.672757pt;}
.yb0{bottom:292.160783pt;}
.yc1{bottom:293.864041pt;}
.y84{bottom:295.332956pt;}
.y141{bottom:299.725195pt;}
.y101{bottom:301.433288pt;}
.y52{bottom:302.409342pt;}
.y122{bottom:303.385395pt;}
.y162{bottom:305.093488pt;}
.y22{bottom:305.825528pt;}
.yaf{bottom:306.069541pt;}
.y140{bottom:313.633953pt;}
.ye1{bottom:315.585935pt;}
.y83{bottom:315.586059pt;}
.y51{bottom:316.562112pt;}
.y121{bottom:317.294028pt;}
.y161{bottom:319.246259pt;}
.y21{bottom:319.480353pt;}
.yae{bottom:320.222312pt;}
.y13f{bottom:327.786724pt;}
.ye0{bottom:329.494693pt;}
.y82{bottom:329.494817pt;}
.y50{bottom:330.470870pt;}
.y120{bottom:331.446799pt;}
.y20{bottom:332.415537pt;}
.y15e{bottom:332.468463pt;}
.y160{bottom:333.155016pt;}
.yad{bottom:334.131069pt;}
.y13e{bottom:341.695481pt;}
.ydf{bottom:343.647464pt;}
.y81{bottom:343.647588pt;}
.y4f{bottom:344.623641pt;}
.y1f{bottom:345.350721pt;}
.y11f{bottom:345.355557pt;}
.y15d{bottom:346.377221pt;}
.y15f{bottom:347.307787pt;}
.yac{bottom:348.039827pt;}
.y13d{bottom:355.848252pt;}
.yde{bottom:357.556221pt;}
.y80{bottom:357.556345pt;}
.y1e{bottom:358.044248pt;}
.y4e{bottom:358.532398pt;}
.y11e{bottom:359.508328pt;}
.y15c{bottom:360.529991pt;}
.y17c{bottom:361.216545pt;}
.yab{bottom:362.192598pt;}
.y188{bottom:364.392313pt;}
.y13c{bottom:369.757010pt;}
.y1d{bottom:371.221090pt;}
.ydd{bottom:371.708992pt;}
.y100{bottom:371.709116pt;}
.y4d{bottom:372.685169pt;}
.y11d{bottom:373.417085pt;}
.y15b{bottom:374.438749pt;}
.yef{bottom:374.878809pt;}
.yaa{bottom:376.101355pt;}
.y7d{bottom:376.879006pt;}
.y7f{bottom:377.809448pt;}
.y13b{bottom:383.909781pt;}
.y19e{bottom:384.931445pt;}
.y1c{bottom:385.129847pt;}
.ydc{bottom:385.617750pt;}
.y194{bottom:385.617874pt;}
.y4c{bottom:386.593927pt;}
.y11c{bottom:387.569856pt;}
.y17b{bottom:387.569980pt;}
.y15a{bottom:388.591520pt;}
.ya9{bottom:390.254126pt;}
.y7c{bottom:391.031777pt;}
.y7e{bottom:391.718206pt;}
.y112{bottom:391.954904pt;}
.yff{bottom:397.818538pt;}
.y19d{bottom:398.840202pt;}
.y1b{bottom:399.282618pt;}
.ydb{bottom:399.770521pt;}
.y193{bottom:399.770645pt;}
.y4b{bottom:400.746698pt;}
.y17a{bottom:401.478738pt;}
.y159{bottom:402.500278pt;}
.ya8{bottom:404.162884pt;}
.yfe{bottom:411.971309pt;}
.y19c{bottom:412.992973pt;}
.y1a{bottom:413.191376pt;}
.yda{bottom:413.679278pt;}
.y192{bottom:413.679402pt;}
.y4a{bottom:414.655455pt;}
.y179{bottom:415.631508pt;}
.y158{bottom:416.653048pt;}
.ya7{bottom:418.315655pt;}
.y91{bottom:421.487827pt;}
.y7b{bottom:425.880067pt;}
.y19{bottom:427.344146pt;}
.yd9{bottom:427.832049pt;}
.y191{bottom:427.832173pt;}
.y49{bottom:428.808226pt;}
.y178{bottom:429.540266pt;}
.y157{bottom:430.561806pt;}
.y1a0{bottom:431.003106pt;}
.y7a{bottom:440.032838pt;}
.y18{bottom:441.252904pt;}
.yd8{bottom:441.740807pt;}
.y190{bottom:441.740931pt;}
.y48{bottom:442.716984pt;}
.y177{bottom:443.693037pt;}
.ya6{bottom:444.425077pt;}
.y156{bottom:444.714577pt;}
.yc0{bottom:444.913103pt;}
.yfd{bottom:453.941595pt;}
.y17{bottom:455.405675pt;}
.y11b{bottom:455.893577pt;}
.y18f{bottom:455.893701pt;}
.y47{bottom:456.869755pt;}
.y176{bottom:457.601795pt;}
.ya5{bottom:458.577848pt;}
.y155{bottom:458.623334pt;}
.y77{bottom:459.355498pt;}
.y79{bottom:460.041927pt;}
.yd7{bottom:468.094242pt;}
.yfc{bottom:468.094366pt;}
.y16{bottom:469.314432pt;}
.y11a{bottom:469.802335pt;}
.y18e{bottom:469.802459pt;}
.y46{bottom:470.778512pt;}
.y175{bottom:471.754565pt;}
.ya4{bottom:472.486605pt;}
.y76{bottom:473.264256pt;}
.y78{bottom:474.194698pt;}
.y197{bottom:474.443547pt;}
.y171{bottom:478.103747pt;}
.yd6{bottom:482.003000pt;}
.yfb{bottom:482.003124pt;}
.y15{bottom:483.467203pt;}
.y119{bottom:483.955106pt;}
.y45{bottom:484.931283pt;}
.y174{bottom:485.663323pt;}
.ya3{bottom:486.639376pt;}
.y75{bottom:487.417027pt;}
.y187{bottom:488.835372pt;}
.yd5{bottom:496.155770pt;}
.yfa{bottom:496.155894pt;}
.y14{bottom:497.375961pt;}
.y118{bottom:497.863864pt;}
.y44{bottom:498.840041pt;}
.y154{bottom:499.815970pt;}
.ya2{bottom:500.548134pt;}
.yd4{bottom:510.064528pt;}
.yf9{bottom:510.064652pt;}
.y13{bottom:511.528732pt;}
.y117{bottom:512.016634pt;}
.y173{bottom:512.016758pt;}
.y43{bottom:512.992812pt;}
.y14a{bottom:513.236825pt;}
.y153{bottom:513.724727pt;}
.ya1{bottom:514.700905pt;}
.y73{bottom:522.265193pt;}
.yd3{bottom:524.217299pt;}
.yf8{bottom:524.217423pt;}
.y12{bottom:525.437489pt;}
.y116{bottom:525.925392pt;}
.y172{bottom:525.925516pt;}
.y42{bottom:526.901569pt;}
.y152{bottom:527.877498pt;}
.ya0{bottom:528.609662pt;}
.y72{bottom:536.417963pt;}
.y13a{bottom:536.418087pt;}
.yd2{bottom:538.126057pt;}
.yf7{bottom:538.126180pt;}
.y11{bottom:539.590260pt;}
.y115{bottom:540.078163pt;}
.y41{bottom:541.054340pt;}
.y151{bottom:541.786256pt;}
.y9f{bottom:542.762433pt;}
.y71{bottom:550.326845pt;}
.yd1{bottom:552.278827pt;}
.yf6{bottom:552.278951pt;}
.y114{bottom:553.986920pt;}
.y40{bottom:554.963098pt;}
.y150{bottom:555.939027pt;}
.y9e{bottom:556.671191pt;}
.y111{bottom:558.618461pt;}
.y70{bottom:564.479616pt;}
.yd0{bottom:566.187585pt;}
.yf5{bottom:566.187709pt;}
.y10{bottom:566.675736pt;}
.y3f{bottom:569.115868pt;}
.y14f{bottom:569.847784pt;}
.y9d{bottom:570.823961pt;}
.y6f{bottom:578.388373pt;}
.ycf{bottom:580.340356pt;}
.yf4{bottom:580.340480pt;}
.y3e{bottom:583.024626pt;}
.yee{bottom:583.268639pt;}
.y14e{bottom:584.000555pt;}
.y9c{bottom:584.732719pt;}
.y170{bottom:588.392918pt;}
.y139{bottom:592.541020pt;}
.y6e{bottom:592.541144pt;}
.yce{bottom:594.249113pt;}
.y18d{bottom:594.249237pt;}
.y3d{bottom:597.177397pt;}
.y9b{bottom:598.885490pt;}
.yf{bottom:606.207129pt;}
.y138{bottom:606.449778pt;}
.y6d{bottom:606.449902pt;}
.ycd{bottom:608.401884pt;}
.y18c{bottom:608.402008pt;}
.y14d{bottom:610.109977pt;}
.y3c{bottom:611.086154pt;}
.y9a{bottom:612.794248pt;}
.ye{bottom:618.162540pt;}
.y137{bottom:620.602549pt;}
.y6c{bottom:620.602673pt;}
.ycc{bottom:622.310642pt;}
.y18b{bottom:622.310766pt;}
.y14c{bottom:624.262748pt;}
.y3b{bottom:625.238925pt;}
.y99{bottom:626.947018pt;}
.y90{bottom:630.119191pt;}
.yd{bottom:630.363204pt;}
.y136{bottom:634.511306pt;}
.y6b{bottom:634.511430pt;}
.ycb{bottom:636.463413pt;}
.y18a{bottom:636.463537pt;}
.y3a{bottom:639.147683pt;}
.yc{bottom:644.271962pt;}
.y135{bottom:648.664077pt;}
.y6a{bottom:648.664201pt;}
.yca{bottom:650.372170pt;}
.y189{bottom:650.372294pt;}
.y98{bottom:653.056441pt;}
.y39{bottom:653.300454pt;}
.y196{bottom:655.008547pt;}
.yb{bottom:658.424733pt;}
.y134{bottom:662.572835pt;}
.y69{bottom:662.572959pt;}
.yc9{bottom:664.524941pt;}
.y19b{bottom:664.525065pt;}
.y38{bottom:667.209211pt;}
.ya{bottom:672.333490pt;}
.y133{bottom:676.725606pt;}
.y68{bottom:676.725730pt;}
.yc8{bottom:678.433699pt;}
.y19a{bottom:678.433823pt;}
.y37{bottom:681.361982pt;}
.y97{bottom:685.505869pt;}
.y9{bottom:686.486261pt;}
.y132{bottom:690.634363pt;}
.y67{bottom:690.634487pt;}
.yc7{bottom:692.586470pt;}
.y199{bottom:692.586594pt;}
.y36{bottom:695.270740pt;}
.y19f{bottom:695.514753pt;}
.y96{bottom:699.420578pt;}
.y8{bottom:700.395019pt;}
.yf3{bottom:703.856816pt;}
.y131{bottom:704.787134pt;}
.y66{bottom:704.787258pt;}
.yc6{bottom:706.495227pt;}
.y35{bottom:709.423511pt;}
.y95{bottom:713.567273pt;}
.y7{bottom:714.547790pt;}
.yf2{bottom:718.009587pt;}
.y130{bottom:718.695892pt;}
.y65{bottom:718.696016pt;}
.y113{bottom:720.647998pt;}
.y34{bottom:723.322473pt;}
.y110{bottom:725.040361pt;}
.y94{bottom:727.480370pt;}
.y6{bottom:728.456547pt;}
.yf1{bottom:731.918344pt;}
.yc5{bottom:732.848663pt;}
.y64{bottom:732.848787pt;}
.y33{bottom:736.016124pt;}
.yc4{bottom:746.757420pt;}
.y63{bottom:746.757544pt;}
.y5{bottom:748.709651pt;}
.y32{bottom:748.951184pt;}
.y93{bottom:754.809859pt;}
.yc3{bottom:760.910191pt;}
.y62{bottom:760.910315pt;}
.y31{bottom:761.886368pt;}
.y186{bottom:763.350324pt;}
.y3{bottom:804.344681pt;}
.ybe{bottom:841.911333pt;}
.h12{height:10.004793pt;}
.h8{height:27.121696pt;}
.h7{height:27.786060pt;}
.ha{height:29.767715pt;}
.hb{height:30.496895pt;}
.h6{height:33.075239pt;}
.he{height:33.400749pt;}
.hc{height:33.885439pt;}
.hf{height:39.011148pt;}
.h3{height:39.165981pt;}
.h4{height:42.116694pt;}
.h11{height:42.815026pt;}
.h9{height:42.821473pt;}
.h13{height:42.821969pt;}
.h10{height:42.838832pt;}
.h5{height:43.345720pt;}
.hd{height:831.231067pt;}
.h2{height:860.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:26.842707pt;}
.w3{width:580.630133pt;}
.w2{width:596.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x24{left:10.533748pt;}
.x8{left:36.735903pt;}
.x26{left:62.660505pt;}
.x21{left:67.810401pt;}
.xa{left:74.179920pt;}
.x18{left:78.784927pt;}
.x1f{left:80.625690pt;}
.x3{left:82.654667pt;}
.x27{left:88.617249pt;}
.xb{left:91.198483pt;}
.x7{left:97.091996pt;}
.x1{left:98.666667pt;}
.xc{left:99.741428pt;}
.x9{left:107.141413pt;}
.x4{left:111.484837pt;}
.x1c{left:117.725753pt;}
.x19{left:119.219963pt;}
.x1a{left:127.113445pt;}
.xd{left:130.219159pt;}
.x16{left:133.570002pt;}
.xe{left:136.796235pt;}
.x1b{left:154.175239pt;}
.xf{left:163.334416pt;}
.x20{left:164.795272pt;}
.x1d{left:171.520765pt;}
.x6{left:242.186415pt;}
.x22{left:255.402810pt;}
.x5{left:298.784231pt;}
.x10{left:400.717935pt;}
.x11{left:408.842909pt;}
.x12{left:417.385606pt;}
.x13{left:435.590386pt;}
.x14{left:473.887949pt;}
.x15{left:502.501359pt;}
.x1e{left:511.863754pt;}
.x17{left:514.913920pt;}
.x25{left:523.383215pt;}
.x2{left:544.022920pt;}
.x23{left:611.516133pt;}
}




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