
    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_dd2077ddb04ca960aa0995a3.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_d02e9b7df0174c32f946b9ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9f8062414b06b39e659e124a.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_4e37a6f9cd7d0d9afb06d190.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_d3543cdab0fc0b075dc4bfc7.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_f32b415795d1d842b9ca1505.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.747000;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_20cc0c9f36b1ada8e772667f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_f2d4f3d41fd789e567d402b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.729000;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_e4463ba20c300fae573f0464.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c4f2614343d228a17fec2b39.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.200000;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_06bec0bee3884ea45ed4fc84.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_531fd0f59d05157d30e00a4d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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:ffd;src:url('chunks/assets/font_75a4d202e72e75bd3bbd5b95.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.206055;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:ffe;src:url('chunks/assets/font_80df15450086192dabee44b1.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m4{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);}
.m26{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);}
.m14{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);}
.m18{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);}
.m12{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);}
.me{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);}
.m23{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);}
.m1c{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);}
.m1a{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);}
.m2{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);}
.m28{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);}
.mb{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);}
.m1f{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.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);}
.mf{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);}
.m5{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);}
.m19{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);}
.m8{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);}
.m15{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m25{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);}
.m20{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);}
.m27{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);}
.m6{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);}
.m22{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);}
.m1e{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);}
.m21{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);}
.mc{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);}
.ma{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);}
.m1b{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m17{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);}
.m9{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);}
.m13{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);}
.md{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:23.910000px;}
.v5{vertical-align:32.874000px;}
.v7{vertical-align:47.820000px;}
.lsf{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.000009px;}
.ls45{letter-spacing:0.000422px;}
.ls3c{letter-spacing:0.000676px;}
.ls34{letter-spacing:0.000706px;}
.ls4b{letter-spacing:0.000741px;}
.ls4a{letter-spacing:0.000800px;}
.ls3f{letter-spacing:0.001036px;}
.ls3b{letter-spacing:0.001584px;}
.ls4d{letter-spacing:0.001701px;}
.ls4f{letter-spacing:0.002422px;}
.ls1{letter-spacing:0.002725px;}
.ls4e{letter-spacing:0.002841px;}
.ls50{letter-spacing:0.003531px;}
.ls4c{letter-spacing:0.003701px;}
.ls10{letter-spacing:0.004200px;}
.ls3d{letter-spacing:0.004413px;}
.ls41{letter-spacing:0.004800px;}
.ls33{letter-spacing:0.108000px;}
.ls32{letter-spacing:0.120240px;}
.ls31{letter-spacing:0.180360px;}
.ls27{letter-spacing:0.497764px;}
.ls29{letter-spacing:0.503764px;}
.ls12{letter-spacing:2.988600px;}
.ls51{letter-spacing:3.076310px;}
.ls28{letter-spacing:10.458600px;}
.ls0{letter-spacing:10.461300px;}
.ls26{letter-spacing:10.464600px;}
.ls24{letter-spacing:10.961764px;}
.ls25{letter-spacing:10.967764px;}
.ls2a{letter-spacing:11.706596px;}
.lse{letter-spacing:11.954850px;}
.ls1c{letter-spacing:12.828527px;}
.ls37{letter-spacing:13.079812px;}
.ls40{letter-spacing:13.179084px;}
.ls6{letter-spacing:13.242812px;}
.ls53{letter-spacing:13.285694px;}
.ls48{letter-spacing:13.322814px;}
.ls47{letter-spacing:13.339718px;}
.lsb{letter-spacing:13.359249px;}
.ls36{letter-spacing:13.362714px;}
.ls42{letter-spacing:13.413223px;}
.lsd{letter-spacing:13.435469px;}
.lsc{letter-spacing:13.442184px;}
.ls8{letter-spacing:13.444800px;}
.ls38{letter-spacing:13.448400px;}
.lsa{letter-spacing:13.450800px;}
.ls46{letter-spacing:13.454400px;}
.ls44{letter-spacing:13.466735px;}
.ls39{letter-spacing:13.568582px;}
.ls49{letter-spacing:13.644816px;}
.ls54{letter-spacing:13.815106px;}
.ls7{letter-spacing:14.094088px;}
.ls5{letter-spacing:14.100088px;}
.ls30{letter-spacing:14.395873px;}
.ls13{letter-spacing:14.572200px;}
.ls14{letter-spacing:14.645022px;}
.ls1b{letter-spacing:14.761705px;}
.ls16{letter-spacing:14.765019px;}
.ls11{letter-spacing:14.824349px;}
.ls1f{letter-spacing:14.829181px;}
.ls1e{letter-spacing:14.850295px;}
.ls15{letter-spacing:14.884124px;}
.ls2f{letter-spacing:14.890643px;}
.ls2c{letter-spacing:14.894553px;}
.ls2d{letter-spacing:14.941711px;}
.ls18{letter-spacing:14.944200px;}
.ls20{letter-spacing:15.165141px;}
.ls19{letter-spacing:15.173176px;}
.ls17{letter-spacing:15.215859px;}
.ls52{letter-spacing:15.232753px;}
.ls22{letter-spacing:15.606318px;}
.ls21{letter-spacing:15.612200px;}
.ls2e{letter-spacing:15.663483px;}
.ls35{letter-spacing:15.705483px;}
.ls3a{letter-spacing:16.644518px;}
.ls1d{letter-spacing:16.665141px;}
.ls2b{letter-spacing:16.988671px;}
.ls55{letter-spacing:17.426871px;}
.ls23{letter-spacing:17.741612px;}
.ls56{letter-spacing:18.068047px;}
.ls3e{letter-spacing:18.362165px;}
.ls9{letter-spacing:19.865506px;}
.ls1a{letter-spacing:21.947494px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.355200px;}
.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;}
}
.wsa0{word-spacing:-15.030000px;}
.ws33{word-spacing:-14.943900px;}
.ws9f{word-spacing:-13.500000px;}
.ws69{word-spacing:-13.449600px;}
.ws9e{word-spacing:-11.970000px;}
.ws31{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws1{word-spacing:-10.460700px;}
.ws53{word-spacing:-3.287658px;}
.ws67{word-spacing:-3.120307px;}
.wsbd{word-spacing:-3.108331px;}
.ws97{word-spacing:-2.851315px;}
.ws46{word-spacing:-2.809453px;}
.wsc8{word-spacing:-2.474726px;}
.ws4b{word-spacing:-2.391024px;}
.wsa2{word-spacing:-2.331248px;}
.wsf2{word-spacing:-2.313331px;}
.ws70{word-spacing:-2.151922px;}
.ws71{word-spacing:-2.092146px;}
.ws5d{word-spacing:-1.972595px;}
.wsc2{word-spacing:-1.912819px;}
.wsc3{word-spacing:-1.673717px;}
.ws9a{word-spacing:-1.554166px;}
.wse3{word-spacing:-1.452557px;}
.ws36{word-spacing:-1.434614px;}
.ws3a{word-spacing:-1.315063px;}
.ws54{word-spacing:-1.255288px;}
.ws5e{word-spacing:-1.195512px;}
.wsfe{word-spacing:-1.183565px;}
.ws3d{word-spacing:-1.135736px;}
.ws105{word-spacing:-1.129766px;}
.ws3c{word-spacing:-1.075961px;}
.ws12{word-spacing:-0.968371px;}
.ws2c{word-spacing:-0.896634px;}
.wscf{word-spacing:-0.860774px;}
.ws32{word-spacing:-0.836858px;}
.ws34{word-spacing:-0.777083px;}
.wscb{word-spacing:-0.645581px;}
.ws60{word-spacing:-0.597756px;}
.ws35{word-spacing:-0.537980px;}
.wsfa{word-spacing:-0.484186px;}
.ws2e{word-spacing:-0.478205px;}
.wsf7{word-spacing:-0.430387px;}
.ws47{word-spacing:-0.418429px;}
.wscc{word-spacing:-0.376589px;}
.ws3e{word-spacing:-0.358654px;}
.ws29{word-spacing:-0.298878px;}
.wsc7{word-spacing:-0.268992px;}
.ws21{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.ws16{word-spacing:-0.200246px;}
.ws6a{word-spacing:-0.180560px;}
.ws2b{word-spacing:-0.179327px;}
.ws6f{word-spacing:-0.178268px;}
.wse0{word-spacing:-0.161395px;}
.wsec{word-spacing:-0.131793px;}
.ws28{word-spacing:-0.119551px;}
.ws76{word-spacing:-0.117742px;}
.ws13{word-spacing:-0.107597px;}
.ws1e{word-spacing:-0.092126px;}
.ws74{word-spacing:-0.084386px;}
.ws42{word-spacing:-0.059776px;}
.wsc6{word-spacing:-0.053798px;}
.ws9d{word-spacing:-0.051986px;}
.ws2{word-spacing:-0.041843px;}
.ws7d{word-spacing:-0.013036px;}
.ws100{word-spacing:-0.011184px;}
.wsf8{word-spacing:-0.010867px;}
.ws98{word-spacing:-0.009158px;}
.wsa1{word-spacing:-0.008390px;}
.wsea{word-spacing:-0.007488px;}
.wse8{word-spacing:-0.007395px;}
.wsc{word-spacing:-0.006950px;}
.wse6{word-spacing:-0.006326px;}
.wsfd{word-spacing:-0.006067px;}
.ws30{word-spacing:-0.005810px;}
.wsf6{word-spacing:-0.005222px;}
.wse9{word-spacing:-0.002045px;}
.ws7c{word-spacing:-0.002002px;}
.wse2{word-spacing:-0.000845px;}
.ws3{word-spacing:0.000000px;}
.ws7a{word-spacing:0.000190px;}
.ws4{word-spacing:0.000448px;}
.wsee{word-spacing:0.000490px;}
.wsf0{word-spacing:0.001862px;}
.ws96{word-spacing:0.004900px;}
.ws99{word-spacing:0.011381px;}
.ws8d{word-spacing:0.041843px;}
.ws10{word-spacing:0.053798px;}
.ws24{word-spacing:0.059776px;}
.wsb6{word-spacing:0.060179px;}
.ws8e{word-spacing:0.083686px;}
.ws11{word-spacing:0.107597px;}
.ws2f{word-spacing:0.119551px;}
.ws8f{word-spacing:0.125528px;}
.wseb{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.wsef{word-spacing:0.201358px;}
.wse7{word-spacing:0.215194px;}
.ws6c{word-spacing:0.236607px;}
.ws58{word-spacing:0.239102px;}
.ws66{word-spacing:0.268992px;}
.ws6b{word-spacing:0.279290px;}
.ws2d{word-spacing:0.298878px;}
.wsb{word-spacing:0.322790px;}
.ws55{word-spacing:0.358654px;}
.wsdb{word-spacing:0.376589px;}
.wsde{word-spacing:0.430387px;}
.wsb0{word-spacing:0.478205px;}
.ws7f{word-spacing:0.512430px;}
.ws92{word-spacing:0.518430px;}
.ws83{word-spacing:0.524400px;}
.ws7e{word-spacing:0.527749px;}
.ws41{word-spacing:0.537980px;}
.wsb5{word-spacing:0.597756px;}
.ws52{word-spacing:0.646886px;}
.ws77{word-spacing:0.657532px;}
.ws4c{word-spacing:0.667642px;}
.ws50{word-spacing:0.670685px;}
.ws1c{word-spacing:0.672000px;}
.ws64{word-spacing:0.672778px;}
.ws14{word-spacing:0.673200px;}
.ws4e{word-spacing:0.693485px;}
.ws51{word-spacing:0.695885px;}
.ws4f{word-spacing:0.697862px;}
.ws4d{word-spacing:0.698285px;}
.ws39{word-spacing:0.717307px;}
.ws9b{word-spacing:0.747000px;}
.wsc0{word-spacing:0.787525px;}
.wsf4{word-spacing:0.806976px;}
.wsd3{word-spacing:0.860774px;}
.ws38{word-spacing:0.896634px;}
.ws78{word-spacing:0.899018px;}
.ws57{word-spacing:0.956410px;}
.wsf3{word-spacing:1.075968px;}
.wsd7{word-spacing:1.129766px;}
.wsd2{word-spacing:1.183565px;}
.wsc4{word-spacing:1.195512px;}
.wsba{word-spacing:1.255288px;}
.ws44{word-spacing:1.315063px;}
.ws4a{word-spacing:1.374839px;}
.ws101{word-spacing:1.375238px;}
.wsa{word-spacing:1.380812px;}
.wsca{word-spacing:1.398758px;}
.wsb9{word-spacing:1.434614px;}
.wsd4{word-spacing:1.452557px;}
.wsad{word-spacing:1.494390px;}
.ws5b{word-spacing:1.554166px;}
.ws43{word-spacing:1.613941px;}
.ws72{word-spacing:1.733492px;}
.wsfc{word-spacing:1.775347px;}
.ws3b{word-spacing:1.793268px;}
.wsd8{word-spacing:1.829146px;}
.wsa3{word-spacing:1.853044px;}
.ws5c{word-spacing:1.912819px;}
.wsce{word-spacing:1.936742px;}
.ws22{word-spacing:1.972595px;}
.wse5{word-spacing:1.990541px;}
.ws94{word-spacing:2.032370px;}
.ws59{word-spacing:2.211697px;}
.ws73{word-spacing:2.228429px;}
.wsfb{word-spacing:2.259533px;}
.wsa8{word-spacing:2.271473px;}
.ws40{word-spacing:2.450800px;}
.wsc5{word-spacing:2.474726px;}
.ws0{word-spacing:2.511541px;}
.wsf1{word-spacing:2.528525px;}
.wsaf{word-spacing:2.570351px;}
.ws95{word-spacing:2.622547px;}
.ws23{word-spacing:2.809453px;}
.wscd{word-spacing:2.851315px;}
.ws49{word-spacing:2.869229px;}
.wse{word-spacing:2.869236px;}
.wsdf{word-spacing:2.958912px;}
.ws15{word-spacing:3.012710px;}
.wsab{word-spacing:3.048556px;}
.wsb7{word-spacing:3.108331px;}
.ws1d{word-spacing:3.120307px;}
.wsb8{word-spacing:3.168107px;}
.wsda{word-spacing:3.174106px;}
.wse4{word-spacing:3.216547px;}
.ws1f{word-spacing:3.219667px;}
.ws103{word-spacing:3.220118px;}
.wsf5{word-spacing:3.222845px;}
.wsf9{word-spacing:3.222902px;}
.wsd1{word-spacing:3.223334px;}
.wse1{word-spacing:3.223488px;}
.ws104{word-spacing:3.224093px;}
.wsc9{word-spacing:3.224822px;}
.ws106{word-spacing:3.225571px;}
.wsb3{word-spacing:3.227882px;}
.wsd0{word-spacing:3.227904px;}
.wsed{word-spacing:3.230986px;}
.ws37{word-spacing:3.347434px;}
.wsff{word-spacing:3.389299px;}
.ws62{word-spacing:3.466985px;}
.ws109{word-spacing:3.496896px;}
.wsf{word-spacing:3.510037px;}
.ws9c{word-spacing:3.526760px;}
.ws79{word-spacing:3.569606px;}
.ws20{word-spacing:3.586536px;}
.ws107{word-spacing:3.658291px;}
.ws5f{word-spacing:3.706087px;}
.ws75{word-spacing:3.825638px;}
.wsdc{word-spacing:3.873485px;}
.wsa5{word-spacing:3.885414px;}
.ws27{word-spacing:3.945190px;}
.ws102{word-spacing:3.981082px;}
.wsae{word-spacing:4.004965px;}
.ws45{word-spacing:4.064741px;}
.wsbc{word-spacing:4.124516px;}
.wsbb{word-spacing:4.184292px;}
.ws93{word-spacing:4.303843px;}
.wsd5{word-spacing:4.519066px;}
.wsa7{word-spacing:4.542946px;}
.wsa6{word-spacing:4.602721px;}
.ws108{word-spacing:4.626662px;}
.wsb1{word-spacing:4.662497px;}
.wsd6{word-spacing:4.788058px;}
.ws61{word-spacing:4.841824px;}
.wsdd{word-spacing:4.895654px;}
.wsb2{word-spacing:4.901599px;}
.wsc1{word-spacing:4.961375px;}
.wsa9{word-spacing:5.021150px;}
.wsb4{word-spacing:5.140702px;}
.ws26{word-spacing:5.379804px;}
.ws48{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.ws5a{word-spacing:5.499355px;}
.ws56{word-spacing:5.559131px;}
.ws2a{word-spacing:5.678682px;}
.wsa4{word-spacing:5.917784px;}
.ws1b{word-spacing:6.079219px;}
.wsbf{word-spacing:6.097111px;}
.wsbe{word-spacing:6.156887px;}
.ws3f{word-spacing:6.336214px;}
.ws18{word-spacing:6.402010px;}
.wsac{word-spacing:6.694867px;}
.ws6d{word-spacing:6.993745px;}
.ws63{word-spacing:7.950155px;}
.ws19{word-spacing:8.083012px;}
.ws6e{word-spacing:8.828429px;}
.ws6{word-spacing:9.833058px;}
.wsd9{word-spacing:11.190067px;}
.ws7{word-spacing:11.841512px;}
.wsaa{word-spacing:19.128192px;}
.ws1a{word-spacing:21.949747px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
.ws84{word-spacing:88.568400px;}
.ws91{word-spacing:88.574400px;}
.ws86{word-spacing:95.576400px;}
.ws81{word-spacing:95.582400px;}
.ws88{word-spacing:106.040400px;}
.ws7b{word-spacing:143.238236px;}
.ws87{word-spacing:148.795694px;}
.ws8b{word-spacing:169.714697px;}
.ws8c{word-spacing:191.060150px;}
.ws8a{word-spacing:197.058851px;}
.ws68{word-spacing:199.136400px;}
.ws82{word-spacing:199.468956px;}
.ws89{word-spacing:207.776548px;}
.ws85{word-spacing:215.053842px;}
.ws80{word-spacing:233.357296px;}
.ws90{word-spacing:238.137497px;}
.ws65{word-spacing:321.768230px;}
._89{margin-left:-25.693646px;}
._87{margin-left:-24.044270px;}
._88{margin-left:-20.536164px;}
._14{margin-left:-7.567573px;}
._84{margin-left:-6.551414px;}
._8{margin-left:-5.523287px;}
._0{margin-left:-3.849538px;}
._9{margin-left:-2.630133px;}
._3{margin-left:-1.506341px;}
._46{width:1.123913px;}
._5{width:2.997745px;}
._82{width:4.505754px;}
._81{width:6.551070px;}
._77{width:8.535931px;}
._6f{width:11.817706px;}
._1{width:12.971268px;}
._7{width:14.824386px;}
._a{width:16.031923px;}
._b{width:17.143742px;}
._f{width:19.020592px;}
._20{width:20.024826px;}
._c{width:21.519360px;}
._13{width:22.595177px;}
._16{width:23.910240px;}
._2{width:25.192966px;}
._85{width:26.420815px;}
._e{width:27.556552px;}
._21{width:29.349820px;}
._12{width:30.485556px;}
._17{width:31.633243px;}
._4{width:33.677798px;}
._d{width:36.421517px;}
._15{width:38.077057px;}
._52{width:40.049652px;}
._6{width:54.411335px;}
._8a{width:61.868160px;}
._5a{width:76.260161px;}
._5b{width:80.560690px;}
._56{width:82.430316px;}
._42{width:84.947674px;}
._61{width:86.664892px;}
._70{width:96.751109px;}
._5f{width:97.828466px;}
._76{width:100.158124px;}
._74{width:101.343262px;}
._73{width:104.104886px;}
._45{width:105.695386px;}
._37{width:106.837718px;}
._63{width:108.289166px;}
._5e{width:111.499865px;}
._72{width:113.519554px;}
._26{width:114.667954px;}
._60{width:117.327211px;}
._25{width:119.408501px;}
._49{width:120.425068px;}
._62{width:122.552263px;}
._5d{width:124.649701px;}
._7e{width:126.448942px;}
._43{width:128.309184px;}
._67{width:129.796993px;}
._7d{width:131.426489px;}
._30{width:133.149686px;}
._66{width:134.817502px;}
._6b{width:136.993327px;}
._69{width:138.943445px;}
._68{width:140.979204px;}
._7b{width:143.474263px;}
._6e{width:145.110830px;}
._39{width:146.137080px;}
._2c{width:147.407616px;}
._28{width:150.209808px;}
._6d{width:151.448357px;}
._6a{width:153.097132px;}
._29{width:155.746368px;}
._1f{width:157.575514px;}
._31{width:160.050240px;}
._6c{width:161.155886px;}
._3a{width:162.846760px;}
._4a{width:165.107290px;}
._71{width:166.239698px;}
._5c{width:167.239708px;}
._1a{width:170.648160px;}
._65{width:172.392336px;}
._2b{width:173.499840px;}
._36{width:175.592315px;}
._2d{width:177.105590px;}
._44{width:178.287898px;}
._75{width:180.401984px;}
._2a{width:182.645568px;}
._1e{width:183.721536px;}
._38{width:184.826707px;}
._64{width:187.650526px;}
._35{width:189.800755px;}
._2e{width:196.095168px;}
._1c{width:197.870515px;}
._7f{width:199.570565px;}
._19{width:205.509888px;}
._32{width:209.168179px;}
._7a{width:210.244486px;}
._34{width:211.377600px;}
._2f{width:212.503680px;}
._18{width:223.777397px;}
._78{width:231.809112px;}
._40{width:244.567526px;}
._24{width:246.181478px;}
._3f{width:248.172019px;}
._3e{width:258.698558px;}
._3c{width:263.881152px;}
._58{width:265.408880px;}
._4e{width:267.109056px;}
._4c{width:272.381299px;}
._27{width:274.587034px;}
._50{width:279.697882px;}
._4d{width:281.634624px;}
._1d{width:283.894157px;}
._3d{width:286.584077px;}
._33{width:288.233879px;}
._22{width:290.080973px;}
._51{width:291.802522px;}
._4b{width:297.236160px;}
._1b{width:304.821734px;}
._4f{width:308.480026px;}
._3b{width:319.347302px;}
._48{width:326.287296px;}
._59{width:330.417688px;}
._79{width:358.445731px;}
._23{width:378.417946px;}
._41{width:412.689110px;}
._7c{width:489.011476px;}
._57{width:492.698970px;}
._47{width:614.879654px;}
._10{width:709.596198px;}
._55{width:748.107421px;}
._83{width:1236.488040px;}
._54{width:1401.277456px;}
._80{width:2087.305927px;}
._86{width:2474.693929px;}
._11{width:2498.603929px;}
._53{width:3976.583929px;}
.fc3{color:transparent;}
.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;}
.fsa{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:136.067040px;}
.y186{bottom:-322.534590px;}
.y1a3{bottom:-249.458730px;}
.y1a2{bottom:-230.190270px;}
.y1a1{bottom:-211.027020px;}
.y1a0{bottom:-191.758560px;}
.y19f{bottom:-172.505130px;}
.y19e{bottom:-148.832880px;}
.y19d{bottom:-111.573510px;}
.y19c{bottom:-92.410260px;}
.y19b{bottom:-73.141800px;}
.y19a{bottom:-36.339000px;}
.y199{bottom:-18.964500px;}
.y0{bottom:0.000000px;}
.y196{bottom:0.000990px;}
.y197{bottom:0.091170px;}
.y198{bottom:7.945050px;}
.y16{bottom:12.925707px;}
.y44{bottom:31.890000px;}
.y43{bottom:103.621500px;}
.y14{bottom:104.646000px;}
.y1f1{bottom:114.037500px;}
.y227{bottom:116.458500px;}
.y1ae{bottom:118.671000px;}
.y1c2{bottom:119.596500px;}
.yaa{bottom:121.968000px;}
.y42{bottom:122.449500px;}
.y13{bottom:122.535000px;}
.y17a{bottom:126.214500px;}
.y145{bottom:127.483500px;}
.y1f0{bottom:131.298000px;}
.y144{bottom:133.461000px;}
.y226{bottom:133.719000px;}
.y1ad{bottom:137.500500px;}
.y1c1{bottom:138.426000px;}
.y179{bottom:140.412000px;}
.y12{bottom:140.422500px;}
.ya9{bottom:140.797500px;}
.y41{bottom:141.279000px;}
.y1ef{bottom:148.558500px;}
.y225{bottom:150.978000px;}
.y143{bottom:151.393500px;}
.y78{bottom:155.461500px;}
.y1ac{bottom:156.330000px;}
.y1c0{bottom:157.255500px;}
.y142{bottom:157.371000px;}
.y11{bottom:158.310000px;}
.ya8{bottom:159.627000px;}
.y40{bottom:160.108500px;}
.y178{bottom:160.899000px;}
.y1ee{bottom:165.819000px;}
.y177{bottom:166.876500px;}
.y224{bottom:168.238500px;}
.y77{bottom:174.291000px;}
.y1ab{bottom:175.159500px;}
.y1bf{bottom:176.085000px;}
.y10{bottom:176.199000px;}
.ya7{bottom:178.456500px;}
.y3f{bottom:178.938000px;}
.y141{bottom:182.506500px;}
.y1ed{bottom:183.079500px;}
.y176{bottom:184.810500px;}
.y223{bottom:185.499000px;}
.y175{bottom:190.788000px;}
.y76{bottom:193.120500px;}
.y1aa{bottom:193.989000px;}
.yf{bottom:194.086500px;}
.y13f{bottom:194.461500px;}
.y1be{bottom:194.914500px;}
.ya6{bottom:197.286000px;}
.y3e{bottom:197.767500px;}
.y1ec{bottom:200.338500px;}
.y222{bottom:202.759500px;}
.y13d{bottom:206.416500px;}
.y174{bottom:208.720500px;}
.y75{bottom:211.950000px;}
.ye{bottom:211.974000px;}
.y1bd{bottom:213.744000px;}
.y172{bottom:214.698000px;}
.ya5{bottom:216.115500px;}
.y3d{bottom:216.597000px;}
.y1a9{bottom:217.302000px;}
.y1eb{bottom:217.599000px;}
.y13e{bottom:218.371500px;}
.y221{bottom:220.020000px;}
.y173{bottom:220.675500px;}
.yd{bottom:229.863000px;}
.y140{bottom:230.326500px;}
.y74{bottom:230.779500px;}
.y1bc{bottom:232.573500px;}
.y171{bottom:232.630500px;}
.y1ea{bottom:234.859500px;}
.ya4{bottom:234.945000px;}
.y3c{bottom:235.426500px;}
.y195{bottom:235.829910px;}
.y220{bottom:237.280500px;}
.y170{bottom:238.608000px;}
.y13c{bottom:249.484500px;}
.y73{bottom:249.609000px;}
.y1a8{bottom:250.926000px;}
.y1bb{bottom:251.403000px;}
.y1e9{bottom:252.120000px;}
.ya3{bottom:253.774500px;}
.y3b{bottom:254.256000px;}
.y21f{bottom:254.541000px;}
.y194{bottom:255.083340px;}
.y16f{bottom:256.540500px;}
.y13b{bottom:261.439500px;}
.y16e{bottom:262.518000px;}
.y72{bottom:268.438500px;}
.y1e8{bottom:269.380500px;}
.y1a7{bottom:269.755500px;}
.y1ba{bottom:270.232500px;}
.y21e{bottom:271.801500px;}
.ya2{bottom:272.604000px;}
.y3a{bottom:273.085500px;}
.y193{bottom:274.261620px;}
.y16d{bottom:280.450500px;}
.y139{bottom:280.597500px;}
.y16c{bottom:286.429500px;}
.y138{bottom:286.575000px;}
.y1e7{bottom:286.641000px;}
.y71{bottom:287.268000px;}
.yde{bottom:287.302500px;}
.y1a6{bottom:288.585000px;}
.y1b9{bottom:289.062000px;}
.ya1{bottom:291.433500px;}
.y39{bottom:291.915000px;}
.y13a{bottom:292.552500px;}
.y192{bottom:293.515050px;}
.yc{bottom:299.892000px;}
.ydd{bottom:303.741000px;}
.y1e6{bottom:303.901500px;}
.y16b{bottom:304.362000px;}
.y70{bottom:306.097500px;}
.y21d{bottom:306.321000px;}
.y1b8{bottom:307.891500px;}
.ya0{bottom:310.263000px;}
.y16a{bottom:310.339500px;}
.y38{bottom:310.744500px;}
.y137{bottom:311.710500px;}
.y191{bottom:312.678300px;}
.y136{bottom:317.688000px;}
.yb{bottom:317.779500px;}
.y1e5{bottom:321.162000px;}
.y1a5{bottom:322.150500px;}
.y21c{bottom:323.581500px;}
.y6f{bottom:324.927000px;}
.y1b7{bottom:326.719500px;}
.yda{bottom:327.381000px;}
.y169{bottom:328.272000px;}
.y10f{bottom:328.348500px;}
.y9f{bottom:329.092500px;}
.y37{bottom:329.574000px;}
.y190{bottom:331.946760px;}
.y168{bottom:334.249500px;}
.ydb{bottom:335.601000px;}
.y135{bottom:335.620500px;}
.ya{bottom:335.667000px;}
.y1e4{bottom:338.422500px;}
.y21b{bottom:340.842000px;}
.y1a4{bottom:341.383500px;}
.y134{bottom:341.598000px;}
.y6e{bottom:343.756500px;}
.yd9{bottom:343.819500px;}
.y1b6{bottom:345.549000px;}
.y10e{bottom:347.178000px;}
.y36{bottom:348.403500px;}
.ydc{bottom:352.039500px;}
.y9e{bottom:352.404000px;}
.y9{bottom:353.556000px;}
.y1e3{bottom:355.681500px;}
.y21a{bottom:358.102500px;}
.y167{bottom:359.385000px;}
.y133{bottom:359.530500px;}
.yd8{bottom:360.258000px;}
.y6d{bottom:362.586000px;}
.y1b5{bottom:364.378500px;}
.y132{bottom:365.508000px;}
.y10d{bottom:366.007500px;}
.y183{bottom:366.801000px;}
.y35{bottom:367.233000px;}
.y18f{bottom:368.755500px;}
.y166{bottom:371.340000px;}
.y1e2{bottom:372.942000px;}
.y219{bottom:375.363000px;}
.y6c{bottom:381.415500px;}
.y8{bottom:381.904500px;}
.y1b4{bottom:383.208000px;}
.y131{bottom:383.440500px;}
.yd7{bottom:383.899500px;}
.y10c{bottom:384.837000px;}
.y9d{bottom:386.028000px;}
.y34{bottom:386.062500px;}
.y18e{bottom:386.130000px;}
.y12f{bottom:389.418000px;}
.y1e1{bottom:390.202500px;}
.y165{bottom:390.496500px;}
.y218{bottom:392.623500px;}
.y130{bottom:395.397000px;}
.y164{bottom:396.475500px;}
.y6b{bottom:400.245000px;}
.y1b3{bottom:402.037500px;}
.y10b{bottom:403.666500px;}
.y9c{bottom:404.857500px;}
.y33{bottom:404.892000px;}
.y12e{bottom:407.352000px;}
.y1e0{bottom:407.463000px;}
.yd4{bottom:407.539500px;}
.y18d{bottom:408.539640px;}
.y7{bottom:408.759000px;}
.y217{bottom:409.884000px;}
.y12c{bottom:413.329500px;}
.yd5{bottom:415.759500px;}
.y6a{bottom:419.074500px;}
.y12d{bottom:419.307000px;}
.y1b2{bottom:420.867000px;}
.y15b{bottom:421.609500px;}
.y10a{bottom:422.496000px;}
.y22a{bottom:422.586000px;}
.y9b{bottom:423.687000px;}
.y32{bottom:423.721500px;}
.yd3{bottom:423.978000px;}
.y1df{bottom:424.723500px;}
.y6{bottom:426.646500px;}
.y216{bottom:427.144500px;}
.y163{bottom:427.587000px;}
.y12b{bottom:431.262000px;}
.yd6{bottom:432.196500px;}
.y159{bottom:433.564500px;}
.y12a{bottom:437.239500px;}
.y162{bottom:439.542000px;}
.y1b1{bottom:439.696500px;}
.y229{bottom:439.846500px;}
.yd2{bottom:440.416500px;}
.y109{bottom:441.325500px;}
.y1de{bottom:441.984000px;}
.y69{bottom:442.387500px;}
.y9a{bottom:442.516500px;}
.y31{bottom:442.551000px;}
.y215{bottom:444.403500px;}
.y5{bottom:444.534000px;}
.y158{bottom:445.521000px;}
.y161{bottom:451.498500px;}
.y129{bottom:455.172000px;}
.y228{bottom:457.107000px;}
.y157{bottom:457.476000px;}
.y1b0{bottom:458.526000px;}
.y1dd{bottom:459.244500px;}
.y108{bottom:460.155000px;}
.y128{bottom:461.149500px;}
.y99{bottom:461.346000px;}
.y30{bottom:461.380500px;}
.y214{bottom:461.664000px;}
.y4{bottom:462.423000px;}
.y68{bottom:462.561000px;}
.y160{bottom:463.453500px;}
.yd1{bottom:464.056500px;}
.y153{bottom:469.431000px;}
.y15f{bottom:475.408500px;}
.y1dc{bottom:476.505000px;}
.y1af{bottom:477.355500px;}
.y213{bottom:478.924500px;}
.y107{bottom:478.983000px;}
.y127{bottom:479.082000px;}
.y98{bottom:480.175500px;}
.y3{bottom:480.310500px;}
.yd0{bottom:480.495000px;}
.y156{bottom:481.386000px;}
.y2f{bottom:484.693500px;}
.y126{bottom:485.059500px;}
.y15e{bottom:487.363500px;}
.y155{bottom:493.341000px;}
.y1db{bottom:493.764000px;}
.y67{bottom:496.185000px;}
.y106{bottom:497.812500px;}
.y2{bottom:498.198000px;}
.y97{bottom:499.005000px;}
.y15d{bottom:499.318500px;}
.y125{bottom:502.993500px;}
.ycf{bottom:504.136500px;}
.y154{bottom:505.296000px;}
.y123{bottom:508.971000px;}
.y1da{bottom:511.024500px;}
.y15c{bottom:511.273500px;}
.ycd{bottom:512.355000px;}
.y212{bottom:513.445500px;}
.y124{bottom:514.948500px;}
.y66{bottom:515.014500px;}
.y1{bottom:516.087000px;}
.y105{bottom:516.642000px;}
.y15a{bottom:517.251000px;}
.y96{bottom:517.834500px;}
.yca{bottom:520.575000px;}
.y122{bottom:526.903500px;}
.y1d9{bottom:528.285000px;}
.ycc{bottom:528.793500px;}
.y211{bottom:530.706000px;}
.y65{bottom:533.844000px;}
.y104{bottom:535.471500px;}
.y152{bottom:536.409000px;}
.y95{bottom:536.664000px;}
.yc9{bottom:537.013500px;}
.y121{bottom:538.858500px;}
.y150{bottom:542.386500px;}
.ycb{bottom:545.232000px;}
.y1d8{bottom:545.545500px;}
.y210{bottom:547.966500px;}
.y151{bottom:548.364000px;}
.y120{bottom:550.813500px;}
.y64{bottom:552.673500px;}
.yce{bottom:553.450500px;}
.y103{bottom:554.301000px;}
.y94{bottom:555.493500px;}
.y11f{bottom:556.791000px;}
.y2e{bottom:559.843500px;}
.y14f{bottom:560.319000px;}
.y1d7{bottom:562.806000px;}
.y20f{bottom:565.227000px;}
.y63{bottom:571.503000px;}
.y14e{bottom:572.274000px;}
.y102{bottom:573.130500px;}
.y93{bottom:574.323000px;}
.y11e{bottom:574.723500px;}
.yc8{bottom:577.092000px;}
.y1d6{bottom:580.066500px;}
.y20e{bottom:582.487500px;}
.y11d{bottom:586.678500px;}
.y62{bottom:590.332500px;}
.y14d{bottom:591.432000px;}
.y101{bottom:591.960000px;}
.y92{bottom:593.152500px;}
.y2d{bottom:597.232500px;}
.y1d5{bottom:597.327000px;}
.y14a{bottom:597.409500px;}
.y11c{bottom:598.633500px;}
.y20d{bottom:599.746500px;}
.yc6{bottom:600.732000px;}
.y14c{bottom:603.387000px;}
.y182{bottom:605.034000px;}
.yc7{bottom:608.952000px;}
.y61{bottom:609.162000px;}
.y149{bottom:609.364500px;}
.y11b{bottom:610.590000px;}
.y100{bottom:610.789500px;}
.y91{bottom:611.982000px;}
.y1d4{bottom:614.587500px;}
.y14b{bottom:615.342000px;}
.y2c{bottom:616.690500px;}
.y20c{bottom:617.007000px;}
.yc5{bottom:617.170500px;}
.y11a{bottom:622.545000px;}
.y181{bottom:623.863500px;}
.y60{bottom:627.991500px;}
.yff{bottom:629.619000px;}
.y90{bottom:630.811500px;}
.y20b{bottom:634.267500px;}
.y119{bottom:634.500000px;}
.y2b{bottom:636.147000px;}
.y1d3{bottom:636.330000px;}
.yc4{bottom:640.812000px;}
.y180{bottom:642.693000px;}
.y118{bottom:646.455000px;}
.y5f{bottom:646.821000px;}
.yfe{bottom:648.448500px;}
.y8f{bottom:649.641000px;}
.y20a{bottom:651.528000px;}
.y117{bottom:652.432500px;}
.y2a{bottom:655.603500px;}
.yc3{bottom:657.250500px;}
.y18c{bottom:660.712980px;}
.y17f{bottom:661.522500px;}
.y148{bottom:665.613000px;}
.y5e{bottom:665.650500px;}
.y8e{bottom:668.470500px;}
.y209{bottom:668.788500px;}
.y1d2{bottom:669.954000px;}
.y147{bottom:671.590500px;}
.yc2{bottom:673.689000px;}
.y29{bottom:675.061500px;}
.y116{bottom:677.568000px;}
.y18b{bottom:679.981440px;}
.y17e{bottom:680.352000px;}
.y146{bottom:683.545500px;}
.y5d{bottom:684.480000px;}
.y208{bottom:686.049000px;}
.y8d{bottom:687.300000px;}
.yfd{bottom:688.582500px;}
.y115{bottom:689.523000px;}
.yc1{bottom:690.127500px;}
.y28{bottom:694.518000px;}
.y1d1{bottom:696.495000px;}
.y18a{bottom:699.144690px;}
.y17d{bottom:699.181500px;}
.y5c{bottom:703.309500px;}
.y8c{bottom:706.129500px;}
.yc0{bottom:706.564500px;}
.y114{bottom:708.679500px;}
.y113{bottom:708.709500px;}
.yfc{bottom:710.415000px;}
.y27{bottom:713.974500px;}
.y189{bottom:718.398120px;}
.y207{bottom:720.570000px;}
.y112{bottom:720.636000px;}
.y5b{bottom:722.139000px;}
.ybf{bottom:723.003000px;}
.y1d0{bottom:723.036000px;}
.y8b{bottom:724.959000px;}
.yfb{bottom:726.853500px;}
.y17c{bottom:732.747000px;}
.y26{bottom:733.432500px;}
.y188{bottom:737.666580px;}
.y206{bottom:737.829000px;}
.ybe{bottom:739.441500px;}
.y5a{bottom:740.968500px;}
.yfa{bottom:743.292000px;}
.y8a{bottom:743.788500px;}
.y111{bottom:749.116500px;}
.y1cf{bottom:749.575500px;}
.y17b{bottom:751.980000px;}
.y25{bottom:752.889000px;}
.y205{bottom:755.089500px;}
.ybd{bottom:755.880000px;}
.y187{bottom:756.829830px;}
.yf9{bottom:759.729000px;}
.y59{bottom:759.798000px;}
.y89{bottom:762.618000px;}
.y1ce{bottom:767.149500px;}
.ybc{bottom:772.318500px;}
.y24{bottom:772.347000px;}
.y204{bottom:772.350000px;}
.yf8{bottom:776.167500px;}
.y58{bottom:778.627500px;}
.y88{bottom:781.447500px;}
.y1cd{bottom:784.723500px;}
.ybb{bottom:788.757000px;}
.y203{bottom:789.610500px;}
.y23{bottom:791.803500px;}
.yf7{bottom:792.606000px;}
.y57{bottom:797.457000px;}
.y87{bottom:804.759000px;}
.yba{bottom:805.195500px;}
.y202{bottom:806.871000px;}
.y110{bottom:807.739500px;}
.yf6{bottom:809.044500px;}
.y22{bottom:811.260000px;}
.y1cc{bottom:811.264500px;}
.y185{bottom:811.556940px;}
.y56{bottom:816.286500px;}
.y184{bottom:821.180820px;}
.yb9{bottom:821.634000px;}
.y201{bottom:824.131500px;}
.yf5{bottom:825.483000px;}
.y21{bottom:830.718000px;}
.y55{bottom:835.114500px;}
.y1cb{bottom:837.805500px;}
.yb8{bottom:838.072500px;}
.y86{bottom:838.383000px;}
.y200{bottom:841.392000px;}
.yf4{bottom:849.124500px;}
.y54{bottom:853.944000px;}
.yb7{bottom:854.511000px;}
.y1ca{bottom:855.379500px;}
.y85{bottom:857.212500px;}
.y1ff{bottom:858.652500px;}
.yf3{bottom:865.563000px;}
.y20{bottom:868.188000px;}
.yb6{bottom:870.948000px;}
.y53{bottom:872.773500px;}
.y1c9{bottom:872.953500px;}
.y1fe{bottom:875.913000px;}
.y84{bottom:876.042000px;}
.yf2{bottom:882.000000px;}
.y1f{bottom:884.328000px;}
.y1c8{bottom:890.527500px;}
.y52{bottom:891.603000px;}
.y1fd{bottom:893.172000px;}
.yb4{bottom:894.589500px;}
.y83{bottom:894.871500px;}
.y1e{bottom:900.468000px;}
.yb5{bottom:902.808000px;}
.yf1{bottom:905.641500px;}
.y1c7{bottom:908.101500px;}
.y51{bottom:910.432500px;}
.yb3{bottom:911.028000px;}
.y82{bottom:913.701000px;}
.y1d{bottom:916.606500px;}
.yb2{bottom:927.466500px;}
.y1fc{bottom:927.693000px;}
.y50{bottom:929.262000px;}
.yea{bottom:929.281500px;}
.y81{bottom:932.530500px;}
.y1c{bottom:937.086000px;}
.yf0{bottom:937.501500px;}
.y1c6{bottom:943.608000px;}
.y1fb{bottom:944.953500px;}
.ye8{bottom:945.720000px;}
.y4f{bottom:948.091500px;}
.yb1{bottom:951.106500px;}
.y80{bottom:951.360000px;}
.y1b{bottom:953.226000px;}
.yef{bottom:953.940000px;}
.ye7{bottom:962.158500px;}
.y1fa{bottom:962.214000px;}
.y1c5{bottom:962.437500px;}
.y4e{bottom:966.921000px;}
.yee{bottom:970.378500px;}
.y7f{bottom:974.673000px;}
.ye6{bottom:978.597000px;}
.y1f9{bottom:979.474500px;}
.y1c4{bottom:981.267000px;}
.yb0{bottom:985.714500px;}
.y4d{bottom:985.750500px;}
.ye1{bottom:986.817000px;}
.ye5{bottom:995.035500px;}
.y1f8{bottom:996.735000px;}
.y1a{bottom:996.787500px;}
.y1c3{bottom:1000.096500px;}
.ye0{bottom:1003.254000px;}
.y4c{bottom:1004.580000px;}
.ye4{bottom:1011.474000px;}
.y7e{bottom:1011.667500px;}
.y1f7{bottom:1013.995500px;}
.yaf{bottom:1018.926000px;}
.yed{bottom:1019.692500px;}
.y4b{bottom:1023.409500px;}
.ye3{bottom:1027.912500px;}
.y7d{bottom:1030.512000px;}
.y1f6{bottom:1031.254500px;}
.yec{bottom:1036.131000px;}
.y19{bottom:1036.707000px;}
.yae{bottom:1037.755500px;}
.y4a{bottom:1042.239000px;}
.ye2{bottom:1044.351000px;}
.y7c{bottom:1046.950500px;}
.y1f5{bottom:1048.515000px;}
.yeb{bottom:1052.569500px;}
.yad{bottom:1056.585000px;}
.ye9{bottom:1060.789500px;}
.y49{bottom:1061.068500px;}
.y7b{bottom:1063.389000px;}
.y18{bottom:1064.952000px;}
.y1f4{bottom:1065.775500px;}
.yac{bottom:1075.414500px;}
.y48{bottom:1079.898000px;}
.y1f3{bottom:1083.036000px;}
.ydf{bottom:1084.429500px;}
.y7a{bottom:1087.224000px;}
.y17{bottom:1093.195500px;}
.yab{bottom:1094.244000px;}
.y47{bottom:1098.727500px;}
.y1f2{bottom:1100.296500px;}
.y46{bottom:1117.557000px;}
.y79{bottom:1119.037500px;}
.y15{bottom:1136.682000px;}
.y45{bottom:1177.662000px;}
.ha{height:26.110157px;}
.h20{height:29.037733px;}
.h1a{height:30.252344px;}
.h19{height:30.366344px;}
.h3{height:30.461558px;}
.h4{height:30.670772px;}
.hb{height:34.813397px;}
.h11{height:35.052500px;}
.hd{height:37.334628px;}
.h2{height:38.202476px;}
.h14{height:38.896243px;}
.hc{height:39.165235px;}
.he{height:39.434227px;}
.h13{height:41.482876px;}
.hf{height:43.217759px;}
.h10{height:43.516637px;}
.h7{height:43.815515px;}
.h27{height:44.268047px;}
.h23{height:44.279648px;}
.h12{height:49.002344px;}
.h29{height:49.117939px;}
.h25{height:49.939453px;}
.h5{height:50.930649px;}
.h1b{height:54.162344px;}
.h1c{height:54.371558px;}
.h1f{height:54.377558px;}
.h9{height:54.547601px;}
.h28{height:54.575123px;}
.h24{height:55.599258px;}
.h15{height:71.770243px;}
.h16{height:71.776243px;}
.h8{height:77.792486px;}
.h21{height:78.072344px;}
.h1d{height:78.281558px;}
.h1e{height:78.287558px;}
.h6{height:92.253453px;}
.h26{height:189.900000px;}
.h22{height:217.909500px;}
.h17{height:892.914000px;}
.h18{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:207.345381px;}
.w6{width:302.722200px;}
.w7{width:342.600000px;}
.w5{width:645.322200px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1262.835000px;}
.w4{width:1263.000000px;}
.x117{left:-67.001130px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.056971px;}
.x6c{left:62.676000px;}
.x88{left:64.336500px;}
.x71{left:66.871500px;}
.x79{left:68.176500px;}
.x74{left:70.294500px;}
.xc5{left:72.181500px;}
.xf1{left:73.269000px;}
.x7b{left:74.436000px;}
.x8e{left:77.193000px;}
.x10f{left:78.553500px;}
.xc8{left:80.610000px;}
.xe3{left:81.891000px;}
.x72{left:83.145000px;}
.x13a{left:85.848000px;}
.x78{left:92.062500px;}
.xc6{left:93.277500px;}
.x77{left:94.806000px;}
.x76{left:95.995500px;}
.xc7{left:97.174500px;}
.x70{left:98.665500px;}
.xa5{left:100.428000px;}
.x73{left:101.934000px;}
.xa7{left:102.976500px;}
.x6d{left:104.584500px;}
.xa6{left:107.145000px;}
.x75{left:109.861500px;}
.x87{left:111.436500px;}
.xe4{left:118.191000px;}
.x116{left:123.583800px;}
.x119{left:128.575350px;}
.x11b{left:136.405980px;}
.x7a{left:140.353500px;}
.x89{left:145.260000px;}
.x10e{left:150.646500px;}
.x8f{left:152.128500px;}
.x118{left:160.423920px;}
.x7c{left:180.013500px;}
.xc4{left:184.491000px;}
.xa4{left:189.201000px;}
.xc2{left:201.055500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x12{left:253.714500px;}
.x4{left:269.914500px;}
.x6b{left:271.924500px;}
.x1c{left:281.479500px;}
.xb7{left:285.285000px;}
.x4f{left:288.784500px;}
.x122{left:290.926500px;}
.x5b{left:294.151500px;}
.x113{left:295.804500px;}
.x7{left:297.669000px;}
.x5a{left:299.377500px;}
.xd{left:301.452000px;}
.x50{left:303.729000px;}
.x123{left:305.871000px;}
.x51{left:307.539000px;}
.x110{left:309.900000px;}
.x8{left:312.088500px;}
.x5c{left:313.311000px;}
.x125{left:315.120000px;}
.x132{left:320.629500px;}
.x52{left:322.483500px;}
.x13{left:323.727000px;}
.x1d{left:325.222500px;}
.x18{left:328.765500px;}
.x27{left:330.226500px;}
.x1e{left:332.695500px;}
.xac{left:335.442000px;}
.xc9{left:337.132500px;}
.x1f{left:340.315500px;}
.xbb{left:344.077500px;}
.x1b{left:346.228500px;}
.x20{left:347.788500px;}
.xad{left:351.466500px;}
.xc3{left:353.439000px;}
.x53{left:355.423500px;}
.xbe{left:357.234000px;}
.x67{left:359.160000px;}
.xca{left:361.638000px;}
.x5e{left:366.025500px;}
.x54{left:370.366500px;}
.x55{left:374.133000px;}
.x90{left:377.895000px;}
.x14{left:378.916500px;}
.x5f{left:380.968500px;}
.x19{left:383.668500px;}
.x32{left:385.368000px;}
.x56{left:389.077500px;}
.x33{left:392.839500px;}
.x15{left:394.963500px;}
.x12e{left:396.472500px;}
.x1a{left:398.091000px;}
.x36{left:401.289000px;}
.x8a{left:403.489500px;}
.xb8{left:405.468000px;}
.xb2{left:406.657500px;}
.x37{left:408.537000px;}
.x6e{left:410.961000px;}
.x38{left:412.111500px;}
.x12a{left:414.466500px;}
.xf2{left:416.917500px;}
.xf3{left:419.235000px;}
.x137{left:421.338000px;}
.x131{left:422.467500px;}
.xa8{left:423.666000px;}
.x39{left:426.607500px;}
.x16{left:427.789500px;}
.x3a{left:430.182000px;}
.xf4{left:432.325500px;}
.xae{left:433.435500px;}
.xcb{left:437.257500px;}
.x34{left:438.400500px;}
.x48{left:440.292000px;}
.xbf{left:442.980000px;}
.x3b{left:444.678000px;}
.x49{left:447.685500px;}
.xaf{left:449.460000px;}
.x12c{left:450.652500px;}
.x35{left:452.896500px;}
.x138{left:454.995000px;}
.x68{left:456.832500px;}
.xc0{left:459.252000px;}
.x25{left:461.148000px;}
.x4a{left:462.180000px;}
.x62{left:463.527000px;}
.x12d{left:465.597000px;}
.x26{left:468.619500px;}
.x69{left:472.779000px;}
.x63{left:478.471500px;}
.x17{left:479.650500px;}
.x6a{left:482.398500px;}
.xe{left:483.487500px;}
.x5d{left:485.398500px;}
.x92{left:488.761500px;}
.x93{left:490.597500px;}
.x95{left:494.181000px;}
.x7d{left:495.789000px;}
.xd4{left:497.298000px;}
.x7e{left:498.565500px;}
.xf{left:499.614000px;}
.xe5{left:502.236000px;}
.x8b{left:504.913500px;}
.x3c{left:507.772500px;}
.x128{left:509.229000px;}
.x94{left:511.174500px;}
.xb4{left:513.238500px;}
.x44{left:516.003000px;}
.x91{left:519.015000px;}
.x3d{left:522.268500px;}
.xa9{left:523.566000px;}
.x45{left:530.497500px;}
.x23{left:531.519000px;}
.x2c{left:532.546500px;}
.x46{left:533.946000px;}
.x24{left:538.992000px;}
.x2d{left:540.018000px;}
.x115{left:542.487000px;}
.x2e{left:543.735000px;}
.x47{left:548.442000px;}
.xcc{left:557.299500px;}
.x2f{left:558.679500px;}
.xd5{left:561.070500px;}
.x30{left:562.396500px;}
.xb5{left:564.754500px;}
.xe6{left:568.638000px;}
.xf6{left:570.678000px;}
.x12b{left:571.911000px;}
.xf5{left:573.294000px;}
.x111{left:574.660500px;}
.x31{left:577.341000px;}
.x139{left:579.996000px;}
.x96{left:581.127000px;}
.x10{left:584.202000px;}
.x80{left:585.990000px;}
.x81{left:587.334000px;}
.x97{left:588.807000px;}
.x7f{left:591.927000px;}
.x11d{left:593.038500px;}
.x21{left:594.243000px;}
.x98{left:598.342500px;}
.x11{left:600.330000px;}
.x22{left:601.716000px;}
.xc1{left:604.986000px;}
.x4d{left:612.229500px;}
.x64{left:614.056500px;}
.x11e{left:615.429000px;}
.x129{left:616.885500px;}
.x28{left:618.702000px;}
.xb6{left:622.378500px;}
.xf8{left:623.476500px;}
.xe7{left:625.104000px;}
.x11f{left:626.125500px;}
.x4e{left:627.174000px;}
.x65{left:628.851000px;}
.xd7{left:630.469500px;}
.xf7{left:631.782000px;}
.x29{left:633.646500px;}
.xcd{left:635.119500px;}
.xfa{left:636.867000px;}
.xd6{left:638.028000px;}
.xf9{left:639.481500px;}
.x2a{left:640.969500px;}
.xbc{left:645.598500px;}
.x120{left:648.415500px;}
.x126{left:649.455000px;}
.x127{left:653.184000px;}
.x2b{left:655.912500px;}
.x112{left:659.494500px;}
.x11a{left:661.990050px;}
.x121{left:663.358500px;}
.x135{left:664.656000px;}
.x82{left:666.642000px;}
.x83{left:668.511000px;}
.x84{left:671.113500px;}
.x9b{left:672.183000px;}
.x8c{left:674.119500px;}
.x9e{left:675.243000px;}
.x9d{left:676.716000px;}
.x9f{left:679.338000px;}
.x99{left:682.336500px;}
.x57{left:685.099500px;}
.x9a{left:686.628000px;}
.xa0{left:688.873500px;}
.xd8{left:690.922500px;}
.x9c{left:692.236500px;}
.xfb{left:693.688500px;}
.xee{left:698.050500px;}
.x58{left:700.044000px;}
.x136{left:701.866500px;}
.x42{left:703.095000px;}
.xfc{left:705.817500px;}
.x9{left:709.449000px;}
.x43{left:717.589500px;}
.x59{left:718.798500px;}
.xa{left:723.868500px;}
.xaa{left:727.078500px;}
.xbd{left:729.196500px;}
.x130{left:738.610500px;}
.x3e{left:742.867500px;}
.x124{left:744.451500px;}
.xb9{left:746.157000px;}
.x3f{left:750.115500px;}
.xb3{left:752.194500px;}
.x40{left:753.697500px;}
.x85{left:756.508500px;}
.x66{left:757.905000px;}
.x114{left:759.187500px;}
.xa1{left:761.988000px;}
.x8d{left:764.650500px;}
.xa2{left:765.774000px;}
.xb0{left:767.175000px;}
.x41{left:768.192000px;}
.xa3{left:769.869000px;}
.xb{left:772.156500px;}
.x6{left:774.556500px;}
.x6f{left:776.782500px;}
.x86{left:779.404500px;}
.xab{left:784.702500px;}
.xfd{left:791.059500px;}
.xfe{left:793.377000px;}
.xd9{left:795.276000px;}
.xff{left:797.602500px;}
.x133{left:798.943500px;}
.x60{left:800.487000px;}
.xba{left:803.781000px;}
.x100{left:806.469000px;}
.x11c{left:807.871500px;}
.xce{left:811.401000px;}
.x134{left:813.886500px;}
.x61{left:815.431500px;}
.x12f{left:816.951000px;}
.x4b{left:819.339000px;}
.xb1{left:832.209000px;}
.x4c{left:833.835000px;}
.xc{left:837.184500px;}
.xe8{left:865.252500px;}
.x102{left:868.030500px;}
.xda{left:869.280000px;}
.xdb{left:871.440000px;}
.xcf{left:872.733000px;}
.xe9{left:876.378000px;}
.xd0{left:879.208500px;}
.x101{left:881.247000px;}
.xd1{left:931.441500px;}
.xeb{left:932.770500px;}
.xdd{left:935.212500px;}
.xde{left:936.258000px;}
.x104{left:937.404000px;}
.xdc{left:939.831000px;}
.xea{left:942.781500px;}
.x105{left:944.821500px;}
.x103{left:947.436000px;}
.xe1{left:997.305000px;}
.xec{left:999.246000px;}
.x109{left:1000.407000px;}
.x108{left:1001.553000px;}
.x10a{left:1003.593000px;}
.xe0{left:1004.613000px;}
.x106{left:1005.925500px;}
.xd2{left:1008.106500px;}
.xd3{left:1009.261500px;}
.x10b{left:1011.009000px;}
.xdf{left:1012.170000px;}
.x107{left:1013.625000px;}
.xed{left:1063.818000px;}
.x10c{left:1067.832000px;}
.xef{left:1072.194000px;}
.x10d{left:1079.961000px;}
.xe2{left:1081.629000px;}
.xf0{left:1091.143500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:21.253333pt;}
.v5{vertical-align:29.221333pt;}
.v7{vertical-align:42.506667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.000008pt;}
.ls45{letter-spacing:0.000375pt;}
.ls3c{letter-spacing:0.000600pt;}
.ls34{letter-spacing:0.000627pt;}
.ls4b{letter-spacing:0.000659pt;}
.ls4a{letter-spacing:0.000711pt;}
.ls3f{letter-spacing:0.000921pt;}
.ls3b{letter-spacing:0.001408pt;}
.ls4d{letter-spacing:0.001512pt;}
.ls4f{letter-spacing:0.002153pt;}
.ls1{letter-spacing:0.002422pt;}
.ls4e{letter-spacing:0.002525pt;}
.ls50{letter-spacing:0.003138pt;}
.ls4c{letter-spacing:0.003290pt;}
.ls10{letter-spacing:0.003733pt;}
.ls3d{letter-spacing:0.003922pt;}
.ls41{letter-spacing:0.004267pt;}
.ls33{letter-spacing:0.096000pt;}
.ls32{letter-spacing:0.106880pt;}
.ls31{letter-spacing:0.160320pt;}
.ls27{letter-spacing:0.442457pt;}
.ls29{letter-spacing:0.447791pt;}
.ls12{letter-spacing:2.656533pt;}
.ls51{letter-spacing:2.734498pt;}
.ls28{letter-spacing:9.296533pt;}
.ls0{letter-spacing:9.298933pt;}
.ls26{letter-spacing:9.301867pt;}
.ls24{letter-spacing:9.743791pt;}
.ls25{letter-spacing:9.749124pt;}
.ls2a{letter-spacing:10.405863pt;}
.lse{letter-spacing:10.626533pt;}
.ls1c{letter-spacing:11.403135pt;}
.ls37{letter-spacing:11.626499pt;}
.ls40{letter-spacing:11.714741pt;}
.ls6{letter-spacing:11.771388pt;}
.ls53{letter-spacing:11.809506pt;}
.ls48{letter-spacing:11.842501pt;}
.ls47{letter-spacing:11.857527pt;}
.lsb{letter-spacing:11.874888pt;}
.ls36{letter-spacing:11.877968pt;}
.ls42{letter-spacing:11.922865pt;}
.lsd{letter-spacing:11.942639pt;}
.lsc{letter-spacing:11.948608pt;}
.ls8{letter-spacing:11.950933pt;}
.ls38{letter-spacing:11.954133pt;}
.lsa{letter-spacing:11.956267pt;}
.ls46{letter-spacing:11.959467pt;}
.ls44{letter-spacing:11.970431pt;}
.ls39{letter-spacing:12.060962pt;}
.ls49{letter-spacing:12.128726pt;}
.ls54{letter-spacing:12.280094pt;}
.ls7{letter-spacing:12.528078pt;}
.ls5{letter-spacing:12.533411pt;}
.ls30{letter-spacing:12.796332pt;}
.ls13{letter-spacing:12.953067pt;}
.ls14{letter-spacing:13.017797pt;}
.ls1b{letter-spacing:13.121516pt;}
.ls16{letter-spacing:13.124461pt;}
.ls11{letter-spacing:13.177199pt;}
.ls1f{letter-spacing:13.181494pt;}
.ls1e{letter-spacing:13.200262pt;}
.ls15{letter-spacing:13.230333pt;}
.ls2f{letter-spacing:13.236127pt;}
.ls2c{letter-spacing:13.239603pt;}
.ls2d{letter-spacing:13.281521pt;}
.ls18{letter-spacing:13.283733pt;}
.ls20{letter-spacing:13.480125pt;}
.ls19{letter-spacing:13.487267pt;}
.ls17{letter-spacing:13.525208pt;}
.ls52{letter-spacing:13.540225pt;}
.ls22{letter-spacing:13.872282pt;}
.ls21{letter-spacing:13.877511pt;}
.ls2e{letter-spacing:13.923096pt;}
.ls35{letter-spacing:13.960429pt;}
.ls3a{letter-spacing:14.795127pt;}
.ls1d{letter-spacing:14.813459pt;}
.ls2b{letter-spacing:15.101041pt;}
.ls55{letter-spacing:15.490552pt;}
.ls23{letter-spacing:15.770322pt;}
.ls56{letter-spacing:16.060486pt;}
.ls3e{letter-spacing:16.321924pt;}
.ls9{letter-spacing:17.658227pt;}
.ls1a{letter-spacing:19.508884pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.315733pt;}
.wsa0{word-spacing:-13.360000pt;}
.ws33{word-spacing:-13.283467pt;}
.ws9f{word-spacing:-12.000000pt;}
.ws69{word-spacing:-11.955200pt;}
.ws9e{word-spacing:-10.640000pt;}
.ws31{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws1{word-spacing:-9.298400pt;}
.ws53{word-spacing:-2.922363pt;}
.ws67{word-spacing:-2.773606pt;}
.wsbd{word-spacing:-2.762961pt;}
.ws97{word-spacing:-2.534502pt;}
.ws46{word-spacing:-2.497292pt;}
.wsc8{word-spacing:-2.199757pt;}
.ws4b{word-spacing:-2.125355pt;}
.wsa2{word-spacing:-2.072221pt;}
.wsf2{word-spacing:-2.056294pt;}
.ws70{word-spacing:-1.912819pt;}
.ws71{word-spacing:-1.859685pt;}
.ws5d{word-spacing:-1.753418pt;}
.wsc2{word-spacing:-1.700284pt;}
.wsc3{word-spacing:-1.487748pt;}
.ws9a{word-spacing:-1.381481pt;}
.wse3{word-spacing:-1.291162pt;}
.ws36{word-spacing:-1.275213pt;}
.ws3a{word-spacing:-1.168945pt;}
.ws54{word-spacing:-1.115811pt;}
.ws5e{word-spacing:-1.062677pt;}
.wsfe{word-spacing:-1.052058pt;}
.ws3d{word-spacing:-1.009543pt;}
.ws105{word-spacing:-1.004237pt;}
.ws3c{word-spacing:-0.956410pt;}
.ws12{word-spacing:-0.860774pt;}
.ws2c{word-spacing:-0.797008pt;}
.wscf{word-spacing:-0.765133pt;}
.ws32{word-spacing:-0.743874pt;}
.ws34{word-spacing:-0.690740pt;}
.wscb{word-spacing:-0.573850pt;}
.ws60{word-spacing:-0.531339pt;}
.ws35{word-spacing:-0.478205pt;}
.wsfa{word-spacing:-0.430387pt;}
.ws2e{word-spacing:-0.425071pt;}
.wsf7{word-spacing:-0.382566pt;}
.ws47{word-spacing:-0.371937pt;}
.wscc{word-spacing:-0.334746pt;}
.ws3e{word-spacing:-0.318803pt;}
.ws29{word-spacing:-0.265669pt;}
.wsc7{word-spacing:-0.239104pt;}
.ws21{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.ws16{word-spacing:-0.177997pt;}
.ws6a{word-spacing:-0.160498pt;}
.ws2b{word-spacing:-0.159402pt;}
.ws6f{word-spacing:-0.158461pt;}
.wse0{word-spacing:-0.143462pt;}
.wsec{word-spacing:-0.117149pt;}
.ws28{word-spacing:-0.106268pt;}
.ws76{word-spacing:-0.104659pt;}
.ws13{word-spacing:-0.095642pt;}
.ws1e{word-spacing:-0.081889pt;}
.ws74{word-spacing:-0.075010pt;}
.ws42{word-spacing:-0.053134pt;}
.wsc6{word-spacing:-0.047821pt;}
.ws9d{word-spacing:-0.046210pt;}
.ws2{word-spacing:-0.037194pt;}
.ws7d{word-spacing:-0.011587pt;}
.ws100{word-spacing:-0.009941pt;}
.wsf8{word-spacing:-0.009660pt;}
.ws98{word-spacing:-0.008141pt;}
.wsa1{word-spacing:-0.007458pt;}
.wsea{word-spacing:-0.006656pt;}
.wse8{word-spacing:-0.006573pt;}
.wsc{word-spacing:-0.006178pt;}
.wse6{word-spacing:-0.005623pt;}
.wsfd{word-spacing:-0.005393pt;}
.ws30{word-spacing:-0.005164pt;}
.wsf6{word-spacing:-0.004642pt;}
.wse9{word-spacing:-0.001818pt;}
.ws7c{word-spacing:-0.001779pt;}
.wse2{word-spacing:-0.000751pt;}
.ws3{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.000169pt;}
.ws4{word-spacing:0.000398pt;}
.wsee{word-spacing:0.000435pt;}
.wsf0{word-spacing:0.001655pt;}
.ws96{word-spacing:0.004356pt;}
.ws99{word-spacing:0.010116pt;}
.ws8d{word-spacing:0.037194pt;}
.ws10{word-spacing:0.047821pt;}
.ws24{word-spacing:0.053134pt;}
.wsb6{word-spacing:0.053493pt;}
.ws8e{word-spacing:0.074387pt;}
.ws11{word-spacing:0.095642pt;}
.ws2f{word-spacing:0.106268pt;}
.ws8f{word-spacing:0.111581pt;}
.wseb{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.wsef{word-spacing:0.178984pt;}
.wse7{word-spacing:0.191283pt;}
.ws6c{word-spacing:0.210318pt;}
.ws58{word-spacing:0.212535pt;}
.ws66{word-spacing:0.239104pt;}
.ws6b{word-spacing:0.248258pt;}
.ws2d{word-spacing:0.265669pt;}
.wsb{word-spacing:0.286925pt;}
.ws55{word-spacing:0.318803pt;}
.wsdb{word-spacing:0.334746pt;}
.wsde{word-spacing:0.382566pt;}
.wsb0{word-spacing:0.425071pt;}
.ws7f{word-spacing:0.455493pt;}
.ws92{word-spacing:0.460827pt;}
.ws83{word-spacing:0.466133pt;}
.ws7e{word-spacing:0.469110pt;}
.ws41{word-spacing:0.478205pt;}
.wsb5{word-spacing:0.531339pt;}
.ws52{word-spacing:0.575010pt;}
.ws77{word-spacing:0.584473pt;}
.ws4c{word-spacing:0.593459pt;}
.ws50{word-spacing:0.596164pt;}
.ws1c{word-spacing:0.597333pt;}
.ws64{word-spacing:0.598025pt;}
.ws14{word-spacing:0.598400pt;}
.ws4e{word-spacing:0.616431pt;}
.ws51{word-spacing:0.618564pt;}
.ws4f{word-spacing:0.620322pt;}
.ws4d{word-spacing:0.620698pt;}
.ws39{word-spacing:0.637606pt;}
.ws9b{word-spacing:0.664000pt;}
.wsc0{word-spacing:0.700022pt;}
.wsf4{word-spacing:0.717312pt;}
.wsd3{word-spacing:0.765133pt;}
.ws38{word-spacing:0.797008pt;}
.ws78{word-spacing:0.799127pt;}
.ws57{word-spacing:0.850142pt;}
.wsf3{word-spacing:0.956416pt;}
.wsd7{word-spacing:1.004237pt;}
.wsd2{word-spacing:1.052058pt;}
.wsc4{word-spacing:1.062677pt;}
.wsba{word-spacing:1.115811pt;}
.ws44{word-spacing:1.168945pt;}
.ws4a{word-spacing:1.222079pt;}
.ws101{word-spacing:1.222434pt;}
.wsa{word-spacing:1.227389pt;}
.wsca{word-spacing:1.243341pt;}
.wsb9{word-spacing:1.275213pt;}
.wsd4{word-spacing:1.291162pt;}
.wsad{word-spacing:1.328347pt;}
.ws5b{word-spacing:1.381481pt;}
.ws43{word-spacing:1.434614pt;}
.ws72{word-spacing:1.540882pt;}
.wsfc{word-spacing:1.578086pt;}
.ws3b{word-spacing:1.594016pt;}
.wsd8{word-spacing:1.625907pt;}
.wsa3{word-spacing:1.647150pt;}
.ws5c{word-spacing:1.700284pt;}
.wsce{word-spacing:1.721549pt;}
.ws22{word-spacing:1.753418pt;}
.wse5{word-spacing:1.769370pt;}
.ws94{word-spacing:1.806551pt;}
.ws59{word-spacing:1.965953pt;}
.ws73{word-spacing:1.980826pt;}
.wsfb{word-spacing:2.008474pt;}
.wsa8{word-spacing:2.019087pt;}
.ws40{word-spacing:2.178489pt;}
.wsc5{word-spacing:2.199757pt;}
.ws0{word-spacing:2.232481pt;}
.wsf1{word-spacing:2.247578pt;}
.wsaf{word-spacing:2.284756pt;}
.ws95{word-spacing:2.331153pt;}
.ws23{word-spacing:2.497292pt;}
.wscd{word-spacing:2.534502pt;}
.ws49{word-spacing:2.550426pt;}
.wse{word-spacing:2.550432pt;}
.wsdf{word-spacing:2.630144pt;}
.ws15{word-spacing:2.677965pt;}
.wsab{word-spacing:2.709827pt;}
.wsb7{word-spacing:2.762961pt;}
.ws1d{word-spacing:2.773606pt;}
.wsb8{word-spacing:2.816095pt;}
.wsda{word-spacing:2.821427pt;}
.wse4{word-spacing:2.859153pt;}
.ws1f{word-spacing:2.861926pt;}
.ws103{word-spacing:2.862327pt;}
.wsf5{word-spacing:2.864751pt;}
.wsf9{word-spacing:2.864802pt;}
.wsd1{word-spacing:2.865186pt;}
.wse1{word-spacing:2.865323pt;}
.ws104{word-spacing:2.865860pt;}
.wsc9{word-spacing:2.866509pt;}
.ws106{word-spacing:2.867174pt;}
.wsb3{word-spacing:2.869229pt;}
.wsd0{word-spacing:2.869248pt;}
.wsed{word-spacing:2.871987pt;}
.ws37{word-spacing:2.975497pt;}
.wsff{word-spacing:3.012710pt;}
.ws62{word-spacing:3.081764pt;}
.ws109{word-spacing:3.108352pt;}
.wsf{word-spacing:3.120033pt;}
.ws9c{word-spacing:3.134898pt;}
.ws79{word-spacing:3.172983pt;}
.ws20{word-spacing:3.188032pt;}
.ws107{word-spacing:3.251814pt;}
.ws5f{word-spacing:3.294300pt;}
.ws75{word-spacing:3.400567pt;}
.wsdc{word-spacing:3.443098pt;}
.wsa5{word-spacing:3.453701pt;}
.ws27{word-spacing:3.506835pt;}
.ws102{word-spacing:3.538739pt;}
.wsae{word-spacing:3.559969pt;}
.ws45{word-spacing:3.613103pt;}
.wsbc{word-spacing:3.666237pt;}
.wsbb{word-spacing:3.719371pt;}
.ws93{word-spacing:3.825638pt;}
.wsd5{word-spacing:4.016947pt;}
.wsa7{word-spacing:4.038174pt;}
.wsa6{word-spacing:4.091308pt;}
.ws108{word-spacing:4.112589pt;}
.wsb1{word-spacing:4.144442pt;}
.wsd6{word-spacing:4.256051pt;}
.ws61{word-spacing:4.303843pt;}
.wsdd{word-spacing:4.351693pt;}
.wsb2{word-spacing:4.356977pt;}
.wsc1{word-spacing:4.410111pt;}
.wsa9{word-spacing:4.463245pt;}
.wsb4{word-spacing:4.569513pt;}
.ws26{word-spacing:4.782048pt;}
.ws48{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.ws5a{word-spacing:4.888316pt;}
.ws56{word-spacing:4.941450pt;}
.ws2a{word-spacing:5.047717pt;}
.wsa4{word-spacing:5.260253pt;}
.ws1b{word-spacing:5.403750pt;}
.wsbf{word-spacing:5.419654pt;}
.wsbe{word-spacing:5.472788pt;}
.ws3f{word-spacing:5.632190pt;}
.ws18{word-spacing:5.690675pt;}
.wsac{word-spacing:5.950993pt;}
.ws6d{word-spacing:6.216662pt;}
.ws63{word-spacing:7.066804pt;}
.ws19{word-spacing:7.184899pt;}
.ws6e{word-spacing:7.847493pt;}
.ws6{word-spacing:8.740496pt;}
.wsd9{word-spacing:9.946726pt;}
.ws7{word-spacing:10.525789pt;}
.wsaa{word-spacing:17.002837pt;}
.ws1a{word-spacing:19.510886pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
.ws84{word-spacing:78.727467pt;}
.ws91{word-spacing:78.732800pt;}
.ws86{word-spacing:84.956800pt;}
.ws81{word-spacing:84.962133pt;}
.ws88{word-spacing:94.258133pt;}
.ws7b{word-spacing:127.322877pt;}
.ws87{word-spacing:132.262839pt;}
.ws8b{word-spacing:150.857508pt;}
.ws8c{word-spacing:169.831245pt;}
.ws8a{word-spacing:175.163423pt;}
.ws68{word-spacing:177.010133pt;}
.ws82{word-spacing:177.305739pt;}
.ws89{word-spacing:184.690265pt;}
.ws85{word-spacing:191.158971pt;}
.ws80{word-spacing:207.428707pt;}
.ws90{word-spacing:211.677775pt;}
.ws65{word-spacing:286.016205pt;}
._89{margin-left:-22.838797pt;}
._87{margin-left:-21.372685pt;}
._88{margin-left:-18.254368pt;}
._14{margin-left:-6.726732pt;}
._84{margin-left:-5.823479pt;}
._8{margin-left:-4.909589pt;}
._0{margin-left:-3.421811pt;}
._9{margin-left:-2.337896pt;}
._3{margin-left:-1.338970pt;}
._46{width:0.999034pt;}
._5{width:2.664662pt;}
._82{width:4.005114pt;}
._81{width:5.823173pt;}
._77{width:7.587494pt;}
._6f{width:10.504627pt;}
._1{width:11.530016pt;}
._7{width:13.177232pt;}
._a{width:14.250598pt;}
._b{width:15.238882pt;}
._f{width:16.907193pt;}
._20{width:17.799845pt;}
._c{width:19.128320pt;}
._13{width:20.084602pt;}
._16{width:21.253547pt;}
._2{width:22.393747pt;}
._85{width:23.485169pt;}
._e{width:24.494713pt;}
._21{width:26.088729pt;}
._12{width:27.098272pt;}
._17{width:28.118438pt;}
._4{width:29.935821pt;}
._d{width:32.374682pt;}
._15{width:33.846273pt;}
._52{width:35.599691pt;}
._6{width:48.365631pt;}
._8a{width:54.993920pt;}
._5a{width:67.786810pt;}
._5b{width:71.609502pt;}
._56{width:73.271392pt;}
._42{width:75.509043pt;}
._61{width:77.035459pt;}
._70{width:86.000986pt;}
._5f{width:86.958637pt;}
._76{width:89.029443pt;}
._74{width:90.082899pt;}
._73{width:92.537677pt;}
._45{width:93.951454pt;}
._37{width:94.966861pt;}
._63{width:96.257037pt;}
._5e{width:99.110991pt;}
._72{width:100.906270pt;}
._26{width:101.927070pt;}
._60{width:104.290854pt;}
._25{width:106.140890pt;}
._49{width:107.044505pt;}
._62{width:108.935345pt;}
._5d{width:110.799734pt;}
._7e{width:112.399059pt;}
._43{width:114.052608pt;}
._67{width:115.375105pt;}
._7d{width:116.823546pt;}
._30{width:118.355277pt;}
._66{width:119.837779pt;}
._6b{width:121.771846pt;}
._69{width:123.505284pt;}
._68{width:125.314848pt;}
._7b{width:127.532678pt;}
._6e{width:128.987405pt;}
._39{width:129.899627pt;}
._2c{width:131.028992pt;}
._28{width:133.519829pt;}
._6d{width:134.620762pt;}
._6a{width:136.086339pt;}
._29{width:138.441216pt;}
._1f{width:140.067123pt;}
._31{width:142.266880pt;}
._6c{width:143.249677pt;}
._3a{width:144.752675pt;}
._4a{width:146.762035pt;}
._71{width:147.768621pt;}
._5c{width:148.657518pt;}
._1a{width:151.687253pt;}
._65{width:153.237632pt;}
._2b{width:154.222080pt;}
._36{width:156.082058pt;}
._2d{width:157.427191pt;}
._44{width:158.478131pt;}
._75{width:160.357319pt;}
._2a{width:162.351616pt;}
._1e{width:163.308032pt;}
._38{width:164.290406pt;}
._64{width:166.800467pt;}
._35{width:168.711782pt;}
._2e{width:174.306816pt;}
._1c{width:175.884902pt;}
._7f{width:177.396058pt;}
._19{width:182.675456pt;}
._32{width:185.927270pt;}
._7a{width:186.883987pt;}
._34{width:187.891200pt;}
._2f{width:188.892160pt;}
._18{width:198.913242pt;}
._78{width:206.052544pt;}
._40{width:217.393357pt;}
._24{width:218.827981pt;}
._3f{width:220.597350pt;}
._3e{width:229.954274pt;}
._3c{width:234.561024pt;}
._58{width:235.919005pt;}
._4e{width:237.430272pt;}
._4c{width:242.116710pt;}
._27{width:244.077363pt;}
._50{width:248.620339pt;}
._4d{width:250.341888pt;}
._1d{width:252.350362pt;}
._3d{width:254.741402pt;}
._33{width:256.207893pt;}
._22{width:257.849754pt;}
._51{width:259.380019pt;}
._4b{width:264.209920pt;}
._1b{width:270.952653pt;}
._4f{width:274.204467pt;}
._3b{width:283.864269pt;}
._48{width:290.033152pt;}
._59{width:293.704611pt;}
._79{width:318.618428pt;}
._23{width:336.371507pt;}
._41{width:366.834765pt;}
._7c{width:434.676867pt;}
._57{width:437.954640pt;}
._47{width:546.559693pt;}
._10{width:630.752176pt;}
._55{width:664.984374pt;}
._83{width:1099.100480pt;}
._54{width:1245.579961pt;}
._80{width:1855.383046pt;}
._86{width:2199.727937pt;}
._11{width:2220.981270pt;}
._53{width:3534.741270pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsa{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:120.948480pt;}
.y186{bottom:-286.697413pt;}
.y1a3{bottom:-221.741093pt;}
.y1a2{bottom:-204.613573pt;}
.y1a1{bottom:-187.579573pt;}
.y1a0{bottom:-170.452053pt;}
.y19f{bottom:-153.337893pt;}
.y19e{bottom:-132.295893pt;}
.y19d{bottom:-99.176453pt;}
.y19c{bottom:-82.142453pt;}
.y19b{bottom:-65.014933pt;}
.y19a{bottom:-32.301333pt;}
.y199{bottom:-16.857333pt;}
.y0{bottom:0.000000pt;}
.y196{bottom:0.000880pt;}
.y197{bottom:0.081040pt;}
.y198{bottom:7.062267pt;}
.y16{bottom:11.489518pt;}
.y44{bottom:28.346667pt;}
.y43{bottom:92.108000pt;}
.y14{bottom:93.018667pt;}
.y1f1{bottom:101.366667pt;}
.y227{bottom:103.518667pt;}
.y1ae{bottom:105.485333pt;}
.y1c2{bottom:106.308000pt;}
.yaa{bottom:108.416000pt;}
.y42{bottom:108.844000pt;}
.y13{bottom:108.920000pt;}
.y17a{bottom:112.190667pt;}
.y145{bottom:113.318667pt;}
.y1f0{bottom:116.709333pt;}
.y144{bottom:118.632000pt;}
.y226{bottom:118.861333pt;}
.y1ad{bottom:122.222667pt;}
.y1c1{bottom:123.045333pt;}
.y179{bottom:124.810667pt;}
.y12{bottom:124.820000pt;}
.ya9{bottom:125.153333pt;}
.y41{bottom:125.581333pt;}
.y1ef{bottom:132.052000pt;}
.y225{bottom:134.202667pt;}
.y143{bottom:134.572000pt;}
.y78{bottom:138.188000pt;}
.y1ac{bottom:138.960000pt;}
.y1c0{bottom:139.782667pt;}
.y142{bottom:139.885333pt;}
.y11{bottom:140.720000pt;}
.ya8{bottom:141.890667pt;}
.y40{bottom:142.318667pt;}
.y178{bottom:143.021333pt;}
.y1ee{bottom:147.394667pt;}
.y177{bottom:148.334667pt;}
.y224{bottom:149.545333pt;}
.y77{bottom:154.925333pt;}
.y1ab{bottom:155.697333pt;}
.y1bf{bottom:156.520000pt;}
.y10{bottom:156.621333pt;}
.ya7{bottom:158.628000pt;}
.y3f{bottom:159.056000pt;}
.y141{bottom:162.228000pt;}
.y1ed{bottom:162.737333pt;}
.y176{bottom:164.276000pt;}
.y223{bottom:164.888000pt;}
.y175{bottom:169.589333pt;}
.y76{bottom:171.662667pt;}
.y1aa{bottom:172.434667pt;}
.yf{bottom:172.521333pt;}
.y13f{bottom:172.854667pt;}
.y1be{bottom:173.257333pt;}
.ya6{bottom:175.365333pt;}
.y3e{bottom:175.793333pt;}
.y1ec{bottom:178.078667pt;}
.y222{bottom:180.230667pt;}
.y13d{bottom:183.481333pt;}
.y174{bottom:185.529333pt;}
.y75{bottom:188.400000pt;}
.ye{bottom:188.421333pt;}
.y1bd{bottom:189.994667pt;}
.y172{bottom:190.842667pt;}
.ya5{bottom:192.102667pt;}
.y3d{bottom:192.530667pt;}
.y1a9{bottom:193.157333pt;}
.y1eb{bottom:193.421333pt;}
.y13e{bottom:194.108000pt;}
.y221{bottom:195.573333pt;}
.y173{bottom:196.156000pt;}
.yd{bottom:204.322667pt;}
.y140{bottom:204.734667pt;}
.y74{bottom:205.137333pt;}
.y1bc{bottom:206.732000pt;}
.y171{bottom:206.782667pt;}
.y1ea{bottom:208.764000pt;}
.ya4{bottom:208.840000pt;}
.y3c{bottom:209.268000pt;}
.y195{bottom:209.626587pt;}
.y220{bottom:210.916000pt;}
.y170{bottom:212.096000pt;}
.y13c{bottom:221.764000pt;}
.y73{bottom:221.874667pt;}
.y1a8{bottom:223.045333pt;}
.y1bb{bottom:223.469333pt;}
.y1e9{bottom:224.106667pt;}
.ya3{bottom:225.577333pt;}
.y3b{bottom:226.005333pt;}
.y21f{bottom:226.258667pt;}
.y194{bottom:226.740747pt;}
.y16f{bottom:228.036000pt;}
.y13b{bottom:232.390667pt;}
.y16e{bottom:233.349333pt;}
.y72{bottom:238.612000pt;}
.y1e8{bottom:239.449333pt;}
.y1a7{bottom:239.782667pt;}
.y1ba{bottom:240.206667pt;}
.y21e{bottom:241.601333pt;}
.ya2{bottom:242.314667pt;}
.y3a{bottom:242.742667pt;}
.y193{bottom:243.788107pt;}
.y16d{bottom:249.289333pt;}
.y139{bottom:249.420000pt;}
.y16c{bottom:254.604000pt;}
.y138{bottom:254.733333pt;}
.y1e7{bottom:254.792000pt;}
.y71{bottom:255.349333pt;}
.yde{bottom:255.380000pt;}
.y1a6{bottom:256.520000pt;}
.y1b9{bottom:256.944000pt;}
.ya1{bottom:259.052000pt;}
.y39{bottom:259.480000pt;}
.y13a{bottom:260.046667pt;}
.y192{bottom:260.902267pt;}
.yc{bottom:266.570667pt;}
.ydd{bottom:269.992000pt;}
.y1e6{bottom:270.134667pt;}
.y16b{bottom:270.544000pt;}
.y70{bottom:272.086667pt;}
.y21d{bottom:272.285333pt;}
.y1b8{bottom:273.681333pt;}
.ya0{bottom:275.789333pt;}
.y16a{bottom:275.857333pt;}
.y38{bottom:276.217333pt;}
.y137{bottom:277.076000pt;}
.y191{bottom:277.936267pt;}
.y136{bottom:282.389333pt;}
.yb{bottom:282.470667pt;}
.y1e5{bottom:285.477333pt;}
.y1a5{bottom:286.356000pt;}
.y21c{bottom:287.628000pt;}
.y6f{bottom:288.824000pt;}
.y1b7{bottom:290.417333pt;}
.yda{bottom:291.005333pt;}
.y169{bottom:291.797333pt;}
.y10f{bottom:291.865333pt;}
.y9f{bottom:292.526667pt;}
.y37{bottom:292.954667pt;}
.y190{bottom:295.063787pt;}
.y168{bottom:297.110667pt;}
.ydb{bottom:298.312000pt;}
.y135{bottom:298.329333pt;}
.ya{bottom:298.370667pt;}
.y1e4{bottom:300.820000pt;}
.y21b{bottom:302.970667pt;}
.y1a4{bottom:303.452000pt;}
.y134{bottom:303.642667pt;}
.y6e{bottom:305.561333pt;}
.yd9{bottom:305.617333pt;}
.y1b6{bottom:307.154667pt;}
.y10e{bottom:308.602667pt;}
.y36{bottom:309.692000pt;}
.ydc{bottom:312.924000pt;}
.y9e{bottom:313.248000pt;}
.y9{bottom:314.272000pt;}
.y1e3{bottom:316.161333pt;}
.y21a{bottom:318.313333pt;}
.y167{bottom:319.453333pt;}
.y133{bottom:319.582667pt;}
.yd8{bottom:320.229333pt;}
.y6d{bottom:322.298667pt;}
.y1b5{bottom:323.892000pt;}
.y132{bottom:324.896000pt;}
.y10d{bottom:325.340000pt;}
.y183{bottom:326.045333pt;}
.y35{bottom:326.429333pt;}
.y18f{bottom:327.782667pt;}
.y166{bottom:330.080000pt;}
.y1e2{bottom:331.504000pt;}
.y219{bottom:333.656000pt;}
.y6c{bottom:339.036000pt;}
.y8{bottom:339.470667pt;}
.y1b4{bottom:340.629333pt;}
.y131{bottom:340.836000pt;}
.yd7{bottom:341.244000pt;}
.y10c{bottom:342.077333pt;}
.y9d{bottom:343.136000pt;}
.y34{bottom:343.166667pt;}
.y18e{bottom:343.226667pt;}
.y12f{bottom:346.149333pt;}
.y1e1{bottom:346.846667pt;}
.y165{bottom:347.108000pt;}
.y218{bottom:348.998667pt;}
.y130{bottom:351.464000pt;}
.y164{bottom:352.422667pt;}
.y6b{bottom:355.773333pt;}
.y1b3{bottom:357.366667pt;}
.y10b{bottom:358.814667pt;}
.y9c{bottom:359.873333pt;}
.y33{bottom:359.904000pt;}
.y12e{bottom:362.090667pt;}
.y1e0{bottom:362.189333pt;}
.yd4{bottom:362.257333pt;}
.y18d{bottom:363.146347pt;}
.y7{bottom:363.341333pt;}
.y217{bottom:364.341333pt;}
.y12c{bottom:367.404000pt;}
.yd5{bottom:369.564000pt;}
.y6a{bottom:372.510667pt;}
.y12d{bottom:372.717333pt;}
.y1b2{bottom:374.104000pt;}
.y15b{bottom:374.764000pt;}
.y10a{bottom:375.552000pt;}
.y22a{bottom:375.632000pt;}
.y9b{bottom:376.610667pt;}
.y32{bottom:376.641333pt;}
.yd3{bottom:376.869333pt;}
.y1df{bottom:377.532000pt;}
.y6{bottom:379.241333pt;}
.y216{bottom:379.684000pt;}
.y163{bottom:380.077333pt;}
.y12b{bottom:383.344000pt;}
.yd6{bottom:384.174667pt;}
.y159{bottom:385.390667pt;}
.y12a{bottom:388.657333pt;}
.y162{bottom:390.704000pt;}
.y1b1{bottom:390.841333pt;}
.y229{bottom:390.974667pt;}
.yd2{bottom:391.481333pt;}
.y109{bottom:392.289333pt;}
.y1de{bottom:392.874667pt;}
.y69{bottom:393.233333pt;}
.y9a{bottom:393.348000pt;}
.y31{bottom:393.378667pt;}
.y215{bottom:395.025333pt;}
.y5{bottom:395.141333pt;}
.y158{bottom:396.018667pt;}
.y161{bottom:401.332000pt;}
.y129{bottom:404.597333pt;}
.y228{bottom:406.317333pt;}
.y157{bottom:406.645333pt;}
.y1b0{bottom:407.578667pt;}
.y1dd{bottom:408.217333pt;}
.y108{bottom:409.026667pt;}
.y128{bottom:409.910667pt;}
.y99{bottom:410.085333pt;}
.y30{bottom:410.116000pt;}
.y214{bottom:410.368000pt;}
.y4{bottom:411.042667pt;}
.y68{bottom:411.165333pt;}
.y160{bottom:411.958667pt;}
.yd1{bottom:412.494667pt;}
.y153{bottom:417.272000pt;}
.y15f{bottom:422.585333pt;}
.y1dc{bottom:423.560000pt;}
.y1af{bottom:424.316000pt;}
.y213{bottom:425.710667pt;}
.y107{bottom:425.762667pt;}
.y127{bottom:425.850667pt;}
.y98{bottom:426.822667pt;}
.y3{bottom:426.942667pt;}
.yd0{bottom:427.106667pt;}
.y156{bottom:427.898667pt;}
.y2f{bottom:430.838667pt;}
.y126{bottom:431.164000pt;}
.y15e{bottom:433.212000pt;}
.y155{bottom:438.525333pt;}
.y1db{bottom:438.901333pt;}
.y67{bottom:441.053333pt;}
.y106{bottom:442.500000pt;}
.y2{bottom:442.842667pt;}
.y97{bottom:443.560000pt;}
.y15d{bottom:443.838667pt;}
.y125{bottom:447.105333pt;}
.ycf{bottom:448.121333pt;}
.y154{bottom:449.152000pt;}
.y123{bottom:452.418667pt;}
.y1da{bottom:454.244000pt;}
.y15c{bottom:454.465333pt;}
.ycd{bottom:455.426667pt;}
.y212{bottom:456.396000pt;}
.y124{bottom:457.732000pt;}
.y66{bottom:457.790667pt;}
.y1{bottom:458.744000pt;}
.y105{bottom:459.237333pt;}
.y15a{bottom:459.778667pt;}
.y96{bottom:460.297333pt;}
.yca{bottom:462.733333pt;}
.y122{bottom:468.358667pt;}
.y1d9{bottom:469.586667pt;}
.ycc{bottom:470.038667pt;}
.y211{bottom:471.738667pt;}
.y65{bottom:474.528000pt;}
.y104{bottom:475.974667pt;}
.y152{bottom:476.808000pt;}
.y95{bottom:477.034667pt;}
.yc9{bottom:477.345333pt;}
.y121{bottom:478.985333pt;}
.y150{bottom:482.121333pt;}
.ycb{bottom:484.650667pt;}
.y1d8{bottom:484.929333pt;}
.y210{bottom:487.081333pt;}
.y151{bottom:487.434667pt;}
.y120{bottom:489.612000pt;}
.y64{bottom:491.265333pt;}
.yce{bottom:491.956000pt;}
.y103{bottom:492.712000pt;}
.y94{bottom:493.772000pt;}
.y11f{bottom:494.925333pt;}
.y2e{bottom:497.638667pt;}
.y14f{bottom:498.061333pt;}
.y1d7{bottom:500.272000pt;}
.y20f{bottom:502.424000pt;}
.y63{bottom:508.002667pt;}
.y14e{bottom:508.688000pt;}
.y102{bottom:509.449333pt;}
.y93{bottom:510.509333pt;}
.y11e{bottom:510.865333pt;}
.yc8{bottom:512.970667pt;}
.y1d6{bottom:515.614667pt;}
.y20e{bottom:517.766667pt;}
.y11d{bottom:521.492000pt;}
.y62{bottom:524.740000pt;}
.y14d{bottom:525.717333pt;}
.y101{bottom:526.186667pt;}
.y92{bottom:527.246667pt;}
.y2d{bottom:530.873333pt;}
.y1d5{bottom:530.957333pt;}
.y14a{bottom:531.030667pt;}
.y11c{bottom:532.118667pt;}
.y20d{bottom:533.108000pt;}
.yc6{bottom:533.984000pt;}
.y14c{bottom:536.344000pt;}
.y182{bottom:537.808000pt;}
.yc7{bottom:541.290667pt;}
.y61{bottom:541.477333pt;}
.y149{bottom:541.657333pt;}
.y11b{bottom:542.746667pt;}
.y100{bottom:542.924000pt;}
.y91{bottom:543.984000pt;}
.y1d4{bottom:546.300000pt;}
.y14b{bottom:546.970667pt;}
.y2c{bottom:548.169333pt;}
.y20c{bottom:548.450667pt;}
.yc5{bottom:548.596000pt;}
.y11a{bottom:553.373333pt;}
.y181{bottom:554.545333pt;}
.y60{bottom:558.214667pt;}
.yff{bottom:559.661333pt;}
.y90{bottom:560.721333pt;}
.y20b{bottom:563.793333pt;}
.y119{bottom:564.000000pt;}
.y2b{bottom:565.464000pt;}
.y1d3{bottom:565.626667pt;}
.yc4{bottom:569.610667pt;}
.y180{bottom:571.282667pt;}
.y118{bottom:574.626667pt;}
.y5f{bottom:574.952000pt;}
.yfe{bottom:576.398667pt;}
.y8f{bottom:577.458667pt;}
.y20a{bottom:579.136000pt;}
.y117{bottom:579.940000pt;}
.y2a{bottom:582.758667pt;}
.yc3{bottom:584.222667pt;}
.y18c{bottom:587.300427pt;}
.y17f{bottom:588.020000pt;}
.y148{bottom:591.656000pt;}
.y5e{bottom:591.689333pt;}
.y8e{bottom:594.196000pt;}
.y209{bottom:594.478667pt;}
.y1d2{bottom:595.514667pt;}
.y147{bottom:596.969333pt;}
.yc2{bottom:598.834667pt;}
.y29{bottom:600.054667pt;}
.y116{bottom:602.282667pt;}
.y18b{bottom:604.427947pt;}
.y17e{bottom:604.757333pt;}
.y146{bottom:607.596000pt;}
.y5d{bottom:608.426667pt;}
.y208{bottom:609.821333pt;}
.y8d{bottom:610.933333pt;}
.yfd{bottom:612.073333pt;}
.y115{bottom:612.909333pt;}
.yc1{bottom:613.446667pt;}
.y28{bottom:617.349333pt;}
.y1d1{bottom:619.106667pt;}
.y18a{bottom:621.461947pt;}
.y17d{bottom:621.494667pt;}
.y5c{bottom:625.164000pt;}
.y8c{bottom:627.670667pt;}
.yc0{bottom:628.057333pt;}
.y114{bottom:629.937333pt;}
.y113{bottom:629.964000pt;}
.yfc{bottom:631.480000pt;}
.y27{bottom:634.644000pt;}
.y189{bottom:638.576107pt;}
.y207{bottom:640.506667pt;}
.y112{bottom:640.565333pt;}
.y5b{bottom:641.901333pt;}
.ybf{bottom:642.669333pt;}
.y1d0{bottom:642.698667pt;}
.y8b{bottom:644.408000pt;}
.yfb{bottom:646.092000pt;}
.y17c{bottom:651.330667pt;}
.y26{bottom:651.940000pt;}
.y188{bottom:655.703627pt;}
.y206{bottom:655.848000pt;}
.ybe{bottom:657.281333pt;}
.y5a{bottom:658.638667pt;}
.yfa{bottom:660.704000pt;}
.y8a{bottom:661.145333pt;}
.y111{bottom:665.881333pt;}
.y1cf{bottom:666.289333pt;}
.y17b{bottom:668.426667pt;}
.y25{bottom:669.234667pt;}
.y205{bottom:671.190667pt;}
.ybd{bottom:671.893333pt;}
.y187{bottom:672.737627pt;}
.yf9{bottom:675.314667pt;}
.y59{bottom:675.376000pt;}
.y89{bottom:677.882667pt;}
.y1ce{bottom:681.910667pt;}
.ybc{bottom:686.505333pt;}
.y24{bottom:686.530667pt;}
.y204{bottom:686.533333pt;}
.yf8{bottom:689.926667pt;}
.y58{bottom:692.113333pt;}
.y88{bottom:694.620000pt;}
.y1cd{bottom:697.532000pt;}
.ybb{bottom:701.117333pt;}
.y203{bottom:701.876000pt;}
.y23{bottom:703.825333pt;}
.yf7{bottom:704.538667pt;}
.y57{bottom:708.850667pt;}
.y87{bottom:715.341333pt;}
.yba{bottom:715.729333pt;}
.y202{bottom:717.218667pt;}
.y110{bottom:717.990667pt;}
.yf6{bottom:719.150667pt;}
.y22{bottom:721.120000pt;}
.y1cc{bottom:721.124000pt;}
.y185{bottom:721.383947pt;}
.y56{bottom:725.588000pt;}
.y184{bottom:729.938507pt;}
.yb9{bottom:730.341333pt;}
.y201{bottom:732.561333pt;}
.yf5{bottom:733.762667pt;}
.y21{bottom:738.416000pt;}
.y55{bottom:742.324000pt;}
.y1cb{bottom:744.716000pt;}
.yb8{bottom:744.953333pt;}
.y86{bottom:745.229333pt;}
.y200{bottom:747.904000pt;}
.yf4{bottom:754.777333pt;}
.y54{bottom:759.061333pt;}
.yb7{bottom:759.565333pt;}
.y1ca{bottom:760.337333pt;}
.y85{bottom:761.966667pt;}
.y1ff{bottom:763.246667pt;}
.yf3{bottom:769.389333pt;}
.y20{bottom:771.722667pt;}
.yb6{bottom:774.176000pt;}
.y53{bottom:775.798667pt;}
.y1c9{bottom:775.958667pt;}
.y1fe{bottom:778.589333pt;}
.y84{bottom:778.704000pt;}
.yf2{bottom:784.000000pt;}
.y1f{bottom:786.069333pt;}
.y1c8{bottom:791.580000pt;}
.y52{bottom:792.536000pt;}
.y1fd{bottom:793.930667pt;}
.yb4{bottom:795.190667pt;}
.y83{bottom:795.441333pt;}
.y1e{bottom:800.416000pt;}
.yb5{bottom:802.496000pt;}
.yf1{bottom:805.014667pt;}
.y1c7{bottom:807.201333pt;}
.y51{bottom:809.273333pt;}
.yb3{bottom:809.802667pt;}
.y82{bottom:812.178667pt;}
.y1d{bottom:814.761333pt;}
.yb2{bottom:824.414667pt;}
.y1fc{bottom:824.616000pt;}
.y50{bottom:826.010667pt;}
.yea{bottom:826.028000pt;}
.y81{bottom:828.916000pt;}
.y1c{bottom:832.965333pt;}
.yf0{bottom:833.334667pt;}
.y1c6{bottom:838.762667pt;}
.y1fb{bottom:839.958667pt;}
.ye8{bottom:840.640000pt;}
.y4f{bottom:842.748000pt;}
.yb1{bottom:845.428000pt;}
.y80{bottom:845.653333pt;}
.y1b{bottom:847.312000pt;}
.yef{bottom:847.946667pt;}
.ye7{bottom:855.252000pt;}
.y1fa{bottom:855.301333pt;}
.y1c5{bottom:855.500000pt;}
.y4e{bottom:859.485333pt;}
.yee{bottom:862.558667pt;}
.y7f{bottom:866.376000pt;}
.ye6{bottom:869.864000pt;}
.y1f9{bottom:870.644000pt;}
.y1c4{bottom:872.237333pt;}
.yb0{bottom:876.190667pt;}
.y4d{bottom:876.222667pt;}
.ye1{bottom:877.170667pt;}
.ye5{bottom:884.476000pt;}
.y1f8{bottom:885.986667pt;}
.y1a{bottom:886.033333pt;}
.y1c3{bottom:888.974667pt;}
.ye0{bottom:891.781333pt;}
.y4c{bottom:892.960000pt;}
.ye4{bottom:899.088000pt;}
.y7e{bottom:899.260000pt;}
.y1f7{bottom:901.329333pt;}
.yaf{bottom:905.712000pt;}
.yed{bottom:906.393333pt;}
.y4b{bottom:909.697333pt;}
.ye3{bottom:913.700000pt;}
.y7d{bottom:916.010667pt;}
.y1f6{bottom:916.670667pt;}
.yec{bottom:921.005333pt;}
.y19{bottom:921.517333pt;}
.yae{bottom:922.449333pt;}
.y4a{bottom:926.434667pt;}
.ye2{bottom:928.312000pt;}
.y7c{bottom:930.622667pt;}
.y1f5{bottom:932.013333pt;}
.yeb{bottom:935.617333pt;}
.yad{bottom:939.186667pt;}
.ye9{bottom:942.924000pt;}
.y49{bottom:943.172000pt;}
.y7b{bottom:945.234667pt;}
.y18{bottom:946.624000pt;}
.y1f4{bottom:947.356000pt;}
.yac{bottom:955.924000pt;}
.y48{bottom:959.909333pt;}
.y1f3{bottom:962.698667pt;}
.ydf{bottom:963.937333pt;}
.y7a{bottom:966.421333pt;}
.y17{bottom:971.729333pt;}
.yab{bottom:972.661333pt;}
.y47{bottom:976.646667pt;}
.y1f2{bottom:978.041333pt;}
.y46{bottom:993.384000pt;}
.y79{bottom:994.700000pt;}
.y15{bottom:1010.384000pt;}
.y45{bottom:1046.810667pt;}
.ha{height:23.209028pt;}
.h20{height:25.811318pt;}
.h1a{height:26.890973pt;}
.h19{height:26.992306pt;}
.h3{height:27.076941pt;}
.h4{height:27.262909pt;}
.hb{height:30.945242pt;}
.h11{height:31.157778pt;}
.hd{height:33.186336pt;}
.h2{height:33.957757pt;}
.h14{height:34.574438pt;}
.hc{height:34.813542pt;}
.he{height:35.052646pt;}
.h13{height:36.873667pt;}
.hf{height:38.415786pt;}
.h10{height:38.681455pt;}
.h7{height:38.947124pt;}
.h27{height:39.349375pt;}
.h23{height:39.359687pt;}
.h12{height:43.557639pt;}
.h29{height:43.660390pt;}
.h25{height:44.390625pt;}
.h5{height:45.271688pt;}
.h1b{height:48.144306pt;}
.h1c{height:48.330274pt;}
.h1f{height:48.335607pt;}
.h9{height:48.486756pt;}
.h28{height:48.511220pt;}
.h24{height:49.421563pt;}
.h15{height:63.795772pt;}
.h16{height:63.801105pt;}
.h8{height:69.148877pt;}
.h21{height:69.397639pt;}
.h1d{height:69.583607pt;}
.h1e{height:69.588941pt;}
.h6{height:82.003069pt;}
.h26{height:168.800000pt;}
.h22{height:193.697333pt;}
.h17{height:793.701333pt;}
.h18{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:184.307005pt;}
.w6{width:269.086400pt;}
.w7{width:304.533333pt;}
.w5{width:573.619733pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1122.520000pt;}
.w4{width:1122.666667pt;}
.x117{left:-59.556560pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.606197pt;}
.x6c{left:55.712000pt;}
.x88{left:57.188000pt;}
.x71{left:59.441333pt;}
.x79{left:60.601333pt;}
.x74{left:62.484000pt;}
.xc5{left:64.161333pt;}
.xf1{left:65.128000pt;}
.x7b{left:66.165333pt;}
.x8e{left:68.616000pt;}
.x10f{left:69.825333pt;}
.xc8{left:71.653333pt;}
.xe3{left:72.792000pt;}
.x72{left:73.906667pt;}
.x13a{left:76.309333pt;}
.x78{left:81.833333pt;}
.xc6{left:82.913333pt;}
.x77{left:84.272000pt;}
.x76{left:85.329333pt;}
.xc7{left:86.377333pt;}
.x70{left:87.702667pt;}
.xa5{left:89.269333pt;}
.x73{left:90.608000pt;}
.xa7{left:91.534667pt;}
.x6d{left:92.964000pt;}
.xa6{left:95.240000pt;}
.x75{left:97.654667pt;}
.x87{left:99.054667pt;}
.xe4{left:105.058667pt;}
.x116{left:109.852267pt;}
.x119{left:114.289200pt;}
.x11b{left:121.249760pt;}
.x7a{left:124.758667pt;}
.x89{left:129.120000pt;}
.x10e{left:133.908000pt;}
.x8f{left:135.225333pt;}
.x118{left:142.599040pt;}
.x7c{left:160.012000pt;}
.xc4{left:163.992000pt;}
.xa4{left:168.178667pt;}
.xc2{left:178.716000pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x12{left:225.524000pt;}
.x4{left:239.924000pt;}
.x6b{left:241.710667pt;}
.x1c{left:250.204000pt;}
.xb7{left:253.586667pt;}
.x4f{left:256.697333pt;}
.x122{left:258.601333pt;}
.x5b{left:261.468000pt;}
.x113{left:262.937333pt;}
.x7{left:264.594667pt;}
.x5a{left:266.113333pt;}
.xd{left:267.957333pt;}
.x50{left:269.981333pt;}
.x123{left:271.885333pt;}
.x51{left:273.368000pt;}
.x110{left:275.466667pt;}
.x8{left:277.412000pt;}
.x5c{left:278.498667pt;}
.x125{left:280.106667pt;}
.x132{left:285.004000pt;}
.x52{left:286.652000pt;}
.x13{left:287.757333pt;}
.x1d{left:289.086667pt;}
.x18{left:292.236000pt;}
.x27{left:293.534667pt;}
.x1e{left:295.729333pt;}
.xac{left:298.170667pt;}
.xc9{left:299.673333pt;}
.x1f{left:302.502667pt;}
.xbb{left:305.846667pt;}
.x1b{left:307.758667pt;}
.x20{left:309.145333pt;}
.xad{left:312.414667pt;}
.xc3{left:314.168000pt;}
.x53{left:315.932000pt;}
.xbe{left:317.541333pt;}
.x67{left:319.253333pt;}
.xca{left:321.456000pt;}
.x5e{left:325.356000pt;}
.x54{left:329.214667pt;}
.x55{left:332.562667pt;}
.x90{left:335.906667pt;}
.x14{left:336.814667pt;}
.x5f{left:338.638667pt;}
.x19{left:341.038667pt;}
.x32{left:342.549333pt;}
.x56{left:345.846667pt;}
.x33{left:349.190667pt;}
.x15{left:351.078667pt;}
.x12e{left:352.420000pt;}
.x1a{left:353.858667pt;}
.x36{left:356.701333pt;}
.x8a{left:358.657333pt;}
.xb8{left:360.416000pt;}
.xb2{left:361.473333pt;}
.x37{left:363.144000pt;}
.x6e{left:365.298667pt;}
.x38{left:366.321333pt;}
.x12a{left:368.414667pt;}
.xf2{left:370.593333pt;}
.xf3{left:372.653333pt;}
.x137{left:374.522667pt;}
.x131{left:375.526667pt;}
.xa8{left:376.592000pt;}
.x39{left:379.206667pt;}
.x16{left:380.257333pt;}
.x3a{left:382.384000pt;}
.xf4{left:384.289333pt;}
.xae{left:385.276000pt;}
.xcb{left:388.673333pt;}
.x34{left:389.689333pt;}
.x48{left:391.370667pt;}
.xbf{left:393.760000pt;}
.x3b{left:395.269333pt;}
.x49{left:397.942667pt;}
.xaf{left:399.520000pt;}
.x12c{left:400.580000pt;}
.x35{left:402.574667pt;}
.x138{left:404.440000pt;}
.x68{left:406.073333pt;}
.xc0{left:408.224000pt;}
.x25{left:409.909333pt;}
.x4a{left:410.826667pt;}
.x62{left:412.024000pt;}
.x12d{left:413.864000pt;}
.x26{left:416.550667pt;}
.x69{left:420.248000pt;}
.x63{left:425.308000pt;}
.x17{left:426.356000pt;}
.x6a{left:428.798667pt;}
.xe{left:429.766667pt;}
.x5d{left:431.465333pt;}
.x92{left:434.454667pt;}
.x93{left:436.086667pt;}
.x95{left:439.272000pt;}
.x7d{left:440.701333pt;}
.xd4{left:442.042667pt;}
.x7e{left:443.169333pt;}
.xf{left:444.101333pt;}
.xe5{left:446.432000pt;}
.x8b{left:448.812000pt;}
.x3c{left:451.353333pt;}
.x128{left:452.648000pt;}
.x94{left:454.377333pt;}
.xb4{left:456.212000pt;}
.x44{left:458.669333pt;}
.x91{left:461.346667pt;}
.x3d{left:464.238667pt;}
.xa9{left:465.392000pt;}
.x45{left:471.553333pt;}
.x23{left:472.461333pt;}
.x2c{left:473.374667pt;}
.x46{left:474.618667pt;}
.x24{left:479.104000pt;}
.x2d{left:480.016000pt;}
.x115{left:482.210667pt;}
.x2e{left:483.320000pt;}
.x47{left:487.504000pt;}
.xcc{left:495.377333pt;}
.x2f{left:496.604000pt;}
.xd5{left:498.729333pt;}
.x30{left:499.908000pt;}
.xb5{left:502.004000pt;}
.xe6{left:505.456000pt;}
.xf6{left:507.269333pt;}
.x12b{left:508.365333pt;}
.xf5{left:509.594667pt;}
.x111{left:510.809333pt;}
.x31{left:513.192000pt;}
.x139{left:515.552000pt;}
.x96{left:516.557333pt;}
.x10{left:519.290667pt;}
.x80{left:520.880000pt;}
.x81{left:522.074667pt;}
.x97{left:523.384000pt;}
.x7f{left:526.157333pt;}
.x11d{left:527.145333pt;}
.x21{left:528.216000pt;}
.x98{left:531.860000pt;}
.x11{left:533.626667pt;}
.x22{left:534.858667pt;}
.xc1{left:537.765333pt;}
.x4d{left:544.204000pt;}
.x64{left:545.828000pt;}
.x11e{left:547.048000pt;}
.x129{left:548.342667pt;}
.x28{left:549.957333pt;}
.xb6{left:553.225333pt;}
.xf8{left:554.201333pt;}
.xe7{left:555.648000pt;}
.x11f{left:556.556000pt;}
.x4e{left:557.488000pt;}
.x65{left:558.978667pt;}
.xd7{left:560.417333pt;}
.xf7{left:561.584000pt;}
.x29{left:563.241333pt;}
.xcd{left:564.550667pt;}
.xfa{left:566.104000pt;}
.xd6{left:567.136000pt;}
.xf9{left:568.428000pt;}
.x2a{left:569.750667pt;}
.xbc{left:573.865333pt;}
.x120{left:576.369333pt;}
.x126{left:577.293333pt;}
.x127{left:580.608000pt;}
.x2b{left:583.033333pt;}
.x112{left:586.217333pt;}
.x11a{left:588.435600pt;}
.x121{left:589.652000pt;}
.x135{left:590.805333pt;}
.x82{left:592.570667pt;}
.x83{left:594.232000pt;}
.x84{left:596.545333pt;}
.x9b{left:597.496000pt;}
.x8c{left:599.217333pt;}
.x9e{left:600.216000pt;}
.x9d{left:601.525333pt;}
.x9f{left:603.856000pt;}
.x99{left:606.521333pt;}
.x57{left:608.977333pt;}
.x9a{left:610.336000pt;}
.xa0{left:612.332000pt;}
.xd8{left:614.153333pt;}
.x9c{left:615.321333pt;}
.xfb{left:616.612000pt;}
.xee{left:620.489333pt;}
.x58{left:622.261333pt;}
.x136{left:623.881333pt;}
.x42{left:624.973333pt;}
.xfc{left:627.393333pt;}
.x9{left:630.621333pt;}
.x43{left:637.857333pt;}
.x59{left:638.932000pt;}
.xa{left:643.438667pt;}
.xaa{left:646.292000pt;}
.xbd{left:648.174667pt;}
.x130{left:656.542667pt;}
.x3e{left:660.326667pt;}
.x124{left:661.734667pt;}
.xb9{left:663.250667pt;}
.x3f{left:666.769333pt;}
.xb3{left:668.617333pt;}
.x40{left:669.953333pt;}
.x85{left:672.452000pt;}
.x66{left:673.693333pt;}
.x114{left:674.833333pt;}
.xa1{left:677.322667pt;}
.x8d{left:679.689333pt;}
.xa2{left:680.688000pt;}
.xb0{left:681.933333pt;}
.x41{left:682.837333pt;}
.xa3{left:684.328000pt;}
.xb{left:686.361333pt;}
.x6{left:688.494667pt;}
.x6f{left:690.473333pt;}
.x86{left:692.804000pt;}
.xab{left:697.513333pt;}
.xfd{left:703.164000pt;}
.xfe{left:705.224000pt;}
.xd9{left:706.912000pt;}
.xff{left:708.980000pt;}
.x133{left:710.172000pt;}
.x60{left:711.544000pt;}
.xba{left:714.472000pt;}
.x100{left:716.861333pt;}
.x11c{left:718.108000pt;}
.xce{left:721.245333pt;}
.x134{left:723.454667pt;}
.x61{left:724.828000pt;}
.x12f{left:726.178667pt;}
.x4b{left:728.301333pt;}
.xb1{left:739.741333pt;}
.x4c{left:741.186667pt;}
.xc{left:744.164000pt;}
.xe8{left:769.113333pt;}
.x102{left:771.582667pt;}
.xda{left:772.693333pt;}
.xdb{left:774.613333pt;}
.xcf{left:775.762667pt;}
.xe9{left:779.002667pt;}
.xd0{left:781.518667pt;}
.x101{left:783.330667pt;}
.xd1{left:827.948000pt;}
.xeb{left:829.129333pt;}
.xdd{left:831.300000pt;}
.xde{left:832.229333pt;}
.x104{left:833.248000pt;}
.xdc{left:835.405333pt;}
.xea{left:838.028000pt;}
.x105{left:839.841333pt;}
.x103{left:842.165333pt;}
.xe1{left:886.493333pt;}
.xec{left:888.218667pt;}
.x109{left:889.250667pt;}
.x108{left:890.269333pt;}
.x10a{left:892.082667pt;}
.xe0{left:892.989333pt;}
.x106{left:894.156000pt;}
.xd2{left:896.094667pt;}
.xd3{left:897.121333pt;}
.x10b{left:898.674667pt;}
.xdf{left:899.706667pt;}
.x107{left:901.000000pt;}
.xed{left:945.616000pt;}
.x10c{left:949.184000pt;}
.xef{left:953.061333pt;}
.x10d{left:959.965333pt;}
.xe2{left:961.448000pt;}
.xf0{left:969.905333pt;}
}




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