
    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_d8142e79e72b019e92a5ff97.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_13996db4f5fb25aa9a62128c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_51f4fc615548bd283d4da557.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_8205db5300a18e36ca354249.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9462f7afe1874a889a3a8bbc.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_9f287e2a0c5c7d50a3a45e57.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722000;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_3382b70935e4af81d8b1612e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.665000;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_4aa31943c0e13f4f4112d4d8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e19cdc4c8f6ebc1cff5c40c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_d5f7ffcad1a4eea1f9887735.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.499000;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_752349bb2c555be3b8df61e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.486000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e9fdb5f60b75a80dbc4b706d.woff2')format("woff");}.ffc{font-family:ffc;line-height:3.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;}
.m2{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);}
.m12{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);}
.m28{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);}
.m27{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);}
.mb{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);}
.m1e{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);}
.ma{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);}
.m25{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);}
.mc{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);}
.m15{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);}
.m17{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);}
.m1b{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);}
.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);}
.m1f{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);}
.m7{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m29{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);}
.m13{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);}
.m9{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);}
.m24{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);}
.m1d{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);}
.m22{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);}
.md{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);}
.m16{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m4{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);}
.m20{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);}
.m6{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);}
.m23{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);}
.m1c{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);}
.m21{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);}
.m18{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v10{vertical-align:-51.174000px;}
.v9{vertical-align:-40.164000px;}
.v2{vertical-align:-11.952000px;}
.v4{vertical-align:-10.854000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.306000px;}
.v7{vertical-align:17.280000px;}
.v13{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v11{vertical-align:32.880000px;}
.v5{vertical-align:40.464000px;}
.v8{vertical-align:42.414000px;}
.vd{vertical-align:53.256000px;}
.vc{vertical-align:65.016000px;}
.ve{vertical-align:66.378000px;}
.v12{vertical-align:85.284000px;}
.va{vertical-align:103.410000px;}
.vf{vertical-align:116.196000px;}
.vb{vertical-align:131.400000px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000800px;}
.lsb{letter-spacing:0.000819px;}
.lsc{letter-spacing:0.001746px;}
.lsd{letter-spacing:0.001834px;}
.ls77{letter-spacing:0.004800px;}
.ls50{letter-spacing:0.136090px;}
.ls2e{letter-spacing:0.146570px;}
.lse{letter-spacing:0.148766px;}
.ls32{letter-spacing:0.152570px;}
.ls56{letter-spacing:0.154766px;}
.ls8{letter-spacing:0.260570px;}
.ls38{letter-spacing:0.266570px;}
.ls1f{letter-spacing:0.534017px;}
.ls46{letter-spacing:0.542815px;}
.ls4d{letter-spacing:0.548815px;}
.ls65{letter-spacing:0.734012px;}
.ls2{letter-spacing:0.743675px;}
.ls60{letter-spacing:0.745200px;}
.ls3f{letter-spacing:0.748200px;}
.ls58{letter-spacing:0.749675px;}
.ls3d{letter-spacing:1.044337px;}
.ls68{letter-spacing:1.160383px;}
.ls5f{letter-spacing:1.452571px;}
.ls23{letter-spacing:1.496383px;}
.ls16{letter-spacing:2.080200px;}
.ls1e{letter-spacing:2.082017px;}
.ls30{letter-spacing:2.240383px;}
.ls59{letter-spacing:2.246383px;}
.ls24{letter-spacing:2.314741px;}
.ls1c{letter-spacing:2.354383px;}
.ls62{letter-spacing:2.492383px;}
.ls1a{letter-spacing:2.674200px;}
.ls12{letter-spacing:2.675675px;}
.ls57{letter-spacing:3.142494px;}
.ls37{letter-spacing:3.733200px;}
.ls1d{letter-spacing:4.011886px;}
.ls2b{letter-spacing:4.012457px;}
.ls14{letter-spacing:4.231834px;}
.ls27{letter-spacing:4.756457px;}
.ls18{letter-spacing:7.222766px;}
.ls41{letter-spacing:8.816383px;}
.ls5b{letter-spacing:9.240783px;}
.ls61{letter-spacing:9.254012px;}
.ls64{letter-spacing:9.566383px;}
.ls5e{letter-spacing:10.340400px;}
.ls0{letter-spacing:10.461300px;}
.ls40{letter-spacing:10.760143px;}
.ls4{letter-spacing:11.960850px;}
.ls4b{letter-spacing:12.339483px;}
.ls47{letter-spacing:12.342783px;}
.ls45{letter-spacing:12.345483px;}
.ls31{letter-spacing:13.086783px;}
.ls34{letter-spacing:13.092783px;}
.ls21{letter-spacing:13.115675px;}
.ls73{letter-spacing:13.448400px;}
.ls75{letter-spacing:13.454400px;}
.ls76{letter-spacing:13.678971px;}
.ls26{letter-spacing:13.989483px;}
.ls6d{letter-spacing:14.094088px;}
.ls4f{letter-spacing:14.107042px;}
.ls52{letter-spacing:14.346144px;}
.ls4a{letter-spacing:14.612143px;}
.ls74{letter-spacing:14.644518px;}
.ls53{letter-spacing:14.764573px;}
.ls7{letter-spacing:14.943900px;}
.ls6{letter-spacing:15.063451px;}
.ls22{letter-spacing:15.177483px;}
.ls4c{letter-spacing:15.355200px;}
.ls55{letter-spacing:15.422105px;}
.ls6a{letter-spacing:15.688766px;}
.ls25{letter-spacing:15.925142px;}
.ls63{letter-spacing:16.242571px;}
.ls71{letter-spacing:16.434600px;}
.ls6c{letter-spacing:16.440600px;}
.ls3c{letter-spacing:17.319483px;}
.ls44{letter-spacing:17.325483px;}
.ls48{letter-spacing:18.022741px;}
.ls5a{letter-spacing:18.069483px;}
.ls35{letter-spacing:18.096775px;}
.ls5d{letter-spacing:18.396337px;}
.ls67{letter-spacing:18.816571px;}
.ls4e{letter-spacing:18.829314px;}
.ls2a{letter-spacing:18.969483px;}
.ls2c{letter-spacing:19.263483px;}
.ls20{letter-spacing:19.269483px;}
.ls3e{letter-spacing:19.294954px;}
.ls43{letter-spacing:20.341200px;}
.ls33{letter-spacing:20.859483px;}
.ls29{letter-spacing:20.905142px;}
.ls54{letter-spacing:21.357886px;}
.ls9{letter-spacing:21.363886px;}
.ls69{letter-spacing:23.762383px;}
.ls51{letter-spacing:24.135886px;}
.ls1{letter-spacing:25.105654px;}
.ls2f{letter-spacing:25.845483px;}
.ls42{letter-spacing:26.168383px;}
.ls3{letter-spacing:28.495200px;}
.ls36{letter-spacing:83.607483px;}
.ls3a{letter-spacing:94.287986px;}
.ls3b{letter-spacing:102.057986px;}
.ls72{letter-spacing:206.945866px;}
.ls6f{letter-spacing:209.981866px;}
.ls6e{letter-spacing:226.499866px;}
.ls70{letter-spacing:229.877866px;}
.ls6b{letter-spacing:251.195866px;}
.ls49{letter-spacing:417.789483px;}
.lsf{letter-spacing:610.861142px;}
.ls1b{letter-spacing:622.166725px;}
.ls10{letter-spacing:622.339142px;}
.ls13{letter-spacing:636.385142px;}
.ls15{letter-spacing:637.902571px;}
.ls11{letter-spacing:645.733142px;}
.ls19{letter-spacing:646.512571px;}
.ls17{letter-spacing:656.551142px;}
.ls28{letter-spacing:817.090741px;}
.ls5c{letter-spacing:830.682783px;}
.ls66{letter-spacing:835.615200px;}
.ls39{letter-spacing:939.789886px;}
.ls2d{letter-spacing:1003.739675px;}
.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;}
}
.ws17{word-spacing:-14.943900px;}
.ws44{word-spacing:-13.449600px;}
.ws25{word-spacing:-11.955150px;}
.ws4f{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws64{word-spacing:-4.961375px;}
.ws5b{word-spacing:-4.235945px;}
.wsa8{word-spacing:-3.108331px;}
.ws80{word-spacing:-3.048556px;}
.ws45{word-spacing:-2.630126px;}
.ws65{word-spacing:-2.577000px;}
.ws6b{word-spacing:-2.573400px;}
.ws6e{word-spacing:-2.571000px;}
.ws97{word-spacing:-2.331248px;}
.ws2d{word-spacing:-1.972595px;}
.ws7c{word-spacing:-1.554166px;}
.ws9d{word-spacing:-1.494390px;}
.ws59{word-spacing:-1.434614px;}
.ws5a{word-spacing:-1.374839px;}
.ws39{word-spacing:-1.315063px;}
.ws4c{word-spacing:-1.195512px;}
.ws4b{word-spacing:-1.135736px;}
.ws8e{word-spacing:-1.016185px;}
.ws81{word-spacing:-0.956410px;}
.ws82{word-spacing:-0.896634px;}
.ws3b{word-spacing:-0.836858px;}
.wsd6{word-spacing:-0.753178px;}
.ws53{word-spacing:-0.657532px;}
.ws8d{word-spacing:-0.597756px;}
.ws3a{word-spacing:-0.537980px;}
.ws1a{word-spacing:-0.478205px;}
.ws47{word-spacing:-0.418429px;}
.ws36{word-spacing:-0.358654px;}
.wsa{word-spacing:-0.298878px;}
.wsd5{word-spacing:-0.268992px;}
.wsd{word-spacing:-0.239102px;}
.wsc{word-spacing:-0.179327px;}
.wsc8{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.ws42{word-spacing:-0.107597px;}
.ws2b{word-spacing:-0.059776px;}
.wscd{word-spacing:-0.053798px;}
.ws26{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.wsd9{word-spacing:-0.030115px;}
.wsdf{word-spacing:-0.026304px;}
.wsb2{word-spacing:-0.005933px;}
.wsbd{word-spacing:-0.003312px;}
.wsbb{word-spacing:-0.000864px;}
.ws0{word-spacing:0.000000px;}
.wsb8{word-spacing:0.000826px;}
.wsd4{word-spacing:0.053798px;}
.ws9{word-spacing:0.059776px;}
.wsc7{word-spacing:0.107597px;}
.ws2c{word-spacing:0.119551px;}
.ws79{word-spacing:0.161395px;}
.wsb{word-spacing:0.179327px;}
.ws7a{word-spacing:0.215194px;}
.wse{word-spacing:0.239102px;}
.wse0{word-spacing:0.268992px;}
.ws2a{word-spacing:0.298878px;}
.ws1e{word-spacing:0.358654px;}
.ws1c{word-spacing:0.418429px;}
.ws91{word-spacing:0.478205px;}
.ws7b{word-spacing:0.591782px;}
.ws37{word-spacing:0.597756px;}
.ws9b{word-spacing:0.657532px;}
.wsb4{word-spacing:0.670800px;}
.wsb9{word-spacing:0.672000px;}
.ws28{word-spacing:0.717307px;}
.ws63{word-spacing:0.742009px;}
.ws93{word-spacing:0.743868px;}
.ws34{word-spacing:0.836858px;}
.ws38{word-spacing:0.896634px;}
.wsce{word-spacing:0.914573px;}
.ws4e{word-spacing:0.956410px;}
.ws85{word-spacing:1.016185px;}
.ws95{word-spacing:1.075961px;}
.ws72{word-spacing:1.135736px;}
.ws8c{word-spacing:1.180500px;}
.wsd0{word-spacing:1.183565px;}
.ws74{word-spacing:1.195512px;}
.ws84{word-spacing:1.255288px;}
.wse4{word-spacing:1.344960px;}
.ws96{word-spacing:1.374839px;}
.ws30{word-spacing:1.434614px;}
.ws12{word-spacing:1.494390px;}
.wsc5{word-spacing:1.554166px;}
.ws66{word-spacing:1.599000px;}
.wsab{word-spacing:1.673717px;}
.ws27{word-spacing:1.733492px;}
.ws9e{word-spacing:1.793268px;}
.ws54{word-spacing:1.829146px;}
.ws7f{word-spacing:1.853044px;}
.ws56{word-spacing:1.972595px;}
.ws29{word-spacing:2.032370px;}
.ws58{word-spacing:2.092146px;}
.ws1b{word-spacing:2.151922px;}
.ws77{word-spacing:2.211697px;}
.ws8a{word-spacing:2.271473px;}
.ws8f{word-spacing:2.313331px;}
.ws48{word-spacing:2.331248px;}
.wsa6{word-spacing:2.401606px;}
.ws21{word-spacing:2.450800px;}
.ws1f{word-spacing:2.480621px;}
.ws6{word-spacing:2.510252px;}
.ws2{word-spacing:2.514457px;}
.wscb{word-spacing:2.582323px;}
.ws32{word-spacing:2.630126px;}
.ws90{word-spacing:2.689902px;}
.ws83{word-spacing:2.749678px;}
.ws19{word-spacing:2.869229px;}
.ws7{word-spacing:2.869236px;}
.ws4a{word-spacing:2.988780px;}
.ws23{word-spacing:3.048556px;}
.wsa0{word-spacing:3.108331px;}
.ws3c{word-spacing:3.168107px;}
.wsda{word-spacing:3.220397px;}
.wsd7{word-spacing:3.221741px;}
.wsa9{word-spacing:3.287658px;}
.ws88{word-spacing:3.347434px;}
.wsc4{word-spacing:3.395263px;}
.ws31{word-spacing:3.407209px;}
.ws3f{word-spacing:3.466985px;}
.wse5{word-spacing:3.496896px;}
.ws2f{word-spacing:3.646312px;}
.ws98{word-spacing:3.765863px;}
.ws40{word-spacing:3.825638px;}
.ws75{word-spacing:3.885414px;}
.ws8{word-spacing:3.952101px;}
.ws5d{word-spacing:3.998530px;}
.wsa7{word-spacing:3.998534px;}
.ws6f{word-spacing:3.999000px;}
.ws5e{word-spacing:3.999694px;}
.wsf{word-spacing:4.004965px;}
.ws10{word-spacing:4.025706px;}
.ws7e{word-spacing:4.064741px;}
.ws99{word-spacing:4.303843px;}
.wsc3{word-spacing:4.303854px;}
.ws18{word-spacing:4.303872px;}
.wsa1{word-spacing:4.423394px;}
.ws8b{word-spacing:4.483170px;}
.ws7d{word-spacing:4.542946px;}
.ws87{word-spacing:4.602721px;}
.ws9a{word-spacing:4.782048px;}
.ws78{word-spacing:4.841824px;}
.ws2e{word-spacing:4.901599px;}
.ws43{word-spacing:4.949453px;}
.ws11{word-spacing:5.021150px;}
.wsaa{word-spacing:5.260253px;}
.ws50{word-spacing:5.320028px;}
.wsca{word-spacing:5.326042px;}
.ws3d{word-spacing:5.559131px;}
.ws1d{word-spacing:5.618906px;}
.ws33{word-spacing:5.798233px;}
.ws55{word-spacing:5.917784px;}
.ws9f{word-spacing:5.974500px;}
.ws89{word-spacing:5.980500px;}
.ws92{word-spacing:6.097111px;}
.ws41{word-spacing:6.186816px;}
.ws49{word-spacing:6.336214px;}
.wsac{word-spacing:6.455765px;}
.ws94{word-spacing:6.573000px;}
.ws62{word-spacing:6.578530px;}
.ws35{word-spacing:6.635092px;}
.ws57{word-spacing:6.814418px;}
.ws86{word-spacing:6.933970px;}
.wse3{word-spacing:7.101389px;}
.wsc6{word-spacing:7.531726px;}
.wsa4{word-spacing:7.591501px;}
.wsa5{word-spacing:7.651277px;}
.ws73{word-spacing:7.711052px;}
.ws46{word-spacing:7.830604px;}
.ws51{word-spacing:8.977939px;}
.ws67{word-spacing:8.978530px;}
.ws5c{word-spacing:8.981441px;}
.ws52{word-spacing:8.983939px;}
.ws60{word-spacing:8.984530px;}
.ws61{word-spacing:8.985694px;}
.ws15{word-spacing:9.026116px;}
.ws70{word-spacing:9.585000px;}
.ws14{word-spacing:9.743423px;}
.ws68{word-spacing:10.041694px;}
.ws69{word-spacing:10.047694px;}
.ws3{word-spacing:10.413364px;}
.ws24{word-spacing:11.904472px;}
.ws6c{word-spacing:12.955613px;}
.wsd1{word-spacing:13.288205px;}
.wsde{word-spacing:13.386720px;}
.wsdc{word-spacing:13.388534px;}
.wsd8{word-spacing:13.389581px;}
.wsdb{word-spacing:13.390646px;}
.wscc{word-spacing:13.391942px;}
.wsd3{word-spacing:13.395802px;}
.wse1{word-spacing:13.664794px;}
.wsc9{word-spacing:14.072940px;}
.ws3e{word-spacing:14.884124px;}
.ws76{word-spacing:15.780758px;}
.wse2{word-spacing:16.620883px;}
.wsd2{word-spacing:16.623706px;}
.wsdd{word-spacing:16.946496px;}
.ws20{word-spacing:17.338218px;}
.ws6a{word-spacing:18.000827px;}
.ws16{word-spacing:18.530436px;}
.wscf{word-spacing:19.797811px;}
.ws9c{word-spacing:22.863000px;}
.ws13{word-spacing:23.345357px;}
.ws1{word-spacing:28.455541px;}
.wsbf{word-spacing:121.157962px;}
.wsa2{word-spacing:122.297992px;}
.wsa3{word-spacing:160.318159px;}
.wsc1{word-spacing:166.671629px;}
.wsaf{word-spacing:174.337488px;}
.wsba{word-spacing:180.042000px;}
.wsae{word-spacing:197.502221px;}
.wsb6{word-spacing:201.719962px;}
.wsc0{word-spacing:223.403962px;}
.wsbc{word-spacing:228.370282px;}
.wsb1{word-spacing:238.991962px;}
.wsbe{word-spacing:247.290000px;}
.wsad{word-spacing:254.956378px;}
.wsb3{word-spacing:255.681379px;}
.wsb5{word-spacing:259.536000px;}
.wsb7{word-spacing:272.982000px;}
.wsb0{word-spacing:273.733920px;}
.wsc2{word-spacing:275.371430px;}
.ws71{word-spacing:420.401795px;}
.ws4d{word-spacing:584.426988px;}
.ws6d{word-spacing:636.311262px;}
.ws5f{word-spacing:688.251694px;}
._10{margin-left:-7.292623px;}
._9{margin-left:-6.204712px;}
._1{margin-left:-4.644551px;}
._2{margin-left:-3.096367px;}
._4{margin-left:-1.506341px;}
._1c{width:1.901206px;}
._27{width:2.985094px;}
._19{width:4.423394px;}
._25{width:8.224866px;}
._0{width:12.971268px;}
._29{width:14.118992px;}
._15{width:16.007910px;}
._14{width:17.765304px;}
._8{width:18.829314px;}
._11{width:20.323704px;}
._b{width:21.339889px;}
._26{width:22.594990px;}
._c{width:23.635264px;}
._3{width:25.946136px;}
._2b{width:27.389176px;}
._e{width:28.417312px;}
._d{width:29.768249px;}
._28{width:31.752794px;}
._a{width:33.785165px;}
._17{width:35.637320px;}
._16{width:36.833720px;}
._18{width:38.626988px;}
._2a{width:40.097477px;}
._f{width:42.859105px;}
._5{width:54.427542px;}
._41{width:61.868160px;}
._6{width:69.367901px;}
._7{width:84.313609px;}
._40{width:88.767360px;}
._2f{width:91.817934px;}
._31{width:111.421718px;}
._30{width:117.459054px;}
._3e{width:119.970432px;}
._3b{width:148.429786px;}
._2e{width:162.033706px;}
._39{width:174.681145px;}
._3d{width:188.443594px;}
._3a{width:189.962150px;}
._3c{width:192.221683px;}
._37{width:199.648122px;}
._3f{width:202.981363px;}
._36{width:204.487718px;}
._38{width:206.405021px;}
._2d{width:248.188291px;}
._35{width:251.715052px;}
._32{width:289.074802px;}
._34{width:359.729561px;}
._22{width:401.034500px;}
._1a{width:403.007095px;}
._33{width:482.687970px;}
._24{width:489.143735px;}
._1e{width:494.533763px;}
._1d{width:506.120005px;}
._1b{width:510.065195px;}
._21{width:520.645476px;}
._23{width:523.406789px;}
._20{width:557.048816px;}
._1f{width:581.904178px;}
._12{width:1940.198700px;}
._2c{width:2533.412700px;}
._13{width:2557.322700px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(54,121,123);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs5{font-size:45.429600px;}
.fs9{font-size:47.337600px;}
.fs4{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fsb{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs6{font-size:62.286600px;}
.fs7{font-size:71.731200px;}
.fsa{font-size:83.686200px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y16{bottom:16.015847px;}
.y41{bottom:45.921000px;}
.y40{bottom:99.720000px;}
.y14{bottom:100.258500px;}
.y17e{bottom:102.549000px;}
.ybf{bottom:102.975000px;}
.y8f{bottom:108.988500px;}
.y1c4{bottom:109.264500px;}
.y74{bottom:116.407500px;}
.y13{bottom:118.147500px;}
.y3f{bottom:120.610500px;}
.y10d{bottom:120.793500px;}
.y11e{bottom:121.314000px;}
.y17d{bottom:123.441000px;}
.ybe{bottom:123.867000px;}
.y139{bottom:126.502500px;}
.y1c3{bottom:128.415000px;}
.y8d{bottom:129.880500px;}
.yf9{bottom:131.667000px;}
.y161{bottom:132.264000px;}
.y8e{bottom:135.304500px;}
.y147{bottom:135.424500px;}
.y12{bottom:136.035000px;}
.y73{bottom:137.298000px;}
.y3e{bottom:141.502500px;}
.y10c{bottom:141.685500px;}
.ybd{bottom:144.759000px;}
.y138{bottom:147.394500px;}
.y1c2{bottom:147.565500px;}
.y17c{bottom:148.815000px;}
.y8c{bottom:150.772500px;}
.yf8{bottom:152.559000px;}
.y160{bottom:153.156000px;}
.y11{bottom:153.922500px;}
.y72{bottom:158.190000px;}
.y3d{bottom:162.394500px;}
.y10b{bottom:162.576000px;}
.y1a9{bottom:166.021500px;}
.y1c1{bottom:166.717500px;}
.y137{bottom:168.285000px;}
.ybc{bottom:170.133000px;}
.y8b{bottom:171.663000px;}
.y10{bottom:171.811500px;}
.ya8{bottom:172.840500px;}
.yf7{bottom:173.449500px;}
.y17b{bottom:173.694000px;}
.y15f{bottom:174.048000px;}
.y71{bottom:179.082000px;}
.y178{bottom:179.697000px;}
.y1a8{bottom:182.460000px;}
.y3c{bottom:183.285000px;}
.y10a{bottom:183.468000px;}
.y1c0{bottom:185.868000px;}
.y1a7{bottom:186.799500px;}
.y17a{bottom:186.840000px;}
.y136{bottom:189.177000px;}
.ya7{bottom:189.249000px;}
.yf{bottom:189.699000px;}
.y177{bottom:189.949500px;}
.y8a{bottom:192.555000px;}
.yf6{bottom:194.341500px;}
.y15e{bottom:194.940000px;}
.ybb{bottom:195.682500px;}
.y70{bottom:199.972500px;}
.y3b{bottom:204.177000px;}
.y109{bottom:204.360000px;}
.y1bf{bottom:205.018500px;}
.yba{bottom:205.935000px;}
.y179{bottom:206.088000px;}
.y1a6{bottom:207.181500px;}
.ye{bottom:207.586500px;}
.y134{bottom:210.069000px;}
.ya6{bottom:210.139500px;}
.y89{bottom:213.447000px;}
.yf5{bottom:215.233500px;}
.y1a5{bottom:215.401500px;}
.y135{bottom:215.493000px;}
.y15d{bottom:215.830500px;}
.y6f{bottom:220.864500px;}
.y176{bottom:222.676500px;}
.y1be{bottom:224.169000px;}
.y3a{bottom:225.069000px;}
.y108{bottom:225.250500px;}
.yd{bottom:225.475500px;}
.yd9{bottom:229.155000px;}
.y133{bottom:230.959500px;}
.ya5{bottom:231.031500px;}
.y88{bottom:234.337500px;}
.y15c{bottom:236.722500px;}
.yf4{bottom:240.607500px;}
.y6e{bottom:241.756500px;}
.y1bd{bottom:243.319500px;}
.y175{bottom:243.567000px;}
.y39{bottom:245.961000px;}
.y107{bottom:246.142500px;}
.yb9{bottom:246.462000px;}
.yd8{bottom:248.388000px;}
.y1a3{bottom:250.848000px;}
.y132{bottom:251.851500px;}
.ya4{bottom:251.923500px;}
.yc{bottom:252.330000px;}
.y87{bottom:255.229500px;}
.y1a2{bottom:259.066500px;}
.y15b{bottom:262.096500px;}
.y1bc{bottom:262.470000px;}
.y6d{bottom:262.647000px;}
.y38{bottom:266.851500px;}
.y106{bottom:267.034500px;}
.y1a4{bottom:267.286500px;}
.yd7{bottom:267.621000px;}
.yb{bottom:270.217500px;}
.y131{bottom:272.743500px;}
.ya3{bottom:272.814000px;}
.y174{bottom:274.905000px;}
.yf3{bottom:275.950500px;}
.y86{bottom:276.121500px;}
.y1bb{bottom:281.620500px;}
.y6c{bottom:283.539000px;}
.yb8{bottom:284.763000px;}
.y37{bottom:287.743500px;}
.y105{bottom:287.926500px;}
.ya{bottom:288.105000px;}
.y130{bottom:293.634000px;}
.ya2{bottom:293.706000px;}
.y15a{bottom:294.243000px;}
.y1a1{bottom:294.513000px;}
.y173{bottom:295.797000px;}
.yf2{bottom:296.842500px;}
.y1ba{bottom:300.771000px;}
.y1a0{bottom:302.733000px;}
.y6b{bottom:304.431000px;}
.yb7{bottom:305.655000px;}
.y9{bottom:305.994000px;}
.y36{bottom:308.635500px;}
.y104{bottom:308.817000px;}
.y85{bottom:311.749500px;}
.y12f{bottom:314.526000px;}
.ya1{bottom:314.598000px;}
.y172{bottom:316.687500px;}
.yf1{bottom:317.733000px;}
.y1b9{bottom:319.921500px;}
.y8{bottom:323.881500px;}
.y6a{bottom:325.323000px;}
.yb6{bottom:326.547000px;}
.y35{bottom:329.526000px;}
.y103{bottom:329.709000px;}
.y84{bottom:330.981000px;}
.ya0{bottom:335.488500px;}
.y171{bottom:337.579500px;}
.y19f{bottom:338.178000px;}
.yf0{bottom:338.625000px;}
.y1b8{bottom:339.072000px;}
.y7{bottom:341.769000px;}
.y69{bottom:346.213500px;}
.y19e{bottom:346.398000px;}
.yb5{bottom:347.439000px;}
.y12e{bottom:350.154000px;}
.y83{bottom:350.214000px;}
.y34{bottom:350.418000px;}
.y102{bottom:350.601000px;}
.y9f{bottom:356.380500px;}
.y170{bottom:358.471500px;}
.yef{bottom:359.517000px;}
.y1b7{bottom:362.706000px;}
.y6{bottom:365.635500px;}
.y68{bottom:367.105500px;}
.yb4{bottom:368.329500px;}
.y82{bottom:369.447000px;}
.y33{bottom:371.310000px;}
.y101{bottom:371.491500px;}
.y9e{bottom:377.272500px;}
.y16f{bottom:379.362000px;}
.yee{bottom:380.407500px;}
.y19d{bottom:381.844500px;}
.y5{bottom:383.523000px;}
.y67{bottom:387.997500px;}
.y81{bottom:388.680000px;}
.yb3{bottom:389.221500px;}
.y19b{bottom:390.063000px;}
.y32{bottom:392.200500px;}
.yff{bottom:392.383500px;}
.y100{bottom:397.807500px;}
.y9d{bottom:398.163000px;}
.y198{bottom:398.283000px;}
.y16e{bottom:400.254000px;}
.yed{bottom:401.299500px;}
.y4{bottom:401.410500px;}
.y1b6{bottom:401.530500px;}
.y197{bottom:406.501500px;}
.y66{bottom:408.888000px;}
.yb1{bottom:410.113500px;}
.yfe{bottom:413.275500px;}
.y199{bottom:414.721500px;}
.yb2{bottom:415.537500px;}
.y31{bottom:417.576000px;}
.y3{bottom:419.299500px;}
.y16d{bottom:421.146000px;}
.yec{bottom:422.191500px;}
.y19a{bottom:422.940000px;}
.y9c{bottom:423.538500px;}
.y65{bottom:429.780000px;}
.y1b5{bottom:429.994500px;}
.yb0{bottom:431.004000px;}
.y19c{bottom:431.160000px;}
.yfd{bottom:434.166000px;}
.yeb{bottom:443.082000px;}
.y2{bottom:443.164500px;}
.y64{bottom:450.672000px;}
.yaf{bottom:451.896000px;}
.yfc{bottom:455.058000px;}
.y195{bottom:458.386500px;}
.y1b4{bottom:458.460000px;}
.y1{bottom:461.052000px;}
.yea{bottom:463.974000px;}
.y9b{bottom:466.389000px;}
.y194{bottom:466.605000px;}
.y16c{bottom:470.194500px;}
.y63{bottom:471.562500px;}
.yae{bottom:472.788000px;}
.y196{bottom:474.825000px;}
.y11d{bottom:477.052500px;}
.yfb{bottom:480.433500px;}
.y9a{bottom:484.795500px;}
.ye9{bottom:484.866000px;}
.y1b3{bottom:486.925500px;}
.y1e3{bottom:487.231500px;}
.y16b{bottom:491.713500px;}
.y62{bottom:492.454500px;}
.y30{bottom:492.894000px;}
.yad{bottom:493.678500px;}
.y11c{bottom:497.944500px;}
.y192{bottom:502.051500px;}
.y99{bottom:503.616000px;}
.ye8{bottom:505.756500px;}
.y1e2{bottom:506.382000px;}
.y191{bottom:510.271500px;}
.yfa{bottom:512.578500px;}
.y16a{bottom:513.232500px;}
.y61{bottom:513.346500px;}
.y2f{bottom:513.786000px;}
.yac{bottom:514.570500px;}
.y146{bottom:515.304000px;}
.y1b2{bottom:515.391000px;}
.y193{bottom:518.490000px;}
.y11b{bottom:518.836500px;}
.y98{bottom:521.548500px;}
.y1e1{bottom:525.532500px;}
.ye7{bottom:531.132000px;}
.y60{bottom:534.237000px;}
.y2e{bottom:534.678000px;}
.y169{bottom:534.751500px;}
.y1b1{bottom:534.889500px;}
.y145{bottom:536.194500px;}
.y11a{bottom:539.727000px;}
.yab{bottom:539.946000px;}
.y97{bottom:540.369000px;}
.y190{bottom:545.718000px;}
.y18f{bottom:553.936500px;}
.y1b0{bottom:554.388000px;}
.y5f{bottom:555.129000px;}
.y2d{bottom:555.568500px;}
.y168{bottom:556.270500px;}
.y144{bottom:557.086500px;}
.y96{bottom:558.303000px;}
.y119{bottom:560.619000px;}
.y1e0{bottom:565.575000px;}
.ye6{bottom:569.956500px;}
.yaa{bottom:575.572500px;}
.y5e{bottom:576.021000px;}
.y95{bottom:576.235500px;}
.y167{bottom:577.789500px;}
.y143{bottom:577.978500px;}
.y118{bottom:581.511000px;}
.y1af{bottom:582.853500px;}
.y1df{bottom:584.725500px;}
.ye5{bottom:590.847000px;}
.y94{bottom:594.168000px;}
.y2c{bottom:594.393000px;}
.ya9{bottom:594.805500px;}
.y5d{bottom:596.913000px;}
.y142{bottom:598.870500px;}
.y18e{bottom:599.065500px;}
.y1ae{bottom:602.352000px;}
.y117{bottom:602.403000px;}
.y1de{bottom:603.876000px;}
.y166{bottom:606.810000px;}
.ye4{bottom:611.739000px;}
.y93{bottom:612.100500px;}
.y2b{bottom:615.285000px;}
.y5c{bottom:617.803500px;}
.y164{bottom:618.288000px;}
.y141{bottom:619.761000px;}
.y1ad{bottom:621.850500px;}
.y1dd{bottom:623.026500px;}
.y116{bottom:623.293500px;}
.yd6{bottom:625.858500px;}
.y165{bottom:628.329000px;}
.ye3{bottom:632.631000px;}
.y18d{bottom:636.169500px;}
.y2a{bottom:636.177000px;}
.y92{bottom:637.534500px;}
.y5b{bottom:638.695500px;}
.y140{bottom:640.653000px;}
.y1ac{bottom:641.349000px;}
.y1dc{bottom:642.177000px;}
.y115{bottom:644.185500px;}
.yd5{bottom:646.750500px;}
.ye2{bottom:653.523000px;}
.y18c{bottom:657.061500px;}
.y29{bottom:657.067500px;}
.y5a{bottom:659.587500px;}
.y1ab{bottom:660.847500px;}
.y1db{bottom:661.327500px;}
.y13f{bottom:661.545000px;}
.y163{bottom:663.505500px;}
.y114{bottom:665.077500px;}
.yd4{bottom:667.642500px;}
.y91{bottom:670.200000px;}
.ye1{bottom:674.413500px;}
.y159{bottom:675.996000px;}
.y18b{bottom:677.953500px;}
.y28{bottom:677.959500px;}
.y1aa{bottom:680.347500px;}
.y59{bottom:680.478000px;}
.y13e{bottom:682.435500px;}
.y113{bottom:685.968000px;}
.yd3{bottom:688.533000px;}
.ye0{bottom:695.305500px;}
.y158{bottom:696.886500px;}
.y18a{bottom:698.844000px;}
.y27{bottom:698.851500px;}
.y1da{bottom:699.628500px;}
.y90{bottom:701.098500px;}
.y58{bottom:701.370000px;}
.y162{bottom:702.165000px;}
.y13d{bottom:703.327500px;}
.y112{bottom:706.860000px;}
.yd2{bottom:709.425000px;}
.ydf{bottom:716.197500px;}
.y157{bottom:717.778500px;}
.y1d9{bottom:718.779000px;}
.y189{bottom:719.736000px;}
.y26{bottom:719.742000px;}
.y57{bottom:722.262000px;}
.y13c{bottom:724.219500px;}
.y111{bottom:727.752000px;}
.yd1{bottom:730.317000px;}
.yde{bottom:737.088000px;}
.y1d8{bottom:737.929500px;}
.y80{bottom:738.088500px;}
.y156{bottom:738.670500px;}
.y188{bottom:740.628000px;}
.y25{bottom:740.634000px;}
.y56{bottom:743.152500px;}
.y12d{bottom:744.109500px;}
.y13b{bottom:745.110000px;}
.y110{bottom:748.642500px;}
.yd0{bottom:751.207500px;}
.y1d7{bottom:757.081500px;}
.ydd{bottom:757.980000px;}
.y7f{bottom:758.980500px;}
.y155{bottom:759.561000px;}
.y187{bottom:761.518500px;}
.y24{bottom:761.526000px;}
.y55{bottom:764.044500px;}
.y12c{bottom:765.001500px;}
.y13a{bottom:770.485500px;}
.ycf{bottom:772.099500px;}
.y1d6{bottom:776.232000px;}
.ydc{bottom:778.872000px;}
.y7e{bottom:779.871000px;}
.y154{bottom:780.453000px;}
.y186{bottom:782.410500px;}
.y23{bottom:782.418000px;}
.y10f{bottom:784.270500px;}
.y54{bottom:784.936500px;}
.y12b{bottom:785.892000px;}
.yce{bottom:792.991500px;}
.y1d5{bottom:795.382500px;}
.y7d{bottom:800.763000px;}
.y153{bottom:801.345000px;}
.y185{bottom:803.302500px;}
.y22{bottom:803.308500px;}
.y10e{bottom:803.503500px;}
.y53{bottom:805.827000px;}
.y12a{bottom:806.784000px;}
.ycd{bottom:813.883500px;}
.ydb{bottom:814.500000px;}
.y1d4{bottom:814.533000px;}
.y7c{bottom:821.655000px;}
.y152{bottom:822.235500px;}
.y184{bottom:824.193000px;}
.y21{bottom:824.200500px;}
.y52{bottom:826.719000px;}
.y129{bottom:827.676000px;}
.y1d3{bottom:833.683500px;}
.yda{bottom:833.731500px;}
.ycc{bottom:834.774000px;}
.y7b{bottom:842.545500px;}
.y151{bottom:843.127500px;}
.y183{bottom:845.085000px;}
.y20{bottom:845.092500px;}
.y51{bottom:847.611000px;}
.y128{bottom:848.566500px;}
.y1d2{bottom:852.834000px;}
.yca{bottom:855.666000px;}
.ycb{bottom:861.090000px;}
.y7a{bottom:863.437500px;}
.y150{bottom:864.019500px;}
.y182{bottom:865.977000px;}
.y1f{bottom:865.983000px;}
.y50{bottom:868.503000px;}
.y127{bottom:869.458500px;}
.y1d1{bottom:871.984500px;}
.yc9{bottom:876.558000px;}
.y79{bottom:884.329500px;}
.y14f{bottom:884.910000px;}
.y181{bottom:886.867500px;}
.y1e{bottom:886.875000px;}
.y4f{bottom:889.393500px;}
.y126{bottom:890.350500px;}
.y1d0{bottom:891.135000px;}
.yc8{bottom:897.448500px;}
.y78{bottom:905.220000px;}
.y14e{bottom:905.802000px;}
.y180{bottom:907.759500px;}
.y4e{bottom:910.285500px;}
.y125{bottom:911.241000px;}
.yc7{bottom:918.340500px;}
.y1d{bottom:923.746500px;}
.y77{bottom:926.112000px;}
.y14d{bottom:926.694000px;}
.y1cf{bottom:929.436000px;}
.y4d{bottom:931.177500px;}
.y124{bottom:932.133000px;}
.y17f{bottom:933.135000px;}
.yc6{bottom:939.232500px;}
.y1c{bottom:939.885000px;}
.y14c{bottom:947.584500px;}
.y1ce{bottom:948.586500px;}
.y76{bottom:951.487500px;}
.y4c{bottom:952.068000px;}
.y123{bottom:953.025000px;}
.y1b{bottom:956.025000px;}
.yc5{bottom:963.268500px;}
.y1cd{bottom:967.737000px;}
.y14b{bottom:968.476500px;}
.y4b{bottom:972.960000px;}
.yc4{bottom:973.872000px;}
.y122{bottom:973.915500px;}
.y75{bottom:975.918000px;}
.y1cc{bottom:986.887500px;}
.y14a{bottom:989.368500px;}
.y4a{bottom:993.852000px;}
.y121{bottom:994.807500px;}
.y1a{bottom:1001.892000px;}
.y1cb{bottom:1006.038000px;}
.yc3{bottom:1010.260500px;}
.y49{bottom:1014.742500px;}
.y120{bottom:1020.183000px;}
.y1ca{bottom:1025.188500px;}
.yc2{bottom:1031.151000px;}
.y48{bottom:1035.634500px;}
.y19{bottom:1040.716500px;}
.y11f{bottom:1042.075500px;}
.y1c9{bottom:1044.339000px;}
.yc1{bottom:1052.043000px;}
.y47{bottom:1056.526500px;}
.y1c8{bottom:1063.489500px;}
.y18{bottom:1072.053000px;}
.yc0{bottom:1072.935000px;}
.y46{bottom:1077.417000px;}
.y1c7{bottom:1082.640000px;}
.y149{bottom:1093.825500px;}
.y45{bottom:1098.309000px;}
.y1c6{bottom:1101.790500px;}
.y17{bottom:1103.391000px;}
.y148{bottom:1114.717500px;}
.y44{bottom:1119.201000px;}
.y1c5{bottom:1120.941000px;}
.y43{bottom:1140.091500px;}
.y15{bottom:1162.614000px;}
.y42{bottom:1200.543000px;}
.h29{height:26.110157px;}
.h10{height:27.855430px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h14{height:33.072749px;}
.h1d{height:33.299897px;}
.h9{height:34.813397px;}
.hd{height:35.052500px;}
.h11{height:35.503200px;}
.h22{height:38.896243px;}
.hf{height:39.165235px;}
.h1a{height:39.434227px;}
.h13{height:42.500452px;}
.h8{height:43.217759px;}
.ha{height:43.516637px;}
.h6{height:43.815515px;}
.h12{height:46.445641px;}
.he{height:46.714950px;}
.h27{height:49.991558px;}
.h4{height:50.930649px;}
.hc{height:51.861658px;}
.h1b{height:54.768749px;}
.hb{height:54.774749px;}
.h17{height:57.205200px;}
.h1e{height:65.024177px;}
.h20{height:71.776243px;}
.h23{height:72.039235px;}
.h26{height:72.045235px;}
.h7{height:77.792486px;}
.h28{height:82.865558px;}
.h15{height:82.964452px;}
.h18{height:83.980637px;}
.h16{height:84.526637px;}
.h19{height:89.128950px;}
.h5{height:94.491000px;}
.h21{height:104.650243px;}
.h25{height:104.919235px;}
.h1c{height:105.801024px;}
.h24{height:115.745558px;}
.h1f{height:149.268749px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x2{left:58.555600px;}
.x99{left:68.640000px;}
.x88{left:86.325000px;}
.x8c{left:87.636000px;}
.x90{left:155.445000px;}
.x92{left:163.548000px;}
.x8d{left:176.290500px;}
.x98{left:190.876500px;}
.x5{left:248.526000px;}
.x4{left:249.591000px;}
.x39{left:254.469000px;}
.x9a{left:258.291000px;}
.x50{left:261.457500px;}
.x5a{left:266.988000px;}
.x51{left:268.264500px;}
.x48{left:270.387000px;}
.x3a{left:272.983500px;}
.x6e{left:274.353000px;}
.x7d{left:278.764500px;}
.xc{left:281.479500px;}
.x5b{left:283.341000px;}
.x68{left:286.389000px;}
.x8e{left:287.682000px;}
.x91{left:289.363500px;}
.x31{left:290.677500px;}
.x89{left:293.418000px;}
.x93{left:295.029000px;}
.x49{left:300.484500px;}
.x32{left:302.557500px;}
.x29{left:307.053000px;}
.x20{left:310.558500px;}
.x79{left:314.563500px;}
.x16{left:320.127000px;}
.x33{left:321.354000px;}
.x21{left:325.501500px;}
.x34{left:326.583000px;}
.x17{left:327.598500px;}
.x35{left:329.671500px;}
.x7f{left:331.053000px;}
.x22{left:333.085500px;}
.x36{left:334.522500px;}
.x23{left:348.030000px;}
.x80{left:353.386500px;}
.x4a{left:365.934000px;}
.x7c{left:371.611500px;}
.x4f{left:374.356500px;}
.x66{left:376.497000px;}
.x9b{left:382.998000px;}
.x72{left:384.175500px;}
.x2b{left:389.986500px;}
.x9c{left:392.146500px;}
.x8{left:394.387500px;}
.x94{left:395.523000px;}
.x67{left:399.238500px;}
.x95{left:406.087500px;}
.x4b{left:408.156000px;}
.x73{left:409.212000px;}
.x37{left:412.824000px;}
.x54{left:413.865000px;}
.x2c{left:423.217500px;}
.x38{left:425.274000px;}
.x3f{left:428.632500px;}
.x4c{left:433.698000px;}
.x9{left:435.823500px;}
.x55{left:438.115500px;}
.x42{left:439.863000px;}
.x81{left:442.855500px;}
.x85{left:444.424500px;}
.x6b{left:448.659000px;}
.x58{left:450.372000px;}
.x30{left:452.646000px;}
.x24{left:458.647500px;}
.x7a{left:461.194500px;}
.x3d{left:470.035500px;}
.x25{left:473.592000px;}
.x4d{left:476.398500px;}
.x6c{left:482.956500px;}
.x74{left:496.632000px;}
.x43{left:497.673000px;}
.x87{left:503.701500px;}
.x96{left:504.943500px;}
.xa{left:506.085000px;}
.x6d{left:507.339000px;}
.x69{left:511.053000px;}
.x8a{left:513.369000px;}
.x3e{left:516.681000px;}
.x71{left:519.681000px;}
.x75{left:520.833000px;}
.x97{left:522.562500px;}
.x8f{left:527.928000px;}
.xf{left:529.603500px;}
.x60{left:533.077500px;}
.x4e{left:535.662000px;}
.x10{left:537.075000px;}
.x86{left:539.541000px;}
.x11{left:540.751500px;}
.x6a{left:544.284000px;}
.x6f{left:545.500500px;}
.xb{left:547.521000px;}
.x5e{left:549.247500px;}
.x44{left:551.182500px;}
.x70{left:552.306000px;}
.x9d{left:558.360000px;}
.x5f{left:561.699000px;}
.x61{left:567.694500px;}
.x2d{left:571.386000px;}
.x2e{left:580.617000px;}
.x9f{left:587.767500px;}
.x5c{left:592.425000px;}
.x5d{left:598.851000px;}
.x62{left:604.638000px;}
.x82{left:608.457000px;}
.x7e{left:619.438500px;}
.x56{left:630.165000px;}
.x83{left:632.068500px;}
.x3b{left:635.632500px;}
.x63{left:639.256500px;}
.x77{left:644.160000px;}
.x57{left:653.898000px;}
.x3c{left:655.134000px;}
.x7b{left:661.257000px;}
.x52{left:666.640500px;}
.x78{left:668.331000px;}
.x14{left:671.029500px;}
.x53{left:673.447500px;}
.x15{left:678.501000px;}
.x76{left:681.039000px;}
.x40{left:683.179500px;}
.x45{left:693.156000px;}
.x65{left:695.539500px;}
.x26{left:704.485500px;}
.x12{left:710.145000px;}
.x13{left:717.618000px;}
.x27{left:719.430000px;}
.x1a{left:721.050000px;}
.xd{left:722.886000px;}
.x1b{left:728.521500px;}
.xe{left:730.357500px;}
.x59{left:734.382000px;}
.x2a{left:737.191500px;}
.x8b{left:741.160500px;}
.x18{left:742.846500px;}
.x28{left:744.754500px;}
.x19{left:750.319500px;}
.x9e{left:752.550000px;}
.x46{left:757.164000px;}
.x6{left:772.533000px;}
.x84{left:774.607500px;}
.x47{left:778.578000px;}
.x1e{left:784.059000px;}
.x64{left:790.441500px;}
.x1f{left:799.003500px;}
.x1c{left:801.009000px;}
.x2f{left:805.113000px;}
.x1d{left:808.482000px;}
.x41{left:835.531500px;}
.x7{left:837.807000px;}
@media print{
.v10{vertical-align:-45.488000pt;}
.v9{vertical-align:-35.701333pt;}
.v2{vertical-align:-10.624000pt;}
.v4{vertical-align:-9.648000pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.938667pt;}
.v7{vertical-align:15.360000pt;}
.v13{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v11{vertical-align:29.226667pt;}
.v5{vertical-align:35.968000pt;}
.v8{vertical-align:37.701333pt;}
.vd{vertical-align:47.338667pt;}
.vc{vertical-align:57.792000pt;}
.ve{vertical-align:59.002667pt;}
.v12{vertical-align:75.808000pt;}
.va{vertical-align:91.920000pt;}
.vf{vertical-align:103.285333pt;}
.vb{vertical-align:116.800000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000711pt;}
.lsb{letter-spacing:0.000728pt;}
.lsc{letter-spacing:0.001552pt;}
.lsd{letter-spacing:0.001630pt;}
.ls77{letter-spacing:0.004267pt;}
.ls50{letter-spacing:0.120969pt;}
.ls2e{letter-spacing:0.130285pt;}
.lse{letter-spacing:0.132237pt;}
.ls32{letter-spacing:0.135618pt;}
.ls56{letter-spacing:0.137570pt;}
.ls8{letter-spacing:0.231618pt;}
.ls38{letter-spacing:0.236951pt;}
.ls1f{letter-spacing:0.474682pt;}
.ls46{letter-spacing:0.482502pt;}
.ls4d{letter-spacing:0.487835pt;}
.ls65{letter-spacing:0.652455pt;}
.ls2{letter-spacing:0.661044pt;}
.ls60{letter-spacing:0.662400pt;}
.ls3f{letter-spacing:0.665067pt;}
.ls58{letter-spacing:0.666378pt;}
.ls3d{letter-spacing:0.928300pt;}
.ls68{letter-spacing:1.031452pt;}
.ls5f{letter-spacing:1.291174pt;}
.ls23{letter-spacing:1.330118pt;}
.ls16{letter-spacing:1.849067pt;}
.ls1e{letter-spacing:1.850682pt;}
.ls30{letter-spacing:1.991452pt;}
.ls59{letter-spacing:1.996785pt;}
.ls24{letter-spacing:2.057548pt;}
.ls1c{letter-spacing:2.092785pt;}
.ls62{letter-spacing:2.215452pt;}
.ls1a{letter-spacing:2.377067pt;}
.ls12{letter-spacing:2.378378pt;}
.ls57{letter-spacing:2.793328pt;}
.ls37{letter-spacing:3.318400pt;}
.ls1d{letter-spacing:3.566121pt;}
.ls2b{letter-spacing:3.566628pt;}
.ls14{letter-spacing:3.761630pt;}
.ls27{letter-spacing:4.227962pt;}
.ls18{letter-spacing:6.420237pt;}
.ls41{letter-spacing:7.836785pt;}
.ls5b{letter-spacing:8.214029pt;}
.ls61{letter-spacing:8.225788pt;}
.ls64{letter-spacing:8.503452pt;}
.ls5e{letter-spacing:9.191467pt;}
.ls0{letter-spacing:9.298933pt;}
.ls40{letter-spacing:9.564572pt;}
.ls4{letter-spacing:10.631867pt;}
.ls4b{letter-spacing:10.968429pt;}
.ls47{letter-spacing:10.971362pt;}
.ls45{letter-spacing:10.973762pt;}
.ls31{letter-spacing:11.632696pt;}
.ls34{letter-spacing:11.638029pt;}
.ls21{letter-spacing:11.658378pt;}
.ls73{letter-spacing:11.954133pt;}
.ls75{letter-spacing:11.959467pt;}
.ls76{letter-spacing:12.159086pt;}
.ls26{letter-spacing:12.435096pt;}
.ls6d{letter-spacing:12.528078pt;}
.ls4f{letter-spacing:12.539593pt;}
.ls52{letter-spacing:12.752128pt;}
.ls4a{letter-spacing:12.988572pt;}
.ls74{letter-spacing:13.017349pt;}
.ls53{letter-spacing:13.124065pt;}
.ls7{letter-spacing:13.283467pt;}
.ls6{letter-spacing:13.389734pt;}
.ls22{letter-spacing:13.491096pt;}
.ls4c{letter-spacing:13.649067pt;}
.ls55{letter-spacing:13.708538pt;}
.ls6a{letter-spacing:13.945570pt;}
.ls25{letter-spacing:14.155682pt;}
.ls63{letter-spacing:14.437841pt;}
.ls71{letter-spacing:14.608533pt;}
.ls6c{letter-spacing:14.613867pt;}
.ls3c{letter-spacing:15.395096pt;}
.ls44{letter-spacing:15.400429pt;}
.ls48{letter-spacing:16.020214pt;}
.ls5a{letter-spacing:16.061762pt;}
.ls35{letter-spacing:16.086022pt;}
.ls5d{letter-spacing:16.352300pt;}
.ls67{letter-spacing:16.725841pt;}
.ls4e{letter-spacing:16.737168pt;}
.ls2a{letter-spacing:16.861762pt;}
.ls2c{letter-spacing:17.123096pt;}
.ls20{letter-spacing:17.128429pt;}
.ls3e{letter-spacing:17.151070pt;}
.ls43{letter-spacing:18.081067pt;}
.ls33{letter-spacing:18.541762pt;}
.ls29{letter-spacing:18.582349pt;}
.ls54{letter-spacing:18.984787pt;}
.ls9{letter-spacing:18.990121pt;}
.ls69{letter-spacing:21.122118pt;}
.ls51{letter-spacing:21.454121pt;}
.ls1{letter-spacing:22.316137pt;}
.ls2f{letter-spacing:22.973762pt;}
.ls42{letter-spacing:23.260785pt;}
.ls3{letter-spacing:25.329067pt;}
.ls36{letter-spacing:74.317762pt;}
.ls3a{letter-spacing:83.811543pt;}
.ls3b{letter-spacing:90.718210pt;}
.ls72{letter-spacing:183.951881pt;}
.ls6f{letter-spacing:186.650547pt;}
.ls6e{letter-spacing:201.333214pt;}
.ls70{letter-spacing:204.335881pt;}
.ls6b{letter-spacing:223.285214pt;}
.ls49{letter-spacing:371.368429pt;}
.lsf{letter-spacing:542.987682pt;}
.ls1b{letter-spacing:553.037089pt;}
.ls10{letter-spacing:553.190349pt;}
.ls13{letter-spacing:565.675682pt;}
.ls15{letter-spacing:567.024508pt;}
.ls11{letter-spacing:573.985015pt;}
.ls19{letter-spacing:574.677841pt;}
.ls17{letter-spacing:583.601015pt;}
.ls28{letter-spacing:726.302881pt;}
.ls5c{letter-spacing:738.384696pt;}
.ls66{letter-spacing:742.769067pt;}
.ls39{letter-spacing:835.368787pt;}
.ls2d{letter-spacing:892.213044pt;}
.ws17{word-spacing:-13.283467pt;}
.ws44{word-spacing:-11.955200pt;}
.ws25{word-spacing:-10.626800pt;}
.ws4f{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws64{word-spacing:-4.410111pt;}
.ws5b{word-spacing:-3.765284pt;}
.wsa8{word-spacing:-2.762961pt;}
.ws80{word-spacing:-2.709827pt;}
.ws45{word-spacing:-2.337890pt;}
.ws65{word-spacing:-2.290667pt;}
.ws6b{word-spacing:-2.287467pt;}
.ws6e{word-spacing:-2.285333pt;}
.ws97{word-spacing:-2.072221pt;}
.ws2d{word-spacing:-1.753418pt;}
.ws7c{word-spacing:-1.381481pt;}
.ws9d{word-spacing:-1.328347pt;}
.ws59{word-spacing:-1.275213pt;}
.ws5a{word-spacing:-1.222079pt;}
.ws39{word-spacing:-1.168945pt;}
.ws4c{word-spacing:-1.062677pt;}
.ws4b{word-spacing:-1.009543pt;}
.ws8e{word-spacing:-0.903276pt;}
.ws81{word-spacing:-0.850142pt;}
.ws82{word-spacing:-0.797008pt;}
.ws3b{word-spacing:-0.743874pt;}
.wsd6{word-spacing:-0.669491pt;}
.ws53{word-spacing:-0.584473pt;}
.ws8d{word-spacing:-0.531339pt;}
.ws3a{word-spacing:-0.478205pt;}
.ws1a{word-spacing:-0.425071pt;}
.ws47{word-spacing:-0.371937pt;}
.ws36{word-spacing:-0.318803pt;}
.wsa{word-spacing:-0.265669pt;}
.wsd5{word-spacing:-0.239104pt;}
.wsd{word-spacing:-0.212535pt;}
.wsc{word-spacing:-0.159402pt;}
.wsc8{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.ws42{word-spacing:-0.095642pt;}
.ws2b{word-spacing:-0.053134pt;}
.wscd{word-spacing:-0.047821pt;}
.ws26{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.wsd9{word-spacing:-0.026769pt;}
.wsdf{word-spacing:-0.023381pt;}
.wsb2{word-spacing:-0.005274pt;}
.wsbd{word-spacing:-0.002944pt;}
.wsbb{word-spacing:-0.000768pt;}
.ws0{word-spacing:0.000000pt;}
.wsb8{word-spacing:0.000734pt;}
.wsd4{word-spacing:0.047821pt;}
.ws9{word-spacing:0.053134pt;}
.wsc7{word-spacing:0.095642pt;}
.ws2c{word-spacing:0.106268pt;}
.ws79{word-spacing:0.143462pt;}
.wsb{word-spacing:0.159402pt;}
.ws7a{word-spacing:0.191283pt;}
.wse{word-spacing:0.212535pt;}
.wse0{word-spacing:0.239104pt;}
.ws2a{word-spacing:0.265669pt;}
.ws1e{word-spacing:0.318803pt;}
.ws1c{word-spacing:0.371937pt;}
.ws91{word-spacing:0.425071pt;}
.ws7b{word-spacing:0.526029pt;}
.ws37{word-spacing:0.531339pt;}
.ws9b{word-spacing:0.584473pt;}
.wsb4{word-spacing:0.596267pt;}
.wsb9{word-spacing:0.597333pt;}
.ws28{word-spacing:0.637606pt;}
.ws63{word-spacing:0.659564pt;}
.ws93{word-spacing:0.661216pt;}
.ws34{word-spacing:0.743874pt;}
.ws38{word-spacing:0.797008pt;}
.wsce{word-spacing:0.812954pt;}
.ws4e{word-spacing:0.850142pt;}
.ws85{word-spacing:0.903276pt;}
.ws95{word-spacing:0.956410pt;}
.ws72{word-spacing:1.009543pt;}
.ws8c{word-spacing:1.049333pt;}
.wsd0{word-spacing:1.052058pt;}
.ws74{word-spacing:1.062677pt;}
.ws84{word-spacing:1.115811pt;}
.wse4{word-spacing:1.195520pt;}
.ws96{word-spacing:1.222079pt;}
.ws30{word-spacing:1.275213pt;}
.ws12{word-spacing:1.328347pt;}
.wsc5{word-spacing:1.381481pt;}
.ws66{word-spacing:1.421333pt;}
.wsab{word-spacing:1.487748pt;}
.ws27{word-spacing:1.540882pt;}
.ws9e{word-spacing:1.594016pt;}
.ws54{word-spacing:1.625907pt;}
.ws7f{word-spacing:1.647150pt;}
.ws56{word-spacing:1.753418pt;}
.ws29{word-spacing:1.806551pt;}
.ws58{word-spacing:1.859685pt;}
.ws1b{word-spacing:1.912819pt;}
.ws77{word-spacing:1.965953pt;}
.ws8a{word-spacing:2.019087pt;}
.ws8f{word-spacing:2.056294pt;}
.ws48{word-spacing:2.072221pt;}
.wsa6{word-spacing:2.134761pt;}
.ws21{word-spacing:2.178489pt;}
.ws1f{word-spacing:2.204996pt;}
.ws6{word-spacing:2.231335pt;}
.ws2{word-spacing:2.235073pt;}
.wscb{word-spacing:2.295398pt;}
.ws32{word-spacing:2.337890pt;}
.ws90{word-spacing:2.391024pt;}
.ws83{word-spacing:2.444158pt;}
.ws19{word-spacing:2.550426pt;}
.ws7{word-spacing:2.550432pt;}
.ws4a{word-spacing:2.656693pt;}
.ws23{word-spacing:2.709827pt;}
.wsa0{word-spacing:2.762961pt;}
.ws3c{word-spacing:2.816095pt;}
.wsda{word-spacing:2.862575pt;}
.wsd7{word-spacing:2.863770pt;}
.wsa9{word-spacing:2.922363pt;}
.ws88{word-spacing:2.975497pt;}
.wsc4{word-spacing:3.018011pt;}
.ws31{word-spacing:3.028630pt;}
.ws3f{word-spacing:3.081764pt;}
.wse5{word-spacing:3.108352pt;}
.ws2f{word-spacing:3.241166pt;}
.ws98{word-spacing:3.347434pt;}
.ws40{word-spacing:3.400567pt;}
.ws75{word-spacing:3.453701pt;}
.ws8{word-spacing:3.512978pt;}
.ws5d{word-spacing:3.554249pt;}
.wsa7{word-spacing:3.554253pt;}
.ws6f{word-spacing:3.554667pt;}
.ws5e{word-spacing:3.555283pt;}
.wsf{word-spacing:3.559969pt;}
.ws10{word-spacing:3.578405pt;}
.ws7e{word-spacing:3.613103pt;}
.ws99{word-spacing:3.825638pt;}
.wsc3{word-spacing:3.825648pt;}
.ws18{word-spacing:3.825664pt;}
.wsa1{word-spacing:3.931906pt;}
.ws8b{word-spacing:3.985040pt;}
.ws7d{word-spacing:4.038174pt;}
.ws87{word-spacing:4.091308pt;}
.ws9a{word-spacing:4.250709pt;}
.ws78{word-spacing:4.303843pt;}
.ws2e{word-spacing:4.356977pt;}
.ws43{word-spacing:4.399514pt;}
.ws11{word-spacing:4.463245pt;}
.wsaa{word-spacing:4.675780pt;}
.ws50{word-spacing:4.728914pt;}
.wsca{word-spacing:4.734259pt;}
.ws3d{word-spacing:4.941450pt;}
.ws1d{word-spacing:4.994583pt;}
.ws33{word-spacing:5.153985pt;}
.ws55{word-spacing:5.260253pt;}
.ws9f{word-spacing:5.310667pt;}
.ws89{word-spacing:5.316000pt;}
.ws92{word-spacing:5.419654pt;}
.ws41{word-spacing:5.499392pt;}
.ws49{word-spacing:5.632190pt;}
.wsac{word-spacing:5.738458pt;}
.ws94{word-spacing:5.842667pt;}
.ws62{word-spacing:5.847582pt;}
.ws35{word-spacing:5.897859pt;}
.ws57{word-spacing:6.057261pt;}
.ws86{word-spacing:6.163529pt;}
.wse3{word-spacing:6.312346pt;}
.wsc6{word-spacing:6.694867pt;}
.wsa4{word-spacing:6.748001pt;}
.wsa5{word-spacing:6.801135pt;}
.ws73{word-spacing:6.854269pt;}
.ws46{word-spacing:6.960537pt;}
.ws51{word-spacing:7.980390pt;}
.ws67{word-spacing:7.980915pt;}
.ws5c{word-spacing:7.983503pt;}
.ws52{word-spacing:7.985724pt;}
.ws60{word-spacing:7.986249pt;}
.ws61{word-spacing:7.987283pt;}
.ws15{word-spacing:8.023214pt;}
.ws70{word-spacing:8.520000pt;}
.ws14{word-spacing:8.660820pt;}
.ws68{word-spacing:8.925950pt;}
.ws69{word-spacing:8.931283pt;}
.ws3{word-spacing:9.256323pt;}
.ws24{word-spacing:10.581753pt;}
.ws6c{word-spacing:11.516100pt;}
.wsd1{word-spacing:11.811738pt;}
.wsde{word-spacing:11.899307pt;}
.wsdc{word-spacing:11.900919pt;}
.wsd8{word-spacing:11.901850pt;}
.wsdb{word-spacing:11.902797pt;}
.wscc{word-spacing:11.903949pt;}
.wsd3{word-spacing:11.907379pt;}
.wse1{word-spacing:12.146483pt;}
.wsc9{word-spacing:12.509280pt;}
.ws3e{word-spacing:13.230333pt;}
.ws76{word-spacing:14.027341pt;}
.wse2{word-spacing:14.774118pt;}
.wsd2{word-spacing:14.776627pt;}
.wsdd{word-spacing:15.063552pt;}
.ws20{word-spacing:15.411749pt;}
.ws6a{word-spacing:16.000735pt;}
.ws16{word-spacing:16.471499pt;}
.wscf{word-spacing:17.598054pt;}
.ws9c{word-spacing:20.322667pt;}
.ws13{word-spacing:20.751429pt;}
.ws1{word-spacing:25.293814pt;}
.wsbf{word-spacing:107.695966pt;}
.wsa2{word-spacing:108.709326pt;}
.wsa3{word-spacing:142.505030pt;}
.wsc1{word-spacing:148.152559pt;}
.wsaf{word-spacing:154.966656pt;}
.wsba{word-spacing:160.037333pt;}
.wsae{word-spacing:175.557530pt;}
.wsb6{word-spacing:179.306633pt;}
.wsc0{word-spacing:198.581299pt;}
.wsbc{word-spacing:202.995806pt;}
.wsb1{word-spacing:212.437299pt;}
.wsbe{word-spacing:219.813333pt;}
.wsad{word-spacing:226.627891pt;}
.wsb3{word-spacing:227.272337pt;}
.wsb5{word-spacing:230.698667pt;}
.wsb7{word-spacing:242.650667pt;}
.wsb0{word-spacing:243.319040pt;}
.wsc2{word-spacing:244.774605pt;}
.ws71{word-spacing:373.690484pt;}
.ws4d{word-spacing:519.490656pt;}
.ws6d{word-spacing:565.610011pt;}
.ws5f{word-spacing:611.779283pt;}
._10{margin-left:-6.482332pt;}
._9{margin-left:-5.515299pt;}
._1{margin-left:-4.128490pt;}
._2{margin-left:-2.752326pt;}
._4{margin-left:-1.338970pt;}
._1c{width:1.689961pt;}
._27{width:2.653417pt;}
._19{width:3.931906pt;}
._25{width:7.310992pt;}
._0{width:11.530016pt;}
._29{width:12.550215pt;}
._15{width:14.229253pt;}
._14{width:15.791381pt;}
._8{width:16.737168pt;}
._11{width:18.065515pt;}
._b{width:18.968790pt;}
._26{width:20.084435pt;}
._c{width:21.009123pt;}
._3{width:23.063232pt;}
._2b{width:24.345934pt;}
._e{width:25.259833pt;}
._d{width:26.460666pt;}
._28{width:28.224706pt;}
._a{width:30.031258pt;}
._17{width:31.677617pt;}
._16{width:32.741085pt;}
._18{width:34.335101pt;}
._2a{width:35.642202pt;}
._f{width:38.096982pt;}
._5{width:48.380037pt;}
._41{width:54.993920pt;}
._6{width:61.660356pt;}
._7{width:74.945430pt;}
._40{width:78.904320pt;}
._2f{width:81.615941pt;}
._31{width:99.041527pt;}
._30{width:104.408048pt;}
._3e{width:106.640384pt;}
._3b{width:131.937587pt;}
._2e{width:144.029961pt;}
._39{width:155.272129pt;}
._3d{width:167.505417pt;}
._3a{width:168.855245pt;}
._3c{width:170.863718pt;}
._37{width:177.464997pt;}
._3f{width:180.427878pt;}
._36{width:181.766861pt;}
._38{width:183.471130pt;}
._2d{width:220.611814pt;}
._35{width:223.746713pt;}
._32{width:256.955379pt;}
._34{width:319.759610pt;}
._22{width:356.475111pt;}
._1a{width:358.228529pt;}
._33{width:429.055973pt;}
._24{width:434.794431pt;}
._1e{width:439.585567pt;}
._1d{width:449.884449pt;}
._1b{width:453.391284pt;}
._21{width:462.795979pt;}
._23{width:465.250479pt;}
._20{width:495.154503pt;}
._1f{width:517.248158pt;}
._12{width:1724.621067pt;}
._2c{width:2251.922400pt;}
._13{width:2273.175733pt;}
.fsc{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs5{font-size:40.381867pt;}
.fs9{font-size:42.077867pt;}
.fs4{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fsb{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs6{font-size:55.365867pt;}
.fs7{font-size:63.761067pt;}
.fsa{font-size:74.387733pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:14.236308pt;}
.y41{bottom:40.818667pt;}
.y40{bottom:88.640000pt;}
.y14{bottom:89.118667pt;}
.y17e{bottom:91.154667pt;}
.ybf{bottom:91.533333pt;}
.y8f{bottom:96.878667pt;}
.y1c4{bottom:97.124000pt;}
.y74{bottom:103.473333pt;}
.y13{bottom:105.020000pt;}
.y3f{bottom:107.209333pt;}
.y10d{bottom:107.372000pt;}
.y11e{bottom:107.834667pt;}
.y17d{bottom:109.725333pt;}
.ybe{bottom:110.104000pt;}
.y139{bottom:112.446667pt;}
.y1c3{bottom:114.146667pt;}
.y8d{bottom:115.449333pt;}
.yf9{bottom:117.037333pt;}
.y161{bottom:117.568000pt;}
.y8e{bottom:120.270667pt;}
.y147{bottom:120.377333pt;}
.y12{bottom:120.920000pt;}
.y73{bottom:122.042667pt;}
.y3e{bottom:125.780000pt;}
.y10c{bottom:125.942667pt;}
.ybd{bottom:128.674667pt;}
.y138{bottom:131.017333pt;}
.y1c2{bottom:131.169333pt;}
.y17c{bottom:132.280000pt;}
.y8c{bottom:134.020000pt;}
.yf8{bottom:135.608000pt;}
.y160{bottom:136.138667pt;}
.y11{bottom:136.820000pt;}
.y72{bottom:140.613333pt;}
.y3d{bottom:144.350667pt;}
.y10b{bottom:144.512000pt;}
.y1a9{bottom:147.574667pt;}
.y1c1{bottom:148.193333pt;}
.y137{bottom:149.586667pt;}
.ybc{bottom:151.229333pt;}
.y8b{bottom:152.589333pt;}
.y10{bottom:152.721333pt;}
.ya8{bottom:153.636000pt;}
.yf7{bottom:154.177333pt;}
.y17b{bottom:154.394667pt;}
.y15f{bottom:154.709333pt;}
.y71{bottom:159.184000pt;}
.y178{bottom:159.730667pt;}
.y1a8{bottom:162.186667pt;}
.y3c{bottom:162.920000pt;}
.y10a{bottom:163.082667pt;}
.y1c0{bottom:165.216000pt;}
.y1a7{bottom:166.044000pt;}
.y17a{bottom:166.080000pt;}
.y136{bottom:168.157333pt;}
.ya7{bottom:168.221333pt;}
.yf{bottom:168.621333pt;}
.y177{bottom:168.844000pt;}
.y8a{bottom:171.160000pt;}
.yf6{bottom:172.748000pt;}
.y15e{bottom:173.280000pt;}
.ybb{bottom:173.940000pt;}
.y70{bottom:177.753333pt;}
.y3b{bottom:181.490667pt;}
.y109{bottom:181.653333pt;}
.y1bf{bottom:182.238667pt;}
.yba{bottom:183.053333pt;}
.y179{bottom:183.189333pt;}
.y1a6{bottom:184.161333pt;}
.ye{bottom:184.521333pt;}
.y134{bottom:186.728000pt;}
.ya6{bottom:186.790667pt;}
.y89{bottom:189.730667pt;}
.yf5{bottom:191.318667pt;}
.y1a5{bottom:191.468000pt;}
.y135{bottom:191.549333pt;}
.y15d{bottom:191.849333pt;}
.y6f{bottom:196.324000pt;}
.y176{bottom:197.934667pt;}
.y1be{bottom:199.261333pt;}
.y3a{bottom:200.061333pt;}
.y108{bottom:200.222667pt;}
.yd{bottom:200.422667pt;}
.yd9{bottom:203.693333pt;}
.y133{bottom:205.297333pt;}
.ya5{bottom:205.361333pt;}
.y88{bottom:208.300000pt;}
.y15c{bottom:210.420000pt;}
.yf4{bottom:213.873333pt;}
.y6e{bottom:214.894667pt;}
.y1bd{bottom:216.284000pt;}
.y175{bottom:216.504000pt;}
.y39{bottom:218.632000pt;}
.y107{bottom:218.793333pt;}
.yb9{bottom:219.077333pt;}
.yd8{bottom:220.789333pt;}
.y1a3{bottom:222.976000pt;}
.y132{bottom:223.868000pt;}
.ya4{bottom:223.932000pt;}
.yc{bottom:224.293333pt;}
.y87{bottom:226.870667pt;}
.y1a2{bottom:230.281333pt;}
.y15b{bottom:232.974667pt;}
.y1bc{bottom:233.306667pt;}
.y6d{bottom:233.464000pt;}
.y38{bottom:237.201333pt;}
.y106{bottom:237.364000pt;}
.y1a4{bottom:237.588000pt;}
.yd7{bottom:237.885333pt;}
.yb{bottom:240.193333pt;}
.y131{bottom:242.438667pt;}
.ya3{bottom:242.501333pt;}
.y174{bottom:244.360000pt;}
.yf3{bottom:245.289333pt;}
.y86{bottom:245.441333pt;}
.y1bb{bottom:250.329333pt;}
.y6c{bottom:252.034667pt;}
.yb8{bottom:253.122667pt;}
.y37{bottom:255.772000pt;}
.y105{bottom:255.934667pt;}
.ya{bottom:256.093333pt;}
.y130{bottom:261.008000pt;}
.ya2{bottom:261.072000pt;}
.y15a{bottom:261.549333pt;}
.y1a1{bottom:261.789333pt;}
.y173{bottom:262.930667pt;}
.yf2{bottom:263.860000pt;}
.y1ba{bottom:267.352000pt;}
.y1a0{bottom:269.096000pt;}
.y6b{bottom:270.605333pt;}
.yb7{bottom:271.693333pt;}
.y9{bottom:271.994667pt;}
.y36{bottom:274.342667pt;}
.y104{bottom:274.504000pt;}
.y85{bottom:277.110667pt;}
.y12f{bottom:279.578667pt;}
.ya1{bottom:279.642667pt;}
.y172{bottom:281.500000pt;}
.yf1{bottom:282.429333pt;}
.y1b9{bottom:284.374667pt;}
.y8{bottom:287.894667pt;}
.y6a{bottom:289.176000pt;}
.yb6{bottom:290.264000pt;}
.y35{bottom:292.912000pt;}
.y103{bottom:293.074667pt;}
.y84{bottom:294.205333pt;}
.ya0{bottom:298.212000pt;}
.y171{bottom:300.070667pt;}
.y19f{bottom:300.602667pt;}
.yf0{bottom:301.000000pt;}
.y1b8{bottom:301.397333pt;}
.y7{bottom:303.794667pt;}
.y69{bottom:307.745333pt;}
.y19e{bottom:307.909333pt;}
.yb5{bottom:308.834667pt;}
.y12e{bottom:311.248000pt;}
.y83{bottom:311.301333pt;}
.y34{bottom:311.482667pt;}
.y102{bottom:311.645333pt;}
.y9f{bottom:316.782667pt;}
.y170{bottom:318.641333pt;}
.yef{bottom:319.570667pt;}
.y1b7{bottom:322.405333pt;}
.y6{bottom:325.009333pt;}
.y68{bottom:326.316000pt;}
.yb4{bottom:327.404000pt;}
.y82{bottom:328.397333pt;}
.y33{bottom:330.053333pt;}
.y101{bottom:330.214667pt;}
.y9e{bottom:335.353333pt;}
.y16f{bottom:337.210667pt;}
.yee{bottom:338.140000pt;}
.y19d{bottom:339.417333pt;}
.y5{bottom:340.909333pt;}
.y67{bottom:344.886667pt;}
.y81{bottom:345.493333pt;}
.yb3{bottom:345.974667pt;}
.y19b{bottom:346.722667pt;}
.y32{bottom:348.622667pt;}
.yff{bottom:348.785333pt;}
.y100{bottom:353.606667pt;}
.y9d{bottom:353.922667pt;}
.y198{bottom:354.029333pt;}
.y16e{bottom:355.781333pt;}
.yed{bottom:356.710667pt;}
.y4{bottom:356.809333pt;}
.y1b6{bottom:356.916000pt;}
.y197{bottom:361.334667pt;}
.y66{bottom:363.456000pt;}
.yb1{bottom:364.545333pt;}
.yfe{bottom:367.356000pt;}
.y199{bottom:368.641333pt;}
.yb2{bottom:369.366667pt;}
.y31{bottom:371.178667pt;}
.y3{bottom:372.710667pt;}
.y16d{bottom:374.352000pt;}
.yec{bottom:375.281333pt;}
.y19a{bottom:375.946667pt;}
.y9c{bottom:376.478667pt;}
.y65{bottom:382.026667pt;}
.y1b5{bottom:382.217333pt;}
.yb0{bottom:383.114667pt;}
.y19c{bottom:383.253333pt;}
.yfd{bottom:385.925333pt;}
.yeb{bottom:393.850667pt;}
.y2{bottom:393.924000pt;}
.y64{bottom:400.597333pt;}
.yaf{bottom:401.685333pt;}
.yfc{bottom:404.496000pt;}
.y195{bottom:407.454667pt;}
.y1b4{bottom:407.520000pt;}
.y1{bottom:409.824000pt;}
.yea{bottom:412.421333pt;}
.y9b{bottom:414.568000pt;}
.y194{bottom:414.760000pt;}
.y16c{bottom:417.950667pt;}
.y63{bottom:419.166667pt;}
.yae{bottom:420.256000pt;}
.y196{bottom:422.066667pt;}
.y11d{bottom:424.046667pt;}
.yfb{bottom:427.052000pt;}
.y9a{bottom:430.929333pt;}
.ye9{bottom:430.992000pt;}
.y1b3{bottom:432.822667pt;}
.y1e3{bottom:433.094667pt;}
.y16b{bottom:437.078667pt;}
.y62{bottom:437.737333pt;}
.y30{bottom:438.128000pt;}
.yad{bottom:438.825333pt;}
.y11c{bottom:442.617333pt;}
.y192{bottom:446.268000pt;}
.y99{bottom:447.658667pt;}
.ye8{bottom:449.561333pt;}
.y1e2{bottom:450.117333pt;}
.y191{bottom:453.574667pt;}
.yfa{bottom:455.625333pt;}
.y16a{bottom:456.206667pt;}
.y61{bottom:456.308000pt;}
.y2f{bottom:456.698667pt;}
.yac{bottom:457.396000pt;}
.y146{bottom:458.048000pt;}
.y1b2{bottom:458.125333pt;}
.y193{bottom:460.880000pt;}
.y11b{bottom:461.188000pt;}
.y98{bottom:463.598667pt;}
.y1e1{bottom:467.140000pt;}
.ye7{bottom:472.117333pt;}
.y60{bottom:474.877333pt;}
.y2e{bottom:475.269333pt;}
.y169{bottom:475.334667pt;}
.y1b1{bottom:475.457333pt;}
.y145{bottom:476.617333pt;}
.y11a{bottom:479.757333pt;}
.yab{bottom:479.952000pt;}
.y97{bottom:480.328000pt;}
.y190{bottom:485.082667pt;}
.y18f{bottom:492.388000pt;}
.y1b0{bottom:492.789333pt;}
.y5f{bottom:493.448000pt;}
.y2d{bottom:493.838667pt;}
.y168{bottom:494.462667pt;}
.y144{bottom:495.188000pt;}
.y96{bottom:496.269333pt;}
.y119{bottom:498.328000pt;}
.y1e0{bottom:502.733333pt;}
.ye6{bottom:506.628000pt;}
.yaa{bottom:511.620000pt;}
.y5e{bottom:512.018667pt;}
.y95{bottom:512.209333pt;}
.y167{bottom:513.590667pt;}
.y143{bottom:513.758667pt;}
.y118{bottom:516.898667pt;}
.y1af{bottom:518.092000pt;}
.y1df{bottom:519.756000pt;}
.ye5{bottom:525.197333pt;}
.y94{bottom:528.149333pt;}
.y2c{bottom:528.349333pt;}
.ya9{bottom:528.716000pt;}
.y5d{bottom:530.589333pt;}
.y142{bottom:532.329333pt;}
.y18e{bottom:532.502667pt;}
.y1ae{bottom:535.424000pt;}
.y117{bottom:535.469333pt;}
.y1de{bottom:536.778667pt;}
.y166{bottom:539.386667pt;}
.ye4{bottom:543.768000pt;}
.y93{bottom:544.089333pt;}
.y2b{bottom:546.920000pt;}
.y5c{bottom:549.158667pt;}
.y164{bottom:549.589333pt;}
.y141{bottom:550.898667pt;}
.y1ad{bottom:552.756000pt;}
.y1dd{bottom:553.801333pt;}
.y116{bottom:554.038667pt;}
.yd6{bottom:556.318667pt;}
.y165{bottom:558.514667pt;}
.ye3{bottom:562.338667pt;}
.y18d{bottom:565.484000pt;}
.y2a{bottom:565.490667pt;}
.y92{bottom:566.697333pt;}
.y5b{bottom:567.729333pt;}
.y140{bottom:569.469333pt;}
.y1ac{bottom:570.088000pt;}
.y1dc{bottom:570.824000pt;}
.y115{bottom:572.609333pt;}
.yd5{bottom:574.889333pt;}
.ye2{bottom:580.909333pt;}
.y18c{bottom:584.054667pt;}
.y29{bottom:584.060000pt;}
.y5a{bottom:586.300000pt;}
.y1ab{bottom:587.420000pt;}
.y1db{bottom:587.846667pt;}
.y13f{bottom:588.040000pt;}
.y163{bottom:589.782667pt;}
.y114{bottom:591.180000pt;}
.yd4{bottom:593.460000pt;}
.y91{bottom:595.733333pt;}
.ye1{bottom:599.478667pt;}
.y159{bottom:600.885333pt;}
.y18b{bottom:602.625333pt;}
.y28{bottom:602.630667pt;}
.y1aa{bottom:604.753333pt;}
.y59{bottom:604.869333pt;}
.y13e{bottom:606.609333pt;}
.y113{bottom:609.749333pt;}
.yd3{bottom:612.029333pt;}
.ye0{bottom:618.049333pt;}
.y158{bottom:619.454667pt;}
.y18a{bottom:621.194667pt;}
.y27{bottom:621.201333pt;}
.y1da{bottom:621.892000pt;}
.y90{bottom:623.198667pt;}
.y58{bottom:623.440000pt;}
.y162{bottom:624.146667pt;}
.y13d{bottom:625.180000pt;}
.y112{bottom:628.320000pt;}
.yd2{bottom:630.600000pt;}
.ydf{bottom:636.620000pt;}
.y157{bottom:638.025333pt;}
.y1d9{bottom:638.914667pt;}
.y189{bottom:639.765333pt;}
.y26{bottom:639.770667pt;}
.y57{bottom:642.010667pt;}
.y13c{bottom:643.750667pt;}
.y111{bottom:646.890667pt;}
.yd1{bottom:649.170667pt;}
.yde{bottom:655.189333pt;}
.y1d8{bottom:655.937333pt;}
.y80{bottom:656.078667pt;}
.y156{bottom:656.596000pt;}
.y188{bottom:658.336000pt;}
.y25{bottom:658.341333pt;}
.y56{bottom:660.580000pt;}
.y12d{bottom:661.430667pt;}
.y13b{bottom:662.320000pt;}
.y110{bottom:665.460000pt;}
.yd0{bottom:667.740000pt;}
.y1d7{bottom:672.961333pt;}
.ydd{bottom:673.760000pt;}
.y7f{bottom:674.649333pt;}
.y155{bottom:675.165333pt;}
.y187{bottom:676.905333pt;}
.y24{bottom:676.912000pt;}
.y55{bottom:679.150667pt;}
.y12c{bottom:680.001333pt;}
.y13a{bottom:684.876000pt;}
.ycf{bottom:686.310667pt;}
.y1d6{bottom:689.984000pt;}
.ydc{bottom:692.330667pt;}
.y7e{bottom:693.218667pt;}
.y154{bottom:693.736000pt;}
.y186{bottom:695.476000pt;}
.y23{bottom:695.482667pt;}
.y10f{bottom:697.129333pt;}
.y54{bottom:697.721333pt;}
.y12b{bottom:698.570667pt;}
.yce{bottom:704.881333pt;}
.y1d5{bottom:707.006667pt;}
.y7d{bottom:711.789333pt;}
.y153{bottom:712.306667pt;}
.y185{bottom:714.046667pt;}
.y22{bottom:714.052000pt;}
.y10e{bottom:714.225333pt;}
.y53{bottom:716.290667pt;}
.y12a{bottom:717.141333pt;}
.ycd{bottom:723.452000pt;}
.ydb{bottom:724.000000pt;}
.y1d4{bottom:724.029333pt;}
.y7c{bottom:730.360000pt;}
.y152{bottom:730.876000pt;}
.y184{bottom:732.616000pt;}
.y21{bottom:732.622667pt;}
.y52{bottom:734.861333pt;}
.y129{bottom:735.712000pt;}
.y1d3{bottom:741.052000pt;}
.yda{bottom:741.094667pt;}
.ycc{bottom:742.021333pt;}
.y7b{bottom:748.929333pt;}
.y151{bottom:749.446667pt;}
.y183{bottom:751.186667pt;}
.y20{bottom:751.193333pt;}
.y51{bottom:753.432000pt;}
.y128{bottom:754.281333pt;}
.y1d2{bottom:758.074667pt;}
.yca{bottom:760.592000pt;}
.ycb{bottom:765.413333pt;}
.y7a{bottom:767.500000pt;}
.y150{bottom:768.017333pt;}
.y182{bottom:769.757333pt;}
.y1f{bottom:769.762667pt;}
.y50{bottom:772.002667pt;}
.y127{bottom:772.852000pt;}
.y1d1{bottom:775.097333pt;}
.yc9{bottom:779.162667pt;}
.y79{bottom:786.070667pt;}
.y14f{bottom:786.586667pt;}
.y181{bottom:788.326667pt;}
.y1e{bottom:788.333333pt;}
.y4f{bottom:790.572000pt;}
.y126{bottom:791.422667pt;}
.y1d0{bottom:792.120000pt;}
.yc8{bottom:797.732000pt;}
.y78{bottom:804.640000pt;}
.y14e{bottom:805.157333pt;}
.y180{bottom:806.897333pt;}
.y4e{bottom:809.142667pt;}
.y125{bottom:809.992000pt;}
.yc7{bottom:816.302667pt;}
.y1d{bottom:821.108000pt;}
.y77{bottom:823.210667pt;}
.y14d{bottom:823.728000pt;}
.y1cf{bottom:826.165333pt;}
.y4d{bottom:827.713333pt;}
.y124{bottom:828.562667pt;}
.y17f{bottom:829.453333pt;}
.yc6{bottom:834.873333pt;}
.y1c{bottom:835.453333pt;}
.y14c{bottom:842.297333pt;}
.y1ce{bottom:843.188000pt;}
.y76{bottom:845.766667pt;}
.y4c{bottom:846.282667pt;}
.y123{bottom:847.133333pt;}
.y1b{bottom:849.800000pt;}
.yc5{bottom:856.238667pt;}
.y1cd{bottom:860.210667pt;}
.y14b{bottom:860.868000pt;}
.y4b{bottom:864.853333pt;}
.yc4{bottom:865.664000pt;}
.y122{bottom:865.702667pt;}
.y75{bottom:867.482667pt;}
.y1cc{bottom:877.233333pt;}
.y14a{bottom:879.438667pt;}
.y4a{bottom:883.424000pt;}
.y121{bottom:884.273333pt;}
.y1a{bottom:890.570667pt;}
.y1cb{bottom:894.256000pt;}
.yc3{bottom:898.009333pt;}
.y49{bottom:901.993333pt;}
.y120{bottom:906.829333pt;}
.y1ca{bottom:911.278667pt;}
.yc2{bottom:916.578667pt;}
.y48{bottom:920.564000pt;}
.y19{bottom:925.081333pt;}
.y11f{bottom:926.289333pt;}
.y1c9{bottom:928.301333pt;}
.yc1{bottom:935.149333pt;}
.y47{bottom:939.134667pt;}
.y1c8{bottom:945.324000pt;}
.y18{bottom:952.936000pt;}
.yc0{bottom:953.720000pt;}
.y46{bottom:957.704000pt;}
.y1c7{bottom:962.346667pt;}
.y149{bottom:972.289333pt;}
.y45{bottom:976.274667pt;}
.y1c6{bottom:979.369333pt;}
.y17{bottom:980.792000pt;}
.y148{bottom:990.860000pt;}
.y44{bottom:994.845333pt;}
.y1c5{bottom:996.392000pt;}
.y43{bottom:1013.414667pt;}
.y15{bottom:1033.434667pt;}
.y42{bottom:1067.149333pt;}
.h29{height:23.209028pt;}
.h10{height:24.760382pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h14{height:29.397999pt;}
.h1d{height:29.599908pt;}
.h9{height:30.945242pt;}
.hd{height:31.157778pt;}
.h11{height:31.558400pt;}
.h22{height:34.574438pt;}
.hf{height:34.813542pt;}
.h1a{height:35.052646pt;}
.h13{height:37.778179pt;}
.h8{height:38.415786pt;}
.ha{height:38.681455pt;}
.h6{height:38.947124pt;}
.h12{height:41.285014pt;}
.he{height:41.524400pt;}
.h27{height:44.436941pt;}
.h4{height:45.271688pt;}
.hc{height:46.099251pt;}
.h1b{height:48.683332pt;}
.hb{height:48.688666pt;}
.h17{height:50.849067pt;}
.h1e{height:57.799269pt;}
.h20{height:63.801105pt;}
.h23{height:64.034876pt;}
.h26{height:64.040209pt;}
.h7{height:69.148877pt;}
.h28{height:73.658274pt;}
.h15{height:73.746179pt;}
.h18{height:74.649455pt;}
.h16{height:75.134788pt;}
.h19{height:79.225733pt;}
.h5{height:83.992000pt;}
.h21{height:93.022438pt;}
.h25{height:93.261542pt;}
.h1c{height:94.045355pt;}
.h24{height:102.884941pt;}
.h1f{height:132.683332pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x2{left:52.049422pt;}
.x99{left:61.013333pt;}
.x88{left:76.733333pt;}
.x8c{left:77.898667pt;}
.x90{left:138.173333pt;}
.x92{left:145.376000pt;}
.x8d{left:156.702667pt;}
.x98{left:169.668000pt;}
.x5{left:220.912000pt;}
.x4{left:221.858667pt;}
.x39{left:226.194667pt;}
.x9a{left:229.592000pt;}
.x50{left:232.406667pt;}
.x5a{left:237.322667pt;}
.x51{left:238.457333pt;}
.x48{left:240.344000pt;}
.x3a{left:242.652000pt;}
.x6e{left:243.869333pt;}
.x7d{left:247.790667pt;}
.xc{left:250.204000pt;}
.x5b{left:251.858667pt;}
.x68{left:254.568000pt;}
.x8e{left:255.717333pt;}
.x91{left:257.212000pt;}
.x31{left:258.380000pt;}
.x89{left:260.816000pt;}
.x93{left:262.248000pt;}
.x49{left:267.097333pt;}
.x32{left:268.940000pt;}
.x29{left:272.936000pt;}
.x20{left:276.052000pt;}
.x79{left:279.612000pt;}
.x16{left:284.557333pt;}
.x33{left:285.648000pt;}
.x21{left:289.334667pt;}
.x34{left:290.296000pt;}
.x17{left:291.198667pt;}
.x35{left:293.041333pt;}
.x7f{left:294.269333pt;}
.x22{left:296.076000pt;}
.x36{left:297.353333pt;}
.x23{left:309.360000pt;}
.x80{left:314.121333pt;}
.x4a{left:325.274667pt;}
.x7c{left:330.321333pt;}
.x4f{left:332.761333pt;}
.x66{left:334.664000pt;}
.x9b{left:340.442667pt;}
.x72{left:341.489333pt;}
.x2b{left:346.654667pt;}
.x9c{left:348.574667pt;}
.x8{left:350.566667pt;}
.x94{left:351.576000pt;}
.x67{left:354.878667pt;}
.x95{left:360.966667pt;}
.x4b{left:362.805333pt;}
.x73{left:363.744000pt;}
.x37{left:366.954667pt;}
.x54{left:367.880000pt;}
.x2c{left:376.193333pt;}
.x38{left:378.021333pt;}
.x3f{left:381.006667pt;}
.x4c{left:385.509333pt;}
.x9{left:387.398667pt;}
.x55{left:389.436000pt;}
.x42{left:390.989333pt;}
.x81{left:393.649333pt;}
.x85{left:395.044000pt;}
.x6b{left:398.808000pt;}
.x58{left:400.330667pt;}
.x30{left:402.352000pt;}
.x24{left:407.686667pt;}
.x7a{left:409.950667pt;}
.x3d{left:417.809333pt;}
.x25{left:420.970667pt;}
.x4d{left:423.465333pt;}
.x6c{left:429.294667pt;}
.x74{left:441.450667pt;}
.x43{left:442.376000pt;}
.x87{left:447.734667pt;}
.x96{left:448.838667pt;}
.xa{left:449.853333pt;}
.x6d{left:450.968000pt;}
.x69{left:454.269333pt;}
.x8a{left:456.328000pt;}
.x3e{left:459.272000pt;}
.x71{left:461.938667pt;}
.x75{left:462.962667pt;}
.x97{left:464.500000pt;}
.x8f{left:469.269333pt;}
.xf{left:470.758667pt;}
.x60{left:473.846667pt;}
.x4e{left:476.144000pt;}
.x10{left:477.400000pt;}
.x86{left:479.592000pt;}
.x11{left:480.668000pt;}
.x6a{left:483.808000pt;}
.x6f{left:484.889333pt;}
.xb{left:486.685333pt;}
.x5e{left:488.220000pt;}
.x44{left:489.940000pt;}
.x70{left:490.938667pt;}
.x9d{left:496.320000pt;}
.x5f{left:499.288000pt;}
.x61{left:504.617333pt;}
.x2d{left:507.898667pt;}
.x2e{left:516.104000pt;}
.x9f{left:522.460000pt;}
.x5c{left:526.600000pt;}
.x5d{left:532.312000pt;}
.x62{left:537.456000pt;}
.x82{left:540.850667pt;}
.x7e{left:550.612000pt;}
.x56{left:560.146667pt;}
.x83{left:561.838667pt;}
.x3b{left:565.006667pt;}
.x63{left:568.228000pt;}
.x77{left:572.586667pt;}
.x57{left:581.242667pt;}
.x3c{left:582.341333pt;}
.x7b{left:587.784000pt;}
.x52{left:592.569333pt;}
.x78{left:594.072000pt;}
.x14{left:596.470667pt;}
.x53{left:598.620000pt;}
.x15{left:603.112000pt;}
.x76{left:605.368000pt;}
.x40{left:607.270667pt;}
.x45{left:616.138667pt;}
.x65{left:618.257333pt;}
.x26{left:626.209333pt;}
.x12{left:631.240000pt;}
.x13{left:637.882667pt;}
.x27{left:639.493333pt;}
.x1a{left:640.933333pt;}
.xd{left:642.565333pt;}
.x1b{left:647.574667pt;}
.xe{left:649.206667pt;}
.x59{left:652.784000pt;}
.x2a{left:655.281333pt;}
.x8b{left:658.809333pt;}
.x18{left:660.308000pt;}
.x28{left:662.004000pt;}
.x19{left:666.950667pt;}
.x9e{left:668.933333pt;}
.x46{left:673.034667pt;}
.x6{left:686.696000pt;}
.x84{left:688.540000pt;}
.x47{left:692.069333pt;}
.x1e{left:696.941333pt;}
.x64{left:702.614667pt;}
.x1f{left:710.225333pt;}
.x1c{left:712.008000pt;}
.x2f{left:715.656000pt;}
.x1d{left:718.650667pt;}
.x41{left:742.694667pt;}
.x7{left:744.717333pt;}
}




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