
    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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e637747601e156a8c8ab0296.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ea2b47f98b6cc7438c0b66fe.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c9b6baf17096da5bddb71cbe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_95c88fb015410caeceb87c5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_072b9af36f6212e8fdf46acf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_8417d00ed64b3d6c3f5c3132.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_47409e2e71c1c9333a3592ac.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.492000;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_e52ab29ff45804d8e332cf00.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.698000;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_420a39b89d7b03429d91a737.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c8f972287444f66ffcb33101.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_190da0f44a425a2421cf0b9d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.012207;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_15ae26ce112dbf5268cf5459.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_bd83091b614d091f9850138f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909180;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:fff;src:url('chunks/assets/font_5b0213c1f1c07c9f7977f641.woff2')format("woff");}.fff{font-family:fff;line-height:0.744141;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m3{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);}
.m2{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);}
.m16{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);}
.m15{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);}
.m6{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);}
.m1f{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m1{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);}
.md{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);}
.m21{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);}
.m1e{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m27{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);}
.ma{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);}
.mc{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);}
.m25{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);}
.m12{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);}
.m1c{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);}
.m20{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);}
.m1b{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);}
.me{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);}
.m19{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);}
.mb{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);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.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);}
.m11{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);}
.m14{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);}
.mf{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);}
.m26{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);}
.m18{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);}
.m28{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m9{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);}
.m4{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);}
.m7{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:-19.530000px;}
.v6{vertical-align:-11.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.880000px;}
.v7{vertical-align:16.014600px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:29.586600px;}
.v4{vertical-align:31.230300px;}
.ls53{letter-spacing:-0.842400px;}
.ls4f{letter-spacing:-0.804492px;}
.ls45{letter-spacing:-0.766584px;}
.ls51{letter-spacing:-0.741312px;}
.ls48{letter-spacing:-0.732888px;}
.ls50{letter-spacing:-0.711828px;}
.ls4e{letter-spacing:-0.682344px;}
.ls56{letter-spacing:-0.644436px;}
.ls54{letter-spacing:-0.627588px;}
.ls4a{letter-spacing:-0.593892px;}
.ls4d{letter-spacing:-0.589680px;}
.ls49{letter-spacing:-0.585468px;}
.ls52{letter-spacing:-0.581256px;}
.ls4c{letter-spacing:-0.577044px;}
.ls4b{letter-spacing:-0.551772px;}
.ls46{letter-spacing:-0.543348px;}
.ls47{letter-spacing:-0.539136px;}
.ls41{letter-spacing:-0.138996px;}
.ls5a{letter-spacing:-0.108000px;}
.ls3f{letter-spacing:-0.101088px;}
.ls3c{letter-spacing:-0.090972px;}
.ls40{letter-spacing:-0.075816px;}
.ls3b{letter-spacing:-0.052668px;}
.ls3e{letter-spacing:-0.050544px;}
.ls58{letter-spacing:-0.037800px;}
.ls59{letter-spacing:-0.021600px;}
.ls57{letter-spacing:-0.016200px;}
.ls3d{letter-spacing:-0.005400px;}
.lsb{letter-spacing:0.000000px;}
.ls6d{letter-spacing:0.000088px;}
.ls6c{letter-spacing:0.000676px;}
.ls5d{letter-spacing:0.000800px;}
.ls36{letter-spacing:0.000929px;}
.ls33{letter-spacing:0.000963px;}
.ls60{letter-spacing:0.001036px;}
.lse{letter-spacing:0.001077px;}
.ls5f{letter-spacing:0.001155px;}
.ls5b{letter-spacing:0.001584px;}
.ls8{letter-spacing:0.002074px;}
.ls6f{letter-spacing:0.002220px;}
.ls5e{letter-spacing:0.002544px;}
.ls0{letter-spacing:0.002725px;}
.ls5c{letter-spacing:0.002841px;}
.ls1b{letter-spacing:0.003384px;}
.ls61{letter-spacing:0.003544px;}
.ls70{letter-spacing:0.004267px;}
.ls5{letter-spacing:0.004766px;}
.ls2e{letter-spacing:0.005400px;}
.ls32{letter-spacing:0.010800px;}
.ls25{letter-spacing:0.012636px;}
.ls22{letter-spacing:0.016200px;}
.ls20{letter-spacing:0.021600px;}
.ls23{letter-spacing:0.027000px;}
.ls2c{letter-spacing:0.032400px;}
.ls2a{letter-spacing:0.043200px;}
.ls21{letter-spacing:0.048600px;}
.ls2b{letter-spacing:0.054000px;}
.ls29{letter-spacing:0.059400px;}
.ls2d{letter-spacing:0.075600px;}
.ls44{letter-spacing:0.088452px;}
.ls42{letter-spacing:0.105300px;}
.ls43{letter-spacing:0.164268px;}
.ls1f{letter-spacing:0.172368px;}
.ls26{letter-spacing:0.181116px;}
.ls1e{letter-spacing:0.181944px;}
.ls3a{letter-spacing:0.531432px;}
.ls17{letter-spacing:0.578693px;}
.lsf{letter-spacing:0.717483px;}
.ls1{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls30{letter-spacing:8.979984px;}
.ls27{letter-spacing:10.420488px;}
.ls37{letter-spacing:11.029073px;}
.ls34{letter-spacing:11.427476px;}
.ls35{letter-spacing:11.432576px;}
.ls38{letter-spacing:11.557152px;}
.ls39{letter-spacing:11.562072px;}
.lsa{letter-spacing:11.954850px;}
.ls15{letter-spacing:12.684679px;}
.ls16{letter-spacing:12.690079px;}
.ls71{letter-spacing:13.222966px;}
.ls64{letter-spacing:13.263700px;}
.ls69{letter-spacing:13.365509px;}
.ls6a{letter-spacing:13.385694px;}
.ls1a{letter-spacing:13.389383px;}
.ls19{letter-spacing:13.395083px;}
.ls1c{letter-spacing:13.414950px;}
.ls63{letter-spacing:13.448400px;}
.ls62{letter-spacing:13.454400px;}
.ls67{letter-spacing:13.463487px;}
.ls72{letter-spacing:13.678449px;}
.ls6b{letter-spacing:13.681631px;}
.ls10{letter-spacing:14.034649px;}
.ls13{letter-spacing:14.569960px;}
.ls14{letter-spacing:14.575360px;}
.lsc{letter-spacing:14.705885px;}
.ls12{letter-spacing:14.824349px;}
.ls6{letter-spacing:14.943634px;}
.ls4{letter-spacing:14.944200px;}
.ls3{letter-spacing:14.944766px;}
.ls65{letter-spacing:14.956282px;}
.lsd{letter-spacing:14.963562px;}
.ls66{letter-spacing:14.997459px;}
.ls18{letter-spacing:15.385103px;}
.ls1d{letter-spacing:17.155597px;}
.ls6e{letter-spacing:18.132753px;}
.ls68{letter-spacing:18.479812px;}
.ls11{letter-spacing:18.935729px;}
.ls7{letter-spacing:70.236600px;}
.ls9{letter-spacing:72.353510px;}
.ls28{letter-spacing:337.229568px;}
.ls24{letter-spacing:368.908020px;}
.ls31{letter-spacing:428.672088px;}
.ls2f{letter-spacing:456.029028px;}
.ls55{letter-spacing:607.951656px;}
.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;}
}
.ws97{word-spacing:-42.120000px;}
.ws7e{word-spacing:-38.551126px;}
.ws4{word-spacing:-14.943900px;}
.ws3{word-spacing:-14.355754px;}
.wsf5{word-spacing:-13.449600px;}
.ws73{word-spacing:-12.777120px;}
.ws94{word-spacing:-12.151944px;}
.ws1a{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wsa0{word-spacing:-11.028672px;}
.ws96{word-spacing:-10.530000px;}
.ws98{word-spacing:-6.030000px;}
.wsb5{word-spacing:-3.121200px;}
.wse5{word-spacing:-3.108331px;}
.wsd6{word-spacing:-3.048556px;}
.ws16{word-spacing:-2.929004px;}
.wsd8{word-spacing:-2.749678px;}
.wsb9{word-spacing:-2.743200px;}
.wsb8{word-spacing:-2.732400px;}
.ws22{word-spacing:-2.630126px;}
.ws12a{word-spacing:-2.474726px;}
.ws26{word-spacing:-2.450800px;}
.ws11e{word-spacing:-2.420928px;}
.wse7{word-spacing:-2.331248px;}
.wse0{word-spacing:-2.271473px;}
.wse6{word-spacing:-2.151922px;}
.wsb7{word-spacing:-2.035800px;}
.wsb6{word-spacing:-2.025000px;}
.wsba{word-spacing:-1.998000px;}
.wsbb{word-spacing:-1.987200px;}
.wsbc{word-spacing:-1.981800px;}
.ws6e{word-spacing:-1.865003px;}
.wse1{word-spacing:-1.793268px;}
.wsed{word-spacing:-1.775347px;}
.ws5e{word-spacing:-1.673717px;}
.ws11b{word-spacing:-1.613952px;}
.wsee{word-spacing:-1.398758px;}
.wsd0{word-spacing:-1.312200px;}
.wsd1{word-spacing:-1.274400px;}
.ws9a{word-spacing:-1.195515px;}
.wse4{word-spacing:-1.195512px;}
.wsef{word-spacing:-1.183565px;}
.ws3a{word-spacing:-1.135736px;}
.ws49{word-spacing:-1.016185px;}
.wsdc{word-spacing:-0.956410px;}
.ws63{word-spacing:-0.896634px;}
.ws5d{word-spacing:-0.836858px;}
.wse2{word-spacing:-0.777083px;}
.ws55{word-spacing:-0.717307px;}
.ws131{word-spacing:-0.645581px;}
.ws6d{word-spacing:-0.573847px;}
.ws38{word-spacing:-0.537980px;}
.wsf0{word-spacing:-0.484186px;}
.wse8{word-spacing:-0.478205px;}
.ws28{word-spacing:-0.358654px;}
.ws10b{word-spacing:-0.322790px;}
.ws2d{word-spacing:-0.298878px;}
.wsa5{word-spacing:-0.272916px;}
.wsaf{word-spacing:-0.269568px;}
.ws117{word-spacing:-0.268992px;}
.wsbd{word-spacing:-0.265356px;}
.wsa6{word-spacing:-0.263340px;}
.wsc2{word-spacing:-0.256932px;}
.wsb3{word-spacing:-0.252720px;}
.ws1d{word-spacing:-0.239102px;}
.wsc3{word-spacing:-0.231660px;}
.wsc8{word-spacing:-0.227448px;}
.wsbf{word-spacing:-0.223236px;}
.wsc4{word-spacing:-0.219024px;}
.ws72{word-spacing:-0.215194px;}
.wsc1{word-spacing:-0.214812px;}
.ws74{word-spacing:-0.204434px;}
.wsb2{word-spacing:-0.193752px;}
.wscc{word-spacing:-0.181116px;}
.ws47{word-spacing:-0.179327px;}
.wsb4{word-spacing:-0.176904px;}
.wscd{word-spacing:-0.164268px;}
.wsfd{word-spacing:-0.161395px;}
.wsc5{word-spacing:-0.126360px;}
.ws1c{word-spacing:-0.119551px;}
.wsf1{word-spacing:-0.107597px;}
.ws71{word-spacing:-0.095641px;}
.wsa2{word-spacing:-0.088229px;}
.ws5{word-spacing:-0.059776px;}
.wsd{word-spacing:-0.053798px;}
.ws1b{word-spacing:-0.047821px;}
.ws95{word-spacing:-0.042120px;}
.wsac{word-spacing:-0.037908px;}
.wsae{word-spacing:-0.012636px;}
.wsa{word-spacing:-0.003448px;}
.ws9{word-spacing:-0.002333px;}
.ws7{word-spacing:-0.002308px;}
.wsb{word-spacing:-0.000516px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.000608px;}
.ws8{word-spacing:0.000934px;}
.ws6{word-spacing:0.001225px;}
.wsad{word-spacing:0.012636px;}
.wscb{word-spacing:0.033696px;}
.wsb1{word-spacing:0.050544px;}
.wse{word-spacing:0.053798px;}
.ws3b{word-spacing:0.059776px;}
.ws8d{word-spacing:0.095641px;}
.ws9c{word-spacing:0.107597px;}
.ws24{word-spacing:0.119551px;}
.wsa8{word-spacing:0.129600px;}
.wsa4{word-spacing:0.143462px;}
.wsab{word-spacing:0.151200px;}
.wsa7{word-spacing:0.156600px;}
.wsf2{word-spacing:0.161395px;}
.wsaa{word-spacing:0.162000px;}
.wsd5{word-spacing:0.178200px;}
.ws18{word-spacing:0.179327px;}
.wsa9{word-spacing:0.183600px;}
.wsa3{word-spacing:0.191282px;}
.ws10{word-spacing:0.215194px;}
.ws14{word-spacing:0.239102px;}
.ws111{word-spacing:0.268992px;}
.ws4b{word-spacing:0.298878px;}
.ws103{word-spacing:0.322790px;}
.ws4a{word-spacing:0.358654px;}
.ws137{word-spacing:0.430387px;}
.wse3{word-spacing:0.478205px;}
.ws4c{word-spacing:0.537980px;}
.wsfb{word-spacing:0.537984px;}
.ws9e{word-spacing:0.551040px;}
.ws67{word-spacing:0.582396px;}
.ws65{word-spacing:0.584876px;}
.ws69{word-spacing:0.585861px;}
.ws6a{word-spacing:0.589265px;}
.ws6b{word-spacing:0.592730px;}
.ws6c{word-spacing:0.595417px;}
.ws70{word-spacing:0.596584px;}
.ws87{word-spacing:0.611788px;}
.ws78{word-spacing:0.612463px;}
.ws7d{word-spacing:0.612691px;}
.ws77{word-spacing:0.614971px;}
.ws7b{word-spacing:0.616658px;}
.ws81{word-spacing:0.618318px;}
.ws79{word-spacing:0.619020px;}
.ws88{word-spacing:0.619585px;}
.ws8c{word-spacing:0.621099px;}
.ws66{word-spacing:0.625415px;}
.ws89{word-spacing:0.634661px;}
.ws75{word-spacing:0.636120px;}
.ws8b{word-spacing:0.636731px;}
.ws84{word-spacing:0.636941px;}
.ws86{word-spacing:0.639741px;}
.ws76{word-spacing:0.640361px;}
.ws7a{word-spacing:0.641492px;}
.ws83{word-spacing:0.641747px;}
.ws80{word-spacing:0.642021px;}
.ws7f{word-spacing:0.642458px;}
.ws7c{word-spacing:0.642641px;}
.ws85{word-spacing:0.643015px;}
.ws82{word-spacing:0.643671px;}
.ws107{word-spacing:0.645581px;}
.ws8a{word-spacing:0.660379px;}
.ws56{word-spacing:0.717307px;}
.wsde{word-spacing:0.777083px;}
.ws51{word-spacing:0.836858px;}
.wsdf{word-spacing:0.896634px;}
.ws134{word-spacing:1.075968px;}
.ws10e{word-spacing:1.129766px;}
.ws113{word-spacing:1.183565px;}
.wsda{word-spacing:1.434614px;}
.wsfc{word-spacing:1.452557px;}
.ws110{word-spacing:1.506355px;}
.ws58{word-spacing:1.554166px;}
.ws112{word-spacing:1.560154px;}
.ws5f{word-spacing:1.613941px;}
.wsf3{word-spacing:1.613952px;}
.ws6f{word-spacing:1.625900px;}
.ws5b{word-spacing:1.733492px;}
.ws8f{word-spacing:1.972595px;}
.wsfa{word-spacing:1.990541px;}
.ws52{word-spacing:2.151922px;}
.ws13{word-spacing:2.211697px;}
.ws4d{word-spacing:2.271473px;}
.ws11{word-spacing:2.331248px;}
.ws37{word-spacing:2.391024px;}
.wsec{word-spacing:2.450800px;}
.ws116{word-spacing:2.528525px;}
.ws5c{word-spacing:2.570351px;}
.ws100{word-spacing:2.582323px;}
.ws5a{word-spacing:2.630126px;}
.ws9b{word-spacing:2.677954px;}
.wsdb{word-spacing:2.689902px;}
.ws59{word-spacing:2.869229px;}
.ws68{word-spacing:2.905114px;}
.ws91{word-spacing:2.929004px;}
.ws102{word-spacing:2.958912px;}
.ws57{word-spacing:2.988780px;}
.ws133{word-spacing:3.120307px;}
.ws1e{word-spacing:3.168107px;}
.ws104{word-spacing:3.225811px;}
.ws118{word-spacing:3.226714px;}
.ws36{word-spacing:3.227882px;}
.ws115{word-spacing:3.227904px;}
.ws125{word-spacing:3.335501px;}
.ws15{word-spacing:3.347434px;}
.ws132{word-spacing:3.443098px;}
.ws29{word-spacing:3.586536px;}
.wsd9{word-spacing:3.646312px;}
.ws27{word-spacing:3.706087px;}
.ws12c{word-spacing:3.712090px;}
.ws17{word-spacing:3.885414px;}
.wsd7{word-spacing:3.945190px;}
.ws11c{word-spacing:3.981082px;}
.ws64{word-spacing:4.004965px;}
.ws126{word-spacing:4.142477px;}
.ws11f{word-spacing:4.196275px;}
.ws43{word-spacing:4.244068px;}
.ws44{word-spacing:4.303843px;}
.ws128{word-spacing:4.303872px;}
.ws12{word-spacing:4.363619px;}
.ws33{word-spacing:4.423394px;}
.ws101{word-spacing:4.465267px;}
.ws92{word-spacing:4.483170px;}
.wscf{word-spacing:4.487400px;}
.wsce{word-spacing:4.514400px;}
.ws11a{word-spacing:4.519066px;}
.wsdd{word-spacing:4.542946px;}
.ws8e{word-spacing:4.602721px;}
.ws23{word-spacing:4.782048px;}
.ws20{word-spacing:4.961375px;}
.ws34{word-spacing:5.080926px;}
.ws35{word-spacing:5.140702px;}
.ws1f{word-spacing:5.200477px;}
.ws3d{word-spacing:5.439580px;}
.wsf9{word-spacing:5.487437px;}
.ws61{word-spacing:5.678682px;}
.wseb{word-spacing:5.738458px;}
.ws135{word-spacing:5.810227px;}
.ws93{word-spacing:5.858009px;}
.wsff{word-spacing:6.025421px;}
.ws4e{word-spacing:6.037336px;}
.ws2a{word-spacing:6.097111px;}
.ws50{word-spacing:6.276438px;}
.ws54{word-spacing:6.395989px;}
.ws42{word-spacing:6.455765px;}
.wsfe{word-spacing:6.455808px;}
.wsc{word-spacing:6.580615px;}
.ws3f{word-spacing:6.694867px;}
.ws90{word-spacing:6.814418px;}
.ws25{word-spacing:6.993745px;}
.ws108{word-spacing:6.993792px;}
.ws21{word-spacing:7.232848px;}
.wse9{word-spacing:7.292623px;}
.ws12f{word-spacing:7.693171px;}
.ws62{word-spacing:7.711052px;}
.ws46{word-spacing:7.770828px;}
.ws2c{word-spacing:8.009930px;}
.ws2b{word-spacing:8.069706px;}
.ws32{word-spacing:8.368584px;}
.ws2e{word-spacing:8.428360px;}
.ws2f{word-spacing:8.488135px;}
.wsf4{word-spacing:8.769139px;}
.wsf6{word-spacing:8.822938px;}
.ws31{word-spacing:8.846789px;}
.ws60{word-spacing:8.906564px;}
.ws12b{word-spacing:8.984333px;}
.ws30{word-spacing:9.205442px;}
.ws48{word-spacing:9.922750px;}
.wsd3{word-spacing:10.281600px;}
.wsd2{word-spacing:10.297800px;}
.wsd4{word-spacing:10.368000px;}
.ws121{word-spacing:10.598285px;}
.wsf8{word-spacing:10.867277px;}
.wsf7{word-spacing:10.921075px;}
.ws53{word-spacing:10.998710px;}
.ws45{word-spacing:11.178037px;}
.ws4f{word-spacing:11.835569px;}
.ws19{word-spacing:11.907959px;}
.ws10c{word-spacing:13.180608px;}
.ws129{word-spacing:13.288205px;}
.ws12e{word-spacing:13.342003px;}
.ws122{word-spacing:13.389514px;}
.ws119{word-spacing:13.391645px;}
.ws10a{word-spacing:13.391866px;}
.ws109{word-spacing:13.395802px;}
.ws130{word-spacing:13.503398px;}
.ws127{word-spacing:13.610995px;}
.wsea{word-spacing:14.047266px;}
.ws3e{word-spacing:14.525471px;}
.ws10f{word-spacing:14.579366px;}
.ws39{word-spacing:14.884124px;}
.ws120{word-spacing:16.516109px;}
.ws10d{word-spacing:16.618186px;}
.ws106{word-spacing:16.619030px;}
.ws105{word-spacing:16.623706px;}
.ws123{word-spacing:16.785101px;}
.ws124{word-spacing:16.892698px;}
.ws41{word-spacing:17.394700px;}
.ws40{word-spacing:17.454475px;}
.ws3c{word-spacing:18.470660px;}
.ws136{word-spacing:19.206029px;}
.ws114{word-spacing:20.658586px;}
.ws12d{word-spacing:28.136563px;}
.ws11d{word-spacing:28.997338px;}
.wsf{word-spacing:46.324500px;}
.wsa1{word-spacing:174.605935px;}
.ws9f{word-spacing:196.663279px;}
.wsb0{word-spacing:213.889572px;}
.ws9d{word-spacing:218.720623px;}
.ws99{word-spacing:238.794958px;}
.wsc0{word-spacing:364.813956px;}
.wsca{word-spacing:364.818168px;}
.wsc9{word-spacing:642.532176px;}
.wsc7{word-spacing:703.703052px;}
.wsbe{word-spacing:783.642600px;}
.wsc6{word-spacing:796.316508px;}
._64{margin-left:-455.814216px;}
._5b{margin-left:-443.161368px;}
._66{margin-left:-363.600900px;}
._68{margin-left:-302.055156px;}
._6c{margin-left:-269.157312px;}
._6e{margin-left:-267.746026px;}
._6a{margin-left:-179.840542px;}
._62{margin-left:-159.403918px;}
._5f{margin-left:-138.883054px;}
._65{margin-left:-96.480072px;}
._5c{margin-left:-83.877768px;}
._3{margin-left:-7.742779px;}
._2{margin-left:-6.656923px;}
._5{margin-left:-5.286322px;}
._4{margin-left:-3.328438px;}
._0{margin-left:-1.936742px;}
._2c{width:1.210464px;}
._1{width:2.994470px;}
._88{width:12.172517px;}
._18{width:13.722240px;}
._7{width:15.709133px;}
._6{width:17.121970px;}
._a{width:18.195706px;}
._10{width:19.363169px;}
._12{width:20.945383px;}
._13{width:22.140895px;}
._83{width:23.157080px;}
._8{width:24.292817px;}
._b{width:25.703508px;}
._d{width:27.223967px;}
._c{width:29.170493px;}
._19{width:30.629030px;}
._1c{width:31.764767px;}
._9{width:33.020054px;}
._11{width:34.394893px;}
._1b{width:36.080539px;}
._14{width:37.299974px;}
._89{width:40.510195px;}
._15{width:43.217759px;}
._16{width:44.413271px;}
._17{width:45.668558px;}
._1a{width:51.944996px;}
._69{width:57.241080px;}
._82{width:61.716449px;}
._50{width:64.585188px;}
._30{width:72.108861px;}
._6d{width:75.013322px;}
._53{width:78.337368px;}
._87{width:88.767360px;}
._67{width:90.681962px;}
._70{width:94.658285px;}
._6f{width:96.487430px;}
._61{width:106.733894px;}
._58{width:109.123718px;}
._7b{width:113.198289px;}
._2f{width:118.313441px;}
._57{width:120.175229px;}
._7a{width:162.062300px;}
._7c{width:175.841146px;}
._59{width:178.878650px;}
._85{width:180.762624px;}
._60{width:198.819036px;}
._43{width:208.829249px;}
._55{width:218.521152px;}
._49{width:224.789322px;}
._4d{width:230.004249px;}
._37{width:234.383489px;}
._7f{width:240.567712px;}
._31{width:244.119153px;}
._3e{width:247.160609px;}
._54{width:248.924988px;}
._35{width:252.544382px;}
._34{width:259.937729px;}
._75{width:261.796464px;}
._4c{width:266.275181px;}
._42{width:270.660797px;}
._48{width:272.714849px;}
._45{width:276.962719px;}
._86{width:281.250972px;}
._3a{width:285.491969px;}
._36{width:295.918099px;}
._5d{width:297.935042px;}
._4a{width:300.895257px;}
._32{width:305.807770px;}
._3d{width:308.695219px;}
._4e{width:311.239884px;}
._44{width:312.754704px;}
._51{width:315.167112px;}
._4b{width:319.293407px;}
._33{width:321.472339px;}
._29{width:323.968585px;}
._46{width:330.434937px;}
._22{width:332.151322px;}
._47{width:333.556894px;}
._1d{width:338.320377px;}
._3b{width:339.684231px;}
._73{width:341.730127px;}
._78{width:342.781885px;}
._40{width:344.164504px;}
._39{width:347.026579px;}
._20{width:348.177865px;}
._23{width:356.360602px;}
._71{width:365.920577px;}
._1e{width:367.566993px;}
._2b{width:372.387145px;}
._38{width:377.201951px;}
._28{width:378.929099px;}
._2a{width:380.304381px;}
._3c{width:387.219377px;}
._79{width:403.326820px;}
._27{width:410.105357px;}
._80{width:426.986065px;}
._63{width:429.417740px;}
._3f{width:451.594529px;}
._41{width:465.346780px;}
._76{width:483.809011px;}
._52{width:485.466696px;}
._2e{width:516.903726px;}
._74{width:525.376345px;}
._7d{width:530.147208px;}
._5a{width:537.320628px;}
._81{width:540.027263px;}
._72{width:549.455991px;}
._6b{width:551.107476px;}
._2d{width:554.080481px;}
._7e{width:562.084607px;}
._56{width:580.906639px;}
._1f{width:583.174063px;}
._21{width:625.110509px;}
._77{width:667.363772px;}
._5e{width:700.355445px;}
._26{width:714.028504px;}
._25{width:725.406866px;}
._24{width:749.858239px;}
._e{width:954.162932px;}
._84{width:2049.255300px;}
._4f{width:2059.299648px;}
._f{width:2073.165300px;}
.fc4{color:transparent;}
.fc3{color:rgb(31,77,120);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fs11{font-size:24.120000px;}
.fs15{font-size:34.311096px;}
.fs4{font-size:41.842800px;}
.fs10{font-size:42.120000px;}
.fs13{font-size:44.114688px;}
.fs3{font-size:45.429600px;}
.fs12{font-size:45.728640px;}
.fs14{font-size:45.967560px;}
.fs6{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs8{font-size:48.418560px;}
.fsa{font-size:49.829400px;}
.fs9{font-size:50.452200px;}
.fsb{font-size:51.108480px;}
.fsc{font-size:53.255100px;}
.fs5{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:62.286600px;}
.fsf{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y111{bottom:-825.604050px;}
.y141{bottom:-770.975400px;}
.y140{bottom:-751.535400px;}
.y13f{bottom:-732.004950px;}
.y13e{bottom:-712.474500px;}
.y13d{bottom:-693.034500px;}
.y13c{bottom:-673.504050px;}
.y13b{bottom:-653.433969px;}
.y13a{bottom:-639.214257px;}
.y139{bottom:-625.084176px;}
.y138{bottom:-610.953969px;}
.y137{bottom:-596.734257px;}
.y136{bottom:-582.604050px;}
.y135{bottom:-568.384554px;}
.y134{bottom:-553.534095px;}
.y133{bottom:-539.314383px;}
.y132{bottom:-525.184176px;}
.y131{bottom:-511.053969px;}
.y130{bottom:-496.834257px;}
.y12f{bottom:-482.704050px;}
.y12e{bottom:-468.484185px;}
.y12d{bottom:-453.633726px;}
.y12c{bottom:-439.414014px;}
.y12b{bottom:-425.283807px;}
.y12a{bottom:-411.064095px;}
.y129{bottom:-396.933888px;}
.y128{bottom:-382.803681px;}
.y127{bottom:-368.583969px;}
.y126{bottom:-354.453762px;}
.y125{bottom:-340.234050px;}
.y124{bottom:-326.104050px;}
.y123{bottom:-311.074050px;}
.y121{bottom:-303.604050px;}
.y122{bottom:-296.224050px;}
.y120{bottom:-270.575400px;}
.y11f{bottom:-233.224950px;}
.y11e{bottom:-213.694500px;}
.y11d{bottom:-194.164050px;}
.y11c{bottom:-174.724050px;}
.y11b{bottom:-154.653969px;}
.y11a{bottom:-140.434257px;}
.y119{bottom:-126.304050px;}
.y118{bottom:-112.084050px;}
.y117{bottom:-97.144050px;}
.y115{bottom:-89.674050px;}
.y116{bottom:-82.204050px;}
.y114{bottom:-56.644050px;}
.y113{bottom:-19.114050px;}
.y0{bottom:0.000000px;}
.y112{bottom:5.275950px;}
.y2{bottom:14.814771px;}
.y37{bottom:63.780000px;}
.y36{bottom:108.612000px;}
.ybb{bottom:113.349000px;}
.y19d{bottom:114.156000px;}
.y90{bottom:119.058000px;}
.y16c{bottom:121.683000px;}
.y66{bottom:122.898000px;}
.y35{bottom:128.875500px;}
.y1ec{bottom:132.531000px;}
.yba{bottom:133.612500px;}
.y19c{bottom:134.419500px;}
.y16b{bottom:135.879000px;}
.y8f{bottom:139.321500px;}
.y65{bottom:143.161500px;}
.y1bc{bottom:147.525000px;}
.y21e{bottom:147.691500px;}
.y34{bottom:149.139000px;}
.y16a{bottom:150.076500px;}
.y1eb{bottom:151.897500px;}
.yb9{bottom:153.877500px;}
.y19b{bottom:154.683000px;}
.y8e{bottom:159.585000px;}
.y1bb{bottom:162.723000px;}
.y64{bottom:163.426500px;}
.y169{bottom:164.272500px;}
.y21d{bottom:167.059500px;}
.y33{bottom:169.404000px;}
.y1ea{bottom:171.265500px;}
.yb8{bottom:174.141000px;}
.y19a{bottom:174.948000px;}
.y1ba{bottom:177.921000px;}
.y168{bottom:178.470000px;}
.y8d{bottom:179.850000px;}
.y63{bottom:183.690000px;}
.y21c{bottom:186.427500px;}
.y32{bottom:189.667500px;}
.y1e9{bottom:190.633500px;}
.y1b9{bottom:193.119000px;}
.yb7{bottom:194.404500px;}
.y199{bottom:195.211500px;}
.y167{bottom:198.667800px;}
.y8c{bottom:200.113500px;}
.y62{bottom:203.955000px;}
.y21b{bottom:205.794000px;}
.y1b8{bottom:208.318500px;}
.y31{bottom:209.932500px;}
.y1e8{bottom:210.000000px;}
.y166{bottom:212.207640px;}
.yb6{bottom:214.669500px;}
.y198{bottom:215.476500px;}
.y10e{bottom:218.947500px;}
.y8b{bottom:220.378500px;}
.ydd{bottom:223.089000px;}
.y61{bottom:224.218500px;}
.y21a{bottom:225.162000px;}
.y165{bottom:225.687210px;}
.y1e7{bottom:229.368000px;}
.y30{bottom:230.196000px;}
.yb5{bottom:234.933000px;}
.y197{bottom:235.740000px;}
.ydc{bottom:237.286500px;}
.y10d{bottom:239.212500px;}
.y164{bottom:239.741190px;}
.y8a{bottom:240.642000px;}
.y1b7{bottom:241.449000px;}
.y60{bottom:244.482000px;}
.y219{bottom:244.528500px;}
.y1e6{bottom:248.734500px;}
.y2f{bottom:250.459500px;}
.ydb{bottom:251.482500px;}
.y163{bottom:253.281030px;}
.y196{bottom:256.003500px;}
.y10c{bottom:259.476000px;}
.y89{bottom:260.905500px;}
.y1b6{bottom:261.712500px;}
.y218{bottom:263.896500px;}
.yb4{bottom:264.163500px;}
.y5f{bottom:264.747000px;}
.yda{bottom:265.680000px;}
.y162{bottom:266.760600px;}
.y1e5{bottom:268.102500px;}
.y195{bottom:276.268500px;}
.y10b{bottom:279.741000px;}
.yd9{bottom:279.876000px;}
.y161{bottom:280.813350px;}
.y88{bottom:281.170500px;}
.y110{bottom:281.215950px;}
.y1b5{bottom:281.977500px;}
.y217{bottom:283.264500px;}
.y2e{bottom:283.866000px;}
.y5e{bottom:285.010500px;}
.y1e4{bottom:287.470500px;}
.yd8{bottom:294.073500px;}
.y194{bottom:296.532000px;}
.yb3{bottom:298.983000px;}
.y10a{bottom:300.004500px;}
.y160{bottom:300.260880px;}
.y1b4{bottom:302.241000px;}
.y216{bottom:302.631000px;}
.y5d{bottom:305.275500px;}
.y1e3{bottom:306.837000px;}
.yd7{bottom:308.269500px;}
.y87{bottom:310.401000px;}
.y2d{bottom:310.990500px;}
.y15f{bottom:313.800720px;}
.y193{bottom:316.797000px;}
.yb2{bottom:319.248000px;}
.y109{bottom:320.268000px;}
.y215{bottom:321.999000px;}
.yd6{bottom:322.467000px;}
.y1b3{bottom:322.504500px;}
.y5c{bottom:325.539000px;}
.y1e2{bottom:326.205000px;}
.y15e{bottom:327.341790px;}
.y2c{bottom:334.029000px;}
.y192{bottom:337.060500px;}
.yb1{bottom:339.511500px;}
.y108{bottom:340.533000px;}
.y15d{bottom:340.882860px;}
.y214{bottom:341.367000px;}
.y1b2{bottom:342.769500px;}
.yd5{bottom:343.363950px;}
.y86{bottom:345.220500px;}
.y1e1{bottom:345.571500px;}
.y5b{bottom:345.802500px;}
.y2b{bottom:347.304000px;}
.y15c{bottom:354.423930px;}
.y191{bottom:357.324000px;}
.yd4{bottom:358.226100px;}
.yb0{bottom:359.775000px;}
.y213{bottom:360.733500px;}
.y107{bottom:360.796500px;}
.y1b1{bottom:363.033000px;}
.y1e0{bottom:364.939500px;}
.y85{bottom:365.484000px;}
.y5a{bottom:366.067500px;}
.y221{bottom:366.517500px;}
.y15b{bottom:367.963770px;}
.y2a{bottom:370.342500px;}
.yd3{bottom:373.088250px;}
.y190{bottom:377.589000px;}
.yaf{bottom:380.040000px;}
.y212{bottom:380.101500px;}
.y106{bottom:381.061500px;}
.y15a{bottom:381.504840px;}
.y1df{bottom:384.307500px;}
.y84{bottom:385.749000px;}
.y220{bottom:385.885500px;}
.y59{bottom:386.331000px;}
.yd2{bottom:387.949050px;}
.y29{bottom:388.500000px;}
.y1b0{bottom:392.263500px;}
.y18f{bottom:397.852500px;}
.y211{bottom:399.468000px;}
.yae{bottom:400.303500px;}
.y159{bottom:400.951140px;}
.y105{bottom:401.325000px;}
.y28{bottom:401.775000px;}
.yd1{bottom:402.811200px;}
.y1de{bottom:403.674000px;}
.y21f{bottom:405.253500px;}
.y83{bottom:406.012500px;}
.y58{bottom:406.596000px;}
.y158{bottom:414.492210px;}
.yd0{bottom:417.673350px;}
.y18e{bottom:418.117500px;}
.y210{bottom:418.836000px;}
.yad{bottom:420.568500px;}
.y104{bottom:421.588500px;}
.y1dd{bottom:423.042000px;}
.y27{bottom:424.813500px;}
.y82{bottom:426.276000px;}
.y57{bottom:426.859500px;}
.y1af{bottom:427.083000px;}
.y157{bottom:428.033280px;}
.ycf{bottom:432.535500px;}
.y26{bottom:438.088500px;}
.y20f{bottom:438.204000px;}
.y18d{bottom:438.381000px;}
.yac{bottom:440.832000px;}
.y156{bottom:441.574350px;}
.y103{bottom:441.853500px;}
.y1dc{bottom:442.408500px;}
.y81{bottom:446.541000px;}
.y56{bottom:447.123000px;}
.y1ae{bottom:447.348000px;}
.yce{bottom:447.396300px;}
.y155{bottom:455.114190px;}
.y25{bottom:456.246000px;}
.y20e{bottom:457.570500px;}
.y18c{bottom:458.644500px;}
.yab{bottom:461.095500px;}
.y24{bottom:461.128500px;}
.y1db{bottom:461.776500px;}
.y102{bottom:462.117000px;}
.ycd{bottom:462.258450px;}
.y80{bottom:466.804500px;}
.y55{bottom:467.388000px;}
.y1ad{bottom:467.611500px;}
.y154{bottom:468.655260px;}
.y23{bottom:474.403500px;}
.y20d{bottom:476.938500px;}
.ycc{bottom:477.120600px;}
.y18b{bottom:478.909500px;}
.y1da{bottom:481.144500px;}
.yaa{bottom:481.360500px;}
.y153{bottom:482.196330px;}
.y101{bottom:482.382000px;}
.y7f{bottom:487.069500px;}
.y54{bottom:487.651500px;}
.y1ac{bottom:487.875000px;}
.ycb{bottom:491.982750px;}
.y22{bottom:492.559500px;}
.y152{bottom:495.737400px;}
.y20c{bottom:496.305000px;}
.y21{bottom:497.442000px;}
.y18a{bottom:499.173000px;}
.y1d9{bottom:500.511000px;}
.ya9{bottom:501.624000px;}
.y100{bottom:502.645500px;}
.yca{bottom:506.843550px;}
.y7e{bottom:507.333000px;}
.y53{bottom:507.916500px;}
.y1ab{bottom:508.140000px;}
.y151{bottom:509.277240px;}
.y20{bottom:510.717000px;}
.y20b{bottom:515.673000px;}
.y189{bottom:519.438000px;}
.y1d8{bottom:519.879000px;}
.yc9{bottom:521.705700px;}
.ya8{bottom:521.889000px;}
.y150{bottom:522.818310px;}
.yff{bottom:522.909000px;}
.y7d{bottom:527.596500px;}
.y52{bottom:528.180000px;}
.y1aa{bottom:528.403500px;}
.y1f{bottom:533.755500px;}
.y20a{bottom:535.041000px;}
.yc8{bottom:536.567850px;}
.y1d7{bottom:539.245500px;}
.y188{bottom:539.701500px;}
.ya7{bottom:542.152500px;}
.y14f{bottom:542.265840px;}
.yfe{bottom:543.174000px;}
.y1e{bottom:547.030500px;}
.y7c{bottom:547.861500px;}
.y51{bottom:548.443500px;}
.y1a9{bottom:548.667000px;}
.y209{bottom:554.407500px;}
.yc7{bottom:557.911350px;}
.y1d6{bottom:558.613500px;}
.y187{bottom:559.965000px;}
.y14e{bottom:561.712140px;}
.ya6{bottom:562.416000px;}
.yfd{bottom:563.437500px;}
.y7b{bottom:568.125000px;}
.y50{bottom:568.708500px;}
.y1a8{bottom:568.932000px;}
.y1d{bottom:570.070500px;}
.y208{bottom:573.775500px;}
.yc4{bottom:577.911600px;}
.yc6{bottom:579.188700px;}
.y186{bottom:580.230000px;}
.ya5{bottom:582.681000px;}
.y1c{bottom:583.345500px;}
.yfc{bottom:583.702500px;}
.y1d5{bottom:586.947000px;}
.y7a{bottom:588.390000px;}
.y4f{bottom:588.972000px;}
.y1a7{bottom:589.195500px;}
.y207{bottom:593.142000px;}
.yc5{bottom:593.983350px;}
.y14d{bottom:596.272500px;}
.y185{bottom:600.493500px;}
.ya4{bottom:602.944500px;}
.yfb{bottom:603.966000px;}
.y1b{bottom:606.384000px;}
.y79{bottom:608.653500px;}
.y4e{bottom:609.237000px;}
.y1a6{bottom:609.460500px;}
.y206{bottom:612.510000px;}
.y184{bottom:620.758500px;}
.y1d4{bottom:622.744500px;}
.ya3{bottom:623.209500px;}
.yfa{bottom:624.229500px;}
.y1a{bottom:624.541500px;}
.y78{bottom:628.917000px;}
.y4d{bottom:629.500500px;}
.y1a5{bottom:629.724000px;}
.yc3{bottom:629.890500px;}
.y205{bottom:631.878000px;}
.y14c{bottom:634.093500px;}
.y19{bottom:637.816500px;}
.y183{bottom:641.022000px;}
.y1d3{bottom:641.319000px;}
.ya2{bottom:643.473000px;}
.y14b{bottom:648.289500px;}
.y77{bottom:649.182000px;}
.y1a4{bottom:649.987500px;}
.y204{bottom:651.244500px;}
.y4c{bottom:658.731000px;}
.y1d2{bottom:659.895000px;}
.y18{bottom:660.855000px;}
.y182{bottom:661.285500px;}
.y14a{bottom:662.487000px;}
.ya1{bottom:663.736500px;}
.yc2{bottom:666.994500px;}
.yf9{bottom:667.359000px;}
.y75{bottom:669.445500px;}
.y1a3{bottom:670.252500px;}
.y203{bottom:670.612500px;}
.y17{bottom:674.130000px;}
.y76{bottom:674.871000px;}
.y1d1{bottom:678.471000px;}
.y181{bottom:681.550500px;}
.yf8{bottom:681.555000px;}
.y149{bottom:682.946625px;}
.ya0{bottom:684.001500px;}
.yc1{bottom:687.258000px;}
.y74{bottom:689.710500px;}
.y202{bottom:689.979000px;}
.y1a2{bottom:690.516000px;}
.y148{bottom:696.983100px;}
.y1d0{bottom:697.045500px;}
.y16{bottom:697.168500px;}
.y180{bottom:701.814000px;}
.yf7{bottom:702.891675px;}
.y9f{bottom:704.265000px;}
.ybf{bottom:707.523000px;}
.y201{bottom:709.347000px;}
.y73{bottom:709.974000px;}
.y1a1{bottom:710.781000px;}
.y147{bottom:711.019575px;}
.yc0{bottom:712.947000px;}
.y15{bottom:715.326000px;}
.y1cf{bottom:715.621500px;}
.yf6{bottom:718.579500px;}
.y17f{bottom:722.077500px;}
.y9e{bottom:724.528500px;}
.y146{bottom:725.056050px;}
.ybe{bottom:727.786500px;}
.y200{bottom:728.715000px;}
.y72{bottom:730.237500px;}
.y1a0{bottom:731.044500px;}
.y4b{bottom:733.375500px;}
.y14{bottom:733.483500px;}
.yf5{bottom:734.265900px;}
.y17e{bottom:742.342500px;}
.y1ce{bottom:744.150000px;}
.y145{bottom:745.213800px;}
.y13{bottom:746.758500px;}
.ybd{bottom:748.051500px;}
.y1ff{bottom:748.081500px;}
.yf4{bottom:749.953725px;}
.y71{bottom:750.502500px;}
.y19f{bottom:751.308000px;}
.y4a{bottom:753.640500px;}
.y9d{bottom:753.759000px;}
.y17d{bottom:762.606000px;}
.y144{bottom:765.371550px;}
.yf3{bottom:765.641550px;}
.y1fe{bottom:767.449500px;}
.y12{bottom:769.797000px;}
.y70{bottom:770.766000px;}
.y19e{bottom:771.573000px;}
.ybc{bottom:777.282000px;}
.y1cd{bottom:778.969500px;}
.yf2{bottom:781.329375px;}
.y17c{bottom:782.871000px;}
.y11{bottom:783.072000px;}
.y1fd{bottom:786.816000px;}
.y9c{bottom:788.578500px;}
.y49{bottom:791.836500px;}
.y1cc{bottom:794.169000px;}
.yf1{bottom:797.015775px;}
.y6f{bottom:799.996500px;}
.y143{bottom:800.437500px;}
.y10{bottom:801.229500px;}
.y17b{bottom:803.134500px;}
.y1fc{bottom:806.184000px;}
.y9b{bottom:808.843500px;}
.y1cb{bottom:809.367000px;}
.y48{bottom:812.101500px;}
.yf0{bottom:812.703600px;}
.yf{bottom:819.385500px;}
.y17a{bottom:823.398000px;}
.y1fb{bottom:825.552000px;}
.yef{bottom:828.391425px;}
.y9a{bottom:829.107000px;}
.y47{bottom:832.365000px;}
.y1ca{bottom:833.530500px;}
.y6e{bottom:834.816000px;}
.ye{bottom:837.543000px;}
.y142{bottom:839.097000px;}
.y179{bottom:843.663000px;}
.yee{bottom:844.079250px;}
.y1fa{bottom:844.918500px;}
.y1c9{bottom:848.728500px;}
.y99{bottom:849.372000px;}
.y46{bottom:852.628500px;}
.y6d{bottom:855.079500px;}
.yd{bottom:855.700500px;}
.yed{bottom:859.765650px;}
.y178{bottom:863.926500px;}
.y1f9{bottom:864.286500px;}
.y10f{bottom:867.504000px;}
.y98{bottom:869.635500px;}
.y45{bottom:872.893500px;}
.y6c{bottom:875.344500px;}
.yec{bottom:875.453475px;}
.yc{bottom:878.739000px;}
.y1c8{bottom:879.124500px;}
.y1f8{bottom:883.653000px;}
.y177{bottom:884.191500px;}
.y97{bottom:889.899000px;}
.yeb{bottom:891.141300px;}
.y44{bottom:893.157000px;}
.y1c7{bottom:894.322500px;}
.y6b{bottom:895.608000px;}
.yb{bottom:896.896500px;}
.y1f7{bottom:903.021000px;}
.y176{bottom:904.455000px;}
.yea{bottom:906.829125px;}
.y1c6{bottom:909.520500px;}
.y96{bottom:910.164000px;}
.y43{bottom:913.422000px;}
.y6a{bottom:915.873000px;}
.ya{bottom:917.112000px;}
.y1f6{bottom:922.389000px;}
.ye9{bottom:922.515525px;}
.y175{bottom:924.718500px;}
.y95{bottom:930.427500px;}
.y42{bottom:933.685500px;}
.y69{bottom:936.136500px;}
.y9{bottom:937.375500px;}
.ye8{bottom:938.203350px;}
.y1f5{bottom:941.755500px;}
.y174{bottom:944.983500px;}
.y1c5{bottom:948.883500px;}
.y94{bottom:950.692500px;}
.ye7{bottom:953.891175px;}
.y41{bottom:953.949000px;}
.y8{bottom:957.639000px;}
.y1f4{bottom:961.123500px;}
.y1c4{bottom:964.081500px;}
.y173{bottom:965.247000px;}
.y68{bottom:965.367000px;}
.ye6{bottom:969.579000px;}
.y93{bottom:970.956000px;}
.y40{bottom:974.214000px;}
.y7{bottom:977.904000px;}
.y1c3{bottom:979.279500px;}
.y1f3{bottom:980.490000px;}
.ye5{bottom:985.265400px;}
.y172{bottom:985.512000px;}
.y92{bottom:991.219500px;}
.y3f{bottom:994.477500px;}
.y6{bottom:998.167500px;}
.y1f2{bottom:999.858000px;}
.y67{bottom:1000.186500px;}
.ye4{bottom:1000.953225px;}
.y171{bottom:1005.775500px;}
.y1c2{bottom:1009.675500px;}
.y3e{bottom:1014.742500px;}
.y1f1{bottom:1019.226000px;}
.y91{bottom:1020.450000px;}
.ye3{bottom:1023.483900px;}
.y1c1{bottom:1024.873500px;}
.y170{bottom:1026.039000px;}
.y3d{bottom:1035.006000px;}
.y1f0{bottom:1038.592500px;}
.y1c0{bottom:1040.071500px;}
.y5{bottom:1040.848500px;}
.ye0{bottom:1041.755250px;}
.ye2{bottom:1045.941900px;}
.y16f{bottom:1046.304000px;}
.y3c{bottom:1055.269500px;}
.y1ef{bottom:1057.960500px;}
.ye1{bottom:1061.558475px;}
.y16e{bottom:1066.567500px;}
.y1bf{bottom:1070.467500px;}
.y4{bottom:1071.244500px;}
.y3b{bottom:1075.534500px;}
.y1ee{bottom:1077.327000px;}
.y1be{bottom:1085.667000px;}
.y16d{bottom:1086.832500px;}
.y3a{bottom:1095.798000px;}
.y1ed{bottom:1096.695000px;}
.ydf{bottom:1098.310500px;}
.y3{bottom:1100.145000px;}
.y1bd{bottom:1100.865000px;}
.y39{bottom:1116.063000px;}
.yde{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y38{bottom:1168.366500px;}
.h27{height:-285.244500px;}
.h21{height:-71.224500px;}
.hf{height:28.214083px;}
.h8{height:30.461558px;}
.h24{height:30.787910px;}
.h28{height:30.788414px;}
.h22{height:30.890742px;}
.h2b{height:31.894919px;}
.h2c{height:32.115493px;}
.h23{height:32.680020px;}
.h29{height:33.061807px;}
.he{height:33.072749px;}
.h2a{height:33.290450px;}
.h2d{height:34.475670px;}
.h14{height:34.813397px;}
.h10{height:35.006619px;}
.hc{height:35.052500px;}
.h1c{height:35.115117px;}
.h13{height:35.248712px;}
.h1d{height:35.991211px;}
.h17{height:36.951431px;}
.h19{height:37.206973px;}
.h15{height:37.372050px;}
.h12{height:37.839150px;}
.h16{height:38.896243px;}
.h9{height:39.165235px;}
.h2f{height:39.434227px;}
.h25{height:39.471680px;}
.h1f{height:39.603516px;}
.h1a{height:39.941325px;}
.h2e{height:40.993078px;}
.ha{height:43.217759px;}
.hb{height:43.516637px;}
.h4{height:43.815515px;}
.hd{height:46.714950px;}
.h2{height:50.931027px;}
.h1e{height:52.628906px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.h26{height:60.412650px;}
.h20{height:60.770670px;}
.h11{height:64.593219px;}
.h18{height:68.181731px;}
.h5{height:77.792486px;}
.h3{height:102.503837px;}
.h1b{height:263.503500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:58.590000px;}
.w4{width:60.390000px;}
.w2{width:198.814733px;}
.w3{width:358.123500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x77{left:-156.915000px;}
.x87{left:-141.165000px;}
.x82{left:-125.055000px;}
.x88{left:-123.165000px;}
.x81{left:-108.224622px;}
.x89{left:-105.165018px;}
.x79{left:-97.964550px;}
.x78{left:-94.275000px;}
.x7f{left:-88.245000px;}
.x7e{left:-74.655000px;}
.x80{left:-66.644811px;}
.x83{left:-40.815000px;}
.x7a{left:-29.655000px;}
.x0{left:0.000000px;}
.x85{left:55.170000px;}
.x7b{left:56.970000px;}
.x2{left:58.056593px;}
.x7d{left:73.215000px;}
.x86{left:75.825000px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x3{left:123.306000px;}
.x41{left:127.281000px;}
.x65{left:129.645150px;}
.x50{left:131.740950px;}
.x74{left:134.431725px;}
.x8b{left:139.743120px;}
.x7c{left:141.795000px;}
.x52{left:143.845050px;}
.x4{left:146.170500px;}
.x5{left:147.408000px;}
.x69{left:149.674950px;}
.x70{left:151.074300px;}
.x57{left:156.675000px;}
.x71{left:158.964525px;}
.x8{left:160.789500px;}
.x73{left:163.230975px;}
.x72{left:166.361700px;}
.x6b{left:168.502050px;}
.x6e{left:169.549425px;}
.x4f{left:171.456000px;}
.x6a{left:174.450000px;}
.x8a{left:178.282500px;}
.x6c{left:180.148575px;}
.x7{left:189.702000px;}
.x91{left:191.997000px;}
.x6d{left:193.212975px;}
.x60{left:197.518500px;}
.x6f{left:199.966050px;}
.xf{left:201.402000px;}
.x26{left:202.851000px;}
.x92{left:206.940000px;}
.x9{left:215.514000px;}
.x3b{left:217.197000px;}
.x61{left:226.458225px;}
.x99{left:237.358500px;}
.x9b{left:243.325500px;}
.x2e{left:247.006500px;}
.x98{left:249.373500px;}
.xad{left:250.569000px;}
.xae{left:252.573000px;}
.x9a{left:260.748000px;}
.x2f{left:261.951000px;}
.xa{left:265.084500px;}
.x55{left:267.955500px;}
.x10{left:269.755500px;}
.x76{left:271.746000px;}
.x42{left:274.294500px;}
.x11{left:277.228500px;}
.x30{left:284.517000px;}
.xd{left:287.505000px;}
.x2a{left:292.975500px;}
.x12{left:295.038000px;}
.x4a{left:299.986500px;}
.x13{left:302.509500px;}
.x49{left:305.835000px;}
.x23{left:308.713500px;}
.x75{left:310.588500px;}
.x4b{left:314.931000px;}
.x24{left:316.186500px;}
.x3f{left:319.528500px;}
.x97{left:321.082500px;}
.x48{left:323.322000px;}
.x5b{left:325.381500px;}
.x27{left:328.359000px;}
.x2b{left:330.186000px;}
.x40{left:331.819500px;}
.x5c{left:335.868000px;}
.xe{left:337.656000px;}
.x66{left:338.714025px;}
.x53{left:341.518500px;}
.x84{left:343.221000px;}
.x5d{left:346.000500px;}
.x54{left:350.434500px;}
.x67{left:352.308525px;}
.x8d{left:357.663000px;}
.x8e{left:372.607500px;}
.x28{left:381.717000px;}
.x3c{left:386.187000px;}
.x31{left:392.266500px;}
.x29{left:396.661500px;}
.x32{left:407.209500px;}
.x8c{left:412.068000px;}
.x62{left:414.908775px;}
.x68{left:418.881675px;}
.xb{left:425.217000px;}
.x59{left:437.470500px;}
.x5a{left:447.304500px;}
.x35{left:452.721000px;}
.x5e{left:455.563500px;}
.x5f{left:465.396000px;}
.x36{left:467.665500px;}
.x37{left:471.442500px;}
.x19{left:473.367000px;}
.x1a{left:480.840000px;}
.x38{left:486.387000px;}
.x25{left:495.649500px;}
.x3d{left:500.760000px;}
.x3e{left:513.052500px;}
.x33{left:514.960500px;}
.x14{left:521.260500px;}
.x15{left:528.732000px;}
.x34{left:529.903500px;}
.x63{left:534.252525px;}
.x16{left:536.353500px;}
.x17{left:543.825000px;}
.x51{left:546.868650px;}
.x21{left:549.405000px;}
.x56{left:558.730500px;}
.x64{left:562.382025px;}
.x22{left:564.348000px;}
.xa5{left:574.275000px;}
.x4c{left:580.962000px;}
.xa1{left:594.432000px;}
.x9d{left:602.847000px;}
.x43{left:604.450500px;}
.xaa{left:612.067500px;}
.xa2{left:613.746000px;}
.x44{left:616.741500px;}
.x1d{left:620.727000px;}
.x9e{left:629.745000px;}
.x58{left:633.675000px;}
.x1e{left:635.671500px;}
.x1f{left:639.403500px;}
.xc{left:640.701000px;}
.x1b{left:650.389500px;}
.x47{left:652.947000px;}
.x20{left:654.348000px;}
.x95{left:663.835500px;}
.x1c{left:665.334000px;}
.x8f{left:668.998500px;}
.xa7{left:670.735500px;}
.x45{left:676.531500px;}
.x18{left:678.838500px;}
.x46{left:682.957500px;}
.x90{left:691.153500px;}
.x93{left:692.482500px;}
.x9c{left:695.239500px;}
.x96{left:697.384500px;}
.x94{left:707.425500px;}
.x39{left:711.990000px;}
.xa3{left:722.041500px;}
.x3a{left:724.281000px;}
.x9f{left:728.490000px;}
.xa8{left:734.551500px;}
.xab{left:736.293000px;}
.x4d{left:738.229500px;}
.x4e{left:744.655500px;}
.xa4{left:748.941000px;}
.xa0{left:755.389500px;}
.x2c{left:756.496500px;}
.xa9{left:761.449500px;}
.xac{left:763.192500px;}
.x2d{left:771.441000px;}
.xa6{left:776.406000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v6{vertical-align:-10.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.560000pt;}
.v7{vertical-align:14.235200pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:26.299200pt;}
.v4{vertical-align:27.760267pt;}
.ls53{letter-spacing:-0.748800pt;}
.ls4f{letter-spacing:-0.715104pt;}
.ls45{letter-spacing:-0.681408pt;}
.ls51{letter-spacing:-0.658944pt;}
.ls48{letter-spacing:-0.651456pt;}
.ls50{letter-spacing:-0.632736pt;}
.ls4e{letter-spacing:-0.606528pt;}
.ls56{letter-spacing:-0.572832pt;}
.ls54{letter-spacing:-0.557856pt;}
.ls4a{letter-spacing:-0.527904pt;}
.ls4d{letter-spacing:-0.524160pt;}
.ls49{letter-spacing:-0.520416pt;}
.ls52{letter-spacing:-0.516672pt;}
.ls4c{letter-spacing:-0.512928pt;}
.ls4b{letter-spacing:-0.490464pt;}
.ls46{letter-spacing:-0.482976pt;}
.ls47{letter-spacing:-0.479232pt;}
.ls41{letter-spacing:-0.123552pt;}
.ls5a{letter-spacing:-0.096000pt;}
.ls3f{letter-spacing:-0.089856pt;}
.ls3c{letter-spacing:-0.080864pt;}
.ls40{letter-spacing:-0.067392pt;}
.ls3b{letter-spacing:-0.046816pt;}
.ls3e{letter-spacing:-0.044928pt;}
.ls58{letter-spacing:-0.033600pt;}
.ls59{letter-spacing:-0.019200pt;}
.ls57{letter-spacing:-0.014400pt;}
.ls3d{letter-spacing:-0.004800pt;}
.lsb{letter-spacing:0.000000pt;}
.ls6d{letter-spacing:0.000078pt;}
.ls6c{letter-spacing:0.000600pt;}
.ls5d{letter-spacing:0.000711pt;}
.ls36{letter-spacing:0.000826pt;}
.ls33{letter-spacing:0.000856pt;}
.ls60{letter-spacing:0.000921pt;}
.lse{letter-spacing:0.000957pt;}
.ls5f{letter-spacing:0.001026pt;}
.ls5b{letter-spacing:0.001408pt;}
.ls8{letter-spacing:0.001843pt;}
.ls6f{letter-spacing:0.001974pt;}
.ls5e{letter-spacing:0.002262pt;}
.ls0{letter-spacing:0.002422pt;}
.ls5c{letter-spacing:0.002525pt;}
.ls1b{letter-spacing:0.003008pt;}
.ls61{letter-spacing:0.003150pt;}
.ls70{letter-spacing:0.003793pt;}
.ls5{letter-spacing:0.004237pt;}
.ls2e{letter-spacing:0.004800pt;}
.ls32{letter-spacing:0.009600pt;}
.ls25{letter-spacing:0.011232pt;}
.ls22{letter-spacing:0.014400pt;}
.ls20{letter-spacing:0.019200pt;}
.ls23{letter-spacing:0.024000pt;}
.ls2c{letter-spacing:0.028800pt;}
.ls2a{letter-spacing:0.038400pt;}
.ls21{letter-spacing:0.043200pt;}
.ls2b{letter-spacing:0.048000pt;}
.ls29{letter-spacing:0.052800pt;}
.ls2d{letter-spacing:0.067200pt;}
.ls44{letter-spacing:0.078624pt;}
.ls42{letter-spacing:0.093600pt;}
.ls43{letter-spacing:0.146016pt;}
.ls1f{letter-spacing:0.153216pt;}
.ls26{letter-spacing:0.160992pt;}
.ls1e{letter-spacing:0.161728pt;}
.ls3a{letter-spacing:0.472384pt;}
.ls17{letter-spacing:0.514393pt;}
.lsf{letter-spacing:0.637762pt;}
.ls1{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls30{letter-spacing:7.982208pt;}
.ls27{letter-spacing:9.262656pt;}
.ls37{letter-spacing:9.803621pt;}
.ls34{letter-spacing:10.157757pt;}
.ls35{letter-spacing:10.162290pt;}
.ls38{letter-spacing:10.273024pt;}
.ls39{letter-spacing:10.277397pt;}
.lsa{letter-spacing:10.626533pt;}
.ls15{letter-spacing:11.275270pt;}
.ls16{letter-spacing:11.280070pt;}
.ls71{letter-spacing:11.753748pt;}
.ls64{letter-spacing:11.789956pt;}
.ls69{letter-spacing:11.880453pt;}
.ls6a{letter-spacing:11.898395pt;}
.ls1a{letter-spacing:11.901674pt;}
.ls19{letter-spacing:11.906741pt;}
.ls1c{letter-spacing:11.924400pt;}
.ls63{letter-spacing:11.954133pt;}
.ls62{letter-spacing:11.959467pt;}
.ls67{letter-spacing:11.967544pt;}
.ls72{letter-spacing:12.158621pt;}
.ls6b{letter-spacing:12.161450pt;}
.ls10{letter-spacing:12.475244pt;}
.ls13{letter-spacing:12.951076pt;}
.ls14{letter-spacing:12.955876pt;}
.lsc{letter-spacing:13.071898pt;}
.ls12{letter-spacing:13.177199pt;}
.ls6{letter-spacing:13.283230pt;}
.ls4{letter-spacing:13.283733pt;}
.ls3{letter-spacing:13.284237pt;}
.ls65{letter-spacing:13.294473pt;}
.lsd{letter-spacing:13.300944pt;}
.ls66{letter-spacing:13.331075pt;}
.ls18{letter-spacing:13.675647pt;}
.ls1d{letter-spacing:15.249420pt;}
.ls6e{letter-spacing:16.118003pt;}
.ls68{letter-spacing:16.426499pt;}
.ls11{letter-spacing:16.831759pt;}
.ls7{letter-spacing:62.432533pt;}
.ls9{letter-spacing:64.314231pt;}
.ls28{letter-spacing:299.759616pt;}
.ls24{letter-spacing:327.918240pt;}
.ls31{letter-spacing:381.041856pt;}
.ls2f{letter-spacing:405.359136pt;}
.ls55{letter-spacing:540.401472pt;}
.ws97{word-spacing:-37.440000pt;}
.ws7e{word-spacing:-34.267668pt;}
.ws4{word-spacing:-13.283467pt;}
.ws3{word-spacing:-12.760670pt;}
.wsf5{word-spacing:-11.955200pt;}
.ws73{word-spacing:-11.357440pt;}
.ws94{word-spacing:-10.801728pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wsa0{word-spacing:-9.803264pt;}
.ws96{word-spacing:-9.360000pt;}
.ws98{word-spacing:-5.360000pt;}
.wsb5{word-spacing:-2.774400pt;}
.wse5{word-spacing:-2.762961pt;}
.wsd6{word-spacing:-2.709827pt;}
.ws16{word-spacing:-2.603559pt;}
.wsd8{word-spacing:-2.444158pt;}
.wsb9{word-spacing:-2.438400pt;}
.wsb8{word-spacing:-2.428800pt;}
.ws22{word-spacing:-2.337890pt;}
.ws12a{word-spacing:-2.199757pt;}
.ws26{word-spacing:-2.178489pt;}
.ws11e{word-spacing:-2.151936pt;}
.wse7{word-spacing:-2.072221pt;}
.wse0{word-spacing:-2.019087pt;}
.wse6{word-spacing:-1.912819pt;}
.wsb7{word-spacing:-1.809600pt;}
.wsb6{word-spacing:-1.800000pt;}
.wsba{word-spacing:-1.776000pt;}
.wsbb{word-spacing:-1.766400pt;}
.wsbc{word-spacing:-1.761600pt;}
.ws6e{word-spacing:-1.657781pt;}
.wse1{word-spacing:-1.594016pt;}
.wsed{word-spacing:-1.578086pt;}
.ws5e{word-spacing:-1.487748pt;}
.ws11b{word-spacing:-1.434624pt;}
.wsee{word-spacing:-1.243341pt;}
.wsd0{word-spacing:-1.166400pt;}
.wsd1{word-spacing:-1.132800pt;}
.ws9a{word-spacing:-1.062680pt;}
.wse4{word-spacing:-1.062677pt;}
.wsef{word-spacing:-1.052058pt;}
.ws3a{word-spacing:-1.009543pt;}
.ws49{word-spacing:-0.903276pt;}
.wsdc{word-spacing:-0.850142pt;}
.ws63{word-spacing:-0.797008pt;}
.ws5d{word-spacing:-0.743874pt;}
.wse2{word-spacing:-0.690740pt;}
.ws55{word-spacing:-0.637606pt;}
.ws131{word-spacing:-0.573850pt;}
.ws6d{word-spacing:-0.510086pt;}
.ws38{word-spacing:-0.478205pt;}
.wsf0{word-spacing:-0.430387pt;}
.wse8{word-spacing:-0.425071pt;}
.ws28{word-spacing:-0.318803pt;}
.ws10b{word-spacing:-0.286925pt;}
.ws2d{word-spacing:-0.265669pt;}
.wsa5{word-spacing:-0.242592pt;}
.wsaf{word-spacing:-0.239616pt;}
.ws117{word-spacing:-0.239104pt;}
.wsbd{word-spacing:-0.235872pt;}
.wsa6{word-spacing:-0.234080pt;}
.wsc2{word-spacing:-0.228384pt;}
.wsb3{word-spacing:-0.224640pt;}
.ws1d{word-spacing:-0.212535pt;}
.wsc3{word-spacing:-0.205920pt;}
.wsc8{word-spacing:-0.202176pt;}
.wsbf{word-spacing:-0.198432pt;}
.wsc4{word-spacing:-0.194688pt;}
.ws72{word-spacing:-0.191283pt;}
.wsc1{word-spacing:-0.190944pt;}
.ws74{word-spacing:-0.181719pt;}
.wsb2{word-spacing:-0.172224pt;}
.wscc{word-spacing:-0.160992pt;}
.ws47{word-spacing:-0.159402pt;}
.wsb4{word-spacing:-0.157248pt;}
.wscd{word-spacing:-0.146016pt;}
.wsfd{word-spacing:-0.143462pt;}
.wsc5{word-spacing:-0.112320pt;}
.ws1c{word-spacing:-0.106268pt;}
.wsf1{word-spacing:-0.095642pt;}
.ws71{word-spacing:-0.085014pt;}
.wsa2{word-spacing:-0.078426pt;}
.ws5{word-spacing:-0.053134pt;}
.wsd{word-spacing:-0.047821pt;}
.ws1b{word-spacing:-0.042507pt;}
.ws95{word-spacing:-0.037440pt;}
.wsac{word-spacing:-0.033696pt;}
.wsae{word-spacing:-0.011232pt;}
.wsa{word-spacing:-0.003065pt;}
.ws9{word-spacing:-0.002074pt;}
.ws7{word-spacing:-0.002051pt;}
.wsb{word-spacing:-0.000459pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.000541pt;}
.ws8{word-spacing:0.000830pt;}
.ws6{word-spacing:0.001089pt;}
.wsad{word-spacing:0.011232pt;}
.wscb{word-spacing:0.029952pt;}
.wsb1{word-spacing:0.044928pt;}
.wse{word-spacing:0.047821pt;}
.ws3b{word-spacing:0.053134pt;}
.ws8d{word-spacing:0.085014pt;}
.ws9c{word-spacing:0.095642pt;}
.ws24{word-spacing:0.106268pt;}
.wsa8{word-spacing:0.115200pt;}
.wsa4{word-spacing:0.127522pt;}
.wsab{word-spacing:0.134400pt;}
.wsa7{word-spacing:0.139200pt;}
.wsf2{word-spacing:0.143462pt;}
.wsaa{word-spacing:0.144000pt;}
.wsd5{word-spacing:0.158400pt;}
.ws18{word-spacing:0.159402pt;}
.wsa9{word-spacing:0.163200pt;}
.wsa3{word-spacing:0.170029pt;}
.ws10{word-spacing:0.191283pt;}
.ws14{word-spacing:0.212535pt;}
.ws111{word-spacing:0.239104pt;}
.ws4b{word-spacing:0.265669pt;}
.ws103{word-spacing:0.286925pt;}
.ws4a{word-spacing:0.318803pt;}
.ws137{word-spacing:0.382566pt;}
.wse3{word-spacing:0.425071pt;}
.ws4c{word-spacing:0.478205pt;}
.wsfb{word-spacing:0.478208pt;}
.ws9e{word-spacing:0.489813pt;}
.ws67{word-spacing:0.517686pt;}
.ws65{word-spacing:0.519890pt;}
.ws69{word-spacing:0.520765pt;}
.ws6a{word-spacing:0.523791pt;}
.ws6b{word-spacing:0.526871pt;}
.ws6c{word-spacing:0.529260pt;}
.ws70{word-spacing:0.530297pt;}
.ws87{word-spacing:0.543811pt;}
.ws78{word-spacing:0.544411pt;}
.ws7d{word-spacing:0.544614pt;}
.ws77{word-spacing:0.546641pt;}
.ws7b{word-spacing:0.548140pt;}
.ws81{word-spacing:0.549616pt;}
.ws79{word-spacing:0.550240pt;}
.ws88{word-spacing:0.550743pt;}
.ws8c{word-spacing:0.552088pt;}
.ws66{word-spacing:0.555924pt;}
.ws89{word-spacing:0.564143pt;}
.ws75{word-spacing:0.565440pt;}
.ws8b{word-spacing:0.565983pt;}
.ws84{word-spacing:0.566170pt;}
.ws86{word-spacing:0.568658pt;}
.ws76{word-spacing:0.569210pt;}
.ws7a{word-spacing:0.570215pt;}
.ws83{word-spacing:0.570442pt;}
.ws80{word-spacing:0.570685pt;}
.ws7f{word-spacing:0.571074pt;}
.ws7c{word-spacing:0.571236pt;}
.ws85{word-spacing:0.571569pt;}
.ws82{word-spacing:0.572152pt;}
.ws107{word-spacing:0.573850pt;}
.ws8a{word-spacing:0.587004pt;}
.ws56{word-spacing:0.637606pt;}
.wsde{word-spacing:0.690740pt;}
.ws51{word-spacing:0.743874pt;}
.wsdf{word-spacing:0.797008pt;}
.ws134{word-spacing:0.956416pt;}
.ws10e{word-spacing:1.004237pt;}
.ws113{word-spacing:1.052058pt;}
.wsda{word-spacing:1.275213pt;}
.wsfc{word-spacing:1.291162pt;}
.ws110{word-spacing:1.338982pt;}
.ws58{word-spacing:1.381481pt;}
.ws112{word-spacing:1.386803pt;}
.ws5f{word-spacing:1.434614pt;}
.wsf3{word-spacing:1.434624pt;}
.ws6f{word-spacing:1.445245pt;}
.ws5b{word-spacing:1.540882pt;}
.ws8f{word-spacing:1.753418pt;}
.wsfa{word-spacing:1.769370pt;}
.ws52{word-spacing:1.912819pt;}
.ws13{word-spacing:1.965953pt;}
.ws4d{word-spacing:2.019087pt;}
.ws11{word-spacing:2.072221pt;}
.ws37{word-spacing:2.125355pt;}
.wsec{word-spacing:2.178489pt;}
.ws116{word-spacing:2.247578pt;}
.ws5c{word-spacing:2.284756pt;}
.ws100{word-spacing:2.295398pt;}
.ws5a{word-spacing:2.337890pt;}
.ws9b{word-spacing:2.380403pt;}
.wsdb{word-spacing:2.391024pt;}
.ws59{word-spacing:2.550426pt;}
.ws68{word-spacing:2.582323pt;}
.ws91{word-spacing:2.603559pt;}
.ws102{word-spacing:2.630144pt;}
.ws57{word-spacing:2.656693pt;}
.ws133{word-spacing:2.773606pt;}
.ws1e{word-spacing:2.816095pt;}
.ws104{word-spacing:2.867388pt;}
.ws118{word-spacing:2.868190pt;}
.ws36{word-spacing:2.869229pt;}
.ws115{word-spacing:2.869248pt;}
.ws125{word-spacing:2.964890pt;}
.ws15{word-spacing:2.975497pt;}
.ws132{word-spacing:3.060531pt;}
.ws29{word-spacing:3.188032pt;}
.wsd9{word-spacing:3.241166pt;}
.ws27{word-spacing:3.294300pt;}
.ws12c{word-spacing:3.299635pt;}
.ws17{word-spacing:3.453701pt;}
.wsd7{word-spacing:3.506835pt;}
.ws11c{word-spacing:3.538739pt;}
.ws64{word-spacing:3.559969pt;}
.ws126{word-spacing:3.682202pt;}
.ws11f{word-spacing:3.730022pt;}
.ws43{word-spacing:3.772505pt;}
.ws44{word-spacing:3.825638pt;}
.ws128{word-spacing:3.825664pt;}
.ws12{word-spacing:3.878772pt;}
.ws33{word-spacing:3.931906pt;}
.ws101{word-spacing:3.969126pt;}
.ws92{word-spacing:3.985040pt;}
.wscf{word-spacing:3.988800pt;}
.wsce{word-spacing:4.012800pt;}
.ws11a{word-spacing:4.016947pt;}
.wsdd{word-spacing:4.038174pt;}
.ws8e{word-spacing:4.091308pt;}
.ws23{word-spacing:4.250709pt;}
.ws20{word-spacing:4.410111pt;}
.ws34{word-spacing:4.516379pt;}
.ws35{word-spacing:4.569513pt;}
.ws1f{word-spacing:4.622646pt;}
.ws3d{word-spacing:4.835182pt;}
.wsf9{word-spacing:4.877722pt;}
.ws61{word-spacing:5.047717pt;}
.wseb{word-spacing:5.100851pt;}
.ws135{word-spacing:5.164646pt;}
.ws93{word-spacing:5.207119pt;}
.wsff{word-spacing:5.355930pt;}
.ws4e{word-spacing:5.366521pt;}
.ws2a{word-spacing:5.419654pt;}
.ws50{word-spacing:5.579056pt;}
.ws54{word-spacing:5.685324pt;}
.ws42{word-spacing:5.738458pt;}
.wsfe{word-spacing:5.738496pt;}
.wsc{word-spacing:5.849436pt;}
.ws3f{word-spacing:5.950993pt;}
.ws90{word-spacing:6.057261pt;}
.ws25{word-spacing:6.216662pt;}
.ws108{word-spacing:6.216704pt;}
.ws21{word-spacing:6.429198pt;}
.wse9{word-spacing:6.482332pt;}
.ws12f{word-spacing:6.838374pt;}
.ws62{word-spacing:6.854269pt;}
.ws46{word-spacing:6.907403pt;}
.ws2c{word-spacing:7.119938pt;}
.ws2b{word-spacing:7.173072pt;}
.ws32{word-spacing:7.438741pt;}
.ws2e{word-spacing:7.491875pt;}
.ws2f{word-spacing:7.545009pt;}
.wsf4{word-spacing:7.794790pt;}
.wsf6{word-spacing:7.842611pt;}
.ws31{word-spacing:7.863812pt;}
.ws60{word-spacing:7.916946pt;}
.ws12b{word-spacing:7.986074pt;}
.ws30{word-spacing:8.182615pt;}
.ws48{word-spacing:8.820222pt;}
.wsd3{word-spacing:9.139200pt;}
.wsd2{word-spacing:9.153600pt;}
.wsd4{word-spacing:9.216000pt;}
.ws121{word-spacing:9.420698pt;}
.wsf8{word-spacing:9.659802pt;}
.wsf7{word-spacing:9.707622pt;}
.ws53{word-spacing:9.776631pt;}
.ws45{word-spacing:9.936033pt;}
.ws4f{word-spacing:10.520506pt;}
.ws19{word-spacing:10.584852pt;}
.ws10c{word-spacing:11.716096pt;}
.ws129{word-spacing:11.811738pt;}
.ws12e{word-spacing:11.859558pt;}
.ws122{word-spacing:11.901790pt;}
.ws119{word-spacing:11.903684pt;}
.ws10a{word-spacing:11.903881pt;}
.ws109{word-spacing:11.907379pt;}
.ws130{word-spacing:12.003021pt;}
.ws127{word-spacing:12.098662pt;}
.wsea{word-spacing:12.486459pt;}
.ws3e{word-spacing:12.911530pt;}
.ws10f{word-spacing:12.959437pt;}
.ws39{word-spacing:13.230333pt;}
.ws120{word-spacing:14.680986pt;}
.ws10d{word-spacing:14.771721pt;}
.ws106{word-spacing:14.772471pt;}
.ws105{word-spacing:14.776627pt;}
.ws123{word-spacing:14.920090pt;}
.ws124{word-spacing:15.015731pt;}
.ws41{word-spacing:15.461955pt;}
.ws40{word-spacing:15.515089pt;}
.ws3c{word-spacing:16.418365pt;}
.ws136{word-spacing:17.072026pt;}
.ws114{word-spacing:18.363187pt;}
.ws12d{word-spacing:25.010278pt;}
.ws11d{word-spacing:25.775411pt;}
.wsf{word-spacing:41.177333pt;}
.wsa1{word-spacing:155.205276pt;}
.ws9f{word-spacing:174.811804pt;}
.wsb0{word-spacing:190.124064pt;}
.ws9d{word-spacing:194.418332pt;}
.ws99{word-spacing:212.262185pt;}
.wsc0{word-spacing:324.279072pt;}
.wsca{word-spacing:324.282816pt;}
.wsc9{word-spacing:571.139712pt;}
.wsc7{word-spacing:625.513824pt;}
.wsbe{word-spacing:696.571200pt;}
.wsc6{word-spacing:707.836896pt;}
._64{margin-left:-405.168192pt;}
._5b{margin-left:-393.921216pt;}
._66{margin-left:-323.200800pt;}
._68{margin-left:-268.493472pt;}
._6c{margin-left:-239.250944pt;}
._6e{margin-left:-237.996467pt;}
._6a{margin-left:-159.858259pt;}
._62{margin-left:-141.692371pt;}
._5f{margin-left:-123.451603pt;}
._65{margin-left:-85.760064pt;}
._5c{margin-left:-74.558016pt;}
._3{margin-left:-6.882470pt;}
._2{margin-left:-5.917265pt;}
._5{margin-left:-4.698953pt;}
._4{margin-left:-2.958611pt;}
._0{margin-left:-1.721549pt;}
._2c{width:1.075968pt;}
._1{width:2.661751pt;}
._88{width:10.820015pt;}
._18{width:12.197547pt;}
._7{width:13.963674pt;}
._6{width:15.219529pt;}
._a{width:16.173961pt;}
._10{width:17.211706pt;}
._12{width:18.618118pt;}
._13{width:19.680796pt;}
._83{width:20.584071pt;}
._8{width:21.593615pt;}
._b{width:22.847563pt;}
._d{width:24.199082pt;}
._c{width:25.929327pt;}
._19{width:27.225805pt;}
._1c{width:28.235348pt;}
._9{width:29.351159pt;}
._11{width:30.573238pt;}
._1b{width:32.071590pt;}
._14{width:33.155533pt;}
._89{width:36.009062pt;}
._15{width:38.415786pt;}
._16{width:39.478463pt;}
._17{width:40.594274pt;}
._1a{width:46.173330pt;}
._69{width:50.880960pt;}
._82{width:54.859065pt;}
._50{width:57.409056pt;}
._30{width:64.096765pt;}
._6d{width:66.678509pt;}
._53{width:69.633216pt;}
._87{width:78.904320pt;}
._67{width:80.606189pt;}
._70{width:84.140698pt;}
._6f{width:85.766605pt;}
._61{width:94.874573pt;}
._58{width:96.998861pt;}
._7b{width:100.620702pt;}
._2f{width:105.167503pt;}
._57{width:106.822426pt;}
._7a{width:144.055378pt;}
._7c{width:156.303241pt;}
._59{width:159.003245pt;}
._85{width:160.677888pt;}
._60{width:176.728032pt;}
._43{width:185.625999pt;}
._55{width:194.241024pt;}
._49{width:199.812731pt;}
._4d{width:204.448221pt;}
._37{width:208.340879pt;}
._7f{width:213.837966pt;}
._31{width:216.994803pt;}
._3e{width:219.698319pt;}
._54{width:221.266656pt;}
._35{width:224.483895pt;}
._34{width:231.055759pt;}
._75{width:232.707968pt;}
._4c{width:236.689050pt;}
._42{width:240.587375pt;}
._48{width:242.413199pt;}
._45{width:246.189084pt;}
._86{width:250.000864pt;}
._3a{width:253.770639pt;}
._36{width:263.038310pt;}
._5d{width:264.831149pt;}
._4a{width:267.462451pt;}
._32{width:271.829129pt;}
._3d{width:274.395750pt;}
._4e{width:276.657674pt;}
._44{width:278.004182pt;}
._51{width:280.148544pt;}
._4b{width:283.816362pt;}
._33{width:285.753190pt;}
._29{width:287.972076pt;}
._46{width:293.719944pt;}
._22{width:295.245619pt;}
._47{width:296.495017pt;}
._1d{width:300.729224pt;}
._3b{width:301.941539pt;}
._73{width:303.760113pt;}
._78{width:304.695009pt;}
._40{width:305.924004pt;}
._39{width:308.468070pt;}
._20{width:309.491436pt;}
._23{width:316.764979pt;}
._71{width:325.262735pt;}
._1e{width:326.726216pt;}
._2b{width:331.010796pt;}
._38{width:335.290623pt;}
._28{width:336.825865pt;}
._2a{width:338.048339pt;}
._3c{width:344.195002pt;}
._79{width:358.512729pt;}
._27{width:364.538095pt;}
._80{width:379.543169pt;}
._63{width:381.704658pt;}
._3f{width:401.417359pt;}
._41{width:413.641583pt;}
._76{width:430.052454pt;}
._52{width:431.525952pt;}
._2e{width:459.469978pt;}
._74{width:467.001196pt;}
._7d{width:471.241963pt;}
._5a{width:477.618336pt;}
._81{width:480.024234pt;}
._72{width:488.405325pt;}
._6b{width:489.873312pt;}
._2d{width:492.515983pt;}
._7e{width:499.630762pt;}
._56{width:516.361457pt;}
._1f{width:518.376945pt;}
._21{width:555.653786pt;}
._77{width:593.212242pt;}
._5e{width:622.538173pt;}
._26{width:634.692004pt;}
._25{width:644.806103pt;}
._24{width:666.540657pt;}
._e{width:848.144828pt;}
._84{width:1821.560267pt;}
._4f{width:1830.488576pt;}
._f{width:1842.813600pt;}
.fs11{font-size:21.440000pt;}
.fs15{font-size:30.498752pt;}
.fs4{font-size:37.193600pt;}
.fs10{font-size:37.440000pt;}
.fs13{font-size:39.213056pt;}
.fs3{font-size:40.381867pt;}
.fs12{font-size:40.647680pt;}
.fs14{font-size:40.860053pt;}
.fs6{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs8{font-size:43.038720pt;}
.fsa{font-size:44.292800pt;}
.fs9{font-size:44.846400pt;}
.fsb{font-size:45.429760pt;}
.fsc{font-size:47.337867pt;}
.fs5{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:55.365867pt;}
.fsf{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y111{bottom:-733.870267pt;}
.y141{bottom:-685.311467pt;}
.y140{bottom:-668.031467pt;}
.y13f{bottom:-650.671067pt;}
.y13e{bottom:-633.310667pt;}
.y13d{bottom:-616.030667pt;}
.y13c{bottom:-598.670267pt;}
.y13b{bottom:-580.830195pt;}
.y13a{bottom:-568.190451pt;}
.y139{bottom:-555.630379pt;}
.y138{bottom:-543.070195pt;}
.y137{bottom:-530.430451pt;}
.y136{bottom:-517.870267pt;}
.y135{bottom:-505.230715pt;}
.y134{bottom:-492.030307pt;}
.y133{bottom:-479.390563pt;}
.y132{bottom:-466.830379pt;}
.y131{bottom:-454.270195pt;}
.y130{bottom:-441.630451pt;}
.y12f{bottom:-429.070267pt;}
.y12e{bottom:-416.430387pt;}
.y12d{bottom:-403.229979pt;}
.y12c{bottom:-390.590235pt;}
.y12b{bottom:-378.030051pt;}
.y12a{bottom:-365.390307pt;}
.y129{bottom:-352.830123pt;}
.y128{bottom:-340.269939pt;}
.y127{bottom:-327.630195pt;}
.y126{bottom:-315.070011pt;}
.y125{bottom:-302.430267pt;}
.y124{bottom:-289.870267pt;}
.y123{bottom:-276.510267pt;}
.y121{bottom:-269.870267pt;}
.y122{bottom:-263.310267pt;}
.y120{bottom:-240.511467pt;}
.y11f{bottom:-207.311067pt;}
.y11e{bottom:-189.950667pt;}
.y11d{bottom:-172.590267pt;}
.y11c{bottom:-155.310267pt;}
.y11b{bottom:-137.470195pt;}
.y11a{bottom:-124.830451pt;}
.y119{bottom:-112.270267pt;}
.y118{bottom:-99.630267pt;}
.y117{bottom:-86.350267pt;}
.y115{bottom:-79.710267pt;}
.y116{bottom:-73.070267pt;}
.y114{bottom:-50.350267pt;}
.y113{bottom:-16.990267pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:4.689733pt;}
.y2{bottom:13.168686pt;}
.y37{bottom:56.693333pt;}
.y36{bottom:96.544000pt;}
.ybb{bottom:100.754667pt;}
.y19d{bottom:101.472000pt;}
.y90{bottom:105.829333pt;}
.y16c{bottom:108.162667pt;}
.y66{bottom:109.242667pt;}
.y35{bottom:114.556000pt;}
.y1ec{bottom:117.805333pt;}
.yba{bottom:118.766667pt;}
.y19c{bottom:119.484000pt;}
.y16b{bottom:120.781333pt;}
.y8f{bottom:123.841333pt;}
.y65{bottom:127.254667pt;}
.y1bc{bottom:131.133333pt;}
.y21e{bottom:131.281333pt;}
.y34{bottom:132.568000pt;}
.y16a{bottom:133.401333pt;}
.y1eb{bottom:135.020000pt;}
.yb9{bottom:136.780000pt;}
.y19b{bottom:137.496000pt;}
.y8e{bottom:141.853333pt;}
.y1bb{bottom:144.642667pt;}
.y64{bottom:145.268000pt;}
.y169{bottom:146.020000pt;}
.y21d{bottom:148.497333pt;}
.y33{bottom:150.581333pt;}
.y1ea{bottom:152.236000pt;}
.yb8{bottom:154.792000pt;}
.y19a{bottom:155.509333pt;}
.y1ba{bottom:158.152000pt;}
.y168{bottom:158.640000pt;}
.y8d{bottom:159.866667pt;}
.y63{bottom:163.280000pt;}
.y21c{bottom:165.713333pt;}
.y32{bottom:168.593333pt;}
.y1e9{bottom:169.452000pt;}
.y1b9{bottom:171.661333pt;}
.yb7{bottom:172.804000pt;}
.y199{bottom:173.521333pt;}
.y167{bottom:176.593600pt;}
.y8c{bottom:177.878667pt;}
.y62{bottom:181.293333pt;}
.y21b{bottom:182.928000pt;}
.y1b8{bottom:185.172000pt;}
.y31{bottom:186.606667pt;}
.y1e8{bottom:186.666667pt;}
.y166{bottom:188.629013pt;}
.yb6{bottom:190.817333pt;}
.y198{bottom:191.534667pt;}
.y10e{bottom:194.620000pt;}
.y8b{bottom:195.892000pt;}
.ydd{bottom:198.301333pt;}
.y61{bottom:199.305333pt;}
.y21a{bottom:200.144000pt;}
.y165{bottom:200.610853pt;}
.y1e7{bottom:203.882667pt;}
.y30{bottom:204.618667pt;}
.yb5{bottom:208.829333pt;}
.y197{bottom:209.546667pt;}
.ydc{bottom:210.921333pt;}
.y10d{bottom:212.633333pt;}
.y164{bottom:213.103280pt;}
.y8a{bottom:213.904000pt;}
.y1b7{bottom:214.621333pt;}
.y60{bottom:217.317333pt;}
.y219{bottom:217.358667pt;}
.y1e6{bottom:221.097333pt;}
.y2f{bottom:222.630667pt;}
.ydb{bottom:223.540000pt;}
.y163{bottom:225.138693pt;}
.y196{bottom:227.558667pt;}
.y10c{bottom:230.645333pt;}
.y89{bottom:231.916000pt;}
.y1b6{bottom:232.633333pt;}
.y218{bottom:234.574667pt;}
.yb4{bottom:234.812000pt;}
.y5f{bottom:235.330667pt;}
.yda{bottom:236.160000pt;}
.y162{bottom:237.120533pt;}
.y1e5{bottom:238.313333pt;}
.y195{bottom:245.572000pt;}
.y10b{bottom:248.658667pt;}
.yd9{bottom:248.778667pt;}
.y161{bottom:249.611867pt;}
.y88{bottom:249.929333pt;}
.y110{bottom:249.969733pt;}
.y1b5{bottom:250.646667pt;}
.y217{bottom:251.790667pt;}
.y2e{bottom:252.325333pt;}
.y5e{bottom:253.342667pt;}
.y1e4{bottom:255.529333pt;}
.yd8{bottom:261.398667pt;}
.y194{bottom:263.584000pt;}
.yb3{bottom:265.762667pt;}
.y10a{bottom:266.670667pt;}
.y160{bottom:266.898560pt;}
.y1b4{bottom:268.658667pt;}
.y216{bottom:269.005333pt;}
.y5d{bottom:271.356000pt;}
.y1e3{bottom:272.744000pt;}
.yd7{bottom:274.017333pt;}
.y87{bottom:275.912000pt;}
.y2d{bottom:276.436000pt;}
.y15f{bottom:278.933973pt;}
.y193{bottom:281.597333pt;}
.yb2{bottom:283.776000pt;}
.y109{bottom:284.682667pt;}
.y215{bottom:286.221333pt;}
.yd6{bottom:286.637333pt;}
.y1b3{bottom:286.670667pt;}
.y5c{bottom:289.368000pt;}
.y1e2{bottom:289.960000pt;}
.y15e{bottom:290.970480pt;}
.y2c{bottom:296.914667pt;}
.y192{bottom:299.609333pt;}
.yb1{bottom:301.788000pt;}
.y108{bottom:302.696000pt;}
.y15d{bottom:303.006987pt;}
.y214{bottom:303.437333pt;}
.y1b2{bottom:304.684000pt;}
.yd5{bottom:305.212400pt;}
.y86{bottom:306.862667pt;}
.y1e1{bottom:307.174667pt;}
.y5b{bottom:307.380000pt;}
.y2b{bottom:308.714667pt;}
.y15c{bottom:315.043493pt;}
.y191{bottom:317.621333pt;}
.yd4{bottom:318.423200pt;}
.yb0{bottom:319.800000pt;}
.y213{bottom:320.652000pt;}
.y107{bottom:320.708000pt;}
.y1b1{bottom:322.696000pt;}
.y1e0{bottom:324.390667pt;}
.y85{bottom:324.874667pt;}
.y5a{bottom:325.393333pt;}
.y221{bottom:325.793333pt;}
.y15b{bottom:327.078907pt;}
.y2a{bottom:329.193333pt;}
.yd3{bottom:331.634000pt;}
.y190{bottom:335.634667pt;}
.yaf{bottom:337.813333pt;}
.y212{bottom:337.868000pt;}
.y106{bottom:338.721333pt;}
.y15a{bottom:339.115413pt;}
.y1df{bottom:341.606667pt;}
.y84{bottom:342.888000pt;}
.y220{bottom:343.009333pt;}
.y59{bottom:343.405333pt;}
.yd2{bottom:344.843600pt;}
.y29{bottom:345.333333pt;}
.y1b0{bottom:348.678667pt;}
.y18f{bottom:353.646667pt;}
.y211{bottom:355.082667pt;}
.yae{bottom:355.825333pt;}
.y159{bottom:356.401013pt;}
.y105{bottom:356.733333pt;}
.y28{bottom:357.133333pt;}
.yd1{bottom:358.054400pt;}
.y1de{bottom:358.821333pt;}
.y21f{bottom:360.225333pt;}
.y83{bottom:360.900000pt;}
.y58{bottom:361.418667pt;}
.y158{bottom:368.437520pt;}
.yd0{bottom:371.265200pt;}
.y18e{bottom:371.660000pt;}
.y210{bottom:372.298667pt;}
.yad{bottom:373.838667pt;}
.y104{bottom:374.745333pt;}
.y1dd{bottom:376.037333pt;}
.y27{bottom:377.612000pt;}
.y82{bottom:378.912000pt;}
.y57{bottom:379.430667pt;}
.y1af{bottom:379.629333pt;}
.y157{bottom:380.474027pt;}
.ycf{bottom:384.476000pt;}
.y26{bottom:389.412000pt;}
.y20f{bottom:389.514667pt;}
.y18d{bottom:389.672000pt;}
.yac{bottom:391.850667pt;}
.y156{bottom:392.510533pt;}
.y103{bottom:392.758667pt;}
.y1dc{bottom:393.252000pt;}
.y81{bottom:396.925333pt;}
.y56{bottom:397.442667pt;}
.y1ae{bottom:397.642667pt;}
.yce{bottom:397.685600pt;}
.y155{bottom:404.545947pt;}
.y25{bottom:405.552000pt;}
.y20e{bottom:406.729333pt;}
.y18c{bottom:407.684000pt;}
.yab{bottom:409.862667pt;}
.y24{bottom:409.892000pt;}
.y1db{bottom:410.468000pt;}
.y102{bottom:410.770667pt;}
.ycd{bottom:410.896400pt;}
.y80{bottom:414.937333pt;}
.y55{bottom:415.456000pt;}
.y1ad{bottom:415.654667pt;}
.y154{bottom:416.582453pt;}
.y23{bottom:421.692000pt;}
.y20d{bottom:423.945333pt;}
.ycc{bottom:424.107200pt;}
.y18b{bottom:425.697333pt;}
.y1da{bottom:427.684000pt;}
.yaa{bottom:427.876000pt;}
.y153{bottom:428.618960pt;}
.y101{bottom:428.784000pt;}
.y7f{bottom:432.950667pt;}
.y54{bottom:433.468000pt;}
.y1ac{bottom:433.666667pt;}
.ycb{bottom:437.318000pt;}
.y22{bottom:437.830667pt;}
.y152{bottom:440.655467pt;}
.y20c{bottom:441.160000pt;}
.y21{bottom:442.170667pt;}
.y18a{bottom:443.709333pt;}
.y1d9{bottom:444.898667pt;}
.ya9{bottom:445.888000pt;}
.y100{bottom:446.796000pt;}
.yca{bottom:450.527600pt;}
.y7e{bottom:450.962667pt;}
.y53{bottom:451.481333pt;}
.y1ab{bottom:451.680000pt;}
.y151{bottom:452.690880pt;}
.y20{bottom:453.970667pt;}
.y20b{bottom:458.376000pt;}
.y189{bottom:461.722667pt;}
.y1d8{bottom:462.114667pt;}
.yc9{bottom:463.738400pt;}
.ya8{bottom:463.901333pt;}
.y150{bottom:464.727387pt;}
.yff{bottom:464.808000pt;}
.y7d{bottom:468.974667pt;}
.y52{bottom:469.493333pt;}
.y1aa{bottom:469.692000pt;}
.y1f{bottom:474.449333pt;}
.y20a{bottom:475.592000pt;}
.yc8{bottom:476.949200pt;}
.y1d7{bottom:479.329333pt;}
.y188{bottom:479.734667pt;}
.ya7{bottom:481.913333pt;}
.y14f{bottom:482.014080pt;}
.yfe{bottom:482.821333pt;}
.y1e{bottom:486.249333pt;}
.y7c{bottom:486.988000pt;}
.y51{bottom:487.505333pt;}
.y1a9{bottom:487.704000pt;}
.y209{bottom:492.806667pt;}
.yc7{bottom:495.921200pt;}
.y1d6{bottom:496.545333pt;}
.y187{bottom:497.746667pt;}
.y14e{bottom:499.299680pt;}
.ya6{bottom:499.925333pt;}
.yfd{bottom:500.833333pt;}
.y7b{bottom:505.000000pt;}
.y50{bottom:505.518667pt;}
.y1a8{bottom:505.717333pt;}
.y1d{bottom:506.729333pt;}
.y208{bottom:510.022667pt;}
.yc4{bottom:513.699200pt;}
.yc6{bottom:514.834400pt;}
.y186{bottom:515.760000pt;}
.ya5{bottom:517.938667pt;}
.y1c{bottom:518.529333pt;}
.yfc{bottom:518.846667pt;}
.y1d5{bottom:521.730667pt;}
.y7a{bottom:523.013333pt;}
.y4f{bottom:523.530667pt;}
.y1a7{bottom:523.729333pt;}
.y207{bottom:527.237333pt;}
.yc5{bottom:527.985200pt;}
.y14d{bottom:530.020000pt;}
.y185{bottom:533.772000pt;}
.ya4{bottom:535.950667pt;}
.yfb{bottom:536.858667pt;}
.y1b{bottom:539.008000pt;}
.y79{bottom:541.025333pt;}
.y4e{bottom:541.544000pt;}
.y1a6{bottom:541.742667pt;}
.y206{bottom:544.453333pt;}
.y184{bottom:551.785333pt;}
.y1d4{bottom:553.550667pt;}
.ya3{bottom:553.964000pt;}
.yfa{bottom:554.870667pt;}
.y1a{bottom:555.148000pt;}
.y78{bottom:559.037333pt;}
.y4d{bottom:559.556000pt;}
.y1a5{bottom:559.754667pt;}
.yc3{bottom:559.902667pt;}
.y205{bottom:561.669333pt;}
.y14c{bottom:563.638667pt;}
.y19{bottom:566.948000pt;}
.y183{bottom:569.797333pt;}
.y1d3{bottom:570.061333pt;}
.ya2{bottom:571.976000pt;}
.y14b{bottom:576.257333pt;}
.y77{bottom:577.050667pt;}
.y1a4{bottom:577.766667pt;}
.y204{bottom:578.884000pt;}
.y4c{bottom:585.538667pt;}
.y1d2{bottom:586.573333pt;}
.y18{bottom:587.426667pt;}
.y182{bottom:587.809333pt;}
.y14a{bottom:588.877333pt;}
.ya1{bottom:589.988000pt;}
.yc2{bottom:592.884000pt;}
.yf9{bottom:593.208000pt;}
.y75{bottom:595.062667pt;}
.y1a3{bottom:595.780000pt;}
.y203{bottom:596.100000pt;}
.y17{bottom:599.226667pt;}
.y76{bottom:599.885333pt;}
.y1d1{bottom:603.085333pt;}
.y181{bottom:605.822667pt;}
.yf8{bottom:605.826667pt;}
.y149{bottom:607.063667pt;}
.ya0{bottom:608.001333pt;}
.yc1{bottom:610.896000pt;}
.y74{bottom:613.076000pt;}
.y202{bottom:613.314667pt;}
.y1a2{bottom:613.792000pt;}
.y148{bottom:619.540533pt;}
.y1d0{bottom:619.596000pt;}
.y16{bottom:619.705333pt;}
.y180{bottom:623.834667pt;}
.yf7{bottom:624.792600pt;}
.y9f{bottom:626.013333pt;}
.ybf{bottom:628.909333pt;}
.y201{bottom:630.530667pt;}
.y73{bottom:631.088000pt;}
.y1a1{bottom:631.805333pt;}
.y147{bottom:632.017400pt;}
.yc0{bottom:633.730667pt;}
.y15{bottom:635.845333pt;}
.y1cf{bottom:636.108000pt;}
.yf6{bottom:638.737333pt;}
.y17f{bottom:641.846667pt;}
.y9e{bottom:644.025333pt;}
.y146{bottom:644.494267pt;}
.ybe{bottom:646.921333pt;}
.y200{bottom:647.746667pt;}
.y72{bottom:649.100000pt;}
.y1a0{bottom:649.817333pt;}
.y4b{bottom:651.889333pt;}
.y14{bottom:651.985333pt;}
.yf5{bottom:652.680800pt;}
.y17e{bottom:659.860000pt;}
.y1ce{bottom:661.466667pt;}
.y145{bottom:662.412267pt;}
.y13{bottom:663.785333pt;}
.ybd{bottom:664.934667pt;}
.y1ff{bottom:664.961333pt;}
.yf4{bottom:666.625533pt;}
.y71{bottom:667.113333pt;}
.y19f{bottom:667.829333pt;}
.y4a{bottom:669.902667pt;}
.y9d{bottom:670.008000pt;}
.y17d{bottom:677.872000pt;}
.y144{bottom:680.330267pt;}
.yf3{bottom:680.570267pt;}
.y1fe{bottom:682.177333pt;}
.y12{bottom:684.264000pt;}
.y70{bottom:685.125333pt;}
.y19e{bottom:685.842667pt;}
.ybc{bottom:690.917333pt;}
.y1cd{bottom:692.417333pt;}
.yf2{bottom:694.515000pt;}
.y17c{bottom:695.885333pt;}
.y11{bottom:696.064000pt;}
.y1fd{bottom:699.392000pt;}
.y9c{bottom:700.958667pt;}
.y49{bottom:703.854667pt;}
.y1cc{bottom:705.928000pt;}
.yf1{bottom:708.458467pt;}
.y6f{bottom:711.108000pt;}
.y143{bottom:711.500000pt;}
.y10{bottom:712.204000pt;}
.y17b{bottom:713.897333pt;}
.y1fc{bottom:716.608000pt;}
.y9b{bottom:718.972000pt;}
.y1cb{bottom:719.437333pt;}
.y48{bottom:721.868000pt;}
.yf0{bottom:722.403200pt;}
.yf{bottom:728.342667pt;}
.y17a{bottom:731.909333pt;}
.y1fb{bottom:733.824000pt;}
.yef{bottom:736.347933pt;}
.y9a{bottom:736.984000pt;}
.y47{bottom:739.880000pt;}
.y1ca{bottom:740.916000pt;}
.y6e{bottom:742.058667pt;}
.ye{bottom:744.482667pt;}
.y142{bottom:745.864000pt;}
.y179{bottom:749.922667pt;}
.yee{bottom:750.292667pt;}
.y1fa{bottom:751.038667pt;}
.y1c9{bottom:754.425333pt;}
.y99{bottom:754.997333pt;}
.y46{bottom:757.892000pt;}
.y6d{bottom:760.070667pt;}
.yd{bottom:760.622667pt;}
.yed{bottom:764.236133pt;}
.y178{bottom:767.934667pt;}
.y1f9{bottom:768.254667pt;}
.y10f{bottom:771.114667pt;}
.y98{bottom:773.009333pt;}
.y45{bottom:775.905333pt;}
.y6c{bottom:778.084000pt;}
.yec{bottom:778.180867pt;}
.yc{bottom:781.101333pt;}
.y1c8{bottom:781.444000pt;}
.y1f8{bottom:785.469333pt;}
.y177{bottom:785.948000pt;}
.y97{bottom:791.021333pt;}
.yeb{bottom:792.125600pt;}
.y44{bottom:793.917333pt;}
.y1c7{bottom:794.953333pt;}
.y6b{bottom:796.096000pt;}
.yb{bottom:797.241333pt;}
.y1f7{bottom:802.685333pt;}
.y176{bottom:803.960000pt;}
.yea{bottom:806.070333pt;}
.y1c6{bottom:808.462667pt;}
.y96{bottom:809.034667pt;}
.y43{bottom:811.930667pt;}
.y6a{bottom:814.109333pt;}
.ya{bottom:815.210667pt;}
.y1f6{bottom:819.901333pt;}
.ye9{bottom:820.013800pt;}
.y175{bottom:821.972000pt;}
.y95{bottom:827.046667pt;}
.y42{bottom:829.942667pt;}
.y69{bottom:832.121333pt;}
.y9{bottom:833.222667pt;}
.ye8{bottom:833.958533pt;}
.y1f5{bottom:837.116000pt;}
.y174{bottom:839.985333pt;}
.y1c5{bottom:843.452000pt;}
.y94{bottom:845.060000pt;}
.ye7{bottom:847.903267pt;}
.y41{bottom:847.954667pt;}
.y8{bottom:851.234667pt;}
.y1f4{bottom:854.332000pt;}
.y1c4{bottom:856.961333pt;}
.y173{bottom:857.997333pt;}
.y68{bottom:858.104000pt;}
.ye6{bottom:861.848000pt;}
.y93{bottom:863.072000pt;}
.y40{bottom:865.968000pt;}
.y7{bottom:869.248000pt;}
.y1c3{bottom:870.470667pt;}
.y1f3{bottom:871.546667pt;}
.ye5{bottom:875.791467pt;}
.y172{bottom:876.010667pt;}
.y92{bottom:881.084000pt;}
.y3f{bottom:883.980000pt;}
.y6{bottom:887.260000pt;}
.y1f2{bottom:888.762667pt;}
.y67{bottom:889.054667pt;}
.ye4{bottom:889.736200pt;}
.y171{bottom:894.022667pt;}
.y1c2{bottom:897.489333pt;}
.y3e{bottom:901.993333pt;}
.y1f1{bottom:905.978667pt;}
.y91{bottom:907.066667pt;}
.ye3{bottom:909.763467pt;}
.y1c1{bottom:910.998667pt;}
.y170{bottom:912.034667pt;}
.y3d{bottom:920.005333pt;}
.y1f0{bottom:923.193333pt;}
.y1c0{bottom:924.508000pt;}
.y5{bottom:925.198667pt;}
.ye0{bottom:926.004667pt;}
.ye2{bottom:929.726133pt;}
.y16f{bottom:930.048000pt;}
.y3c{bottom:938.017333pt;}
.y1ef{bottom:940.409333pt;}
.ye1{bottom:943.607533pt;}
.y16e{bottom:948.060000pt;}
.y1bf{bottom:951.526667pt;}
.y4{bottom:952.217333pt;}
.y3b{bottom:956.030667pt;}
.y1ee{bottom:957.624000pt;}
.y1be{bottom:965.037333pt;}
.y16d{bottom:966.073333pt;}
.y3a{bottom:974.042667pt;}
.y1ed{bottom:974.840000pt;}
.ydf{bottom:976.276000pt;}
.y3{bottom:977.906667pt;}
.y1bd{bottom:978.546667pt;}
.y39{bottom:992.056000pt;}
.yde{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y38{bottom:1038.548000pt;}
.h27{height:-253.550667pt;}
.h21{height:-63.310667pt;}
.hf{height:25.079185pt;}
.h8{height:27.076941pt;}
.h24{height:27.367031pt;}
.h28{height:27.367479pt;}
.h22{height:27.458437pt;}
.h2b{height:28.351039pt;}
.h2c{height:28.547105pt;}
.h23{height:29.048906pt;}
.h29{height:29.388273pt;}
.he{height:29.397999pt;}
.h2a{height:29.591511pt;}
.h2d{height:30.645040pt;}
.h14{height:30.945242pt;}
.h10{height:31.116995pt;}
.hc{height:31.157778pt;}
.h1c{height:31.213438pt;}
.h13{height:31.332188pt;}
.h1d{height:31.992188pt;}
.h17{height:32.845716pt;}
.h19{height:33.072865pt;}
.h15{height:33.219600pt;}
.h12{height:33.634800pt;}
.h16{height:34.574438pt;}
.h9{height:34.813542pt;}
.h2f{height:35.052646pt;}
.h25{height:35.085938pt;}
.h1f{height:35.203125pt;}
.h1a{height:35.503400pt;}
.h2e{height:36.438291pt;}
.ha{height:38.415786pt;}
.hb{height:38.681455pt;}
.h4{height:38.947124pt;}
.hd{height:41.524400pt;}
.h2{height:45.272024pt;}
.h1e{height:46.781250pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.h26{height:53.700134pt;}
.h20{height:54.018373pt;}
.h11{height:57.416195pt;}
.h18{height:60.605983pt;}
.h5{height:69.148877pt;}
.h3{height:91.114522pt;}
.h1b{height:234.225333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:52.080000pt;}
.w4{width:53.680000pt;}
.w2{width:176.724208pt;}
.w3{width:318.332000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x77{left:-139.480000pt;}
.x87{left:-125.480000pt;}
.x82{left:-111.160000pt;}
.x88{left:-109.480000pt;}
.x81{left:-96.199664pt;}
.x89{left:-93.480016pt;}
.x79{left:-87.079600pt;}
.x78{left:-83.800000pt;}
.x7f{left:-78.440000pt;}
.x7e{left:-66.360000pt;}
.x80{left:-59.239832pt;}
.x83{left:-36.280000pt;}
.x7a{left:-26.360000pt;}
.x0{left:0.000000pt;}
.x85{left:49.040000pt;}
.x7b{left:50.640000pt;}
.x2{left:51.605861pt;}
.x7d{left:65.080000pt;}
.x86{left:67.400000pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x3{left:109.605333pt;}
.x41{left:113.138667pt;}
.x65{left:115.240133pt;}
.x50{left:117.103067pt;}
.x74{left:119.494867pt;}
.x8b{left:124.216107pt;}
.x7c{left:126.040000pt;}
.x52{left:127.862267pt;}
.x4{left:129.929333pt;}
.x5{left:131.029333pt;}
.x69{left:133.044400pt;}
.x70{left:134.288267pt;}
.x57{left:139.266667pt;}
.x71{left:141.301800pt;}
.x8{left:142.924000pt;}
.x73{left:145.094200pt;}
.x72{left:147.877067pt;}
.x6b{left:149.779600pt;}
.x6e{left:150.710600pt;}
.x4f{left:152.405333pt;}
.x6a{left:155.066667pt;}
.x8a{left:158.473333pt;}
.x6c{left:160.132067pt;}
.x7{left:168.624000pt;}
.x91{left:170.664000pt;}
.x6d{left:171.744867pt;}
.x60{left:175.572000pt;}
.x6f{left:177.747600pt;}
.xf{left:179.024000pt;}
.x26{left:180.312000pt;}
.x92{left:183.946667pt;}
.x9{left:191.568000pt;}
.x3b{left:193.064000pt;}
.x61{left:201.296200pt;}
.x99{left:210.985333pt;}
.x9b{left:216.289333pt;}
.x2e{left:219.561333pt;}
.x98{left:221.665333pt;}
.xad{left:222.728000pt;}
.xae{left:224.509333pt;}
.x9a{left:231.776000pt;}
.x2f{left:232.845333pt;}
.xa{left:235.630667pt;}
.x55{left:238.182667pt;}
.x10{left:239.782667pt;}
.x76{left:241.552000pt;}
.x42{left:243.817333pt;}
.x11{left:246.425333pt;}
.x30{left:252.904000pt;}
.xd{left:255.560000pt;}
.x2a{left:260.422667pt;}
.x12{left:262.256000pt;}
.x4a{left:266.654667pt;}
.x13{left:268.897333pt;}
.x49{left:271.853333pt;}
.x23{left:274.412000pt;}
.x75{left:276.078667pt;}
.x4b{left:279.938667pt;}
.x24{left:281.054667pt;}
.x3f{left:284.025333pt;}
.x97{left:285.406667pt;}
.x48{left:287.397333pt;}
.x5b{left:289.228000pt;}
.x27{left:291.874667pt;}
.x2b{left:293.498667pt;}
.x40{left:294.950667pt;}
.x5c{left:298.549333pt;}
.xe{left:300.138667pt;}
.x66{left:301.079133pt;}
.x53{left:303.572000pt;}
.x84{left:305.085333pt;}
.x5d{left:307.556000pt;}
.x54{left:311.497333pt;}
.x67{left:313.163133pt;}
.x8d{left:317.922667pt;}
.x8e{left:331.206667pt;}
.x28{left:339.304000pt;}
.x3c{left:343.277333pt;}
.x31{left:348.681333pt;}
.x29{left:352.588000pt;}
.x32{left:361.964000pt;}
.x8c{left:366.282667pt;}
.x62{left:368.807800pt;}
.x68{left:372.339267pt;}
.xb{left:377.970667pt;}
.x59{left:388.862667pt;}
.x5a{left:397.604000pt;}
.x35{left:402.418667pt;}
.x5e{left:404.945333pt;}
.x5f{left:413.685333pt;}
.x36{left:415.702667pt;}
.x37{left:419.060000pt;}
.x19{left:420.770667pt;}
.x1a{left:427.413333pt;}
.x38{left:432.344000pt;}
.x25{left:440.577333pt;}
.x3d{left:445.120000pt;}
.x3e{left:456.046667pt;}
.x33{left:457.742667pt;}
.x14{left:463.342667pt;}
.x15{left:469.984000pt;}
.x34{left:471.025333pt;}
.x63{left:474.891133pt;}
.x16{left:476.758667pt;}
.x17{left:483.400000pt;}
.x51{left:486.105467pt;}
.x21{left:488.360000pt;}
.x56{left:496.649333pt;}
.x64{left:499.895133pt;}
.x22{left:501.642667pt;}
.xa5{left:510.466667pt;}
.x4c{left:516.410667pt;}
.xa1{left:528.384000pt;}
.x9d{left:535.864000pt;}
.x43{left:537.289333pt;}
.xaa{left:544.060000pt;}
.xa2{left:545.552000pt;}
.x44{left:548.214667pt;}
.x1d{left:551.757333pt;}
.x9e{left:559.773333pt;}
.x58{left:563.266667pt;}
.x1e{left:565.041333pt;}
.x1f{left:568.358667pt;}
.xc{left:569.512000pt;}
.x1b{left:578.124000pt;}
.x47{left:580.397333pt;}
.x20{left:581.642667pt;}
.x95{left:590.076000pt;}
.x1c{left:591.408000pt;}
.x8f{left:594.665333pt;}
.xa7{left:596.209333pt;}
.x45{left:601.361333pt;}
.x18{left:603.412000pt;}
.x46{left:607.073333pt;}
.x90{left:614.358667pt;}
.x93{left:615.540000pt;}
.x9c{left:617.990667pt;}
.x96{left:619.897333pt;}
.x94{left:628.822667pt;}
.x39{left:632.880000pt;}
.xa3{left:641.814667pt;}
.x3a{left:643.805333pt;}
.x9f{left:647.546667pt;}
.xa8{left:652.934667pt;}
.xab{left:654.482667pt;}
.x4d{left:656.204000pt;}
.x4e{left:661.916000pt;}
.xa4{left:665.725333pt;}
.xa0{left:671.457333pt;}
.x2c{left:672.441333pt;}
.xa9{left:676.844000pt;}
.xac{left:678.393333pt;}
.x2d{left:685.725333pt;}
.xa6{left:690.138667pt;}
}




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