
    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_17a64a384d058ddf607e465b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_6ee902450b6730daa9c1d676.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_71b739cb6d4902fbe6582900.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3d39175f7f27434b7fc50197.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_9bd2ae55fad6708625966551.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_0b70bc227eae7dbb31f48f1e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.482000;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_27401dcc71fafad05306a4aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.580000;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_98bbfb92719076b62fd2d67f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.504000;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_ad2eb00ce7e0f25663ebfe54.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ad2eb00ce7e0f25663ebfe54.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7c1ffb582c28dd39f2f66b45.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.953000;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;}
.m22{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m9{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);}
.m16{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);}
.m21{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);}
.m1a{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);}
.m18{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);}
.m17{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);}
.m1e{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);}
.m1{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);}
.m4{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);}
.m8{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);}
.m11{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);}
.m6{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);}
.m3{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);}
.m14{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);}
.m15{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);}
.m1d{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);}
.m20{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);}
.m13{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);}
.m1b{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);}
.m7{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);}
.m19{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);}
.m1f{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);}
.mf{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);}
.m1c{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.mb{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);}
.m10{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);}
.m5{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m24{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.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.vc{vertical-align:-18.486000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.760000px;}
.v5{vertical-align:-10.464000px;}
.v8{vertical-align:-1.356000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.760000px;}
.va{vertical-align:18.483930px;}
.v9{vertical-align:19.530000px;}
.vd{vertical-align:20.609400px;}
.v1{vertical-align:21.696000px;}
.v7{vertical-align:29.856000px;}
.vb{vertical-align:32.874000px;}
.v6{vertical-align:40.470000px;}
.ls4{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.002841px;}
.ls19{letter-spacing:0.148200px;}
.ls36{letter-spacing:0.396017px;}
.ls6{letter-spacing:0.402017px;}
.ls49{letter-spacing:0.497764px;}
.ls46{letter-spacing:0.503764px;}
.ls3e{letter-spacing:0.642088px;}
.ls3f{letter-spacing:0.648088px;}
.ls38{letter-spacing:0.676741px;}
.ls15{letter-spacing:0.692383px;}
.ls16{letter-spacing:0.698383px;}
.ls37{letter-spacing:0.742200px;}
.ls23{letter-spacing:0.745331px;}
.ls25{letter-spacing:0.747292px;}
.ls1f{letter-spacing:0.748200px;}
.ls2c{letter-spacing:0.751331px;}
.lsa{letter-spacing:0.882571px;}
.ls10{letter-spacing:0.888571px;}
.ls9{letter-spacing:0.994200px;}
.ls12{letter-spacing:0.994766px;}
.lsd{letter-spacing:1.000200px;}
.ls17{letter-spacing:1.135740px;}
.ls41{letter-spacing:1.320088px;}
.ls1c{letter-spacing:1.420741px;}
.ls27{letter-spacing:1.490725px;}
.ls22{letter-spacing:1.496725px;}
.ls40{letter-spacing:2.014685px;}
.ls43{letter-spacing:2.020685px;}
.ls1b{letter-spacing:2.308200px;}
.lsb{letter-spacing:2.989200px;}
.ls24{letter-spacing:3.139200px;}
.ls26{letter-spacing:3.733200px;}
.ls32{letter-spacing:3.739200px;}
.ls2a{letter-spacing:4.302571px;}
.ls34{letter-spacing:4.620571px;}
.ls2f{letter-spacing:7.918200px;}
.ls45{letter-spacing:9.612088px;}
.ls48{letter-spacing:9.618088px;}
.ls0{letter-spacing:10.461300px;}
.ls11{letter-spacing:10.706100px;}
.ls39{letter-spacing:11.270725px;}
.lsc{letter-spacing:11.726100px;}
.ls3{letter-spacing:11.954850px;}
.ls1a{letter-spacing:12.026100px;}
.ls58{letter-spacing:12.123869px;}
.ls33{letter-spacing:12.339483px;}
.ls1e{letter-spacing:12.345483px;}
.ls56{letter-spacing:12.736114px;}
.ls2b{letter-spacing:13.042741px;}
.ls28{letter-spacing:13.048741px;}
.ls31{letter-spacing:13.089483px;}
.ls1d{letter-spacing:13.112725px;}
.ls20{letter-spacing:13.116017px;}
.ls21{letter-spacing:13.118700px;}
.ls35{letter-spacing:13.118725px;}
.ls55{letter-spacing:13.280903px;}
.ls54{letter-spacing:13.448400px;}
.ls53{letter-spacing:13.454400px;}
.ls29{letter-spacing:14.103483px;}
.ls42{letter-spacing:14.120400px;}
.ls3a{letter-spacing:14.943900px;}
.ls3d{letter-spacing:15.003676px;}
.ls50{letter-spacing:15.063451px;}
.ls3b{letter-spacing:15.123227px;}
.ls4f{letter-spacing:15.242778px;}
.ls30{letter-spacing:15.361200px;}
.ls59{letter-spacing:15.903341px;}
.ls5{letter-spacing:16.118383px;}
.ls4e{letter-spacing:16.318739px;}
.lsf{letter-spacing:18.087483px;}
.ls2d{letter-spacing:18.096017px;}
.ls14{letter-spacing:18.153483px;}
.ls8{letter-spacing:19.107483px;}
.ls3c{letter-spacing:19.187968px;}
.ls18{letter-spacing:19.413483px;}
.ls7{letter-spacing:21.240571px;}
.lse{letter-spacing:21.246571px;}
.ls13{letter-spacing:21.306571px;}
.ls2e{letter-spacing:24.495483px;}
.ls2{letter-spacing:30.301654px;}
.ls1{letter-spacing:62.761200px;}
.ls52{letter-spacing:165.702600px;}
.ls4b{letter-spacing:177.900600px;}
.ls51{letter-spacing:192.600600px;}
.ls44{letter-spacing:201.808800px;}
.ls47{letter-spacing:204.798600px;}
.ls4a{letter-spacing:204.804600px;}
.ls4c{letter-spacing:239.736600px;}
.ls4d{letter-spacing:239.742600px;}
.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;}
}
.wsc{word-spacing:-28.532313px;}
.ws46{word-spacing:-14.943900px;}
.ws6e{word-spacing:-13.449600px;}
.ws29{word-spacing:-11.955150px;}
.ws82{word-spacing:-11.458826px;}
.ws76{word-spacing:-11.418676px;}
.ws78{word-spacing:-11.398827px;}
.wsd{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws3c{word-spacing:-4.254895px;}
.ws39{word-spacing:-4.244068px;}
.ws72{word-spacing:-3.816000px;}
.ws6f{word-spacing:-3.814800px;}
.ws6d{word-spacing:-3.808800px;}
.ws85{word-spacing:-2.988780px;}
.ws84{word-spacing:-2.151922px;}
.ws53{word-spacing:-2.092146px;}
.ws1d{word-spacing:-1.912819px;}
.ws25{word-spacing:-1.733492px;}
.ws9b{word-spacing:-1.721549px;}
.ws9d{word-spacing:-1.613952px;}
.ws38{word-spacing:-1.554166px;}
.ws79{word-spacing:-1.374839px;}
.ws9e{word-spacing:-1.344960px;}
.ws99{word-spacing:-1.237363px;}
.wsa1{word-spacing:-1.183565px;}
.ws4f{word-spacing:-1.181170px;}
.ws60{word-spacing:-1.135736px;}
.wsa2{word-spacing:-1.022170px;}
.ws1e{word-spacing:-1.016185px;}
.ws66{word-spacing:-0.956410px;}
.ws89{word-spacing:-0.836858px;}
.ws97{word-spacing:-0.699379px;}
.ws4e{word-spacing:-0.657532px;}
.ws7a{word-spacing:-0.597756px;}
.ws56{word-spacing:-0.478205px;}
.ws2c{word-spacing:-0.418429px;}
.ws7d{word-spacing:-0.358654px;}
.ws1f{word-spacing:-0.298878px;}
.ws16{word-spacing:-0.239102px;}
.ws23{word-spacing:-0.179327px;}
.ws8c{word-spacing:-0.161395px;}
.ws26{word-spacing:-0.119551px;}
.ws12{word-spacing:-0.107597px;}
.ws43{word-spacing:-0.062287px;}
.ws3b{word-spacing:-0.059776px;}
.ws8e{word-spacing:-0.053798px;}
.ws2a{word-spacing:-0.047821px;}
.ws3d{word-spacing:-0.045430px;}
.ws4{word-spacing:-0.041843px;}
.ws8f{word-spacing:-0.004330px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:0.053798px;}
.ws15{word-spacing:0.059776px;}
.ws9a{word-spacing:0.107597px;}
.ws2d{word-spacing:0.119551px;}
.ws11{word-spacing:0.161395px;}
.ws31{word-spacing:0.179327px;}
.ws77{word-spacing:0.215194px;}
.ws2f{word-spacing:0.239102px;}
.wsf{word-spacing:0.268992px;}
.ws40{word-spacing:0.298878px;}
.ws9f{word-spacing:0.322790px;}
.ws22{word-spacing:0.358654px;}
.wsa5{word-spacing:0.537984px;}
.ws55{word-spacing:0.597756px;}
.ws6c{word-spacing:0.654374px;}
.ws32{word-spacing:0.836858px;}
.ws91{word-spacing:0.860774px;}
.ws1c{word-spacing:0.896634px;}
.ws37{word-spacing:1.075961px;}
.ws48{word-spacing:1.135736px;}
.ws7c{word-spacing:1.315063px;}
.ws19{word-spacing:1.434614px;}
.ws5f{word-spacing:1.494390px;}
.ws4a{word-spacing:1.554166px;}
.ws49{word-spacing:1.613941px;}
.ws75{word-spacing:1.733492px;}
.ws68{word-spacing:1.912819px;}
.wsa6{word-spacing:1.936742px;}
.ws2e{word-spacing:1.972595px;}
.ws61{word-spacing:2.032370px;}
.ws50{word-spacing:2.151922px;}
.ws8b{word-spacing:2.205734px;}
.ws67{word-spacing:2.331248px;}
.ws69{word-spacing:2.391024px;}
.ws24{word-spacing:2.450800px;}
.ws0{word-spacing:2.511541px;}
.ws8a{word-spacing:2.528525px;}
.ws58{word-spacing:2.570351px;}
.ws17{word-spacing:2.630126px;}
.ws34{word-spacing:2.689902px;}
.ws83{word-spacing:2.749678px;}
.wse{word-spacing:2.869236px;}
.ws87{word-spacing:3.048556px;}
.wsa8{word-spacing:3.120307px;}
.ws13{word-spacing:3.219667px;}
.ws93{word-spacing:3.227904px;}
.ws7b{word-spacing:3.287658px;}
.ws5b{word-spacing:3.407209px;}
.ws57{word-spacing:3.526760px;}
.ws14{word-spacing:3.586536px;}
.ws35{word-spacing:3.646312px;}
.ws63{word-spacing:4.124516px;}
.ws65{word-spacing:4.184292px;}
.ws3e{word-spacing:4.244068px;}
.wsaa{word-spacing:4.250074px;}
.ws18{word-spacing:4.303843px;}
.ws1b{word-spacing:4.363619px;}
.ws1a{word-spacing:4.423394px;}
.ws47{word-spacing:4.542946px;}
.wsa9{word-spacing:4.626662px;}
.wsa{word-spacing:4.770079px;}
.wsb{word-spacing:4.853765px;}
.wsa4{word-spacing:4.949453px;}
.ws5d{word-spacing:5.200477px;}
.ws21{word-spacing:5.320028px;}
.ws95{word-spacing:5.648832px;}
.ws64{word-spacing:5.678682px;}
.ws88{word-spacing:5.738458px;}
.ws94{word-spacing:6.079219px;}
.ws33{word-spacing:6.097111px;}
.ws5e{word-spacing:6.216662px;}
.ws27{word-spacing:6.395989px;}
.ws5c{word-spacing:6.455765px;}
.ws86{word-spacing:6.694867px;}
.ws30{word-spacing:6.993745px;}
.ws2b{word-spacing:7.053521px;}
.ws74{word-spacing:7.113296px;}
.ws62{word-spacing:7.531726px;}
.ws8{word-spacing:7.782761px;}
.ws36{word-spacing:8.009930px;}
.ws20{word-spacing:8.069706px;}
.ws5a{word-spacing:8.249033px;}
.ws59{word-spacing:8.308808px;}
.ws54{word-spacing:8.368584px;}
.ws28{word-spacing:11.910929px;}
.ws6{word-spacing:12.176255px;}
.ws4c{word-spacing:12.452038px;}
.ws98{word-spacing:12.696422px;}
.ws2{word-spacing:12.929425px;}
.ws42{word-spacing:12.955613px;}
.ws44{word-spacing:13.017899px;}
.ws96{word-spacing:13.234406px;}
.ws90{word-spacing:13.395802px;}
.ws92{word-spacing:14.256576px;}
.ws52{word-spacing:14.884124px;}
.ws7{word-spacing:16.109478px;}
.ws9c{word-spacing:16.300915px;}
.wsa3{word-spacing:16.462310px;}
.wsa0{word-spacing:16.615469px;}
.ws8d{word-spacing:16.623706px;}
.ws41{word-spacing:17.938541px;}
.ws3a{word-spacing:18.463930px;}
.ws3f{word-spacing:18.613680px;}
.wsa7{word-spacing:22.810522px;}
.ws9{word-spacing:26.109907px;}
.ws5{word-spacing:26.840252px;}
.ws7f{word-spacing:58.280688px;}
.ws80{word-spacing:77.192688px;}
.ws81{word-spacing:106.574630px;}
.ws70{word-spacing:188.358000px;}
.ws45{word-spacing:189.010447px;}
.ws73{word-spacing:223.300800px;}
.ws71{word-spacing:223.302000px;}
.ws7e{word-spacing:450.615398px;}
.ws6b{word-spacing:622.501286px;}
.ws6a{word-spacing:700.616563px;}
.ws4d{word-spacing:707.623553px;}
.ws4b{word-spacing:835.244459px;}
.ws51{word-spacing:1493.013197px;}
._5{margin-left:-13.879987px;}
._4c{margin-left:-7.800725px;}
._8{margin-left:-6.635092px;}
._0{margin-left:-5.397721px;}
._21{margin-left:-4.303843px;}
._a{margin-left:-2.528554px;}
._4{margin-left:-1.506341px;}
._18{width:1.619586px;}
._6{width:2.990742px;}
._17{width:4.354400px;}
._2{width:12.971268px;}
._19{width:14.008468px;}
._f{width:15.021593px;}
._9{width:16.892698px;}
._b{width:18.721714px;}
._d{width:20.443255px;}
._10{width:22.069147px;}
._c{width:23.163086px;}
._24{width:24.687323px;}
._1{width:25.941685px;}
._14{width:27.628278px;}
._15{width:29.098766px;}
._3{width:30.587087px;}
._e{width:32.278824px;}
._4b{width:34.700436px;}
._48{width:35.757760px;}
._11{width:37.551028px;}
._47{width:38.656835px;}
._4a{width:40.068530px;}
._16{width:43.098208px;}
._4d{width:61.868160px;}
._7{width:69.369634px;}
._49{width:88.767360px;}
._22{width:93.548814px;}
._3d{width:201.044621px;}
._3c{width:243.383933px;}
._3b{width:246.611866px;}
._3a{width:248.871398px;}
._41{width:250.772884px;}
._40{width:255.079661px;}
._42{width:259.869360px;}
._3f{width:261.240817px;}
._46{width:263.062319px;}
._3e{width:266.498337px;}
._45{width:268.458044px;}
._44{width:279.401866px;}
._43{width:525.072355px;}
._25{width:552.509568px;}
._35{width:687.220762px;}
._28{width:714.066163px;}
._34{width:728.753126px;}
._2a{width:745.861018px;}
._39{width:750.720755px;}
._2e{width:751.940237px;}
._30{width:755.060544px;}
._31{width:756.566899px;}
._2f{width:768.510144px;}
._2c{width:771.522854px;}
._33{width:774.696960px;}
._2d{width:777.010291px;}
._26{width:793.042214px;}
._32{width:799.874611px;}
._27{width:800.896781px;}
._2b{width:838.986048px;}
._36{width:848.831155px;}
._38{width:855.663581px;}
._1c{width:885.521664px;}
._37{width:904.351104px;}
._29{width:908.493581px;}
._12{width:951.831476px;}
._1b{width:1064.293747px;}
._1e{width:1177.969766px;}
._20{width:1207.720282px;}
._1f{width:1237.416998px;}
._1d{width:1336.513651px;}
._1a{width:1338.020006px;}
._4e{width:2513.618918px;}
._13{width:2536.515793px;}
._23{width:2537.528918px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(74,73,130);}
.fc3{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:32.804225px;}
.fsd{font-size:32.861347px;}
.fs15{font-size:32.975040px;}
.fs5{font-size:35.865600px;}
.fs12{font-size:36.903600px;}
.fse{font-size:36.967860px;}
.fs16{font-size:37.096920px;}
.fsf{font-size:41.002975px;}
.fsb{font-size:41.074373px;}
.fs13{font-size:41.218800px;}
.fs0{font-size:41.842800px;}
.fsa{font-size:43.600200px;}
.fs10{font-size:45.105220px;}
.fsc{font-size:45.183762px;}
.fs14{font-size:45.340680px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs9{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y16{bottom:1.739201px;}
.y194{bottom:2.603153px;}
.y106{bottom:4.231920px;}
.yf1{bottom:4.239289px;}
.y193{bottom:18.060203px;}
.y105{bottom:19.095870px;}
.yf0{bottom:19.129122px;}
.y195{bottom:27.334433px;}
.y107{bottom:28.578045px;}
.yf2{bottom:28.627808px;}
.y15{bottom:30.271042px;}
.y44{bottom:31.890000px;}
.y11f{bottom:91.665000px;}
.ya8{bottom:92.472000px;}
.y1fa{bottom:95.806500px;}
.y79{bottom:97.777500px;}
.y43{bottom:103.621500px;}
.y13{bottom:104.646000px;}
.yf3{bottom:107.184511px;}
.yc8{bottom:107.193000px;}
.yee{bottom:110.056500px;}
.y11e{bottom:110.494500px;}
.ya7{bottom:111.301500px;}
.y1f9{bottom:113.065500px;}
.y78{bottom:116.607000px;}
.y1c4{bottom:121.407000px;}
.y42{bottom:122.449500px;}
.y12{bottom:122.535000px;}
.yc7{bottom:126.022500px;}
.yed{bottom:128.886000px;}
.y11d{bottom:129.324000px;}
.y190{bottom:129.819000px;}
.y18e{bottom:129.898500px;}
.ya6{bottom:130.131000px;}
.y18d{bottom:130.158000px;}
.y1f8{bottom:130.326000px;}
.y196{bottom:132.442373px;}
.y108{bottom:133.138245px;}
.y191{bottom:134.701500px;}
.y18f{bottom:134.779500px;}
.y77{bottom:135.436500px;}
.y1c3{bottom:140.236500px;}
.y11{bottom:140.422500px;}
.y41{bottom:141.279000px;}
.yc6{bottom:144.852000px;}
.y1f7{bottom:147.586500px;}
.y11c{bottom:148.153500px;}
.ya5{bottom:148.960500px;}
.y76{bottom:154.266000px;}
.y18b{bottom:154.435500px;}
.y189{bottom:154.515000px;}
.y188{bottom:154.774500px;}
.y10{bottom:158.310000px;}
.y1c2{bottom:159.066000px;}
.y18c{bottom:159.318000px;}
.y18a{bottom:159.396000px;}
.y40{bottom:160.108500px;}
.y199{bottom:161.553150px;}
.y10b{bottom:161.969183px;}
.yf7{bottom:162.251219px;}
.yc5{bottom:163.681500px;}
.y1f6{bottom:164.847000px;}
.y11b{bottom:166.983000px;}
.y75{bottom:173.095500px;}
.yec{bottom:174.687000px;}
.ya4{bottom:175.263000px;}
.yf{bottom:176.199000px;}
.y1c1{bottom:177.895500px;}
.y3f{bottom:178.938000px;}
.y184{bottom:179.052000px;}
.y186{bottom:179.131500px;}
.y183{bottom:179.391000px;}
.y1f5{bottom:182.107500px;}
.yc4{bottom:182.511000px;}
.y185{bottom:183.934500px;}
.y187{bottom:184.012500px;}
.yf4{bottom:185.741213px;}
.y11a{bottom:185.812500px;}
.y74{bottom:191.925000px;}
.ye{bottom:194.086500px;}
.ya3{bottom:194.092500px;}
.y1c0{bottom:196.725000px;}
.y3e{bottom:197.767500px;}
.yeb{bottom:199.225500px;}
.y1f4{bottom:199.368000px;}
.yc3{bottom:201.340500px;}
.y181{bottom:203.668500px;}
.y17f{bottom:203.748000px;}
.y17e{bottom:204.007500px;}
.y119{bottom:204.642000px;}
.y182{bottom:208.551000px;}
.y180{bottom:208.629000px;}
.y73{bottom:210.754500px;}
.y115{bottom:211.580948px;}
.y101{bottom:211.949372px;}
.yd{bottom:211.974000px;}
.ya2{bottom:212.920500px;}
.y1bf{bottom:215.554500px;}
.y1a3{bottom:215.917656px;}
.y3d{bottom:216.597000px;}
.y1f3{bottom:216.628500px;}
.yc2{bottom:220.170000px;}
.y118{bottom:223.471500px;}
.yea{bottom:223.684500px;}
.y114{bottom:224.304489px;}
.y100{bottom:224.695069px;}
.y1a2{bottom:228.167883px;}
.y17a{bottom:228.285000px;}
.y17c{bottom:228.364500px;}
.y179{bottom:228.624000px;}
.y72{bottom:229.584000px;}
.yc{bottom:229.863000px;}
.ya1{bottom:231.750000px;}
.y17b{bottom:233.167500px;}
.y17d{bottom:233.245500px;}
.y1f2{bottom:233.889000px;}
.y1be{bottom:234.384000px;}
.y3c{bottom:235.426500px;}
.y113{bottom:237.028030px;}
.y197{bottom:237.035078px;}
.yff{bottom:237.440765px;}
.y109{bottom:237.698445px;}
.yc1{bottom:238.999500px;}
.y1a1{bottom:240.417080px;}
.y117{bottom:242.301000px;}
.ye9{bottom:248.223000px;}
.y71{bottom:248.413500px;}
.y112{bottom:249.750546px;}
.yfe{bottom:250.185435px;}
.ya0{bottom:250.579500px;}
.y1f1{bottom:251.148000px;}
.y1a0{bottom:252.666277px;}
.y177{bottom:252.901500px;}
.y175{bottom:252.981000px;}
.y1bd{bottom:253.213500px;}
.y174{bottom:253.240500px;}
.y3b{bottom:254.256000px;}
.y178{bottom:257.784000px;}
.yc0{bottom:257.829000px;}
.y176{bottom:257.862000px;}
.y111{bottom:262.474087px;}
.yfd{bottom:262.931132px;}
.yf5{bottom:264.297916px;}
.y19f{bottom:264.915474px;}
.y70{bottom:267.243000px;}
.y1f0{bottom:268.408500px;}
.y9f{bottom:269.409000px;}
.y1bc{bottom:272.043000px;}
.ye8{bottom:272.839500px;}
.y3a{bottom:273.085500px;}
.y116{bottom:273.183000px;}
.y110{bottom:275.197628px;}
.yfc{bottom:275.676828px;}
.ybf{bottom:276.658500px;}
.y19e{bottom:277.165701px;}
.y172{bottom:277.518000px;}
.y171{bottom:277.779000px;}
.y173{bottom:282.400500px;}
.y1ef{bottom:285.669000px;}
.y6f{bottom:286.072500px;}
.y10f{bottom:287.921170px;}
.y9e{bottom:288.238500px;}
.yfb{bottom:288.422525px;}
.y19d{bottom:289.414898px;}
.y1bb{bottom:290.871000px;}
.y39{bottom:291.915000px;}
.ybe{bottom:295.488000px;}
.y104{bottom:295.612192px;}
.ye7{bottom:297.456000px;}
.yb{bottom:299.892000px;}
.y10e{bottom:300.643686px;}
.yfa{bottom:301.167195px;}
.y19c{bottom:301.664095px;}
.y16f{bottom:301.978500px;}
.y16d{bottom:302.056500px;}
.y16c{bottom:302.316000px;}
.y1ee{bottom:302.929500px;}
.y6e{bottom:304.902000px;}
.y170{bottom:306.859500px;}
.y16e{bottom:306.939000px;}
.y9d{bottom:307.068000px;}
.y1ba{bottom:309.700500px;}
.y38{bottom:310.744500px;}
.y10d{bottom:313.367227px;}
.yf9{bottom:313.912891px;}
.y19b{bottom:313.913292px;}
.ybd{bottom:314.317500px;}
.ya{bottom:317.779500px;}
.y1ed{bottom:320.190000px;}
.ye6{bottom:322.072500px;}
.y6d{bottom:323.731500px;}
.y9c{bottom:325.897500px;}
.y10c{bottom:326.090768px;}
.y19a{bottom:326.163519px;}
.y168{bottom:326.595000px;}
.yf8{bottom:326.658588px;}
.y16a{bottom:326.673000px;}
.y167{bottom:326.932500px;}
.y1b9{bottom:328.530000px;}
.y37{bottom:329.574000px;}
.y169{bottom:331.476000px;}
.y16b{bottom:331.555500px;}
.ybc{bottom:333.145500px;}
.y9{bottom:335.667000px;}
.y1ec{bottom:337.450500px;}
.y198{bottom:342.143018px;}
.y10a{bottom:342.258645px;}
.yf6{bottom:342.854618px;}
.y9b{bottom:344.727000px;}
.ye5{bottom:346.350000px;}
.y1b8{bottom:347.359500px;}
.y36{bottom:348.403500px;}
.y165{bottom:351.211500px;}
.y163{bottom:351.289500px;}
.y162{bottom:351.549000px;}
.y6c{bottom:351.975000px;}
.y8{bottom:353.556000px;}
.y1eb{bottom:354.711000px;}
.y166{bottom:356.092500px;}
.y164{bottom:356.172000px;}
.y9a{bottom:363.556500px;}
.y1b7{bottom:366.189000px;}
.y35{bottom:367.233000px;}
.ybb{bottom:370.804500px;}
.y1ea{bottom:371.971500px;}
.y160{bottom:375.828000px;}
.y15e{bottom:375.906000px;}
.y15d{bottom:376.165500px;}
.ye4{bottom:377.970000px;}
.y161{bottom:380.709000px;}
.y15f{bottom:380.788500px;}
.y7{bottom:381.904500px;}
.y99{bottom:382.386000px;}
.y1b6{bottom:385.018500px;}
.y34{bottom:386.062500px;}
.y1e9{bottom:389.232000px;}
.y6b{bottom:389.634000px;}
.y6{bottom:399.792000px;}
.y15b{bottom:400.444500px;}
.y15a{bottom:400.704000px;}
.y98{bottom:401.215500px;}
.y1b5{bottom:403.848000px;}
.y33{bottom:404.892000px;}
.y15c{bottom:405.325500px;}
.y1e8{bottom:406.491000px;}
.y6a{bottom:408.463500px;}
.ye3{bottom:419.559000px;}
.y97{bottom:420.045000px;}
.y1b4{bottom:422.677500px;}
.y32{bottom:423.721500px;}
.y1e7{bottom:423.751500px;}
.y156{bottom:424.903500px;}
.y158{bottom:424.981500px;}
.y155{bottom:425.242500px;}
.y5{bottom:426.646500px;}
.y69{bottom:427.293000px;}
.y157{bottom:429.786000px;}
.y159{bottom:429.864000px;}
.y96{bottom:438.874500px;}
.y1e6{bottom:441.012000px;}
.y1b3{bottom:441.507000px;}
.y31{bottom:442.551000px;}
.ye2{bottom:443.499000px;}
.y4{bottom:444.534000px;}
.y68{bottom:446.122500px;}
.y153{bottom:449.520000px;}
.y152{bottom:449.779500px;}
.y154{bottom:454.402500px;}
.y95{bottom:457.704000px;}
.y1e5{bottom:458.272500px;}
.y1b2{bottom:460.336500px;}
.y30{bottom:461.380500px;}
.y3{bottom:462.423000px;}
.y67{bottom:464.952000px;}
.ye1{bottom:467.439000px;}
.y150{bottom:473.979000px;}
.y14e{bottom:474.058500px;}
.y14d{bottom:474.318000px;}
.y1e4{bottom:475.533000px;}
.y94{bottom:476.533500px;}
.y151{bottom:478.861500px;}
.y14f{bottom:478.939500px;}
.y1b1{bottom:479.166000px;}
.y2f{bottom:480.210000px;}
.y2{bottom:480.310500px;}
.y66{bottom:483.781500px;}
.ye0{bottom:491.377500px;}
.y1e3{bottom:492.793500px;}
.y93{bottom:495.363000px;}
.y1b0{bottom:497.995500px;}
.y1{bottom:498.198000px;}
.y149{bottom:498.595500px;}
.y14b{bottom:498.675000px;}
.y148{bottom:498.934500px;}
.y2e{bottom:499.039500px;}
.y65{bottom:502.611000px;}
.y14a{bottom:503.478000px;}
.y14c{bottom:503.556000px;}
.y1e2{bottom:510.054000px;}
.y92{bottom:514.192500px;}
.ydf{bottom:515.317500px;}
.y1af{bottom:516.825000px;}
.y2d{bottom:517.869000px;}
.y64{bottom:521.440500px;}
.y146{bottom:523.212000px;}
.y144{bottom:523.291500px;}
.y143{bottom:523.551000px;}
.y1e1{bottom:527.314500px;}
.y147{bottom:528.094500px;}
.y145{bottom:528.172500px;}
.y91{bottom:533.022000px;}
.y1ae{bottom:535.654500px;}
.y2c{bottom:536.698500px;}
.yde{bottom:539.257500px;}
.y63{bottom:540.270000px;}
.y1e0{bottom:544.573500px;}
.y13f{bottom:547.828500px;}
.y141{bottom:547.908000px;}
.y13e{bottom:548.167500px;}
.y90{bottom:551.851500px;}
.y140{bottom:552.711000px;}
.y142{bottom:552.789000px;}
.y1ad{bottom:554.484000px;}
.y62{bottom:559.099500px;}
.y2b{bottom:560.010000px;}
.y1df{bottom:561.834000px;}
.ydd{bottom:563.197500px;}
.y13a{bottom:572.445000px;}
.y13c{bottom:572.524500px;}
.y139{bottom:572.784000px;}
.y1ac{bottom:573.313500px;}
.y8f{bottom:575.164500px;}
.y13b{bottom:577.327500px;}
.y13d{bottom:577.405500px;}
.y61{bottom:577.929000px;}
.y1de{bottom:579.094500px;}
.ydc{bottom:587.136000px;}
.y1ab{bottom:592.143000px;}
.y1dd{bottom:596.355000px;}
.y60{bottom:596.758500px;}
.y135{bottom:597.061500px;}
.y137{bottom:597.141000px;}
.y134{bottom:597.400500px;}
.y136{bottom:601.944000px;}
.y138{bottom:602.022000px;}
.y1aa{bottom:610.972500px;}
.ydb{bottom:611.076000px;}
.y1dc{bottom:613.615500px;}
.y5f{bottom:615.588000px;}
.y8e{bottom:617.487000px;}
.y130{bottom:621.678000px;}
.y132{bottom:621.757500px;}
.y12f{bottom:622.017000px;}
.y131{bottom:626.560500px;}
.y133{bottom:626.638500px;}
.y1a9{bottom:629.802000px;}
.y1db{bottom:630.876000px;}
.y5e{bottom:634.417500px;}
.yda{bottom:635.016000px;}
.y2a{bottom:635.160000px;}
.y8d{bottom:641.427000px;}
.y12d{bottom:646.294500px;}
.y12b{bottom:646.374000px;}
.y12a{bottom:646.633500px;}
.y1da{bottom:648.136500px;}
.y1a8{bottom:648.631500px;}
.y12e{bottom:651.177000px;}
.y12c{bottom:651.255000px;}
.yba{bottom:653.247000px;}
.y5d{bottom:657.730500px;}
.yd9{bottom:658.954500px;}
.y103{bottom:664.077000px;}
.y8c{bottom:665.367000px;}
.y1d9{bottom:665.397000px;}
.y1a7{bottom:667.461000px;}
.y128{bottom:670.911000px;}
.y126{bottom:670.990500px;}
.y125{bottom:671.250000px;}
.yb9{bottom:672.076500px;}
.y29{bottom:672.550500px;}
.y129{bottom:675.793500px;}
.y127{bottom:675.871500px;}
.y1d8{bottom:682.657500px;}
.yd8{bottom:682.894500px;}
.y102{bottom:683.310000px;}
.y1a6{bottom:686.290500px;}
.y8b{bottom:689.307000px;}
.yb8{bottom:690.906000px;}
.y5c{bottom:691.354500px;}
.y28{bottom:692.007000px;}
.y124{bottom:695.527500px;}
.y1d7{bottom:699.916500px;}
.y123{bottom:703.747500px;}
.yef{bottom:705.739192px;}
.yd7{bottom:706.834500px;}
.y1a5{bottom:709.602000px;}
.yb7{bottom:709.735500px;}
.y5b{bottom:710.184000px;}
.y121{bottom:710.949000px;}
.y27{bottom:711.465000px;}
.y8a{bottom:713.245500px;}
.y1d6{bottom:717.177000px;}
.yb6{bottom:728.565000px;}
.y5a{bottom:729.013500px;}
.yd6{bottom:730.773000px;}
.y26{bottom:730.921500px;}
.y1d5{bottom:734.437500px;}
.y122{bottom:735.607500px;}
.y89{bottom:737.185500px;}
.y1a4{bottom:740.029500px;}
.yb5{bottom:747.394500px;}
.y59{bottom:747.843000px;}
.y25{bottom:750.379500px;}
.y1d4{bottom:751.698000px;}
.yd5{bottom:754.713000px;}
.y88{bottom:761.125500px;}
.y192{bottom:762.458815px;}
.yb4{bottom:766.224000px;}
.y58{bottom:766.671000px;}
.y120{bottom:767.226000px;}
.y1d3{bottom:768.958500px;}
.y24{bottom:769.836000px;}
.yd4{bottom:778.653000px;}
.yb3{bottom:785.053500px;}
.y87{bottom:785.064000px;}
.y57{bottom:785.500500px;}
.y1d2{bottom:786.219000px;}
.y23{bottom:789.292500px;}
.yd3{bottom:802.593000px;}
.y1d1{bottom:803.479500px;}
.yb2{bottom:803.883000px;}
.y56{bottom:804.330000px;}
.y22{bottom:808.750500px;}
.y86{bottom:816.684000px;}
.y1d0{bottom:820.740000px;}
.yb1{bottom:822.712500px;}
.y55{bottom:823.159500px;}
.yd2{bottom:826.531500px;}
.y209{bottom:827.868000px;}
.y21{bottom:828.207000px;}
.y1cf{bottom:837.999000px;}
.yb0{bottom:841.540500px;}
.y54{bottom:841.989000px;}
.y208{bottom:845.127000px;}
.y20{bottom:847.663500px;}
.yd1{bottom:850.471500px;}
.y85{bottom:853.788000px;}
.y1ce{bottom:855.259500px;}
.yaf{bottom:860.370000px;}
.y53{bottom:860.818500px;}
.y207{bottom:862.387500px;}
.y1cd{bottom:872.520000px;}
.y84{bottom:872.617500px;}
.yd0{bottom:874.411500px;}
.yae{bottom:879.199500px;}
.y52{bottom:879.648000px;}
.y1f{bottom:886.203000px;}
.y83{bottom:891.447000px;}
.y1cc{bottom:894.264000px;}
.yad{bottom:898.029000px;}
.ycf{bottom:898.350000px;}
.y51{bottom:898.477500px;}
.y1e{bottom:902.343000px;}
.y82{bottom:910.276500px;}
.y206{bottom:915.738000px;}
.yac{bottom:916.858500px;}
.y50{bottom:917.307000px;}
.yce{bottom:922.290000px;}
.y1d{bottom:922.822500px;}
.y1cb{bottom:927.888000px;}
.y81{bottom:929.106000px;}
.y205{bottom:932.998500px;}
.y1c{bottom:934.621500px;}
.yab{bottom:935.688000px;}
.y4f{bottom:936.136500px;}
.ycd{bottom:946.230000px;}
.y80{bottom:947.935500px;}
.y204{bottom:950.259000px;}
.y1ca{bottom:954.429000px;}
.yaa{bottom:954.517500px;}
.y4e{bottom:954.966000px;}
.y1b{bottom:955.101000px;}
.y7f{bottom:966.765000px;}
.y203{bottom:967.519500px;}
.ycc{bottom:970.170000px;}
.y1c9{bottom:972.003000px;}
.y4d{bottom:973.795500px;}
.ya9{bottom:977.830500px;}
.y202{bottom:984.780000px;}
.y4c{bottom:992.625000px;}
.ycb{bottom:994.108500px;}
.y7e{bottom:995.008500px;}
.y1c8{bottom:998.542500px;}
.y1a{bottom:999.732000px;}
.y200{bottom:1002.039000px;}
.y201{bottom:1002.040500px;}
.y4b{bottom:1011.454500px;}
.y1c7{bottom:1016.116500px;}
.yca{bottom:1018.048500px;}
.y1ff{bottom:1019.299500px;}
.y4a{bottom:1030.284000px;}
.y7d{bottom:1032.667500px;}
.y1c6{bottom:1033.690500px;}
.y19{bottom:1036.494000px;}
.y1fe{bottom:1036.560000px;}
.y49{bottom:1049.113500px;}
.yc9{bottom:1049.668500px;}
.y1c5{bottom:1051.266000px;}
.y7c{bottom:1051.497000px;}
.y1fd{bottom:1053.820500px;}
.y18{bottom:1064.737500px;}
.y48{bottom:1067.943000px;}
.y1fc{bottom:1071.081000px;}
.y7b{bottom:1073.308500px;}
.y7a{bottom:1083.559500px;}
.y47{bottom:1086.772500px;}
.y1fb{bottom:1088.341500px;}
.y17{bottom:1092.982500px;}
.y46{bottom:1105.602000px;}
.y14{bottom:1136.469000px;}
.y45{bottom:1168.366500px;}
.h9{height:26.110157px;}
.h1f{height:26.902724px;}
.h1a{height:26.949570px;}
.h28{height:27.488818px;}
.h23{height:27.524478px;}
.h1c{height:29.891169px;}
.h17{height:29.943218px;}
.h2{height:30.461558px;}
.h25{height:30.543131px;}
.h13{height:30.582721px;}
.h3{height:30.670772px;}
.h1d{height:32.881705px;}
.h18{height:32.938962px;}
.h26{height:33.597444px;}
.ha{height:34.813397px;}
.hf{height:35.052500px;}
.hb{height:38.734848px;}
.hc{height:39.165235px;}
.h29{height:39.434227px;}
.h1e{height:42.366080px;}
.h19{height:42.439852px;}
.hd{height:43.038432px;}
.he{height:43.516637px;}
.h6{height:43.815515px;}
.h27{height:45.043905px;}
.h10{height:46.714950px;}
.h14{height:48.635558px;}
.h15{height:48.947558px;}
.h4{height:50.931027px;}
.h8{height:54.405312px;}
.h20{height:71.608848px;}
.h22{height:71.614848px;}
.h5{height:77.379634px;}
.h7{height:77.469696px;}
.h11{height:83.986637px;}
.h12{height:87.718950px;}
.h21{height:104.488848px;}
.h1b{height:357.606443px;}
.h24{height:358.086450px;}
.h16{height:360.079587px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:207.609956px;}
.w5{width:530.394347px;}
.w3{width:530.400787px;}
.w4{width:530.403142px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x64{left:11.696528px;}
.x62{left:18.114559px;}
.x63{left:21.195214px;}
.x7a{left:32.651575px;}
.x61{left:35.443244px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x2{left:58.054042px;}
.x7b{left:85.302410px;}
.x65{left:87.429297px;}
.x85{left:238.488000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x4f{left:258.556500px;}
.x4d{left:265.792500px;}
.x4b{left:267.678000px;}
.x5{left:269.914500px;}
.x20{left:271.668000px;}
.x8{left:281.479500px;}
.x67{left:283.453500px;}
.x79{left:284.575500px;}
.x6c{left:287.938500px;}
.x5e{left:289.762500px;}
.x23{left:293.427000px;}
.x31{left:298.188000px;}
.x4c{left:302.392500px;}
.x66{left:306.810000px;}
.x7{left:308.179500px;}
.x7d{left:309.418500px;}
.x32{left:314.623500px;}
.x22{left:318.193500px;}
.x57{left:323.865000px;}
.x2e{left:328.227000px;}
.x47{left:329.319000px;}
.x24{left:331.029000px;}
.x60{left:338.314500px;}
.x4e{left:339.508500px;}
.x69{left:341.977500px;}
.x2f{left:344.388000px;}
.x58{left:346.431000px;}
.x5f{left:351.763500px;}
.x33{left:360.009000px;}
.x59{left:361.375500px;}
.x52{left:367.413000px;}
.x6d{left:370.140000px;}
.x30{left:373.032000px;}
.x2c{left:381.819000px;}
.x6e{left:383.443500px;}
.x1e{left:388.894500px;}
.x7c{left:392.611500px;}
.x2d{left:396.529500px;}
.x68{left:398.812500px;}
.x21{left:402.817500px;}
.x35{left:411.597000px;}
.x6f{left:428.086500px;}
.x36{left:429.253500px;}
.x6a{left:432.312000px;}
.x46{left:448.072500px;}
.x70{left:453.562500px;}
.x5d{left:454.998000px;}
.x71{left:466.866000px;}
.x37{left:477.133500px;}
.x45{left:479.752500px;}
.x25{left:494.326500px;}
.x1f{left:501.999000px;}
.x1a{left:503.751000px;}
.x1b{left:513.183000px;}
.x72{left:514.194000px;}
.x38{left:522.994500px;}
.x39{left:539.416500px;}
.xd{left:541.539000px;}
.xe{left:549.012000px;}
.x73{left:552.973500px;}
.x5a{left:555.997500px;}
.x17{left:557.151000px;}
.x3a{left:564.630000px;}
.x74{left:566.284500px;}
.x3b{left:572.101500px;}
.x3c{left:575.913000px;}
.x54{left:577.414500px;}
.x3d{left:590.856000px;}
.x26{left:592.672500px;}
.x55{left:596.029500px;}
.x75{left:597.615000px;}
.x27{left:600.759000px;}
.x6b{left:601.842000px;}
.x56{left:610.974000px;}
.x41{left:616.848000px;}
.x76{left:623.091000px;}
.x5b{left:626.874000px;}
.x42{left:633.759000px;}
.x77{left:636.394500px;}
.x5c{left:641.817000px;}
.x28{left:649.768500px;}
.x18{left:653.322000px;}
.x29{left:654.931500px;}
.x48{left:660.472500px;}
.x43{left:663.969000px;}
.x19{left:668.265000px;}
.x80{left:671.997000px;}
.x50{left:678.448500px;}
.x44{left:680.880000px;}
.x34{left:684.244500px;}
.x51{left:694.707000px;}
.x81{left:698.896500px;}
.x49{left:703.047000px;}
.x78{left:706.512000px;}
.x9{left:711.343500px;}
.xa{left:718.816500px;}
.x4a{left:720.018000px;}
.x7e{left:722.488500px;}
.xb{left:726.438000px;}
.xc{left:733.909500px;}
.x13{left:738.553500px;}
.x14{left:746.025000px;}
.x7f{left:749.388000px;}
.x53{left:753.418500px;}
.x84{left:761.272500px;}
.x1c{left:768.831000px;}
.x1d{left:782.097000px;}
.x15{left:783.168000px;}
.x3e{left:784.422000px;}
.x3f{left:788.232000px;}
.x2a{left:791.058000px;}
.x16{left:798.112500px;}
.x40{left:803.176500px;}
.x2b{left:805.780500px;}
.x82{left:810.300000px;}
.xf{left:813.886500px;}
.x10{left:821.359500px;}
.x11{left:825.169500px;}
.x12{left:832.642500px;}
.x83{left:837.198000px;}
@media print{
.vc{vertical-align:-16.432000pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.453333pt;}
.v5{vertical-align:-9.301333pt;}
.v8{vertical-align:-1.205333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.453333pt;}
.va{vertical-align:16.430160pt;}
.v9{vertical-align:17.360000pt;}
.vd{vertical-align:18.319467pt;}
.v1{vertical-align:19.285333pt;}
.v7{vertical-align:26.538667pt;}
.vb{vertical-align:29.221333pt;}
.v6{vertical-align:35.973333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.002525pt;}
.ls19{letter-spacing:0.131733pt;}
.ls36{letter-spacing:0.352015pt;}
.ls6{letter-spacing:0.357348pt;}
.ls49{letter-spacing:0.442457pt;}
.ls46{letter-spacing:0.447791pt;}
.ls3e{letter-spacing:0.570745pt;}
.ls3f{letter-spacing:0.576078pt;}
.ls38{letter-spacing:0.601548pt;}
.ls15{letter-spacing:0.615452pt;}
.ls16{letter-spacing:0.620785pt;}
.ls37{letter-spacing:0.659733pt;}
.ls23{letter-spacing:0.662516pt;}
.ls25{letter-spacing:0.664259pt;}
.ls1f{letter-spacing:0.665067pt;}
.ls2c{letter-spacing:0.667850pt;}
.lsa{letter-spacing:0.784508pt;}
.ls10{letter-spacing:0.789841pt;}
.ls9{letter-spacing:0.883733pt;}
.ls12{letter-spacing:0.884237pt;}
.lsd{letter-spacing:0.889067pt;}
.ls17{letter-spacing:1.009547pt;}
.ls41{letter-spacing:1.173411pt;}
.ls1c{letter-spacing:1.262881pt;}
.ls27{letter-spacing:1.325089pt;}
.ls22{letter-spacing:1.330422pt;}
.ls40{letter-spacing:1.790831pt;}
.ls43{letter-spacing:1.796164pt;}
.ls1b{letter-spacing:2.051733pt;}
.lsb{letter-spacing:2.657067pt;}
.ls24{letter-spacing:2.790400pt;}
.ls26{letter-spacing:3.318400pt;}
.ls32{letter-spacing:3.323733pt;}
.ls2a{letter-spacing:3.824508pt;}
.ls34{letter-spacing:4.107174pt;}
.ls2f{letter-spacing:7.038400pt;}
.ls45{letter-spacing:8.544078pt;}
.ls48{letter-spacing:8.549411pt;}
.ls0{letter-spacing:9.298933pt;}
.ls11{letter-spacing:9.516533pt;}
.ls39{letter-spacing:10.018422pt;}
.lsc{letter-spacing:10.423200pt;}
.ls3{letter-spacing:10.626533pt;}
.ls1a{letter-spacing:10.689867pt;}
.ls58{letter-spacing:10.776773pt;}
.ls33{letter-spacing:10.968429pt;}
.ls1e{letter-spacing:10.973762pt;}
.ls56{letter-spacing:11.320990pt;}
.ls2b{letter-spacing:11.593548pt;}
.ls28{letter-spacing:11.598881pt;}
.ls31{letter-spacing:11.635096pt;}
.ls1d{letter-spacing:11.655756pt;}
.ls20{letter-spacing:11.658682pt;}
.ls21{letter-spacing:11.661067pt;}
.ls35{letter-spacing:11.661089pt;}
.ls55{letter-spacing:11.805248pt;}
.ls54{letter-spacing:11.954133pt;}
.ls53{letter-spacing:11.959467pt;}
.ls29{letter-spacing:12.536429pt;}
.ls42{letter-spacing:12.551467pt;}
.ls3a{letter-spacing:13.283467pt;}
.ls3d{letter-spacing:13.336601pt;}
.ls50{letter-spacing:13.389734pt;}
.ls3b{letter-spacing:13.442868pt;}
.ls4f{letter-spacing:13.549136pt;}
.ls30{letter-spacing:13.654400pt;}
.ls59{letter-spacing:14.136303pt;}
.ls5{letter-spacing:14.327452pt;}
.ls4e{letter-spacing:14.505546pt;}
.lsf{letter-spacing:16.077762pt;}
.ls2d{letter-spacing:16.085348pt;}
.ls14{letter-spacing:16.136429pt;}
.ls8{letter-spacing:16.984429pt;}
.ls3c{letter-spacing:17.055971pt;}
.ls18{letter-spacing:17.256429pt;}
.ls7{letter-spacing:18.880508pt;}
.lse{letter-spacing:18.885841pt;}
.ls13{letter-spacing:18.939174pt;}
.ls2e{letter-spacing:21.773762pt;}
.ls2{letter-spacing:26.934803pt;}
.ls1{letter-spacing:55.787733pt;}
.ls52{letter-spacing:147.291200pt;}
.ls4b{letter-spacing:158.133867pt;}
.ls51{letter-spacing:171.200533pt;}
.ls44{letter-spacing:179.385600pt;}
.ls47{letter-spacing:182.043200pt;}
.ls4a{letter-spacing:182.048533pt;}
.ls4c{letter-spacing:213.099200pt;}
.ls4d{letter-spacing:213.104533pt;}
.wsc{word-spacing:-25.362056pt;}
.ws46{word-spacing:-13.283467pt;}
.ws6e{word-spacing:-11.955200pt;}
.ws29{word-spacing:-10.626800pt;}
.ws82{word-spacing:-10.185623pt;}
.ws76{word-spacing:-10.149934pt;}
.ws78{word-spacing:-10.132291pt;}
.wsd{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws3c{word-spacing:-3.782129pt;}
.ws39{word-spacing:-3.772505pt;}
.ws72{word-spacing:-3.392000pt;}
.ws6f{word-spacing:-3.390933pt;}
.ws6d{word-spacing:-3.385600pt;}
.ws85{word-spacing:-2.656693pt;}
.ws84{word-spacing:-1.912819pt;}
.ws53{word-spacing:-1.859685pt;}
.ws1d{word-spacing:-1.700284pt;}
.ws25{word-spacing:-1.540882pt;}
.ws9b{word-spacing:-1.530266pt;}
.ws9d{word-spacing:-1.434624pt;}
.ws38{word-spacing:-1.381481pt;}
.ws79{word-spacing:-1.222079pt;}
.ws9e{word-spacing:-1.195520pt;}
.ws99{word-spacing:-1.099878pt;}
.wsa1{word-spacing:-1.052058pt;}
.ws4f{word-spacing:-1.049929pt;}
.ws60{word-spacing:-1.009543pt;}
.wsa2{word-spacing:-0.908595pt;}
.ws1e{word-spacing:-0.903276pt;}
.ws66{word-spacing:-0.850142pt;}
.ws89{word-spacing:-0.743874pt;}
.ws97{word-spacing:-0.621670pt;}
.ws4e{word-spacing:-0.584473pt;}
.ws7a{word-spacing:-0.531339pt;}
.ws56{word-spacing:-0.425071pt;}
.ws2c{word-spacing:-0.371937pt;}
.ws7d{word-spacing:-0.318803pt;}
.ws1f{word-spacing:-0.265669pt;}
.ws16{word-spacing:-0.212535pt;}
.ws23{word-spacing:-0.159402pt;}
.ws8c{word-spacing:-0.143462pt;}
.ws26{word-spacing:-0.106268pt;}
.ws12{word-spacing:-0.095642pt;}
.ws43{word-spacing:-0.055366pt;}
.ws3b{word-spacing:-0.053134pt;}
.ws8e{word-spacing:-0.047821pt;}
.ws2a{word-spacing:-0.042507pt;}
.ws3d{word-spacing:-0.040382pt;}
.ws4{word-spacing:-0.037194pt;}
.ws8f{word-spacing:-0.003849pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:0.047821pt;}
.ws15{word-spacing:0.053134pt;}
.ws9a{word-spacing:0.095642pt;}
.ws2d{word-spacing:0.106268pt;}
.ws11{word-spacing:0.143462pt;}
.ws31{word-spacing:0.159402pt;}
.ws77{word-spacing:0.191283pt;}
.ws2f{word-spacing:0.212535pt;}
.wsf{word-spacing:0.239104pt;}
.ws40{word-spacing:0.265669pt;}
.ws9f{word-spacing:0.286925pt;}
.ws22{word-spacing:0.318803pt;}
.wsa5{word-spacing:0.478208pt;}
.ws55{word-spacing:0.531339pt;}
.ws6c{word-spacing:0.581666pt;}
.ws32{word-spacing:0.743874pt;}
.ws91{word-spacing:0.765133pt;}
.ws1c{word-spacing:0.797008pt;}
.ws37{word-spacing:0.956410pt;}
.ws48{word-spacing:1.009543pt;}
.ws7c{word-spacing:1.168945pt;}
.ws19{word-spacing:1.275213pt;}
.ws5f{word-spacing:1.328347pt;}
.ws4a{word-spacing:1.381481pt;}
.ws49{word-spacing:1.434614pt;}
.ws75{word-spacing:1.540882pt;}
.ws68{word-spacing:1.700284pt;}
.wsa6{word-spacing:1.721549pt;}
.ws2e{word-spacing:1.753418pt;}
.ws61{word-spacing:1.806551pt;}
.ws50{word-spacing:1.912819pt;}
.ws8b{word-spacing:1.960653pt;}
.ws67{word-spacing:2.072221pt;}
.ws69{word-spacing:2.125355pt;}
.ws24{word-spacing:2.178489pt;}
.ws0{word-spacing:2.232481pt;}
.ws8a{word-spacing:2.247578pt;}
.ws58{word-spacing:2.284756pt;}
.ws17{word-spacing:2.337890pt;}
.ws34{word-spacing:2.391024pt;}
.ws83{word-spacing:2.444158pt;}
.wse{word-spacing:2.550432pt;}
.ws87{word-spacing:2.709827pt;}
.wsa8{word-spacing:2.773606pt;}
.ws13{word-spacing:2.861926pt;}
.ws93{word-spacing:2.869248pt;}
.ws7b{word-spacing:2.922363pt;}
.ws5b{word-spacing:3.028630pt;}
.ws57{word-spacing:3.134898pt;}
.ws14{word-spacing:3.188032pt;}
.ws35{word-spacing:3.241166pt;}
.ws63{word-spacing:3.666237pt;}
.ws65{word-spacing:3.719371pt;}
.ws3e{word-spacing:3.772505pt;}
.wsaa{word-spacing:3.777843pt;}
.ws18{word-spacing:3.825638pt;}
.ws1b{word-spacing:3.878772pt;}
.ws1a{word-spacing:3.931906pt;}
.ws47{word-spacing:4.038174pt;}
.wsa9{word-spacing:4.112589pt;}
.wsa{word-spacing:4.240070pt;}
.wsb{word-spacing:4.314458pt;}
.wsa4{word-spacing:4.399514pt;}
.ws5d{word-spacing:4.622646pt;}
.ws21{word-spacing:4.728914pt;}
.ws95{word-spacing:5.021184pt;}
.ws64{word-spacing:5.047717pt;}
.ws88{word-spacing:5.100851pt;}
.ws94{word-spacing:5.403750pt;}
.ws33{word-spacing:5.419654pt;}
.ws5e{word-spacing:5.525922pt;}
.ws27{word-spacing:5.685324pt;}
.ws5c{word-spacing:5.738458pt;}
.ws86{word-spacing:5.950993pt;}
.ws30{word-spacing:6.216662pt;}
.ws2b{word-spacing:6.269796pt;}
.ws74{word-spacing:6.322930pt;}
.ws62{word-spacing:6.694867pt;}
.ws8{word-spacing:6.918010pt;}
.ws36{word-spacing:7.119938pt;}
.ws20{word-spacing:7.173072pt;}
.ws5a{word-spacing:7.332474pt;}
.ws59{word-spacing:7.385607pt;}
.ws54{word-spacing:7.438741pt;}
.ws28{word-spacing:10.587492pt;}
.ws6{word-spacing:10.823338pt;}
.ws4c{word-spacing:11.068478pt;}
.ws98{word-spacing:11.285709pt;}
.ws2{word-spacing:11.492822pt;}
.ws42{word-spacing:11.516100pt;}
.ws44{word-spacing:11.571466pt;}
.ws96{word-spacing:11.763917pt;}
.ws90{word-spacing:11.907379pt;}
.ws92{word-spacing:12.672512pt;}
.ws52{word-spacing:13.230333pt;}
.ws7{word-spacing:14.319536pt;}
.ws9c{word-spacing:14.489702pt;}
.wsa3{word-spacing:14.633165pt;}
.wsa0{word-spacing:14.769306pt;}
.ws8d{word-spacing:14.776627pt;}
.ws41{word-spacing:15.945370pt;}
.ws3a{word-spacing:16.412382pt;}
.ws3f{word-spacing:16.545493pt;}
.wsa7{word-spacing:20.276019pt;}
.ws9{word-spacing:23.208806pt;}
.ws5{word-spacing:23.858002pt;}
.ws7f{word-spacing:51.805056pt;}
.ws80{word-spacing:68.615723pt;}
.ws81{word-spacing:94.733005pt;}
.ws70{word-spacing:167.429333pt;}
.ws45{word-spacing:168.009286pt;}
.ws73{word-spacing:198.489600pt;}
.ws71{word-spacing:198.490667pt;}
.ws7e{word-spacing:400.547021pt;}
.ws6b{word-spacing:553.334477pt;}
.ws6a{word-spacing:622.770278pt;}
.ws4d{word-spacing:628.998714pt;}
.ws4b{word-spacing:742.439519pt;}
.ws51{word-spacing:1327.122842pt;}
._5{margin-left:-12.337766pt;}
._4c{margin-left:-6.933978pt;}
._8{margin-left:-5.897859pt;}
._0{margin-left:-4.797974pt;}
._21{margin-left:-3.825638pt;}
._a{margin-left:-2.247603pt;}
._4{margin-left:-1.338970pt;}
._18{width:1.439632pt;}
._6{width:2.658437pt;}
._17{width:3.870578pt;}
._2{width:11.530016pt;}
._19{width:12.451972pt;}
._f{width:13.352527pt;}
._9{width:15.015731pt;}
._b{width:16.641523pt;}
._d{width:18.171782pt;}
._10{width:19.617020pt;}
._c{width:20.589410pt;}
._24{width:21.944287pt;}
._1{width:23.059276pt;}
._14{width:24.558469pt;}
._15{width:25.865570pt;}
._3{width:27.188522pt;}
._e{width:28.692288pt;}
._4b{width:30.844832pt;}
._48{width:31.784675pt;}
._11{width:33.378691pt;}
._47{width:34.361631pt;}
._4a{width:35.616471pt;}
._16{width:38.309518pt;}
._4d{width:54.993920pt;}
._7{width:61.661897pt;}
._49{width:78.904320pt;}
._22{width:83.154501pt;}
._3d{width:178.706330pt;}
._3c{width:216.341274pt;}
._3b{width:219.210547pt;}
._3a{width:221.219021pt;}
._41{width:222.909231pt;}
._40{width:226.737477pt;}
._42{width:230.994986pt;}
._3f{width:232.214060pt;}
._46{width:233.833172pt;}
._3e{width:236.887411pt;}
._45{width:238.629373pt;}
._44{width:248.357214pt;}
._43{width:466.730982pt;}
._25{width:491.119616pt;}
._35{width:610.862899pt;}
._28{width:634.725478pt;}
._34{width:647.780557pt;}
._2a{width:662.987571pt;}
._39{width:667.307338pt;}
._2e{width:668.391322pt;}
._30{width:671.164928pt;}
._31{width:672.503910pt;}
._2f{width:683.120128pt;}
._2c{width:685.798093pt;}
._33{width:688.619520pt;}
._2d{width:690.675814pt;}
._26{width:704.926413pt;}
._32{width:710.999654pt;}
._27{width:711.908250pt;}
._2b{width:745.765376pt;}
._36{width:754.516582pt;}
._38{width:760.589850pt;}
._1c{width:787.130368pt;}
._37{width:803.867648pt;}
._29{width:807.549850pt;}
._12{width:846.072423pt;}
._1b{width:946.038886pt;}
._1e{width:1047.084237pt;}
._20{width:1073.529139pt;}
._1f{width:1099.926221pt;}
._1d{width:1188.012134pt;}
._1a{width:1189.351117pt;}
._4e{width:2234.327927pt;}
._13{width:2254.680705pt;}
._23{width:2255.581260pt;}
.fs11{font-size:29.159311pt;}
.fsd{font-size:29.210086pt;}
.fs15{font-size:29.311147pt;}
.fs5{font-size:31.880533pt;}
.fs12{font-size:32.803200pt;}
.fse{font-size:32.860320pt;}
.fs16{font-size:32.975040pt;}
.fsf{font-size:36.447089pt;}
.fsb{font-size:36.510554pt;}
.fs13{font-size:36.638933pt;}
.fs0{font-size:37.193600pt;}
.fsa{font-size:38.755733pt;}
.fs10{font-size:40.093529pt;}
.fsc{font-size:40.163344pt;}
.fs14{font-size:40.302827pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs9{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:1.545957pt;}
.y194{bottom:2.313914pt;}
.y106{bottom:3.761707pt;}
.yf1{bottom:3.768257pt;}
.y193{bottom:16.053514pt;}
.y105{bottom:16.974107pt;}
.yf0{bottom:17.003664pt;}
.y195{bottom:24.297274pt;}
.y107{bottom:25.402707pt;}
.yf2{bottom:25.446941pt;}
.y15{bottom:26.907593pt;}
.y44{bottom:28.346667pt;}
.y11f{bottom:81.480000pt;}
.ya8{bottom:82.197333pt;}
.y1fa{bottom:85.161333pt;}
.y79{bottom:86.913333pt;}
.y43{bottom:92.108000pt;}
.y13{bottom:93.018667pt;}
.yf3{bottom:95.275121pt;}
.yc8{bottom:95.282667pt;}
.yee{bottom:97.828000pt;}
.y11e{bottom:98.217333pt;}
.ya7{bottom:98.934667pt;}
.y1f9{bottom:100.502667pt;}
.y78{bottom:103.650667pt;}
.y1c4{bottom:107.917333pt;}
.y42{bottom:108.844000pt;}
.y12{bottom:108.920000pt;}
.yc7{bottom:112.020000pt;}
.yed{bottom:114.565333pt;}
.y11d{bottom:114.954667pt;}
.y190{bottom:115.394667pt;}
.y18e{bottom:115.465333pt;}
.ya6{bottom:115.672000pt;}
.y18d{bottom:115.696000pt;}
.y1f8{bottom:115.845333pt;}
.y196{bottom:117.726554pt;}
.y108{bottom:118.345107pt;}
.y191{bottom:119.734667pt;}
.y18f{bottom:119.804000pt;}
.y77{bottom:120.388000pt;}
.y1c3{bottom:124.654667pt;}
.y11{bottom:124.820000pt;}
.y41{bottom:125.581333pt;}
.yc6{bottom:128.757333pt;}
.y1f7{bottom:131.188000pt;}
.y11c{bottom:131.692000pt;}
.ya5{bottom:132.409333pt;}
.y76{bottom:137.125333pt;}
.y18b{bottom:137.276000pt;}
.y189{bottom:137.346667pt;}
.y188{bottom:137.577333pt;}
.y10{bottom:140.720000pt;}
.y1c2{bottom:141.392000pt;}
.y18c{bottom:141.616000pt;}
.y18a{bottom:141.685333pt;}
.y40{bottom:142.318667pt;}
.y199{bottom:143.602800pt;}
.y10b{bottom:143.972607pt;}
.yf7{bottom:144.223306pt;}
.yc5{bottom:145.494667pt;}
.y1f6{bottom:146.530667pt;}
.y11b{bottom:148.429333pt;}
.y75{bottom:153.862667pt;}
.yec{bottom:155.277333pt;}
.ya4{bottom:155.789333pt;}
.yf{bottom:156.621333pt;}
.y1c1{bottom:158.129333pt;}
.y3f{bottom:159.056000pt;}
.y184{bottom:159.157333pt;}
.y186{bottom:159.228000pt;}
.y183{bottom:159.458667pt;}
.y1f5{bottom:161.873333pt;}
.yc4{bottom:162.232000pt;}
.y185{bottom:163.497333pt;}
.y187{bottom:163.566667pt;}
.yf4{bottom:165.103301pt;}
.y11a{bottom:165.166667pt;}
.y74{bottom:170.600000pt;}
.ye{bottom:172.521333pt;}
.ya3{bottom:172.526667pt;}
.y1c0{bottom:174.866667pt;}
.y3e{bottom:175.793333pt;}
.yeb{bottom:177.089333pt;}
.y1f4{bottom:177.216000pt;}
.yc3{bottom:178.969333pt;}
.y181{bottom:181.038667pt;}
.y17f{bottom:181.109333pt;}
.y17e{bottom:181.340000pt;}
.y119{bottom:181.904000pt;}
.y182{bottom:185.378667pt;}
.y180{bottom:185.448000pt;}
.y73{bottom:187.337333pt;}
.y115{bottom:188.071953pt;}
.y101{bottom:188.399442pt;}
.yd{bottom:188.421333pt;}
.ya2{bottom:189.262667pt;}
.y1bf{bottom:191.604000pt;}
.y1a3{bottom:191.926805pt;}
.y3d{bottom:192.530667pt;}
.y1f3{bottom:192.558667pt;}
.yc2{bottom:195.706667pt;}
.y118{bottom:198.641333pt;}
.yea{bottom:198.830667pt;}
.y114{bottom:199.381768pt;}
.y100{bottom:199.728950pt;}
.y1a2{bottom:202.815896pt;}
.y17a{bottom:202.920000pt;}
.y17c{bottom:202.990667pt;}
.y179{bottom:203.221333pt;}
.y72{bottom:204.074667pt;}
.yc{bottom:204.322667pt;}
.ya1{bottom:206.000000pt;}
.y17b{bottom:207.260000pt;}
.y17d{bottom:207.329333pt;}
.y1f2{bottom:207.901333pt;}
.y1be{bottom:208.341333pt;}
.y3c{bottom:209.268000pt;}
.y113{bottom:210.691582pt;}
.y197{bottom:210.697847pt;}
.yff{bottom:211.058458pt;}
.y109{bottom:211.287507pt;}
.yc1{bottom:212.444000pt;}
.y1a1{bottom:213.704071pt;}
.y117{bottom:215.378667pt;}
.ye9{bottom:220.642667pt;}
.y71{bottom:220.812000pt;}
.y112{bottom:222.000485pt;}
.yfe{bottom:222.387053pt;}
.ya0{bottom:222.737333pt;}
.y1f1{bottom:223.242667pt;}
.y1a0{bottom:224.592246pt;}
.y177{bottom:224.801333pt;}
.y175{bottom:224.872000pt;}
.y1bd{bottom:225.078667pt;}
.y174{bottom:225.102667pt;}
.y3b{bottom:226.005333pt;}
.y178{bottom:229.141333pt;}
.yc0{bottom:229.181333pt;}
.y176{bottom:229.210667pt;}
.y111{bottom:233.310300pt;}
.yfd{bottom:233.716561pt;}
.yf5{bottom:234.931481pt;}
.y19f{bottom:235.480421pt;}
.y70{bottom:237.549333pt;}
.y1f0{bottom:238.585333pt;}
.y9f{bottom:239.474667pt;}
.y1bc{bottom:241.816000pt;}
.ye8{bottom:242.524000pt;}
.y3a{bottom:242.742667pt;}
.y116{bottom:242.829333pt;}
.y110{bottom:244.620114pt;}
.yfc{bottom:245.046070pt;}
.ybf{bottom:245.918667pt;}
.y19e{bottom:246.369512pt;}
.y172{bottom:246.682667pt;}
.y171{bottom:246.914667pt;}
.y173{bottom:251.022667pt;}
.y1ef{bottom:253.928000pt;}
.y6f{bottom:254.286667pt;}
.y10f{bottom:255.929929pt;}
.y9e{bottom:256.212000pt;}
.yfb{bottom:256.375578pt;}
.y19d{bottom:257.257687pt;}
.y1bb{bottom:258.552000pt;}
.y39{bottom:259.480000pt;}
.ybe{bottom:262.656000pt;}
.y104{bottom:262.766393pt;}
.ye7{bottom:264.405333pt;}
.yb{bottom:266.570667pt;}
.y10e{bottom:267.238832pt;}
.yfa{bottom:267.704173pt;}
.y19c{bottom:268.145862pt;}
.y16f{bottom:268.425333pt;}
.y16d{bottom:268.494667pt;}
.y16c{bottom:268.725333pt;}
.y1ee{bottom:269.270667pt;}
.y6e{bottom:271.024000pt;}
.y170{bottom:272.764000pt;}
.y16e{bottom:272.834667pt;}
.y9d{bottom:272.949333pt;}
.y1ba{bottom:275.289333pt;}
.y38{bottom:276.217333pt;}
.y10d{bottom:278.548646pt;}
.yf9{bottom:279.033681pt;}
.y19b{bottom:279.034037pt;}
.ybd{bottom:279.393333pt;}
.ya{bottom:282.470667pt;}
.y1ed{bottom:284.613333pt;}
.ye6{bottom:286.286667pt;}
.y6d{bottom:287.761333pt;}
.y9c{bottom:289.686667pt;}
.y10c{bottom:289.858461pt;}
.y19a{bottom:289.923128pt;}
.y168{bottom:290.306667pt;}
.yf8{bottom:290.363189pt;}
.y16a{bottom:290.376000pt;}
.y167{bottom:290.606667pt;}
.y1b9{bottom:292.026667pt;}
.y37{bottom:292.954667pt;}
.y169{bottom:294.645333pt;}
.y16b{bottom:294.716000pt;}
.ybc{bottom:296.129333pt;}
.y9{bottom:298.370667pt;}
.y1ec{bottom:299.956000pt;}
.y198{bottom:304.127127pt;}
.y10a{bottom:304.229907pt;}
.yf6{bottom:304.759661pt;}
.y9b{bottom:306.424000pt;}
.ye5{bottom:307.866667pt;}
.y1b8{bottom:308.764000pt;}
.y36{bottom:309.692000pt;}
.y165{bottom:312.188000pt;}
.y163{bottom:312.257333pt;}
.y162{bottom:312.488000pt;}
.y6c{bottom:312.866667pt;}
.y8{bottom:314.272000pt;}
.y1eb{bottom:315.298667pt;}
.y166{bottom:316.526667pt;}
.y164{bottom:316.597333pt;}
.y9a{bottom:323.161333pt;}
.y1b7{bottom:325.501333pt;}
.y35{bottom:326.429333pt;}
.ybb{bottom:329.604000pt;}
.y1ea{bottom:330.641333pt;}
.y160{bottom:334.069333pt;}
.y15e{bottom:334.138667pt;}
.y15d{bottom:334.369333pt;}
.ye4{bottom:335.973333pt;}
.y161{bottom:338.408000pt;}
.y15f{bottom:338.478667pt;}
.y7{bottom:339.470667pt;}
.y99{bottom:339.898667pt;}
.y1b6{bottom:342.238667pt;}
.y34{bottom:343.166667pt;}
.y1e9{bottom:345.984000pt;}
.y6b{bottom:346.341333pt;}
.y6{bottom:355.370667pt;}
.y15b{bottom:355.950667pt;}
.y15a{bottom:356.181333pt;}
.y98{bottom:356.636000pt;}
.y1b5{bottom:358.976000pt;}
.y33{bottom:359.904000pt;}
.y15c{bottom:360.289333pt;}
.y1e8{bottom:361.325333pt;}
.y6a{bottom:363.078667pt;}
.ye3{bottom:372.941333pt;}
.y97{bottom:373.373333pt;}
.y1b4{bottom:375.713333pt;}
.y32{bottom:376.641333pt;}
.y1e7{bottom:376.668000pt;}
.y156{bottom:377.692000pt;}
.y158{bottom:377.761333pt;}
.y155{bottom:377.993333pt;}
.y5{bottom:379.241333pt;}
.y69{bottom:379.816000pt;}
.y157{bottom:382.032000pt;}
.y159{bottom:382.101333pt;}
.y96{bottom:390.110667pt;}
.y1e6{bottom:392.010667pt;}
.y1b3{bottom:392.450667pt;}
.y31{bottom:393.378667pt;}
.ye2{bottom:394.221333pt;}
.y4{bottom:395.141333pt;}
.y68{bottom:396.553333pt;}
.y153{bottom:399.573333pt;}
.y152{bottom:399.804000pt;}
.y154{bottom:403.913333pt;}
.y95{bottom:406.848000pt;}
.y1e5{bottom:407.353333pt;}
.y1b2{bottom:409.188000pt;}
.y30{bottom:410.116000pt;}
.y3{bottom:411.042667pt;}
.y67{bottom:413.290667pt;}
.ye1{bottom:415.501333pt;}
.y150{bottom:421.314667pt;}
.y14e{bottom:421.385333pt;}
.y14d{bottom:421.616000pt;}
.y1e4{bottom:422.696000pt;}
.y94{bottom:423.585333pt;}
.y151{bottom:425.654667pt;}
.y14f{bottom:425.724000pt;}
.y1b1{bottom:425.925333pt;}
.y2f{bottom:426.853333pt;}
.y2{bottom:426.942667pt;}
.y66{bottom:430.028000pt;}
.ye0{bottom:436.780000pt;}
.y1e3{bottom:438.038667pt;}
.y93{bottom:440.322667pt;}
.y1b0{bottom:442.662667pt;}
.y1{bottom:442.842667pt;}
.y149{bottom:443.196000pt;}
.y14b{bottom:443.266667pt;}
.y148{bottom:443.497333pt;}
.y2e{bottom:443.590667pt;}
.y65{bottom:446.765333pt;}
.y14a{bottom:447.536000pt;}
.y14c{bottom:447.605333pt;}
.y1e2{bottom:453.381333pt;}
.y92{bottom:457.060000pt;}
.ydf{bottom:458.060000pt;}
.y1af{bottom:459.400000pt;}
.y2d{bottom:460.328000pt;}
.y64{bottom:463.502667pt;}
.y146{bottom:465.077333pt;}
.y144{bottom:465.148000pt;}
.y143{bottom:465.378667pt;}
.y1e1{bottom:468.724000pt;}
.y147{bottom:469.417333pt;}
.y145{bottom:469.486667pt;}
.y91{bottom:473.797333pt;}
.y1ae{bottom:476.137333pt;}
.y2c{bottom:477.065333pt;}
.yde{bottom:479.340000pt;}
.y63{bottom:480.240000pt;}
.y1e0{bottom:484.065333pt;}
.y13f{bottom:486.958667pt;}
.y141{bottom:487.029333pt;}
.y13e{bottom:487.260000pt;}
.y90{bottom:490.534667pt;}
.y140{bottom:491.298667pt;}
.y142{bottom:491.368000pt;}
.y1ad{bottom:492.874667pt;}
.y62{bottom:496.977333pt;}
.y2b{bottom:497.786667pt;}
.y1df{bottom:499.408000pt;}
.ydd{bottom:500.620000pt;}
.y13a{bottom:508.840000pt;}
.y13c{bottom:508.910667pt;}
.y139{bottom:509.141333pt;}
.y1ac{bottom:509.612000pt;}
.y8f{bottom:511.257333pt;}
.y13b{bottom:513.180000pt;}
.y13d{bottom:513.249333pt;}
.y61{bottom:513.714667pt;}
.y1de{bottom:514.750667pt;}
.ydc{bottom:521.898667pt;}
.y1ab{bottom:526.349333pt;}
.y1dd{bottom:530.093333pt;}
.y60{bottom:530.452000pt;}
.y135{bottom:530.721333pt;}
.y137{bottom:530.792000pt;}
.y134{bottom:531.022667pt;}
.y136{bottom:535.061333pt;}
.y138{bottom:535.130667pt;}
.y1aa{bottom:543.086667pt;}
.ydb{bottom:543.178667pt;}
.y1dc{bottom:545.436000pt;}
.y5f{bottom:547.189333pt;}
.y8e{bottom:548.877333pt;}
.y130{bottom:552.602667pt;}
.y132{bottom:552.673333pt;}
.y12f{bottom:552.904000pt;}
.y131{bottom:556.942667pt;}
.y133{bottom:557.012000pt;}
.y1a9{bottom:559.824000pt;}
.y1db{bottom:560.778667pt;}
.y5e{bottom:563.926667pt;}
.yda{bottom:564.458667pt;}
.y2a{bottom:564.586667pt;}
.y8d{bottom:570.157333pt;}
.y12d{bottom:574.484000pt;}
.y12b{bottom:574.554667pt;}
.y12a{bottom:574.785333pt;}
.y1da{bottom:576.121333pt;}
.y1a8{bottom:576.561333pt;}
.y12e{bottom:578.824000pt;}
.y12c{bottom:578.893333pt;}
.yba{bottom:580.664000pt;}
.y5d{bottom:584.649333pt;}
.yd9{bottom:585.737333pt;}
.y103{bottom:590.290667pt;}
.y8c{bottom:591.437333pt;}
.y1d9{bottom:591.464000pt;}
.y1a7{bottom:593.298667pt;}
.y128{bottom:596.365333pt;}
.y126{bottom:596.436000pt;}
.y125{bottom:596.666667pt;}
.yb9{bottom:597.401333pt;}
.y29{bottom:597.822667pt;}
.y129{bottom:600.705333pt;}
.y127{bottom:600.774667pt;}
.y1d8{bottom:606.806667pt;}
.yd8{bottom:607.017333pt;}
.y102{bottom:607.386667pt;}
.y1a6{bottom:610.036000pt;}
.y8b{bottom:612.717333pt;}
.yb8{bottom:614.138667pt;}
.y5c{bottom:614.537333pt;}
.y28{bottom:615.117333pt;}
.y124{bottom:618.246667pt;}
.y1d7{bottom:622.148000pt;}
.y123{bottom:625.553333pt;}
.yef{bottom:627.323726pt;}
.yd7{bottom:628.297333pt;}
.y1a5{bottom:630.757333pt;}
.yb7{bottom:630.876000pt;}
.y5b{bottom:631.274667pt;}
.y121{bottom:631.954667pt;}
.y27{bottom:632.413333pt;}
.y8a{bottom:633.996000pt;}
.y1d6{bottom:637.490667pt;}
.yb6{bottom:647.613333pt;}
.y5a{bottom:648.012000pt;}
.yd6{bottom:649.576000pt;}
.y26{bottom:649.708000pt;}
.y1d5{bottom:652.833333pt;}
.y122{bottom:653.873333pt;}
.y89{bottom:655.276000pt;}
.y1a4{bottom:657.804000pt;}
.yb5{bottom:664.350667pt;}
.y59{bottom:664.749333pt;}
.y25{bottom:667.004000pt;}
.y1d4{bottom:668.176000pt;}
.yd5{bottom:670.856000pt;}
.y88{bottom:676.556000pt;}
.y192{bottom:677.741168pt;}
.yb4{bottom:681.088000pt;}
.y58{bottom:681.485333pt;}
.y120{bottom:681.978667pt;}
.y1d3{bottom:683.518667pt;}
.y24{bottom:684.298667pt;}
.yd4{bottom:692.136000pt;}
.yb3{bottom:697.825333pt;}
.y87{bottom:697.834667pt;}
.y57{bottom:698.222667pt;}
.y1d2{bottom:698.861333pt;}
.y23{bottom:701.593333pt;}
.yd3{bottom:713.416000pt;}
.y1d1{bottom:714.204000pt;}
.yb2{bottom:714.562667pt;}
.y56{bottom:714.960000pt;}
.y22{bottom:718.889333pt;}
.y86{bottom:725.941333pt;}
.y1d0{bottom:729.546667pt;}
.yb1{bottom:731.300000pt;}
.y55{bottom:731.697333pt;}
.yd2{bottom:734.694667pt;}
.y209{bottom:735.882667pt;}
.y21{bottom:736.184000pt;}
.y1cf{bottom:744.888000pt;}
.yb0{bottom:748.036000pt;}
.y54{bottom:748.434667pt;}
.y208{bottom:751.224000pt;}
.y20{bottom:753.478667pt;}
.yd1{bottom:755.974667pt;}
.y85{bottom:758.922667pt;}
.y1ce{bottom:760.230667pt;}
.yaf{bottom:764.773333pt;}
.y53{bottom:765.172000pt;}
.y207{bottom:766.566667pt;}
.y1cd{bottom:775.573333pt;}
.y84{bottom:775.660000pt;}
.yd0{bottom:777.254667pt;}
.yae{bottom:781.510667pt;}
.y52{bottom:781.909333pt;}
.y1f{bottom:787.736000pt;}
.y83{bottom:792.397333pt;}
.y1cc{bottom:794.901333pt;}
.yad{bottom:798.248000pt;}
.ycf{bottom:798.533333pt;}
.y51{bottom:798.646667pt;}
.y1e{bottom:802.082667pt;}
.y82{bottom:809.134667pt;}
.y206{bottom:813.989333pt;}
.yac{bottom:814.985333pt;}
.y50{bottom:815.384000pt;}
.yce{bottom:819.813333pt;}
.y1d{bottom:820.286667pt;}
.y1cb{bottom:824.789333pt;}
.y81{bottom:825.872000pt;}
.y205{bottom:829.332000pt;}
.y1c{bottom:830.774667pt;}
.yab{bottom:831.722667pt;}
.y4f{bottom:832.121333pt;}
.ycd{bottom:841.093333pt;}
.y80{bottom:842.609333pt;}
.y204{bottom:844.674667pt;}
.y1ca{bottom:848.381333pt;}
.yaa{bottom:848.460000pt;}
.y4e{bottom:848.858667pt;}
.y1b{bottom:848.978667pt;}
.y7f{bottom:859.346667pt;}
.y203{bottom:860.017333pt;}
.ycc{bottom:862.373333pt;}
.y1c9{bottom:864.002667pt;}
.y4d{bottom:865.596000pt;}
.ya9{bottom:869.182667pt;}
.y202{bottom:875.360000pt;}
.y4c{bottom:882.333333pt;}
.ycb{bottom:883.652000pt;}
.y7e{bottom:884.452000pt;}
.y1c8{bottom:887.593333pt;}
.y1a{bottom:888.650667pt;}
.y200{bottom:890.701333pt;}
.y201{bottom:890.702667pt;}
.y4b{bottom:899.070667pt;}
.y1c7{bottom:903.214667pt;}
.yca{bottom:904.932000pt;}
.y1ff{bottom:906.044000pt;}
.y4a{bottom:915.808000pt;}
.y7d{bottom:917.926667pt;}
.y1c6{bottom:918.836000pt;}
.y19{bottom:921.328000pt;}
.y1fe{bottom:921.386667pt;}
.y49{bottom:932.545333pt;}
.yc9{bottom:933.038667pt;}
.y1c5{bottom:934.458667pt;}
.y7c{bottom:934.664000pt;}
.y1fd{bottom:936.729333pt;}
.y18{bottom:946.433333pt;}
.y48{bottom:949.282667pt;}
.y1fc{bottom:952.072000pt;}
.y7b{bottom:954.052000pt;}
.y7a{bottom:963.164000pt;}
.y47{bottom:966.020000pt;}
.y1fb{bottom:967.414667pt;}
.y17{bottom:971.540000pt;}
.y46{bottom:982.757333pt;}
.y14{bottom:1010.194667pt;}
.y45{bottom:1038.548000pt;}
.h9{height:23.209028pt;}
.h1f{height:23.913533pt;}
.h1a{height:23.955173pt;}
.h28{height:24.434505pt;}
.h23{height:24.466203pt;}
.h1c{height:26.569928pt;}
.h17{height:26.616194pt;}
.h2{height:27.076941pt;}
.h25{height:27.149450pt;}
.h13{height:27.184641pt;}
.h3{height:27.262909pt;}
.h1d{height:29.228183pt;}
.h18{height:29.279077pt;}
.h26{height:29.864395pt;}
.ha{height:30.945242pt;}
.hf{height:31.157778pt;}
.hb{height:34.430976pt;}
.hc{height:34.813542pt;}
.h29{height:35.052646pt;}
.h1e{height:37.658738pt;}
.h19{height:37.724313pt;}
.hd{height:38.256384pt;}
.he{height:38.681455pt;}
.h6{height:38.947124pt;}
.h27{height:40.039026pt;}
.h10{height:41.524400pt;}
.h14{height:43.231607pt;}
.h15{height:43.508941pt;}
.h4{height:45.272024pt;}
.h8{height:48.360277pt;}
.h20{height:63.652309pt;}
.h22{height:63.657643pt;}
.h5{height:68.781897pt;}
.h7{height:68.861952pt;}
.h11{height:74.654788pt;}
.h12{height:77.972400pt;}
.h21{height:92.878976pt;}
.h1b{height:317.872393pt;}
.h24{height:318.299066pt;}
.h16{height:320.070744pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:184.542183pt;}
.w5{width:471.461642pt;}
.w3{width:471.467366pt;}
.w4{width:471.469459pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x64{left:10.396914pt;}
.x62{left:16.101831pt;}
.x63{left:18.840191pt;}
.x7a{left:29.023623pt;}
.x61{left:31.505106pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x2{left:51.603593pt;}
.x7b{left:75.824364pt;}
.x65{left:77.714931pt;}
.x85{left:211.989333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x4f{left:229.828000pt;}
.x4d{left:236.260000pt;}
.x4b{left:237.936000pt;}
.x5{left:239.924000pt;}
.x20{left:241.482667pt;}
.x8{left:250.204000pt;}
.x67{left:251.958667pt;}
.x79{left:252.956000pt;}
.x6c{left:255.945333pt;}
.x5e{left:257.566667pt;}
.x23{left:260.824000pt;}
.x31{left:265.056000pt;}
.x4c{left:268.793333pt;}
.x66{left:272.720000pt;}
.x7{left:273.937333pt;}
.x7d{left:275.038667pt;}
.x32{left:279.665333pt;}
.x22{left:282.838667pt;}
.x57{left:287.880000pt;}
.x2e{left:291.757333pt;}
.x47{left:292.728000pt;}
.x24{left:294.248000pt;}
.x60{left:300.724000pt;}
.x4e{left:301.785333pt;}
.x69{left:303.980000pt;}
.x2f{left:306.122667pt;}
.x58{left:307.938667pt;}
.x5f{left:312.678667pt;}
.x33{left:320.008000pt;}
.x59{left:321.222667pt;}
.x52{left:326.589333pt;}
.x6d{left:329.013333pt;}
.x30{left:331.584000pt;}
.x2c{left:339.394667pt;}
.x6e{left:340.838667pt;}
.x1e{left:345.684000pt;}
.x7c{left:348.988000pt;}
.x2d{left:352.470667pt;}
.x68{left:354.500000pt;}
.x21{left:358.060000pt;}
.x35{left:365.864000pt;}
.x6f{left:380.521333pt;}
.x36{left:381.558667pt;}
.x6a{left:384.277333pt;}
.x46{left:398.286667pt;}
.x70{left:403.166667pt;}
.x5d{left:404.442667pt;}
.x71{left:414.992000pt;}
.x37{left:424.118667pt;}
.x45{left:426.446667pt;}
.x25{left:439.401333pt;}
.x1f{left:446.221333pt;}
.x1a{left:447.778667pt;}
.x1b{left:456.162667pt;}
.x72{left:457.061333pt;}
.x38{left:464.884000pt;}
.x39{left:479.481333pt;}
.xd{left:481.368000pt;}
.xe{left:488.010667pt;}
.x73{left:491.532000pt;}
.x5a{left:494.220000pt;}
.x17{left:495.245333pt;}
.x3a{left:501.893333pt;}
.x74{left:503.364000pt;}
.x3b{left:508.534667pt;}
.x3c{left:511.922667pt;}
.x54{left:513.257333pt;}
.x3d{left:525.205333pt;}
.x26{left:526.820000pt;}
.x55{left:529.804000pt;}
.x75{left:531.213333pt;}
.x27{left:534.008000pt;}
.x6b{left:534.970667pt;}
.x56{left:543.088000pt;}
.x41{left:548.309333pt;}
.x76{left:553.858667pt;}
.x5b{left:557.221333pt;}
.x42{left:563.341333pt;}
.x77{left:565.684000pt;}
.x5c{left:570.504000pt;}
.x28{left:577.572000pt;}
.x18{left:580.730667pt;}
.x29{left:582.161333pt;}
.x48{left:587.086667pt;}
.x43{left:590.194667pt;}
.x19{left:594.013333pt;}
.x80{left:597.330667pt;}
.x50{left:603.065333pt;}
.x44{left:605.226667pt;}
.x34{left:608.217333pt;}
.x51{left:617.517333pt;}
.x81{left:621.241333pt;}
.x49{left:624.930667pt;}
.x78{left:628.010667pt;}
.x9{left:632.305333pt;}
.xa{left:638.948000pt;}
.x4a{left:640.016000pt;}
.x7e{left:642.212000pt;}
.xb{left:645.722667pt;}
.xc{left:652.364000pt;}
.x13{left:656.492000pt;}
.x14{left:663.133333pt;}
.x7f{left:666.122667pt;}
.x53{left:669.705333pt;}
.x84{left:676.686667pt;}
.x1c{left:683.405333pt;}
.x1d{left:695.197333pt;}
.x15{left:696.149333pt;}
.x3e{left:697.264000pt;}
.x3f{left:700.650667pt;}
.x2a{left:703.162667pt;}
.x16{left:709.433333pt;}
.x40{left:713.934667pt;}
.x2b{left:716.249333pt;}
.x82{left:720.266667pt;}
.xf{left:723.454667pt;}
.x10{left:730.097333pt;}
.x11{left:733.484000pt;}
.x12{left:740.126667pt;}
.x83{left:744.176000pt;}
}




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