
    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_71f6fe7b6405aaa9c2e627de.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_b84033b313e2490396b127e3.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_80f92ef74bf52888d8dbaa19.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_583a7844285c1f02bf63a4d1.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;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff23{font-family:ff23;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;}
.m1{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;}
.ls1c{letter-spacing:-0.439224px;}
.ls1b{letter-spacing:-0.384321px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.008146px;}
.lse{letter-spacing:0.008593px;}
.lsd{letter-spacing:0.008704px;}
.ls1{letter-spacing:0.009039px;}
.ls10{letter-spacing:0.009150px;}
.ls11{letter-spacing:0.011190px;}
.lsb{letter-spacing:0.018078px;}
.lsf{letter-spacing:0.022988px;}
.ls0{letter-spacing:0.160134px;}
.ls17{letter-spacing:0.214122px;}
.ls9{letter-spacing:0.214135px;}
.ls18{letter-spacing:0.342595px;}
.ls19{letter-spacing:0.385419px;}
.ls6{letter-spacing:0.395302px;}
.ls1a{letter-spacing:0.428243px;}
.ls5{letter-spacing:0.444714px;}
.ls2{letter-spacing:0.471068px;}
.ls1f{letter-spacing:0.556716px;}
.ls4{letter-spacing:0.592952px;}
.ls7{letter-spacing:0.691778px;}
.lsc{letter-spacing:4.181331px;}
.ls1e{letter-spacing:7.280137px;}
.ls16{letter-spacing:7.300870px;}
.ls15{letter-spacing:7.301428px;}
.ls1d{letter-spacing:9.498217px;}
.ls20{letter-spacing:9.608023px;}
.ls14{letter-spacing:10.802052px;}
.ls13{letter-spacing:10.802610px;}
.ls12{letter-spacing:10.803168px;}
.ls8{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:-13.725748px;}
.ws9{word-spacing:-13.341427px;}
.ws2{word-spacing:-13.044951px;}
.wsb{word-spacing:-12.797887px;}
.wsa{word-spacing:-11.262799px;}
.ws1{word-spacing:-11.177151px;}
.ws7{word-spacing:-11.134326px;}
.ws5{word-spacing:-11.091502px;}
.ws4{word-spacing:-11.048678px;}
.ws6{word-spacing:-10.920205px;}
.ws8{word-spacing:-10.706083px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-10.847103px;}
._12{margin-left:-9.768273px;}
._15{margin-left:-7.003579px;}
._16{margin-left:-5.852525px;}
._14{margin-left:-2.361052px;}
._8{margin-left:-1.136492px;}
._7{width:1.262769px;}
._a{width:2.415732px;}
._6{width:4.062821px;}
._c{width:6.039329px;}
._e{width:7.247195px;}
._2{width:8.564867px;}
._3{width:10.596277px;}
._4{width:11.859046px;}
._11{width:14.858713px;}
._10{width:16.086576px;}
._19{width:17.568957px;}
._5{width:18.721920px;}
._9{width:19.929786px;}
._18{width:21.302360px;}
._1d{width:22.400420px;}
._1e{width:23.718092px;}
._1a{width:24.816152px;}
._1c{width:26.573047px;}
._1f{width:28.329943px;}
._1b{width:29.428003px;}
._d{width:31.184899px;}
._f{width:32.941794px;}
._17{width:34.259466px;}
._b{width:567.641795px;}
._0{width:581.312640px;}
._1{width:710.280099px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:42.824333px;}
.fs4{font-size:45.020452px;}
.fs3{font-size:49.412691px;}
.fs0{font-size:50.216150px;}
.fs1{font-size:54.902990px;}
.y8e{bottom:-0.273615px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.843705px;}
.y2{bottom:28.867033px;}
.y4{bottom:47.303055px;}
.yb8{bottom:87.708065px;}
.yb7{bottom:103.629932px;}
.y12f{bottom:104.402026px;}
.yb9{bottom:104.402165px;}
.ye0{bottom:108.519750px;}
.y11b{bottom:108.519890px;}
.y8a{bottom:115.657278px;}
.y61{bottom:116.755338px;}
.y174{bottom:118.127913px;}
.yb6{bottom:119.277285px;}
.yf9{bottom:120.323893px;}
.y169{bottom:120.324032px;}
.ydf{bottom:124.441617px;}
.y11a{bottom:124.441757px;}
.y89{bottom:131.304631px;}
.y60{bottom:132.402690px;}
.y173{bottom:134.049780px;}
.yb5{bottom:135.199152px;}
.yf8{bottom:135.971245px;}
.y168{bottom:135.971385px;}
.y1a5{bottom:138.167504px;}
.y131{bottom:139.542869px;}
.yde{bottom:140.088970px;}
.y119{bottom:140.089109px;}
.y11c{bottom:145.304893px;}
.y88{bottom:147.226498px;}
.y5f{bottom:148.324558px;}
.y1{bottom:148.500000px;}
.y172{bottom:149.697132px;}
.yb4{bottom:150.846504px;}
.yf7{bottom:151.893112px;}
.y167{bottom:151.893252px;}
.y1a4{bottom:153.814857px;}
.y30{bottom:155.736461px;}
.ydd{bottom:156.010837px;}
.y185{bottom:156.010976px;}
.y87{bottom:162.873850px;}
.y5e{bottom:163.971910px;}
.yb0{bottom:165.194100px;}
.y12e{bottom:165.618860px;}
.y171{bottom:165.619000px;}
.yb3{bottom:166.768371px;}
.yf6{bottom:167.540465px;}
.y166{bottom:167.540604px;}
.y148{bottom:169.736584px;}
.y118{bottom:169.736724px;}
.y2f{bottom:171.370144px;}
.ydc{bottom:171.658189px;}
.y184{bottom:171.658329px;}
.y86{bottom:178.795717px;}
.y5d{bottom:179.344747px;}
.y12d{bottom:181.266212px;}
.y170{bottom:181.266352px;}
.yb2{bottom:182.415724px;}
.yf5{bottom:183.462332px;}
.y165{bottom:183.462471px;}
.y147{bottom:185.383937px;}
.y117{bottom:185.384076px;}
.y2e{bottom:185.922086px;}
.ydb{bottom:187.580056px;}
.y183{bottom:187.580196px;}
.y5{bottom:191.959350px;}
.y5c{bottom:193.070495px;}
.y85{bottom:194.443070px;}
.y12c{bottom:197.188080px;}
.y16f{bottom:197.188219px;}
.yb1{bottom:198.337591px;}
.yf4{bottom:199.109684px;}
.y164{bottom:199.109824px;}
.y62{bottom:199.658854px;}
.y2d{bottom:200.474169px;}
.y146{bottom:201.305804px;}
.y1a3{bottom:201.305943px;}
.yda{bottom:203.227409px;}
.y182{bottom:203.227548px;}
.y5b{bottom:208.440263px;}
.y12b{bottom:212.835432px;}
.y16e{bottom:212.835571px;}
.y2c{bottom:214.754386px;}
.yf3{bottom:215.031551px;}
.y163{bottom:215.031691px;}
.y145{bottom:216.953156px;}
.y1a2{bottom:216.953296px;}
.yd9{bottom:219.149276px;}
.y181{bottom:219.149415px;}
.y5a{bottom:221.620050px;}
.y84{bottom:224.090684px;}
.y12a{bottom:228.757299px;}
.y116{bottom:228.757439px;}
.y2b{bottom:229.306468px;}
.yf2{bottom:230.678904px;}
.y162{bottom:230.679043px;}
.y144{bottom:232.875023px;}
.y1a1{bottom:232.875163px;}
.yd8{bottom:234.796628px;}
.y180{bottom:234.796768px;}
.y59{bottom:235.071282px;}
.y2a{bottom:243.855761px;}
.yaf{bottom:244.404651px;}
.y115{bottom:244.404791px;}
.yf1{bottom:246.600771px;}
.y161{bottom:246.600910px;}
.y143{bottom:248.522376px;}
.y1a0{bottom:248.522515px;}
.yd7{bottom:250.718495px;}
.y17f{bottom:250.718635px;}
.y58{bottom:250.993150px;}
.y188{bottom:254.291374px;}
.y29{bottom:259.777628px;}
.yae{bottom:260.326519px;}
.y114{bottom:260.326658px;}
.yf0{bottom:262.248123px;}
.y160{bottom:262.248263px;}
.y142{bottom:264.444243px;}
.y19f{bottom:264.444382px;}
.yd6{bottom:266.365848px;}
.y57{bottom:266.640502px;}
.y83{bottom:267.468232px;}
.y28{bottom:275.424980px;}
.yad{bottom:275.973871px;}
.y113{bottom:275.974010px;}
.yef{bottom:278.169990px;}
.y15f{bottom:278.170130px;}
.y141{bottom:280.091595px;}
.y17e{bottom:280.091735px;}
.y56{bottom:282.010271px;}
.yd5{bottom:282.287715px;}
.y82{bottom:284.759884px;}
.ybc{bottom:287.223683px;}
.y27{bottom:291.346848px;}
.yac{bottom:291.895738px;}
.y112{bottom:291.895878px;}
.yee{bottom:293.817343px;}
.y15e{bottom:293.817482px;}
.y55{bottom:295.190057px;}
.y140{bottom:296.013462px;}
.y17d{bottom:296.013602px;}
.y81{bottom:301.782601px;}
.y26{bottom:306.994200px;}
.yab{bottom:307.543090px;}
.y111{bottom:307.543230px;}
.y54{bottom:308.641290px;}
.yed{bottom:309.739210px;}
.y15d{bottom:309.739349px;}
.yd4{bottom:311.660815px;}
.y17c{bottom:311.660954px;}
.y1a9{bottom:315.239273px;}
.y132{bottom:316.876738px;}
.y80{bottom:319.072858px;}
.y25{bottom:322.916067px;}
.yaa{bottom:323.464958px;}
.y110{bottom:323.465097px;}
.y53{bottom:324.563157px;}
.yec{bottom:325.386562px;}
.y15c{bottom:325.386702px;}
.y11d{bottom:327.033791px;}
.yd3{bottom:327.582682px;}
.y17b{bottom:327.582821px;}
.y24{bottom:338.563419px;}
.ya9{bottom:339.112310px;}
.y10f{bottom:339.112449px;}
.y52{bottom:340.210509px;}
.yeb{bottom:341.308430px;}
.y15b{bottom:341.308569px;}
.yd2{bottom:343.230034px;}
.y17a{bottom:343.230174px;}
.yfc{bottom:344.321259px;}
.y16c{bottom:344.872939px;}
.y7f{bottom:350.642077px;}
.y129{bottom:352.838058px;}
.y23{bottom:354.485287px;}
.ya8{bottom:355.034177px;}
.y16d{bottom:355.034317px;}
.y51{bottom:355.580278px;}
.yea{bottom:356.955782px;}
.y19e{bottom:356.955921px;}
.yd1{bottom:359.151901px;}
.y179{bottom:359.152041px;}
.y8d{bottom:367.374000px;}
.y128{bottom:368.759925px;}
.y50{bottom:368.760064px;}
.y22{bottom:370.132639px;}
.ya7{bottom:370.681529px;}
.y15a{bottom:370.681669px;}
.ye9{bottom:372.877649px;}
.y19d{bottom:372.877789px;}
.yd0{bottom:374.799254px;}
.y178{bottom:374.799393px;}
.y176{bottom:375.895919px;}
.y187{bottom:378.366553px;}
.y4f{bottom:382.485812px;}
.y127{bottom:384.407277px;}
.y10e{bottom:384.407417px;}
.y21{bottom:386.054506px;}
.ya6{bottom:386.603397px;}
.y159{bottom:386.603536px;}
.y7e{bottom:386.878051px;}
.ye8{bottom:388.525001px;}
.y19c{bottom:388.525141px;}
.ycf{bottom:390.721121px;}
.y191{bottom:391.547456px;}
.ye3{bottom:393.735485px;}
.y4e{bottom:398.133164px;}
.y126{bottom:400.329144px;}
.y10d{bottom:400.329284px;}
.y20{bottom:401.690839px;}
.ya5{bottom:402.250749px;}
.y158{bottom:402.250888px;}
.y13f{bottom:404.446869px;}
.y177{bottom:404.447008px;}
.yce{bottom:406.368473px;}
.y7d{bottom:409.662792px;}
.y4d{bottom:414.055031px;}
.y1f{bottom:415.971196px;}
.y125{bottom:415.976497px;}
.y10c{bottom:415.976636px;}
.ya4{bottom:418.172616px;}
.y157{bottom:418.172756px;}
.y13e{bottom:420.094221px;}
.y19b{bottom:420.094360px;}
.ycd{bottom:422.290340px;}
.y7c{bottom:425.310005px;}
.y4c{bottom:429.702384px;}
.y1e{bottom:430.523139px;}
.y124{bottom:431.898364px;}
.y10b{bottom:431.898503px;}
.ya3{bottom:433.819968px;}
.y156{bottom:433.820108px;}
.y13d{bottom:436.016088px;}
.y19a{bottom:436.016228px;}
.ycc{bottom:437.937693px;}
.y7b{bottom:441.232012px;}
.y1d{bottom:445.075221px;}
.y4b{bottom:445.624251px;}
.y123{bottom:447.545716px;}
.y10a{bottom:447.545856px;}
.ya2{bottom:449.741836px;}
.y155{bottom:449.741975px;}
.y13c{bottom:451.663440px;}
.y199{bottom:451.663580px;}
.ycb{bottom:453.859560px;}
.y1a8{bottom:455.237714px;}
.y1c{bottom:459.624513px;}
.y4a{bottom:461.271603px;}
.y190{bottom:462.420975px;}
.y122{bottom:463.467583px;}
.y109{bottom:463.467723px;}
.y7a{bottom:463.742238px;}
.ya1{bottom:465.389188px;}
.y154{bottom:465.389327px;}
.y13b{bottom:467.585308px;}
.yca{bottom:469.506912px;}
.y1b{bottom:475.546381px;}
.y49{bottom:477.193470px;}
.y18f{bottom:478.342842px;}
.y121{bottom:479.114936px;}
.y108{bottom:479.115075px;}
.y79{bottom:479.664105px;}
.ya0{bottom:481.311055px;}
.y153{bottom:481.311195px;}
.y13a{bottom:483.232660px;}
.yc9{bottom:485.428779px;}
.y1a{bottom:491.193733px;}
.y48{bottom:492.840823px;}
.y18e{bottom:493.990195px;}
.y120{bottom:495.036803px;}
.y107{bottom:495.036942px;}
.y9f{bottom:496.958407px;}
.y152{bottom:496.958547px;}
.y139{bottom:499.154527px;}
.yc8{bottom:501.076132px;}
.y78{bottom:502.174331px;}
.y19{bottom:507.115600px;}
.y47{bottom:508.762690px;}
.y18d{bottom:509.912062px;}
.y11f{bottom:510.684155px;}
.y106{bottom:510.684295px;}
.y9e{bottom:512.880275px;}
.y151{bottom:512.880414px;}
.y138{bottom:514.801879px;}
.y8c{bottom:516.170409px;}
.yc7{bottom:516.997999px;}
.y18{bottom:522.762952px;}
.y46{bottom:524.410042px;}
.y77{bottom:524.959072px;}
.y18c{bottom:525.559414px;}
.y11e{bottom:526.606022px;}
.y105{bottom:526.606162px;}
.ye7{bottom:528.527627px;}
.y150{bottom:528.527766px;}
.y137{bottom:530.723747px;}
.y16b{bottom:532.097716px;}
.yc6{bottom:532.645351px;}
.ybb{bottom:537.857090px;}
.y17{bottom:538.684820px;}
.y45{bottom:540.331909px;}
.y76{bottom:540.606424px;}
.y18b{bottom:541.481281px;}
.y9d{bottom:542.253375px;}
.y104{bottom:542.253514px;}
.ye6{bottom:544.449494px;}
.y198{bottom:544.449634px;}
.y136{bottom:546.371099px;}
.y16{bottom:554.332172px;}
.y44{bottom:555.979262px;}
.y75{bottom:556.528292px;}
.y18a{bottom:557.128634px;}
.y9c{bottom:558.175242px;}
.y103{bottom:558.175381px;}
.ye5{bottom:560.096846px;}
.y197{bottom:560.096986px;}
.yc5{bottom:562.292966px;}
.ye2{bottom:563.665680px;}
.y149{bottom:567.239815px;}
.y15{bottom:570.254039px;}
.y43{bottom:571.901129px;}
.y189{bottom:573.050501px;}
.y9b{bottom:573.822594px;}
.y102{bottom:573.822734px;}
.y196{bottom:576.018853px;}
.y74{bottom:579.038518px;}
.y1a7{bottom:579.313033px;}
.y14{bottom:585.901391px;}
.y42{bottom:587.548481px;}
.y9a{bottom:589.744461px;}
.y101{bottom:589.744601px;}
.y135{bottom:591.666066px;}
.y186{bottom:593.040036px;}
.y175{bottom:594.682941px;}
.y73{bottom:594.960245px;}
.y13{bottom:601.823259px;}
.y41{bottom:603.470348px;}
.y99{bottom:605.391814px;}
.y100{bottom:605.391953px;}
.y72{bottom:610.607737px;}
.y12{bottom:617.470471px;}
.y40{bottom:619.117701px;}
.y98{bottom:621.313681px;}
.yff{bottom:621.313820px;}
.y11{bottom:633.392339px;}
.y71{bottom:633.392478px;}
.y134{bottom:635.039428px;}
.y3f{bottom:635.039568px;}
.y97{bottom:636.961033px;}
.yfe{bottom:636.961173px;}
.y8b{bottom:640.529867px;}
.y10{bottom:649.039691px;}
.y70{bottom:649.039830px;}
.y133{bottom:650.686781px;}
.y3e{bottom:650.686920px;}
.yc4{bottom:652.882900px;}
.yfd{bottom:652.883040px;}
.y130{bottom:656.177219px;}
.y6f{bottom:664.961698px;}
.y96{bottom:666.608648px;}
.y3d{bottom:666.608787px;}
.yc3{bottom:668.530253px;}
.y14f{bottom:668.530392px;}
.yf{bottom:679.510851px;}
.y6e{bottom:680.608910px;}
.y95{bottom:682.256000px;}
.y3c{bottom:682.256140px;}
.yc2{bottom:684.452120px;}
.y14e{bottom:684.452259px;}
.y1aa{bottom:689.394784px;}
.y94{bottom:698.177867px;}
.y3b{bottom:698.178007px;}
.yc1{bottom:700.099472px;}
.y14d{bottom:700.099612px;}
.y6d{bottom:703.393652px;}
.y93{bottom:713.825220px;}
.y3a{bottom:713.825359px;}
.yc0{bottom:716.021339px;}
.y14c{bottom:716.021479px;}
.y6c{bottom:719.041143px;}
.yfb{bottom:720.957168px;}
.ye{bottom:724.805957px;}
.y92{bottom:729.747087px;}
.y39{bottom:729.747226px;}
.ybf{bottom:731.668692px;}
.y14b{bottom:731.668831px;}
.y6b{bottom:734.963011px;}
.yd{bottom:740.727825px;}
.y91{bottom:745.394439px;}
.y38{bottom:745.394579px;}
.ybe{bottom:747.590559px;}
.y14a{bottom:747.590698px;}
.y6a{bottom:750.610363px;}
.y16a{bottom:750.884738px;}
.yc{bottom:756.375177px;}
.y90{bottom:761.316306px;}
.y37{bottom:761.316446px;}
.ybd{bottom:763.237911px;}
.y195{bottom:763.238051px;}
.y69{bottom:765.979992px;}
.yba{bottom:768.453835px;}
.yb{bottom:772.297044px;}
.y8f{bottom:776.963659px;}
.y36{bottom:776.963798px;}
.y68{bottom:779.159778px;}
.y194{bottom:779.159918px;}
.ya{bottom:787.944396px;}
.y67{bottom:792.885526px;}
.y35{bottom:792.885665px;}
.ye4{bottom:794.807131px;}
.y193{bottom:794.807270px;}
.ye1{bottom:798.375964px;}
.y9{bottom:803.866264px;}
.y66{bottom:808.532878px;}
.y34{bottom:808.533018px;}
.y192{bottom:810.729137px;}
.y1a6{bottom:814.023317px;}
.y8{bottom:819.513616px;}
.y65{bottom:824.454745px;}
.y33{bottom:824.454885px;}
.y64{bottom:840.102098px;}
.y32{bottom:840.102237px;}
.y7{bottom:842.298357px;}
.y63{bottom:856.023965px;}
.y31{bottom:856.024104px;}
.yfa{bottom:858.769114px;}
.y3{bottom:904.613251px;}
.h14{height:11.255392px;}
.h5{height:16.470900px;}
.ha{height:33.488680px;}
.hb{height:34.309007px;}
.h7{height:37.209644px;}
.h11{height:37.575843px;}
.hc{height:38.121119px;}
.hd{height:39.502809px;}
.he{height:39.986427px;}
.hf{height:43.887542px;}
.h3{height:44.061729px;}
.h4{height:47.381281px;}
.h13{height:48.157418px;}
.h12{height:48.168578px;}
.h9{height:48.174157px;}
.h10{height:48.174715px;}
.h6{height:48.763935px;}
.h8{height:48.764493px;}
.h15{height:935.134950px;}
.h2{height:967.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:10.431010px;}
.w4{width:30.198045px;}
.w5{width:653.208900px;}
.w2{width:670.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:5.176178px;}
.xf{left:11.850766px;}
.xa{left:41.327891px;}
.x15{left:69.680725px;}
.x14{left:70.767583px;}
.xd{left:76.561216px;}
.x12{left:83.458771px;}
.x3{left:92.986500px;}
.x11{left:99.694405px;}
.x9{left:109.228495px;}
.x1{left:111.000000px;}
.x10{left:120.534090px;}
.x6{left:125.420442px;}
.x13{left:133.687805px;}
.xe{left:175.710450px;}
.x8{left:272.459717px;}
.xc{left:287.346573px;}
.x7{left:336.206748px;}
.x16{left:579.278160px;}
.xb{left:589.904177px;}
.x2{left:612.025785px;}
.x4{left:679.995000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.390421pt;}
.ls1b{letter-spacing:-0.341619pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.007241pt;}
.lse{letter-spacing:0.007638pt;}
.lsd{letter-spacing:0.007737pt;}
.ls1{letter-spacing:0.008035pt;}
.ls10{letter-spacing:0.008134pt;}
.ls11{letter-spacing:0.009947pt;}
.lsb{letter-spacing:0.016069pt;}
.lsf{letter-spacing:0.020434pt;}
.ls0{letter-spacing:0.142341pt;}
.ls17{letter-spacing:0.190330pt;}
.ls9{letter-spacing:0.190342pt;}
.ls18{letter-spacing:0.304529pt;}
.ls19{letter-spacing:0.342595pt;}
.ls6{letter-spacing:0.351379pt;}
.ls1a{letter-spacing:0.380661pt;}
.ls5{letter-spacing:0.395302pt;}
.ls2{letter-spacing:0.418727pt;}
.ls1f{letter-spacing:0.494859pt;}
.ls4{letter-spacing:0.527069pt;}
.ls7{letter-spacing:0.614913pt;}
.lsc{letter-spacing:3.716739pt;}
.ls1e{letter-spacing:6.471232pt;}
.ls16{letter-spacing:6.489662pt;}
.ls15{letter-spacing:6.490158pt;}
.ls1d{letter-spacing:8.442860pt;}
.ls20{letter-spacing:8.540465pt;}
.ls14{letter-spacing:9.601824pt;}
.ls13{letter-spacing:9.602320pt;}
.ls12{letter-spacing:9.602816pt;}
.ls8{letter-spacing:631.360088pt;}
.ws0{word-spacing:-12.200665pt;}
.ws9{word-spacing:-11.859046pt;}
.ws2{word-spacing:-11.595512pt;}
.wsb{word-spacing:-11.375900pt;}
.wsa{word-spacing:-10.011377pt;}
.ws1{word-spacing:-9.935245pt;}
.ws7{word-spacing:-9.897179pt;}
.ws5{word-spacing:-9.859113pt;}
.ws4{word-spacing:-9.821047pt;}
.ws6{word-spacing:-9.706849pt;}
.ws8{word-spacing:-9.516518pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-9.641870pt;}
._12{margin-left:-8.682909pt;}
._15{margin-left:-6.225404pt;}
._16{margin-left:-5.202244pt;}
._14{margin-left:-2.098713pt;}
._8{margin-left:-1.010215pt;}
._7{width:1.122461pt;}
._a{width:2.147317pt;}
._6{width:3.611397pt;}
._c{width:5.368292pt;}
._e{width:6.441951pt;}
._2{width:7.613215pt;}
._3{width:9.418913pt;}
._4{width:10.541374pt;}
._11{width:13.207745pt;}
._10{width:14.299179pt;}
._19{width:15.616851pt;}
._5{width:16.641706pt;}
._9{width:17.715365pt;}
._18{width:18.935431pt;}
._1d{width:19.911485pt;}
._1e{width:21.082748pt;}
._1a{width:22.058801pt;}
._1c{width:23.620487pt;}
._1f{width:25.182172pt;}
._1b{width:26.158225pt;}
._d{width:27.719910pt;}
._f{width:29.281595pt;}
._17{width:30.452859pt;}
._b{width:504.570484pt;}
._0{width:516.722346pt;}
._1{width:631.360088pt;}
.fs2{font-size:38.066073pt;}
.fs4{font-size:40.018180pt;}
.fs3{font-size:43.922392pt;}
.fs0{font-size:44.636578pt;}
.fs1{font-size:48.802658pt;}
.y8e{bottom:-0.243213pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.416627pt;}
.y2{bottom:25.659585pt;}
.y4{bottom:42.047160pt;}
.yb8{bottom:77.962725pt;}
.yb7{bottom:92.115496pt;}
.y12f{bottom:92.801801pt;}
.yb9{bottom:92.801925pt;}
.ye0{bottom:96.462000pt;}
.y11b{bottom:96.462124pt;}
.y8a{bottom:102.806470pt;}
.y61{bottom:103.782523pt;}
.y174{bottom:105.002589pt;}
.yb6{bottom:106.024253pt;}
.yf9{bottom:106.954572pt;}
.y169{bottom:106.954696pt;}
.ydf{bottom:110.614771pt;}
.y11a{bottom:110.614895pt;}
.y89{bottom:116.715227pt;}
.y60{bottom:117.691280pt;}
.y173{bottom:119.155360pt;}
.yb5{bottom:120.177024pt;}
.yf8{bottom:120.863329pt;}
.y168{bottom:120.863453pt;}
.y1a5{bottom:122.815559pt;}
.y131{bottom:124.038106pt;}
.yde{bottom:124.523528pt;}
.y119{bottom:124.523652pt;}
.y11c{bottom:129.159905pt;}
.y88{bottom:130.867998pt;}
.y5f{bottom:131.844051pt;}
.y1{bottom:132.000000pt;}
.y172{bottom:133.064118pt;}
.yb4{bottom:134.085782pt;}
.yf7{bottom:135.016100pt;}
.y167{bottom:135.016224pt;}
.y1a4{bottom:136.724317pt;}
.y30{bottom:138.432410pt;}
.ydd{bottom:138.676299pt;}
.y185{bottom:138.676423pt;}
.y87{bottom:144.776756pt;}
.y5e{bottom:145.752809pt;}
.yb0{bottom:146.839200pt;}
.y12e{bottom:147.216765pt;}
.y171{bottom:147.216889pt;}
.yb3{bottom:148.238552pt;}
.yf6{bottom:148.924858pt;}
.y166{bottom:148.924982pt;}
.y148{bottom:150.876964pt;}
.y118{bottom:150.877088pt;}
.y2f{bottom:152.329017pt;}
.ydc{bottom:152.585057pt;}
.y184{bottom:152.585181pt;}
.y86{bottom:158.929526pt;}
.y5d{bottom:159.417553pt;}
.y12d{bottom:161.125522pt;}
.y170{bottom:161.125646pt;}
.yb2{bottom:162.147310pt;}
.yf5{bottom:163.077628pt;}
.y165{bottom:163.077752pt;}
.y147{bottom:164.785721pt;}
.y117{bottom:164.785845pt;}
.y2e{bottom:165.264077pt;}
.ydb{bottom:166.737828pt;}
.y183{bottom:166.737952pt;}
.y5{bottom:170.630533pt;}
.y5c{bottom:171.618218pt;}
.y85{bottom:172.838284pt;}
.y12c{bottom:175.278293pt;}
.y16f{bottom:175.278417pt;}
.yb1{bottom:176.300081pt;}
.yf4{bottom:176.986386pt;}
.y164{bottom:176.986510pt;}
.y62{bottom:177.474537pt;}
.y2d{bottom:178.199261pt;}
.y146{bottom:178.938492pt;}
.y1a3{bottom:178.938616pt;}
.yda{bottom:180.646585pt;}
.y182{bottom:180.646709pt;}
.y5b{bottom:185.280234pt;}
.y12b{bottom:189.187051pt;}
.y16e{bottom:189.187175pt;}
.y2c{bottom:190.892788pt;}
.yf3{bottom:191.139157pt;}
.y163{bottom:191.139281pt;}
.y145{bottom:192.847250pt;}
.y1a2{bottom:192.847374pt;}
.yd9{bottom:194.799356pt;}
.y181{bottom:194.799480pt;}
.y5a{bottom:196.995600pt;}
.y84{bottom:199.191719pt;}
.y12a{bottom:203.339821pt;}
.y116{bottom:203.339945pt;}
.y2b{bottom:203.827972pt;}
.yf2{bottom:205.047914pt;}
.y162{bottom:205.048038pt;}
.y144{bottom:207.000021pt;}
.y1a1{bottom:207.000145pt;}
.yd8{bottom:208.708114pt;}
.y180{bottom:208.708238pt;}
.y59{bottom:208.952251pt;}
.y2a{bottom:216.760676pt;}
.yaf{bottom:217.248579pt;}
.y115{bottom:217.248703pt;}
.yf1{bottom:219.200685pt;}
.y161{bottom:219.200809pt;}
.y143{bottom:220.908778pt;}
.y1a0{bottom:220.908902pt;}
.yd7{bottom:222.860885pt;}
.y17f{bottom:222.861009pt;}
.y58{bottom:223.105022pt;}
.y188{bottom:226.036777pt;}
.y29{bottom:230.913447pt;}
.yae{bottom:231.401350pt;}
.y114{bottom:231.401474pt;}
.yf0{bottom:233.109443pt;}
.y160{bottom:233.109567pt;}
.y142{bottom:235.061549pt;}
.y19f{bottom:235.061673pt;}
.yd6{bottom:236.769642pt;}
.y57{bottom:237.013780pt;}
.y83{bottom:237.749539pt;}
.y28{bottom:244.822205pt;}
.yad{bottom:245.310107pt;}
.y113{bottom:245.310231pt;}
.yef{bottom:247.262214pt;}
.y15f{bottom:247.262338pt;}
.y141{bottom:248.970307pt;}
.y17e{bottom:248.970431pt;}
.y56{bottom:250.675796pt;}
.yd5{bottom:250.922413pt;}
.y82{bottom:253.119897pt;}
.ybc{bottom:255.309941pt;}
.y27{bottom:258.974976pt;}
.yac{bottom:259.462878pt;}
.y112{bottom:259.463002pt;}
.yee{bottom:261.170971pt;}
.y15e{bottom:261.171095pt;}
.y55{bottom:262.391162pt;}
.y140{bottom:263.123078pt;}
.y17d{bottom:263.123202pt;}
.y81{bottom:268.251200pt;}
.y26{bottom:272.883733pt;}
.yab{bottom:273.371636pt;}
.y111{bottom:273.371760pt;}
.y54{bottom:274.347813pt;}
.yed{bottom:275.323742pt;}
.y15d{bottom:275.323866pt;}
.yd4{bottom:277.031835pt;}
.y17c{bottom:277.031959pt;}
.y1a9{bottom:280.212687pt;}
.y132{bottom:281.668212pt;}
.y80{bottom:283.620318pt;}
.y25{bottom:287.036504pt;}
.yaa{bottom:287.524407pt;}
.y110{bottom:287.524531pt;}
.y53{bottom:288.500584pt;}
.yec{bottom:289.232500pt;}
.y15c{bottom:289.232624pt;}
.y11d{bottom:290.696704pt;}
.yd3{bottom:291.184606pt;}
.y17b{bottom:291.184730pt;}
.y24{bottom:300.945262pt;}
.ya9{bottom:301.433164pt;}
.y10f{bottom:301.433288pt;}
.y52{bottom:302.409342pt;}
.yeb{bottom:303.385271pt;}
.y15b{bottom:303.385395pt;}
.yd2{bottom:305.093364pt;}
.y17a{bottom:305.093488pt;}
.yfc{bottom:306.063341pt;}
.y16c{bottom:306.553724pt;}
.y7f{bottom:311.681847pt;}
.y129{bottom:313.633829pt;}
.y23{bottom:315.098033pt;}
.ya8{bottom:315.585935pt;}
.y16d{bottom:315.586059pt;}
.y51{bottom:316.071358pt;}
.yea{bottom:317.294028pt;}
.y19e{bottom:317.294152pt;}
.yd1{bottom:319.246135pt;}
.y179{bottom:319.246259pt;}
.y8d{bottom:326.554667pt;}
.y128{bottom:327.786600pt;}
.y50{bottom:327.786724pt;}
.y22{bottom:329.006790pt;}
.ya7{bottom:329.494693pt;}
.y15a{bottom:329.494817pt;}
.ye9{bottom:331.446799pt;}
.y19d{bottom:331.446923pt;}
.yd0{bottom:333.154892pt;}
.y178{bottom:333.155016pt;}
.y176{bottom:334.129705pt;}
.y187{bottom:336.325825pt;}
.y4f{bottom:339.987388pt;}
.y127{bottom:341.695357pt;}
.y10e{bottom:341.695481pt;}
.y21{bottom:343.159561pt;}
.ya6{bottom:343.647464pt;}
.y159{bottom:343.647588pt;}
.y7e{bottom:343.891601pt;}
.ye8{bottom:345.355557pt;}
.y19c{bottom:345.355681pt;}
.ycf{bottom:347.307663pt;}
.y191{bottom:348.042183pt;}
.ye3{bottom:349.987098pt;}
.y4e{bottom:353.896146pt;}
.y126{bottom:355.848128pt;}
.y10d{bottom:355.848252pt;}
.y20{bottom:357.058523pt;}
.ya5{bottom:357.556221pt;}
.y158{bottom:357.556345pt;}
.y13f{bottom:359.508328pt;}
.y177{bottom:359.508452pt;}
.yce{bottom:361.216421pt;}
.y7d{bottom:364.144704pt;}
.y4d{bottom:368.048917pt;}
.y1f{bottom:369.752174pt;}
.y125{bottom:369.756886pt;}
.y10c{bottom:369.757010pt;}
.ya4{bottom:371.708992pt;}
.y157{bottom:371.709116pt;}
.y13e{bottom:373.417085pt;}
.y19b{bottom:373.417209pt;}
.ycd{bottom:375.369191pt;}
.y7c{bottom:378.053338pt;}
.y4c{bottom:381.957674pt;}
.y1e{bottom:382.687234pt;}
.y124{bottom:383.909657pt;}
.y10b{bottom:383.909781pt;}
.ya3{bottom:385.617750pt;}
.y156{bottom:385.617874pt;}
.y13d{bottom:387.569856pt;}
.y19a{bottom:387.569980pt;}
.ycc{bottom:389.277949pt;}
.y7b{bottom:392.206233pt;}
.y1d{bottom:395.622419pt;}
.y4b{bottom:396.110445pt;}
.y123{bottom:397.818414pt;}
.y10a{bottom:397.818538pt;}
.ya2{bottom:399.770521pt;}
.y155{bottom:399.770645pt;}
.y13c{bottom:401.478614pt;}
.y199{bottom:401.478738pt;}
.ycb{bottom:403.430720pt;}
.y1a8{bottom:404.655746pt;}
.y1c{bottom:408.555123pt;}
.y4a{bottom:410.019203pt;}
.y190{bottom:411.040867pt;}
.y122{bottom:411.971185pt;}
.y109{bottom:411.971309pt;}
.y7a{bottom:412.215322pt;}
.ya1{bottom:413.679278pt;}
.y154{bottom:413.679402pt;}
.y13b{bottom:415.631384pt;}
.yca{bottom:417.339478pt;}
.y1b{bottom:422.707894pt;}
.y49{bottom:424.171974pt;}
.y18f{bottom:425.193638pt;}
.y121{bottom:425.879943pt;}
.y108{bottom:425.880067pt;}
.y79{bottom:426.368093pt;}
.ya0{bottom:427.832049pt;}
.y153{bottom:427.832173pt;}
.y13a{bottom:429.540142pt;}
.yc9{bottom:431.492248pt;}
.y1a{bottom:436.616651pt;}
.y48{bottom:438.080731pt;}
.y18e{bottom:439.102395pt;}
.y120{bottom:440.032714pt;}
.y107{bottom:440.032838pt;}
.y9f{bottom:441.740807pt;}
.y152{bottom:441.740931pt;}
.y139{bottom:443.692913pt;}
.yc8{bottom:445.401006pt;}
.y78{bottom:446.377183pt;}
.y19{bottom:450.769422pt;}
.y47{bottom:452.233502pt;}
.y18d{bottom:453.255166pt;}
.y11f{bottom:453.941471pt;}
.y106{bottom:453.941595pt;}
.y9e{bottom:455.893577pt;}
.y151{bottom:455.893701pt;}
.y138{bottom:457.601671pt;}
.y8c{bottom:458.818141pt;}
.yc7{bottom:459.553777pt;}
.y18{bottom:464.678180pt;}
.y46{bottom:466.142260pt;}
.y77{bottom:466.630286pt;}
.y18c{bottom:467.163924pt;}
.y11e{bottom:468.094242pt;}
.y105{bottom:468.094366pt;}
.ye7{bottom:469.802335pt;}
.y150{bottom:469.802459pt;}
.y137{bottom:471.754441pt;}
.y16b{bottom:472.975748pt;}
.yc6{bottom:473.462534pt;}
.ybb{bottom:478.095191pt;}
.y17{bottom:478.830951pt;}
.y45{bottom:480.295031pt;}
.y76{bottom:480.539044pt;}
.y18b{bottom:481.316694pt;}
.y9d{bottom:482.003000pt;}
.y104{bottom:482.003124pt;}
.ye6{bottom:483.955106pt;}
.y198{bottom:483.955230pt;}
.y136{bottom:485.663199pt;}
.y16{bottom:492.739708pt;}
.y44{bottom:494.203788pt;}
.y75{bottom:494.691815pt;}
.y18a{bottom:495.225452pt;}
.y9c{bottom:496.155770pt;}
.y103{bottom:496.155894pt;}
.ye5{bottom:497.863864pt;}
.y197{bottom:497.863988pt;}
.yc5{bottom:499.815970pt;}
.ye2{bottom:501.036160pt;}
.y149{bottom:504.213169pt;}
.y15{bottom:506.892479pt;}
.y43{bottom:508.356559pt;}
.y189{bottom:509.378223pt;}
.y9b{bottom:510.064528pt;}
.y102{bottom:510.064652pt;}
.y196{bottom:512.016758pt;}
.y74{bottom:514.700905pt;}
.y1a7{bottom:514.944918pt;}
.y14{bottom:520.801237pt;}
.y42{bottom:522.265317pt;}
.y9a{bottom:524.217299pt;}
.y101{bottom:524.217423pt;}
.y135{bottom:525.925392pt;}
.y186{bottom:527.146698pt;}
.y175{bottom:528.607058pt;}
.y73{bottom:528.853551pt;}
.y13{bottom:534.954008pt;}
.y41{bottom:536.418087pt;}
.y99{bottom:538.126057pt;}
.y100{bottom:538.126180pt;}
.y72{bottom:542.762433pt;}
.y12{bottom:548.862641pt;}
.y40{bottom:550.326845pt;}
.y98{bottom:552.278827pt;}
.yff{bottom:552.278951pt;}
.y11{bottom:563.015412pt;}
.y71{bottom:563.015536pt;}
.y134{bottom:564.479492pt;}
.y3f{bottom:564.479616pt;}
.y97{bottom:566.187585pt;}
.yfe{bottom:566.187709pt;}
.y8b{bottom:569.359882pt;}
.y10{bottom:576.924170pt;}
.y70{bottom:576.924294pt;}
.y133{bottom:578.388250pt;}
.y3e{bottom:578.388373pt;}
.yc4{bottom:580.340356pt;}
.yfd{bottom:580.340480pt;}
.y130{bottom:583.268639pt;}
.y6f{bottom:591.077065pt;}
.y96{bottom:592.541020pt;}
.y3d{bottom:592.541144pt;}
.yc3{bottom:594.249113pt;}
.y14f{bottom:594.249237pt;}
.yf{bottom:604.009645pt;}
.y6e{bottom:604.985698pt;}
.y95{bottom:606.449778pt;}
.y3c{bottom:606.449902pt;}
.yc2{bottom:608.401884pt;}
.y14e{bottom:608.402008pt;}
.y1aa{bottom:612.795363pt;}
.y94{bottom:620.602549pt;}
.y3b{bottom:620.602673pt;}
.yc1{bottom:622.310642pt;}
.y14d{bottom:622.310766pt;}
.y6d{bottom:625.238801pt;}
.y93{bottom:634.511306pt;}
.y3a{bottom:634.511430pt;}
.yc0{bottom:636.463413pt;}
.y14c{bottom:636.463537pt;}
.y6c{bottom:639.147683pt;}
.yfb{bottom:640.850816pt;}
.ye{bottom:644.271962pt;}
.y92{bottom:648.664077pt;}
.y39{bottom:648.664201pt;}
.ybf{bottom:650.372170pt;}
.y14b{bottom:650.372294pt;}
.y6b{bottom:653.300454pt;}
.yd{bottom:658.424733pt;}
.y91{bottom:662.572835pt;}
.y38{bottom:662.572959pt;}
.ybe{bottom:664.524941pt;}
.y14a{bottom:664.525065pt;}
.y6a{bottom:667.209211pt;}
.y16a{bottom:667.453101pt;}
.yc{bottom:672.333490pt;}
.y90{bottom:676.725606pt;}
.y37{bottom:676.725730pt;}
.ybd{bottom:678.433699pt;}
.y195{bottom:678.433823pt;}
.y69{bottom:680.871104pt;}
.yba{bottom:683.070075pt;}
.yb{bottom:686.486261pt;}
.y8f{bottom:690.634363pt;}
.y36{bottom:690.634487pt;}
.y68{bottom:692.586470pt;}
.y194{bottom:692.586594pt;}
.ya{bottom:700.395019pt;}
.y67{bottom:704.787134pt;}
.y35{bottom:704.787258pt;}
.ye4{bottom:706.495227pt;}
.y193{bottom:706.495351pt;}
.ye1{bottom:709.667524pt;}
.y9{bottom:714.547790pt;}
.y66{bottom:718.695892pt;}
.y34{bottom:718.696016pt;}
.y192{bottom:720.648122pt;}
.y1a6{bottom:723.576282pt;}
.y8{bottom:728.456547pt;}
.y65{bottom:732.848663pt;}
.y33{bottom:732.848787pt;}
.y64{bottom:746.757420pt;}
.y32{bottom:746.757544pt;}
.y7{bottom:748.709651pt;}
.y63{bottom:760.910191pt;}
.y31{bottom:760.910315pt;}
.yfa{bottom:763.350324pt;}
.y3{bottom:804.100668pt;}
.h14{height:10.004793pt;}
.h5{height:14.640800pt;}
.ha{height:29.767715pt;}
.hb{height:30.496895pt;}
.h7{height:33.075239pt;}
.h11{height:33.400749pt;}
.hc{height:33.885439pt;}
.hd{height:35.113608pt;}
.he{height:35.543491pt;}
.hf{height:39.011148pt;}
.h3{height:39.165981pt;}
.h4{height:42.116694pt;}
.h13{height:42.806594pt;}
.h12{height:42.816513pt;}
.h9{height:42.821473pt;}
.h10{height:42.821969pt;}
.h6{height:43.345720pt;}
.h8{height:43.346216pt;}
.h15{height:831.231067pt;}
.h2{height:860.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:9.272009pt;}
.w4{width:26.842707pt;}
.w5{width:580.630133pt;}
.w2{width:596.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:4.601047pt;}
.xf{left:10.534014pt;}
.xa{left:36.735903pt;}
.x15{left:61.938422pt;}
.x14{left:62.904519pt;}
.xd{left:68.054414pt;}
.x12{left:74.185574pt;}
.x3{left:82.654667pt;}
.x11{left:88.617249pt;}
.x9{left:97.091996pt;}
.x1{left:98.666667pt;}
.x10{left:107.141413pt;}
.x6{left:111.484837pt;}
.x13{left:118.833605pt;}
.xe{left:156.187067pt;}
.x8{left:242.186415pt;}
.xc{left:255.419176pt;}
.x7{left:298.850442pt;}
.x16{left:514.913920pt;}
.xb{left:524.359268pt;}
.x2{left:544.022920pt;}
.x4{left:604.440000pt;}
}




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