
    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_d56e278d2aba3f489d5ffd66.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_a8c678ba435da397adda2915.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_5b75b0564c1f4a23bcbf2c51.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_ac1aa3dae8c0f3d504609dc5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_dbb4ad5e767662ba377de3e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_569151681198b5fcbb77e333.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_20b9b1a9fb4318e5252a344b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_38fb7f8aec305f7a52dd160f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.511000;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_9f09acbd49c5d00fb087a0e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.672000;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_edbfb407fe8941ffdc964a77.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.816000;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_37b5bb8ccc40d4ee3cf1bfd1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677000;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_27434e1cba25ae24009a8d9f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.702000;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;}
.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);}
.m26{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m18{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-8.964000px;}
.v7{vertical-align:-6.834000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.964000px;}
.v8{vertical-align:10.518000px;}
.v1{vertical-align:26.040000px;}
.v5{vertical-align:40.470000px;}
.v6{vertical-align:69.492000px;}
.lsf{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.000233px;}
.ls2c{letter-spacing:0.000289px;}
.ls19{letter-spacing:0.000353px;}
.ls3f{letter-spacing:0.000435px;}
.ls14{letter-spacing:0.000608px;}
.lsc{letter-spacing:0.001053px;}
.ls2e{letter-spacing:0.001765px;}
.ls10{letter-spacing:0.001874px;}
.ls18{letter-spacing:0.001996px;}
.ls28{letter-spacing:0.002725px;}
.ls30{letter-spacing:0.003377px;}
.lsd{letter-spacing:0.003875px;}
.ls15{letter-spacing:0.003900px;}
.ls27{letter-spacing:0.004200px;}
.lse{letter-spacing:0.059776px;}
.ls32{letter-spacing:0.373133px;}
.ls35{letter-spacing:0.379133px;}
.ls46{letter-spacing:0.414289px;}
.ls1a{letter-spacing:0.416725px;}
.ls23{letter-spacing:0.422725px;}
.ls2a{letter-spacing:0.836725px;}
.ls36{letter-spacing:1.234848px;}
.ls33{letter-spacing:1.240848px;}
.ls1b{letter-spacing:1.372932px;}
.ls1d{letter-spacing:1.378932px;}
.ls45{letter-spacing:1.405069px;}
.ls21{letter-spacing:1.496228px;}
.ls0{letter-spacing:1.530259px;}
.ls4b{letter-spacing:1.580346px;}
.ls44{letter-spacing:1.586346px;}
.ls6{letter-spacing:2.150074px;}
.ls3a{letter-spacing:2.181586px;}
.lsb{letter-spacing:2.985600px;}
.ls11{letter-spacing:2.985900px;}
.ls22{letter-spacing:2.987518px;}
.ls3b{letter-spacing:2.988664px;}
.ls2d{letter-spacing:2.991900px;}
.ls42{letter-spacing:3.314512px;}
.ls4{letter-spacing:4.100726px;}
.ls2{letter-spacing:4.705537px;}
.lsa{letter-spacing:4.730074px;}
.ls3{letter-spacing:4.733126px;}
.ls9{letter-spacing:4.733290px;}
.ls1{letter-spacing:4.735910px;}
.ls7{letter-spacing:4.736074px;}
.ls20{letter-spacing:8.668200px;}
.ls29{letter-spacing:9.962725px;}
.ls24{letter-spacing:13.280725px;}
.ls26{letter-spacing:13.282718px;}
.ls2b{letter-spacing:13.286725px;}
.ls25{letter-spacing:13.288718px;}
.ls37{letter-spacing:14.941133px;}
.ls39{letter-spacing:14.942725px;}
.ls49{letter-spacing:14.944200px;}
.ls1c{letter-spacing:14.948725px;}
.ls3d{letter-spacing:15.422105px;}
.ls43{letter-spacing:16.205549px;}
.ls41{letter-spacing:16.351069px;}
.ls1e{letter-spacing:16.598725px;}
.ls48{letter-spacing:16.606718px;}
.ls34{letter-spacing:17.926502px;}
.ls12{letter-spacing:17.937900px;}
.ls13{letter-spacing:17.943900px;}
.ls40{letter-spacing:18.013069px;}
.ls47{letter-spacing:18.070932px;}
.ls4c{letter-spacing:18.766200px;}
.ls3c{letter-spacing:18.853069px;}
.ls4a{letter-spacing:19.593900px;}
.ls38{letter-spacing:19.946512px;}
.ls31{letter-spacing:22.579500px;}
.ls1f{letter-spacing:23.776718px;}
.ls2f{letter-spacing:24.811500px;}
.ls17{letter-spacing:25.105136px;}
.ls16{letter-spacing:25.861136px;}
.ls5{letter-spacing:27.351589px;}
.ls8{letter-spacing:27.980726px;}
.ls4d{letter-spacing:89.410718px;}
.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;}
}
.ws73{word-spacing:-61.210214px;}
.ws15{word-spacing:-44.683469px;}
.ws31{word-spacing:-29.887800px;}
.ws3e{word-spacing:-21.818100px;}
.ws54{word-spacing:-17.960467px;}
.ws53{word-spacing:-17.932680px;}
.ws63{word-spacing:-17.574026px;}
.ws10{word-spacing:-17.215373px;}
.ws48{word-spacing:-16.731302px;}
.ws26{word-spacing:-16.617617px;}
.ws25{word-spacing:-16.557841px;}
.ws5e{word-spacing:-16.498066px;}
.ws1b{word-spacing:-16.438290px;}
.ws32{word-spacing:-16.378514px;}
.ws3c{word-spacing:-16.371537px;}
.ws3b{word-spacing:-16.318739px;}
.ws4e{word-spacing:-16.258963px;}
.ws4d{word-spacing:-16.199188px;}
.ws65{word-spacing:-15.960085px;}
.ws4f{word-spacing:-15.900310px;}
.ws27{word-spacing:-15.840534px;}
.ws52{word-spacing:-15.780758px;}
.ws74{word-spacing:-15.601432px;}
.ws51{word-spacing:-15.547738px;}
.ws75{word-spacing:-15.541656px;}
.ws2d{word-spacing:-15.362329px;}
.ws7b{word-spacing:-15.357553px;}
.ws2c{word-spacing:-15.302554px;}
.ws58{word-spacing:-15.264267px;}
.ws21{word-spacing:-15.242778px;}
.ws17{word-spacing:-15.183002px;}
.wsa{word-spacing:-15.123227px;}
.ws43{word-spacing:-15.116293px;}
.ws42{word-spacing:-15.092434px;}
.ws41{word-spacing:-15.088577px;}
.ws11{word-spacing:-15.063451px;}
.ws2e{word-spacing:-15.003676px;}
.ws18{word-spacing:-14.943900px;}
.wsd{word-spacing:-14.906097px;}
.ws39{word-spacing:-14.894718px;}
.wsc{word-spacing:-14.884124px;}
.ws1e{word-spacing:-14.824349px;}
.wsf{word-spacing:-14.764573px;}
.ws2f{word-spacing:-14.746219px;}
.wse{word-spacing:-14.704798px;}
.ws2b{word-spacing:-14.645022px;}
.ws71{word-spacing:-14.611747px;}
.ws59{word-spacing:-14.585246px;}
.ws66{word-spacing:-14.527750px;}
.ws64{word-spacing:-14.525471px;}
.ws56{word-spacing:-14.465695px;}
.ws5c{word-spacing:-14.405920px;}
.ws6f{word-spacing:-14.226593px;}
.ws70{word-spacing:-14.166817px;}
.ws6c{word-spacing:-14.107267px;}
.ws94{word-spacing:-13.963615px;}
.ws77{word-spacing:-13.927715px;}
.ws55{word-spacing:-13.867939px;}
.ws5a{word-spacing:-13.688612px;}
.ws46{word-spacing:-13.628837px;}
.ws49{word-spacing:-13.610995px;}
.ws13{word-spacing:-13.509286px;}
.ws4b{word-spacing:-13.449600px;}
.ws45{word-spacing:-13.449510px;}
.ws69{word-spacing:-13.395802px;}
.ws79{word-spacing:-13.279525px;}
.ws14{word-spacing:-13.210408px;}
.ws44{word-spacing:-13.150632px;}
.ws12{word-spacing:-13.090856px;}
.ws3d{word-spacing:-12.911530px;}
.ws22{word-spacing:-12.851754px;}
.ws8a{word-spacing:-12.815921px;}
.ws5d{word-spacing:-12.791978px;}
.ws5f{word-spacing:-12.732203px;}
.ws7c{word-spacing:-12.720280px;}
.ws4c{word-spacing:-12.493100px;}
.ws78{word-spacing:-12.373549px;}
.ws8f{word-spacing:-12.289894px;}
.ws87{word-spacing:-12.242074px;}
.ws96{word-spacing:-12.194253px;}
.ws92{word-spacing:-12.146432px;}
.wsb{word-spacing:-12.074671px;}
.ws37{word-spacing:-12.067341px;}
.ws38{word-spacing:-12.014896px;}
.ws82{word-spacing:-12.002971px;}
.ws7d{word-spacing:-11.955150px;}
.ws62{word-spacing:-11.955120px;}
.ws8e{word-spacing:-11.954437px;}
.ws80{word-spacing:-11.952187px;}
.ws88{word-spacing:-11.949632px;}
.ws7e{word-spacing:-11.949178px;}
.ws84{word-spacing:-11.859509px;}
.ws85{word-spacing:-11.811688px;}
.ws5b{word-spacing:-11.775793px;}
.ws91{word-spacing:-11.763868px;}
.ws8d{word-spacing:-11.716047px;}
.ws95{word-spacing:-11.668226px;}
.ws1c{word-spacing:-11.656242px;}
.ws83{word-spacing:-11.476944px;}
.ws86{word-spacing:-11.429123px;}
.ws33{word-spacing:-11.237813px;}
.ws81{word-spacing:-11.094379px;}
.ws35{word-spacing:-10.819384px;}
.ws8c{word-spacing:-10.759635px;}
.ws7f{word-spacing:-10.233608px;}
.ws34{word-spacing:-9.922750px;}
.ws16{word-spacing:-9.862974px;}
.ws90{word-spacing:-9.803223px;}
.ws36{word-spacing:-9.683647px;}
.ws93{word-spacing:-9.516299px;}
.ws89{word-spacing:-9.277196px;}
.ws68{word-spacing:-9.253325px;}
.ws57{word-spacing:-8.846789px;}
.ws24{word-spacing:-8.787013px;}
.ws23{word-spacing:-8.727238px;}
.ws6b{word-spacing:-8.715341px;}
.ws60{word-spacing:-8.667462px;}
.ws1d{word-spacing:-8.428360px;}
.ws61{word-spacing:-7.890379px;}
.ws1f{word-spacing:-5.080926px;}
.ws5{word-spacing:-4.762922px;}
.ws20{word-spacing:-2.510575px;}
.ws72{word-spacing:-2.226782px;}
.ws6d{word-spacing:-2.220782px;}
.ws3a{word-spacing:-1.776300px;}
.ws30{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.057385px;}
.ws4a{word-spacing:-0.053798px;}
.ws9{word-spacing:-0.047821px;}
.ws3f{word-spacing:-0.043636px;}
.ws2a{word-spacing:0.000000px;}
.ws0{word-spacing:11.590456px;}
.ws8b{word-spacing:11.907329px;}
.ws29{word-spacing:12.418464px;}
.ws47{word-spacing:12.588826px;}
.ws19{word-spacing:13.246306px;}
.ws8{word-spacing:13.395802px;}
.ws2{word-spacing:15.474824px;}
.ws4{word-spacing:15.480068px;}
.ws50{word-spacing:16.557841px;}
.ws67{word-spacing:18.668045px;}
.ws6a{word-spacing:19.098432px;}
.ws7{word-spacing:24.907726px;}
.ws6{word-spacing:24.921882px;}
.ws1{word-spacing:25.344918px;}
.ws1a{word-spacing:59.715824px;}
.ws40{word-spacing:206.283074px;}
.ws7a{word-spacing:826.397670px;}
.ws6e{word-spacing:880.793466px;}
.ws76{word-spacing:915.164436px;}
.ws28{word-spacing:1408.083456px;}
._8{margin-left:-5.035736px;}
._2{margin-left:-3.347424px;}
._9{margin-left:-2.316724px;}
._0{margin-left:-1.255284px;}
._6{width:1.778923px;}
._13{width:3.594724px;}
._7{width:4.705537px;}
._3{width:6.569320px;}
._4{width:7.766718px;}
._15{width:11.300873px;}
._b{width:13.719338px;}
._10{width:15.646682px;}
._17{width:17.217036px;}
._d{width:18.231379px;}
._a{width:19.661122px;}
._c{width:20.861505px;}
._5{width:22.051013px;}
._11{width:23.446371px;}
._19{width:24.491798px;}
._14{width:26.480591px;}
._18{width:30.963761px;}
._f{width:32.477537px;}
._e{width:37.957564px;}
._16{width:59.775600px;}
._12{width:201.130709px;}
._1{width:676.547906px;}
.fc3{color:rgb(46,46,177);}
.fc2{color:rgb(148,54,52);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:32.877000px;}
.fs6{font-size:37.060800px;}
.fs0{font-size:41.842800px;}
.fs9{font-size:43.636200px;}
.fsa{font-size:44.832000px;}
.fs7{font-size:47.820600px;}
.fs4{font-size:52.602600px;}
.fs5{font-size:53.798400px;}
.fs3{font-size:57.384600px;}
.fs8{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y32{bottom:86.494500px;}
.y31{bottom:101.437500px;}
.y7f{bottom:140.400000px;}
.y30{bottom:144.882000px;}
.y92{bottom:146.329500px;}
.yae{bottom:148.480500px;}
.yad{bottom:150.723000px;}
.y6b{bottom:156.595500px;}
.y7e{bottom:158.332500px;}
.y69{bottom:158.838000px;}
.y2f{bottom:162.816000px;}
.y6a{bottom:164.262000px;}
.ye0{bottom:167.212500px;}
.yac{bottom:168.655500px;}
.y67{bottom:174.529500px;}
.y66{bottom:176.770500px;}
.y2e{bottom:180.748500px;}
.ydf{bottom:181.408500px;}
.y68{bottom:182.194500px;}
.yab{bottom:186.588000px;}
.y65{bottom:194.703000px;}
.y7d{bottom:195.384000px;}
.yde{bottom:195.606000px;}
.y2d{bottom:198.681000px;}
.y91{bottom:200.128500px;}
.yaa{bottom:204.520500px;}
.ydd{bottom:209.803500px;}
.y7c{bottom:211.822500px;}
.y64{bottom:212.635500px;}
.y2c{bottom:216.613500px;}
.y90{bottom:218.061000px;}
.ya9{bottom:222.453000px;}
.ydc{bottom:223.999500px;}
.y63{bottom:230.568000px;}
.y2b{bottom:234.546000px;}
.y8f{bottom:235.993500px;}
.ydb{bottom:238.197000px;}
.ya8{bottom:240.387000px;}
.y62{bottom:248.502000px;}
.yda{bottom:252.393000px;}
.y2a{bottom:252.478500px;}
.y8e{bottom:253.926000px;}
.ya7{bottom:256.077000px;}
.ya6{bottom:258.319500px;}
.y61{bottom:266.434500px;}
.yd9{bottom:266.590500px;}
.y29{bottom:270.412500px;}
.y8d{bottom:271.858500px;}
.ya5{bottom:276.252000px;}
.yd8{bottom:284.128500px;}
.y60{bottom:284.367000px;}
.y28{bottom:288.345000px;}
.y8b{bottom:289.791000px;}
.ya4{bottom:294.184500px;}
.y8c{bottom:295.216500px;}
.y5f{bottom:300.058500px;}
.y5e{bottom:302.299500px;}
.y8a{bottom:305.482500px;}
.y27{bottom:306.277500px;}
.y89{bottom:307.725000px;}
.ya3{bottom:312.117000px;}
.yd7{bottom:318.873000px;}
.y26{bottom:324.210000px;}
.y88{bottom:325.657500px;}
.ya2{bottom:327.808500px;}
.y5d{bottom:329.311500px;}
.ya1{bottom:330.051000px;}
.y110{bottom:337.014000px;}
.y5c{bottom:339.562500px;}
.y25{bottom:342.142500px;}
.y87{bottom:343.590000px;}
.yd6{bottom:345.547500px;}
.ya0{bottom:350.851500px;}
.y10f{bottom:351.211500px;}
.y24{bottom:360.075000px;}
.y9e{bottom:361.104000px;}
.y86{bottom:361.522500px;}
.y10e{bottom:365.407500px;}
.y9f{bottom:371.221500px;}
.y23{bottom:378.009000px;}
.y5b{bottom:379.455000px;}
.y10d{bottom:379.605000px;}
.yd5{bottom:380.292000px;}
.y9d{bottom:385.783500px;}
.y10c{bottom:393.801000px;}
.y22{bottom:395.941500px;}
.y59{bottom:397.387500px;}
.yd4{bottom:398.226000px;}
.y5a{bottom:402.813000px;}
.y9c{bottom:403.716000px;}
.y10b{bottom:407.998500px;}
.y21{bottom:413.874000px;}
.y58{bottom:415.321500px;}
.y9b{bottom:419.407500px;}
.y9a{bottom:421.648500px;}
.y10a{bottom:422.194500px;}
.yd3{bottom:424.900500px;}
.y20{bottom:431.806500px;}
.y57{bottom:433.254000px;}
.y109{bottom:436.392000px;}
.y1f{bottom:449.739000px;}
.y108{bottom:450.588000px;}
.y56{bottom:451.186500px;}
.yd2{bottom:459.645000px;}
.y107{bottom:464.785500px;}
.y1e{bottom:467.671500px;}
.y55{bottom:469.119000px;}
.y99{bottom:470.887500px;}
.yd1{bottom:477.577500px;}
.y106{bottom:478.981500px;}
.y1d{bottom:485.605500px;}
.y54{bottom:487.051500px;}
.y98{bottom:487.326000px;}
.y105{bottom:493.179000px;}
.yd0{bottom:495.510000px;}
.y1c{bottom:503.538000px;}
.y53{bottom:504.984000px;}
.y104{bottom:507.375000px;}
.ycf{bottom:513.444000px;}
.y1b{bottom:521.470500px;}
.y103{bottom:521.572500px;}
.y52{bottom:522.918000px;}
.yce{bottom:531.376500px;}
.y102{bottom:535.768500px;}
.y51{bottom:538.608000px;}
.y50{bottom:540.850500px;}
.y7b{bottom:545.992500px;}
.y85{bottom:546.274500px;}
.y1a{bottom:548.145000px;}
.ycc{bottom:549.309000px;}
.y101{bottom:549.966000px;}
.ycd{bottom:554.733000px;}
.y4f{bottom:556.540500px;}
.y4e{bottom:558.783000px;}
.y100{bottom:564.162000px;}
.ycb{bottom:567.241500px;}
.y4d{bottom:574.474500px;}
.y4c{bottom:576.715500px;}
.yff{bottom:578.359500px;}
.y7a{bottom:580.680000px;}
.y19{bottom:584.011500px;}
.yca{bottom:585.174000px;}
.yfe{bottom:592.555500px;}
.y4b{bottom:594.648000px;}
.y79{bottom:598.614000px;}
.y84{bottom:600.073500px;}
.yc9{bottom:603.106500px;}
.yfd{bottom:606.753000px;}
.y78{bottom:616.546500px;}
.yc8{bottom:618.798000px;}
.y18{bottom:619.876500px;}
.yfc{bottom:620.949000px;}
.yc7{bottom:621.040500px;}
.y4a{bottom:621.324000px;}
.y77{bottom:634.479000px;}
.yfb{bottom:635.146500px;}
.y17{bottom:637.809000px;}
.yc6{bottom:638.973000px;}
.yfa{bottom:649.342500px;}
.y76{bottom:652.411500px;}
.y16{bottom:655.741500px;}
.y49{bottom:656.068500px;}
.yc5{bottom:656.905500px;}
.yf9{bottom:663.540000px;}
.y75{bottom:668.103000px;}
.y74{bottom:670.344000px;}
.y15{bottom:673.674000px;}
.y48{bottom:674.001000px;}
.yc4{bottom:674.838000px;}
.yf8{bottom:677.736000px;}
.y73{bottom:688.276500px;}
.y14{bottom:691.608000px;}
.y47{bottom:691.933500px;}
.yc3{bottom:701.512500px;}
.yf7{bottom:706.129500px;}
.y71{bottom:706.210500px;}
.y12{bottom:709.540500px;}
.y46{bottom:709.866000px;}
.y72{bottom:711.634500px;}
.y13{bottom:714.964500px;}
.yf6{bottom:720.327000px;}
.y11{bottom:727.473000px;}
.y45{bottom:727.798500px;}
.yf5{bottom:734.523000px;}
.yc2{bottom:736.257000px;}
.y10{bottom:745.405500px;}
.y43{bottom:745.731000px;}
.yf4{bottom:748.720500px;}
.y44{bottom:751.156500px;}
.yc0{bottom:754.191000px;}
.y70{bottom:755.193000px;}
.yc1{bottom:759.615000px;}
.yf3{bottom:762.916500px;}
.yf{bottom:763.338000px;}
.y42{bottom:763.665000px;}
.y6e{bottom:769.002000px;}
.y6d{bottom:771.631500px;}
.y96{bottom:773.431500px;}
.y6f{bottom:776.514000px;}
.yf2{bottom:777.114000px;}
.ybf{bottom:777.637500px;}
.y97{bottom:778.314000px;}
.ye{bottom:781.270500px;}
.y41{bottom:781.597500px;}
.y94{bottom:787.240500px;}
.y95{bottom:787.852500px;}
.ybe{bottom:787.888500px;}
.y6c{bottom:788.070000px;}
.y93{bottom:789.870000px;}
.yf1{bottom:791.310000px;}
.yd{bottom:799.204500px;}
.y40{bottom:799.530000px;}
.yf0{bottom:805.507500px;}
.ybd{bottom:812.538000px;}
.yc{bottom:814.894500px;}
.yb{bottom:817.137000px;}
.y3f{bottom:817.462500px;}
.yef{bottom:819.705000px;}
.ybc{bottom:828.229500px;}
.ybb{bottom:830.472000px;}
.yee{bottom:833.901000px;}
.ya{bottom:835.069500px;}
.y3e{bottom:835.395000px;}
.yed{bottom:848.098500px;}
.yba{bottom:848.404500px;}
.y9{bottom:853.002000px;}
.y3d{bottom:853.327500px;}
.yec{bottom:862.294500px;}
.yb9{bottom:864.096000px;}
.yb7{bottom:866.337000px;}
.y83{bottom:869.019000px;}
.y8{bottom:870.934500px;}
.y3c{bottom:871.261500px;}
.yb8{bottom:871.761000px;}
.yeb{bottom:876.492000px;}
.y82{bottom:876.685500px;}
.yb6{bottom:884.269500px;}
.y3b{bottom:889.194000px;}
.yea{bottom:890.688000px;}
.yb5{bottom:902.202000px;}
.ye9{bottom:904.885500px;}
.y3a{bottom:907.126500px;}
.y7{bottom:911.140500px;}
.ye8{bottom:919.081500px;}
.yb4{bottom:920.134500px;}
.y6{bottom:920.997000px;}
.y81{bottom:922.818000px;}
.y39{bottom:925.059000px;}
.ye7{bottom:933.279000px;}
.y5{bottom:937.435500px;}
.yb3{bottom:938.068500px;}
.y38{bottom:942.991500px;}
.ye6{bottom:947.475000px;}
.yb2{bottom:956.001000px;}
.y37{bottom:960.924000px;}
.ye5{bottom:961.672500px;}
.y4{bottom:963.414000px;}
.ye4{bottom:975.868500px;}
.y36{bottom:978.858000px;}
.yb1{bottom:982.780500px;}
.ye3{bottom:990.066000px;}
.yaf{bottom:993.031500px;}
.y35{bottom:996.790500px;}
.y3{bottom:1002.510000px;}
.yb0{bottom:1003.149000px;}
.ye2{bottom:1004.262000px;}
.y34{bottom:1014.723000px;}
.ye1{bottom:1018.459500px;}
.y80{bottom:1020.147000px;}
.y2{bottom:1030.156500px;}
.y33{bottom:1032.655500px;}
.y1{bottom:1127.932500px;}
.h5{height:25.312526px;}
.h1e{height:29.803525px;}
.h8{height:30.021706px;}
.hc{height:30.545332px;}
.h1{height:31.047358px;}
.h9{height:31.287155px;}
.h21{height:32.900573px;}
.hb{height:33.265344px;}
.h19{height:35.345549px;}
.ha{height:35.482885px;}
.h4{height:36.744307px;}
.h17{height:37.013299px;}
.h1a{height:38.573453px;}
.h14{height:39.272569px;}
.he{height:39.509332px;}
.hf{height:39.515332px;}
.h16{height:39.864614px;}
.h1d{height:40.468081px;}
.hd{height:40.826735px;}
.h7{height:41.125613px;}
.h10{height:42.859105px;}
.h6{height:44.293720px;}
.h1b{height:46.643453px;}
.h18{height:49.091453px;}
.h13{height:51.823105px;}
.h15{height:51.829105px;}
.h3{height:65.018527px;}
.h2{height:70.870129px;}
.h20{height:81.296735px;}
.h11{height:81.595613px;}
.h1f{height:82.129613px;}
.h1c{height:82.135613px;}
.h12{height:113.843434px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:173.647500px;}
.x2{left:175.500000px;}
.xd{left:190.440000px;}
.x89{left:192.589500px;}
.x88{left:194.179500px;}
.x10{left:199.294500px;}
.x35{left:201.099000px;}
.x11{left:205.495500px;}
.x1{left:207.604500px;}
.x84{left:214.608000px;}
.x3b{left:215.848500px;}
.x85{left:220.809000px;}
.x24{left:224.596500px;}
.x12{left:233.451000px;}
.x5e{left:235.329000px;}
.x1c{left:239.989500px;}
.x4d{left:241.359000px;}
.x13{left:244.518000px;}
.x4{left:247.275000px;}
.x4e{left:250.450500px;}
.x25{left:251.631000px;}
.x22{left:256.933500px;}
.x14{left:259.551000px;}
.x5f{left:262.348500px;}
.x60{left:263.938500px;}
.x1d{left:265.413000px;}
.x72{left:266.580000px;}
.x3c{left:268.183500px;}
.x36{left:269.652000px;}
.x15{left:274.774500px;}
.x4f{left:280.216500px;}
.x37{left:282.456000px;}
.x16{left:285.075000px;}
.x26{left:286.246500px;}
.x57{left:287.517000px;}
.x50{left:289.308000px;}
.x5b{left:290.536500px;}
.x2c{left:292.741500px;}
.x17{left:294.579000px;}
.x38{left:297.220500px;}
.x58{left:299.668500px;}
.x2a{left:303.651000px;}
.x2d{left:307.023000px;}
.x39{left:310.360500px;}
.x27{left:314.491500px;}
.x23{left:328.600500px;}
.x70{left:335.341500px;}
.x2b{left:345.775500px;}
.x7b{left:350.707500px;}
.x71{left:353.265000px;}
.x7c{left:360.211500px;}
.x75{left:367.674000px;}
.x7d{left:375.454500px;}
.x76{left:377.385000px;}
.x5{left:382.162500px;}
.x6{left:388.365000px;}
.x62{left:392.844000px;}
.x48{left:396.294000px;}
.x80{left:406.998000px;}
.x7{left:415.443000px;}
.x63{left:417.162000px;}
.x6c{left:420.594000px;}
.x8{left:425.392500px;}
.x20{left:426.511500px;}
.x78{left:429.189000px;}
.x86{left:434.827500px;}
.x21{left:436.405500px;}
.x64{left:440.604000px;}
.x49{left:443.668500px;}
.x3d{left:450.322500px;}
.x45{left:455.766000px;}
.x81{left:458.982000px;}
.x79{left:462.670500px;}
.x6e{left:463.774500px;}
.x7a{left:465.568500px;}
.x6d{left:467.520000px;}
.xe{left:469.516500px;}
.x61{left:471.774000px;}
.x3e{left:472.998000px;}
.x87{left:477.322500px;}
.x46{left:480.975000px;}
.xf{left:482.656500px;}
.x6b{left:493.495500px;}
.x2e{left:496.761000px;}
.x2f{left:507.100500px;}
.x59{left:511.900500px;}
.x47{left:513.583500px;}
.x65{left:519.570000px;}
.x1e{left:522.025500px;}
.x18{left:527.106000px;}
.x66{left:529.101000px;}
.x3f{left:539.019000px;}
.x1f{left:547.449000px;}
.x19{left:551.565000px;}
.x30{left:556.968000px;}
.x5c{left:563.935500px;}
.x5a{left:566.017500px;}
.x31{left:567.307500px;}
.x53{left:572.485500px;}
.x4a{left:576.822000px;}
.x54{left:578.653500px;}
.x69{left:580.485000px;}
.x55{left:581.679000px;}
.x40{left:590.628000px;}
.x7e{left:598.050000px;}
.x6a{left:600.120000px;}
.x9{left:609.643500px;}
.x5d{left:613.747500px;}
.xa{left:619.593000px;}
.x4b{left:622.380000px;}
.x41{left:623.718000px;}
.x6f{left:625.962000px;}
.x32{left:630.177000px;}
.x56{left:631.489500px;}
.x4c{left:640.507500px;}
.x67{left:646.207500px;}
.x51{left:649.257000px;}
.x8b{left:652.695000px;}
.x73{left:658.995000px;}
.x82{left:660.258000px;}
.x28{left:662.160000px;}
.x8c{left:664.650000px;}
.x3a{left:666.981000px;}
.x83{left:673.398000px;}
.x42{left:675.325500px;}
.x33{left:678.471000px;}
.x68{left:685.152000px;}
.x8a{left:687.798000px;}
.x74{left:690.649500px;}
.x43{left:692.598000px;}
.x52{left:695.118000px;}
.x44{left:700.137000px;}
.x29{left:701.448000px;}
.x8d{left:708.675000px;}
.x34{left:714.117000px;}
.x1a{left:719.052000px;}
.x8e{left:720.630000px;}
.x77{left:721.888500px;}
.xb{left:727.417500px;}
.x1b{left:729.802500px;}
.x7f{left:736.299000px;}
.xc{left:740.557500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-7.968000pt;}
.v7{vertical-align:-6.074667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.968000pt;}
.v8{vertical-align:9.349333pt;}
.v1{vertical-align:23.146667pt;}
.v5{vertical-align:35.973333pt;}
.v6{vertical-align:61.770667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.000207pt;}
.ls2c{letter-spacing:0.000257pt;}
.ls19{letter-spacing:0.000314pt;}
.ls3f{letter-spacing:0.000387pt;}
.ls14{letter-spacing:0.000540pt;}
.lsc{letter-spacing:0.000936pt;}
.ls2e{letter-spacing:0.001569pt;}
.ls10{letter-spacing:0.001666pt;}
.ls18{letter-spacing:0.001774pt;}
.ls28{letter-spacing:0.002422pt;}
.ls30{letter-spacing:0.003002pt;}
.lsd{letter-spacing:0.003444pt;}
.ls15{letter-spacing:0.003467pt;}
.ls27{letter-spacing:0.003733pt;}
.lse{letter-spacing:0.053134pt;}
.ls32{letter-spacing:0.331674pt;}
.ls35{letter-spacing:0.337007pt;}
.ls46{letter-spacing:0.368257pt;}
.ls1a{letter-spacing:0.370422pt;}
.ls23{letter-spacing:0.375756pt;}
.ls2a{letter-spacing:0.743756pt;}
.ls36{letter-spacing:1.097643pt;}
.ls33{letter-spacing:1.102976pt;}
.ls1b{letter-spacing:1.220384pt;}
.ls1d{letter-spacing:1.225717pt;}
.ls45{letter-spacing:1.248950pt;}
.ls21{letter-spacing:1.329981pt;}
.ls0{letter-spacing:1.360230pt;}
.ls4b{letter-spacing:1.404752pt;}
.ls44{letter-spacing:1.410085pt;}
.ls6{letter-spacing:1.911177pt;}
.ls3a{letter-spacing:1.939187pt;}
.lsb{letter-spacing:2.653867pt;}
.ls11{letter-spacing:2.654133pt;}
.ls22{letter-spacing:2.655572pt;}
.ls3b{letter-spacing:2.656590pt;}
.ls2d{letter-spacing:2.659467pt;}
.ls42{letter-spacing:2.946233pt;}
.ls4{letter-spacing:3.645090pt;}
.ls2{letter-spacing:4.182700pt;}
.lsa{letter-spacing:4.204510pt;}
.ls3{letter-spacing:4.207223pt;}
.ls9{letter-spacing:4.207369pt;}
.ls1{letter-spacing:4.209698pt;}
.ls7{letter-spacing:4.209843pt;}
.ls20{letter-spacing:7.705067pt;}
.ls29{letter-spacing:8.855756pt;}
.ls24{letter-spacing:11.805089pt;}
.ls26{letter-spacing:11.806861pt;}
.ls2b{letter-spacing:11.810422pt;}
.ls25{letter-spacing:11.812194pt;}
.ls37{letter-spacing:13.281007pt;}
.ls39{letter-spacing:13.282422pt;}
.ls49{letter-spacing:13.283733pt;}
.ls1c{letter-spacing:13.287756pt;}
.ls3d{letter-spacing:13.708538pt;}
.ls43{letter-spacing:14.404932pt;}
.ls41{letter-spacing:14.534284pt;}
.ls1e{letter-spacing:14.754422pt;}
.ls48{letter-spacing:14.761527pt;}
.ls34{letter-spacing:15.934669pt;}
.ls12{letter-spacing:15.944800pt;}
.ls13{letter-spacing:15.950133pt;}
.ls40{letter-spacing:16.011617pt;}
.ls47{letter-spacing:16.063051pt;}
.ls4c{letter-spacing:16.681067pt;}
.ls3c{letter-spacing:16.758284pt;}
.ls4a{letter-spacing:17.416800pt;}
.ls38{letter-spacing:17.730233pt;}
.ls31{letter-spacing:20.070667pt;}
.ls1f{letter-spacing:21.134861pt;}
.ls2f{letter-spacing:22.054667pt;}
.ls17{letter-spacing:22.315677pt;}
.ls16{letter-spacing:22.987677pt;}
.ls5{letter-spacing:24.312523pt;}
.ls8{letter-spacing:24.871757pt;}
.ls4d{letter-spacing:79.476194pt;}
.ws73{word-spacing:-54.409079pt;}
.ws15{word-spacing:-39.718639pt;}
.ws31{word-spacing:-26.566933pt;}
.ws3e{word-spacing:-19.393867pt;}
.ws54{word-spacing:-15.964859pt;}
.ws53{word-spacing:-15.940160pt;}
.ws63{word-spacing:-15.621357pt;}
.ws10{word-spacing:-15.302554pt;}
.ws48{word-spacing:-14.872269pt;}
.ws26{word-spacing:-14.771215pt;}
.ws25{word-spacing:-14.718081pt;}
.ws5e{word-spacing:-14.664947pt;}
.ws1b{word-spacing:-14.611813pt;}
.ws32{word-spacing:-14.558679pt;}
.ws3c{word-spacing:-14.552478pt;}
.ws3b{word-spacing:-14.505546pt;}
.ws4e{word-spacing:-14.452412pt;}
.ws4d{word-spacing:-14.399278pt;}
.ws65{word-spacing:-14.186742pt;}
.ws4f{word-spacing:-14.133609pt;}
.ws27{word-spacing:-14.080475pt;}
.ws52{word-spacing:-14.027341pt;}
.ws74{word-spacing:-13.867939pt;}
.ws51{word-spacing:-13.820211pt;}
.ws75{word-spacing:-13.814805pt;}
.ws2d{word-spacing:-13.655404pt;}
.ws7b{word-spacing:-13.651158pt;}
.ws2c{word-spacing:-13.602270pt;}
.ws58{word-spacing:-13.568238pt;}
.ws21{word-spacing:-13.549136pt;}
.ws17{word-spacing:-13.496002pt;}
.wsa{word-spacing:-13.442868pt;}
.ws43{word-spacing:-13.436705pt;}
.ws42{word-spacing:-13.415497pt;}
.ws41{word-spacing:-13.412068pt;}
.ws11{word-spacing:-13.389734pt;}
.ws2e{word-spacing:-13.336601pt;}
.ws18{word-spacing:-13.283467pt;}
.wsd{word-spacing:-13.249864pt;}
.ws39{word-spacing:-13.239750pt;}
.wsc{word-spacing:-13.230333pt;}
.ws1e{word-spacing:-13.177199pt;}
.wsf{word-spacing:-13.124065pt;}
.ws2f{word-spacing:-13.107750pt;}
.wse{word-spacing:-13.070931pt;}
.ws2b{word-spacing:-13.017797pt;}
.ws71{word-spacing:-12.988220pt;}
.ws59{word-spacing:-12.964663pt;}
.ws66{word-spacing:-12.913555pt;}
.ws64{word-spacing:-12.911530pt;}
.ws56{word-spacing:-12.858396pt;}
.ws5c{word-spacing:-12.805262pt;}
.ws6f{word-spacing:-12.645860pt;}
.ws70{word-spacing:-12.592726pt;}
.ws6c{word-spacing:-12.539793pt;}
.ws94{word-spacing:-12.412102pt;}
.ws77{word-spacing:-12.380191pt;}
.ws55{word-spacing:-12.327057pt;}
.ws5a{word-spacing:-12.167655pt;}
.ws46{word-spacing:-12.114522pt;}
.ws49{word-spacing:-12.098662pt;}
.ws13{word-spacing:-12.008254pt;}
.ws4b{word-spacing:-11.955200pt;}
.ws45{word-spacing:-11.955120pt;}
.ws69{word-spacing:-11.907379pt;}
.ws79{word-spacing:-11.804022pt;}
.ws14{word-spacing:-11.742585pt;}
.ws44{word-spacing:-11.689451pt;}
.ws12{word-spacing:-11.636317pt;}
.ws3d{word-spacing:-11.476915pt;}
.ws22{word-spacing:-11.423781pt;}
.ws8a{word-spacing:-11.391930pt;}
.ws5d{word-spacing:-11.370647pt;}
.ws5f{word-spacing:-11.317514pt;}
.ws7c{word-spacing:-11.306915pt;}
.ws4c{word-spacing:-11.104978pt;}
.ws78{word-spacing:-10.998710pt;}
.ws8f{word-spacing:-10.924350pt;}
.ws87{word-spacing:-10.881843pt;}
.ws96{word-spacing:-10.839336pt;}
.ws92{word-spacing:-10.796829pt;}
.wsb{word-spacing:-10.733041pt;}
.ws37{word-spacing:-10.726525pt;}
.ws38{word-spacing:-10.679907pt;}
.ws82{word-spacing:-10.669307pt;}
.ws7d{word-spacing:-10.626800pt;}
.ws62{word-spacing:-10.626773pt;}
.ws8e{word-spacing:-10.626166pt;}
.ws80{word-spacing:-10.624166pt;}
.ws88{word-spacing:-10.621895pt;}
.ws7e{word-spacing:-10.621492pt;}
.ws84{word-spacing:-10.541786pt;}
.ws85{word-spacing:-10.499278pt;}
.ws5b{word-spacing:-10.467372pt;}
.ws91{word-spacing:-10.456771pt;}
.ws8d{word-spacing:-10.414264pt;}
.ws95{word-spacing:-10.371757pt;}
.ws1c{word-spacing:-10.361104pt;}
.ws83{word-spacing:-10.201728pt;}
.ws86{word-spacing:-10.159221pt;}
.ws33{word-spacing:-9.989167pt;}
.ws81{word-spacing:-9.861670pt;}
.ws35{word-spacing:-9.617230pt;}
.ws8c{word-spacing:-9.564120pt;}
.ws7f{word-spacing:-9.096541pt;}
.ws34{word-spacing:-8.820222pt;}
.ws16{word-spacing:-8.767088pt;}
.ws90{word-spacing:-8.713976pt;}
.ws36{word-spacing:-8.607686pt;}
.ws93{word-spacing:-8.458933pt;}
.ws89{word-spacing:-8.246397pt;}
.ws68{word-spacing:-8.225178pt;}
.ws57{word-spacing:-7.863812pt;}
.ws24{word-spacing:-7.810678pt;}
.ws23{word-spacing:-7.757545pt;}
.ws6b{word-spacing:-7.746970pt;}
.ws60{word-spacing:-7.704411pt;}
.ws1d{word-spacing:-7.491875pt;}
.ws61{word-spacing:-7.013670pt;}
.ws1f{word-spacing:-4.516379pt;}
.ws5{word-spacing:-4.233708pt;}
.ws20{word-spacing:-2.231622pt;}
.ws72{word-spacing:-1.979362pt;}
.ws6d{word-spacing:-1.974028pt;}
.ws3a{word-spacing:-1.578933pt;}
.ws30{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.051009pt;}
.ws4a{word-spacing:-0.047821pt;}
.ws9{word-spacing:-0.042507pt;}
.ws3f{word-spacing:-0.038788pt;}
.ws2a{word-spacing:0.000000pt;}
.ws0{word-spacing:10.302627pt;}
.ws8b{word-spacing:10.584293pt;}
.ws29{word-spacing:11.038635pt;}
.ws47{word-spacing:11.190067pt;}
.ws19{word-spacing:11.774494pt;}
.ws8{word-spacing:11.907379pt;}
.ws2{word-spacing:13.755399pt;}
.ws4{word-spacing:13.760060pt;}
.ws50{word-spacing:14.718081pt;}
.ws67{word-spacing:16.593818pt;}
.ws6a{word-spacing:16.976384pt;}
.ws7{word-spacing:22.140201pt;}
.ws6{word-spacing:22.152784pt;}
.ws1{word-spacing:22.528816pt;}
.ws1a{word-spacing:53.080733pt;}
.ws40{word-spacing:183.362733pt;}
.ws7a{word-spacing:734.575707pt;}
.ws6e{word-spacing:782.927525pt;}
.ws76{word-spacing:813.479499pt;}
.ws28{word-spacing:1251.629739pt;}
._8{margin-left:-4.476210pt;}
._2{margin-left:-2.975488pt;}
._9{margin-left:-2.059310pt;}
._0{margin-left:-1.115808pt;}
._6{width:1.581265pt;}
._13{width:3.195310pt;}
._7{width:4.182700pt;}
._3{width:5.839395pt;}
._4{width:6.903749pt;}
._15{width:10.045221pt;}
._b{width:12.194967pt;}
._10{width:13.908162pt;}
._17{width:15.304032pt;}
._d{width:16.205670pt;}
._a{width:17.476553pt;}
._c{width:18.543560pt;}
._5{width:19.600900pt;}
._11{width:20.841219pt;}
._19{width:21.770487pt;}
._14{width:23.538303pt;}
._18{width:27.523343pt;}
._f{width:28.868922pt;}
._e{width:33.740057pt;}
._16{width:53.133867pt;}
._12{width:178.782853pt;}
._1{width:601.375917pt;}
.fsb{font-size:29.224000pt;}
.fs6{font-size:32.942933pt;}
.fs0{font-size:37.193600pt;}
.fs9{font-size:38.787733pt;}
.fsa{font-size:39.850667pt;}
.fs7{font-size:42.507200pt;}
.fs4{font-size:46.757867pt;}
.fs5{font-size:47.820800pt;}
.fs3{font-size:51.008533pt;}
.fs8{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:76.884000pt;}
.y31{bottom:90.166667pt;}
.y7f{bottom:124.800000pt;}
.y30{bottom:128.784000pt;}
.y92{bottom:130.070667pt;}
.yae{bottom:131.982667pt;}
.yad{bottom:133.976000pt;}
.y6b{bottom:139.196000pt;}
.y7e{bottom:140.740000pt;}
.y69{bottom:141.189333pt;}
.y2f{bottom:144.725333pt;}
.y6a{bottom:146.010667pt;}
.ye0{bottom:148.633333pt;}
.yac{bottom:149.916000pt;}
.y67{bottom:155.137333pt;}
.y66{bottom:157.129333pt;}
.y2e{bottom:160.665333pt;}
.ydf{bottom:161.252000pt;}
.y68{bottom:161.950667pt;}
.yab{bottom:165.856000pt;}
.y65{bottom:173.069333pt;}
.y7d{bottom:173.674667pt;}
.yde{bottom:173.872000pt;}
.y2d{bottom:176.605333pt;}
.y91{bottom:177.892000pt;}
.yaa{bottom:181.796000pt;}
.ydd{bottom:186.492000pt;}
.y7c{bottom:188.286667pt;}
.y64{bottom:189.009333pt;}
.y2c{bottom:192.545333pt;}
.y90{bottom:193.832000pt;}
.ya9{bottom:197.736000pt;}
.ydc{bottom:199.110667pt;}
.y63{bottom:204.949333pt;}
.y2b{bottom:208.485333pt;}
.y8f{bottom:209.772000pt;}
.ydb{bottom:211.730667pt;}
.ya8{bottom:213.677333pt;}
.y62{bottom:220.890667pt;}
.yda{bottom:224.349333pt;}
.y2a{bottom:224.425333pt;}
.y8e{bottom:225.712000pt;}
.ya7{bottom:227.624000pt;}
.ya6{bottom:229.617333pt;}
.y61{bottom:236.830667pt;}
.yd9{bottom:236.969333pt;}
.y29{bottom:240.366667pt;}
.y8d{bottom:241.652000pt;}
.ya5{bottom:245.557333pt;}
.yd8{bottom:252.558667pt;}
.y60{bottom:252.770667pt;}
.y28{bottom:256.306667pt;}
.y8b{bottom:257.592000pt;}
.ya4{bottom:261.497333pt;}
.y8c{bottom:262.414667pt;}
.y5f{bottom:266.718667pt;}
.y5e{bottom:268.710667pt;}
.y8a{bottom:271.540000pt;}
.y27{bottom:272.246667pt;}
.y89{bottom:273.533333pt;}
.ya3{bottom:277.437333pt;}
.yd7{bottom:283.442667pt;}
.y26{bottom:288.186667pt;}
.y88{bottom:289.473333pt;}
.ya2{bottom:291.385333pt;}
.y5d{bottom:292.721333pt;}
.ya1{bottom:293.378667pt;}
.y110{bottom:299.568000pt;}
.y5c{bottom:301.833333pt;}
.y25{bottom:304.126667pt;}
.y87{bottom:305.413333pt;}
.yd6{bottom:307.153333pt;}
.ya0{bottom:311.868000pt;}
.y10f{bottom:312.188000pt;}
.y24{bottom:320.066667pt;}
.y9e{bottom:320.981333pt;}
.y86{bottom:321.353333pt;}
.y10e{bottom:324.806667pt;}
.y9f{bottom:329.974667pt;}
.y23{bottom:336.008000pt;}
.y5b{bottom:337.293333pt;}
.y10d{bottom:337.426667pt;}
.yd5{bottom:338.037333pt;}
.y9d{bottom:342.918667pt;}
.y10c{bottom:350.045333pt;}
.y22{bottom:351.948000pt;}
.y59{bottom:353.233333pt;}
.yd4{bottom:353.978667pt;}
.y5a{bottom:358.056000pt;}
.y9c{bottom:358.858667pt;}
.y10b{bottom:362.665333pt;}
.y21{bottom:367.888000pt;}
.y58{bottom:369.174667pt;}
.y9b{bottom:372.806667pt;}
.y9a{bottom:374.798667pt;}
.y10a{bottom:375.284000pt;}
.yd3{bottom:377.689333pt;}
.y20{bottom:383.828000pt;}
.y57{bottom:385.114667pt;}
.y109{bottom:387.904000pt;}
.y1f{bottom:399.768000pt;}
.y108{bottom:400.522667pt;}
.y56{bottom:401.054667pt;}
.yd2{bottom:408.573333pt;}
.y107{bottom:413.142667pt;}
.y1e{bottom:415.708000pt;}
.y55{bottom:416.994667pt;}
.y99{bottom:418.566667pt;}
.yd1{bottom:424.513333pt;}
.y106{bottom:425.761333pt;}
.y1d{bottom:431.649333pt;}
.y54{bottom:432.934667pt;}
.y98{bottom:433.178667pt;}
.y105{bottom:438.381333pt;}
.yd0{bottom:440.453333pt;}
.y1c{bottom:447.589333pt;}
.y53{bottom:448.874667pt;}
.y104{bottom:451.000000pt;}
.ycf{bottom:456.394667pt;}
.y1b{bottom:463.529333pt;}
.y103{bottom:463.620000pt;}
.y52{bottom:464.816000pt;}
.yce{bottom:472.334667pt;}
.y102{bottom:476.238667pt;}
.y51{bottom:478.762667pt;}
.y50{bottom:480.756000pt;}
.y7b{bottom:485.326667pt;}
.y85{bottom:485.577333pt;}
.y1a{bottom:487.240000pt;}
.ycc{bottom:488.274667pt;}
.y101{bottom:488.858667pt;}
.ycd{bottom:493.096000pt;}
.y4f{bottom:494.702667pt;}
.y4e{bottom:496.696000pt;}
.y100{bottom:501.477333pt;}
.ycb{bottom:504.214667pt;}
.y4d{bottom:510.644000pt;}
.y4c{bottom:512.636000pt;}
.yff{bottom:514.097333pt;}
.y7a{bottom:516.160000pt;}
.y19{bottom:519.121333pt;}
.yca{bottom:520.154667pt;}
.yfe{bottom:526.716000pt;}
.y4b{bottom:528.576000pt;}
.y79{bottom:532.101333pt;}
.y84{bottom:533.398667pt;}
.yc9{bottom:536.094667pt;}
.yfd{bottom:539.336000pt;}
.y78{bottom:548.041333pt;}
.yc8{bottom:550.042667pt;}
.y18{bottom:551.001333pt;}
.yfc{bottom:551.954667pt;}
.yc7{bottom:552.036000pt;}
.y4a{bottom:552.288000pt;}
.y77{bottom:563.981333pt;}
.yfb{bottom:564.574667pt;}
.y17{bottom:566.941333pt;}
.yc6{bottom:567.976000pt;}
.yfa{bottom:577.193333pt;}
.y76{bottom:579.921333pt;}
.y16{bottom:582.881333pt;}
.y49{bottom:583.172000pt;}
.yc5{bottom:583.916000pt;}
.yf9{bottom:589.813333pt;}
.y75{bottom:593.869333pt;}
.y74{bottom:595.861333pt;}
.y15{bottom:598.821333pt;}
.y48{bottom:599.112000pt;}
.yc4{bottom:599.856000pt;}
.yf8{bottom:602.432000pt;}
.y73{bottom:611.801333pt;}
.y14{bottom:614.762667pt;}
.y47{bottom:615.052000pt;}
.yc3{bottom:623.566667pt;}
.yf7{bottom:627.670667pt;}
.y71{bottom:627.742667pt;}
.y12{bottom:630.702667pt;}
.y46{bottom:630.992000pt;}
.y72{bottom:632.564000pt;}
.y13{bottom:635.524000pt;}
.yf6{bottom:640.290667pt;}
.y11{bottom:646.642667pt;}
.y45{bottom:646.932000pt;}
.yf5{bottom:652.909333pt;}
.yc2{bottom:654.450667pt;}
.y10{bottom:662.582667pt;}
.y43{bottom:662.872000pt;}
.yf4{bottom:665.529333pt;}
.y44{bottom:667.694667pt;}
.yc0{bottom:670.392000pt;}
.y70{bottom:671.282667pt;}
.yc1{bottom:675.213333pt;}
.yf3{bottom:678.148000pt;}
.yf{bottom:678.522667pt;}
.y42{bottom:678.813333pt;}
.y6e{bottom:683.557333pt;}
.y6d{bottom:685.894667pt;}
.y96{bottom:687.494667pt;}
.y6f{bottom:690.234667pt;}
.yf2{bottom:690.768000pt;}
.ybf{bottom:691.233333pt;}
.y97{bottom:691.834667pt;}
.ye{bottom:694.462667pt;}
.y41{bottom:694.753333pt;}
.y94{bottom:699.769333pt;}
.y95{bottom:700.313333pt;}
.ybe{bottom:700.345333pt;}
.y6c{bottom:700.506667pt;}
.y93{bottom:702.106667pt;}
.yf1{bottom:703.386667pt;}
.yd{bottom:710.404000pt;}
.y40{bottom:710.693333pt;}
.yf0{bottom:716.006667pt;}
.ybd{bottom:722.256000pt;}
.yc{bottom:724.350667pt;}
.yb{bottom:726.344000pt;}
.y3f{bottom:726.633333pt;}
.yef{bottom:728.626667pt;}
.ybc{bottom:736.204000pt;}
.ybb{bottom:738.197333pt;}
.yee{bottom:741.245333pt;}
.ya{bottom:742.284000pt;}
.y3e{bottom:742.573333pt;}
.yed{bottom:753.865333pt;}
.yba{bottom:754.137333pt;}
.y9{bottom:758.224000pt;}
.y3d{bottom:758.513333pt;}
.yec{bottom:766.484000pt;}
.yb9{bottom:768.085333pt;}
.yb7{bottom:770.077333pt;}
.y83{bottom:772.461333pt;}
.y8{bottom:774.164000pt;}
.y3c{bottom:774.454667pt;}
.yb8{bottom:774.898667pt;}
.yeb{bottom:779.104000pt;}
.y82{bottom:779.276000pt;}
.yb6{bottom:786.017333pt;}
.y3b{bottom:790.394667pt;}
.yea{bottom:791.722667pt;}
.yb5{bottom:801.957333pt;}
.ye9{bottom:804.342667pt;}
.y3a{bottom:806.334667pt;}
.y7{bottom:809.902667pt;}
.ye8{bottom:816.961333pt;}
.yb4{bottom:817.897333pt;}
.y6{bottom:818.664000pt;}
.y81{bottom:820.282667pt;}
.y39{bottom:822.274667pt;}
.ye7{bottom:829.581333pt;}
.y5{bottom:833.276000pt;}
.yb3{bottom:833.838667pt;}
.y38{bottom:838.214667pt;}
.ye6{bottom:842.200000pt;}
.yb2{bottom:849.778667pt;}
.y37{bottom:854.154667pt;}
.ye5{bottom:854.820000pt;}
.y4{bottom:856.368000pt;}
.ye4{bottom:867.438667pt;}
.y36{bottom:870.096000pt;}
.yb1{bottom:873.582667pt;}
.ye3{bottom:880.058667pt;}
.yaf{bottom:882.694667pt;}
.y35{bottom:886.036000pt;}
.y3{bottom:891.120000pt;}
.yb0{bottom:891.688000pt;}
.ye2{bottom:892.677333pt;}
.y34{bottom:901.976000pt;}
.ye1{bottom:905.297333pt;}
.y80{bottom:906.797333pt;}
.y2{bottom:915.694667pt;}
.y33{bottom:917.916000pt;}
.y1{bottom:1002.606667pt;}
.h5{height:22.500023pt;}
.h1e{height:26.492022pt;}
.h8{height:26.685961pt;}
.hc{height:27.151406pt;}
.h1{height:27.597651pt;}
.h9{height:27.810805pt;}
.h21{height:29.244954pt;}
.hb{height:29.569195pt;}
.h19{height:31.418266pt;}
.ha{height:31.540342pt;}
.h4{height:32.661606pt;}
.h17{height:32.900710pt;}
.h1a{height:34.287514pt;}
.h14{height:34.908950pt;}
.he{height:35.119406pt;}
.hf{height:35.124739pt;}
.h16{height:35.435213pt;}
.h1d{height:35.971628pt;}
.hd{height:36.290431pt;}
.h7{height:36.556100pt;}
.h10{height:38.096982pt;}
.h6{height:39.372195pt;}
.h1b{height:41.460847pt;}
.h18{height:43.636847pt;}
.h13{height:46.064982pt;}
.h15{height:46.070316pt;}
.h3{height:57.794246pt;}
.h2{height:62.995670pt;}
.h20{height:72.263764pt;}
.h11{height:72.529434pt;}
.h1f{height:73.004100pt;}
.h1c{height:73.009434pt;}
.h12{height:101.194163pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:154.353333pt;}
.x2{left:156.000000pt;}
.xd{left:169.280000pt;}
.x89{left:171.190667pt;}
.x88{left:172.604000pt;}
.x10{left:177.150667pt;}
.x35{left:178.754667pt;}
.x11{left:182.662667pt;}
.x1{left:184.537333pt;}
.x84{left:190.762667pt;}
.x3b{left:191.865333pt;}
.x85{left:196.274667pt;}
.x24{left:199.641333pt;}
.x12{left:207.512000pt;}
.x5e{left:209.181333pt;}
.x1c{left:213.324000pt;}
.x4d{left:214.541333pt;}
.x13{left:217.349333pt;}
.x4{left:219.800000pt;}
.x4e{left:222.622667pt;}
.x25{left:223.672000pt;}
.x22{left:228.385333pt;}
.x14{left:230.712000pt;}
.x5f{left:233.198667pt;}
.x60{left:234.612000pt;}
.x1d{left:235.922667pt;}
.x72{left:236.960000pt;}
.x3c{left:238.385333pt;}
.x36{left:239.690667pt;}
.x15{left:244.244000pt;}
.x4f{left:249.081333pt;}
.x37{left:251.072000pt;}
.x16{left:253.400000pt;}
.x26{left:254.441333pt;}
.x57{left:255.570667pt;}
.x50{left:257.162667pt;}
.x5b{left:258.254667pt;}
.x2c{left:260.214667pt;}
.x17{left:261.848000pt;}
.x38{left:264.196000pt;}
.x58{left:266.372000pt;}
.x2a{left:269.912000pt;}
.x2d{left:272.909333pt;}
.x39{left:275.876000pt;}
.x27{left:279.548000pt;}
.x23{left:292.089333pt;}
.x70{left:298.081333pt;}
.x2b{left:307.356000pt;}
.x7b{left:311.740000pt;}
.x71{left:314.013333pt;}
.x7c{left:320.188000pt;}
.x75{left:326.821333pt;}
.x7d{left:333.737333pt;}
.x76{left:335.453333pt;}
.x5{left:339.700000pt;}
.x6{left:345.213333pt;}
.x62{left:349.194667pt;}
.x48{left:352.261333pt;}
.x80{left:361.776000pt;}
.x7{left:369.282667pt;}
.x63{left:370.810667pt;}
.x6c{left:373.861333pt;}
.x8{left:378.126667pt;}
.x20{left:379.121333pt;}
.x78{left:381.501333pt;}
.x86{left:386.513333pt;}
.x21{left:387.916000pt;}
.x64{left:391.648000pt;}
.x49{left:394.372000pt;}
.x3d{left:400.286667pt;}
.x45{left:405.125333pt;}
.x81{left:407.984000pt;}
.x79{left:411.262667pt;}
.x6e{left:412.244000pt;}
.x7a{left:413.838667pt;}
.x6d{left:415.573333pt;}
.xe{left:417.348000pt;}
.x61{left:419.354667pt;}
.x3e{left:420.442667pt;}
.x87{left:424.286667pt;}
.x46{left:427.533333pt;}
.xf{left:429.028000pt;}
.x6b{left:438.662667pt;}
.x2e{left:441.565333pt;}
.x2f{left:450.756000pt;}
.x59{left:455.022667pt;}
.x47{left:456.518667pt;}
.x65{left:461.840000pt;}
.x1e{left:464.022667pt;}
.x18{left:468.538667pt;}
.x66{left:470.312000pt;}
.x3f{left:479.128000pt;}
.x1f{left:486.621333pt;}
.x19{left:490.280000pt;}
.x30{left:495.082667pt;}
.x5c{left:501.276000pt;}
.x5a{left:503.126667pt;}
.x31{left:504.273333pt;}
.x53{left:508.876000pt;}
.x4a{left:512.730667pt;}
.x54{left:514.358667pt;}
.x69{left:515.986667pt;}
.x55{left:517.048000pt;}
.x40{left:525.002667pt;}
.x7e{left:531.600000pt;}
.x6a{left:533.440000pt;}
.x9{left:541.905333pt;}
.x5d{left:545.553333pt;}
.xa{left:550.749333pt;}
.x4b{left:553.226667pt;}
.x41{left:554.416000pt;}
.x6f{left:556.410667pt;}
.x32{left:560.157333pt;}
.x56{left:561.324000pt;}
.x4c{left:569.340000pt;}
.x67{left:574.406667pt;}
.x51{left:577.117333pt;}
.x8b{left:580.173333pt;}
.x73{left:585.773333pt;}
.x82{left:586.896000pt;}
.x28{left:588.586667pt;}
.x8c{left:590.800000pt;}
.x3a{left:592.872000pt;}
.x83{left:598.576000pt;}
.x42{left:600.289333pt;}
.x33{left:603.085333pt;}
.x68{left:609.024000pt;}
.x8a{left:611.376000pt;}
.x74{left:613.910667pt;}
.x43{left:615.642667pt;}
.x52{left:617.882667pt;}
.x44{left:622.344000pt;}
.x29{left:623.509333pt;}
.x8d{left:629.933333pt;}
.x34{left:634.770667pt;}
.x1a{left:639.157333pt;}
.x8e{left:640.560000pt;}
.x77{left:641.678667pt;}
.xb{left:646.593333pt;}
.x1b{left:648.713333pt;}
.x7f{left:654.488000pt;}
.xc{left:658.273333pt;}
}




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