
    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_a1feccdadf3345cf732a6a2c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ceb1537c5c50b79491de9039.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.014000;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_07c6c4413878e83e3f04a9c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_86fe406ff4651583134eeeb0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ff34a75420436e7752f955c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691000;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_49942afa42a3e623ce116d3f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761000;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_95bf651711a919e40baef359.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f709b10ddb4fbe74bdfd9099.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.994000;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_21bc6daedbcfcc456ce19c11.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;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_40698203bb9d05b9a39dee27.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740000;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_8f27dd0dff5e13393debdd42.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758000;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_355a7545ac2dba518e40c9c1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m18{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);}
.m1f{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);}
.m1b{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{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);}
.m27{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);}
.m19{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);}
.m14{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);}
.m6{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);}
.m7{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);}
.m1d{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);}
.m17{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);}
.m20{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);}
.m21{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);}
.m1e{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);}
.m23{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);}
.m11{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);}
.m26{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);}
.m10{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);}
.m22{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);}
.m4{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);}
.m25{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);}
.m13{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);}
.ma{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);}
.m1a{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);}
.m8{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);}
.me{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.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);}
.mf{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);}
.m16{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.mb{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);}
.v5{vertical-align:-37.488000px;}
.v7{vertical-align:-27.600000px;}
.v9{vertical-align:-24.534000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:17.364000px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:38.310000px;}
.ls15{letter-spacing:0.000000px;}
.ls67{letter-spacing:0.000088px;}
.ls4d{letter-spacing:0.000196px;}
.ls16{letter-spacing:0.000330px;}
.ls5f{letter-spacing:0.000566px;}
.ls4b{letter-spacing:0.000568px;}
.ls64{letter-spacing:0.000658px;}
.ls6d{letter-spacing:0.000676px;}
.ls54{letter-spacing:0.000800px;}
.ls5d{letter-spacing:0.000901px;}
.ls53{letter-spacing:0.001036px;}
.ls1f{letter-spacing:0.001133px;}
.ls56{letter-spacing:0.001155px;}
.ls5a{letter-spacing:0.001502px;}
.ls6e{letter-spacing:0.001584px;}
.ls58{letter-spacing:0.001834px;}
.ls8{letter-spacing:0.001952px;}
.ls61{letter-spacing:0.002045px;}
.ls60{letter-spacing:0.002074px;}
.ls6f{letter-spacing:0.002213px;}
.ls62{letter-spacing:0.002382px;}
.ls5e{letter-spacing:0.002461px;}
.ls55{letter-spacing:0.002544px;}
.ls4{letter-spacing:0.002725px;}
.ls6c{letter-spacing:0.002841px;}
.ls57{letter-spacing:0.002868px;}
.ls69{letter-spacing:0.003179px;}
.ls19{letter-spacing:0.003389px;}
.ls7{letter-spacing:0.003488px;}
.ls63{letter-spacing:0.003490px;}
.ls68{letter-spacing:0.003634px;}
.ls5{letter-spacing:0.004200px;}
.ls4f{letter-spacing:0.004523px;}
.ls36{letter-spacing:0.642088px;}
.ls27{letter-spacing:0.648088px;}
.ls3b{letter-spacing:2.031467px;}
.ls35{letter-spacing:2.988600px;}
.ls3c{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls1{letter-spacing:10.461299px;}
.ls0{letter-spacing:10.461300px;}
.ls37{letter-spacing:10.519910px;}
.ls38{letter-spacing:10.522660px;}
.ls2b{letter-spacing:11.949787px;}
.ls23{letter-spacing:11.953354px;}
.ls14{letter-spacing:11.954850px;}
.ls22{letter-spacing:11.955746px;}
.ls28{letter-spacing:12.136797px;}
.ls2a{letter-spacing:12.144393px;}
.ls3a{letter-spacing:12.524693px;}
.ls2f{letter-spacing:12.546894px;}
.ls39{letter-spacing:12.557700px;}
.ls29{letter-spacing:13.117365px;}
.ls65{letter-spacing:13.131932px;}
.ls12{letter-spacing:13.400800px;}
.ls13{letter-spacing:13.401834px;}
.ls4e{letter-spacing:13.424400px;}
.ls21{letter-spacing:13.444090px;}
.ls51{letter-spacing:13.448400px;}
.ls20{letter-spacing:13.450090px;}
.ls5b{letter-spacing:13.451102px;}
.ls50{letter-spacing:13.451510px;}
.ls4c{letter-spacing:13.454400px;}
.ls59{letter-spacing:13.499247px;}
.ls52{letter-spacing:13.571463px;}
.ls5c{letter-spacing:13.614359px;}
.ls66{letter-spacing:13.681631px;}
.ls41{letter-spacing:14.524445px;}
.ls40{letter-spacing:14.530567px;}
.lsc{letter-spacing:14.536094px;}
.lsb{letter-spacing:14.537128px;}
.lsd{letter-spacing:14.541976px;}
.lse{letter-spacing:14.543011px;}
.ls1c{letter-spacing:14.594011px;}
.ls47{letter-spacing:14.604037px;}
.ls1d{letter-spacing:14.652782px;}
.ls30{letter-spacing:14.689751px;}
.ls17{letter-spacing:14.723468px;}
.ls43{letter-spacing:14.759259px;}
.ls1a{letter-spacing:14.766962px;}
.ls2c{letter-spacing:14.909013px;}
.ls25{letter-spacing:14.937767px;}
.ls3d{letter-spacing:14.942774px;}
.ls24{letter-spacing:14.943767px;}
.ls26{letter-spacing:14.944200px;}
.ls1e{letter-spacing:14.944766px;}
.ls4a{letter-spacing:14.953016px;}
.ls42{letter-spacing:15.060840px;}
.ls44{letter-spacing:15.271059px;}
.ls3e{letter-spacing:15.312200px;}
.ls6a{letter-spacing:15.562165px;}
.ls34{letter-spacing:15.652310px;}
.ls33{letter-spacing:15.658310px;}
.ls49{letter-spacing:16.147494px;}
.ls18{letter-spacing:16.153002px;}
.ls1b{letter-spacing:16.335729px;}
.ls6b{letter-spacing:16.685694px;}
.ls2e{letter-spacing:16.818082px;}
.ls2d{letter-spacing:16.823965px;}
.ls70{letter-spacing:17.038635px;}
.ls45{letter-spacing:17.571024px;}
.ls31{letter-spacing:17.753353px;}
.ls46{letter-spacing:18.094553px;}
.lsf{letter-spacing:18.325364px;}
.ls11{letter-spacing:18.331246px;}
.ls10{letter-spacing:18.336094px;}
.lsa{letter-spacing:18.436094px;}
.ls48{letter-spacing:18.535729px;}
.ls32{letter-spacing:19.023965px;}
.ls3f{letter-spacing:22.206318px;}
.ls2{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.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;}
}
.ws83{word-spacing:-14.943900px;}
.ws53{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws1{word-spacing:-10.460700px;}
.ws2d{word-spacing:-3.347434px;}
.ws8b{word-spacing:-3.287658px;}
.ws48{word-spacing:-2.510575px;}
.ws88{word-spacing:-2.450800px;}
.ws73{word-spacing:-2.391024px;}
.ws45{word-spacing:-2.271473px;}
.ws99{word-spacing:-2.151922px;}
.ws97{word-spacing:-2.092146px;}
.ws1b{word-spacing:-1.990541px;}
.ws31{word-spacing:-1.972595px;}
.ws9c{word-spacing:-1.912819px;}
.ws68{word-spacing:-1.673717px;}
.ws1a{word-spacing:-1.560154px;}
.ws46{word-spacing:-1.554166px;}
.ws7f{word-spacing:-1.434618px;}
.ws62{word-spacing:-1.374839px;}
.ws76{word-spacing:-1.195512px;}
.ws5d{word-spacing:-1.135736px;}
.ws43{word-spacing:-1.075961px;}
.ws93{word-spacing:-0.956410px;}
.ws86{word-spacing:-0.896634px;}
.ws8c{word-spacing:-0.777083px;}
.wsf0{word-spacing:-0.753178px;}
.ws92{word-spacing:-0.717307px;}
.ws39{word-spacing:-0.657532px;}
.wsa6{word-spacing:-0.645581px;}
.ws9e{word-spacing:-0.597756px;}
.ws1e{word-spacing:-0.537984px;}
.ws63{word-spacing:-0.478205px;}
.ws84{word-spacing:-0.418429px;}
.ws49{word-spacing:-0.358654px;}
.wsd0{word-spacing:-0.322790px;}
.ws3b{word-spacing:-0.298878px;}
.ws38{word-spacing:-0.239102px;}
.ws1d{word-spacing:-0.215194px;}
.ws2a{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.ws28{word-spacing:-0.119551px;}
.wsa2{word-spacing:-0.107597px;}
.wsd{word-spacing:-0.059776px;}
.ws22{word-spacing:-0.053798px;}
.ws15{word-spacing:-0.047821px;}
.ws2{word-spacing:-0.041843px;}
.ws11{word-spacing:-0.003625px;}
.wse{word-spacing:-0.003300px;}
.ws12{word-spacing:-0.003283px;}
.ws81{word-spacing:-0.001577px;}
.ws3{word-spacing:0.000000px;}
.ws77{word-spacing:0.053798px;}
.ws3f{word-spacing:0.059776px;}
.wse8{word-spacing:0.090885px;}
.ws1c{word-spacing:0.107597px;}
.ws3c{word-spacing:0.119551px;}
.ws5{word-spacing:0.125528px;}
.ws14{word-spacing:0.143462px;}
.wsa3{word-spacing:0.161395px;}
.ws70{word-spacing:0.163080px;}
.ws4{word-spacing:0.167371px;}
.ws4a{word-spacing:0.179327px;}
.ws71{word-spacing:0.183137px;}
.ws6f{word-spacing:0.191282px;}
.wsa5{word-spacing:0.215194px;}
.ws26{word-spacing:0.239102px;}
.wsa9{word-spacing:0.268992px;}
.ws42{word-spacing:0.298878px;}
.wsbb{word-spacing:0.322790px;}
.ws5c{word-spacing:0.358654px;}
.wsdc{word-spacing:0.376589px;}
.ws4c{word-spacing:0.418429px;}
.ws2c{word-spacing:0.478205px;}
.wsb3{word-spacing:0.484186px;}
.ws94{word-spacing:0.597756px;}
.wsa7{word-spacing:0.645581px;}
.ws75{word-spacing:0.657532px;}
.wsbf{word-spacing:0.806976px;}
.ws5b{word-spacing:0.896634px;}
.wsd6{word-spacing:0.914573px;}
.ws69{word-spacing:0.956410px;}
.ws9b{word-spacing:1.016185px;}
.wsd4{word-spacing:1.022170px;}
.ws5a{word-spacing:1.075961px;}
.ws20{word-spacing:1.075968px;}
.ws52{word-spacing:1.135736px;}
.ws4d{word-spacing:1.195512px;}
.ws35{word-spacing:1.255288px;}
.ws19{word-spacing:1.344960px;}
.ws51{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.ws91{word-spacing:1.434614px;}
.wsc4{word-spacing:1.452557px;}
.ws9a{word-spacing:1.494390px;}
.ws95{word-spacing:1.554166px;}
.wse1{word-spacing:1.560154px;}
.ws96{word-spacing:1.613941px;}
.wsdf{word-spacing:1.613952px;}
.ws87{word-spacing:1.793268px;}
.ws72{word-spacing:1.853044px;}
.ws5e{word-spacing:1.912819px;}
.ws30{word-spacing:1.972595px;}
.wse4{word-spacing:1.990541px;}
.ws3d{word-spacing:2.032370px;}
.wsad{word-spacing:2.044339px;}
.wsc7{word-spacing:2.098138px;}
.wsc6{word-spacing:2.151936px;}
.ws7e{word-spacing:2.324743px;}
.ws98{word-spacing:2.391024px;}
.ws36{word-spacing:2.450800px;}
.wsf1{word-spacing:2.474726px;}
.ws0{word-spacing:2.511541px;}
.wse5{word-spacing:2.528525px;}
.ws8d{word-spacing:2.570351px;}
.ws33{word-spacing:2.630126px;}
.wsd3{word-spacing:2.636122px;}
.wsd2{word-spacing:2.689920px;}
.ws23{word-spacing:2.743718px;}
.wsf3{word-spacing:2.797517px;}
.ws74{word-spacing:2.809453px;}
.ws57{word-spacing:2.863151px;}
.ws66{word-spacing:2.869229px;}
.ws16{word-spacing:2.869236px;}
.ws8a{word-spacing:2.929004px;}
.ws34{word-spacing:2.988780px;}
.ws59{word-spacing:3.048556px;}
.wsa8{word-spacing:3.072814px;}
.wsa0{word-spacing:3.108331px;}
.wsa4{word-spacing:3.108673px;}
.ws17{word-spacing:3.114654px;}
.ws6e{word-spacing:3.121933px;}
.ws85{word-spacing:3.168107px;}
.wsbd{word-spacing:3.219686px;}
.wsc0{word-spacing:3.220166px;}
.wse2{word-spacing:3.221914px;}
.wsb8{word-spacing:3.222758px;}
.wsac{word-spacing:3.227904px;}
.wsc8{word-spacing:3.229344px;}
.wsa1{word-spacing:3.287658px;}
.ws44{word-spacing:3.347434px;}
.ws89{word-spacing:3.407209px;}
.wsde{word-spacing:3.443098px;}
.ws2b{word-spacing:3.466985px;}
.wsf5{word-spacing:3.496896px;}
.ws50{word-spacing:3.526760px;}
.wsdd{word-spacing:3.550694px;}
.ws25{word-spacing:3.586536px;}
.wseb{word-spacing:3.604493px;}
.ws5f{word-spacing:3.765863px;}
.wsda{word-spacing:3.765888px;}
.ws8e{word-spacing:3.825638px;}
.ws32{word-spacing:3.885414px;}
.ws61{word-spacing:4.004965px;}
.ws40{word-spacing:4.064741px;}
.ws6b{word-spacing:4.088678px;}
.ws65{word-spacing:4.124516px;}
.ws4f{word-spacing:4.184292px;}
.ws67{word-spacing:4.303843px;}
.ws9d{word-spacing:4.423394px;}
.ws60{word-spacing:4.483170px;}
.ws37{word-spacing:4.782048px;}
.ws9f{word-spacing:4.841824px;}
.ws21{word-spacing:4.895654px;}
.ws3e{word-spacing:4.901599px;}
.ws1f{word-spacing:5.003251px;}
.ws8f{word-spacing:5.260253px;}
.ws3a{word-spacing:5.439580px;}
.wsa{word-spacing:5.481407px;}
.ws4b{word-spacing:5.559131px;}
.wsd8{word-spacing:6.025421px;}
.ws24{word-spacing:6.111902px;}
.wsb1{word-spacing:6.240614px;}
.wscf{word-spacing:6.402010px;}
.ws29{word-spacing:6.814418px;}
.ws6a{word-spacing:7.053521px;}
.ws27{word-spacing:7.173072px;}
.ws82{word-spacing:7.232848px;}
.ws47{word-spacing:7.830604px;}
.ws90{word-spacing:7.950155px;}
.ws8{word-spacing:9.833058px;}
.ws6{word-spacing:10.419305px;}
.ws80{word-spacing:10.473785px;}
.ws9{word-spacing:11.841512px;}
.ws2e{word-spacing:11.901520px;}
.ws58{word-spacing:11.903499px;}
.wsd1{word-spacing:13.073011px;}
.wsca{word-spacing:13.180608px;}
.wsee{word-spacing:13.288205px;}
.wsab{word-spacing:13.371734px;}
.wse3{word-spacing:13.388592px;}
.wsb5{word-spacing:13.388822px;}
.wsc1{word-spacing:13.390157px;}
.wsbc{word-spacing:13.392336px;}
.wsd7{word-spacing:13.393018px;}
.wsef{word-spacing:13.393402px;}
.wscd{word-spacing:13.394957px;}
.ws54{word-spacing:13.395802px;}
.wsbe{word-spacing:13.396646px;}
.wsaf{word-spacing:13.493196px;}
.wsc9{word-spacing:13.548773px;}
.wsd9{word-spacing:13.626997px;}
.wsb4{word-spacing:13.879987px;}
.wscc{word-spacing:14.791824px;}
.ws64{word-spacing:14.884124px;}
.wse0{word-spacing:15.009754px;}
.wse6{word-spacing:15.924326px;}
.ws41{word-spacing:16.258963px;}
.wsdb{word-spacing:16.354714px;}
.wsed{word-spacing:16.506462px;}
.wsd5{word-spacing:16.615210px;}
.wsc5{word-spacing:16.615920px;}
.wsb9{word-spacing:16.616227px;}
.wsea{word-spacing:16.617389px;}
.wsb2{word-spacing:16.618291px;}
.wscb{word-spacing:16.620691px;}
.wsb7{word-spacing:16.620874px;}
.wse7{word-spacing:16.621373px;}
.wsec{word-spacing:16.621805px;}
.wsba{word-spacing:16.621920px;}
.wsae{word-spacing:16.623706px;}
.wsc3{word-spacing:16.637919px;}
.wsaa{word-spacing:16.661686px;}
.wsc2{word-spacing:16.677504px;}
.wse9{word-spacing:16.731302px;}
.wsf2{word-spacing:16.946496px;}
.wsce{word-spacing:17.161690px;}
.wsb0{word-spacing:17.484480px;}
.ws4e{word-spacing:18.470660px;}
.ws7{word-spacing:22.339429px;}
.wsb{word-spacing:22.720640px;}
.wsf4{word-spacing:25.545346px;}
.ws10{word-spacing:40.042186px;}
.wsb6{word-spacing:48.418560px;}
.ws13{word-spacing:54.988186px;}
.ws7a{word-spacing:176.312774px;}
.ws7b{word-spacing:203.778941px;}
.ws7c{word-spacing:218.979437px;}
.ws7d{word-spacing:238.802458px;}
.ws6d{word-spacing:248.387213px;}
.ws78{word-spacing:251.704435px;}
.ws79{word-spacing:251.743488px;}
.ws6c{word-spacing:367.443072px;}
.ws55{word-spacing:627.927494px;}
.ws56{word-spacing:645.842333px;}
._18{margin-left:-6.981781px;}
._0{margin-left:-5.461229px;}
._6{margin-left:-3.538724px;}
._2{margin-left:-1.506341px;}
._4{width:3.000280px;}
._15{width:4.291748px;}
._9{width:10.436890px;}
._7{width:11.739949px;}
._3{width:12.971268px;}
._12{width:14.056965px;}
._a{width:15.278746px;}
._b{width:16.623677px;}
._e{width:18.482611px;}
._c{width:19.582618px;}
._8{width:21.196570px;}
._2f{width:22.547352px;}
._1a{width:23.684171px;}
._1{width:25.192966px;}
._13{width:27.018571px;}
._16{width:28.034756px;}
._30{width:29.077117px;}
._19{width:30.280054px;}
._d{width:31.417137px;}
._14{width:33.354785px;}
._f{width:39.762725px;}
._17{width:42.500452px;}
._5{width:54.408800px;}
._5e{width:61.868160px;}
._5c{width:88.767360px;}
._43{width:104.046091px;}
._44{width:115.774157px;}
._53{width:127.680499px;}
._40{width:135.948557px;}
._54{width:141.489792px;}
._48{width:151.711474px;}
._5b{width:153.934104px;}
._4a{width:156.230539px;}
._49{width:160.157822px;}
._52{width:167.868547px;}
._45{width:169.787750px;}
._47{width:176.512536px;}
._41{width:183.237350px;}
._56{width:185.729616px;}
._3f{width:199.645848px;}
._20{width:206.962445px;}
._5a{width:212.718874px;}
._46{width:222.116698px;}
._58{width:224.005738px;}
._23{width:233.861645px;}
._42{width:235.565654px;}
._59{width:240.662266px;}
._36{width:243.921946px;}
._4e{width:245.350147px;}
._2b{width:250.103054px;}
._33{width:255.165811px;}
._35{width:257.210150px;}
._4d{width:258.286118px;}
._51{width:262.428595px;}
._55{width:263.827354px;}
._3a{width:266.893862px;}
._57{width:269.153395px;}
._1c{width:276.093389px;}
._50{width:277.545946px;}
._3b{width:279.213696px;}
._37{width:284.270746px;}
._21{width:292.125312px;}
._4f{width:298.204531px;}
._24{width:305.574912px;}
._3d{width:306.704678px;}
._34{width:310.793357px;}
._3e{width:315.151027px;}
._4b{width:321.419232px;}
._4c{width:324.242957px;}
._3c{width:331.505741px;}
._1d{width:336.772982px;}
._26{width:343.717978px;}
._38{width:354.639053px;}
._39{width:364.591757px;}
._28{width:368.196250px;}
._2a{width:371.531750px;}
._31{width:372.661517px;}
._32{width:379.278720px;}
._2d{width:396.004315px;}
._1b{width:448.222061px;}
._1e{width:485.153971px;}
._27{width:499.868525px;}
._29{width:502.100467px;}
._25{width:664.007444px;}
._2c{width:672.581890px;}
._2e{width:699.481090px;}
._10{width:709.596198px;}
._22{width:729.882893px;}
._1f{width:789.061133px;}
._5d{width:2477.081929px;}
._11{width:2500.991929px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(91,41,111);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:49.829400px;}
.fs7{font-size:53.798400px;}
.fs8{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:136.067040px;}
.y0{bottom:0.000000px;}
.y17{bottom:12.925707px;}
.y47{bottom:31.890000px;}
.y10f{bottom:104.236500px;}
.y15{bottom:104.646000px;}
.y46{bottom:111.390000px;}
.ye5{bottom:111.973500px;}
.y136{bottom:119.148000px;}
.y14{bottom:122.535000px;}
.y10e{bottom:123.066000px;}
.y158{bottom:128.877000px;}
.y45{bottom:130.219500px;}
.ye4{bottom:130.803000px;}
.y9f{bottom:131.715000px;}
.y18d{bottom:133.719000px;}
.yc2{bottom:135.736500px;}
.y135{bottom:137.977500px;}
.y7d{bottom:138.426000px;}
.y13{bottom:140.422500px;}
.y10d{bottom:141.895500px;}
.y157{bottom:146.137500px;}
.y44{bottom:149.049000px;}
.y18c{bottom:150.978000px;}
.y9e{bottom:153.547500px;}
.yc1{bottom:154.566000px;}
.y134{bottom:156.807000px;}
.y7c{bottom:157.255500px;}
.y12{bottom:158.310000px;}
.y10c{bottom:160.725000px;}
.y156{bottom:163.398000px;}
.y43{bottom:167.878500px;}
.y18b{bottom:168.238500px;}
.y9d{bottom:169.984500px;}
.ye3{bottom:170.070000px;}
.yc0{bottom:173.395500px;}
.y133{bottom:175.636500px;}
.y7b{bottom:176.085000px;}
.y11{bottom:176.199000px;}
.y10b{bottom:179.554500px;}
.y155{bottom:180.658500px;}
.ye2{bottom:184.266000px;}
.y18a{bottom:185.499000px;}
.y9c{bottom:186.423000px;}
.y42{bottom:186.708000px;}
.y10{bottom:194.086500px;}
.y132{bottom:194.466000px;}
.y7a{bottom:194.914500px;}
.ybf{bottom:196.707000px;}
.y154{bottom:197.919000px;}
.y10a{bottom:198.384000px;}
.y189{bottom:202.759500px;}
.y9b{bottom:202.861500px;}
.y97{bottom:203.460000px;}
.y41{bottom:205.537500px;}
.ye1{bottom:206.098500px;}
.yf{bottom:211.974000px;}
.y131{bottom:213.295500px;}
.y79{bottom:213.744000px;}
.y152{bottom:215.178000px;}
.y153{bottom:215.179500px;}
.y190{bottom:215.461500px;}
.y109{bottom:217.213500px;}
.y9a{bottom:219.300000px;}
.y188{bottom:220.020000px;}
.ye0{bottom:222.537000px;}
.y40{bottom:224.367000px;}
.ye{bottom:229.863000px;}
.ybe{bottom:230.331000px;}
.y130{bottom:232.125000px;}
.y151{bottom:232.438500px;}
.y78{bottom:232.573500px;}
.y18f{bottom:232.722000px;}
.y99{bottom:235.738500px;}
.y108{bottom:236.043000px;}
.y187{bottom:237.280500px;}
.ydf{bottom:238.975500px;}
.y3f{bottom:243.196500px;}
.ybd{bottom:249.160500px;}
.y150{bottom:249.699000px;}
.y18e{bottom:249.982500px;}
.y12f{bottom:250.954500px;}
.y77{bottom:251.403000px;}
.y98{bottom:252.177000px;}
.y186{bottom:254.541000px;}
.y107{bottom:254.872500px;}
.yde{bottom:255.414000px;}
.y3e{bottom:262.026000px;}
.y14f{bottom:266.959500px;}
.ybc{bottom:267.990000px;}
.y96{bottom:268.615500px;}
.y12e{bottom:269.784000px;}
.y76{bottom:270.232500px;}
.y185{bottom:271.801500px;}
.y106{bottom:273.702000px;}
.y95{bottom:275.476500px;}
.ydd{bottom:279.055500px;}
.y3d{bottom:280.855500px;}
.y14e{bottom:284.220000px;}
.ybb{bottom:286.819500px;}
.y12d{bottom:288.613500px;}
.y75{bottom:289.062000px;}
.y105{bottom:292.531500px;}
.yd{bottom:299.892000px;}
.y14d{bottom:301.480500px;}
.y94{bottom:301.492500px;}
.ydc{bottom:302.695500px;}
.y3c{bottom:304.168500px;}
.yba{bottom:305.649000px;}
.y184{bottom:306.321000px;}
.y12c{bottom:307.443000px;}
.y74{bottom:307.891500px;}
.y104{bottom:311.361000px;}
.yc{bottom:317.779500px;}
.y93{bottom:317.931000px;}
.y14c{bottom:318.741000px;}
.ydb{bottom:319.134000px;}
.y183{bottom:323.581500px;}
.yb9{bottom:324.478500px;}
.y12b{bottom:326.272500px;}
.y73{bottom:326.719500px;}
.y103{bottom:330.190500px;}
.y92{bottom:334.368000px;}
.yda{bottom:335.572500px;}
.yb{bottom:335.667000px;}
.y14b{bottom:336.001500px;}
.y182{bottom:340.842000px;}
.yb8{bottom:343.308000px;}
.y12a{bottom:345.102000px;}
.y72{bottom:345.549000px;}
.y102{bottom:349.020000px;}
.y91{bottom:350.806500px;}
.yd9{bottom:352.011000px;}
.ya{bottom:353.556000px;}
.y90{bottom:357.667500px;}
.y14a{bottom:357.744000px;}
.y181{bottom:358.102500px;}
.yb7{bottom:362.137500px;}
.y129{bottom:363.931500px;}
.y71{bottom:364.378500px;}
.y101{bottom:367.849500px;}
.yd8{bottom:368.449500px;}
.y180{bottom:375.363000px;}
.y3b{bottom:379.318500px;}
.yb6{bottom:380.967000px;}
.y9{bottom:381.904500px;}
.y128{bottom:382.761000px;}
.y70{bottom:383.208000px;}
.yd7{bottom:384.888000px;}
.y100{bottom:386.679000px;}
.y8f{bottom:390.886500px;}
.y149{bottom:391.368000px;}
.y17f{bottom:392.623500px;}
.y3a{bottom:398.775000px;}
.y8{bottom:399.792000px;}
.yb5{bottom:399.796500px;}
.yd6{bottom:401.325000px;}
.y127{bottom:401.589000px;}
.y6f{bottom:402.037500px;}
.yff{bottom:405.508500px;}
.y8d{bottom:407.325000px;}
.y17e{bottom:409.884000px;}
.yd5{bottom:417.763500px;}
.y148{bottom:417.909000px;}
.yb4{bottom:418.626000px;}
.y126{bottom:420.418500px;}
.y6e{bottom:420.867000px;}
.y8e{bottom:423.763500px;}
.yfe{bottom:424.338000px;}
.y7{bottom:426.646500px;}
.y17d{bottom:427.144500px;}
.yd4{bottom:434.202000px;}
.y147{bottom:435.483000px;}
.y39{bottom:436.165500px;}
.y125{bottom:439.248000px;}
.y6d{bottom:439.696500px;}
.yb3{bottom:441.939000px;}
.y17c{bottom:444.403500px;}
.y6{bottom:444.534000px;}
.yfd{bottom:447.649500px;}
.yd3{bottom:450.640500px;}
.y146{bottom:453.057000px;}
.y38{bottom:455.622000px;}
.y124{bottom:458.077500px;}
.y8c{bottom:458.371500px;}
.y6c{bottom:458.526000px;}
.y17b{bottom:461.664000px;}
.y5{bottom:462.423000px;}
.yd2{bottom:467.079000px;}
.y37{bottom:475.080000px;}
.yb2{bottom:475.563000px;}
.y123{bottom:476.907000px;}
.y6b{bottom:477.355500px;}
.y17a{bottom:478.924500px;}
.y145{bottom:479.598000px;}
.y4{bottom:480.310500px;}
.yd1{bottom:483.517500px;}
.yfc{bottom:485.595000px;}
.y8b{bottom:494.392500px;}
.y36{bottom:494.536500px;}
.y122{bottom:495.736500px;}
.y6a{bottom:496.185000px;}
.y144{bottom:497.172000px;}
.y3{bottom:498.198000px;}
.yfb{bottom:499.792500px;}
.yd0{bottom:499.956000px;}
.y8a{bottom:513.222000px;}
.y179{bottom:513.445500px;}
.y35{bottom:513.993000px;}
.y121{bottom:514.566000px;}
.y143{bottom:514.746000px;}
.y69{bottom:515.014500px;}
.y2{bottom:516.087000px;}
.ycf{bottom:516.394500px;}
.yfa{bottom:518.635500px;}
.y178{bottom:530.706000px;}
.y89{bottom:532.051500px;}
.y120{bottom:533.395500px;}
.y34{bottom:533.451000px;}
.y68{bottom:533.844000px;}
.y1{bottom:533.974500px;}
.yf9{bottom:535.074000px;}
.yce{bottom:540.034500px;}
.y142{bottom:541.287000px;}
.y177{bottom:547.966500px;}
.y88{bottom:550.881000px;}
.yf8{bottom:551.512500px;}
.y11f{bottom:552.225000px;}
.y67{bottom:552.673500px;}
.y33{bottom:552.907500px;}
.ycc{bottom:556.473000px;}
.y176{bottom:565.227000px;}
.y141{bottom:567.826500px;}
.yf7{bottom:567.951000px;}
.y87{bottom:569.710500px;}
.y11e{bottom:571.054500px;}
.y66{bottom:571.503000px;}
.y32{bottom:572.364000px;}
.ycd{bottom:572.911500px;}
.yb1{bottom:574.192500px;}
.y175{bottom:582.487500px;}
.yf6{bottom:584.389500px;}
.y140{bottom:585.400500px;}
.y86{bottom:588.538500px;}
.y11d{bottom:589.884000px;}
.y65{bottom:590.332500px;}
.y31{bottom:591.822000px;}
.y174{bottom:599.746500px;}
.yf5{bottom:600.828000px;}
.y13f{bottom:602.976000px;}
.y85{bottom:607.368000px;}
.ycb{bottom:607.519500px;}
.yb0{bottom:607.816500px;}
.y11c{bottom:608.713500px;}
.y64{bottom:609.162000px;}
.y30{bottom:611.278500px;}
.y173{bottom:617.007000px;}
.yf4{bottom:617.266500px;}
.y84{bottom:626.197500px;}
.yaf{bottom:626.646000px;}
.yca{bottom:626.752500px;}
.y11b{bottom:627.543000px;}
.y63{bottom:627.991500px;}
.y13e{bottom:629.515500px;}
.y2f{bottom:630.736500px;}
.yf3{bottom:633.705000px;}
.y172{bottom:634.267500px;}
.y83{bottom:645.027000px;}
.yae{bottom:645.475500px;}
.y11a{bottom:646.372500px;}
.y62{bottom:646.821000px;}
.y13d{bottom:647.089500px;}
.y2e{bottom:650.193000px;}
.y171{bottom:651.528000px;}
.yf2{bottom:657.345000px;}
.y82{bottom:663.856500px;}
.yad{bottom:664.305000px;}
.y13c{bottom:664.663500px;}
.y119{bottom:665.202000px;}
.y61{bottom:665.650500px;}
.y170{bottom:668.788500px;}
.y2d{bottom:669.649500px;}
.yf0{bottom:673.783500px;}
.y81{bottom:682.686000px;}
.yac{bottom:683.134500px;}
.y118{bottom:684.031500px;}
.y60{bottom:684.480000px;}
.y16f{bottom:686.049000px;}
.y2c{bottom:689.107500px;}
.yf1{bottom:690.222000px;}
.y13b{bottom:691.204500px;}
.y80{bottom:701.515500px;}
.yab{bottom:701.964000px;}
.y117{bottom:702.861000px;}
.y5f{bottom:703.309500px;}
.y2b{bottom:708.564000px;}
.y13a{bottom:708.778500px;}
.yc9{bottom:720.345000px;}
.y16e{bottom:720.570000px;}
.y116{bottom:721.690500px;}
.yef{bottom:721.842000px;}
.y5e{bottom:722.139000px;}
.y7f{bottom:724.828500px;}
.yaa{bottom:725.277000px;}
.y139{bottom:726.352500px;}
.y16d{bottom:737.829000px;}
.yc8{bottom:739.174500px;}
.y115{bottom:740.520000px;}
.y5d{bottom:740.968500px;}
.yee{bottom:741.075000px;}
.y138{bottom:743.926500px;}
.y7e{bottom:745.003500px;}
.y2a{bottom:747.150000px;}
.y16c{bottom:755.089500px;}
.yc7{bottom:758.004000px;}
.ya9{bottom:758.901000px;}
.y114{bottom:759.349500px;}
.y5c{bottom:759.798000px;}
.y137{bottom:761.500500px;}
.y29{bottom:763.288500px;}
.y16b{bottom:772.350000px;}
.yc6{bottom:776.833500px;}
.ya8{bottom:777.730500px;}
.yed{bottom:778.179000px;}
.y5b{bottom:778.627500px;}
.y28{bottom:783.768000px;}
.y16a{bottom:789.610500px;}
.y27{bottom:795.568500px;}
.yc5{bottom:795.663000px;}
.ya7{bottom:796.560000px;}
.yec{bottom:797.008500px;}
.y5a{bottom:797.457000px;}
.y169{bottom:806.871000px;}
.ya6{bottom:815.389500px;}
.yeb{bottom:815.838000px;}
.y26{bottom:816.048000px;}
.y59{bottom:816.286500px;}
.yc4{bottom:818.976000px;}
.y168{bottom:824.131500px;}
.y25{bottom:827.847000px;}
.ya5{bottom:834.219000px;}
.yea{bottom:834.667500px;}
.y58{bottom:835.114500px;}
.yc3{bottom:839.149500px;}
.y167{bottom:841.392000px;}
.y24{bottom:848.326500px;}
.ye9{bottom:853.497000px;}
.y57{bottom:853.944000px;}
.ya4{bottom:857.532000px;}
.y166{bottom:858.652500px;}
.y23{bottom:860.127000px;}
.ye8{bottom:872.326500px;}
.y56{bottom:872.773500px;}
.y165{bottom:875.913000px;}
.y22{bottom:876.265500px;}
.ya3{bottom:891.156000px;}
.y55{bottom:891.603000px;}
.y164{bottom:893.172000px;}
.y21{bottom:896.745000px;}
.y20{bottom:908.545500px;}
.ya2{bottom:909.984000px;}
.y54{bottom:910.432500px;}
.y163{bottom:927.693000px;}
.ya1{bottom:928.813500px;}
.y1f{bottom:929.023500px;}
.y53{bottom:929.262000px;}
.y1e{bottom:940.824000px;}
.y162{bottom:944.953500px;}
.ye7{bottom:947.643000px;}
.y52{bottom:948.091500px;}
.ya0{bottom:952.126500px;}
.y1d{bottom:956.964000px;}
.y1c{bottom:961.303500px;}
.y161{bottom:962.214000px;}
.y113{bottom:966.472500px;}
.y51{bottom:966.921000px;}
.ye6{bottom:970.956000px;}
.y160{bottom:979.474500px;}
.y112{bottom:985.302000px;}
.y50{bottom:985.750500px;}
.y15f{bottom:996.735000px;}
.y111{bottom:1004.131500px;}
.y4f{bottom:1004.580000px;}
.y1b{bottom:1005.979500px;}
.y15e{bottom:1013.995500px;}
.y4e{bottom:1023.409500px;}
.y1a{bottom:1024.809000px;}
.y110{bottom:1027.444500px;}
.y15d{bottom:1031.254500px;}
.y4d{bottom:1042.239000px;}
.y15c{bottom:1048.515000px;}
.y4c{bottom:1061.068500px;}
.y19{bottom:1064.728500px;}
.y15b{bottom:1065.775500px;}
.y4b{bottom:1079.898000px;}
.y15a{bottom:1083.036000px;}
.y18{bottom:1092.972000px;}
.y4a{bottom:1098.727500px;}
.y159{bottom:1100.296500px;}
.y49{bottom:1117.557000px;}
.y16{bottom:1136.460000px;}
.y48{bottom:1177.662000px;}
.ha{height:26.217754px;}
.hc{height:26.302208px;}
.h3{height:30.587087px;}
.h4{height:30.670772px;}
.h17{height:31.691498px;}
.hb{height:34.956859px;}
.h12{height:35.052500px;}
.h2{height:38.202476px;}
.h14{height:38.896243px;}
.he{height:39.326630px;}
.hf{height:39.434227px;}
.h16{height:41.723369px;}
.h10{height:43.217759px;}
.h19{height:43.581754px;}
.hd{height:43.660208px;}
.h11{height:43.695964px;}
.h7{height:43.815515px;}
.h18{height:49.002344px;}
.h1a{height:49.117939px;}
.h5{height:50.930649px;}
.h9{height:54.547601px;}
.h13{height:54.911038px;}
.h15{height:77.636630px;}
.h8{height:77.792486px;}
.h6{height:92.253453px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:207.345381px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.056971px;}
.x77{left:67.758000px;}
.x79{left:74.625000px;}
.x7a{left:76.743000px;}
.x73{left:78.517500px;}
.x78{left:80.830500px;}
.x6c{left:83.863500px;}
.x9a{left:85.444500px;}
.x76{left:86.788500px;}
.x75{left:90.877500px;}
.x72{left:93.574500px;}
.x7b{left:94.953000px;}
.x74{left:96.661500px;}
.x5f{left:120.201000px;}
.x5d{left:125.547000px;}
.x58{left:134.248500px;}
.x6d{left:186.654000px;}
.x6f{left:192.040500px;}
.x5c{left:193.584000px;}
.x5b{left:206.811000px;}
.x6e{left:210.640500px;}
.x5a{left:224.974500px;}
.x52{left:233.380500px;}
.x6b{left:247.348500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x86{left:266.866500px;}
.x60{left:268.123500px;}
.x4{left:269.764500px;}
.x81{left:272.925000px;}
.x88{left:275.850000px;}
.x87{left:279.939000px;}
.x6{left:281.479500px;}
.xd{left:282.946500px;}
.x20{left:286.318500px;}
.xe{left:290.418000px;}
.xf{left:294.229500px;}
.x10{left:301.701000px;}
.x11{left:305.511000px;}
.x12{left:312.984000px;}
.x49{left:315.391500px;}
.x13{left:316.794000px;}
.x21{left:319.998000px;}
.x1d{left:321.174000px;}
.x14{left:324.265500px;}
.x61{left:325.462500px;}
.x4a{left:330.334500px;}
.x1f{left:332.697000px;}
.x1e{left:336.118500px;}
.x90{left:338.643000px;}
.x62{left:340.407000px;}
.x70{left:344.370000px;}
.x99{left:345.874500px;}
.x59{left:348.451500px;}
.x5e{left:352.687500px;}
.x82{left:367.204500px;}
.x2c{left:370.744500px;}
.x8a{left:377.199000px;}
.x19{left:380.959500px;}
.x2d{left:385.687500px;}
.x83{left:391.192500px;}
.x67{left:392.367000px;}
.x40{left:394.525500px;}
.x1a{left:395.902500px;}
.x68{left:407.311500px;}
.x41{left:409.468500px;}
.x15{left:418.150500px;}
.x16{left:425.623500px;}
.x17{left:429.433500px;}
.x18{left:436.905000px;}
.x7f{left:446.592000px;}
.x45{left:450.675000px;}
.x42{left:455.715000px;}
.x80{left:460.090500px;}
.x46{left:465.618000px;}
.x33{left:469.417500px;}
.x22{left:471.504000px;}
.x96{left:475.636500px;}
.x71{left:478.282500px;}
.x53{left:481.114500px;}
.x97{left:483.108000px;}
.x34{left:484.360500px;}
.x23{left:486.447000px;}
.x35{left:488.112000px;}
.x98{left:494.391000px;}
.x84{left:498.558000px;}
.x36{left:503.056500px;}
.x54{left:505.101000px;}
.x4b{left:506.751000px;}
.x47{left:518.332500px;}
.x4c{left:521.694000px;}
.x4d{left:525.622500px;}
.x69{left:531.324000px;}
.x48{left:533.275500px;}
.x4e{left:540.567000px;}
.x8b{left:543.078000px;}
.x6a{left:546.268500px;}
.x95{left:549.024000px;}
.x8c{left:558.022500px;}
.x91{left:589.357500px;}
.x3d{left:592.078500px;}
.x24{left:600.906000px;}
.x92{left:604.302000px;}
.x3e{left:607.023000px;}
.x93{left:608.049000px;}
.x1b{left:611.110500px;}
.x56{left:612.267000px;}
.x25{left:615.850500px;}
.x1c{left:618.583500px;}
.x31{left:620.224500px;}
.x94{left:622.992000px;}
.x55{left:629.683500px;}
.x8d{left:633.843000px;}
.x32{left:635.169000px;}
.x85{left:643.375500px;}
.x65{left:690.394500px;}
.x4f{left:695.991000px;}
.x66{left:705.075000px;}
.x3b{left:707.557500px;}
.x50{left:711.034500px;}
.x37{left:713.271000px;}
.x51{left:719.407500px;}
.x3c{left:722.500500px;}
.x28{left:726.759000px;}
.x38{left:728.215500px;}
.x39{left:731.875500px;}
.x7c{left:737.854500px;}
.x29{left:741.703500px;}
.x2a{left:745.513500px;}
.x3a{left:746.820000px;}
.x7d{left:750.669000px;}
.x57{left:752.658000px;}
.x2b{left:760.458000px;}
.x89{left:776.292000px;}
.x7{left:780.789000px;}
.x63{left:782.458500px;}
.x43{left:785.967000px;}
.x8{left:788.262000px;}
.x2e{left:790.485000px;}
.x9{left:792.049500px;}
.x8e{left:795.780000px;}
.x64{left:797.403000px;}
.xa{left:799.522500px;}
.x44{left:800.911500px;}
.x2f{left:805.428000px;}
.x7e{left:811.057500px;}
.x3f{left:813.637500px;}
.x30{left:815.440500px;}
.x26{left:817.881000px;}
.x8f{left:819.093000px;}
.xb{left:827.487000px;}
.x27{left:832.825500px;}
.xc{left:834.958500px;}
@media print{
.v5{vertical-align:-33.322667pt;}
.v7{vertical-align:-24.533333pt;}
.v9{vertical-align:-21.808000pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:15.434667pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:34.053333pt;}
.ls15{letter-spacing:0.000000pt;}
.ls67{letter-spacing:0.000078pt;}
.ls4d{letter-spacing:0.000174pt;}
.ls16{letter-spacing:0.000293pt;}
.ls5f{letter-spacing:0.000503pt;}
.ls4b{letter-spacing:0.000504pt;}
.ls64{letter-spacing:0.000585pt;}
.ls6d{letter-spacing:0.000600pt;}
.ls54{letter-spacing:0.000711pt;}
.ls5d{letter-spacing:0.000801pt;}
.ls53{letter-spacing:0.000921pt;}
.ls1f{letter-spacing:0.001007pt;}
.ls56{letter-spacing:0.001026pt;}
.ls5a{letter-spacing:0.001335pt;}
.ls6e{letter-spacing:0.001408pt;}
.ls58{letter-spacing:0.001630pt;}
.ls8{letter-spacing:0.001735pt;}
.ls61{letter-spacing:0.001818pt;}
.ls60{letter-spacing:0.001843pt;}
.ls6f{letter-spacing:0.001967pt;}
.ls62{letter-spacing:0.002117pt;}
.ls5e{letter-spacing:0.002188pt;}
.ls55{letter-spacing:0.002262pt;}
.ls4{letter-spacing:0.002422pt;}
.ls6c{letter-spacing:0.002525pt;}
.ls57{letter-spacing:0.002550pt;}
.ls69{letter-spacing:0.002826pt;}
.ls19{letter-spacing:0.003012pt;}
.ls7{letter-spacing:0.003100pt;}
.ls63{letter-spacing:0.003102pt;}
.ls68{letter-spacing:0.003230pt;}
.ls5{letter-spacing:0.003733pt;}
.ls4f{letter-spacing:0.004021pt;}
.ls36{letter-spacing:0.570745pt;}
.ls27{letter-spacing:0.576078pt;}
.ls3b{letter-spacing:1.805749pt;}
.ls35{letter-spacing:2.656533pt;}
.ls3c{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls1{letter-spacing:9.298932pt;}
.ls0{letter-spacing:9.298933pt;}
.ls37{letter-spacing:9.351031pt;}
.ls38{letter-spacing:9.353475pt;}
.ls2b{letter-spacing:10.622033pt;}
.ls23{letter-spacing:10.625203pt;}
.ls14{letter-spacing:10.626533pt;}
.ls22{letter-spacing:10.627330pt;}
.ls28{letter-spacing:10.788264pt;}
.ls2a{letter-spacing:10.795016pt;}
.ls3a{letter-spacing:11.133060pt;}
.ls2f{letter-spacing:11.152795pt;}
.ls39{letter-spacing:11.162400pt;}
.ls29{letter-spacing:11.659880pt;}
.ls65{letter-spacing:11.672829pt;}
.ls12{letter-spacing:11.911822pt;}
.ls13{letter-spacing:11.912741pt;}
.ls4e{letter-spacing:11.932800pt;}
.ls21{letter-spacing:11.950302pt;}
.ls51{letter-spacing:11.954133pt;}
.ls20{letter-spacing:11.955635pt;}
.ls5b{letter-spacing:11.956535pt;}
.ls50{letter-spacing:11.956898pt;}
.ls4c{letter-spacing:11.959467pt;}
.ls59{letter-spacing:11.999330pt;}
.ls52{letter-spacing:12.063523pt;}
.ls5c{letter-spacing:12.101653pt;}
.ls66{letter-spacing:12.161450pt;}
.ls41{letter-spacing:12.910618pt;}
.ls40{letter-spacing:12.916060pt;}
.lsc{letter-spacing:12.920973pt;}
.lsb{letter-spacing:12.921892pt;}
.lsd{letter-spacing:12.926201pt;}
.lse{letter-spacing:12.927121pt;}
.ls1c{letter-spacing:12.972454pt;}
.ls47{letter-spacing:12.981366pt;}
.ls1d{letter-spacing:13.024695pt;}
.ls30{letter-spacing:13.057556pt;}
.ls17{letter-spacing:13.087528pt;}
.ls43{letter-spacing:13.119341pt;}
.ls1a{letter-spacing:13.126188pt;}
.ls2c{letter-spacing:13.252456pt;}
.ls25{letter-spacing:13.278015pt;}
.ls3d{letter-spacing:13.282466pt;}
.ls24{letter-spacing:13.283349pt;}
.ls26{letter-spacing:13.283733pt;}
.ls1e{letter-spacing:13.284237pt;}
.ls4a{letter-spacing:13.291570pt;}
.ls42{letter-spacing:13.387414pt;}
.ls44{letter-spacing:13.574275pt;}
.ls3e{letter-spacing:13.610844pt;}
.ls6a{letter-spacing:13.833035pt;}
.ls34{letter-spacing:13.913165pt;}
.ls33{letter-spacing:13.918498pt;}
.ls49{letter-spacing:14.353328pt;}
.ls18{letter-spacing:14.358224pt;}
.ls1b{letter-spacing:14.520648pt;}
.ls6b{letter-spacing:14.831728pt;}
.ls2e{letter-spacing:14.949407pt;}
.ls2d{letter-spacing:14.954635pt;}
.ls70{letter-spacing:15.145454pt;}
.ls45{letter-spacing:15.618688pt;}
.ls31{letter-spacing:15.780758pt;}
.ls46{letter-spacing:16.084047pt;}
.lsf{letter-spacing:16.289212pt;}
.ls11{letter-spacing:16.294441pt;}
.ls10{letter-spacing:16.298750pt;}
.lsa{letter-spacing:16.387639pt;}
.ls48{letter-spacing:16.476204pt;}
.ls32{letter-spacing:16.910191pt;}
.ls3f{letter-spacing:19.738949pt;}
.ls2{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.ws83{word-spacing:-13.283467pt;}
.ws53{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws1{word-spacing:-9.298400pt;}
.ws2d{word-spacing:-2.975497pt;}
.ws8b{word-spacing:-2.922363pt;}
.ws48{word-spacing:-2.231622pt;}
.ws88{word-spacing:-2.178489pt;}
.ws73{word-spacing:-2.125355pt;}
.ws45{word-spacing:-2.019087pt;}
.ws99{word-spacing:-1.912819pt;}
.ws97{word-spacing:-1.859685pt;}
.ws1b{word-spacing:-1.769370pt;}
.ws31{word-spacing:-1.753418pt;}
.ws9c{word-spacing:-1.700284pt;}
.ws68{word-spacing:-1.487748pt;}
.ws1a{word-spacing:-1.386803pt;}
.ws46{word-spacing:-1.381481pt;}
.ws7f{word-spacing:-1.275216pt;}
.ws62{word-spacing:-1.222079pt;}
.ws76{word-spacing:-1.062677pt;}
.ws5d{word-spacing:-1.009543pt;}
.ws43{word-spacing:-0.956410pt;}
.ws93{word-spacing:-0.850142pt;}
.ws86{word-spacing:-0.797008pt;}
.ws8c{word-spacing:-0.690740pt;}
.wsf0{word-spacing:-0.669491pt;}
.ws92{word-spacing:-0.637606pt;}
.ws39{word-spacing:-0.584473pt;}
.wsa6{word-spacing:-0.573850pt;}
.ws9e{word-spacing:-0.531339pt;}
.ws1e{word-spacing:-0.478208pt;}
.ws63{word-spacing:-0.425071pt;}
.ws84{word-spacing:-0.371937pt;}
.ws49{word-spacing:-0.318803pt;}
.wsd0{word-spacing:-0.286925pt;}
.ws3b{word-spacing:-0.265669pt;}
.ws38{word-spacing:-0.212535pt;}
.ws1d{word-spacing:-0.191283pt;}
.ws2a{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.ws28{word-spacing:-0.106268pt;}
.wsa2{word-spacing:-0.095642pt;}
.wsd{word-spacing:-0.053134pt;}
.ws22{word-spacing:-0.047821pt;}
.ws15{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.037194pt;}
.ws11{word-spacing:-0.003222pt;}
.wse{word-spacing:-0.002933pt;}
.ws12{word-spacing:-0.002918pt;}
.ws81{word-spacing:-0.001402pt;}
.ws3{word-spacing:0.000000pt;}
.ws77{word-spacing:0.047821pt;}
.ws3f{word-spacing:0.053134pt;}
.wse8{word-spacing:0.080787pt;}
.ws1c{word-spacing:0.095642pt;}
.ws3c{word-spacing:0.106268pt;}
.ws5{word-spacing:0.111581pt;}
.ws14{word-spacing:0.127522pt;}
.wsa3{word-spacing:0.143462pt;}
.ws70{word-spacing:0.144960pt;}
.ws4{word-spacing:0.148774pt;}
.ws4a{word-spacing:0.159402pt;}
.ws71{word-spacing:0.162788pt;}
.ws6f{word-spacing:0.170029pt;}
.wsa5{word-spacing:0.191283pt;}
.ws26{word-spacing:0.212535pt;}
.wsa9{word-spacing:0.239104pt;}
.ws42{word-spacing:0.265669pt;}
.wsbb{word-spacing:0.286925pt;}
.ws5c{word-spacing:0.318803pt;}
.wsdc{word-spacing:0.334746pt;}
.ws4c{word-spacing:0.371937pt;}
.ws2c{word-spacing:0.425071pt;}
.wsb3{word-spacing:0.430387pt;}
.ws94{word-spacing:0.531339pt;}
.wsa7{word-spacing:0.573850pt;}
.ws75{word-spacing:0.584473pt;}
.wsbf{word-spacing:0.717312pt;}
.ws5b{word-spacing:0.797008pt;}
.wsd6{word-spacing:0.812954pt;}
.ws69{word-spacing:0.850142pt;}
.ws9b{word-spacing:0.903276pt;}
.wsd4{word-spacing:0.908595pt;}
.ws5a{word-spacing:0.956410pt;}
.ws20{word-spacing:0.956416pt;}
.ws52{word-spacing:1.009543pt;}
.ws4d{word-spacing:1.062677pt;}
.ws35{word-spacing:1.115811pt;}
.ws19{word-spacing:1.195520pt;}
.ws51{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.ws91{word-spacing:1.275213pt;}
.wsc4{word-spacing:1.291162pt;}
.ws9a{word-spacing:1.328347pt;}
.ws95{word-spacing:1.381481pt;}
.wse1{word-spacing:1.386803pt;}
.ws96{word-spacing:1.434614pt;}
.wsdf{word-spacing:1.434624pt;}
.ws87{word-spacing:1.594016pt;}
.ws72{word-spacing:1.647150pt;}
.ws5e{word-spacing:1.700284pt;}
.ws30{word-spacing:1.753418pt;}
.wse4{word-spacing:1.769370pt;}
.ws3d{word-spacing:1.806551pt;}
.wsad{word-spacing:1.817190pt;}
.wsc7{word-spacing:1.865011pt;}
.wsc6{word-spacing:1.912832pt;}
.ws7e{word-spacing:2.066438pt;}
.ws98{word-spacing:2.125355pt;}
.ws36{word-spacing:2.178489pt;}
.wsf1{word-spacing:2.199757pt;}
.ws0{word-spacing:2.232481pt;}
.wse5{word-spacing:2.247578pt;}
.ws8d{word-spacing:2.284756pt;}
.ws33{word-spacing:2.337890pt;}
.wsd3{word-spacing:2.343219pt;}
.wsd2{word-spacing:2.391040pt;}
.ws23{word-spacing:2.438861pt;}
.wsf3{word-spacing:2.486682pt;}
.ws74{word-spacing:2.497292pt;}
.ws57{word-spacing:2.545023pt;}
.ws66{word-spacing:2.550426pt;}
.ws16{word-spacing:2.550432pt;}
.ws8a{word-spacing:2.603559pt;}
.ws34{word-spacing:2.656693pt;}
.ws59{word-spacing:2.709827pt;}
.wsa8{word-spacing:2.731390pt;}
.wsa0{word-spacing:2.762961pt;}
.wsa4{word-spacing:2.763265pt;}
.ws17{word-spacing:2.768581pt;}
.ws6e{word-spacing:2.775051pt;}
.ws85{word-spacing:2.816095pt;}
.wsbd{word-spacing:2.861943pt;}
.wsc0{word-spacing:2.862370pt;}
.wse2{word-spacing:2.863923pt;}
.wsb8{word-spacing:2.864674pt;}
.wsac{word-spacing:2.869248pt;}
.wsc8{word-spacing:2.870528pt;}
.wsa1{word-spacing:2.922363pt;}
.ws44{word-spacing:2.975497pt;}
.ws89{word-spacing:3.028630pt;}
.wsde{word-spacing:3.060531pt;}
.ws2b{word-spacing:3.081764pt;}
.wsf5{word-spacing:3.108352pt;}
.ws50{word-spacing:3.134898pt;}
.wsdd{word-spacing:3.156173pt;}
.ws25{word-spacing:3.188032pt;}
.wseb{word-spacing:3.203994pt;}
.ws5f{word-spacing:3.347434pt;}
.wsda{word-spacing:3.347456pt;}
.ws8e{word-spacing:3.400567pt;}
.ws32{word-spacing:3.453701pt;}
.ws61{word-spacing:3.559969pt;}
.ws40{word-spacing:3.613103pt;}
.ws6b{word-spacing:3.634381pt;}
.ws65{word-spacing:3.666237pt;}
.ws4f{word-spacing:3.719371pt;}
.ws67{word-spacing:3.825638pt;}
.ws9d{word-spacing:3.931906pt;}
.ws60{word-spacing:3.985040pt;}
.ws37{word-spacing:4.250709pt;}
.ws9f{word-spacing:4.303843pt;}
.ws21{word-spacing:4.351693pt;}
.ws3e{word-spacing:4.356977pt;}
.ws1f{word-spacing:4.447334pt;}
.ws8f{word-spacing:4.675780pt;}
.ws3a{word-spacing:4.835182pt;}
.wsa{word-spacing:4.872362pt;}
.ws4b{word-spacing:4.941450pt;}
.wsd8{word-spacing:5.355930pt;}
.ws24{word-spacing:5.432802pt;}
.wsb1{word-spacing:5.547213pt;}
.wscf{word-spacing:5.690675pt;}
.ws29{word-spacing:6.057261pt;}
.ws6a{word-spacing:6.269796pt;}
.ws27{word-spacing:6.376064pt;}
.ws82{word-spacing:6.429198pt;}
.ws47{word-spacing:6.960537pt;}
.ws90{word-spacing:7.066804pt;}
.ws8{word-spacing:8.740496pt;}
.ws6{word-spacing:9.261604pt;}
.ws80{word-spacing:9.310031pt;}
.ws9{word-spacing:10.525789pt;}
.ws2e{word-spacing:10.579129pt;}
.ws58{word-spacing:10.580888pt;}
.wsd1{word-spacing:11.620454pt;}
.wsca{word-spacing:11.716096pt;}
.wsee{word-spacing:11.811738pt;}
.wsab{word-spacing:11.885986pt;}
.wse3{word-spacing:11.900971pt;}
.wsb5{word-spacing:11.901175pt;}
.wsc1{word-spacing:11.902362pt;}
.wsbc{word-spacing:11.904299pt;}
.wsd7{word-spacing:11.904905pt;}
.wsef{word-spacing:11.905246pt;}
.wscd{word-spacing:11.906628pt;}
.ws54{word-spacing:11.907379pt;}
.wsbe{word-spacing:11.908130pt;}
.wsaf{word-spacing:11.993952pt;}
.wsc9{word-spacing:12.043354pt;}
.wsd9{word-spacing:12.112887pt;}
.wsb4{word-spacing:12.337766pt;}
.wscc{word-spacing:13.148288pt;}
.ws64{word-spacing:13.230333pt;}
.wse0{word-spacing:13.342003pt;}
.wse6{word-spacing:14.154957pt;}
.ws41{word-spacing:14.452412pt;}
.wsdb{word-spacing:14.537523pt;}
.wsed{word-spacing:14.672410pt;}
.wsd5{word-spacing:14.769075pt;}
.wsc5{word-spacing:14.769707pt;}
.wsb9{word-spacing:14.769980pt;}
.wsea{word-spacing:14.771012pt;}
.wsb2{word-spacing:14.771814pt;}
.wscb{word-spacing:14.773948pt;}
.wsb7{word-spacing:14.774110pt;}
.wse7{word-spacing:14.774554pt;}
.wsec{word-spacing:14.774938pt;}
.wsba{word-spacing:14.775040pt;}
.wsae{word-spacing:14.776627pt;}
.wsc3{word-spacing:14.789261pt;}
.wsaa{word-spacing:14.810387pt;}
.wsc2{word-spacing:14.824448pt;}
.wse9{word-spacing:14.872269pt;}
.wsf2{word-spacing:15.063552pt;}
.wsce{word-spacing:15.254835pt;}
.wsb0{word-spacing:15.541760pt;}
.ws4e{word-spacing:16.418365pt;}
.ws7{word-spacing:19.857270pt;}
.wsb{word-spacing:20.196125pt;}
.wsf4{word-spacing:22.706974pt;}
.ws10{word-spacing:35.593054pt;}
.wsb6{word-spacing:43.038720pt;}
.ws13{word-spacing:48.878387pt;}
.ws7a{word-spacing:156.722466pt;}
.ws7b{word-spacing:181.136836pt;}
.ws7c{word-spacing:194.648388pt;}
.ws7d{word-spacing:212.268851pt;}
.ws6d{word-spacing:220.788634pt;}
.ws78{word-spacing:223.737276pt;}
.ws79{word-spacing:223.771989pt;}
.ws6c{word-spacing:326.616064pt;}
.ws55{word-spacing:558.157773pt;}
.ws56{word-spacing:574.082074pt;}
._18{margin-left:-6.206028pt;}
._0{margin-left:-4.854426pt;}
._6{margin-left:-3.145533pt;}
._2{margin-left:-1.338970pt;}
._4{width:2.666915pt;}
._15{width:3.814887pt;}
._9{width:9.277235pt;}
._7{width:10.435510pt;}
._3{width:11.530016pt;}
._12{width:12.495080pt;}
._a{width:13.581107pt;}
._b{width:14.776602pt;}
._e{width:16.428988pt;}
._c{width:17.406771pt;}
._8{width:18.841395pt;}
._2f{width:20.042091pt;}
._1a{width:21.052596pt;}
._1{width:22.393747pt;}
._13{width:24.016508pt;}
._16{width:24.919783pt;}
._30{width:25.846326pt;}
._19{width:26.915603pt;}
._d{width:27.926344pt;}
._14{width:29.648698pt;}
._f{width:35.344644pt;}
._17{width:37.778179pt;}
._5{width:48.363378pt;}
._5e{width:54.993920pt;}
._5c{width:78.904320pt;}
._43{width:92.485414pt;}
._44{width:102.910362pt;}
._53{width:113.493777pt;}
._40{width:120.843162pt;}
._54{width:125.768704pt;}
._48{width:134.854643pt;}
._5b{width:136.830315pt;}
._4a{width:138.871590pt;}
._49{width:142.362509pt;}
._52{width:149.216486pt;}
._45{width:150.922445pt;}
._47{width:156.900032pt;}
._41{width:162.877645pt;}
._56{width:165.092992pt;}
._3f{width:177.462976pt;}
._20{width:183.966618pt;}
._5a{width:189.083443pt;}
._46{width:197.437065pt;}
._58{width:199.116211pt;}
._23{width:207.877018pt;}
._42{width:209.391693pt;}
._59{width:213.922014pt;}
._36{width:216.819507pt;}
._4e{width:218.089020pt;}
._2b{width:222.313826pt;}
._33{width:226.814054pt;}
._35{width:228.631245pt;}
._4d{width:229.587661pt;}
._51{width:233.269862pt;}
._55{width:234.513203pt;}
._3a{width:237.238989pt;}
._57{width:239.247462pt;}
._1c{width:245.416346pt;}
._50{width:246.707507pt;}
._3b{width:248.189952pt;}
._37{width:252.685107pt;}
._21{width:259.666944pt;}
._4f{width:265.070694pt;}
._24{width:271.622144pt;}
._3d{width:272.626381pt;}
._34{width:276.260762pt;}
._3e{width:280.134246pt;}
._4b{width:285.705984pt;}
._4c{width:288.215962pt;}
._3c{width:294.671770pt;}
._1d{width:299.353762pt;}
._26{width:305.527091pt;}
._38{width:315.234714pt;}
._39{width:324.081562pt;}
._28{width:327.285555pt;}
._2a{width:330.250445pt;}
._31{width:331.254682pt;}
._32{width:337.136640pt;}
._2d{width:352.003836pt;}
._1b{width:398.419610pt;}
._1e{width:431.247974pt;}
._27{width:444.327578pt;}
._29{width:446.311526pt;}
._25{width:590.228839pt;}
._2c{width:597.850569pt;}
._2e{width:621.760969pt;}
._10{width:630.752176pt;}
._22{width:648.784794pt;}
._1f{width:701.387674pt;}
._5d{width:2201.850604pt;}
._11{width:2223.103937pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:44.292800pt;}
.fs7{font-size:47.820800pt;}
.fs8{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:120.948480pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:11.489518pt;}
.y47{bottom:28.346667pt;}
.y10f{bottom:92.654667pt;}
.y15{bottom:93.018667pt;}
.y46{bottom:99.013333pt;}
.ye5{bottom:99.532000pt;}
.y136{bottom:105.909333pt;}
.y14{bottom:108.920000pt;}
.y10e{bottom:109.392000pt;}
.y158{bottom:114.557333pt;}
.y45{bottom:115.750667pt;}
.ye4{bottom:116.269333pt;}
.y9f{bottom:117.080000pt;}
.y18d{bottom:118.861333pt;}
.yc2{bottom:120.654667pt;}
.y135{bottom:122.646667pt;}
.y7d{bottom:123.045333pt;}
.y13{bottom:124.820000pt;}
.y10d{bottom:126.129333pt;}
.y157{bottom:129.900000pt;}
.y44{bottom:132.488000pt;}
.y18c{bottom:134.202667pt;}
.y9e{bottom:136.486667pt;}
.yc1{bottom:137.392000pt;}
.y134{bottom:139.384000pt;}
.y7c{bottom:139.782667pt;}
.y12{bottom:140.720000pt;}
.y10c{bottom:142.866667pt;}
.y156{bottom:145.242667pt;}
.y43{bottom:149.225333pt;}
.y18b{bottom:149.545333pt;}
.y9d{bottom:151.097333pt;}
.ye3{bottom:151.173333pt;}
.yc0{bottom:154.129333pt;}
.y133{bottom:156.121333pt;}
.y7b{bottom:156.520000pt;}
.y11{bottom:156.621333pt;}
.y10b{bottom:159.604000pt;}
.y155{bottom:160.585333pt;}
.ye2{bottom:163.792000pt;}
.y18a{bottom:164.888000pt;}
.y9c{bottom:165.709333pt;}
.y42{bottom:165.962667pt;}
.y10{bottom:172.521333pt;}
.y132{bottom:172.858667pt;}
.y7a{bottom:173.257333pt;}
.ybf{bottom:174.850667pt;}
.y154{bottom:175.928000pt;}
.y10a{bottom:176.341333pt;}
.y189{bottom:180.230667pt;}
.y9b{bottom:180.321333pt;}
.y97{bottom:180.853333pt;}
.y41{bottom:182.700000pt;}
.ye1{bottom:183.198667pt;}
.yf{bottom:188.421333pt;}
.y131{bottom:189.596000pt;}
.y79{bottom:189.994667pt;}
.y152{bottom:191.269333pt;}
.y153{bottom:191.270667pt;}
.y190{bottom:191.521333pt;}
.y109{bottom:193.078667pt;}
.y9a{bottom:194.933333pt;}
.y188{bottom:195.573333pt;}
.ye0{bottom:197.810667pt;}
.y40{bottom:199.437333pt;}
.ye{bottom:204.322667pt;}
.ybe{bottom:204.738667pt;}
.y130{bottom:206.333333pt;}
.y151{bottom:206.612000pt;}
.y78{bottom:206.732000pt;}
.y18f{bottom:206.864000pt;}
.y99{bottom:209.545333pt;}
.y108{bottom:209.816000pt;}
.y187{bottom:210.916000pt;}
.ydf{bottom:212.422667pt;}
.y3f{bottom:216.174667pt;}
.ybd{bottom:221.476000pt;}
.y150{bottom:221.954667pt;}
.y18e{bottom:222.206667pt;}
.y12f{bottom:223.070667pt;}
.y77{bottom:223.469333pt;}
.y98{bottom:224.157333pt;}
.y186{bottom:226.258667pt;}
.y107{bottom:226.553333pt;}
.yde{bottom:227.034667pt;}
.y3e{bottom:232.912000pt;}
.y14f{bottom:237.297333pt;}
.ybc{bottom:238.213333pt;}
.y96{bottom:238.769333pt;}
.y12e{bottom:239.808000pt;}
.y76{bottom:240.206667pt;}
.y185{bottom:241.601333pt;}
.y106{bottom:243.290667pt;}
.y95{bottom:244.868000pt;}
.ydd{bottom:248.049333pt;}
.y3d{bottom:249.649333pt;}
.y14e{bottom:252.640000pt;}
.ybb{bottom:254.950667pt;}
.y12d{bottom:256.545333pt;}
.y75{bottom:256.944000pt;}
.y105{bottom:260.028000pt;}
.yd{bottom:266.570667pt;}
.y14d{bottom:267.982667pt;}
.y94{bottom:267.993333pt;}
.ydc{bottom:269.062667pt;}
.y3c{bottom:270.372000pt;}
.yba{bottom:271.688000pt;}
.y184{bottom:272.285333pt;}
.y12c{bottom:273.282667pt;}
.y74{bottom:273.681333pt;}
.y104{bottom:276.765333pt;}
.yc{bottom:282.470667pt;}
.y93{bottom:282.605333pt;}
.y14c{bottom:283.325333pt;}
.ydb{bottom:283.674667pt;}
.y183{bottom:287.628000pt;}
.yb9{bottom:288.425333pt;}
.y12b{bottom:290.020000pt;}
.y73{bottom:290.417333pt;}
.y103{bottom:293.502667pt;}
.y92{bottom:297.216000pt;}
.yda{bottom:298.286667pt;}
.yb{bottom:298.370667pt;}
.y14b{bottom:298.668000pt;}
.y182{bottom:302.970667pt;}
.yb8{bottom:305.162667pt;}
.y12a{bottom:306.757333pt;}
.y72{bottom:307.154667pt;}
.y102{bottom:310.240000pt;}
.y91{bottom:311.828000pt;}
.yd9{bottom:312.898667pt;}
.ya{bottom:314.272000pt;}
.y90{bottom:317.926667pt;}
.y14a{bottom:317.994667pt;}
.y181{bottom:318.313333pt;}
.yb7{bottom:321.900000pt;}
.y129{bottom:323.494667pt;}
.y71{bottom:323.892000pt;}
.y101{bottom:326.977333pt;}
.yd8{bottom:327.510667pt;}
.y180{bottom:333.656000pt;}
.y3b{bottom:337.172000pt;}
.yb6{bottom:338.637333pt;}
.y9{bottom:339.470667pt;}
.y128{bottom:340.232000pt;}
.y70{bottom:340.629333pt;}
.yd7{bottom:342.122667pt;}
.y100{bottom:343.714667pt;}
.y8f{bottom:347.454667pt;}
.y149{bottom:347.882667pt;}
.y17f{bottom:348.998667pt;}
.y3a{bottom:354.466667pt;}
.y8{bottom:355.370667pt;}
.yb5{bottom:355.374667pt;}
.yd6{bottom:356.733333pt;}
.y127{bottom:356.968000pt;}
.y6f{bottom:357.366667pt;}
.yff{bottom:360.452000pt;}
.y8d{bottom:362.066667pt;}
.y17e{bottom:364.341333pt;}
.yd5{bottom:371.345333pt;}
.y148{bottom:371.474667pt;}
.yb4{bottom:372.112000pt;}
.y126{bottom:373.705333pt;}
.y6e{bottom:374.104000pt;}
.y8e{bottom:376.678667pt;}
.yfe{bottom:377.189333pt;}
.y7{bottom:379.241333pt;}
.y17d{bottom:379.684000pt;}
.yd4{bottom:385.957333pt;}
.y147{bottom:387.096000pt;}
.y39{bottom:387.702667pt;}
.y125{bottom:390.442667pt;}
.y6d{bottom:390.841333pt;}
.yb3{bottom:392.834667pt;}
.y17c{bottom:395.025333pt;}
.y6{bottom:395.141333pt;}
.yfd{bottom:397.910667pt;}
.yd3{bottom:400.569333pt;}
.y146{bottom:402.717333pt;}
.y38{bottom:404.997333pt;}
.y124{bottom:407.180000pt;}
.y8c{bottom:407.441333pt;}
.y6c{bottom:407.578667pt;}
.y17b{bottom:410.368000pt;}
.y5{bottom:411.042667pt;}
.yd2{bottom:415.181333pt;}
.y37{bottom:422.293333pt;}
.yb2{bottom:422.722667pt;}
.y123{bottom:423.917333pt;}
.y6b{bottom:424.316000pt;}
.y17a{bottom:425.710667pt;}
.y145{bottom:426.309333pt;}
.y4{bottom:426.942667pt;}
.yd1{bottom:429.793333pt;}
.yfc{bottom:431.640000pt;}
.y8b{bottom:439.460000pt;}
.y36{bottom:439.588000pt;}
.y122{bottom:440.654667pt;}
.y6a{bottom:441.053333pt;}
.y144{bottom:441.930667pt;}
.y3{bottom:442.842667pt;}
.yfb{bottom:444.260000pt;}
.yd0{bottom:444.405333pt;}
.y8a{bottom:456.197333pt;}
.y179{bottom:456.396000pt;}
.y35{bottom:456.882667pt;}
.y121{bottom:457.392000pt;}
.y143{bottom:457.552000pt;}
.y69{bottom:457.790667pt;}
.y2{bottom:458.744000pt;}
.ycf{bottom:459.017333pt;}
.yfa{bottom:461.009333pt;}
.y178{bottom:471.738667pt;}
.y89{bottom:472.934667pt;}
.y120{bottom:474.129333pt;}
.y34{bottom:474.178667pt;}
.y68{bottom:474.528000pt;}
.y1{bottom:474.644000pt;}
.yf9{bottom:475.621333pt;}
.yce{bottom:480.030667pt;}
.y142{bottom:481.144000pt;}
.y177{bottom:487.081333pt;}
.y88{bottom:489.672000pt;}
.yf8{bottom:490.233333pt;}
.y11f{bottom:490.866667pt;}
.y67{bottom:491.265333pt;}
.y33{bottom:491.473333pt;}
.ycc{bottom:494.642667pt;}
.y176{bottom:502.424000pt;}
.y141{bottom:504.734667pt;}
.yf7{bottom:504.845333pt;}
.y87{bottom:506.409333pt;}
.y11e{bottom:507.604000pt;}
.y66{bottom:508.002667pt;}
.y32{bottom:508.768000pt;}
.ycd{bottom:509.254667pt;}
.yb1{bottom:510.393333pt;}
.y175{bottom:517.766667pt;}
.yf6{bottom:519.457333pt;}
.y140{bottom:520.356000pt;}
.y86{bottom:523.145333pt;}
.y11d{bottom:524.341333pt;}
.y65{bottom:524.740000pt;}
.y31{bottom:526.064000pt;}
.y174{bottom:533.108000pt;}
.yf5{bottom:534.069333pt;}
.y13f{bottom:535.978667pt;}
.y85{bottom:539.882667pt;}
.ycb{bottom:540.017333pt;}
.yb0{bottom:540.281333pt;}
.y11c{bottom:541.078667pt;}
.y64{bottom:541.477333pt;}
.y30{bottom:543.358667pt;}
.y173{bottom:548.450667pt;}
.yf4{bottom:548.681333pt;}
.y84{bottom:556.620000pt;}
.yaf{bottom:557.018667pt;}
.yca{bottom:557.113333pt;}
.y11b{bottom:557.816000pt;}
.y63{bottom:558.214667pt;}
.y13e{bottom:559.569333pt;}
.y2f{bottom:560.654667pt;}
.yf3{bottom:563.293333pt;}
.y172{bottom:563.793333pt;}
.y83{bottom:573.357333pt;}
.yae{bottom:573.756000pt;}
.y11a{bottom:574.553333pt;}
.y62{bottom:574.952000pt;}
.y13d{bottom:575.190667pt;}
.y2e{bottom:577.949333pt;}
.y171{bottom:579.136000pt;}
.yf2{bottom:584.306667pt;}
.y82{bottom:590.094667pt;}
.yad{bottom:590.493333pt;}
.y13c{bottom:590.812000pt;}
.y119{bottom:591.290667pt;}
.y61{bottom:591.689333pt;}
.y170{bottom:594.478667pt;}
.y2d{bottom:595.244000pt;}
.yf0{bottom:598.918667pt;}
.y81{bottom:606.832000pt;}
.yac{bottom:607.230667pt;}
.y118{bottom:608.028000pt;}
.y60{bottom:608.426667pt;}
.y16f{bottom:609.821333pt;}
.y2c{bottom:612.540000pt;}
.yf1{bottom:613.530667pt;}
.y13b{bottom:614.404000pt;}
.y80{bottom:623.569333pt;}
.yab{bottom:623.968000pt;}
.y117{bottom:624.765333pt;}
.y5f{bottom:625.164000pt;}
.y2b{bottom:629.834667pt;}
.y13a{bottom:630.025333pt;}
.yc9{bottom:640.306667pt;}
.y16e{bottom:640.506667pt;}
.y116{bottom:641.502667pt;}
.yef{bottom:641.637333pt;}
.y5e{bottom:641.901333pt;}
.y7f{bottom:644.292000pt;}
.yaa{bottom:644.690667pt;}
.y139{bottom:645.646667pt;}
.y16d{bottom:655.848000pt;}
.yc8{bottom:657.044000pt;}
.y115{bottom:658.240000pt;}
.y5d{bottom:658.638667pt;}
.yee{bottom:658.733333pt;}
.y138{bottom:661.268000pt;}
.y7e{bottom:662.225333pt;}
.y2a{bottom:664.133333pt;}
.y16c{bottom:671.190667pt;}
.yc7{bottom:673.781333pt;}
.ya9{bottom:674.578667pt;}
.y114{bottom:674.977333pt;}
.y5c{bottom:675.376000pt;}
.y137{bottom:676.889333pt;}
.y29{bottom:678.478667pt;}
.y16b{bottom:686.533333pt;}
.yc6{bottom:690.518667pt;}
.ya8{bottom:691.316000pt;}
.yed{bottom:691.714667pt;}
.y5b{bottom:692.113333pt;}
.y28{bottom:696.682667pt;}
.y16a{bottom:701.876000pt;}
.y27{bottom:707.172000pt;}
.yc5{bottom:707.256000pt;}
.ya7{bottom:708.053333pt;}
.yec{bottom:708.452000pt;}
.y5a{bottom:708.850667pt;}
.y169{bottom:717.218667pt;}
.ya6{bottom:724.790667pt;}
.yeb{bottom:725.189333pt;}
.y26{bottom:725.376000pt;}
.y59{bottom:725.588000pt;}
.yc4{bottom:727.978667pt;}
.y168{bottom:732.561333pt;}
.y25{bottom:735.864000pt;}
.ya5{bottom:741.528000pt;}
.yea{bottom:741.926667pt;}
.y58{bottom:742.324000pt;}
.yc3{bottom:745.910667pt;}
.y167{bottom:747.904000pt;}
.y24{bottom:754.068000pt;}
.ye9{bottom:758.664000pt;}
.y57{bottom:759.061333pt;}
.ya4{bottom:762.250667pt;}
.y166{bottom:763.246667pt;}
.y23{bottom:764.557333pt;}
.ye8{bottom:775.401333pt;}
.y56{bottom:775.798667pt;}
.y165{bottom:778.589333pt;}
.y22{bottom:778.902667pt;}
.ya3{bottom:792.138667pt;}
.y55{bottom:792.536000pt;}
.y164{bottom:793.930667pt;}
.y21{bottom:797.106667pt;}
.y20{bottom:807.596000pt;}
.ya2{bottom:808.874667pt;}
.y54{bottom:809.273333pt;}
.y163{bottom:824.616000pt;}
.ya1{bottom:825.612000pt;}
.y1f{bottom:825.798667pt;}
.y53{bottom:826.010667pt;}
.y1e{bottom:836.288000pt;}
.y162{bottom:839.958667pt;}
.ye7{bottom:842.349333pt;}
.y52{bottom:842.748000pt;}
.ya0{bottom:846.334667pt;}
.y1d{bottom:850.634667pt;}
.y1c{bottom:854.492000pt;}
.y161{bottom:855.301333pt;}
.y113{bottom:859.086667pt;}
.y51{bottom:859.485333pt;}
.ye6{bottom:863.072000pt;}
.y160{bottom:870.644000pt;}
.y112{bottom:875.824000pt;}
.y50{bottom:876.222667pt;}
.y15f{bottom:885.986667pt;}
.y111{bottom:892.561333pt;}
.y4f{bottom:892.960000pt;}
.y1b{bottom:894.204000pt;}
.y15e{bottom:901.329333pt;}
.y4e{bottom:909.697333pt;}
.y1a{bottom:910.941333pt;}
.y110{bottom:913.284000pt;}
.y15d{bottom:916.670667pt;}
.y4d{bottom:926.434667pt;}
.y15c{bottom:932.013333pt;}
.y4c{bottom:943.172000pt;}
.y19{bottom:946.425333pt;}
.y15b{bottom:947.356000pt;}
.y4b{bottom:959.909333pt;}
.y15a{bottom:962.698667pt;}
.y18{bottom:971.530667pt;}
.y4a{bottom:976.646667pt;}
.y159{bottom:978.041333pt;}
.y49{bottom:993.384000pt;}
.y16{bottom:1010.186667pt;}
.y48{bottom:1046.810667pt;}
.ha{height:23.304670pt;}
.hc{height:23.379740pt;}
.h3{height:27.188522pt;}
.h4{height:27.262909pt;}
.h17{height:28.170221pt;}
.hb{height:31.072763pt;}
.h12{height:31.157778pt;}
.h2{height:33.957757pt;}
.h14{height:34.574438pt;}
.he{height:34.957005pt;}
.hf{height:35.052646pt;}
.h16{height:37.087439pt;}
.h10{height:38.415786pt;}
.h19{height:38.739337pt;}
.hd{height:38.809074pt;}
.h11{height:38.840857pt;}
.h7{height:38.947124pt;}
.h18{height:43.557639pt;}
.h1a{height:43.660390pt;}
.h5{height:45.271688pt;}
.h9{height:48.486756pt;}
.h13{height:48.809811pt;}
.h15{height:69.010338pt;}
.h8{height:69.148877pt;}
.h6{height:82.003069pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:184.307005pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.606197pt;}
.x77{left:60.229333pt;}
.x79{left:66.333333pt;}
.x7a{left:68.216000pt;}
.x73{left:69.793333pt;}
.x78{left:71.849333pt;}
.x6c{left:74.545333pt;}
.x9a{left:75.950667pt;}
.x76{left:77.145333pt;}
.x75{left:80.780000pt;}
.x72{left:83.177333pt;}
.x7b{left:84.402667pt;}
.x74{left:85.921333pt;}
.x5f{left:106.845333pt;}
.x5d{left:111.597333pt;}
.x58{left:119.332000pt;}
.x6d{left:165.914667pt;}
.x6f{left:170.702667pt;}
.x5c{left:172.074667pt;}
.x5b{left:183.832000pt;}
.x6e{left:187.236000pt;}
.x5a{left:199.977333pt;}
.x52{left:207.449333pt;}
.x6b{left:219.865333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x86{left:237.214667pt;}
.x60{left:238.332000pt;}
.x4{left:239.790667pt;}
.x81{left:242.600000pt;}
.x88{left:245.200000pt;}
.x87{left:248.834667pt;}
.x6{left:250.204000pt;}
.xd{left:251.508000pt;}
.x20{left:254.505333pt;}
.xe{left:258.149333pt;}
.xf{left:261.537333pt;}
.x10{left:268.178667pt;}
.x11{left:271.565333pt;}
.x12{left:278.208000pt;}
.x49{left:280.348000pt;}
.x13{left:281.594667pt;}
.x21{left:284.442667pt;}
.x1d{left:285.488000pt;}
.x14{left:288.236000pt;}
.x61{left:289.300000pt;}
.x4a{left:293.630667pt;}
.x1f{left:295.730667pt;}
.x1e{left:298.772000pt;}
.x90{left:301.016000pt;}
.x62{left:302.584000pt;}
.x70{left:306.106667pt;}
.x99{left:307.444000pt;}
.x59{left:309.734667pt;}
.x5e{left:313.500000pt;}
.x82{left:326.404000pt;}
.x2c{left:329.550667pt;}
.x8a{left:335.288000pt;}
.x19{left:338.630667pt;}
.x2d{left:342.833333pt;}
.x83{left:347.726667pt;}
.x67{left:348.770667pt;}
.x40{left:350.689333pt;}
.x1a{left:351.913333pt;}
.x68{left:362.054667pt;}
.x41{left:363.972000pt;}
.x15{left:371.689333pt;}
.x16{left:378.332000pt;}
.x17{left:381.718667pt;}
.x18{left:388.360000pt;}
.x7f{left:396.970667pt;}
.x45{left:400.600000pt;}
.x42{left:405.080000pt;}
.x80{left:408.969333pt;}
.x46{left:413.882667pt;}
.x33{left:417.260000pt;}
.x22{left:419.114667pt;}
.x96{left:422.788000pt;}
.x71{left:425.140000pt;}
.x53{left:427.657333pt;}
.x97{left:429.429333pt;}
.x34{left:430.542667pt;}
.x23{left:432.397333pt;}
.x35{left:433.877333pt;}
.x98{left:439.458667pt;}
.x84{left:443.162667pt;}
.x36{left:447.161333pt;}
.x54{left:448.978667pt;}
.x4b{left:450.445333pt;}
.x47{left:460.740000pt;}
.x4c{left:463.728000pt;}
.x4d{left:467.220000pt;}
.x69{left:472.288000pt;}
.x48{left:474.022667pt;}
.x4e{left:480.504000pt;}
.x8b{left:482.736000pt;}
.x6a{left:485.572000pt;}
.x95{left:488.021333pt;}
.x8c{left:496.020000pt;}
.x91{left:523.873333pt;}
.x3d{left:526.292000pt;}
.x24{left:534.138667pt;}
.x92{left:537.157333pt;}
.x3e{left:539.576000pt;}
.x93{left:540.488000pt;}
.x1b{left:543.209333pt;}
.x56{left:544.237333pt;}
.x25{left:547.422667pt;}
.x1c{left:549.852000pt;}
.x31{left:551.310667pt;}
.x94{left:553.770667pt;}
.x55{left:559.718667pt;}
.x8d{left:563.416000pt;}
.x32{left:564.594667pt;}
.x85{left:571.889333pt;}
.x65{left:613.684000pt;}
.x4f{left:618.658667pt;}
.x66{left:626.733333pt;}
.x3b{left:628.940000pt;}
.x50{left:632.030667pt;}
.x37{left:634.018667pt;}
.x51{left:639.473333pt;}
.x3c{left:642.222667pt;}
.x28{left:646.008000pt;}
.x38{left:647.302667pt;}
.x39{left:650.556000pt;}
.x7c{left:655.870667pt;}
.x29{left:659.292000pt;}
.x2a{left:662.678667pt;}
.x3a{left:663.840000pt;}
.x7d{left:667.261333pt;}
.x57{left:669.029333pt;}
.x2b{left:675.962667pt;}
.x89{left:690.037333pt;}
.x7{left:694.034667pt;}
.x63{left:695.518667pt;}
.x43{left:698.637333pt;}
.x8{left:700.677333pt;}
.x2e{left:702.653333pt;}
.x9{left:704.044000pt;}
.x8e{left:707.360000pt;}
.x64{left:708.802667pt;}
.xa{left:710.686667pt;}
.x44{left:711.921333pt;}
.x2f{left:715.936000pt;}
.x7e{left:720.940000pt;}
.x3f{left:723.233333pt;}
.x30{left:724.836000pt;}
.x26{left:727.005333pt;}
.x8f{left:728.082667pt;}
.xb{left:735.544000pt;}
.x27{left:740.289333pt;}
.xc{left:742.185333pt;}
}




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