
    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_b179afc2faeb2a2ab9c7044d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.975000;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_cb37b097b4e9a1587f97f9db.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_9999ecf8f2446fee03688411.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_e847e7be0e85b7688928329b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_a9f5dfd4693a41513b75a18e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.108000;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_439db1603b9e6d26c43510c7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7ec40e8c2f57ad5a4bfad588.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.085000;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_38421d523992fcbb5802678d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854000;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_99f5e081120d38884edf8242.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf{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);}
.m1f{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);}
.m23{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);}
.m14{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);}
.m26{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);}
.m1b{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);}
.m1d{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);}
.m28{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m6{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);}
.m21{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);}
.m8{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);}
.m22{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);}
.m9{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);}
.m24{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);}
.m12{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);}
.m17{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);}
.m11{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);}
.m27{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);}
.me{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);}
.m3{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);}
.m4{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);}
.m10{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m20{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);}
.m25{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);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m15{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);}
.m18{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);}
.m1e{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);}
.m29{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);}
.mc{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);}
.m7{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);}
.m2{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);}
.m16{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);}
.ma{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);}
.md{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);}
.m1a{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);}
.m1{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);}
.m13{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);}
.v3{vertical-align:-16.872000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.362000px;}
.v2{vertical-align:26.034000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.239102px;}
.ls5{letter-spacing:0.836858px;}
.ls4{letter-spacing:1.075961px;}
.ls7{letter-spacing:1.434614px;}
.ls6{letter-spacing:1.673717px;}
.lsb{letter-spacing:1.733492px;}
.ls9{letter-spacing:1.793268px;}
.lsa{letter-spacing:1.853044px;}
.ls8{letter-spacing:2.929004px;}
.ls1{letter-spacing:2.984726px;}
.ls0{letter-spacing:2.991746px;}
.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;}
}
.ws18{word-spacing:-19.941274px;}
.ws17{word-spacing:-16.617617px;}
.ws12{word-spacing:-13.294127px;}
.ws45{word-spacing:-11.632298px;}
.ws24{word-spacing:-2.988780px;}
.ws6d{word-spacing:-2.929004px;}
.ws19{word-spacing:-2.869229px;}
.ws2d{word-spacing:-2.510575px;}
.ws79{word-spacing:-2.391024px;}
.ws25{word-spacing:-2.331248px;}
.ws78{word-spacing:-2.211697px;}
.ws37{word-spacing:-2.092146px;}
.ws84{word-spacing:-1.912819px;}
.ws6c{word-spacing:-1.853044px;}
.ws88{word-spacing:-1.793268px;}
.ws82{word-spacing:-1.733492px;}
.ws6e{word-spacing:-1.673717px;}
.ws2e{word-spacing:-1.494390px;}
.ws58{word-spacing:-1.434614px;}
.ws56{word-spacing:-1.195512px;}
.ws48{word-spacing:-1.135736px;}
.ws5a{word-spacing:-0.896634px;}
.ws1c{word-spacing:-0.836858px;}
.ws1d{word-spacing:-0.777083px;}
.ws66{word-spacing:-0.717307px;}
.ws6f{word-spacing:-0.657532px;}
.ws5f{word-spacing:-0.537980px;}
.ws41{word-spacing:-0.478205px;}
.ws72{word-spacing:-0.418429px;}
.ws31{word-spacing:-0.358654px;}
.ws9{word-spacing:-0.298878px;}
.wsc{word-spacing:-0.239102px;}
.ws5{word-spacing:-0.179327px;}
.ws2a{word-spacing:-0.119551px;}
.ws7{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.053798px;}
.ws57{word-spacing:-0.012055px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:0.059776px;}
.ws64{word-spacing:0.107496px;}
.ws33{word-spacing:0.119551px;}
.ws8{word-spacing:0.179327px;}
.ws35{word-spacing:0.239102px;}
.wse{word-spacing:0.298878px;}
.ws26{word-spacing:0.358654px;}
.ws86{word-spacing:0.418429px;}
.ws3f{word-spacing:0.537980px;}
.ws4d{word-spacing:0.717307px;}
.ws69{word-spacing:0.836858px;}
.ws68{word-spacing:0.896634px;}
.ws4f{word-spacing:1.016185px;}
.ws2c{word-spacing:1.075961px;}
.ws4e{word-spacing:1.195512px;}
.ws30{word-spacing:1.255288px;}
.ws71{word-spacing:1.315063px;}
.ws29{word-spacing:1.374839px;}
.ws1a{word-spacing:1.733492px;}
.ws1e{word-spacing:1.793268px;}
.ws5e{word-spacing:1.853044px;}
.ws40{word-spacing:1.912819px;}
.ws47{word-spacing:1.972595px;}
.ws3e{word-spacing:2.032370px;}
.ws28{word-spacing:2.092146px;}
.ws77{word-spacing:2.151922px;}
.ws4{word-spacing:2.211697px;}
.ws27{word-spacing:2.271473px;}
.ws36{word-spacing:2.391024px;}
.ws3c{word-spacing:2.450800px;}
.wsf{word-spacing:2.570351px;}
.ws39{word-spacing:2.749678px;}
.ws3d{word-spacing:2.809453px;}
.ws6b{word-spacing:2.869229px;}
.ws2b{word-spacing:2.929004px;}
.ws44{word-spacing:2.988780px;}
.ws87{word-spacing:3.048556px;}
.ws8a{word-spacing:3.068640px;}
.ws1f{word-spacing:3.168107px;}
.ws1b{word-spacing:3.287658px;}
.ws74{word-spacing:3.347434px;}
.ws7f{word-spacing:3.407209px;}
.ws4a{word-spacing:3.466985px;}
.ws60{word-spacing:3.586536px;}
.ws76{word-spacing:3.706087px;}
.ws53{word-spacing:3.825638px;}
.ws3a{word-spacing:3.885414px;}
.ws61{word-spacing:3.945190px;}
.wsd{word-spacing:4.004965px;}
.ws20{word-spacing:4.064741px;}
.ws43{word-spacing:4.184292px;}
.ws5d{word-spacing:4.244068px;}
.ws67{word-spacing:4.363619px;}
.ws70{word-spacing:4.423394px;}
.ws38{word-spacing:4.483170px;}
.ws63{word-spacing:4.542946px;}
.ws6a{word-spacing:4.602721px;}
.ws23{word-spacing:4.961375px;}
.ws3b{word-spacing:5.080926px;}
.ws46{word-spacing:5.140702px;}
.ws6{word-spacing:5.200477px;}
.ws59{word-spacing:5.320028px;}
.ws22{word-spacing:5.439580px;}
.ws4b{word-spacing:5.798233px;}
.ws85{word-spacing:6.037336px;}
.ws49{word-spacing:6.156887px;}
.ws32{word-spacing:6.276438px;}
.ws7e{word-spacing:6.395989px;}
.ws55{word-spacing:6.455765px;}
.ws4c{word-spacing:6.515540px;}
.ws7b{word-spacing:6.575316px;}
.ws42{word-spacing:6.635092px;}
.ws2f{word-spacing:6.694867px;}
.ws54{word-spacing:6.754643px;}
.ws7c{word-spacing:6.814418px;}
.ws7a{word-spacing:6.933970px;}
.ws34{word-spacing:7.053521px;}
.ws5c{word-spacing:7.173072px;}
.ws5b{word-spacing:7.352399px;}
.ws80{word-spacing:7.471950px;}
.ws83{word-spacing:7.531726px;}
.ws75{word-spacing:7.830604px;}
.ws62{word-spacing:8.069706px;}
.ws73{word-spacing:8.308808px;}
.ws10{word-spacing:8.727238px;}
.ws81{word-spacing:9.026116px;}
.ws13{word-spacing:13.246306px;}
.ws7d{word-spacing:13.927715px;}
.ws50{word-spacing:14.884124px;}
.ws51{word-spacing:18.590212px;}
.ws52{word-spacing:18.769538px;}
.ws11{word-spacing:21.578992px;}
.ws89{word-spacing:27.473224px;}
.ws14{word-spacing:31.681068px;}
.ws15{word-spacing:31.740844px;}
.ws2{word-spacing:33.115849px;}
.ws16{word-spacing:33.593887px;}
.ws3{word-spacing:41.962471px;}
.wsb{word-spacing:58.699639px;}
.ws21{word-spacing:345.935767px;}
.ws65{word-spacing:559.918045px;}
._1d{margin-left:-27.851245px;}
._8{margin-left:-9.564144px;}
._7{margin-left:-7.173108px;}
._3{margin-left:-4.841856px;}
._5{margin-left:-3.586554px;}
._6{margin-left:-2.391036px;}
._1{margin-left:-1.195512px;}
._0{width:1.195512px;}
._9{width:2.809471px;}
._c{width:3.873475px;}
._4{width:4.949453px;}
._15{width:10.102076px;}
._10{width:14.214625px;}
._f{width:15.661207px;}
._12{width:16.677404px;}
._a{width:19.666172px;}
._1a{width:22.953875px;}
._17{width:27.735878px;}
._b{width:28.991178px;}
._1c{width:34.311194px;}
._19{width:43.098208px;}
._1b{width:45.967436px;}
._e{width:51.287483px;}
._d{width:58.639864px;}
._11{width:359.078008px;}
._2{width:517.105963px;}
._13{width:564.759869px;}
._14{width:580.062422px;}
._18{width:585.442226px;}
._16{width:607.858088px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs7{font-size:55.591308px;}
.fs0{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:119.551800px;}
.y172{bottom:-919.455660px;}
.y0{bottom:0.000000px;}
.y171{bottom:11.646855px;}
.y170{bottom:28.324080px;}
.y90{bottom:38.881500px;}
.y8f{bottom:50.838000px;}
.y2d{bottom:95.670000px;}
.y2c{bottom:113.602500px;}
.y103{bottom:125.316000px;}
.y2b{bottom:131.535000px;}
.yd7{bottom:131.737500px;}
.y13a{bottom:143.106000px;}
.y2a{bottom:149.467500px;}
.yd6{bottom:149.671500px;}
.y102{bottom:155.203500px;}
.y29{bottom:167.400000px;}
.yd5{bottom:167.604000px;}
.y31{bottom:167.925000px;}
.y139{bottom:172.993500px;}
.y101{bottom:173.136000px;}
.y28{bottom:185.332500px;}
.yd4{bottom:185.536500px;}
.y30{bottom:185.857500px;}
.y16c{bottom:196.438500px;}
.yba{bottom:201.601500px;}
.y138{bottom:202.882500px;}
.y100{bottom:203.023500px;}
.y8e{bottom:203.266500px;}
.yd3{bottom:203.469000px;}
.y60{bottom:203.473500px;}
.y2f{bottom:203.791500px;}
.y16b{bottom:214.372500px;}
.y27{bottom:218.653500px;}
.yb9{bottom:219.534000px;}
.yff{bottom:220.957500px;}
.y8d{bottom:221.199000px;}
.yd2{bottom:221.401500px;}
.y5f{bottom:221.406000px;}
.y2e{bottom:221.724000px;}
.y16a{bottom:232.305000px;}
.y137{bottom:232.770000px;}
.y8c{bottom:239.131500px;}
.y5e{bottom:239.338500px;}
.yd1{bottom:239.538000px;}
.yfe{bottom:250.845000px;}
.yb8{bottom:253.734000px;}
.y8b{bottom:257.064000px;}
.y5d{bottom:257.271000px;}
.yd0{bottom:257.470500px;}
.y10f{bottom:257.988000px;}
.y169{bottom:261.343500px;}
.y26{bottom:262.035000px;}
.y136{bottom:262.657500px;}
.yfd{bottom:268.777500px;}
.y8a{bottom:274.996500px;}
.y5c{bottom:275.205000px;}
.ycf{bottom:275.403000px;}
.y10e{bottom:275.920500px;}
.y168{bottom:279.276000px;}
.y25{bottom:279.967500px;}
.y135{bottom:280.590000px;}
.y145{bottom:281.755500px;}
.yb7{bottom:290.923500px;}
.y89{bottom:292.929000px;}
.y5b{bottom:293.137500px;}
.yce{bottom:293.335500px;}
.y10d{bottom:293.853000px;}
.y167{bottom:297.208500px;}
.y24{bottom:297.900000px;}
.yfc{bottom:298.665000px;}
.y144{bottom:299.689500px;}
.yb6{bottom:308.856000px;}
.y134{bottom:310.479000px;}
.ycd{bottom:311.269500px;}
.y10c{bottom:311.785500px;}
.y88{bottom:313.531500px;}
.y166{bottom:315.141000px;}
.yfb{bottom:316.597500px;}
.y5a{bottom:317.151000px;}
.y143{bottom:317.622000px;}
.yb5{bottom:326.790000px;}
.y133{bottom:328.411500px;}
.ycc{bottom:329.202000px;}
.y10b{bottom:329.719500px;}
.y87{bottom:331.465500px;}
.y165{bottom:333.075000px;}
.y142{bottom:335.554500px;}
.y23{bottom:337.704000px;}
.y59{bottom:338.071500px;}
.yb4{bottom:344.722500px;}
.yfa{bottom:346.486500px;}
.ycb{bottom:347.134500px;}
.y10a{bottom:347.652000px;}
.y86{bottom:349.398000px;}
.y22{bottom:353.394000px;}
.y141{bottom:353.487000px;}
.y132{bottom:358.299000px;}
.y164{bottom:362.113500px;}
.yb3{bottom:362.655000px;}
.yf9{bottom:364.419000px;}
.yca{bottom:365.067000px;}
.y109{bottom:365.584500px;}
.y85{bottom:367.330500px;}
.y140{bottom:371.419500px;}
.y21{bottom:378.052500px;}
.y163{bottom:380.046000px;}
.yb2{bottom:380.587500px;}
.y58{bottom:381.579000px;}
.yf8{bottom:382.351500px;}
.yc9{bottom:382.999500px;}
.y108{bottom:383.517000px;}
.y84{bottom:385.263000px;}
.y131{bottom:388.186500px;}
.y13f{bottom:389.352000px;}
.y20{bottom:397.962000px;}
.y162{bottom:397.978500px;}
.yb1{bottom:398.520000px;}
.y57{bottom:399.511500px;}
.yc8{bottom:401.136000px;}
.y107{bottom:401.449500px;}
.y83{bottom:403.195500px;}
.y130{bottom:406.120500px;}
.y13e{bottom:407.286000px;}
.yf7{bottom:412.239000px;}
.y161{bottom:415.911000px;}
.y56{bottom:417.444000px;}
.yc7{bottom:419.068500px;}
.y106{bottom:419.382000px;}
.y1f{bottom:419.400000px;}
.y82{bottom:421.128000px;}
.y13d{bottom:425.218500px;}
.yb0{bottom:427.170000px;}
.yf6{bottom:430.171500px;}
.y160{bottom:433.843500px;}
.y55{bottom:435.376500px;}
.y12f{bottom:436.008000px;}
.yc6{bottom:437.001000px;}
.y105{bottom:437.316000px;}
.y81{bottom:439.062000px;}
.y1e{bottom:441.816000px;}
.y13c{bottom:443.151000px;}
.yaf{bottom:448.092000px;}
.y15f{bottom:451.777500px;}
.y54{bottom:453.310500px;}
.y104{bottom:455.248500px;}
.y80{bottom:456.994500px;}
.yc5{bottom:460.663500px;}
.y13b{bottom:461.083500px;}
.y1d{bottom:464.232000px;}
.y15e{bottom:469.710000px;}
.y53{bottom:471.243000px;}
.yf5{bottom:473.778000px;}
.y7f{bottom:474.927000px;}
.y12e{bottom:479.614500px;}
.y1c{bottom:482.164500px;}
.y15d{bottom:487.642500px;}
.y52{bottom:489.175500px;}
.yae{bottom:492.865500px;}
.yf4{bottom:495.298500px;}
.y7e{bottom:495.529500px;}
.y1b{bottom:500.097000px;}
.y12d{bottom:501.133500px;}
.yc4{bottom:504.721500px;}
.y51{bottom:507.108000px;}
.yad{bottom:510.798000px;}
.y7d{bottom:513.462000px;}
.y15c{bottom:516.681000px;}
.y1a{bottom:518.029500px;}
.yc3{bottom:522.655500px;}
.y50{bottom:525.040500px;}
.yac{bottom:528.730500px;}
.y7c{bottom:531.394500px;}
.y15b{bottom:534.613500px;}
.y19{bottom:535.962000px;}
.yc2{bottom:540.588000px;}
.y4f{bottom:542.973000px;}
.yab{bottom:546.664500px;}
.y7b{bottom:549.327000px;}
.y15a{bottom:552.547500px;}
.y18{bottom:553.894500px;}
.yc1{bottom:558.520500px;}
.y4e{bottom:560.907000px;}
.yaa{bottom:564.597000px;}
.y7a{bottom:567.261000px;}
.yf3{bottom:570.132000px;}
.y159{bottom:570.480000px;}
.y17{bottom:571.828500px;}
.yc0{bottom:576.453000px;}
.ya9{bottom:582.529500px;}
.y4d{bottom:584.572500px;}
.y79{bottom:585.193500px;}
.yf2{bottom:588.064500px;}
.y158{bottom:588.412500px;}
.y16{bottom:589.761000px;}
.ybf{bottom:594.385500px;}
.ya8{bottom:600.462000px;}
.y78{bottom:603.126000px;}
.yf1{bottom:605.997000px;}
.y157{bottom:606.345000px;}
.y15{bottom:607.693500px;}
.y11f{bottom:611.548500px;}
.ybe{bottom:612.318000px;}
.ya7{bottom:618.394500px;}
.y77{bottom:623.728500px;}
.yf0{bottom:623.929500px;}
.y4c{bottom:628.653000px;}
.y14{bottom:630.109500px;}
.ybd{bottom:630.252000px;}
.y156{bottom:635.383500px;}
.ya6{bottom:636.327000px;}
.y11e{bottom:641.437500px;}
.y76{bottom:641.661000px;}
.yef{bottom:641.863500px;}
.y4b{bottom:646.585500px;}
.y13{bottom:652.525500px;}
.y155{bottom:653.316000px;}
.ya5{bottom:655.338000px;}
.y75{bottom:659.593500px;}
.yee{bottom:659.796000px;}
.y4a{bottom:664.518000px;}
.ybc{bottom:668.668500px;}
.y12{bottom:670.458000px;}
.y154{bottom:671.250000px;}
.y11d{bottom:671.325000px;}
.ya4{bottom:673.272000px;}
.y74{bottom:677.526000px;}
.yed{bottom:677.728500px;}
.y49{bottom:682.450500px;}
.ybb{bottom:686.601000px;}
.y11{bottom:688.390500px;}
.y153{bottom:689.182500px;}
.ya3{bottom:691.204500px;}
.y73{bottom:695.460000px;}
.yec{bottom:695.661000px;}
.y48{bottom:700.383000px;}
.y11c{bottom:701.212500px;}
.y10{bottom:706.323000px;}
.ya2{bottom:710.215500px;}
.y72{bottom:713.392500px;}
.yeb{bottom:713.593500px;}
.y152{bottom:718.221000px;}
.y47{bottom:718.317000px;}
.yf{bottom:724.257000px;}
.ya1{bottom:728.148000px;}
.y11b{bottom:731.100000px;}
.yea{bottom:731.526000px;}
.y71{bottom:733.995000px;}
.y151{bottom:736.153500px;}
.y46{bottom:736.456500px;}
.ye{bottom:742.189500px;}
.ya0{bottom:746.080500px;}
.ye9{bottom:749.460000px;}
.y70{bottom:751.927500px;}
.y150{bottom:754.086000px;}
.y16f{bottom:754.282500px;}
.y45{bottom:754.389000px;}
.yd{bottom:760.122000px;}
.y11a{bottom:760.989000px;}
.y9f{bottom:765.091500px;}
.ye8{bottom:767.392500px;}
.y6f{bottom:769.860000px;}
.y14f{bottom:772.018500px;}
.y44{bottom:772.323000px;}
.yc{bottom:778.054500px;}
.y9e{bottom:783.024000px;}
.ye7{bottom:785.325000px;}
.y12c{bottom:786.064500px;}
.y6e{bottom:787.792500px;}
.y14e{bottom:789.952500px;}
.y43{bottom:790.255500px;}
.y119{bottom:790.876500px;}
.yb{bottom:795.987000px;}
.y9d{bottom:800.956500px;}
.ye6{bottom:803.257500px;}
.y12b{bottom:803.997000px;}
.y6d{bottom:805.725000px;}
.y42{bottom:808.188000px;}
.y14d{bottom:813.411000px;}
.ya{bottom:813.919500px;}
.y9c{bottom:818.889000px;}
.y118{bottom:820.764000px;}
.ye5{bottom:821.788500px;}
.y12a{bottom:821.929500px;}
.y6c{bottom:823.659000px;}
.y41{bottom:826.120500px;}
.y9{bottom:831.853500px;}
.y9b{bottom:836.823000px;}
.ye4{bottom:839.721000px;}
.y129{bottom:839.862000px;}
.y6b{bottom:841.591500px;}
.y40{bottom:844.053000px;}
.y117{bottom:850.653000px;}
.y9a{bottom:854.755500px;}
.y14c{bottom:855.178500px;}
.ye3{bottom:857.653500px;}
.y128{bottom:857.796000px;}
.y6a{bottom:859.524000px;}
.y3f{bottom:861.985500px;}
.y99{bottom:872.688000px;}
.ye2{bottom:875.586000px;}
.y127{bottom:875.728500px;}
.y69{bottom:877.456500px;}
.y14b{bottom:878.413500px;}
.y3e{bottom:879.919500px;}
.y116{bottom:880.540500px;}
.y8{bottom:881.530500px;}
.y98{bottom:890.620500px;}
.ye1{bottom:893.518500px;}
.y126{bottom:893.661000px;}
.y68{bottom:895.389000px;}
.y3d{bottom:897.852000px;}
.y115{bottom:898.473000px;}
.y97{bottom:908.553000px;}
.ye0{bottom:911.452500px;}
.y125{bottom:911.593500px;}
.y67{bottom:913.321500px;}
.y3c{bottom:915.784500px;}
.y7{bottom:920.385000px;}
.y14a{bottom:920.406000px;}
.y96{bottom:926.487000px;}
.y114{bottom:928.360500px;}
.ydf{bottom:929.385000px;}
.y124{bottom:929.526000px;}
.y66{bottom:931.255500px;}
.y3b{bottom:933.717000px;}
.y16e{bottom:933.924000px;}
.y149{bottom:938.338500px;}
.y95{bottom:944.419500px;}
.yde{bottom:947.317500px;}
.y123{bottom:947.460000px;}
.y65{bottom:949.188000px;}
.y3a{bottom:951.649500px;}
.y16d{bottom:951.858000px;}
.y148{bottom:956.271000px;}
.y6{bottom:957.745500px;}
.y113{bottom:958.249500px;}
.y94{bottom:962.352000px;}
.ydd{bottom:965.250000px;}
.y122{bottom:965.392500px;}
.y64{bottom:967.120500px;}
.y39{bottom:969.790500px;}
.y147{bottom:974.203500px;}
.y112{bottom:976.182000px;}
.ydc{bottom:983.182500px;}
.y121{bottom:983.325000px;}
.y63{bottom:985.053000px;}
.y93{bottom:987.235500px;}
.y38{bottom:987.723000px;}
.y5{bottom:995.104500px;}
.ydb{bottom:1001.115000px;}
.y120{bottom:1001.257500px;}
.y146{bottom:1001.497500px;}
.y62{bottom:1002.985500px;}
.y37{bottom:1005.655500px;}
.y92{bottom:1008.157500px;}
.yda{bottom:1019.049000px;}
.y111{bottom:1019.788500px;}
.y61{bottom:1020.918000px;}
.y36{bottom:1023.588000px;}
.y91{bottom:1029.078000px;}
.y4{bottom:1032.465000px;}
.yd9{bottom:1037.578500px;}
.y110{bottom:1041.307500px;}
.y35{bottom:1041.520500px;}
.yd8{bottom:1059.097500px;}
.y34{bottom:1059.454500px;}
.y33{bottom:1077.387000px;}
.y3{bottom:1099.713000px;}
.y2{bottom:1116.151500px;}
.y1{bottom:1129.249500px;}
.y32{bottom:1133.575500px;}
.h8{height:26.576410px;}
.hc{height:31.675000px;}
.h9{height:36.200194px;}
.h11{height:39.803377px;}
.he{height:39.930101px;}
.h2{height:40.725389px;}
.hd{height:42.620003px;}
.h7{height:44.293720px;}
.h6{height:45.250129px;}
.h10{height:50.220000px;}
.hf{height:52.363426px;}
.hb{height:53.200284px;}
.h1{height:54.087389px;}
.ha{height:54.300518px;}
.h5{height:61.469065px;}
.h4{height:88.587884px;}
.h3{height:90.500713px;}
.h0{height:1188.000000px;}
.w1{width:145.638000px;}
.w0{width:918.000000px;}
.x3f{left:-553.685265px;}
.x40{left:-209.376945px;}
.x0{left:0.000000px;}
.x4{left:83.964000px;}
.x5{left:85.039500px;}
.x1{left:90.643500px;}
.x2b{left:92.884500px;}
.x2a{left:94.005000px;}
.x6{left:95.127000px;}
.x22{left:99.409500px;}
.x31{left:105.291000px;}
.x8{left:107.455500px;}
.x1e{left:109.891500px;}
.x1d{left:111.684000px;}
.x32{left:113.667000px;}
.x24{left:122.389500px;}
.x10{left:127.662000px;}
.x23{left:130.899000px;}
.x33{left:132.345000px;}
.x11{left:150.571500px;}
.x39{left:151.959000px;}
.x20{left:158.827500px;}
.x21{left:166.299000px;}
.xf{left:169.812000px;}
.x36{left:178.315500px;}
.x3a{left:187.096500px;}
.x35{left:209.874000px;}
.x7{left:212.052000px;}
.x37{left:215.433000px;}
.x1f{left:228.523500px;}
.x2f{left:236.004000px;}
.x2e{left:303.277500px;}
.x38{left:344.586000px;}
.xd{left:363.495000px;}
.xe{left:370.968000px;}
.x3b{left:394.312500px;}
.x2{left:406.521000px;}
.x3{left:429.102000px;}
.x12{left:438.019500px;}
.x13{left:445.491000px;}
.x16{left:469.363500px;}
.x9{left:470.692500px;}
.xa{left:493.108500px;}
.x3c{left:495.588000px;}
.x2c{left:532.687500px;}
.x2d{left:533.808000px;}
.x3d{left:537.612000px;}
.x28{left:554.322000px;}
.x30{left:579.655500px;}
.xb{left:584.512500px;}
.xc{left:591.985500px;}
.x27{left:593.214000px;}
.x34{left:601.365000px;}
.x25{left:604.728000px;}
.x26{left:612.199500px;}
.x29{left:614.878500px;}
.x1c{left:633.027000px;}
.x14{left:641.655000px;}
.x15{left:649.126500px;}
.x17{left:676.659000px;}
.x18{left:684.132000px;}
.x3e{left:687.324000px;}
.x19{left:710.749500px;}
.x1a{left:718.221000px;}
.x1b{left:750.165000px;}
@media print{
.v3{vertical-align:-14.997333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.877333pt;}
.v2{vertical-align:23.141333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.212535pt;}
.ls5{letter-spacing:0.743874pt;}
.ls4{letter-spacing:0.956410pt;}
.ls7{letter-spacing:1.275213pt;}
.ls6{letter-spacing:1.487748pt;}
.lsb{letter-spacing:1.540882pt;}
.ls9{letter-spacing:1.594016pt;}
.lsa{letter-spacing:1.647150pt;}
.ls8{letter-spacing:2.603559pt;}
.ls1{letter-spacing:2.653090pt;}
.ls0{letter-spacing:2.659330pt;}
.ws18{word-spacing:-17.725577pt;}
.ws17{word-spacing:-14.771215pt;}
.ws12{word-spacing:-11.817002pt;}
.ws45{word-spacing:-10.339821pt;}
.ws24{word-spacing:-2.656693pt;}
.ws6d{word-spacing:-2.603559pt;}
.ws19{word-spacing:-2.550426pt;}
.ws2d{word-spacing:-2.231622pt;}
.ws79{word-spacing:-2.125355pt;}
.ws25{word-spacing:-2.072221pt;}
.ws78{word-spacing:-1.965953pt;}
.ws37{word-spacing:-1.859685pt;}
.ws84{word-spacing:-1.700284pt;}
.ws6c{word-spacing:-1.647150pt;}
.ws88{word-spacing:-1.594016pt;}
.ws82{word-spacing:-1.540882pt;}
.ws6e{word-spacing:-1.487748pt;}
.ws2e{word-spacing:-1.328347pt;}
.ws58{word-spacing:-1.275213pt;}
.ws56{word-spacing:-1.062677pt;}
.ws48{word-spacing:-1.009543pt;}
.ws5a{word-spacing:-0.797008pt;}
.ws1c{word-spacing:-0.743874pt;}
.ws1d{word-spacing:-0.690740pt;}
.ws66{word-spacing:-0.637606pt;}
.ws6f{word-spacing:-0.584473pt;}
.ws5f{word-spacing:-0.478205pt;}
.ws41{word-spacing:-0.425071pt;}
.ws72{word-spacing:-0.371937pt;}
.ws31{word-spacing:-0.318803pt;}
.ws9{word-spacing:-0.265669pt;}
.wsc{word-spacing:-0.212535pt;}
.ws5{word-spacing:-0.159402pt;}
.ws2a{word-spacing:-0.106268pt;}
.ws7{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.047821pt;}
.ws57{word-spacing:-0.010716pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:0.053134pt;}
.ws64{word-spacing:0.095552pt;}
.ws33{word-spacing:0.106268pt;}
.ws8{word-spacing:0.159402pt;}
.ws35{word-spacing:0.212535pt;}
.wse{word-spacing:0.265669pt;}
.ws26{word-spacing:0.318803pt;}
.ws86{word-spacing:0.371937pt;}
.ws3f{word-spacing:0.478205pt;}
.ws4d{word-spacing:0.637606pt;}
.ws69{word-spacing:0.743874pt;}
.ws68{word-spacing:0.797008pt;}
.ws4f{word-spacing:0.903276pt;}
.ws2c{word-spacing:0.956410pt;}
.ws4e{word-spacing:1.062677pt;}
.ws30{word-spacing:1.115811pt;}
.ws71{word-spacing:1.168945pt;}
.ws29{word-spacing:1.222079pt;}
.ws1a{word-spacing:1.540882pt;}
.ws1e{word-spacing:1.594016pt;}
.ws5e{word-spacing:1.647150pt;}
.ws40{word-spacing:1.700284pt;}
.ws47{word-spacing:1.753418pt;}
.ws3e{word-spacing:1.806551pt;}
.ws28{word-spacing:1.859685pt;}
.ws77{word-spacing:1.912819pt;}
.ws4{word-spacing:1.965953pt;}
.ws27{word-spacing:2.019087pt;}
.ws36{word-spacing:2.125355pt;}
.ws3c{word-spacing:2.178489pt;}
.wsf{word-spacing:2.284756pt;}
.ws39{word-spacing:2.444158pt;}
.ws3d{word-spacing:2.497292pt;}
.ws6b{word-spacing:2.550426pt;}
.ws2b{word-spacing:2.603559pt;}
.ws44{word-spacing:2.656693pt;}
.ws87{word-spacing:2.709827pt;}
.ws8a{word-spacing:2.727680pt;}
.ws1f{word-spacing:2.816095pt;}
.ws1b{word-spacing:2.922363pt;}
.ws74{word-spacing:2.975497pt;}
.ws7f{word-spacing:3.028630pt;}
.ws4a{word-spacing:3.081764pt;}
.ws60{word-spacing:3.188032pt;}
.ws76{word-spacing:3.294300pt;}
.ws53{word-spacing:3.400567pt;}
.ws3a{word-spacing:3.453701pt;}
.ws61{word-spacing:3.506835pt;}
.wsd{word-spacing:3.559969pt;}
.ws20{word-spacing:3.613103pt;}
.ws43{word-spacing:3.719371pt;}
.ws5d{word-spacing:3.772505pt;}
.ws67{word-spacing:3.878772pt;}
.ws70{word-spacing:3.931906pt;}
.ws38{word-spacing:3.985040pt;}
.ws63{word-spacing:4.038174pt;}
.ws6a{word-spacing:4.091308pt;}
.ws23{word-spacing:4.410111pt;}
.ws3b{word-spacing:4.516379pt;}
.ws46{word-spacing:4.569513pt;}
.ws6{word-spacing:4.622646pt;}
.ws59{word-spacing:4.728914pt;}
.ws22{word-spacing:4.835182pt;}
.ws4b{word-spacing:5.153985pt;}
.ws85{word-spacing:5.366521pt;}
.ws49{word-spacing:5.472788pt;}
.ws32{word-spacing:5.579056pt;}
.ws7e{word-spacing:5.685324pt;}
.ws55{word-spacing:5.738458pt;}
.ws4c{word-spacing:5.791591pt;}
.ws7b{word-spacing:5.844725pt;}
.ws42{word-spacing:5.897859pt;}
.ws2f{word-spacing:5.950993pt;}
.ws54{word-spacing:6.004127pt;}
.ws7c{word-spacing:6.057261pt;}
.ws7a{word-spacing:6.163529pt;}
.ws34{word-spacing:6.269796pt;}
.ws5c{word-spacing:6.376064pt;}
.ws5b{word-spacing:6.535466pt;}
.ws80{word-spacing:6.641733pt;}
.ws83{word-spacing:6.694867pt;}
.ws75{word-spacing:6.960537pt;}
.ws62{word-spacing:7.173072pt;}
.ws73{word-spacing:7.385607pt;}
.ws10{word-spacing:7.757545pt;}
.ws81{word-spacing:8.023214pt;}
.ws13{word-spacing:11.774494pt;}
.ws7d{word-spacing:12.380191pt;}
.ws50{word-spacing:13.230333pt;}
.ws51{word-spacing:16.524633pt;}
.ws52{word-spacing:16.684034pt;}
.ws11{word-spacing:19.181326pt;}
.ws89{word-spacing:24.420644pt;}
.ws14{word-spacing:28.160949pt;}
.ws15{word-spacing:28.214083pt;}
.ws2{word-spacing:29.436310pt;}
.ws16{word-spacing:29.861233pt;}
.ws3{word-spacing:37.299974pt;}
.wsb{word-spacing:52.177457pt;}
.ws21{word-spacing:307.498460pt;}
.ws65{word-spacing:497.704929pt;}
._1d{margin-left:-24.756662pt;}
._8{margin-left:-8.501461pt;}
._7{margin-left:-6.376096pt;}
._3{margin-left:-4.303872pt;}
._5{margin-left:-3.188048pt;}
._6{margin-left:-2.125365pt;}
._1{margin-left:-1.062677pt;}
._0{width:1.062677pt;}
._9{width:2.497308pt;}
._c{width:3.443089pt;}
._4{width:4.399514pt;}
._15{width:8.979623pt;}
._10{width:12.635222pt;}
._f{width:13.921073pt;}
._12{width:14.824359pt;}
._a{width:17.481042pt;}
._1a{width:20.403444pt;}
._17{width:24.654114pt;}
._b{width:25.769936pt;}
._1c{width:30.498839pt;}
._19{width:38.309518pt;}
._1b{width:40.859943pt;}
._e{width:45.588874pt;}
._d{width:52.124323pt;}
._11{width:319.180451pt;}
._2{width:459.649745pt;}
._13{width:502.008772pt;}
._14{width:515.611042pt;}
._18{width:520.393090pt;}
._16{width:540.318301pt;}
.fs5{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs7{font-size:49.414496pt;}
.fs0{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:106.268267pt;}
.y172{bottom:-817.293920pt;}
.y0{bottom:0.000000pt;}
.y171{bottom:10.352760pt;}
.y170{bottom:25.176960pt;}
.y90{bottom:34.561333pt;}
.y8f{bottom:45.189333pt;}
.y2d{bottom:85.040000pt;}
.y2c{bottom:100.980000pt;}
.y103{bottom:111.392000pt;}
.y2b{bottom:116.920000pt;}
.yd7{bottom:117.100000pt;}
.y13a{bottom:127.205333pt;}
.y2a{bottom:132.860000pt;}
.yd6{bottom:133.041333pt;}
.y102{bottom:137.958667pt;}
.y29{bottom:148.800000pt;}
.yd5{bottom:148.981333pt;}
.y31{bottom:149.266667pt;}
.y139{bottom:153.772000pt;}
.y101{bottom:153.898667pt;}
.y28{bottom:164.740000pt;}
.yd4{bottom:164.921333pt;}
.y30{bottom:165.206667pt;}
.y16c{bottom:174.612000pt;}
.yba{bottom:179.201333pt;}
.y138{bottom:180.340000pt;}
.y100{bottom:180.465333pt;}
.y8e{bottom:180.681333pt;}
.yd3{bottom:180.861333pt;}
.y60{bottom:180.865333pt;}
.y2f{bottom:181.148000pt;}
.y16b{bottom:190.553333pt;}
.y27{bottom:194.358667pt;}
.yb9{bottom:195.141333pt;}
.yff{bottom:196.406667pt;}
.y8d{bottom:196.621333pt;}
.yd2{bottom:196.801333pt;}
.y5f{bottom:196.805333pt;}
.y2e{bottom:197.088000pt;}
.y16a{bottom:206.493333pt;}
.y137{bottom:206.906667pt;}
.y8c{bottom:212.561333pt;}
.y5e{bottom:212.745333pt;}
.yd1{bottom:212.922667pt;}
.yfe{bottom:222.973333pt;}
.yb8{bottom:225.541333pt;}
.y8b{bottom:228.501333pt;}
.y5d{bottom:228.685333pt;}
.yd0{bottom:228.862667pt;}
.y10f{bottom:229.322667pt;}
.y169{bottom:232.305333pt;}
.y26{bottom:232.920000pt;}
.y136{bottom:233.473333pt;}
.yfd{bottom:238.913333pt;}
.y8a{bottom:244.441333pt;}
.y5c{bottom:244.626667pt;}
.ycf{bottom:244.802667pt;}
.y10e{bottom:245.262667pt;}
.y168{bottom:248.245333pt;}
.y25{bottom:248.860000pt;}
.y135{bottom:249.413333pt;}
.y145{bottom:250.449333pt;}
.yb7{bottom:258.598667pt;}
.y89{bottom:260.381333pt;}
.y5b{bottom:260.566667pt;}
.yce{bottom:260.742667pt;}
.y10d{bottom:261.202667pt;}
.y167{bottom:264.185333pt;}
.y24{bottom:264.800000pt;}
.yfc{bottom:265.480000pt;}
.y144{bottom:266.390667pt;}
.yb6{bottom:274.538667pt;}
.y134{bottom:275.981333pt;}
.ycd{bottom:276.684000pt;}
.y10c{bottom:277.142667pt;}
.y88{bottom:278.694667pt;}
.y166{bottom:280.125333pt;}
.yfb{bottom:281.420000pt;}
.y5a{bottom:281.912000pt;}
.y143{bottom:282.330667pt;}
.yb5{bottom:290.480000pt;}
.y133{bottom:291.921333pt;}
.ycc{bottom:292.624000pt;}
.y10b{bottom:293.084000pt;}
.y87{bottom:294.636000pt;}
.y165{bottom:296.066667pt;}
.y142{bottom:298.270667pt;}
.y23{bottom:300.181333pt;}
.y59{bottom:300.508000pt;}
.yb4{bottom:306.420000pt;}
.yfa{bottom:307.988000pt;}
.ycb{bottom:308.564000pt;}
.y10a{bottom:309.024000pt;}
.y86{bottom:310.576000pt;}
.y22{bottom:314.128000pt;}
.y141{bottom:314.210667pt;}
.y132{bottom:318.488000pt;}
.y164{bottom:321.878667pt;}
.yb3{bottom:322.360000pt;}
.yf9{bottom:323.928000pt;}
.yca{bottom:324.504000pt;}
.y109{bottom:324.964000pt;}
.y85{bottom:326.516000pt;}
.y140{bottom:330.150667pt;}
.y21{bottom:336.046667pt;}
.y163{bottom:337.818667pt;}
.yb2{bottom:338.300000pt;}
.y58{bottom:339.181333pt;}
.yf8{bottom:339.868000pt;}
.yc9{bottom:340.444000pt;}
.y108{bottom:340.904000pt;}
.y84{bottom:342.456000pt;}
.y131{bottom:345.054667pt;}
.y13f{bottom:346.090667pt;}
.y20{bottom:353.744000pt;}
.y162{bottom:353.758667pt;}
.yb1{bottom:354.240000pt;}
.y57{bottom:355.121333pt;}
.yc8{bottom:356.565333pt;}
.y107{bottom:356.844000pt;}
.y83{bottom:358.396000pt;}
.y130{bottom:360.996000pt;}
.y13e{bottom:362.032000pt;}
.yf7{bottom:366.434667pt;}
.y161{bottom:369.698667pt;}
.y56{bottom:371.061333pt;}
.yc7{bottom:372.505333pt;}
.y106{bottom:372.784000pt;}
.y1f{bottom:372.800000pt;}
.y82{bottom:374.336000pt;}
.y13d{bottom:377.972000pt;}
.yb0{bottom:379.706667pt;}
.yf6{bottom:382.374667pt;}
.y160{bottom:385.638667pt;}
.y55{bottom:387.001333pt;}
.y12f{bottom:387.562667pt;}
.yc6{bottom:388.445333pt;}
.y105{bottom:388.725333pt;}
.y81{bottom:390.277333pt;}
.y1e{bottom:392.725333pt;}
.y13c{bottom:393.912000pt;}
.yaf{bottom:398.304000pt;}
.y15f{bottom:401.580000pt;}
.y54{bottom:402.942667pt;}
.y104{bottom:404.665333pt;}
.y80{bottom:406.217333pt;}
.yc5{bottom:409.478667pt;}
.y13b{bottom:409.852000pt;}
.y1d{bottom:412.650667pt;}
.y15e{bottom:417.520000pt;}
.y53{bottom:418.882667pt;}
.yf5{bottom:421.136000pt;}
.y7f{bottom:422.157333pt;}
.y12e{bottom:426.324000pt;}
.y1c{bottom:428.590667pt;}
.y15d{bottom:433.460000pt;}
.y52{bottom:434.822667pt;}
.yae{bottom:438.102667pt;}
.yf4{bottom:440.265333pt;}
.y7e{bottom:440.470667pt;}
.y1b{bottom:444.530667pt;}
.y12d{bottom:445.452000pt;}
.yc4{bottom:448.641333pt;}
.y51{bottom:450.762667pt;}
.yad{bottom:454.042667pt;}
.y7d{bottom:456.410667pt;}
.y15c{bottom:459.272000pt;}
.y1a{bottom:460.470667pt;}
.yc3{bottom:464.582667pt;}
.y50{bottom:466.702667pt;}
.yac{bottom:469.982667pt;}
.y7c{bottom:472.350667pt;}
.y15b{bottom:475.212000pt;}
.y19{bottom:476.410667pt;}
.yc2{bottom:480.522667pt;}
.y4f{bottom:482.642667pt;}
.yab{bottom:485.924000pt;}
.y7b{bottom:488.290667pt;}
.y15a{bottom:491.153333pt;}
.y18{bottom:492.350667pt;}
.yc1{bottom:496.462667pt;}
.y4e{bottom:498.584000pt;}
.yaa{bottom:501.864000pt;}
.y7a{bottom:504.232000pt;}
.yf3{bottom:506.784000pt;}
.y159{bottom:507.093333pt;}
.y17{bottom:508.292000pt;}
.yc0{bottom:512.402667pt;}
.ya9{bottom:517.804000pt;}
.y4d{bottom:519.620000pt;}
.y79{bottom:520.172000pt;}
.yf2{bottom:522.724000pt;}
.y158{bottom:523.033333pt;}
.y16{bottom:524.232000pt;}
.ybf{bottom:528.342667pt;}
.ya8{bottom:533.744000pt;}
.y78{bottom:536.112000pt;}
.yf1{bottom:538.664000pt;}
.y157{bottom:538.973333pt;}
.y15{bottom:540.172000pt;}
.y11f{bottom:543.598667pt;}
.ybe{bottom:544.282667pt;}
.ya7{bottom:549.684000pt;}
.y77{bottom:554.425333pt;}
.yf0{bottom:554.604000pt;}
.y4c{bottom:558.802667pt;}
.y14{bottom:560.097333pt;}
.ybd{bottom:560.224000pt;}
.y156{bottom:564.785333pt;}
.ya6{bottom:565.624000pt;}
.y11e{bottom:570.166667pt;}
.y76{bottom:570.365333pt;}
.yef{bottom:570.545333pt;}
.y4b{bottom:574.742667pt;}
.y13{bottom:580.022667pt;}
.y155{bottom:580.725333pt;}
.ya5{bottom:582.522667pt;}
.y75{bottom:586.305333pt;}
.yee{bottom:586.485333pt;}
.y4a{bottom:590.682667pt;}
.ybc{bottom:594.372000pt;}
.y12{bottom:595.962667pt;}
.y154{bottom:596.666667pt;}
.y11d{bottom:596.733333pt;}
.ya4{bottom:598.464000pt;}
.y74{bottom:602.245333pt;}
.yed{bottom:602.425333pt;}
.y49{bottom:606.622667pt;}
.ybb{bottom:610.312000pt;}
.y11{bottom:611.902667pt;}
.y153{bottom:612.606667pt;}
.ya3{bottom:614.404000pt;}
.y73{bottom:618.186667pt;}
.yec{bottom:618.365333pt;}
.y48{bottom:622.562667pt;}
.y11c{bottom:623.300000pt;}
.y10{bottom:627.842667pt;}
.ya2{bottom:631.302667pt;}
.y72{bottom:634.126667pt;}
.yeb{bottom:634.305333pt;}
.y152{bottom:638.418667pt;}
.y47{bottom:638.504000pt;}
.yf{bottom:643.784000pt;}
.ya1{bottom:647.242667pt;}
.y11b{bottom:649.866667pt;}
.yea{bottom:650.245333pt;}
.y71{bottom:652.440000pt;}
.y151{bottom:654.358667pt;}
.y46{bottom:654.628000pt;}
.ye{bottom:659.724000pt;}
.ya0{bottom:663.182667pt;}
.ye9{bottom:666.186667pt;}
.y70{bottom:668.380000pt;}
.y150{bottom:670.298667pt;}
.y16f{bottom:670.473333pt;}
.y45{bottom:670.568000pt;}
.yd{bottom:675.664000pt;}
.y11a{bottom:676.434667pt;}
.y9f{bottom:680.081333pt;}
.ye8{bottom:682.126667pt;}
.y6f{bottom:684.320000pt;}
.y14f{bottom:686.238667pt;}
.y44{bottom:686.509333pt;}
.yc{bottom:691.604000pt;}
.y9e{bottom:696.021333pt;}
.ye7{bottom:698.066667pt;}
.y12c{bottom:698.724000pt;}
.y6e{bottom:700.260000pt;}
.y14e{bottom:702.180000pt;}
.y43{bottom:702.449333pt;}
.y119{bottom:703.001333pt;}
.yb{bottom:707.544000pt;}
.y9d{bottom:711.961333pt;}
.ye6{bottom:714.006667pt;}
.y12b{bottom:714.664000pt;}
.y6d{bottom:716.200000pt;}
.y42{bottom:718.389333pt;}
.y14d{bottom:723.032000pt;}
.ya{bottom:723.484000pt;}
.y9c{bottom:727.901333pt;}
.y118{bottom:729.568000pt;}
.ye5{bottom:730.478667pt;}
.y12a{bottom:730.604000pt;}
.y6c{bottom:732.141333pt;}
.y41{bottom:734.329333pt;}
.y9{bottom:739.425333pt;}
.y9b{bottom:743.842667pt;}
.ye4{bottom:746.418667pt;}
.y129{bottom:746.544000pt;}
.y6b{bottom:748.081333pt;}
.y40{bottom:750.269333pt;}
.y117{bottom:756.136000pt;}
.y9a{bottom:759.782667pt;}
.y14c{bottom:760.158667pt;}
.ye3{bottom:762.358667pt;}
.y128{bottom:762.485333pt;}
.y6a{bottom:764.021333pt;}
.y3f{bottom:766.209333pt;}
.y99{bottom:775.722667pt;}
.ye2{bottom:778.298667pt;}
.y127{bottom:778.425333pt;}
.y69{bottom:779.961333pt;}
.y14b{bottom:780.812000pt;}
.y3e{bottom:782.150667pt;}
.y116{bottom:782.702667pt;}
.y8{bottom:783.582667pt;}
.y98{bottom:791.662667pt;}
.ye1{bottom:794.238667pt;}
.y126{bottom:794.365333pt;}
.y68{bottom:795.901333pt;}
.y3d{bottom:798.090667pt;}
.y115{bottom:798.642667pt;}
.y97{bottom:807.602667pt;}
.ye0{bottom:810.180000pt;}
.y125{bottom:810.305333pt;}
.y67{bottom:811.841333pt;}
.y3c{bottom:814.030667pt;}
.y7{bottom:818.120000pt;}
.y14a{bottom:818.138667pt;}
.y96{bottom:823.544000pt;}
.y114{bottom:825.209333pt;}
.ydf{bottom:826.120000pt;}
.y124{bottom:826.245333pt;}
.y66{bottom:827.782667pt;}
.y3b{bottom:829.970667pt;}
.y16e{bottom:830.154667pt;}
.y149{bottom:834.078667pt;}
.y95{bottom:839.484000pt;}
.yde{bottom:842.060000pt;}
.y123{bottom:842.186667pt;}
.y65{bottom:843.722667pt;}
.y3a{bottom:845.910667pt;}
.y16d{bottom:846.096000pt;}
.y148{bottom:850.018667pt;}
.y6{bottom:851.329333pt;}
.y113{bottom:851.777333pt;}
.y94{bottom:855.424000pt;}
.ydd{bottom:858.000000pt;}
.y122{bottom:858.126667pt;}
.y64{bottom:859.662667pt;}
.y39{bottom:862.036000pt;}
.y147{bottom:865.958667pt;}
.y112{bottom:867.717333pt;}
.ydc{bottom:873.940000pt;}
.y121{bottom:874.066667pt;}
.y63{bottom:875.602667pt;}
.y93{bottom:877.542667pt;}
.y38{bottom:877.976000pt;}
.y5{bottom:884.537333pt;}
.ydb{bottom:889.880000pt;}
.y120{bottom:890.006667pt;}
.y146{bottom:890.220000pt;}
.y62{bottom:891.542667pt;}
.y37{bottom:893.916000pt;}
.y92{bottom:896.140000pt;}
.yda{bottom:905.821333pt;}
.y111{bottom:906.478667pt;}
.y61{bottom:907.482667pt;}
.y36{bottom:909.856000pt;}
.y91{bottom:914.736000pt;}
.y4{bottom:917.746667pt;}
.yd9{bottom:922.292000pt;}
.y110{bottom:925.606667pt;}
.y35{bottom:925.796000pt;}
.yd8{bottom:941.420000pt;}
.y34{bottom:941.737333pt;}
.y33{bottom:957.677333pt;}
.y3{bottom:977.522667pt;}
.y2{bottom:992.134667pt;}
.y1{bottom:1003.777333pt;}
.y32{bottom:1007.622667pt;}
.h8{height:23.623475pt;}
.hc{height:28.155555pt;}
.h9{height:32.177950pt;}
.h11{height:35.380779pt;}
.he{height:35.493423pt;}
.h2{height:36.200346pt;}
.hd{height:37.884447pt;}
.h7{height:39.372195pt;}
.h6{height:40.222337pt;}
.h10{height:44.640000pt;}
.hf{height:46.545267pt;}
.hb{height:47.289141pt;}
.h1{height:48.077679pt;}
.ha{height:48.267127pt;}
.h5{height:54.639169pt;}
.h4{height:78.744786pt;}
.h3{height:80.445078pt;}
.h0{height:1056.000000pt;}
.w1{width:129.456000pt;}
.w0{width:816.000000pt;}
.x3f{left:-492.164680pt;}
.x40{left:-186.112840pt;}
.x0{left:0.000000pt;}
.x4{left:74.634667pt;}
.x5{left:75.590667pt;}
.x1{left:80.572000pt;}
.x2b{left:82.564000pt;}
.x2a{left:83.560000pt;}
.x6{left:84.557333pt;}
.x22{left:88.364000pt;}
.x31{left:93.592000pt;}
.x8{left:95.516000pt;}
.x1e{left:97.681333pt;}
.x1d{left:99.274667pt;}
.x32{left:101.037333pt;}
.x24{left:108.790667pt;}
.x10{left:113.477333pt;}
.x23{left:116.354667pt;}
.x33{left:117.640000pt;}
.x11{left:133.841333pt;}
.x39{left:135.074667pt;}
.x20{left:141.180000pt;}
.x21{left:147.821333pt;}
.xf{left:150.944000pt;}
.x36{left:158.502667pt;}
.x3a{left:166.308000pt;}
.x35{left:186.554667pt;}
.x7{left:188.490667pt;}
.x37{left:191.496000pt;}
.x1f{left:203.132000pt;}
.x2f{left:209.781333pt;}
.x2e{left:269.580000pt;}
.x38{left:306.298667pt;}
.xd{left:323.106667pt;}
.xe{left:329.749333pt;}
.x3b{left:350.500000pt;}
.x2{left:361.352000pt;}
.x3{left:381.424000pt;}
.x12{left:389.350667pt;}
.x13{left:395.992000pt;}
.x16{left:417.212000pt;}
.x9{left:418.393333pt;}
.xa{left:438.318667pt;}
.x3c{left:440.522667pt;}
.x2c{left:473.500000pt;}
.x2d{left:474.496000pt;}
.x3d{left:477.877333pt;}
.x28{left:492.730667pt;}
.x30{left:515.249333pt;}
.xb{left:519.566667pt;}
.xc{left:526.209333pt;}
.x27{left:527.301333pt;}
.x34{left:534.546667pt;}
.x25{left:537.536000pt;}
.x26{left:544.177333pt;}
.x29{left:546.558667pt;}
.x1c{left:562.690667pt;}
.x14{left:570.360000pt;}
.x15{left:577.001333pt;}
.x17{left:601.474667pt;}
.x18{left:608.117333pt;}
.x3e{left:610.954667pt;}
.x19{left:631.777333pt;}
.x1a{left:638.418667pt;}
.x1b{left:666.813333pt;}
}




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