
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_30a94343be5c9a03470d8de8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_ef1ecdc9c12b0ba67e877bdb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_c453938330a17c990b4a6436.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_76aee719b95ae7bdbe38e19a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.638000;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_01e741d1fd214f0a261894aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.040000;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;}
.m7{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);}
.m22{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);}
.m1f{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);}
.m20{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);}
.m25{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);}
.m27{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);}
.m1b{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);}
.m1a{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);}
.m17{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);}
.ma{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);}
.m29{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);}
.m8{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);}
.m19{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);}
.m26{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);}
.m4{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);}
.m28{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);}
.m1d{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);}
.m1{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);}
.m6{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);}
.m10{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);}
.md{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);}
.m23{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);}
.mb{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);}
.m5{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);}
.m1e{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);}
.me{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);}
.mc{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);}
.m16{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);}
.m13{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);}
.m1c{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);}
.m14{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);}
.m9{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);}
.m24{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);}
.m15{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);}
.m11{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);}
.m18{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);}
.m12{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);}
.m2{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);}
.m3{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);}
.mf{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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.002725px;}
.ls18{letter-spacing:0.004800px;}
.ls6{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.lsd{letter-spacing:10.938935px;}
.ls5{letter-spacing:11.960850px;}
.ls8{letter-spacing:12.971305px;}
.ls15{letter-spacing:13.448400px;}
.ls16{letter-spacing:13.454400px;}
.ls14{letter-spacing:13.595809px;}
.ls9{letter-spacing:14.764573px;}
.ls10{letter-spacing:14.824349px;}
.lsc{letter-spacing:14.943900px;}
.lsb{letter-spacing:15.063451px;}
.ls11{letter-spacing:15.242778px;}
.lsa{letter-spacing:16.318739px;}
.ls12{letter-spacing:16.498066px;}
.ls13{letter-spacing:18.231558px;}
.ls17{letter-spacing:18.232753px;}
.lsf{letter-spacing:21.220338px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.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;}
}
.ws5c{word-spacing:-14.943900px;}
.wsd0{word-spacing:-13.449600px;}
.ws2d{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.wsb4{word-spacing:-4.483170px;}
.ws5f{word-spacing:-4.004965px;}
.ws5e{word-spacing:-3.945190px;}
.ws33{word-spacing:-3.227882px;}
.ws76{word-spacing:-3.168107px;}
.wsa7{word-spacing:-3.108331px;}
.ws87{word-spacing:-3.048556px;}
.wsc7{word-spacing:-2.869229px;}
.wsa4{word-spacing:-2.809453px;}
.wse2{word-spacing:-2.636122px;}
.ws4d{word-spacing:-2.630126px;}
.wscc{word-spacing:-2.582323px;}
.wsbf{word-spacing:-2.450800px;}
.wsae{word-spacing:-2.391024px;}
.wscd{word-spacing:-2.367130px;}
.ws78{word-spacing:-2.211697px;}
.ws8a{word-spacing:-2.151922px;}
.wsb7{word-spacing:-2.092146px;}
.ws35{word-spacing:-2.032370px;}
.ws36{word-spacing:-1.972595px;}
.ws77{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.ws88{word-spacing:-1.853044px;}
.ws6e{word-spacing:-1.793268px;}
.ws86{word-spacing:-1.733492px;}
.ws80{word-spacing:-1.673717px;}
.ws79{word-spacing:-1.613941px;}
.ws21{word-spacing:-1.554166px;}
.ws85{word-spacing:-1.494390px;}
.ws8b{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws8c{word-spacing:-1.315063px;}
.ws96{word-spacing:-1.255288px;}
.ws5b{word-spacing:-1.195512px;}
.ws7{word-spacing:-1.171598px;}
.ws5d{word-spacing:-1.135736px;}
.ws60{word-spacing:-1.075961px;}
.ws9{word-spacing:-1.046070px;}
.ws4e{word-spacing:-1.016185px;}
.ws5a{word-spacing:-0.956410px;}
.wsd4{word-spacing:-0.914573px;}
.ws37{word-spacing:-0.896634px;}
.ws47{word-spacing:-0.836858px;}
.wsa1{word-spacing:-0.777083px;}
.ws6{word-spacing:-0.753170px;}
.wsc2{word-spacing:-0.717307px;}
.ws6c{word-spacing:-0.597756px;}
.ws75{word-spacing:-0.537980px;}
.wsc5{word-spacing:-0.478205px;}
.wsdf{word-spacing:-0.430387px;}
.wsbc{word-spacing:-0.418429px;}
.ws41{word-spacing:-0.358654px;}
.ws14{word-spacing:-0.322790px;}
.ws2f{word-spacing:-0.298878px;}
.ws1b{word-spacing:-0.268992px;}
.ws3b{word-spacing:-0.239102px;}
.wscf{word-spacing:-0.215194px;}
.ws26{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.wse4{word-spacing:-0.107597px;}
.ws24{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.053798px;}
.wsdc{word-spacing:-0.009859px;}
.wse5{word-spacing:-0.009610px;}
.wse0{word-spacing:-0.007267px;}
.wsd2{word-spacing:-0.006221px;}
.wsde{word-spacing:-0.004675px;}
.wsd6{word-spacing:-0.004051px;}
.wsd8{word-spacing:-0.004022px;}
.wsdb{word-spacing:-0.003610px;}
.ws2c{word-spacing:-0.002857px;}
.wse3{word-spacing:-0.001267px;}
.wsdd{word-spacing:-0.000221px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:0.000506px;}
.ws13{word-spacing:0.053798px;}
.ws28{word-spacing:0.059776px;}
.ws17{word-spacing:0.107597px;}
.ws27{word-spacing:0.119551px;}
.ws68{word-spacing:0.161395px;}
.ws48{word-spacing:0.179327px;}
.ws67{word-spacing:0.215194px;}
.ws25{word-spacing:0.239102px;}
.ws1e{word-spacing:0.268992px;}
.ws58{word-spacing:0.298878px;}
.ws3f{word-spacing:0.358654px;}
.ws51{word-spacing:0.418429px;}
.wsd3{word-spacing:0.430387px;}
.wsa9{word-spacing:0.478205px;}
.ws8d{word-spacing:0.537980px;}
.ws3e{word-spacing:0.597756px;}
.ws16{word-spacing:0.645581px;}
.ws69{word-spacing:0.657532px;}
.ws2e{word-spacing:0.717307px;}
.ws29{word-spacing:0.777083px;}
.ws6b{word-spacing:0.836858px;}
.ws6f{word-spacing:0.896634px;}
.ws2a{word-spacing:0.956410px;}
.ws8{word-spacing:1.004227px;}
.wsc8{word-spacing:1.016185px;}
.ws55{word-spacing:1.075961px;}
.wsb2{word-spacing:1.135736px;}
.wsc9{word-spacing:1.195512px;}
.ws32{word-spacing:1.255288px;}
.ws46{word-spacing:1.315063px;}
.ws42{word-spacing:1.374839px;}
.ws53{word-spacing:1.434614px;}
.ws70{word-spacing:1.494390px;}
.ws49{word-spacing:1.554166px;}
.ws62{word-spacing:1.613941px;}
.ws4a{word-spacing:1.733492px;}
.wsa5{word-spacing:1.793268px;}
.ws50{word-spacing:1.853044px;}
.wsd5{word-spacing:1.882944px;}
.ws7c{word-spacing:1.912819px;}
.ws9f{word-spacing:1.972595px;}
.ws7d{word-spacing:2.032370px;}
.wsbd{word-spacing:2.092146px;}
.ws74{word-spacing:2.151922px;}
.wsa2{word-spacing:2.211697px;}
.wsca{word-spacing:2.271473px;}
.wsb3{word-spacing:2.331248px;}
.ws71{word-spacing:2.391024px;}
.ws63{word-spacing:2.450800px;}
.ws93{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws89{word-spacing:2.570351px;}
.wsd1{word-spacing:2.582323px;}
.ws56{word-spacing:2.630126px;}
.ws1c{word-spacing:2.636122px;}
.ws3d{word-spacing:2.689902px;}
.wsb8{word-spacing:2.809453px;}
.wsb0{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.ws92{word-spacing:2.929004px;}
.ws3c{word-spacing:3.048556px;}
.ws9d{word-spacing:3.108331px;}
.wse1{word-spacing:3.120307px;}
.wsc6{word-spacing:3.168107px;}
.ws15{word-spacing:3.174106px;}
.ws1f{word-spacing:3.219667px;}
.ws4f{word-spacing:3.227882px;}
.wsd7{word-spacing:3.227904px;}
.ws4b{word-spacing:3.287658px;}
.ws3a{word-spacing:3.347434px;}
.ws1d{word-spacing:3.389299px;}
.ws30{word-spacing:3.407209px;}
.ws6a{word-spacing:3.466985px;}
.ws31{word-spacing:3.526760px;}
.ws20{word-spacing:3.586536px;}
.ws72{word-spacing:3.646312px;}
.ws8e{word-spacing:3.706087px;}
.wsda{word-spacing:3.765888px;}
.ws9e{word-spacing:3.825638px;}
.ws64{word-spacing:3.885414px;}
.ws7e{word-spacing:3.945190px;}
.wsce{word-spacing:3.981082px;}
.ws8f{word-spacing:4.004965px;}
.wsc1{word-spacing:4.064741px;}
.ws94{word-spacing:4.124516px;}
.wsc0{word-spacing:4.303843px;}
.ws2b{word-spacing:4.423394px;}
.wsb6{word-spacing:4.519066px;}
.ws90{word-spacing:4.602721px;}
.ws57{word-spacing:4.722272px;}
.wsf{word-spacing:4.770079px;}
.wsd9{word-spacing:4.788058px;}
.ws43{word-spacing:4.841824px;}
.ws10{word-spacing:4.853765px;}
.wsb5{word-spacing:4.895654px;}
.ws91{word-spacing:4.901599px;}
.ws9a{word-spacing:4.949453px;}
.wsb9{word-spacing:5.021150px;}
.wsa8{word-spacing:5.140702px;}
.ws95{word-spacing:5.260253px;}
.wsba{word-spacing:5.320028px;}
.ws19{word-spacing:5.326042px;}
.wsbb{word-spacing:5.379804px;}
.ws45{word-spacing:5.439580px;}
.wsad{word-spacing:5.499355px;}
.wsbe{word-spacing:5.559131px;}
.ws7f{word-spacing:5.618906px;}
.ws23{word-spacing:5.678682px;}
.wsc4{word-spacing:5.738458px;}
.ws81{word-spacing:5.798233px;}
.ws61{word-spacing:5.858009px;}
.ws52{word-spacing:6.037336px;}
.ws40{word-spacing:6.156887px;}
.ws7a{word-spacing:6.276438px;}
.ws73{word-spacing:6.395989px;}
.wscb{word-spacing:6.575316px;}
.ws59{word-spacing:6.635092px;}
.ws99{word-spacing:6.671002px;}
.wsa0{word-spacing:6.694867px;}
.ws7b{word-spacing:6.814418px;}
.ws34{word-spacing:6.874194px;}
.ws54{word-spacing:6.933970px;}
.ws6d{word-spacing:7.053521px;}
.ws4c{word-spacing:7.113296px;}
.wsab{word-spacing:7.232848px;}
.ws44{word-spacing:7.412174px;}
.wsb1{word-spacing:7.591501px;}
.ws84{word-spacing:7.651277px;}
.wsa6{word-spacing:7.711052px;}
.ws38{word-spacing:7.770828px;}
.wsd{word-spacing:7.782761px;}
.ws83{word-spacing:8.129482px;}
.wsaf{word-spacing:8.308808px;}
.ws82{word-spacing:8.428360px;}
.wsc3{word-spacing:8.488135px;}
.ws65{word-spacing:8.547911px;}
.ws39{word-spacing:9.803198px;}
.wsb{word-spacing:12.176255px;}
.wsc{word-spacing:16.109478px;}
.ws97{word-spacing:16.892698px;}
.ws9b{word-spacing:17.430682px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.wsac{word-spacing:78.596400px;}
.wsaa{word-spacing:81.590400px;}
.ws98{word-spacing:117.172915px;}
.ws9c{word-spacing:118.033690px;}
.wsa3{word-spacing:119.540045px;}
.ws66{word-spacing:1044.518834px;}
._1d{margin-left:-7.524158px;}
._d{margin-left:-6.294413px;}
._8{margin-left:-5.260266px;}
._9{margin-left:-3.985456px;}
._1b{margin-left:-2.472739px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._1c{width:4.032893px;}
._5{width:11.398711px;}
._2{width:12.970952px;}
._10{width:14.712365px;}
._a{width:16.354714px;}
._f{width:17.940247px;}
._b{width:19.098432px;}
._11{width:20.947002px;}
._15{width:22.953830px;}
._19{width:24.328669px;}
._3{width:25.943736px;}
._17{width:27.197911px;}
._1e{width:28.214083px;}
._14{width:29.290044px;}
._6{width:30.587087px;}
._c{width:32.386637px;}
._1f{width:34.550310px;}
._e{width:35.828286px;}
._18{width:37.546644px;}
._2a{width:39.364193px;}
._1a{width:40.415886px;}
._16{width:42.321125px;}
._2d{width:44.062184px;}
._22{width:50.359677px;}
._7{width:55.116313px;}
._2f{width:61.868160px;}
._2c{width:71.713267px;}
._21{width:81.934963px;}
._2e{width:88.767360px;}
._20{width:93.609216px;}
._25{width:97.375104px;}
._24{width:123.090739px;}
._26{width:130.622515px;}
._28{width:138.154291px;}
._29{width:144.879091px;}
._23{width:162.847757px;}
._27{width:170.433331px;}
._12{width:1026.722862px;}
._2b{width:2533.412700px;}
._13{width:2557.322700px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(54,121,123);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1c{bottom:16.015847px;}
.y4b{bottom:31.890000px;}
.ycf{bottom:88.468500px;}
.y14a{bottom:91.665000px;}
.yc0{bottom:93.900000px;}
.y215{bottom:95.722500px;}
.y1b5{bottom:97.719000px;}
.y157{bottom:98.470500px;}
.y284{bottom:99.616500px;}
.y24b{bottom:101.454000px;}
.y1e4{bottom:102.517500px;}
.y234{bottom:103.156500px;}
.y4a{bottom:103.621500px;}
.y1a{bottom:104.646000px;}
.y127{bottom:105.847500px;}
.y240{bottom:107.641500px;}
.y1ee{bottom:108.961500px;}
.y149{bottom:110.494500px;}
.ybf{bottom:112.729500px;}
.y214{bottom:114.552000px;}
.y283{bottom:116.877000px;}
.y1cb{bottom:120.946500px;}
.yf8{bottom:121.054500px;}
.y1e3{bottom:121.347000px;}
.y233{bottom:121.986000px;}
.y49{bottom:122.449500px;}
.y19{bottom:122.535000px;}
.y126{bottom:124.677000px;}
.y102{bottom:125.125500px;}
.y80{bottom:126.022500px;}
.y23f{bottom:126.471000px;}
.y1a7{bottom:127.098000px;}
.y1ed{bottom:127.791000px;}
.y24a{bottom:127.995000px;}
.y148{bottom:129.324000px;}
.ybe{bottom:131.559000px;}
.y213{bottom:133.381500px;}
.y282{bottom:134.137500px;}
.y1ca{bottom:139.776000px;}
.yf7{bottom:139.884000px;}
.y1e2{bottom:140.176500px;}
.y18{bottom:140.422500px;}
.y232{bottom:140.815500px;}
.y48{bottom:141.279000px;}
.y125{bottom:143.506500px;}
.y101{bottom:143.955000px;}
.ya2{bottom:144.403500px;}
.y7f{bottom:144.852000px;}
.y23e{bottom:145.300500px;}
.y249{bottom:145.569000px;}
.y1a6{bottom:145.927500px;}
.y1ec{bottom:146.619000px;}
.y147{bottom:148.153500px;}
.ybd{bottom:150.388500px;}
.y281{bottom:151.398000px;}
.y212{bottom:152.211000px;}
.y17{bottom:158.310000px;}
.y1c9{bottom:158.605500px;}
.yf6{bottom:158.713500px;}
.y1e1{bottom:159.006000px;}
.y231{bottom:159.645000px;}
.y47{bottom:160.108500px;}
.y202{bottom:160.699500px;}
.y124{bottom:162.336000px;}
.y100{bottom:162.784500px;}
.y248{bottom:163.143000px;}
.ya1{bottom:163.233000px;}
.y7e{bottom:163.681500px;}
.y23d{bottom:164.130000px;}
.y1a5{bottom:164.757000px;}
.y1eb{bottom:165.448500px;}
.y146{bottom:166.983000px;}
.y280{bottom:168.657000px;}
.ybc{bottom:169.218000px;}
.y16{bottom:176.199000px;}
.y177{bottom:177.130500px;}
.y1c8{bottom:177.435000px;}
.yf5{bottom:177.543000px;}
.y1e0{bottom:177.835500px;}
.y230{bottom:178.474500px;}
.y46{bottom:178.938000px;}
.y247{bottom:180.717000px;}
.y123{bottom:181.165500px;}
.yff{bottom:181.614000px;}
.ya0{bottom:182.062500px;}
.y7d{bottom:182.511000px;}
.y23c{bottom:182.959500px;}
.y1a4{bottom:183.586500px;}
.y211{bottom:185.776500px;}
.y145{bottom:185.812500px;}
.y27f{bottom:185.917500px;}
.y1ea{bottom:188.761500px;}
.y15{bottom:194.086500px;}
.y176{bottom:195.960000px;}
.yf4{bottom:196.372500px;}
.y1df{bottom:196.665000px;}
.y22f{bottom:197.304000px;}
.y45{bottom:197.767500px;}
.y246{bottom:198.291000px;}
.y122{bottom:199.995000px;}
.y1c7{bottom:200.748000px;}
.y9f{bottom:200.892000px;}
.y7c{bottom:201.340500px;}
.y23b{bottom:201.789000px;}
.y1a3{bottom:202.416000px;}
.ybb{bottom:202.783500px;}
.y27e{bottom:203.178000px;}
.y144{bottom:204.642000px;}
.yfe{bottom:204.927000px;}
.y14{bottom:211.974000px;}
.y175{bottom:214.789500px;}
.y1de{bottom:215.494500px;}
.y22e{bottom:216.133500px;}
.y44{bottom:216.597000px;}
.y121{bottom:218.824500px;}
.yf3{bottom:219.685500px;}
.y9e{bottom:219.721500px;}
.y7b{bottom:220.170000px;}
.y27d{bottom:220.438500px;}
.y23a{bottom:220.618500px;}
.y1a2{bottom:221.245500px;}
.yba{bottom:222.016500px;}
.y1e9{bottom:222.385500px;}
.y143{bottom:223.471500px;}
.y245{bottom:224.832000px;}
.y13{bottom:229.863000px;}
.y1c6{bottom:231.175500px;}
.y174{bottom:233.619000px;}
.y1dd{bottom:234.324000px;}
.y22d{bottom:234.961500px;}
.y43{bottom:235.426500px;}
.y120{bottom:237.654000px;}
.y27c{bottom:237.699000px;}
.y9d{bottom:238.551000px;}
.y7a{bottom:238.999500px;}
.y239{bottom:239.446500px;}
.y1a1{bottom:240.075000px;}
.y1e8{bottom:241.215000px;}
.yb9{bottom:241.249500px;}
.y142{bottom:242.301000px;}
.y244{bottom:242.406000px;}
.y1c5{bottom:250.408500px;}
.y173{bottom:252.448500px;}
.y1dc{bottom:253.153500px;}
.yf2{bottom:253.309500px;}
.y22c{bottom:253.791000px;}
.y42{bottom:254.256000px;}
.y27b{bottom:254.959500px;}
.y11f{bottom:256.483500px;}
.y9c{bottom:257.380500px;}
.y79{bottom:257.829000px;}
.y238{bottom:258.276000px;}
.y1a0{bottom:258.904500px;}
.y243{bottom:259.980000px;}
.y1e7{bottom:260.044500px;}
.y141{bottom:261.130500px;}
.yb8{bottom:269.059500px;}
.y172{bottom:271.278000px;}
.y1db{bottom:271.983000px;}
.yf1{bottom:272.139000px;}
.y27a{bottom:272.220000px;}
.y22b{bottom:272.620500px;}
.y41{bottom:273.085500px;}
.y11e{bottom:275.313000px;}
.yfd{bottom:276.210000px;}
.y78{bottom:276.658500px;}
.y237{bottom:277.105500px;}
.y19f{bottom:277.734000px;}
.y140{bottom:279.960000px;}
.y9b{bottom:280.693500px;}
.y279{bottom:289.480500px;}
.y171{bottom:290.107500px;}
.yf0{bottom:290.968500px;}
.y22a{bottom:291.450000px;}
.y40{bottom:291.915000px;}
.y1e6{bottom:293.610000px;}
.y11d{bottom:294.142500px;}
.yfc{bottom:295.039500px;}
.y1da{bottom:295.296000px;}
.y242{bottom:295.488000px;}
.y1f3{bottom:295.759500px;}
.y236{bottom:295.935000px;}
.y13f{bottom:298.789500px;}
.y77{bottom:299.970000px;}
.y12{bottom:300.154500px;}
.y19e{bottom:301.045500px;}
.y184{bottom:302.509500px;}
.y278{bottom:306.739500px;}
.y170{bottom:308.937000px;}
.yef{bottom:309.798000px;}
.y229{bottom:310.279500px;}
.y3f{bottom:310.744500px;}
.y11c{bottom:312.972000px;}
.yfb{bottom:313.869000px;}
.y9a{bottom:314.317500px;}
.y1f2{bottom:314.589000px;}
.y235{bottom:314.764500px;}
.y13e{bottom:317.619000px;}
.y11{bottom:318.043500px;}
.y277{bottom:324.000000px;}
.y16f{bottom:327.766500px;}
.yee{bottom:328.627500px;}
.y1d9{bottom:328.920000px;}
.y228{bottom:329.109000px;}
.y3e{bottom:329.574000px;}
.y11b{bottom:331.801500px;}
.y99{bottom:333.145500px;}
.y1f1{bottom:333.418500px;}
.y76{bottom:333.594000px;}
.y19d{bottom:334.669500px;}
.y10{bottom:335.931000px;}
.y13d{bottom:336.448500px;}
.yfa{bottom:337.180500px;}
.y276{bottom:341.260500px;}
.y16e{bottom:346.596000px;}
.yed{bottom:347.457000px;}
.y1d8{bottom:347.748000px;}
.y227{bottom:347.938500px;}
.y3d{bottom:348.403500px;}
.y11a{bottom:350.631000px;}
.y98{bottom:351.975000px;}
.y1f0{bottom:352.248000px;}
.y75{bottom:352.423500px;}
.y19c{bottom:353.499000px;}
.yf{bottom:353.818500px;}
.y13c{bottom:355.278000px;}
.y275{bottom:358.521000px;}
.y16d{bottom:365.425500px;}
.yec{bottom:366.286500px;}
.y1d7{bottom:366.577500px;}
.y226{bottom:366.768000px;}
.y3c{bottom:367.233000px;}
.y119{bottom:369.460500px;}
.y97{bottom:370.804500px;}
.y74{bottom:371.253000px;}
.y19b{bottom:372.328500px;}
.y13b{bottom:374.107500px;}
.y274{bottom:375.781500px;}
.ye{bottom:380.673000px;}
.y16c{bottom:384.255000px;}
.yeb{bottom:385.116000px;}
.y1d6{bottom:385.407000px;}
.y225{bottom:385.597500px;}
.y1ef{bottom:385.813500px;}
.y3b{bottom:386.062500px;}
.y118{bottom:388.290000px;}
.y96{bottom:389.634000px;}
.y73{bottom:390.082500px;}
.y13a{bottom:392.937000px;}
.y273{bottom:393.042000px;}
.y19a{bottom:395.641500px;}
.yd{bottom:398.562000px;}
.yea{bottom:403.945500px;}
.y1d5{bottom:404.236500px;}
.y224{bottom:404.427000px;}
.y3a{bottom:404.892000px;}
.y117{bottom:407.119500px;}
.y16b{bottom:407.568000px;}
.y95{bottom:408.463500px;}
.y72{bottom:408.912000px;}
.y272{bottom:410.302500px;}
.y139{bottom:411.766500px;}
.yc{bottom:416.449500px;}
.ye9{bottom:422.775000px;}
.y1d4{bottom:423.066000px;}
.y223{bottom:423.256500px;}
.y39{bottom:423.721500px;}
.y116{bottom:425.949000px;}
.y94{bottom:427.293000px;}
.y271{bottom:427.563000px;}
.y71{bottom:427.741500px;}
.y199{bottom:429.265500px;}
.y138{bottom:430.596000px;}
.y16a{bottom:441.192000px;}
.y1d3{bottom:441.895500px;}
.y222{bottom:442.086000px;}
.y115{bottom:444.778500px;}
.yb{bottom:444.798000px;}
.y270{bottom:444.823500px;}
.ye8{bottom:446.086500px;}
.y93{bottom:446.122500px;}
.y70{bottom:446.571000px;}
.y38{bottom:447.034500px;}
.y198{bottom:448.095000px;}
.y137{bottom:449.425500px;}
.y169{bottom:460.021500px;}
.y1d2{bottom:460.725000px;}
.y221{bottom:460.915500px;}
.y26f{bottom:462.082500px;}
.y114{bottom:463.608000px;}
.y92{bottom:464.952000px;}
.y6f{bottom:465.400500px;}
.y197{bottom:466.924500px;}
.y136{bottom:468.255000px;}
.ya{bottom:471.652500px;}
.y1b4{bottom:471.820500px;}
.y168{bottom:478.851000px;}
.y26e{bottom:479.343000px;}
.y1d1{bottom:479.554500px;}
.ye7{bottom:479.710500px;}
.y220{bottom:479.745000px;}
.y91{bottom:483.781500px;}
.y6e{bottom:484.230000px;}
.y196{bottom:485.754000px;}
.y113{bottom:486.919500px;}
.y135{bottom:487.084500px;}
.y9{bottom:489.540000px;}
.yb7{bottom:490.380000px;}
.y1b3{bottom:490.650000px;}
.y26d{bottom:496.603500px;}
.y167{bottom:497.680500px;}
.y1d0{bottom:498.384000px;}
.ye6{bottom:498.540000px;}
.y21f{bottom:498.574500px;}
.y90{bottom:502.611000px;}
.y6d{bottom:503.059500px;}
.y195{bottom:504.583500px;}
.y8{bottom:507.429000px;}
.yb6{bottom:509.209500px;}
.y1b2{bottom:509.479500px;}
.y134{bottom:510.396000px;}
.y26c{bottom:513.864000px;}
.y1cf{bottom:517.213500px;}
.ye5{bottom:517.369500px;}
.y21e{bottom:517.404000px;}
.y201{bottom:518.595000px;}
.y112{bottom:520.543500px;}
.y166{bottom:520.992000px;}
.y8f{bottom:521.440500px;}
.y6c{bottom:521.889000px;}
.y37{bottom:522.184500px;}
.y210{bottom:522.679500px;}
.y194{bottom:523.413000px;}
.y7{bottom:525.316500px;}
.yb5{bottom:528.039000px;}
.y1b1{bottom:528.309000px;}
.y26b{bottom:531.124500px;}
.y1ce{bottom:536.043000px;}
.ye4{bottom:536.199000px;}
.y21d{bottom:536.233500px;}
.y200{bottom:537.424500px;}
.y111{bottom:539.373000px;}
.y8e{bottom:540.270000px;}
.y6b{bottom:540.718500px;}
.y20f{bottom:541.509000px;}
.y193{bottom:542.242500px;}
.y6{bottom:543.204000px;}
.yb4{bottom:546.868500px;}
.y1b0{bottom:547.138500px;}
.y26a{bottom:548.385000px;}
.y156{bottom:550.578000px;}
.y133{bottom:552.720000px;}
.y165{bottom:554.616000px;}
.y1cd{bottom:554.872500px;}
.ye3{bottom:555.028500px;}
.y21c{bottom:555.063000px;}
.y1ff{bottom:556.254000px;}
.y110{bottom:558.202500px;}
.y8d{bottom:559.099500px;}
.y6a{bottom:559.548000px;}
.y36{bottom:559.573500px;}
.y20e{bottom:560.338500px;}
.y131{bottom:560.940000px;}
.y192{bottom:561.072000px;}
.y5{bottom:561.093000px;}
.y269{bottom:565.645500px;}
.yb3{bottom:565.698000px;}
.y1af{bottom:565.968000px;}
.y155{bottom:567.016500px;}
.y132{bottom:569.158500px;}
.y164{bottom:573.445500px;}
.ye2{bottom:573.858000px;}
.y1fe{bottom:575.083500px;}
.y10f{bottom:577.032000px;}
.y8c{bottom:577.929000px;}
.y21b{bottom:578.376000px;}
.y69{bottom:578.377500px;}
.y4{bottom:578.980500px;}
.y35{bottom:579.031500px;}
.y20d{bottom:579.168000px;}
.y191{bottom:579.901500px;}
.y268{bottom:582.906000px;}
.y154{bottom:583.455000px;}
.y1ae{bottom:584.797500px;}
.y1cc{bottom:588.438000px;}
.yb2{bottom:589.011000px;}
.y163{bottom:592.275000px;}
.ye1{bottom:592.687500px;}
.y130{bottom:593.098500px;}
.y1fd{bottom:593.913000px;}
.y10e{bottom:595.861500px;}
.y8b{bottom:596.758500px;}
.y1{bottom:596.868055px;}
.y68{bottom:597.207000px;}
.y20c{bottom:597.997500px;}
.y34{bottom:598.488000px;}
.y190{bottom:598.731000px;}
.y153{bottom:599.893500px;}
.y266{bottom:600.165000px;}
.y267{bottom:600.166500px;}
.y183{bottom:600.246000px;}
.y1ad{bottom:603.627000px;}
.y12f{bottom:609.537000px;}
.y162{bottom:611.104500px;}
.ye0{bottom:611.517000px;}
.y21a{bottom:612.000000px;}
.y1fc{bottom:612.742500px;}
.y10d{bottom:614.691000px;}
.y8a{bottom:615.588000px;}
.y67{bottom:616.036500px;}
.y152{bottom:616.332000px;}
.y20b{bottom:616.827000px;}
.y265{bottom:617.425500px;}
.y18f{bottom:617.560500px;}
.y33{bottom:617.944500px;}
.y182{bottom:619.075500px;}
.y1ac{bottom:622.456500px;}
.yb1{bottom:622.635000px;}
.y1c4{bottom:629.485500px;}
.y161{bottom:629.934000px;}
.ydf{bottom:630.346500px;}
.y219{bottom:630.829500px;}
.y1fb{bottom:631.572000px;}
.y151{bottom:632.770500px;}
.y12e{bottom:633.475500px;}
.y10c{bottom:633.520500px;}
.y89{bottom:634.417500px;}
.y264{bottom:634.686000px;}
.y66{bottom:634.866000px;}
.y20a{bottom:635.656500px;}
.y32{bottom:637.402500px;}
.y181{bottom:637.905000px;}
.y1ab{bottom:641.286000px;}
.yb0{bottom:641.464500px;}
.y18e{bottom:643.861500px;}
.y1c3{bottom:648.315000px;}
.y160{bottom:648.763500px;}
.y150{bottom:649.209000px;}
.y218{bottom:649.657500px;}
.y12c{bottom:649.914000px;}
.y1fa{bottom:650.401500px;}
.y263{bottom:651.946500px;}
.y88{bottom:653.247000px;}
.y65{bottom:653.695500px;}
.y209{bottom:654.486000px;}
.y180{bottom:656.734500px;}
.y10b{bottom:656.833500px;}
.y31{bottom:656.859000px;}
.y1aa{bottom:660.115500px;}
.yaf{bottom:660.294000px;}
.y18d{bottom:662.691000px;}
.yde{bottom:663.912000px;}
.y14f{bottom:665.647500px;}
.y12d{bottom:666.352500px;}
.y1c2{bottom:667.144500px;}
.y15f{bottom:667.593000px;}
.y1e5{bottom:667.887000px;}
.y217{bottom:668.487000px;}
.y262{bottom:669.207000px;}
.y1f9{bottom:669.231000px;}
.y87{bottom:672.076500px;}
.y64{bottom:672.525000px;}
.y208{bottom:673.315500px;}
.y17f{bottom:675.564000px;}
.y30{bottom:676.315500px;}
.yae{bottom:679.123500px;}
.y18c{bottom:681.520500px;}
.y14e{bottom:682.086000px;}
.y1a9{bottom:683.427000px;}
.y1c1{bottom:685.974000px;}
.y15e{bottom:686.422500px;}
.y261{bottom:686.467500px;}
.y1f8{bottom:688.060500px;}
.y12b{bottom:690.292500px;}
.y10a{bottom:690.457500px;}
.y86{bottom:690.906000px;}
.y63{bottom:691.354500px;}
.y207{bottom:692.145000px;}
.y17e{bottom:694.392000px;}
.y2f{bottom:695.773500px;}
.yad{bottom:697.953000px;}
.y18b{bottom:700.350000px;}
.y216{bottom:702.054000px;}
.y260{bottom:703.728000px;}
.y1c0{bottom:704.803500px;}
.y15d{bottom:705.252000px;}
.y14d{bottom:706.024500px;}
.y1f7{bottom:706.890000px;}
.y109{bottom:709.287000px;}
.y85{bottom:709.735500px;}
.y62{bottom:710.184000px;}
.y206{bottom:710.974500px;}
.y17d{bottom:713.221500px;}
.y1a8{bottom:713.854500px;}
.y12a{bottom:714.232500px;}
.y2e{bottom:715.230000px;}
.yac{bottom:716.782500px;}
.y18a{bottom:719.179500px;}
.y25f{bottom:720.988500px;}
.y1bf{bottom:723.633000px;}
.y1f6{bottom:725.719500px;}
.y108{bottom:728.116500px;}
.y84{bottom:728.565000px;}
.y61{bottom:729.013500px;}
.y205{bottom:729.802500px;}
.y17c{bottom:732.051000px;}
.y2d{bottom:734.688000px;}
.yab{bottom:735.612000px;}
.y14c{bottom:737.644500px;}
.y189{bottom:738.009000px;}
.y129{bottom:738.171000px;}
.y25e{bottom:738.249000px;}
.y1be{bottom:742.462500px;}
.y107{bottom:746.946000px;}
.y83{bottom:747.394500px;}
.y60{bottom:747.843000px;}
.y1f5{bottom:749.032500px;}
.y17b{bottom:750.880500px;}
.y204{bottom:753.115500px;}
.y2c{bottom:754.144500px;}
.yaa{bottom:754.441500px;}
.y25d{bottom:755.508000px;}
.y188{bottom:756.838500px;}
.y1bd{bottom:761.292000px;}
.y15c{bottom:762.189000px;}
.y106{bottom:765.775500px;}
.y82{bottom:766.224000px;}
.y5f{bottom:766.671000px;}
.y17a{bottom:769.710000px;}
.y128{bottom:769.791000px;}
.y25c{bottom:772.768500px;}
.ya9{bottom:773.269500px;}
.y2b{bottom:773.601000px;}
.y187{bottom:775.668000px;}
.y14b{bottom:776.304000px;}
.y1f4{bottom:779.460000px;}
.y1bc{bottom:780.121500px;}
.y15b{bottom:781.018500px;}
.y203{bottom:783.543000px;}
.y105{bottom:784.605000px;}
.yce{bottom:785.053500px;}
.y5e{bottom:785.500500px;}
.y179{bottom:788.539500px;}
.y81{bottom:789.535500px;}
.y25b{bottom:790.029000px;}
.ya8{bottom:792.099000px;}
.y2a{bottom:793.059000px;}
.y186{bottom:798.979500px;}
.y15a{bottom:799.848000px;}
.y1bb{bottom:803.434500px;}
.ycd{bottom:803.883000px;}
.y5d{bottom:804.330000px;}
.y25a{bottom:807.289500px;}
.y104{bottom:807.918000px;}
.ya7{bottom:810.928500px;}
.y29{bottom:812.515500px;}
.y159{bottom:818.677500px;}
.y178{bottom:822.105000px;}
.ycc{bottom:822.712500px;}
.y5c{bottom:823.159500px;}
.y259{bottom:824.550000px;}
.y185{bottom:829.407000px;}
.ya6{bottom:829.758000px;}
.y28{bottom:831.972000px;}
.y1ba{bottom:837.058500px;}
.y158{bottom:837.507000px;}
.ycb{bottom:841.540500px;}
.y258{bottom:841.810500px;}
.y5b{bottom:841.989000px;}
.ya5{bottom:848.587500px;}
.y27{bottom:851.430000px;}
.y1b9{bottom:855.888000px;}
.ydd{bottom:856.335000px;}
.y257{bottom:859.071000px;}
.yca{bottom:860.370000px;}
.y5a{bottom:860.818500px;}
.y1b8{bottom:874.717500px;}
.ydc{bottom:875.164500px;}
.y256{bottom:876.331500px;}
.yc9{bottom:879.199500px;}
.y59{bottom:879.648000px;}
.ya4{bottom:882.153000px;}
.y26{bottom:887.034000px;}
.y1b7{bottom:893.547000px;}
.y255{bottom:893.592000px;}
.ydb{bottom:893.994000px;}
.yc8{bottom:898.029000px;}
.y58{bottom:898.477500px;}
.ya3{bottom:901.386000px;}
.y25{bottom:903.174000px;}
.y254{bottom:910.851000px;}
.y1b6{bottom:912.376500px;}
.yd9{bottom:912.823500px;}
.yc7{bottom:916.858500px;}
.y57{bottom:917.307000px;}
.yda{bottom:918.249000px;}
.y24{bottom:923.653500px;}
.y253{bottom:928.111500px;}
.yd8{bottom:931.653000px;}
.y23{bottom:935.452500px;}
.yc6{bottom:935.688000px;}
.y56{bottom:936.136500px;}
.y252{bottom:945.372000px;}
.yd7{bottom:950.482500px;}
.yc5{bottom:954.517500px;}
.y55{bottom:954.966000px;}
.y22{bottom:955.932000px;}
.y103{bottom:959.001000px;}
.y251{bottom:962.632500px;}
.yd6{bottom:969.312000px;}
.y21{bottom:972.072000px;}
.yc4{bottom:973.347000px;}
.y54{bottom:973.795500px;}
.y241{bottom:977.830500px;}
.y250{bottom:979.893000px;}
.yd5{bottom:988.141500px;}
.yc3{bottom:992.176500px;}
.y53{bottom:992.625000px;}
.y20{bottom:994.341000px;}
.yf9{bottom:996.660000px;}
.y24f{bottom:997.153500px;}
.yd4{bottom:1006.971000px;}
.yc2{bottom:1011.006000px;}
.y52{bottom:1011.454500px;}
.y24e{bottom:1018.896000px;}
.yd3{bottom:1025.800500px;}
.y51{bottom:1030.284000px;}
.yc1{bottom:1034.319000px;}
.y1f{bottom:1037.080500px;}
.yd2{bottom:1044.630000px;}
.y50{bottom:1049.113500px;}
.y24d{bottom:1052.520000px;}
.y287{bottom:1053.820500px;}
.yd1{bottom:1063.459500px;}
.y1e{bottom:1065.324000px;}
.y4f{bottom:1067.943000px;}
.y286{bottom:1071.081000px;}
.y24c{bottom:1079.061000px;}
.yd0{bottom:1082.289000px;}
.y4e{bottom:1086.772500px;}
.y285{bottom:1088.341500px;}
.y1d{bottom:1093.569000px;}
.y4d{bottom:1105.602000px;}
.y1b{bottom:1137.055500px;}
.y4c{bottom:1168.366500px;}
.h14{height:16.817382px;}
.h2{height:25.508090px;}
.hc{height:26.110157px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h13{height:33.072749px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.hd{height:34.813397px;}
.h12{height:35.052500px;}
.he{height:38.896243px;}
.hf{height:39.165235px;}
.h15{height:39.434227px;}
.h10{height:43.217759px;}
.h11{height:43.516637px;}
.h9{height:43.815515px;}
.h7{height:50.930649px;}
.hb{height:54.541601px;}
.ha{height:77.792486px;}
.h8{height:94.491000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:58.555600px;}
.x50{left:85.848000px;}
.x2d{left:247.348500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x3c{left:258.556500px;}
.x39{left:261.475500px;}
.x5{left:269.914500px;}
.x13{left:271.525500px;}
.x3a{left:274.926000px;}
.x14{left:278.997000px;}
.x8{left:281.479500px;}
.x40{left:283.735500px;}
.x22{left:306.795000px;}
.x7{left:308.155500px;}
.x24{left:311.637000px;}
.x25{left:318.361500px;}
.xf{left:341.611500px;}
.x10{left:349.083000px;}
.x35{left:360.958500px;}
.x23{left:367.707000px;}
.xb{left:375.448500px;}
.x30{left:377.554500px;}
.x33{left:380.287500px;}
.xc{left:382.920000px;}
.x3f{left:384.652500px;}
.x37{left:387.202500px;}
.x4f{left:389.743500px;}
.x31{left:392.499000px;}
.x4d{left:394.150500px;}
.x34{left:395.232000px;}
.x38{left:402.147000px;}
.x4e{left:407.103000px;}
.x36{left:410.047500px;}
.x42{left:431.137500px;}
.x4a{left:433.270500px;}
.x1e{left:444.111000px;}
.x3d{left:445.171500px;}
.x2e{left:453.966000px;}
.x3e{left:457.956000px;}
.x1f{left:459.055500px;}
.x2f{left:468.910500px;}
.x3b{left:488.139000px;}
.x43{left:507.124500px;}
.x41{left:519.781500px;}
.x32{left:527.367000px;}
.x26{left:534.367500px;}
.x9{left:537.645000px;}
.x27{left:542.584500px;}
.xa{left:545.118000px;}
.x4b{left:571.537500px;}
.x15{left:580.300500px;}
.x4c{left:584.313000px;}
.x16{left:587.772000px;}
.x11{left:594.681000px;}
.x12{left:602.154000px;}
.x46{left:621.214500px;}
.x47{left:633.505500px;}
.x2a{left:658.494000px;}
.x20{left:670.990500px;}
.x2b{left:673.437000px;}
.x44{left:683.998500px;}
.x21{left:685.935000px;}
.x51{left:689.460000px;}
.x45{left:698.031000px;}
.x17{left:709.413000px;}
.x48{left:712.783500px;}
.x52{left:716.359500px;}
.x18{left:724.357500px;}
.x49{left:725.566500px;}
.x1a{left:733.972500px;}
.x19{left:740.086500px;}
.x1b{left:748.915500px;}
.x1c{left:752.641500px;}
.xd{left:754.119000px;}
.xe{left:761.592000px;}
.x2c{left:766.518000px;}
.x1d{left:767.584500px;}
.x28{left:776.427000px;}
.x29{left:791.371500px;}
.x53{left:810.265500px;}
.x54{left:837.165000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.002422pt;}
.ls18{letter-spacing:0.004267pt;}
.ls6{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.lsd{letter-spacing:9.723498pt;}
.ls5{letter-spacing:10.631867pt;}
.ls8{letter-spacing:11.530049pt;}
.ls15{letter-spacing:11.954133pt;}
.ls16{letter-spacing:11.959467pt;}
.ls14{letter-spacing:12.085163pt;}
.ls9{letter-spacing:13.124065pt;}
.ls10{letter-spacing:13.177199pt;}
.lsc{letter-spacing:13.283467pt;}
.lsb{letter-spacing:13.389734pt;}
.ls11{letter-spacing:13.549136pt;}
.lsa{letter-spacing:14.505546pt;}
.ls12{letter-spacing:14.664947pt;}
.ls13{letter-spacing:16.205829pt;}
.ls17{letter-spacing:16.206892pt;}
.lsf{letter-spacing:18.862523pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.ws5c{word-spacing:-13.283467pt;}
.wsd0{word-spacing:-11.955200pt;}
.ws2d{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.wsb4{word-spacing:-3.985040pt;}
.ws5f{word-spacing:-3.559969pt;}
.ws5e{word-spacing:-3.506835pt;}
.ws33{word-spacing:-2.869229pt;}
.ws76{word-spacing:-2.816095pt;}
.wsa7{word-spacing:-2.762961pt;}
.ws87{word-spacing:-2.709827pt;}
.wsc7{word-spacing:-2.550426pt;}
.wsa4{word-spacing:-2.497292pt;}
.wse2{word-spacing:-2.343219pt;}
.ws4d{word-spacing:-2.337890pt;}
.wscc{word-spacing:-2.295398pt;}
.wsbf{word-spacing:-2.178489pt;}
.wsae{word-spacing:-2.125355pt;}
.wscd{word-spacing:-2.104115pt;}
.ws78{word-spacing:-1.965953pt;}
.ws8a{word-spacing:-1.912819pt;}
.wsb7{word-spacing:-1.859685pt;}
.ws35{word-spacing:-1.806551pt;}
.ws36{word-spacing:-1.753418pt;}
.ws77{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.ws88{word-spacing:-1.647150pt;}
.ws6e{word-spacing:-1.594016pt;}
.ws86{word-spacing:-1.540882pt;}
.ws80{word-spacing:-1.487748pt;}
.ws79{word-spacing:-1.434614pt;}
.ws21{word-spacing:-1.381481pt;}
.ws85{word-spacing:-1.328347pt;}
.ws8b{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws8c{word-spacing:-1.168945pt;}
.ws96{word-spacing:-1.115811pt;}
.ws5b{word-spacing:-1.062677pt;}
.ws7{word-spacing:-1.041421pt;}
.ws5d{word-spacing:-1.009543pt;}
.ws60{word-spacing:-0.956410pt;}
.ws9{word-spacing:-0.929840pt;}
.ws4e{word-spacing:-0.903276pt;}
.ws5a{word-spacing:-0.850142pt;}
.wsd4{word-spacing:-0.812954pt;}
.ws37{word-spacing:-0.797008pt;}
.ws47{word-spacing:-0.743874pt;}
.wsa1{word-spacing:-0.690740pt;}
.ws6{word-spacing:-0.669485pt;}
.wsc2{word-spacing:-0.637606pt;}
.ws6c{word-spacing:-0.531339pt;}
.ws75{word-spacing:-0.478205pt;}
.wsc5{word-spacing:-0.425071pt;}
.wsdf{word-spacing:-0.382566pt;}
.wsbc{word-spacing:-0.371937pt;}
.ws41{word-spacing:-0.318803pt;}
.ws14{word-spacing:-0.286925pt;}
.ws2f{word-spacing:-0.265669pt;}
.ws1b{word-spacing:-0.239104pt;}
.ws3b{word-spacing:-0.212535pt;}
.wscf{word-spacing:-0.191283pt;}
.ws26{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.wse4{word-spacing:-0.095642pt;}
.ws24{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.047821pt;}
.wsdc{word-spacing:-0.008764pt;}
.wse5{word-spacing:-0.008542pt;}
.wse0{word-spacing:-0.006460pt;}
.wsd2{word-spacing:-0.005530pt;}
.wsde{word-spacing:-0.004156pt;}
.wsd6{word-spacing:-0.003601pt;}
.wsd8{word-spacing:-0.003575pt;}
.wsdb{word-spacing:-0.003209pt;}
.ws2c{word-spacing:-0.002540pt;}
.wse3{word-spacing:-0.001126pt;}
.wsdd{word-spacing:-0.000196pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:0.000450pt;}
.ws13{word-spacing:0.047821pt;}
.ws28{word-spacing:0.053134pt;}
.ws17{word-spacing:0.095642pt;}
.ws27{word-spacing:0.106268pt;}
.ws68{word-spacing:0.143462pt;}
.ws48{word-spacing:0.159402pt;}
.ws67{word-spacing:0.191283pt;}
.ws25{word-spacing:0.212535pt;}
.ws1e{word-spacing:0.239104pt;}
.ws58{word-spacing:0.265669pt;}
.ws3f{word-spacing:0.318803pt;}
.ws51{word-spacing:0.371937pt;}
.wsd3{word-spacing:0.382566pt;}
.wsa9{word-spacing:0.425071pt;}
.ws8d{word-spacing:0.478205pt;}
.ws3e{word-spacing:0.531339pt;}
.ws16{word-spacing:0.573850pt;}
.ws69{word-spacing:0.584473pt;}
.ws2e{word-spacing:0.637606pt;}
.ws29{word-spacing:0.690740pt;}
.ws6b{word-spacing:0.743874pt;}
.ws6f{word-spacing:0.797008pt;}
.ws2a{word-spacing:0.850142pt;}
.ws8{word-spacing:0.892646pt;}
.wsc8{word-spacing:0.903276pt;}
.ws55{word-spacing:0.956410pt;}
.wsb2{word-spacing:1.009543pt;}
.wsc9{word-spacing:1.062677pt;}
.ws32{word-spacing:1.115811pt;}
.ws46{word-spacing:1.168945pt;}
.ws42{word-spacing:1.222079pt;}
.ws53{word-spacing:1.275213pt;}
.ws70{word-spacing:1.328347pt;}
.ws49{word-spacing:1.381481pt;}
.ws62{word-spacing:1.434614pt;}
.ws4a{word-spacing:1.540882pt;}
.wsa5{word-spacing:1.594016pt;}
.ws50{word-spacing:1.647150pt;}
.wsd5{word-spacing:1.673728pt;}
.ws7c{word-spacing:1.700284pt;}
.ws9f{word-spacing:1.753418pt;}
.ws7d{word-spacing:1.806551pt;}
.wsbd{word-spacing:1.859685pt;}
.ws74{word-spacing:1.912819pt;}
.wsa2{word-spacing:1.965953pt;}
.wsca{word-spacing:2.019087pt;}
.wsb3{word-spacing:2.072221pt;}
.ws71{word-spacing:2.125355pt;}
.ws63{word-spacing:2.178489pt;}
.ws93{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws89{word-spacing:2.284756pt;}
.wsd1{word-spacing:2.295398pt;}
.ws56{word-spacing:2.337890pt;}
.ws1c{word-spacing:2.343219pt;}
.ws3d{word-spacing:2.391024pt;}
.wsb8{word-spacing:2.497292pt;}
.wsb0{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.ws92{word-spacing:2.603559pt;}
.ws3c{word-spacing:2.709827pt;}
.ws9d{word-spacing:2.762961pt;}
.wse1{word-spacing:2.773606pt;}
.wsc6{word-spacing:2.816095pt;}
.ws15{word-spacing:2.821427pt;}
.ws1f{word-spacing:2.861926pt;}
.ws4f{word-spacing:2.869229pt;}
.wsd7{word-spacing:2.869248pt;}
.ws4b{word-spacing:2.922363pt;}
.ws3a{word-spacing:2.975497pt;}
.ws1d{word-spacing:3.012710pt;}
.ws30{word-spacing:3.028630pt;}
.ws6a{word-spacing:3.081764pt;}
.ws31{word-spacing:3.134898pt;}
.ws20{word-spacing:3.188032pt;}
.ws72{word-spacing:3.241166pt;}
.ws8e{word-spacing:3.294300pt;}
.wsda{word-spacing:3.347456pt;}
.ws9e{word-spacing:3.400567pt;}
.ws64{word-spacing:3.453701pt;}
.ws7e{word-spacing:3.506835pt;}
.wsce{word-spacing:3.538739pt;}
.ws8f{word-spacing:3.559969pt;}
.wsc1{word-spacing:3.613103pt;}
.ws94{word-spacing:3.666237pt;}
.wsc0{word-spacing:3.825638pt;}
.ws2b{word-spacing:3.931906pt;}
.wsb6{word-spacing:4.016947pt;}
.ws90{word-spacing:4.091308pt;}
.ws57{word-spacing:4.197575pt;}
.wsf{word-spacing:4.240070pt;}
.wsd9{word-spacing:4.256051pt;}
.ws43{word-spacing:4.303843pt;}
.ws10{word-spacing:4.314458pt;}
.wsb5{word-spacing:4.351693pt;}
.ws91{word-spacing:4.356977pt;}
.ws9a{word-spacing:4.399514pt;}
.wsb9{word-spacing:4.463245pt;}
.wsa8{word-spacing:4.569513pt;}
.ws95{word-spacing:4.675780pt;}
.wsba{word-spacing:4.728914pt;}
.ws19{word-spacing:4.734259pt;}
.wsbb{word-spacing:4.782048pt;}
.ws45{word-spacing:4.835182pt;}
.wsad{word-spacing:4.888316pt;}
.wsbe{word-spacing:4.941450pt;}
.ws7f{word-spacing:4.994583pt;}
.ws23{word-spacing:5.047717pt;}
.wsc4{word-spacing:5.100851pt;}
.ws81{word-spacing:5.153985pt;}
.ws61{word-spacing:5.207119pt;}
.ws52{word-spacing:5.366521pt;}
.ws40{word-spacing:5.472788pt;}
.ws7a{word-spacing:5.579056pt;}
.ws73{word-spacing:5.685324pt;}
.wscb{word-spacing:5.844725pt;}
.ws59{word-spacing:5.897859pt;}
.ws99{word-spacing:5.929779pt;}
.wsa0{word-spacing:5.950993pt;}
.ws7b{word-spacing:6.057261pt;}
.ws34{word-spacing:6.110395pt;}
.ws54{word-spacing:6.163529pt;}
.ws6d{word-spacing:6.269796pt;}
.ws4c{word-spacing:6.322930pt;}
.wsab{word-spacing:6.429198pt;}
.ws44{word-spacing:6.588599pt;}
.wsb1{word-spacing:6.748001pt;}
.ws84{word-spacing:6.801135pt;}
.wsa6{word-spacing:6.854269pt;}
.ws38{word-spacing:6.907403pt;}
.wsd{word-spacing:6.918010pt;}
.ws83{word-spacing:7.226206pt;}
.wsaf{word-spacing:7.385607pt;}
.ws82{word-spacing:7.491875pt;}
.wsc3{word-spacing:7.545009pt;}
.ws65{word-spacing:7.598143pt;}
.ws39{word-spacing:8.713954pt;}
.wsb{word-spacing:10.823338pt;}
.wsc{word-spacing:14.319536pt;}
.ws97{word-spacing:15.015731pt;}
.ws9b{word-spacing:15.493939pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.wsac{word-spacing:69.863467pt;}
.wsaa{word-spacing:72.524800pt;}
.ws98{word-spacing:104.153702pt;}
.ws9c{word-spacing:104.918835pt;}
.wsa3{word-spacing:106.257818pt;}
.ws66{word-spacing:928.461186pt;}
._1d{margin-left:-6.688141pt;}
._d{margin-left:-5.595034pt;}
._8{margin-left:-4.675792pt;}
._9{margin-left:-3.542628pt;}
._1b{margin-left:-2.197990pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._1c{width:3.584794pt;}
._5{width:10.132188pt;}
._2{width:11.529735pt;}
._10{width:13.077658pt;}
._a{width:14.537523pt;}
._f{width:15.946886pt;}
._b{width:16.976384pt;}
._11{width:18.619557pt;}
._15{width:20.403405pt;}
._19{width:21.625484pt;}
._3{width:23.061099pt;}
._17{width:24.175921pt;}
._1e{width:25.079185pt;}
._14{width:26.035595pt;}
._6{width:27.188522pt;}
._c{width:28.788122pt;}
._1f{width:30.711387pt;}
._e{width:31.847365pt;}
._18{width:33.374795pt;}
._2a{width:34.990394pt;}
._1a{width:35.925232pt;}
._16{width:37.618778pt;}
._2d{width:39.166386pt;}
._22{width:44.764157pt;}
._7{width:48.992278pt;}
._2f{width:54.993920pt;}
._2c{width:63.745126pt;}
._21{width:72.831078pt;}
._2e{width:78.904320pt;}
._20{width:83.208192pt;}
._25{width:86.555648pt;}
._24{width:109.413990pt;}
._26{width:116.108902pt;}
._28{width:122.803814pt;}
._29{width:128.781414pt;}
._23{width:144.753562pt;}
._27{width:151.496294pt;}
._12{width:912.642544pt;}
._2b{width:2251.922400pt;}
._13{width:2273.175733pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1c{bottom:14.236308pt;}
.y4b{bottom:28.346667pt;}
.ycf{bottom:78.638667pt;}
.y14a{bottom:81.480000pt;}
.yc0{bottom:83.466667pt;}
.y215{bottom:85.086667pt;}
.y1b5{bottom:86.861333pt;}
.y157{bottom:87.529333pt;}
.y284{bottom:88.548000pt;}
.y24b{bottom:90.181333pt;}
.y1e4{bottom:91.126667pt;}
.y234{bottom:91.694667pt;}
.y4a{bottom:92.108000pt;}
.y1a{bottom:93.018667pt;}
.y127{bottom:94.086667pt;}
.y240{bottom:95.681333pt;}
.y1ee{bottom:96.854667pt;}
.y149{bottom:98.217333pt;}
.ybf{bottom:100.204000pt;}
.y214{bottom:101.824000pt;}
.y283{bottom:103.890667pt;}
.y1cb{bottom:107.508000pt;}
.yf8{bottom:107.604000pt;}
.y1e3{bottom:107.864000pt;}
.y233{bottom:108.432000pt;}
.y49{bottom:108.844000pt;}
.y19{bottom:108.920000pt;}
.y126{bottom:110.824000pt;}
.y102{bottom:111.222667pt;}
.y80{bottom:112.020000pt;}
.y23f{bottom:112.418667pt;}
.y1a7{bottom:112.976000pt;}
.y1ed{bottom:113.592000pt;}
.y24a{bottom:113.773333pt;}
.y148{bottom:114.954667pt;}
.ybe{bottom:116.941333pt;}
.y213{bottom:118.561333pt;}
.y282{bottom:119.233333pt;}
.y1ca{bottom:124.245333pt;}
.yf7{bottom:124.341333pt;}
.y1e2{bottom:124.601333pt;}
.y18{bottom:124.820000pt;}
.y232{bottom:125.169333pt;}
.y48{bottom:125.581333pt;}
.y125{bottom:127.561333pt;}
.y101{bottom:127.960000pt;}
.ya2{bottom:128.358667pt;}
.y7f{bottom:128.757333pt;}
.y23e{bottom:129.156000pt;}
.y249{bottom:129.394667pt;}
.y1a6{bottom:129.713333pt;}
.y1ec{bottom:130.328000pt;}
.y147{bottom:131.692000pt;}
.ybd{bottom:133.678667pt;}
.y281{bottom:134.576000pt;}
.y212{bottom:135.298667pt;}
.y17{bottom:140.720000pt;}
.y1c9{bottom:140.982667pt;}
.yf6{bottom:141.078667pt;}
.y1e1{bottom:141.338667pt;}
.y231{bottom:141.906667pt;}
.y47{bottom:142.318667pt;}
.y202{bottom:142.844000pt;}
.y124{bottom:144.298667pt;}
.y100{bottom:144.697333pt;}
.y248{bottom:145.016000pt;}
.ya1{bottom:145.096000pt;}
.y7e{bottom:145.494667pt;}
.y23d{bottom:145.893333pt;}
.y1a5{bottom:146.450667pt;}
.y1eb{bottom:147.065333pt;}
.y146{bottom:148.429333pt;}
.y280{bottom:149.917333pt;}
.ybc{bottom:150.416000pt;}
.y16{bottom:156.621333pt;}
.y177{bottom:157.449333pt;}
.y1c8{bottom:157.720000pt;}
.yf5{bottom:157.816000pt;}
.y1e0{bottom:158.076000pt;}
.y230{bottom:158.644000pt;}
.y46{bottom:159.056000pt;}
.y247{bottom:160.637333pt;}
.y123{bottom:161.036000pt;}
.yff{bottom:161.434667pt;}
.ya0{bottom:161.833333pt;}
.y7d{bottom:162.232000pt;}
.y23c{bottom:162.630667pt;}
.y1a4{bottom:163.188000pt;}
.y211{bottom:165.134667pt;}
.y145{bottom:165.166667pt;}
.y27f{bottom:165.260000pt;}
.y1ea{bottom:167.788000pt;}
.y15{bottom:172.521333pt;}
.y176{bottom:174.186667pt;}
.yf4{bottom:174.553333pt;}
.y1df{bottom:174.813333pt;}
.y22f{bottom:175.381333pt;}
.y45{bottom:175.793333pt;}
.y246{bottom:176.258667pt;}
.y122{bottom:177.773333pt;}
.y1c7{bottom:178.442667pt;}
.y9f{bottom:178.570667pt;}
.y7c{bottom:178.969333pt;}
.y23b{bottom:179.368000pt;}
.y1a3{bottom:179.925333pt;}
.ybb{bottom:180.252000pt;}
.y27e{bottom:180.602667pt;}
.y144{bottom:181.904000pt;}
.yfe{bottom:182.157333pt;}
.y14{bottom:188.421333pt;}
.y175{bottom:190.924000pt;}
.y1de{bottom:191.550667pt;}
.y22e{bottom:192.118667pt;}
.y44{bottom:192.530667pt;}
.y121{bottom:194.510667pt;}
.yf3{bottom:195.276000pt;}
.y9e{bottom:195.308000pt;}
.y7b{bottom:195.706667pt;}
.y27d{bottom:195.945333pt;}
.y23a{bottom:196.105333pt;}
.y1a2{bottom:196.662667pt;}
.yba{bottom:197.348000pt;}
.y1e9{bottom:197.676000pt;}
.y143{bottom:198.641333pt;}
.y245{bottom:199.850667pt;}
.y13{bottom:204.322667pt;}
.y1c6{bottom:205.489333pt;}
.y174{bottom:207.661333pt;}
.y1dd{bottom:208.288000pt;}
.y22d{bottom:208.854667pt;}
.y43{bottom:209.268000pt;}
.y120{bottom:211.248000pt;}
.y27c{bottom:211.288000pt;}
.y9d{bottom:212.045333pt;}
.y7a{bottom:212.444000pt;}
.y239{bottom:212.841333pt;}
.y1a1{bottom:213.400000pt;}
.y1e8{bottom:214.413333pt;}
.yb9{bottom:214.444000pt;}
.y142{bottom:215.378667pt;}
.y244{bottom:215.472000pt;}
.y1c5{bottom:222.585333pt;}
.y173{bottom:224.398667pt;}
.y1dc{bottom:225.025333pt;}
.yf2{bottom:225.164000pt;}
.y22c{bottom:225.592000pt;}
.y42{bottom:226.005333pt;}
.y27b{bottom:226.630667pt;}
.y11f{bottom:227.985333pt;}
.y9c{bottom:228.782667pt;}
.y79{bottom:229.181333pt;}
.y238{bottom:229.578667pt;}
.y1a0{bottom:230.137333pt;}
.y243{bottom:231.093333pt;}
.y1e7{bottom:231.150667pt;}
.y141{bottom:232.116000pt;}
.yb8{bottom:239.164000pt;}
.y172{bottom:241.136000pt;}
.y1db{bottom:241.762667pt;}
.yf1{bottom:241.901333pt;}
.y27a{bottom:241.973333pt;}
.y22b{bottom:242.329333pt;}
.y41{bottom:242.742667pt;}
.y11e{bottom:244.722667pt;}
.yfd{bottom:245.520000pt;}
.y78{bottom:245.918667pt;}
.y237{bottom:246.316000pt;}
.y19f{bottom:246.874667pt;}
.y140{bottom:248.853333pt;}
.y9b{bottom:249.505333pt;}
.y279{bottom:257.316000pt;}
.y171{bottom:257.873333pt;}
.yf0{bottom:258.638667pt;}
.y22a{bottom:259.066667pt;}
.y40{bottom:259.480000pt;}
.y1e6{bottom:260.986667pt;}
.y11d{bottom:261.460000pt;}
.yfc{bottom:262.257333pt;}
.y1da{bottom:262.485333pt;}
.y242{bottom:262.656000pt;}
.y1f3{bottom:262.897333pt;}
.y236{bottom:263.053333pt;}
.y13f{bottom:265.590667pt;}
.y77{bottom:266.640000pt;}
.y12{bottom:266.804000pt;}
.y19e{bottom:267.596000pt;}
.y184{bottom:268.897333pt;}
.y278{bottom:272.657333pt;}
.y170{bottom:274.610667pt;}
.yef{bottom:275.376000pt;}
.y229{bottom:275.804000pt;}
.y3f{bottom:276.217333pt;}
.y11c{bottom:278.197333pt;}
.yfb{bottom:278.994667pt;}
.y9a{bottom:279.393333pt;}
.y1f2{bottom:279.634667pt;}
.y235{bottom:279.790667pt;}
.y13e{bottom:282.328000pt;}
.y11{bottom:282.705333pt;}
.y277{bottom:288.000000pt;}
.y16f{bottom:291.348000pt;}
.yee{bottom:292.113333pt;}
.y1d9{bottom:292.373333pt;}
.y228{bottom:292.541333pt;}
.y3e{bottom:292.954667pt;}
.y11b{bottom:294.934667pt;}
.y99{bottom:296.129333pt;}
.y1f1{bottom:296.372000pt;}
.y76{bottom:296.528000pt;}
.y19d{bottom:297.484000pt;}
.y10{bottom:298.605333pt;}
.y13d{bottom:299.065333pt;}
.yfa{bottom:299.716000pt;}
.y276{bottom:303.342667pt;}
.y16e{bottom:308.085333pt;}
.yed{bottom:308.850667pt;}
.y1d8{bottom:309.109333pt;}
.y227{bottom:309.278667pt;}
.y3d{bottom:309.692000pt;}
.y11a{bottom:311.672000pt;}
.y98{bottom:312.866667pt;}
.y1f0{bottom:313.109333pt;}
.y75{bottom:313.265333pt;}
.y19c{bottom:314.221333pt;}
.yf{bottom:314.505333pt;}
.y13c{bottom:315.802667pt;}
.y275{bottom:318.685333pt;}
.y16d{bottom:324.822667pt;}
.yec{bottom:325.588000pt;}
.y1d7{bottom:325.846667pt;}
.y226{bottom:326.016000pt;}
.y3c{bottom:326.429333pt;}
.y119{bottom:328.409333pt;}
.y97{bottom:329.604000pt;}
.y74{bottom:330.002667pt;}
.y19b{bottom:330.958667pt;}
.y13b{bottom:332.540000pt;}
.y274{bottom:334.028000pt;}
.ye{bottom:338.376000pt;}
.y16c{bottom:341.560000pt;}
.yeb{bottom:342.325333pt;}
.y1d6{bottom:342.584000pt;}
.y225{bottom:342.753333pt;}
.y1ef{bottom:342.945333pt;}
.y3b{bottom:343.166667pt;}
.y118{bottom:345.146667pt;}
.y96{bottom:346.341333pt;}
.y73{bottom:346.740000pt;}
.y13a{bottom:349.277333pt;}
.y273{bottom:349.370667pt;}
.y19a{bottom:351.681333pt;}
.yd{bottom:354.277333pt;}
.yea{bottom:359.062667pt;}
.y1d5{bottom:359.321333pt;}
.y224{bottom:359.490667pt;}
.y3a{bottom:359.904000pt;}
.y117{bottom:361.884000pt;}
.y16b{bottom:362.282667pt;}
.y95{bottom:363.078667pt;}
.y72{bottom:363.477333pt;}
.y272{bottom:364.713333pt;}
.y139{bottom:366.014667pt;}
.yc{bottom:370.177333pt;}
.ye9{bottom:375.800000pt;}
.y1d4{bottom:376.058667pt;}
.y223{bottom:376.228000pt;}
.y39{bottom:376.641333pt;}
.y116{bottom:378.621333pt;}
.y94{bottom:379.816000pt;}
.y271{bottom:380.056000pt;}
.y71{bottom:380.214667pt;}
.y199{bottom:381.569333pt;}
.y138{bottom:382.752000pt;}
.y16a{bottom:392.170667pt;}
.y1d3{bottom:392.796000pt;}
.y222{bottom:392.965333pt;}
.y115{bottom:395.358667pt;}
.yb{bottom:395.376000pt;}
.y270{bottom:395.398667pt;}
.ye8{bottom:396.521333pt;}
.y93{bottom:396.553333pt;}
.y70{bottom:396.952000pt;}
.y38{bottom:397.364000pt;}
.y198{bottom:398.306667pt;}
.y137{bottom:399.489333pt;}
.y169{bottom:408.908000pt;}
.y1d2{bottom:409.533333pt;}
.y221{bottom:409.702667pt;}
.y26f{bottom:410.740000pt;}
.y114{bottom:412.096000pt;}
.y92{bottom:413.290667pt;}
.y6f{bottom:413.689333pt;}
.y197{bottom:415.044000pt;}
.y136{bottom:416.226667pt;}
.ya{bottom:419.246667pt;}
.y1b4{bottom:419.396000pt;}
.y168{bottom:425.645333pt;}
.y26e{bottom:426.082667pt;}
.y1d1{bottom:426.270667pt;}
.ye7{bottom:426.409333pt;}
.y220{bottom:426.440000pt;}
.y91{bottom:430.028000pt;}
.y6e{bottom:430.426667pt;}
.y196{bottom:431.781333pt;}
.y113{bottom:432.817333pt;}
.y135{bottom:432.964000pt;}
.y9{bottom:435.146667pt;}
.yb7{bottom:435.893333pt;}
.y1b3{bottom:436.133333pt;}
.y26d{bottom:441.425333pt;}
.y167{bottom:442.382667pt;}
.y1d0{bottom:443.008000pt;}
.ye6{bottom:443.146667pt;}
.y21f{bottom:443.177333pt;}
.y90{bottom:446.765333pt;}
.y6d{bottom:447.164000pt;}
.y195{bottom:448.518667pt;}
.y8{bottom:451.048000pt;}
.yb6{bottom:452.630667pt;}
.y1b2{bottom:452.870667pt;}
.y134{bottom:453.685333pt;}
.y26c{bottom:456.768000pt;}
.y1cf{bottom:459.745333pt;}
.ye5{bottom:459.884000pt;}
.y21e{bottom:459.914667pt;}
.y201{bottom:460.973333pt;}
.y112{bottom:462.705333pt;}
.y166{bottom:463.104000pt;}
.y8f{bottom:463.502667pt;}
.y6c{bottom:463.901333pt;}
.y37{bottom:464.164000pt;}
.y210{bottom:464.604000pt;}
.y194{bottom:465.256000pt;}
.y7{bottom:466.948000pt;}
.yb5{bottom:469.368000pt;}
.y1b1{bottom:469.608000pt;}
.y26b{bottom:472.110667pt;}
.y1ce{bottom:476.482667pt;}
.ye4{bottom:476.621333pt;}
.y21d{bottom:476.652000pt;}
.y200{bottom:477.710667pt;}
.y111{bottom:479.442667pt;}
.y8e{bottom:480.240000pt;}
.y6b{bottom:480.638667pt;}
.y20f{bottom:481.341333pt;}
.y193{bottom:481.993333pt;}
.y6{bottom:482.848000pt;}
.yb4{bottom:486.105333pt;}
.y1b0{bottom:486.345333pt;}
.y26a{bottom:487.453333pt;}
.y156{bottom:489.402667pt;}
.y133{bottom:491.306667pt;}
.y165{bottom:492.992000pt;}
.y1cd{bottom:493.220000pt;}
.ye3{bottom:493.358667pt;}
.y21c{bottom:493.389333pt;}
.y1ff{bottom:494.448000pt;}
.y110{bottom:496.180000pt;}
.y8d{bottom:496.977333pt;}
.y6a{bottom:497.376000pt;}
.y36{bottom:497.398667pt;}
.y20e{bottom:498.078667pt;}
.y131{bottom:498.613333pt;}
.y192{bottom:498.730667pt;}
.y5{bottom:498.749333pt;}
.y269{bottom:502.796000pt;}
.yb3{bottom:502.842667pt;}
.y1af{bottom:503.082667pt;}
.y155{bottom:504.014667pt;}
.y132{bottom:505.918667pt;}
.y164{bottom:509.729333pt;}
.ye2{bottom:510.096000pt;}
.y1fe{bottom:511.185333pt;}
.y10f{bottom:512.917333pt;}
.y8c{bottom:513.714667pt;}
.y21b{bottom:514.112000pt;}
.y69{bottom:514.113333pt;}
.y4{bottom:514.649333pt;}
.y35{bottom:514.694667pt;}
.y20d{bottom:514.816000pt;}
.y191{bottom:515.468000pt;}
.y268{bottom:518.138667pt;}
.y154{bottom:518.626667pt;}
.y1ae{bottom:519.820000pt;}
.y1cc{bottom:523.056000pt;}
.yb2{bottom:523.565333pt;}
.y163{bottom:526.466667pt;}
.ye1{bottom:526.833333pt;}
.y130{bottom:527.198667pt;}
.y1fd{bottom:527.922667pt;}
.y10e{bottom:529.654667pt;}
.y8b{bottom:530.452000pt;}
.y1{bottom:530.549382pt;}
.y68{bottom:530.850667pt;}
.y20c{bottom:531.553333pt;}
.y34{bottom:531.989333pt;}
.y190{bottom:532.205333pt;}
.y153{bottom:533.238667pt;}
.y266{bottom:533.480000pt;}
.y267{bottom:533.481333pt;}
.y183{bottom:533.552000pt;}
.y1ad{bottom:536.557333pt;}
.y12f{bottom:541.810667pt;}
.y162{bottom:543.204000pt;}
.ye0{bottom:543.570667pt;}
.y21a{bottom:544.000000pt;}
.y1fc{bottom:544.660000pt;}
.y10d{bottom:546.392000pt;}
.y8a{bottom:547.189333pt;}
.y67{bottom:547.588000pt;}
.y152{bottom:547.850667pt;}
.y20b{bottom:548.290667pt;}
.y265{bottom:548.822667pt;}
.y18f{bottom:548.942667pt;}
.y33{bottom:549.284000pt;}
.y182{bottom:550.289333pt;}
.y1ac{bottom:553.294667pt;}
.yb1{bottom:553.453333pt;}
.y1c4{bottom:559.542667pt;}
.y161{bottom:559.941333pt;}
.ydf{bottom:560.308000pt;}
.y219{bottom:560.737333pt;}
.y1fb{bottom:561.397333pt;}
.y151{bottom:562.462667pt;}
.y12e{bottom:563.089333pt;}
.y10c{bottom:563.129333pt;}
.y89{bottom:563.926667pt;}
.y264{bottom:564.165333pt;}
.y66{bottom:564.325333pt;}
.y20a{bottom:565.028000pt;}
.y32{bottom:566.580000pt;}
.y181{bottom:567.026667pt;}
.y1ab{bottom:570.032000pt;}
.yb0{bottom:570.190667pt;}
.y18e{bottom:572.321333pt;}
.y1c3{bottom:576.280000pt;}
.y160{bottom:576.678667pt;}
.y150{bottom:577.074667pt;}
.y218{bottom:577.473333pt;}
.y12c{bottom:577.701333pt;}
.y1fa{bottom:578.134667pt;}
.y263{bottom:579.508000pt;}
.y88{bottom:580.664000pt;}
.y65{bottom:581.062667pt;}
.y209{bottom:581.765333pt;}
.y180{bottom:583.764000pt;}
.y10b{bottom:583.852000pt;}
.y31{bottom:583.874667pt;}
.y1aa{bottom:586.769333pt;}
.yaf{bottom:586.928000pt;}
.y18d{bottom:589.058667pt;}
.yde{bottom:590.144000pt;}
.y14f{bottom:591.686667pt;}
.y12d{bottom:592.313333pt;}
.y1c2{bottom:593.017333pt;}
.y15f{bottom:593.416000pt;}
.y1e5{bottom:593.677333pt;}
.y217{bottom:594.210667pt;}
.y262{bottom:594.850667pt;}
.y1f9{bottom:594.872000pt;}
.y87{bottom:597.401333pt;}
.y64{bottom:597.800000pt;}
.y208{bottom:598.502667pt;}
.y17f{bottom:600.501333pt;}
.y30{bottom:601.169333pt;}
.yae{bottom:603.665333pt;}
.y18c{bottom:605.796000pt;}
.y14e{bottom:606.298667pt;}
.y1a9{bottom:607.490667pt;}
.y1c1{bottom:609.754667pt;}
.y15e{bottom:610.153333pt;}
.y261{bottom:610.193333pt;}
.y1f8{bottom:611.609333pt;}
.y12b{bottom:613.593333pt;}
.y10a{bottom:613.740000pt;}
.y86{bottom:614.138667pt;}
.y63{bottom:614.537333pt;}
.y207{bottom:615.240000pt;}
.y17e{bottom:617.237333pt;}
.y2f{bottom:618.465333pt;}
.yad{bottom:620.402667pt;}
.y18b{bottom:622.533333pt;}
.y216{bottom:624.048000pt;}
.y260{bottom:625.536000pt;}
.y1c0{bottom:626.492000pt;}
.y15d{bottom:626.890667pt;}
.y14d{bottom:627.577333pt;}
.y1f7{bottom:628.346667pt;}
.y109{bottom:630.477333pt;}
.y85{bottom:630.876000pt;}
.y62{bottom:631.274667pt;}
.y206{bottom:631.977333pt;}
.y17d{bottom:633.974667pt;}
.y1a8{bottom:634.537333pt;}
.y12a{bottom:634.873333pt;}
.y2e{bottom:635.760000pt;}
.yac{bottom:637.140000pt;}
.y18a{bottom:639.270667pt;}
.y25f{bottom:640.878667pt;}
.y1bf{bottom:643.229333pt;}
.y1f6{bottom:645.084000pt;}
.y108{bottom:647.214667pt;}
.y84{bottom:647.613333pt;}
.y61{bottom:648.012000pt;}
.y205{bottom:648.713333pt;}
.y17c{bottom:650.712000pt;}
.y2d{bottom:653.056000pt;}
.yab{bottom:653.877333pt;}
.y14c{bottom:655.684000pt;}
.y189{bottom:656.008000pt;}
.y129{bottom:656.152000pt;}
.y25e{bottom:656.221333pt;}
.y1be{bottom:659.966667pt;}
.y107{bottom:663.952000pt;}
.y83{bottom:664.350667pt;}
.y60{bottom:664.749333pt;}
.y1f5{bottom:665.806667pt;}
.y17b{bottom:667.449333pt;}
.y204{bottom:669.436000pt;}
.y2c{bottom:670.350667pt;}
.yaa{bottom:670.614667pt;}
.y25d{bottom:671.562667pt;}
.y188{bottom:672.745333pt;}
.y1bd{bottom:676.704000pt;}
.y15c{bottom:677.501333pt;}
.y106{bottom:680.689333pt;}
.y82{bottom:681.088000pt;}
.y5f{bottom:681.485333pt;}
.y17a{bottom:684.186667pt;}
.y128{bottom:684.258667pt;}
.y25c{bottom:686.905333pt;}
.ya9{bottom:687.350667pt;}
.y2b{bottom:687.645333pt;}
.y187{bottom:689.482667pt;}
.y14b{bottom:690.048000pt;}
.y1f4{bottom:692.853333pt;}
.y1bc{bottom:693.441333pt;}
.y15b{bottom:694.238667pt;}
.y203{bottom:696.482667pt;}
.y105{bottom:697.426667pt;}
.yce{bottom:697.825333pt;}
.y5e{bottom:698.222667pt;}
.y179{bottom:700.924000pt;}
.y81{bottom:701.809333pt;}
.y25b{bottom:702.248000pt;}
.ya8{bottom:704.088000pt;}
.y2a{bottom:704.941333pt;}
.y186{bottom:710.204000pt;}
.y15a{bottom:710.976000pt;}
.y1bb{bottom:714.164000pt;}
.ycd{bottom:714.562667pt;}
.y5d{bottom:714.960000pt;}
.y25a{bottom:717.590667pt;}
.y104{bottom:718.149333pt;}
.ya7{bottom:720.825333pt;}
.y29{bottom:722.236000pt;}
.y159{bottom:727.713333pt;}
.y178{bottom:730.760000pt;}
.ycc{bottom:731.300000pt;}
.y5c{bottom:731.697333pt;}
.y259{bottom:732.933333pt;}
.y185{bottom:737.250667pt;}
.ya6{bottom:737.562667pt;}
.y28{bottom:739.530667pt;}
.y1ba{bottom:744.052000pt;}
.y158{bottom:744.450667pt;}
.ycb{bottom:748.036000pt;}
.y258{bottom:748.276000pt;}
.y5b{bottom:748.434667pt;}
.ya5{bottom:754.300000pt;}
.y27{bottom:756.826667pt;}
.y1b9{bottom:760.789333pt;}
.ydd{bottom:761.186667pt;}
.y257{bottom:763.618667pt;}
.yca{bottom:764.773333pt;}
.y5a{bottom:765.172000pt;}
.y1b8{bottom:777.526667pt;}
.ydc{bottom:777.924000pt;}
.y256{bottom:778.961333pt;}
.yc9{bottom:781.510667pt;}
.y59{bottom:781.909333pt;}
.ya4{bottom:784.136000pt;}
.y26{bottom:788.474667pt;}
.y1b7{bottom:794.264000pt;}
.y255{bottom:794.304000pt;}
.ydb{bottom:794.661333pt;}
.yc8{bottom:798.248000pt;}
.y58{bottom:798.646667pt;}
.ya3{bottom:801.232000pt;}
.y25{bottom:802.821333pt;}
.y254{bottom:809.645333pt;}
.y1b6{bottom:811.001333pt;}
.yd9{bottom:811.398667pt;}
.yc7{bottom:814.985333pt;}
.y57{bottom:815.384000pt;}
.yda{bottom:816.221333pt;}
.y24{bottom:821.025333pt;}
.y253{bottom:824.988000pt;}
.yd8{bottom:828.136000pt;}
.y23{bottom:831.513333pt;}
.yc6{bottom:831.722667pt;}
.y56{bottom:832.121333pt;}
.y252{bottom:840.330667pt;}
.yd7{bottom:844.873333pt;}
.yc5{bottom:848.460000pt;}
.y55{bottom:848.858667pt;}
.y22{bottom:849.717333pt;}
.y103{bottom:852.445333pt;}
.y251{bottom:855.673333pt;}
.yd6{bottom:861.610667pt;}
.y21{bottom:864.064000pt;}
.yc4{bottom:865.197333pt;}
.y54{bottom:865.596000pt;}
.y241{bottom:869.182667pt;}
.y250{bottom:871.016000pt;}
.yd5{bottom:878.348000pt;}
.yc3{bottom:881.934667pt;}
.y53{bottom:882.333333pt;}
.y20{bottom:883.858667pt;}
.yf9{bottom:885.920000pt;}
.y24f{bottom:886.358667pt;}
.yd4{bottom:895.085333pt;}
.yc2{bottom:898.672000pt;}
.y52{bottom:899.070667pt;}
.y24e{bottom:905.685333pt;}
.yd3{bottom:911.822667pt;}
.y51{bottom:915.808000pt;}
.yc1{bottom:919.394667pt;}
.y1f{bottom:921.849333pt;}
.yd2{bottom:928.560000pt;}
.y50{bottom:932.545333pt;}
.y24d{bottom:935.573333pt;}
.y287{bottom:936.729333pt;}
.yd1{bottom:945.297333pt;}
.y1e{bottom:946.954667pt;}
.y4f{bottom:949.282667pt;}
.y286{bottom:952.072000pt;}
.y24c{bottom:959.165333pt;}
.yd0{bottom:962.034667pt;}
.y4e{bottom:966.020000pt;}
.y285{bottom:967.414667pt;}
.y1d{bottom:972.061333pt;}
.y4d{bottom:982.757333pt;}
.y1b{bottom:1010.716000pt;}
.y4c{bottom:1038.548000pt;}
.h14{height:14.948784pt;}
.h2{height:22.673858pt;}
.hc{height:23.209028pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h13{height:29.397999pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.hd{height:30.945242pt;}
.h12{height:31.157778pt;}
.he{height:34.574438pt;}
.hf{height:34.813542pt;}
.h15{height:35.052646pt;}
.h10{height:38.415786pt;}
.h11{height:38.681455pt;}
.h9{height:38.947124pt;}
.h7{height:45.271688pt;}
.hb{height:48.481423pt;}
.ha{height:69.148877pt;}
.h8{height:83.992000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:52.049422pt;}
.x50{left:76.309333pt;}
.x2d{left:219.865333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x3c{left:229.828000pt;}
.x39{left:232.422667pt;}
.x5{left:239.924000pt;}
.x13{left:241.356000pt;}
.x3a{left:244.378667pt;}
.x14{left:247.997333pt;}
.x8{left:250.204000pt;}
.x40{left:252.209333pt;}
.x22{left:272.706667pt;}
.x7{left:273.916000pt;}
.x24{left:277.010667pt;}
.x25{left:282.988000pt;}
.xf{left:303.654667pt;}
.x10{left:310.296000pt;}
.x35{left:320.852000pt;}
.x23{left:326.850667pt;}
.xb{left:333.732000pt;}
.x30{left:335.604000pt;}
.x33{left:338.033333pt;}
.xc{left:340.373333pt;}
.x3f{left:341.913333pt;}
.x37{left:344.180000pt;}
.x4f{left:346.438667pt;}
.x31{left:348.888000pt;}
.x4d{left:350.356000pt;}
.x34{left:351.317333pt;}
.x38{left:357.464000pt;}
.x4e{left:361.869333pt;}
.x36{left:364.486667pt;}
.x42{left:383.233333pt;}
.x4a{left:385.129333pt;}
.x1e{left:394.765333pt;}
.x3d{left:395.708000pt;}
.x2e{left:403.525333pt;}
.x3e{left:407.072000pt;}
.x1f{left:408.049333pt;}
.x2f{left:416.809333pt;}
.x3b{left:433.901333pt;}
.x43{left:450.777333pt;}
.x41{left:462.028000pt;}
.x32{left:468.770667pt;}
.x26{left:474.993333pt;}
.x9{left:477.906667pt;}
.x27{left:482.297333pt;}
.xa{left:484.549333pt;}
.x4b{left:508.033333pt;}
.x15{left:515.822667pt;}
.x4c{left:519.389333pt;}
.x16{left:522.464000pt;}
.x11{left:528.605333pt;}
.x12{left:535.248000pt;}
.x46{left:552.190667pt;}
.x47{left:563.116000pt;}
.x2a{left:585.328000pt;}
.x20{left:596.436000pt;}
.x2b{left:598.610667pt;}
.x44{left:607.998667pt;}
.x21{left:609.720000pt;}
.x51{left:612.853333pt;}
.x45{left:620.472000pt;}
.x17{left:630.589333pt;}
.x48{left:633.585333pt;}
.x52{left:636.764000pt;}
.x18{left:643.873333pt;}
.x49{left:644.948000pt;}
.x1a{left:652.420000pt;}
.x19{left:657.854667pt;}
.x1b{left:665.702667pt;}
.x1c{left:669.014667pt;}
.xd{left:670.328000pt;}
.xe{left:676.970667pt;}
.x2c{left:681.349333pt;}
.x1d{left:682.297333pt;}
.x28{left:690.157333pt;}
.x29{left:703.441333pt;}
.x53{left:720.236000pt;}
.x54{left:744.146667pt;}
}




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