
    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_8bc666a7d2de48f4663b245f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_3ec52f2072d1a1f695c23105.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_622e3ccec0384ca602d9a056.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8db5572adfe81ab659c3537c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_519a17ab89c913d1f0599644.woff')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_770aaf8719119eafee902b47.woff')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_213028ea54ea2f4283feade4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.697000;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_08757e546c38f6e07b58e440.woff')format("woff");}.ff8{font-family:ff8;line-height:0.697000;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_e95e8a89c4a739c2cffa28d0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.459000;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_f1f320b66026a6cb2c9f8de6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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_47e01be806e17fb29a07985f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e0333b15a9ca3bc7045dc846.woff')format("woff");}.ffc{font-family:ffc;line-height:0.704000;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_38aaaf95ead5301e1fd8dfda.woff')format("woff");}.ffd{font-family:ffd;line-height:0.715000;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_e7ec1f8fddc705944801a58d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.738000;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_21c1d043827b992c09404468.woff')format("woff");}.fff{font-family:fff;line-height:0.715000;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:ff10;src:url('chunks/assets/font_e7ec1f8fddc705944801a58d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.738000;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:ff11;src:url('chunks/assets/font_91b233d6151fd7bfc97c2314.woff')format("woff");}.ff11{font-family:ff11;line-height:0.715000;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:ff12;src:url('chunks/assets/font_e7ec1f8fddc705944801a58d.woff')format("woff");}.ff12{font-family:ff12;line-height:0.738000;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:ff13;src:url('chunks/assets/font_cd4dd11fc8b29f1db79888b2.woff')format("woff");}.ff13{font-family:ff13;line-height:0.715000;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:ff14;src:url('chunks/assets/font_e7ec1f8fddc705944801a58d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.738000;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:ff15;src:url('chunks/assets/font_9ae5094941bf1b6daf678919.woff')format("woff");}.ff15{font-family:ff15;line-height:0.640000;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:ff16;src:url('chunks/assets/font_770aaf8719119eafee902b47.woff')format("woff");}.ff16{font-family:ff16;line-height:0.906000;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:ff17;src:url('chunks/assets/font_700922e4e9e0733d19ffa9f3.woff')format("woff");}.ff17{font-family:ff17;line-height:0.702000;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:ff18;src:url('chunks/assets/font_10f641b9291201e40d2171c5.woff')format("woff");}.ff18{font-family:ff18;line-height:0.694000;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:ff19;src:url('chunks/assets/font_57eddfd0c67def99a793c782.woff')format("woff");}.ff19{font-family:ff19;line-height:0.906000;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:ff1a;src:url('chunks/assets/font_f4c2cfdee28d63bc4724867e.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.944000;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:ff1b;src:url('chunks/assets/font_0491a09a8420bb596639a477.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_57eddfd0c67def99a793c782.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.906000;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:ff1d;src:url('chunks/assets/font_6355a3dafafba8cbd707e104.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.697000;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:ff1e;src:url('chunks/assets/font_629ccfd910f498e71391ddc1.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.697000;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:ff1f;src:url('chunks/assets/font_20767d489562efaa94fdac8e.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.459000;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:ff20;src:url('chunks/assets/font_57eddfd0c67def99a793c782.woff')format("woff");}.ff20{font-family:ff20;line-height:0.906000;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:ff21;src:url('chunks/assets/font_6355a3dafafba8cbd707e104.woff')format("woff");}.ff21{font-family:ff21;line-height:0.697000;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:ff22;src:url('chunks/assets/font_629ccfd910f498e71391ddc1.woff')format("woff");}.ff22{font-family:ff22;line-height:0.697000;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:ff23;src:url('chunks/assets/font_20767d489562efaa94fdac8e.woff')format("woff");}.ff23{font-family:ff23;line-height:0.459000;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:ff24;src:url('chunks/assets/font_57eddfd0c67def99a793c782.woff')format("woff");}.ff24{font-family:ff24;line-height:0.906000;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:ff25;src:url('chunks/assets/font_6355a3dafafba8cbd707e104.woff')format("woff");}.ff25{font-family:ff25;line-height:0.697000;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:ff26;src:url('chunks/assets/font_629ccfd910f498e71391ddc1.woff')format("woff");}.ff26{font-family:ff26;line-height:0.697000;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:ff27;src:url('chunks/assets/font_20767d489562efaa94fdac8e.woff')format("woff");}.ff27{font-family:ff27;line-height:0.459000;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:ff28;src:url('chunks/assets/font_57eddfd0c67def99a793c782.woff')format("woff");}.ff28{font-family:ff28;line-height:0.906000;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:ff29;src:url('chunks/assets/font_6355a3dafafba8cbd707e104.woff')format("woff");}.ff29{font-family:ff29;line-height:0.697000;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:ff2a;src:url('chunks/assets/font_629ccfd910f498e71391ddc1.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.697000;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:ff2b;src:url('chunks/assets/font_20767d489562efaa94fdac8e.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.459000;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:ff2c;src:url('chunks/assets/font_4568ed3d0a8080fa16a21afa.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v4{vertical-align:-16.878000px;}
.v3{vertical-align:-1.112493px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.872000px;}
.v2{vertical-align:21.690000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000129px;}
.ls1e{letter-spacing:0.000134px;}
.ls10{letter-spacing:0.002338px;}
.lsc{letter-spacing:0.004200px;}
.lsb{letter-spacing:0.004503px;}
.ls31{letter-spacing:0.834017px;}
.ls2f{letter-spacing:2.449834px;}
.ls2{letter-spacing:2.455834px;}
.ls0{letter-spacing:2.964877px;}
.ls5{letter-spacing:2.984725px;}
.ls9{letter-spacing:2.986766px;}
.ls1{letter-spacing:2.987675px;}
.ls2e{letter-spacing:2.988600px;}
.ls4{letter-spacing:2.988780px;}
.ls30{letter-spacing:2.989200px;}
.ls7{letter-spacing:2.990725px;}
.ls6{letter-spacing:2.993108px;}
.ls8{letter-spacing:2.994017px;}
.ls17{letter-spacing:9.964200px;}
.ls2a{letter-spacing:13.816503px;}
.ls20{letter-spacing:14.602503px;}
.lse{letter-spacing:17.386503px;}
.ls1a{letter-spacing:17.656503px;}
.ls1b{letter-spacing:18.478503px;}
.ls24{letter-spacing:18.586503px;}
.ls19{letter-spacing:18.958503px;}
.ls1d{letter-spacing:19.918503px;}
.ls25{letter-spacing:20.020503px;}
.ls14{letter-spacing:21.154503px;}
.ls2b{letter-spacing:22.426503px;}
.ls18{letter-spacing:22.594503px;}
.ls11{letter-spacing:22.974538px;}
.ls1f{letter-spacing:23.002503px;}
.ls13{letter-spacing:23.626503px;}
.ls28{letter-spacing:24.262503px;}
.ls15{letter-spacing:24.820503px;}
.ls16{letter-spacing:24.826503px;}
.ls2c{letter-spacing:25.540503px;}
.ls26{letter-spacing:27.514503px;}
.ls29{letter-spacing:27.940503px;}
.lsf{letter-spacing:28.414503px;}
.ls21{letter-spacing:28.432503px;}
.ls2d{letter-spacing:29.404503px;}
.ls27{letter-spacing:31.636503px;}
.ls1c{letter-spacing:31.714503px;}
.ls23{letter-spacing:31.750503px;}
.ls12{letter-spacing:32.992503px;}
.lsd{letter-spacing:33.784503px;}
.ls22{letter-spacing:35.518503px;}
.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;}
}
.ws3{word-spacing:-59.775600px;}
.wsa7{word-spacing:-14.943900px;}
.ws1e{word-spacing:-14.920027px;}
.ws48{word-spacing:-11.955150px;}
.ws14f{word-spacing:-1.195512px;}
.ws17e{word-spacing:-1.135736px;}
.ws27{word-spacing:-1.075961px;}
.ws79{word-spacing:-0.836858px;}
.ws1bb{word-spacing:-0.812950px;}
.ws6b{word-spacing:-0.777083px;}
.ws19d{word-spacing:-0.669488px;}
.ws127{word-spacing:-0.657532px;}
.wsff{word-spacing:-0.597756px;}
.ws91{word-spacing:-0.537980px;}
.ws40{word-spacing:-0.478205px;}
.ws1c1{word-spacing:-0.430385px;}
.ws38{word-spacing:-0.358654px;}
.ws28{word-spacing:-0.298878px;}
.wsef{word-spacing:-0.239102px;}
.ws1bd{word-spacing:-0.191282px;}
.ws11b{word-spacing:-0.179327px;}
.wsd8{word-spacing:-0.119551px;}
.ws13d{word-spacing:-0.067640px;}
.ws2a{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws14a{word-spacing:-0.049890px;}
.wsa2{word-spacing:-0.047821px;}
.ws120{word-spacing:-0.029888px;}
.ws196{word-spacing:-0.016652px;}
.ws99{word-spacing:-0.007455px;}
.ws98{word-spacing:-0.004020px;}
.ws51{word-spacing:0.000000px;}
.ws100{word-spacing:0.004589px;}
.wsfa{word-spacing:0.059776px;}
.ws11d{word-spacing:0.119551px;}
.ws5c{word-spacing:0.179327px;}
.ws1b8{word-spacing:0.191282px;}
.ws4e{word-spacing:0.418429px;}
.ws20{word-spacing:0.478205px;}
.ws1a0{word-spacing:0.573847px;}
.ws1af{word-spacing:0.621668px;}
.ws114{word-spacing:0.657532px;}
.wsc6{word-spacing:0.717307px;}
.ws15{word-spacing:0.753178px;}
.ws178{word-spacing:0.777083px;}
.ws150{word-spacing:0.836858px;}
.ws128{word-spacing:0.896634px;}
.ws10a{word-spacing:0.956410px;}
.ws25{word-spacing:1.016185px;}
.ws8b{word-spacing:1.075961px;}
.ws4d{word-spacing:1.135736px;}
.ws1ee{word-spacing:1.195515px;}
.ws10b{word-spacing:1.255288px;}
.ws1a4{word-spacing:1.291156px;}
.ws1f2{word-spacing:1.338977px;}
.ws179{word-spacing:1.374839px;}
.ws6d{word-spacing:1.434614px;}
.wsc3{word-spacing:1.494390px;}
.wse4{word-spacing:1.613941px;}
.ws1c9{word-spacing:1.625900px;}
.ws53{word-spacing:1.793268px;}
.ws49{word-spacing:1.853044px;}
.ws1cd{word-spacing:1.893972px;}
.ws15f{word-spacing:1.912819px;}
.ws1ce{word-spacing:1.912824px;}
.ws109{word-spacing:2.032370px;}
.ws141{word-spacing:2.092146px;}
.wse2{word-spacing:2.151922px;}
.wsc{word-spacing:2.151936px;}
.wse1{word-spacing:2.271473px;}
.ws1a2{word-spacing:2.295389px;}
.ws8c{word-spacing:2.331248px;}
.wsa9{word-spacing:2.391024px;}
.ws1b5{word-spacing:2.391030px;}
.ws1e0{word-spacing:2.438851px;}
.wsb3{word-spacing:2.442618px;}
.wsb4{word-spacing:2.450800px;}
.wsb8{word-spacing:2.510575px;}
.ws1c2{word-spacing:2.534492px;}
.wscb{word-spacing:2.570351px;}
.ws1c3{word-spacing:2.582312px;}
.ws139{word-spacing:2.689902px;}
.ws14{word-spacing:2.743718px;}
.ws30{word-spacing:2.749678px;}
.ws1ae{word-spacing:2.773595px;}
.ws8e{word-spacing:2.809453px;}
.ws8{word-spacing:2.851315px;}
.ws1dc{word-spacing:2.867074px;}
.ws52{word-spacing:2.869229px;}
.ws1dd{word-spacing:2.869236px;}
.ws1d3{word-spacing:2.964877px;}
.ws154{word-spacing:2.988780px;}
.ws189{word-spacing:3.048556px;}
.ws9d{word-spacing:3.108331px;}
.ws16{word-spacing:3.120307px;}
.ws1cc{word-spacing:3.156160px;}
.ws143{word-spacing:3.168107px;}
.wsf{word-spacing:3.174106px;}
.ws83{word-spacing:3.227882px;}
.ws88{word-spacing:3.287658px;}
.ws112{word-spacing:3.347434px;}
.ws1a9{word-spacing:3.347442px;}
.ws1a8{word-spacing:3.395263px;}
.wscf{word-spacing:3.466985px;}
.ws7a{word-spacing:3.526760px;}
.ws32{word-spacing:3.586536px;}
.ws16a{word-spacing:3.629880px;}
.ws169{word-spacing:3.634876px;}
.ws167{word-spacing:3.638696px;}
.ws3d{word-spacing:3.646312px;}
.ws6a{word-spacing:3.706087px;}
.ws103{word-spacing:3.765863px;}
.wsd6{word-spacing:3.825638px;}
.ws1bf{word-spacing:3.825648px;}
.ws87{word-spacing:3.885414px;}
.wsc9{word-spacing:4.004965px;}
.ws138{word-spacing:4.011025px;}
.ws181{word-spacing:4.184292px;}
.ws5{word-spacing:4.196275px;}
.ws23{word-spacing:4.244068px;}
.wsfc{word-spacing:4.303843px;}
.ws1ef{word-spacing:4.351675px;}
.ws5f{word-spacing:4.423394px;}
.ws1e4{word-spacing:4.447316px;}
.ws26{word-spacing:4.483170px;}
.ws1a6{word-spacing:4.495136px;}
.wse{word-spacing:4.519066px;}
.ws1d5{word-spacing:4.542957px;}
.ws1ad{word-spacing:4.590778px;}
.wsc8{word-spacing:4.602721px;}
.ws14e{word-spacing:4.662497px;}
.ws1c4{word-spacing:4.686419px;}
.ws195{word-spacing:4.722272px;}
.ws1cb{word-spacing:4.734239px;}
.ws1ab{word-spacing:4.780136px;}
.ws1a7{word-spacing:4.780526px;}
.ws59{word-spacing:4.782048px;}
.wsf7{word-spacing:4.782060px;}
.ws1e5{word-spacing:4.829881px;}
.ws18a{word-spacing:4.841824px;}
.wsb{word-spacing:4.841856px;}
.ws89{word-spacing:4.901599px;}
.ws1ac{word-spacing:4.925522px;}
.ws54{word-spacing:4.961375px;}
.ws145{word-spacing:4.971025px;}
.ws1ec{word-spacing:4.973342px;}
.ws129{word-spacing:5.021150px;}
.ws1c8{word-spacing:5.021163px;}
.wse7{word-spacing:5.080926px;}
.ws2e{word-spacing:5.140702px;}
.ws76{word-spacing:5.200477px;}
.wsaa{word-spacing:5.260253px;}
.ws1b7{word-spacing:5.308087px;}
.ws187{word-spacing:5.320028px;}
.ws1c0{word-spacing:5.355907px;}
.ws4a{word-spacing:5.379804px;}
.wsdb{word-spacing:5.379840px;}
.wsc7{word-spacing:5.439580px;}
.wsab{word-spacing:5.499355px;}
.ws183{word-spacing:5.559131px;}
.wsd7{word-spacing:5.618906px;}
.ws1e7{word-spacing:5.642831px;}
.ws19{word-spacing:5.648832px;}
.ws29{word-spacing:5.678682px;}
.ws6e{word-spacing:5.738458px;}
.ws75{word-spacing:5.798233px;}
.ws161{word-spacing:5.858009px;}
.ws1de{word-spacing:5.881934px;}
.ws13f{word-spacing:5.917784px;}
.ws9b{word-spacing:5.923784px;}
.ws46{word-spacing:5.925050px;}
.ws47{word-spacing:5.961520px;}
.ws2{word-spacing:5.977560px;}
.ws9a{word-spacing:5.977575px;}
.wsda{word-spacing:6.015675px;}
.ws2b{word-spacing:6.097111px;}
.ws1d9{word-spacing:6.121037px;}
.ws1d8{word-spacing:6.130423px;}
.ws65{word-spacing:6.156887px;}
.ws1a1{word-spacing:6.168857px;}
.ws134{word-spacing:6.197650px;}
.ws10c{word-spacing:6.216662px;}
.ws1d4{word-spacing:6.312319px;}
.ws164{word-spacing:6.336214px;}
.ws172{word-spacing:6.395989px;}
.ws1a5{word-spacing:6.407960px;}
.ws132{word-spacing:6.455765px;}
.ws152{word-spacing:6.515540px;}
.ws1{word-spacing:6.575340px;}
.ws9c{word-spacing:6.635092px;}
.wsfe{word-spacing:6.694867px;}
.ws1b6{word-spacing:6.694884px;}
.ws9{word-spacing:6.724800px;}
.ws1cf{word-spacing:6.742705px;}
.ws4f{word-spacing:6.754643px;}
.ws10e{word-spacing:6.814418px;}
.ws36{word-spacing:6.874194px;}
.ws1df{word-spacing:6.886166px;}
.wsd{word-spacing:6.886195px;}
.ws77{word-spacing:6.933970px;}
.ws3e{word-spacing:6.993745px;}
.ws118{word-spacing:7.053521px;}
.ws147{word-spacing:7.113296px;}
.ws3b{word-spacing:7.173072px;}
.ws43{word-spacing:7.292623px;}
.ws124{word-spacing:7.300208px;}
.ws3f{word-spacing:7.352399px;}
.ws5e{word-spacing:7.412174px;}
.ws1da{word-spacing:7.412193px;}
.ws1b2{word-spacing:7.460014px;}
.ws39{word-spacing:7.471950px;}
.ws17f{word-spacing:7.472717px;}
.ws7{word-spacing:7.477978px;}
.ws6f{word-spacing:7.531726px;}
.ws11{word-spacing:7.531776px;}
.wse8{word-spacing:7.591501px;}
.ws137{word-spacing:7.651277px;}
.ws1ba{word-spacing:7.651296px;}
.ws7b{word-spacing:7.711052px;}
.ws116{word-spacing:7.770828px;}
.ws1ed{word-spacing:7.794758px;}
.wse9{word-spacing:7.830604px;}
.wsdf{word-spacing:7.842820px;}
.wsd9{word-spacing:7.866951px;}
.ws8f{word-spacing:7.890379px;}
.ws117{word-spacing:7.950155px;}
.ws1b1{word-spacing:7.986040px;}
.ws113{word-spacing:8.009930px;}
.ws1ca{word-spacing:8.033861px;}
.ws157{word-spacing:8.038486px;}
.ws156{word-spacing:8.056876px;}
.ws155{word-spacing:8.069706px;}
.ws69{word-spacing:8.129482px;}
.ws8a{word-spacing:8.189257px;}
.ws111{word-spacing:8.249033px;}
.ws1d7{word-spacing:8.272964px;}
.ws108{word-spacing:8.308808px;}
.wscd{word-spacing:8.368584px;}
.ws107{word-spacing:8.428360px;}
.ws1d6{word-spacing:8.464246px;}
.ws15e{word-spacing:8.488135px;}
.ws1c7{word-spacing:8.512067px;}
.ws33{word-spacing:8.607686px;}
.ws12d{word-spacing:8.667462px;}
.wsb7{word-spacing:8.727238px;}
.ws1b3{word-spacing:8.751170px;}
.ws68{word-spacing:8.787013px;}
.ws62{word-spacing:8.846789px;}
.ws21{word-spacing:8.906564px;}
.ws10f{word-spacing:8.966340px;}
.ws1c5{word-spacing:8.990273px;}
.wsa8{word-spacing:9.026116px;}
.ws5d{word-spacing:9.085891px;}
.ws1d2{word-spacing:9.085914px;}
.ws1d1{word-spacing:9.101778px;}
.ws16b{word-spacing:9.145667px;}
.ws1c6{word-spacing:9.181555px;}
.ws2c{word-spacing:9.205442px;}
.ws184{word-spacing:9.265218px;}
.ws176{word-spacing:9.303198px;}
.ws174{word-spacing:9.315025px;}
.ws175{word-spacing:9.316876px;}
.ws177{word-spacing:9.324994px;}
.ws1be{word-spacing:9.325017px;}
.wsce{word-spacing:9.384769px;}
.ws142{word-spacing:9.444545px;}
.ws64{word-spacing:9.504320px;}
.ws56{word-spacing:9.564096px;}
.ws16c{word-spacing:9.623872px;}
.ws95{word-spacing:9.683647px;}
.ws7d{word-spacing:9.803198px;}
.ws1b4{word-spacing:9.851044px;}
.wsba{word-spacing:9.862974px;}
.ws135{word-spacing:9.873025px;}
.ws168{word-spacing:9.880699px;}
.ws15b{word-spacing:9.900824px;}
.ws159{word-spacing:9.902624px;}
.ws158{word-spacing:9.905024px;}
.ws133{word-spacing:9.906824px;}
.ws136{word-spacing:9.908624px;}
.wsac{word-spacing:9.922750px;}
.ws41{word-spacing:9.982525px;}
.wsb5{word-spacing:10.042301px;}
.ws115{word-spacing:10.102076px;}
.ws78{word-spacing:10.161852px;}
.ws19c{word-spacing:10.221628px;}
.ws12e{word-spacing:10.281403px;}
.ws1a3{word-spacing:10.281429px;}
.wsa{word-spacing:10.383091px;}
.ws10d{word-spacing:10.400954px;}
.wsc0{word-spacing:10.460730px;}
.ws126{word-spacing:10.520506px;}
.ws2f{word-spacing:10.580281px;}
.wsb1{word-spacing:10.640057px;}
.ws50{word-spacing:10.759608px;}
.ws42{word-spacing:10.819384px;}
.ws13a{word-spacing:10.851235px;}
.wse0{word-spacing:10.879159px;}
.ws3c{word-spacing:10.998710px;}
.ws1bc{word-spacing:10.998738px;}
.ws22{word-spacing:11.058486px;}
.ws180{word-spacing:11.118262px;}
.ws1e6{word-spacing:11.190020px;}
.ws110{word-spacing:11.237813px;}
.ws7e{word-spacing:11.297588px;}
.wsf2{word-spacing:11.357364px;}
.ws73{word-spacing:11.417140px;}
.wsbd{word-spacing:11.476915px;}
.ws12c{word-spacing:11.536691px;}
.ws17{word-spacing:11.566656px;}
.ws61{word-spacing:11.596466px;}
.ws105{word-spacing:11.656242px;}
.ws94{word-spacing:11.716018px;}
.ws5a{word-spacing:11.775793px;}
.ws104{word-spacing:11.835569px;}
.ws119{word-spacing:11.895344px;}
.ws97{word-spacing:11.955120px;}
.wsfb{word-spacing:12.074671px;}
.wsb2{word-spacing:12.134447px;}
.wsb9{word-spacing:12.194222px;}
.ws1db{word-spacing:12.194253px;}
.wsed{word-spacing:12.253998px;}
.ws1e8{word-spacing:12.289894px;}
.ws19b{word-spacing:12.308683px;}
.ws9e{word-spacing:12.313774px;}
.ws1e3{word-spacing:12.385535px;}
.ws163{word-spacing:12.433325px;}
.ws66{word-spacing:12.493100px;}
.ws171{word-spacing:12.552876px;}
.ws170{word-spacing:12.566683px;}
.ws1ea{word-spacing:12.576818px;}
.ws80{word-spacing:12.612652px;}
.ws24{word-spacing:12.672427px;}
.wsf0{word-spacing:12.732203px;}
.ws153{word-spacing:12.791978px;}
.ws34{word-spacing:12.851754px;}
.ws84{word-spacing:12.971305px;}
.ws70{word-spacing:13.031081px;}
.ws57{word-spacing:13.150632px;}
.ws1f1{word-spacing:13.198486px;}
.ws63{word-spacing:13.210408px;}
.ws1e2{word-spacing:13.246306px;}
.ws44{word-spacing:13.270183px;}
.wsec{word-spacing:13.329959px;}
.wsd3{word-spacing:13.389734px;}
.ws96{word-spacing:13.449510px;}
.ws15c{word-spacing:13.464906px;}
.ws15a{word-spacing:13.492876px;}
.ws7c{word-spacing:13.748388px;}
.wsbb{word-spacing:13.808164px;}
.ws144{word-spacing:13.867939px;}
.ws6c{word-spacing:14.047266px;}
.ws146{word-spacing:14.067025px;}
.wsee{word-spacing:14.107042px;}
.ws1b9{word-spacing:14.154898px;}
.ws13e{word-spacing:14.166817px;}
.wsfd{word-spacing:14.226593px;}
.wsea{word-spacing:14.286368px;}
.ws5b{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws1a{word-spacing:14.364173px;}
.ws90{word-spacing:14.405920px;}
.ws160{word-spacing:14.465695px;}
.ws9f{word-spacing:14.525471px;}
.ws7f{word-spacing:14.585246px;}
.ws1e9{word-spacing:14.585283px;}
.ws82{word-spacing:14.704798px;}
.ws197{word-spacing:14.764573px;}
.ws85{word-spacing:14.824349px;}
.ws6{word-spacing:14.848358px;}
.ws11c{word-spacing:14.943900px;}
.wsf3{word-spacing:15.003676px;}
.ws55{word-spacing:15.063451px;}
.ws3a{word-spacing:15.123227px;}
.wsd5{word-spacing:15.183002px;}
.ws31{word-spacing:15.302554px;}
.ws1d0{word-spacing:15.302592px;}
.wse6{word-spacing:15.422105px;}
.ws17a{word-spacing:15.481880px;}
.wsd1{word-spacing:15.541656px;}
.wsad{word-spacing:15.601432px;}
.ws1e1{word-spacing:15.732977px;}
.ws198{word-spacing:15.780758px;}
.ws35{word-spacing:15.840534px;}
.ws58{word-spacing:15.900310px;}
.ws188{word-spacing:15.960085px;}
.wsbf{word-spacing:16.019861px;}
.ws130{word-spacing:16.139412px;}
.ws18{word-spacing:16.139520px;}
.ws12f{word-spacing:16.141775px;}
.ws122{word-spacing:16.199188px;}
.ws148{word-spacing:16.258963px;}
.wsae{word-spacing:16.318739px;}
.wsca{word-spacing:16.378514px;}
.ws11a{word-spacing:16.438290px;}
.wsc2{word-spacing:16.498066px;}
.wsc5{word-spacing:16.557841px;}
.ws13b{word-spacing:16.617617px;}
.ws102{word-spacing:16.677392px;}
.ws186{word-spacing:16.689389px;}
.ws173{word-spacing:16.690426px;}
.ws4c{word-spacing:16.737168px;}
.ws12{word-spacing:16.785101px;}
.ws1f{word-spacing:16.796944px;}
.ws18b{word-spacing:16.916495px;}
.ws16d{word-spacing:17.095822px;}
.ws17d{word-spacing:17.155597px;}
.ws1f0{word-spacing:17.263237px;}
.wsa1{word-spacing:17.285879px;}
.ws10{word-spacing:17.376883px;}
.ws74{word-spacing:17.394700px;}
.ws60{word-spacing:17.454475px;}
.ws16e{word-spacing:17.514251px;}
.ws106{word-spacing:17.633802px;}
.ws151{word-spacing:17.693578px;}
.wsf4{word-spacing:17.813129px;}
.ws1d{word-spacing:17.932680px;}
.ws182{word-spacing:17.988340px;}
.ws149{word-spacing:18.033839px;}
.ws12b{word-spacing:18.046892px;}
.ws72{word-spacing:18.052231px;}
.ws13{word-spacing:18.076262px;}
.ws67{word-spacing:18.112007px;}
.ws1aa{word-spacing:18.171828px;}
.ws19e{word-spacing:18.315290px;}
.wsc4{word-spacing:18.410885px;}
.wseb{word-spacing:18.470660px;}
.ws8d{word-spacing:18.590212px;}
.wsa3{word-spacing:18.775642px;}
.wsaf{word-spacing:18.829314px;}
.wsb0{word-spacing:18.839650px;}
.ws166{word-spacing:18.889090px;}
.wsbe{word-spacing:19.008641px;}
.ws4b{word-spacing:19.187968px;}
.wsd2{word-spacing:19.307519px;}
.wse3{word-spacing:19.349264px;}
.ws19f{word-spacing:19.415164px;}
.wse5{word-spacing:19.546621px;}
.ws14b{word-spacing:19.588064px;}
.ws86{word-spacing:19.785724px;}
.ws16f{word-spacing:19.845499px;}
.ws17c{word-spacing:19.965050px;}
.wsf5{word-spacing:20.144377px;}
.ws92{word-spacing:20.204153px;}
.ws199{word-spacing:20.443255px;}
.ws81{word-spacing:20.562806px;}
.ws15d{word-spacing:20.572876px;}
.wsc1{word-spacing:20.622582px;}
.ws17b{word-spacing:20.682358px;}
.ws11f{word-spacing:20.861684px;}
.wsd0{word-spacing:20.921460px;}
.ws93{word-spacing:21.041011px;}
.ws162{word-spacing:21.090340px;}
.wsa0{word-spacing:21.100787px;}
.ws101{word-spacing:21.280114px;}
.wsd4{word-spacing:21.339889px;}
.wscc{word-spacing:21.818094px;}
.ws37{word-spacing:21.877870px;}
.ws12a{word-spacing:22.057196px;}
.wsb6{word-spacing:22.116972px;}
.ws123{word-spacing:22.187504px;}
.ws2d{word-spacing:22.236523px;}
.ws19a{word-spacing:22.296299px;}
.ws194{word-spacing:22.356074px;}
.ws1b0{word-spacing:22.714785px;}
.ws131{word-spacing:22.774504px;}
.ws71{word-spacing:23.133157px;}
.ws45{word-spacing:23.312484px;}
.ws13c{word-spacing:23.551586px;}
.ws140{word-spacing:23.790689px;}
.ws125{word-spacing:25.523504px;}
.ws1eb{word-spacing:25.679662px;}
.wsf1{word-spacing:27.604064px;}
.wsbc{word-spacing:30.204340px;}
.ws121{word-spacing:31.382190px;}
.wsa6{word-spacing:35.506706px;}
.wsdd{word-spacing:36.273965px;}
.ws165{word-spacing:45.788110px;}
.wsf9{word-spacing:54.512287px;}
.ws1c{word-spacing:72.681638px;}
.ws1b{word-spacing:86.131238px;}
.wsdc{word-spacing:98.680836px;}
.ws18c{word-spacing:107.596350px;}
.wsa5{word-spacing:130.682925px;}
.ws14d{word-spacing:136.366252px;}
.wsf6{word-spacing:139.444870px;}
.wsa4{word-spacing:143.388010px;}
.ws11e{word-spacing:152.111208px;}
.wsde{word-spacing:184.835883px;}
.ws18f{word-spacing:192.567820px;}
.ws192{word-spacing:193.817239px;}
.ws18e{word-spacing:202.803102px;}
.ws190{word-spacing:219.354010px;}
.ws193{word-spacing:222.459820px;}
.ws191{word-spacing:280.515086px;}
.ws18d{word-spacing:304.113086px;}
.ws14c{word-spacing:319.536674px;}
.ws185{word-spacing:338.714045px;}
.wsf8{word-spacing:679.225727px;}
._19{margin-left:-308.274174px;}
._1c{margin-left:-294.456332px;}
._e{margin-left:-7.890368px;}
._d{margin-left:-6.575316px;}
._2{margin-left:-5.499355px;}
._1{margin-left:-3.586545px;}
._0{margin-left:-2.151927px;}
._3{margin-left:-1.075968px;}
._b{width:1.131085px;}
._5{width:2.988780px;}
._15{width:4.870866px;}
._3d{width:7.986098px;}
._18{width:13.808164px;}
._4{width:15.547738px;}
._9{width:17.514251px;}
._2d{width:18.658679px;}
._16{width:20.921460px;}
._6{width:22.834279px;}
._26{width:23.908027px;}
._7{width:24.986206px;}
._8{width:26.600142px;}
._37{width:27.968910px;}
._c{width:29.887800px;}
._17{width:31.143093px;}
._2e{width:32.698684px;}
._f{width:33.713447px;}
._34{width:34.736040px;}
._a{width:35.865360px;}
._3c{width:38.256389px;}
._3e{width:47.342734px;}
._14{width:57.205650px;}
._33{width:59.680938px;}
._27{width:71.730900px;}
._10{width:75.737400px;}
._2f{width:79.014557px;}
._13{width:81.115950px;}
._32{width:84.625837px;}
._12{width:110.999400px;}
._31{width:115.802344px;}
._24{width:116.873546px;}
._11{width:128.939400px;}
._38{width:130.736256px;}
._30{width:134.518608px;}
._2c{width:140.573480px;}
._35{width:146.782142px;}
._1e{width:161.633628px;}
._29{width:163.742096px;}
._1f{width:166.367867px;}
._22{width:185.878672px;}
._36{width:222.488964px;}
._3b{width:223.538329px;}
._20{width:236.377226px;}
._39{width:237.620989px;}
._28{width:259.857140px;}
._3a{width:270.761371px;}
._25{width:275.829221px;}
._21{width:283.767440px;}
._23{width:302.369654px;}
._2a{width:363.388739px;}
._1a{width:397.958106px;}
._1d{width:411.774218px;}
._1b{width:414.243048px;}
._2b{width:498.864499px;}
.fc6{color:rgb(84,161,38);}
.fc5{color:rgb(200,28,34);}
.fc4{color:transparent;}
.fc3{color:rgb(211,210,210);}
.fc2{color:rgb(237,28,36);}
.fc1{color:rgb(139,193,31);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:17.236892px;}
.fs7{font-size:24.131753px;}
.fs9{font-size:29.887800px;}
.fsd{font-size:31.181045px;}
.fs5{font-size:35.865600px;}
.fsb{font-size:37.417505px;}
.fs6{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fsa{font-size:49.889797px;}
.fs3{font-size:53.798400px;}
.fsc{font-size:56.126257px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fsf{font-size:71.731200px;}
.fse{font-size:83.686200px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.yc0{bottom:7.078500px;}
.y143{bottom:7.176000px;}
.y18e{bottom:7.312500px;}
.y1e5{bottom:7.384787px;}
.y101{bottom:10.776734px;}
.y105{bottom:11.035393px;}
.y140{bottom:11.760000px;}
.y13f{bottom:13.078500px;}
.y142{bottom:20.625000px;}
.yb7{bottom:26.775000px;}
.y188{bottom:27.763500px;}
.y1dc{bottom:27.933554px;}
.y106{bottom:34.904248px;}
.yb8{bottom:35.209500px;}
.y189{bottom:36.414000px;}
.y1dd{bottom:36.733015px;}
.yc3{bottom:45.292500px;}
.y144{bottom:49.246500px;}
.y100{bottom:54.935608px;}
.y104{bottom:55.194267px;}
.yb9{bottom:59.010000px;}
.yc2{bottom:61.215000px;}
.y1de{bottom:61.563363px;}
.y141{bottom:66.876000px;}
.y18f{bottom:70.945500px;}
.yba{bottom:82.812000px;}
.y18a{bottom:83.379000px;}
.y1df{bottom:86.395275px;}
.yc1{bottom:89.031000px;}
.y1e6{bottom:92.883371px;}
.ybb{bottom:106.612500px;}
.y1e0{bottom:111.225623px;}
.y18b{bottom:130.342500px;}
.ybc{bottom:130.414500px;}
.y1e1{bottom:136.057535px;}
.y193{bottom:138.754500px;}
.y232{bottom:142.978500px;}
.y192{bottom:152.070000px;}
.ybd{bottom:154.215000px;}
.y231{bottom:159.352500px;}
.y1e2{bottom:160.887883px;}
.y191{bottom:165.384000px;}
.y1e9{bottom:165.690576px;}
.y256{bottom:172.681500px;}
.y230{bottom:175.725000px;}
.y18c{bottom:177.307500px;}
.ybe{bottom:178.017000px;}
.y190{bottom:178.699500px;}
.y1e8{bottom:179.580673px;}
.y210{bottom:184.504500px;}
.y1e3{bottom:185.719796px;}
.y35{bottom:188.167500px;}
.y255{bottom:189.054000px;}
.y2a5{bottom:192.387000px;}
.y31f{bottom:192.651000px;}
.y1e7{bottom:193.527107px;}
.y2e0{bottom:201.618000px;}
.ybf{bottom:201.817500px;}
.y34{bottom:206.100000px;}
.y2a4{bottom:207.181500px;}
.y1e4{bottom:210.550143px;}
.y2df{bottom:215.067000px;}
.y31e{bottom:219.550500px;}
.y2a3{bottom:221.976000px;}
.y33{bottom:224.032500px;}
.y18d{bottom:224.272500px;}
.y20f{bottom:224.275500px;}
.y2de{bottom:228.516000px;}
.y31d{bottom:232.999500px;}
.y58{bottom:241.965000px;}
.y32{bottom:241.966500px;}
.y1b7{bottom:242.124000px;}
.y20e{bottom:242.209500px;}
.y2dd{bottom:242.583000px;}
.y132{bottom:244.122000px;}
.y31c{bottom:246.450000px;}
.y2a2{bottom:247.195500px;}
.y8b{bottom:247.551000px;}
.y254{bottom:248.137500px;}
.y186{bottom:249.544500px;}
.y2dc{bottom:256.033500px;}
.yb5{bottom:259.897500px;}
.y31{bottom:259.899000px;}
.y1b6{bottom:260.056500px;}
.y20d{bottom:260.142000px;}
.y131{bottom:262.054500px;}
.y2a1{bottom:265.128000px;}
.y2db{bottom:269.482500px;}
.y31b{bottom:273.348000px;}
.y8a{bottom:277.705500px;}
.y57{bottom:277.831500px;}
.y30{bottom:277.927500px;}
.y163{bottom:277.929000px;}
.y1b5{bottom:277.990500px;}
.y1da{bottom:278.040000px;}
.y20c{bottom:278.074500px;}
.y253{bottom:278.232000px;}
.y130{bottom:279.988500px;}
.y2a0{bottom:283.060500px;}
.y2da{bottom:283.549500px;}
.y185{bottom:284.541000px;}
.y31a{bottom:286.798500px;}
.y89{bottom:295.638000px;}
.y56{bottom:295.764000px;}
.y2f{bottom:295.860000px;}
.y162{bottom:295.861500px;}
.y1b4{bottom:295.923000px;}
.y1d9{bottom:295.972500px;}
.y20b{bottom:296.007000px;}
.y252{bottom:296.164500px;}
.y274{bottom:296.811000px;}
.y2d9{bottom:296.998500px;}
.y12f{bottom:297.921000px;}
.y319{bottom:300.247500px;}
.y29f{bottom:300.993000px;}
.y184{bottom:302.473500px;}
.y2d8{bottom:310.449000px;}
.y88{bottom:313.570500px;}
.y55{bottom:313.696500px;}
.y2e{bottom:313.792500px;}
.y161{bottom:313.794000px;}
.y1b3{bottom:313.855500px;}
.y1d8{bottom:313.906500px;}
.y20a{bottom:313.939500px;}
.y22f{bottom:313.966500px;}
.y251{bottom:314.098500px;}
.y273{bottom:314.743500px;}
.y12e{bottom:315.853500px;}
.y29e{bottom:318.925500px;}
.y183{bottom:320.406000px;}
.y2d7{bottom:324.514500px;}
.y318{bottom:327.147000px;}
.y87{bottom:331.504500px;}
.ye4{bottom:331.629000px;}
.y2d{bottom:331.726500px;}
.y1b2{bottom:331.788000px;}
.y1d7{bottom:331.839000px;}
.y209{bottom:331.872000px;}
.y22e{bottom:331.899000px;}
.y250{bottom:332.031000px;}
.y272{bottom:332.676000px;}
.y12d{bottom:333.786000px;}
.y29d{bottom:336.859500px;}
.yb4{bottom:337.767000px;}
.y2d6{bottom:337.965000px;}
.y182{bottom:338.338500px;}
.y54{bottom:338.349000px;}
.y317{bottom:340.596000px;}
.y86{bottom:349.437000px;}
.yfe{bottom:349.561500px;}
.ye3{bottom:349.563000px;}
.y2c{bottom:349.659000px;}
.y160{bottom:349.660500px;}
.y1b1{bottom:349.720500px;}
.y1d6{bottom:349.771500px;}
.y208{bottom:349.806000px;}
.y22d{bottom:349.831500px;}
.y24f{bottom:349.963500px;}
.y271{bottom:350.608500px;}
.y12c{bottom:351.718500px;}
.y2d5{bottom:352.032000px;}
.y316{bottom:354.046500px;}
.y29c{bottom:354.792000px;}
.yb3{bottom:355.699500px;}
.y181{bottom:356.272500px;}
.y2d4{bottom:365.481000px;}
.y85{bottom:367.369500px;}
.yfd{bottom:367.494000px;}
.ye2{bottom:367.495500px;}
.y2b{bottom:367.591500px;}
.y15f{bottom:367.593000px;}
.y1b0{bottom:367.653000px;}
.y1d5{bottom:367.704000px;}
.y207{bottom:367.738500px;}
.y22c{bottom:367.765500px;}
.y24e{bottom:367.896000px;}
.y270{bottom:368.542500px;}
.y12b{bottom:369.651000px;}
.y53{bottom:371.253000px;}
.y29b{bottom:372.724500px;}
.y180{bottom:374.205000px;}
.y2d3{bottom:379.548000px;}
.y315{bottom:380.946000px;}
.y84{bottom:385.302000px;}
.ye1{bottom:385.428000px;}
.y2a{bottom:385.524000px;}
.y15e{bottom:385.525500px;}
.y1af{bottom:385.587000px;}
.y1d4{bottom:385.636500px;}
.y206{bottom:385.671000px;}
.y22b{bottom:385.698000px;}
.yb2{bottom:385.744500px;}
.y24d{bottom:385.828500px;}
.y26f{bottom:386.475000px;}
.y12a{bottom:387.585000px;}
.y52{bottom:389.185500px;}
.y29a{bottom:390.657000px;}
.y17f{bottom:392.137500px;}
.y2d2{bottom:392.997000px;}
.y314{bottom:394.395000px;}
.y83{bottom:403.234500px;}
.ye0{bottom:403.360500px;}
.y29{bottom:403.456500px;}
.y15d{bottom:403.458000px;}
.y1ae{bottom:403.519500px;}
.y1d3{bottom:403.569000px;}
.y205{bottom:403.603500px;}
.y22a{bottom:403.630500px;}
.yb1{bottom:403.678500px;}
.y24c{bottom:403.761000px;}
.y26e{bottom:404.407500px;}
.y129{bottom:405.517500px;}
.y2d1{bottom:406.447500px;}
.y313{bottom:407.844000px;}
.y299{bottom:408.589500px;}
.y17e{bottom:410.070000px;}
.y51{bottom:415.275000px;}
.y2d0{bottom:419.896500px;}
.y82{bottom:421.167000px;}
.ydf{bottom:421.293000px;}
.y312{bottom:421.294500px;}
.y15c{bottom:421.390500px;}
.y1ad{bottom:421.452000px;}
.y28{bottom:421.486500px;}
.y1d2{bottom:421.503000px;}
.y204{bottom:421.536000px;}
.y229{bottom:421.563000px;}
.yb0{bottom:421.611000px;}
.y24b{bottom:421.695000px;}
.y26d{bottom:423.387000px;}
.y128{bottom:423.450000px;}
.y298{bottom:426.522000px;}
.y17d{bottom:428.002500px;}
.y2cf{bottom:433.345500px;}
.y311{bottom:434.743500px;}
.y81{bottom:439.101000px;}
.y15b{bottom:439.323000px;}
.y1ac{bottom:439.384500px;}
.yfc{bottom:439.416000px;}
.y27{bottom:439.419000px;}
.y1d1{bottom:439.435500px;}
.yde{bottom:439.459500px;}
.y203{bottom:439.470000px;}
.y228{bottom:439.495500px;}
.yaf{bottom:439.543500px;}
.y24a{bottom:439.627500px;}
.y26c{bottom:441.319500px;}
.y127{bottom:441.382500px;}
.y297{bottom:444.325500px;}
.y2ce{bottom:447.412500px;}
.y50{bottom:448.180500px;}
.y310{bottom:448.192500px;}
.y17c{bottom:455.566500px;}
.y80{bottom:457.033500px;}
.y15a{bottom:457.257000px;}
.y1ab{bottom:457.317000px;}
.yfb{bottom:457.348500px;}
.y26{bottom:457.351500px;}
.y1d0{bottom:457.368000px;}
.ydd{bottom:457.392000px;}
.y202{bottom:457.402500px;}
.y227{bottom:457.428000px;}
.yae{bottom:457.476000px;}
.y249{bottom:457.804500px;}
.y26b{bottom:459.252000px;}
.y126{bottom:459.315000px;}
.y2cd{bottom:460.863000px;}
.y30f{bottom:461.643000px;}
.y296{bottom:462.258000px;}
.y4f{bottom:466.113000px;}
.y2cc{bottom:474.312000px;}
.y7f{bottom:474.966000px;}
.y30e{bottom:475.092000px;}
.y159{bottom:475.189500px;}
.y1aa{bottom:475.251000px;}
.yfa{bottom:475.281000px;}
.y25{bottom:475.284000px;}
.y1cf{bottom:475.300500px;}
.ydc{bottom:475.324500px;}
.y201{bottom:475.335000px;}
.y226{bottom:475.362000px;}
.yad{bottom:475.408500px;}
.y248{bottom:475.737000px;}
.y125{bottom:479.404500px;}
.y295{bottom:480.190500px;}
.y4e{bottom:484.045500px;}
.y26a{bottom:488.173500px;}
.y2cb{bottom:488.379000px;}
.y30d{bottom:488.542500px;}
.y17b{bottom:490.563000px;}
.y7e{bottom:492.898500px;}
.y158{bottom:493.122000px;}
.yf9{bottom:493.213500px;}
.y24{bottom:493.216500px;}
.y1ce{bottom:493.233000px;}
.ydb{bottom:493.257000px;}
.y200{bottom:493.267500px;}
.y225{bottom:493.294500px;}
.yac{bottom:493.341000px;}
.y247{bottom:493.669500px;}
.y124{bottom:497.337000px;}
.y294{bottom:498.123000px;}
.y1a9{bottom:498.445500px;}
.y2ca{bottom:501.828000px;}
.y4d{bottom:501.978000px;}
.y30c{bottom:501.991500px;}
.y17a{bottom:508.495500px;}
.y7d{bottom:510.831000px;}
.y157{bottom:511.054500px;}
.yf8{bottom:511.147500px;}
.yda{bottom:511.189500px;}
.y1ff{bottom:511.200000px;}
.y224{bottom:511.227000px;}
.yab{bottom:511.275000px;}
.y1cd{bottom:511.375500px;}
.y246{bottom:511.602000px;}
.y123{bottom:515.271000px;}
.y2c9{bottom:515.278500px;}
.y30b{bottom:515.440500px;}
.y293{bottom:516.055500px;}
.y23{bottom:516.435000px;}
.y4c{bottom:519.910500px;}
.y269{bottom:525.091500px;}
.y179{bottom:526.428000px;}
.y1a8{bottom:527.814000px;}
.y7c{bottom:528.765000px;}
.y30a{bottom:528.891000px;}
.y156{bottom:528.987000px;}
.yf7{bottom:529.080000px;}
.yd9{bottom:529.123500px;}
.y1fe{bottom:529.132500px;}
.y223{bottom:529.159500px;}
.yaa{bottom:529.207500px;}
.y1cc{bottom:529.308000px;}
.y2c8{bottom:529.345500px;}
.y245{bottom:529.534500px;}
.y122{bottom:533.203500px;}
.y292{bottom:533.989500px;}
.y4b{bottom:537.843000px;}
.y309{bottom:542.340000px;}
.y2c7{bottom:542.794500px;}
.y268{bottom:543.024000px;}
.y178{bottom:544.360500px;}
.y1a7{bottom:545.746500px;}
.y7b{bottom:546.697500px;}
.y155{bottom:546.919500px;}
.yf6{bottom:547.012500px;}
.yd8{bottom:547.056000px;}
.y1fd{bottom:547.066500px;}
.y222{bottom:547.092000px;}
.ya9{bottom:547.140000px;}
.y1cb{bottom:547.240500px;}
.y244{bottom:547.468500px;}
.y121{bottom:551.136000px;}
.y291{bottom:551.922000px;}
.y4a{bottom:555.777000px;}
.y308{bottom:555.789000px;}
.y2c6{bottom:556.243500px;}
.y267{bottom:560.956500px;}
.y177{bottom:562.293000px;}
.y1a6{bottom:563.679000px;}
.y7a{bottom:564.630000px;}
.y154{bottom:564.853500px;}
.yf5{bottom:564.945000px;}
.yd7{bottom:564.988500px;}
.y1fc{bottom:564.999000px;}
.y221{bottom:565.024500px;}
.ya8{bottom:565.072500px;}
.y1ca{bottom:565.173000px;}
.y243{bottom:565.401000px;}
.y21{bottom:567.456000px;}
.y120{bottom:569.068500px;}
.y307{bottom:569.239500px;}
.y290{bottom:569.854500px;}
.y2c5{bottom:570.310500px;}
.y49{bottom:573.709500px;}
.y266{bottom:578.890500px;}
.y176{bottom:580.225500px;}
.y1a5{bottom:581.611500px;}
.y20{bottom:582.399000px;}
.y306{bottom:582.688500px;}
.y153{bottom:582.786000px;}
.yd6{bottom:582.921000px;}
.y1fb{bottom:582.931500px;}
.y220{bottom:582.958500px;}
.ya7{bottom:583.005000px;}
.yf4{bottom:583.068000px;}
.y1c9{bottom:583.107000px;}
.y242{bottom:583.333500px;}
.y2c4{bottom:583.761000px;}
.y11f{bottom:587.001000px;}
.y28f{bottom:587.787000px;}
.y79{bottom:588.148500px;}
.y48{bottom:595.843500px;}
.y305{bottom:596.137500px;}
.y265{bottom:596.823000px;}
.y1f{bottom:597.439500px;}
.y2c3{bottom:597.826500px;}
.y175{bottom:598.159500px;}
.y1a4{bottom:599.545500px;}
.y152{bottom:600.718500px;}
.yd5{bottom:600.853500px;}
.y1fa{bottom:600.864000px;}
.y21f{bottom:600.891000px;}
.ya6{bottom:600.937500px;}
.yf3{bottom:601.000500px;}
.y1c8{bottom:601.039500px;}
.y241{bottom:601.266000px;}
.y11e{bottom:604.933500px;}
.y28e{bottom:605.719500px;}
.y304{bottom:609.588000px;}
.y2c2{bottom:611.277000px;}
.y1e{bottom:612.384000px;}
.y47{bottom:613.776000px;}
.y264{bottom:614.755500px;}
.y174{bottom:616.092000px;}
.y1a3{bottom:617.478000px;}
.y78{bottom:618.303000px;}
.y151{bottom:618.651000px;}
.yd4{bottom:618.786000px;}
.y1f9{bottom:618.796500px;}
.y21e{bottom:618.823500px;}
.ya5{bottom:618.871500px;}
.yf2{bottom:618.933000px;}
.y1c7{bottom:618.972000px;}
.y240{bottom:619.198500px;}
.y11d{bottom:622.867500px;}
.y303{bottom:623.037000px;}
.y28d{bottom:623.652000px;}
.y2c1{bottom:624.726000px;}
.y1d{bottom:627.327000px;}
.y46{bottom:631.710000px;}
.y263{bottom:633.735000px;}
.y173{bottom:634.024500px;}
.y1a2{bottom:635.569500px;}
.y77{bottom:636.235500px;}
.y302{bottom:636.487500px;}
.y150{bottom:636.583500px;}
.yd3{bottom:636.720000px;}
.y1f8{bottom:636.729000px;}
.y21d{bottom:636.756000px;}
.ya4{bottom:636.804000px;}
.yf1{bottom:636.867000px;}
.y1c6{bottom:636.904500px;}
.y23f{bottom:637.131000px;}
.y2c0{bottom:638.793000px;}
.y11c{bottom:640.800000px;}
.y28c{bottom:641.586000px;}
.y1c{bottom:642.271500px;}
.y45{bottom:649.642500px;}
.y301{bottom:649.936500px;}
.y262{bottom:651.667500px;}
.y2bf{bottom:652.242000px;}
.y172{bottom:652.777500px;}
.y1a1{bottom:653.502000px;}
.y76{bottom:654.168000px;}
.y14f{bottom:654.517500px;}
.yd2{bottom:654.652500px;}
.y1f7{bottom:654.663000px;}
.ya3{bottom:654.736500px;}
.yf0{bottom:654.799500px;}
.y1c5{bottom:654.837000px;}
.y23e{bottom:655.065000px;}
.y1b{bottom:657.216000px;}
.y11b{bottom:658.732500px;}
.y21c{bottom:660.340500px;}
.y300{bottom:663.385500px;}
.y28b{bottom:664.095000px;}
.y2be{bottom:665.692500px;}
.y44{bottom:667.575000px;}
.y261{bottom:669.600000px;}
.y171{bottom:670.710000px;}
.y1a0{bottom:671.434500px;}
.y75{bottom:672.100500px;}
.y1a{bottom:672.159000px;}
.yd1{bottom:672.585000px;}
.y1f6{bottom:672.595500px;}
.ya2{bottom:672.669000px;}
.yef{bottom:672.732000px;}
.y1c4{bottom:672.771000px;}
.y23d{bottom:672.997500px;}
.y11a{bottom:676.665000px;}
.y2ff{bottom:676.836000px;}
.y14e{bottom:677.742000px;}
.y2bd{bottom:679.759500px;}
.y19{bottom:687.103500px;}
.y260{bottom:687.534000px;}
.y170{bottom:688.644000px;}
.y19f{bottom:689.367000px;}
.y43{bottom:689.710500px;}
.y74{bottom:690.033000px;}
.y2fe{bottom:690.285000px;}
.yd0{bottom:690.517500px;}
.y1f5{bottom:690.528000px;}
.y21b{bottom:690.652500px;}
.yee{bottom:690.664500px;}
.y1c3{bottom:690.703500px;}
.y28a{bottom:691.332000px;}
.y2bc{bottom:693.208500px;}
.y119{bottom:694.597500px;}
.ya1{bottom:696.144000px;}
.y23c{bottom:696.492000px;}
.y18{bottom:702.048000px;}
.y2fd{bottom:703.734000px;}
.y25f{bottom:705.466500px;}
.y16f{bottom:706.576500px;}
.y14d{bottom:706.591500px;}
.y2bb{bottom:706.657500px;}
.y19e{bottom:707.299500px;}
.y42{bottom:707.643000px;}
.y73{bottom:707.967000px;}
.ycf{bottom:708.450000px;}
.y1f4{bottom:708.460500px;}
.y21a{bottom:708.585000px;}
.yed{bottom:708.597000px;}
.y1c2{bottom:708.844500px;}
.y289{bottom:709.264500px;}
.y118{bottom:712.530000px;}
.y17{bottom:716.991000px;}
.y2fc{bottom:717.184500px;}
.y2ba{bottom:720.724500px;}
.y25e{bottom:724.446000px;}
.y16e{bottom:724.509000px;}
.y14c{bottom:724.524000px;}
.y19d{bottom:725.391000px;}
.y41{bottom:725.575500px;}
.y72{bottom:725.899500px;}
.ya0{bottom:726.189000px;}
.yce{bottom:726.382500px;}
.y1f3{bottom:726.393000px;}
.y219{bottom:726.517500px;}
.yec{bottom:726.531000px;}
.y23b{bottom:726.586500px;}
.y1c1{bottom:726.778500px;}
.y288{bottom:727.197000px;}
.y117{bottom:730.464000px;}
.y2fb{bottom:730.633500px;}
.y16{bottom:731.935500px;}
.y2b9{bottom:734.175000px;}
.y25d{bottom:742.378500px;}
.y16d{bottom:742.441500px;}
.y14b{bottom:742.456500px;}
.y19c{bottom:743.323500px;}
.y40{bottom:743.508000px;}
.y71{bottom:743.832000px;}
.y2fa{bottom:744.084000px;}
.y9f{bottom:744.121500px;}
.ycd{bottom:744.316500px;}
.y218{bottom:744.450000px;}
.yeb{bottom:744.463500px;}
.y23a{bottom:744.519000px;}
.y1c0{bottom:744.711000px;}
.y287{bottom:745.129500px;}
.y15{bottom:746.880000px;}
.y2b8{bottom:747.624000px;}
.y116{bottom:748.396500px;}
.y1f2{bottom:749.884500px;}
.y2f9{bottom:757.533000px;}
.y25c{bottom:760.311000px;}
.y16c{bottom:760.374000px;}
.y14a{bottom:760.389000px;}
.y19b{bottom:761.257500px;}
.y3f{bottom:761.440500px;}
.y2b7{bottom:761.691000px;}
.y70{bottom:761.764500px;}
.y14{bottom:761.823000px;}
.y9e{bottom:762.055500px;}
.ycc{bottom:762.249000px;}
.y217{bottom:762.384000px;}
.y239{bottom:762.451500px;}
.y1bf{bottom:762.643500px;}
.y286{bottom:763.063500px;}
.y115{bottom:766.329000px;}
.yea{bottom:768.244500px;}
.y2f8{bottom:770.982000px;}
.y2b6{bottom:775.140000px;}
.y13{bottom:776.863500px;}
.y25b{bottom:778.243500px;}
.y16b{bottom:778.306500px;}
.y149{bottom:778.321500px;}
.y19a{bottom:779.190000px;}
.y6f{bottom:779.697000px;}
.y3e{bottom:779.949000px;}
.y1f1{bottom:779.971500px;}
.y9d{bottom:779.988000px;}
.ycb{bottom:780.181500px;}
.y216{bottom:780.316500px;}
.y238{bottom:780.384000px;}
.y1be{bottom:780.576000px;}
.y114{bottom:784.261500px;}
.y2f7{bottom:784.432500px;}
.y285{bottom:785.572500px;}
.y2b5{bottom:789.207000px;}
.y12{bottom:791.808000px;}
.y25a{bottom:796.176000px;}
.y16a{bottom:796.240500px;}
.y148{bottom:796.254000px;}
.y199{bottom:797.122500px;}
.y6e{bottom:797.629500px;}
.y3d{bottom:797.881500px;}
.y1f0{bottom:797.904000px;}
.y9c{bottom:797.920500px;}
.y215{bottom:798.249000px;}
.y237{bottom:798.318000px;}
.yca{bottom:798.346500px;}
.y1bd{bottom:798.508500px;}
.y113{bottom:802.194000px;}
.y11{bottom:806.751000px;}
.y2f6{bottom:811.330500px;}
.y284{bottom:812.809500px;}
.y259{bottom:814.110000px;}
.y147{bottom:814.188000px;}
.y169{bottom:814.993500px;}
.y198{bottom:815.055000px;}
.y6d{bottom:815.563500px;}
.y3c{bottom:815.814000px;}
.y1ef{bottom:815.836500px;}
.y9b{bottom:815.853000px;}
.y214{bottom:816.181500px;}
.y236{bottom:816.250500px;}
.yc9{bottom:816.280500px;}
.y1bc{bottom:816.441000px;}
.y2b4{bottom:818.065500px;}
.y112{bottom:820.128000px;}
.y10{bottom:821.695500px;}
.y2f5{bottom:824.781000px;}
.y283{bottom:830.611500px;}
.y258{bottom:832.042500px;}
.y146{bottom:832.120500px;}
.y168{bottom:832.926000px;}
.y197{bottom:833.146500px;}
.y6c{bottom:833.496000px;}
.y3b{bottom:833.746500px;}
.y1ee{bottom:833.770500px;}
.y9a{bottom:833.785500px;}
.y213{bottom:834.114000px;}
.y235{bottom:834.183000px;}
.yc8{bottom:834.213000px;}
.y1bb{bottom:834.375000px;}
.yf{bottom:836.640000px;}
.y111{bottom:838.060500px;}
.y2f4{bottom:838.230000px;}
.y282{bottom:848.544000px;}
.y257{bottom:849.975000px;}
.y167{bottom:850.858500px;}
.y196{bottom:851.079000px;}
.y6b{bottom:851.428500px;}
.ye{bottom:851.583000px;}
.y3a{bottom:851.679000px;}
.y2f3{bottom:851.680500px;}
.y1ed{bottom:851.703000px;}
.y99{bottom:851.719500px;}
.y212{bottom:852.048000px;}
.y234{bottom:852.115500px;}
.yc7{bottom:852.145500px;}
.y1ba{bottom:852.307500px;}
.y2b3{bottom:855.529500px;}
.y110{bottom:858.150000px;}
.y2f2{bottom:865.129500px;}
.y281{bottom:866.476500px;}
.yd{bottom:866.527500px;}
.y166{bottom:868.791000px;}
.y6a{bottom:869.361000px;}
.y39{bottom:869.611500px;}
.y1ec{bottom:869.635500px;}
.y98{bottom:869.652000px;}
.y211{bottom:869.980500px;}
.yc6{bottom:870.078000px;}
.y1b9{bottom:870.240000px;}
.y2b2{bottom:873.462000px;}
.y10f{bottom:876.082500px;}
.y2f1{bottom:878.578500px;}
.yc{bottom:881.568000px;}
.y145{bottom:883.488000px;}
.y280{bottom:884.410500px;}
.y165{bottom:886.725000px;}
.y69{bottom:887.293500px;}
.ye9{bottom:887.544000px;}
.y38{bottom:887.545500px;}
.y97{bottom:887.823000px;}
.y2b1{bottom:891.394500px;}
.y2f0{bottom:892.029000px;}
.y1b8{bottom:893.611500px;}
.y10e{bottom:894.015000px;}
.yb{bottom:896.511000px;}
.y27f{bottom:902.212500px;}
.y195{bottom:902.611500px;}
.y233{bottom:903.874500px;}
.y164{bottom:904.657500px;}
.y13e{bottom:905.008500px;}
.y68{bottom:905.226000px;}
.y37{bottom:905.478000px;}
.y96{bottom:905.755500px;}
.y2b0{bottom:909.327000px;}
.ya{bottom:911.455500px;}
.y2ef{bottom:918.927000px;}
.y27e{bottom:920.145000px;}
.y194{bottom:920.544000px;}
.y1eb{bottom:921.393000px;}
.yc5{bottom:921.807000px;}
.y67{bottom:923.160000px;}
.y36{bottom:923.410500px;}
.y95{bottom:923.688000px;}
.y9{bottom:926.400000px;}
.y2af{bottom:927.261000px;}
.y2ee{bottom:932.377500px;}
.y27d{bottom:938.077500px;}
.y1ea{bottom:939.325500px;}
.yc4{bottom:939.741000px;}
.y66{bottom:941.092500px;}
.y8{bottom:941.343000px;}
.y94{bottom:941.620500px;}
.y2ae{bottom:945.193500px;}
.y2ed{bottom:945.826500px;}
.y10d{bottom:950.874000px;}
.y187{bottom:951.028500px;}
.y27c{bottom:956.010000px;}
.y65{bottom:959.025000px;}
.ye8{bottom:959.275500px;}
.y93{bottom:959.553000px;}
.y1db{bottom:960.844500px;}
.y10c{bottom:968.806500px;}
.yb6{bottom:970.225500px;}
.y2ec{bottom:972.726000px;}
.y27b{bottom:973.944000px;}
.y2ad{bottom:974.499000px;}
.ye7{bottom:977.208000px;}
.y64{bottom:977.209500px;}
.y92{bottom:977.487000px;}
.y2eb{bottom:986.175000px;}
.y27a{bottom:991.876500px;}
.y7{bottom:992.875500px;}
.y10b{bottom:994.809000px;}
.y109{bottom:994.939500px;}
.ye6{bottom:995.140500px;}
.y63{bottom:995.142000px;}
.y91{bottom:995.419500px;}
.y2ea{bottom:999.625500px;}
.y6{bottom:1011.369000px;}
.y2ac{bottom:1011.963000px;}
.y62{bottom:1013.074500px;}
.y90{bottom:1013.352000px;}
.y10a{bottom:1014.237000px;}
.y108{bottom:1014.366000px;}
.y13d{bottom:1021.668000px;}
.y2e9{bottom:1026.523500px;}
.y5{bottom:1029.862500px;}
.y2ab{bottom:1029.895500px;}
.y61{bottom:1031.007000px;}
.y8f{bottom:1031.284500px;}
.y13c{bottom:1035.117000px;}
.y2e8{bottom:1039.974000px;}
.y279{bottom:1044.133500px;}
.y2aa{bottom:1047.829500px;}
.y4{bottom:1048.356000px;}
.y13b{bottom:1048.566000px;}
.y60{bottom:1048.939500px;}
.y8e{bottom:1049.217000px;}
.y2e7{bottom:1053.423000px;}
.y278{bottom:1060.582500px;}
.y13a{bottom:1062.016500px;}
.y2a9{bottom:1065.762000px;}
.y5f{bottom:1066.872000px;}
.y3{bottom:1067.070000px;}
.y8d{bottom:1072.692000px;}
.y277{bottom:1075.108500px;}
.y139{bottom:1075.465500px;}
.y2e6{bottom:1080.322500px;}
.y2a8{bottom:1083.694500px;}
.ye5{bottom:1084.804500px;}
.y5e{bottom:1084.806000px;}
.y138{bottom:1088.914500px;}
.y107{bottom:1093.158000px;}
.y102{bottom:1093.287000px;}
.y2e5{bottom:1093.771500px;}
.y276{bottom:1096.366500px;}
.y2a7{bottom:1101.627000px;}
.y137{bottom:1102.365000px;}
.y8c{bottom:1102.737000px;}
.y5d{bottom:1102.738500px;}
.y2e4{bottom:1107.222000px;}
.y103{bottom:1112.584500px;}
.yff{bottom:1112.713500px;}
.y275{bottom:1112.815500px;}
.y2{bottom:1114.144500px;}
.y136{bottom:1115.814000px;}
.y2a6{bottom:1119.559500px;}
.y5c{bottom:1120.671000px;}
.y135{bottom:1129.264500px;}
.y2e3{bottom:1134.120000px;}
.y5b{bottom:1138.603500px;}
.y2e2{bottom:1147.570500px;}
.y134{bottom:1150.521000px;}
.y1{bottom:1155.987000px;}
.y5a{bottom:1156.536000px;}
.y2e1{bottom:1161.019500px;}
.y59{bottom:1174.468500px;}
.y133{bottom:1179.849000px;}
.y22{bottom:1199.563500px;}
.h13{height:12.341615px;}
.h12{height:16.747436px;}
.h16{height:17.962568px;}
.h19{height:20.562806px;}
.h1f{height:21.452559px;}
.h24{height:24.675533px;}
.h18{height:28.202047px;}
.he{height:32.326726px;}
.h20{height:32.804932px;}
.ha{height:32.900573px;}
.h26{height:33.134573px;}
.h25{height:33.140573px;}
.h1b{height:34.324181px;}
.hd{height:37.013299px;}
.h8{height:37.336090px;}
.h7{height:37.605082px;}
.h1e{height:38.614865px;}
.h4{height:41.006062px;}
.hb{height:41.117146px;}
.hc{height:41.123146px;}
.h5{height:41.125613px;}
.hf{height:41.425613px;}
.h1c{height:42.896284px;}
.h1d{height:42.902544px;}
.h6{height:44.831700px;}
.h3{height:45.238339px;}
.h22{height:50.140109px;}
.h23{height:50.477846px;}
.h10{height:50.728903px;}
.h21{height:57.576106px;}
.h11{height:74.178880px;}
.h14{height:74.437539px;}
.h15{height:87.856500px;}
.h2{height:98.701718px;}
.h9{height:216.796500px;}
.h1a{height:226.177285px;}
.h17{height:235.993500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:184.527620px;}
.w4{width:344.224500px;}
.w2{width:360.970500px;}
.w5{width:362.973000px;}
.w6{width:376.589694px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:13.965000px;}
.x2f{left:16.188000px;}
.x14{left:27.136500px;}
.x34{left:28.310696px;}
.x2d{left:30.184500px;}
.x2c{left:42.099000px;}
.x1f{left:44.109997px;}
.x13{left:48.357000px;}
.x33{left:50.449407px;}
.x9{left:60.903000px;}
.x1b{left:62.050500px;}
.x44{left:66.880500px;}
.x12{left:68.712000px;}
.x8{left:75.846000px;}
.x1c{left:83.075795px;}
.x1d{left:85.360500px;}
.x45{left:88.291500px;}
.x1{left:90.063000px;}
.x2{left:94.528500px;}
.x3c{left:101.647500px;}
.x20{left:105.522000px;}
.x36{left:108.900174px;}
.x28{left:113.791500px;}
.x3b{left:127.648500px;}
.x25{left:137.578500px;}
.x2e{left:140.896500px;}
.x18{left:154.921500px;}
.x17{left:158.097000px;}
.x3d{left:162.837000px;}
.x15{left:164.067000px;}
.x35{left:171.166179px;}
.x43{left:180.336000px;}
.x39{left:183.252000px;}
.x38{left:186.115500px;}
.xb{left:190.885500px;}
.x2a{left:193.224000px;}
.x30{left:197.254500px;}
.x32{left:201.736500px;}
.x31{left:207.625500px;}
.x26{left:214.662000px;}
.x3{left:234.124500px;}
.x1e{left:251.811000px;}
.x7{left:253.248000px;}
.x47{left:255.024000px;}
.x21{left:273.360000px;}
.x48{left:277.476000px;}
.xa{left:281.649000px;}
.x27{left:316.809000px;}
.x4{left:327.660000px;}
.x19{left:341.295000px;}
.x6{left:347.916000px;}
.x5{left:350.361000px;}
.x46{left:380.082000px;}
.xc{left:455.422500px;}
.x2b{left:462.231000px;}
.x10{left:464.019000px;}
.x22{left:467.664000px;}
.xd{left:470.367000px;}
.x24{left:471.604500px;}
.x40{left:481.755000px;}
.x49{left:482.812500px;}
.x23{left:488.641500px;}
.xe{left:491.781000px;}
.x3f{left:496.699500px;}
.xf{left:515.350500px;}
.x3e{left:519.010500px;}
.x42{left:522.097500px;}
.x4a{left:538.080000px;}
.x4c{left:539.907000px;}
.x29{left:559.614000px;}
.x41{left:569.722500px;}
.x11{left:577.194000px;}
.x1a{left:578.577000px;}
.x3a{left:584.346000px;}
.x4b{left:609.532500px;}
.x37{left:729.883500px;}
@media print{
.v4{vertical-align:-15.002667pt;}
.v3{vertical-align:-0.988883pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.997333pt;}
.v2{vertical-align:19.280000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000114pt;}
.ls1e{letter-spacing:0.000119pt;}
.ls10{letter-spacing:0.002079pt;}
.lsc{letter-spacing:0.003733pt;}
.lsb{letter-spacing:0.004003pt;}
.ls31{letter-spacing:0.741348pt;}
.ls2f{letter-spacing:2.177630pt;}
.ls2{letter-spacing:2.182963pt;}
.ls0{letter-spacing:2.635446pt;}
.ls5{letter-spacing:2.653089pt;}
.ls9{letter-spacing:2.654903pt;}
.ls1{letter-spacing:2.655711pt;}
.ls2e{letter-spacing:2.656533pt;}
.ls4{letter-spacing:2.656693pt;}
.ls30{letter-spacing:2.657067pt;}
.ls7{letter-spacing:2.658422pt;}
.ls6{letter-spacing:2.660541pt;}
.ls8{letter-spacing:2.661348pt;}
.ls17{letter-spacing:8.857067pt;}
.ls2a{letter-spacing:12.281336pt;}
.ls20{letter-spacing:12.980003pt;}
.lse{letter-spacing:15.454670pt;}
.ls1a{letter-spacing:15.694670pt;}
.ls1b{letter-spacing:16.425336pt;}
.ls24{letter-spacing:16.521336pt;}
.ls19{letter-spacing:16.852003pt;}
.ls1d{letter-spacing:17.705336pt;}
.ls25{letter-spacing:17.796003pt;}
.ls14{letter-spacing:18.804003pt;}
.ls2b{letter-spacing:19.934670pt;}
.ls18{letter-spacing:20.084003pt;}
.ls11{letter-spacing:20.421812pt;}
.ls1f{letter-spacing:20.446670pt;}
.ls13{letter-spacing:21.001336pt;}
.ls28{letter-spacing:21.566670pt;}
.ls15{letter-spacing:22.062670pt;}
.ls16{letter-spacing:22.068003pt;}
.ls2c{letter-spacing:22.702670pt;}
.ls26{letter-spacing:24.457336pt;}
.ls29{letter-spacing:24.836003pt;}
.lsf{letter-spacing:25.257336pt;}
.ls21{letter-spacing:25.273336pt;}
.ls2d{letter-spacing:26.137336pt;}
.ls27{letter-spacing:28.121336pt;}
.ls1c{letter-spacing:28.190670pt;}
.ls23{letter-spacing:28.222670pt;}
.ls12{letter-spacing:29.326670pt;}
.lsd{letter-spacing:30.030670pt;}
.ls22{letter-spacing:31.572003pt;}
.ws3{word-spacing:-53.133867pt;}
.wsa7{word-spacing:-13.283467pt;}
.ws1e{word-spacing:-13.262246pt;}
.ws48{word-spacing:-10.626800pt;}
.ws14f{word-spacing:-1.062677pt;}
.ws17e{word-spacing:-1.009543pt;}
.ws27{word-spacing:-0.956410pt;}
.ws79{word-spacing:-0.743874pt;}
.ws1bb{word-spacing:-0.722622pt;}
.ws6b{word-spacing:-0.690740pt;}
.ws19d{word-spacing:-0.595101pt;}
.ws127{word-spacing:-0.584473pt;}
.wsff{word-spacing:-0.531339pt;}
.ws91{word-spacing:-0.478205pt;}
.ws40{word-spacing:-0.425071pt;}
.ws1c1{word-spacing:-0.382565pt;}
.ws38{word-spacing:-0.318803pt;}
.ws28{word-spacing:-0.265669pt;}
.wsef{word-spacing:-0.212535pt;}
.ws1bd{word-spacing:-0.170029pt;}
.ws11b{word-spacing:-0.159402pt;}
.wsd8{word-spacing:-0.106268pt;}
.ws13d{word-spacing:-0.060125pt;}
.ws2a{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws14a{word-spacing:-0.044346pt;}
.wsa2{word-spacing:-0.042507pt;}
.ws120{word-spacing:-0.026567pt;}
.ws196{word-spacing:-0.014802pt;}
.ws99{word-spacing:-0.006627pt;}
.ws98{word-spacing:-0.003573pt;}
.ws51{word-spacing:0.000000pt;}
.ws100{word-spacing:0.004079pt;}
.wsfa{word-spacing:0.053134pt;}
.ws11d{word-spacing:0.106268pt;}
.ws5c{word-spacing:0.159402pt;}
.ws1b8{word-spacing:0.170029pt;}
.ws4e{word-spacing:0.371937pt;}
.ws20{word-spacing:0.425071pt;}
.ws1a0{word-spacing:0.510086pt;}
.ws1af{word-spacing:0.552594pt;}
.ws114{word-spacing:0.584473pt;}
.wsc6{word-spacing:0.637606pt;}
.ws15{word-spacing:0.669491pt;}
.ws178{word-spacing:0.690740pt;}
.ws150{word-spacing:0.743874pt;}
.ws128{word-spacing:0.797008pt;}
.ws10a{word-spacing:0.850142pt;}
.ws25{word-spacing:0.903276pt;}
.ws8b{word-spacing:0.956410pt;}
.ws4d{word-spacing:1.009543pt;}
.ws1ee{word-spacing:1.062680pt;}
.ws10b{word-spacing:1.115811pt;}
.ws1a4{word-spacing:1.147694pt;}
.ws1f2{word-spacing:1.190202pt;}
.ws179{word-spacing:1.222079pt;}
.ws6d{word-spacing:1.275213pt;}
.wsc3{word-spacing:1.328347pt;}
.wse4{word-spacing:1.434614pt;}
.ws1c9{word-spacing:1.445245pt;}
.ws53{word-spacing:1.594016pt;}
.ws49{word-spacing:1.647150pt;}
.ws1cd{word-spacing:1.683531pt;}
.ws15f{word-spacing:1.700284pt;}
.ws1ce{word-spacing:1.700288pt;}
.ws109{word-spacing:1.806551pt;}
.ws141{word-spacing:1.859685pt;}
.wse2{word-spacing:1.912819pt;}
.wsc{word-spacing:1.912832pt;}
.wse1{word-spacing:2.019087pt;}
.ws1a2{word-spacing:2.040346pt;}
.ws8c{word-spacing:2.072221pt;}
.wsa9{word-spacing:2.125355pt;}
.ws1b5{word-spacing:2.125360pt;}
.ws1e0{word-spacing:2.167867pt;}
.wsb3{word-spacing:2.171216pt;}
.wsb4{word-spacing:2.178489pt;}
.wsb8{word-spacing:2.231622pt;}
.ws1c2{word-spacing:2.252882pt;}
.wscb{word-spacing:2.284756pt;}
.ws1c3{word-spacing:2.295389pt;}
.ws139{word-spacing:2.391024pt;}
.ws14{word-spacing:2.438861pt;}
.ws30{word-spacing:2.444158pt;}
.ws1ae{word-spacing:2.465418pt;}
.ws8e{word-spacing:2.497292pt;}
.ws8{word-spacing:2.534502pt;}
.ws1dc{word-spacing:2.548510pt;}
.ws52{word-spacing:2.550426pt;}
.ws1dd{word-spacing:2.550432pt;}
.ws1d3{word-spacing:2.635446pt;}
.ws154{word-spacing:2.656693pt;}
.ws189{word-spacing:2.709827pt;}
.ws9d{word-spacing:2.762961pt;}
.ws16{word-spacing:2.773606pt;}
.ws1cc{word-spacing:2.805475pt;}
.ws143{word-spacing:2.816095pt;}
.wsf{word-spacing:2.821427pt;}
.ws83{word-spacing:2.869229pt;}
.ws88{word-spacing:2.922363pt;}
.ws112{word-spacing:2.975497pt;}
.ws1a9{word-spacing:2.975504pt;}
.ws1a8{word-spacing:3.018011pt;}
.wscf{word-spacing:3.081764pt;}
.ws7a{word-spacing:3.134898pt;}
.ws32{word-spacing:3.188032pt;}
.ws16a{word-spacing:3.226560pt;}
.ws169{word-spacing:3.231001pt;}
.ws167{word-spacing:3.234397pt;}
.ws3d{word-spacing:3.241166pt;}
.ws6a{word-spacing:3.294300pt;}
.ws103{word-spacing:3.347434pt;}
.wsd6{word-spacing:3.400567pt;}
.ws1bf{word-spacing:3.400576pt;}
.ws87{word-spacing:3.453701pt;}
.wsc9{word-spacing:3.559969pt;}
.ws138{word-spacing:3.565356pt;}
.ws181{word-spacing:3.719371pt;}
.ws5{word-spacing:3.730022pt;}
.ws23{word-spacing:3.772505pt;}
.wsfc{word-spacing:3.825638pt;}
.ws1ef{word-spacing:3.868155pt;}
.ws5f{word-spacing:3.931906pt;}
.ws1e4{word-spacing:3.953170pt;}
.ws26{word-spacing:3.985040pt;}
.ws1a6{word-spacing:3.995677pt;}
.wse{word-spacing:4.016947pt;}
.ws1d5{word-spacing:4.038184pt;}
.ws1ad{word-spacing:4.080691pt;}
.wsc8{word-spacing:4.091308pt;}
.ws14e{word-spacing:4.144442pt;}
.ws1c4{word-spacing:4.165706pt;}
.ws195{word-spacing:4.197575pt;}
.ws1cb{word-spacing:4.208213pt;}
.ws1ab{word-spacing:4.249010pt;}
.ws1a7{word-spacing:4.249356pt;}
.ws59{word-spacing:4.250709pt;}
.wsf7{word-spacing:4.250720pt;}
.ws1e5{word-spacing:4.293227pt;}
.ws18a{word-spacing:4.303843pt;}
.wsb{word-spacing:4.303872pt;}
.ws89{word-spacing:4.356977pt;}
.ws1ac{word-spacing:4.378242pt;}
.ws54{word-spacing:4.410111pt;}
.ws145{word-spacing:4.418689pt;}
.ws1ec{word-spacing:4.420749pt;}
.ws129{word-spacing:4.463245pt;}
.ws1c8{word-spacing:4.463256pt;}
.wse7{word-spacing:4.516379pt;}
.ws2e{word-spacing:4.569513pt;}
.ws76{word-spacing:4.622646pt;}
.wsaa{word-spacing:4.675780pt;}
.ws1b7{word-spacing:4.718299pt;}
.ws187{word-spacing:4.728914pt;}
.ws1c0{word-spacing:4.760806pt;}
.ws4a{word-spacing:4.782048pt;}
.wsdb{word-spacing:4.782080pt;}
.wsc7{word-spacing:4.835182pt;}
.wsab{word-spacing:4.888316pt;}
.ws183{word-spacing:4.941450pt;}
.wsd7{word-spacing:4.994583pt;}
.ws1e7{word-spacing:5.015850pt;}
.ws19{word-spacing:5.021184pt;}
.ws29{word-spacing:5.047717pt;}
.ws6e{word-spacing:5.100851pt;}
.ws75{word-spacing:5.153985pt;}
.ws161{word-spacing:5.207119pt;}
.ws1de{word-spacing:5.228386pt;}
.ws13f{word-spacing:5.260253pt;}
.ws9b{word-spacing:5.265586pt;}
.ws46{word-spacing:5.266711pt;}
.ws47{word-spacing:5.299129pt;}
.ws2{word-spacing:5.313387pt;}
.ws9a{word-spacing:5.313400pt;}
.wsda{word-spacing:5.347267pt;}
.ws2b{word-spacing:5.419654pt;}
.ws1d9{word-spacing:5.440922pt;}
.ws1d8{word-spacing:5.449265pt;}
.ws65{word-spacing:5.472788pt;}
.ws1a1{word-spacing:5.483429pt;}
.ws134{word-spacing:5.509022pt;}
.ws10c{word-spacing:5.525922pt;}
.ws1d4{word-spacing:5.610950pt;}
.ws164{word-spacing:5.632190pt;}
.ws172{word-spacing:5.685324pt;}
.ws1a5{word-spacing:5.695965pt;}
.ws132{word-spacing:5.738458pt;}
.ws152{word-spacing:5.791591pt;}
.ws1{word-spacing:5.844747pt;}
.ws9c{word-spacing:5.897859pt;}
.wsfe{word-spacing:5.950993pt;}
.ws1b6{word-spacing:5.951008pt;}
.ws9{word-spacing:5.977600pt;}
.ws1cf{word-spacing:5.993515pt;}
.ws4f{word-spacing:6.004127pt;}
.ws10e{word-spacing:6.057261pt;}
.ws36{word-spacing:6.110395pt;}
.ws1df{word-spacing:6.121037pt;}
.wsd{word-spacing:6.121062pt;}
.ws77{word-spacing:6.163529pt;}
.ws3e{word-spacing:6.216662pt;}
.ws118{word-spacing:6.269796pt;}
.ws147{word-spacing:6.322930pt;}
.ws3b{word-spacing:6.376064pt;}
.ws43{word-spacing:6.482332pt;}
.ws124{word-spacing:6.489074pt;}
.ws3f{word-spacing:6.535466pt;}
.ws5e{word-spacing:6.588599pt;}
.ws1da{word-spacing:6.588616pt;}
.ws1b2{word-spacing:6.631123pt;}
.ws39{word-spacing:6.641733pt;}
.ws17f{word-spacing:6.642415pt;}
.ws7{word-spacing:6.647091pt;}
.ws6f{word-spacing:6.694867pt;}
.ws11{word-spacing:6.694912pt;}
.wse8{word-spacing:6.748001pt;}
.ws137{word-spacing:6.801135pt;}
.ws1ba{word-spacing:6.801152pt;}
.ws7b{word-spacing:6.854269pt;}
.ws116{word-spacing:6.907403pt;}
.ws1ed{word-spacing:6.928674pt;}
.wse9{word-spacing:6.960537pt;}
.wsdf{word-spacing:6.971395pt;}
.wsd9{word-spacing:6.992846pt;}
.ws8f{word-spacing:7.013670pt;}
.ws117{word-spacing:7.066804pt;}
.ws1b1{word-spacing:7.098702pt;}
.ws113{word-spacing:7.119938pt;}
.ws1ca{word-spacing:7.141210pt;}
.ws157{word-spacing:7.145321pt;}
.ws156{word-spacing:7.161667pt;}
.ws155{word-spacing:7.173072pt;}
.ws69{word-spacing:7.226206pt;}
.ws8a{word-spacing:7.279340pt;}
.ws111{word-spacing:7.332474pt;}
.ws1d7{word-spacing:7.353746pt;}
.ws108{word-spacing:7.385607pt;}
.wscd{word-spacing:7.438741pt;}
.ws107{word-spacing:7.491875pt;}
.ws1d6{word-spacing:7.523774pt;}
.ws15e{word-spacing:7.545009pt;}
.ws1c7{word-spacing:7.566282pt;}
.ws33{word-spacing:7.651277pt;}
.ws12d{word-spacing:7.704411pt;}
.wsb7{word-spacing:7.757545pt;}
.ws1b3{word-spacing:7.778818pt;}
.ws68{word-spacing:7.810678pt;}
.ws62{word-spacing:7.863812pt;}
.ws21{word-spacing:7.916946pt;}
.ws10f{word-spacing:7.970080pt;}
.ws1c5{word-spacing:7.991354pt;}
.wsa8{word-spacing:8.023214pt;}
.ws5d{word-spacing:8.076348pt;}
.ws1d2{word-spacing:8.076368pt;}
.ws1d1{word-spacing:8.090469pt;}
.ws16b{word-spacing:8.129482pt;}
.ws1c6{word-spacing:8.161382pt;}
.ws2c{word-spacing:8.182615pt;}
.ws184{word-spacing:8.235749pt;}
.ws176{word-spacing:8.269509pt;}
.ws174{word-spacing:8.280022pt;}
.ws175{word-spacing:8.281667pt;}
.ws177{word-spacing:8.288883pt;}
.ws1be{word-spacing:8.288904pt;}
.wsce{word-spacing:8.342017pt;}
.ws142{word-spacing:8.395151pt;}
.ws64{word-spacing:8.448285pt;}
.ws56{word-spacing:8.501419pt;}
.ws16c{word-spacing:8.554553pt;}
.ws95{word-spacing:8.607686pt;}
.ws7d{word-spacing:8.713954pt;}
.ws1b4{word-spacing:8.756483pt;}
.wsba{word-spacing:8.767088pt;}
.ws135{word-spacing:8.776022pt;}
.ws168{word-spacing:8.782844pt;}
.ws15b{word-spacing:8.800733pt;}
.ws159{word-spacing:8.802333pt;}
.ws158{word-spacing:8.804466pt;}
.ws133{word-spacing:8.806066pt;}
.ws136{word-spacing:8.807666pt;}
.wsac{word-spacing:8.820222pt;}
.ws41{word-spacing:8.873356pt;}
.wsb5{word-spacing:8.926490pt;}
.ws115{word-spacing:8.979623pt;}
.ws78{word-spacing:9.032757pt;}
.ws19c{word-spacing:9.085891pt;}
.ws12e{word-spacing:9.139025pt;}
.ws1a3{word-spacing:9.139048pt;}
.wsa{word-spacing:9.229414pt;}
.ws10d{word-spacing:9.245293pt;}
.wsc0{word-spacing:9.298427pt;}
.ws126{word-spacing:9.351561pt;}
.ws2f{word-spacing:9.404694pt;}
.wsb1{word-spacing:9.457828pt;}
.ws50{word-spacing:9.564096pt;}
.ws42{word-spacing:9.617230pt;}
.ws13a{word-spacing:9.645542pt;}
.wse0{word-spacing:9.670364pt;}
.ws3c{word-spacing:9.776631pt;}
.ws1bc{word-spacing:9.776656pt;}
.ws22{word-spacing:9.829765pt;}
.ws180{word-spacing:9.882899pt;}
.ws1e6{word-spacing:9.946685pt;}
.ws110{word-spacing:9.989167pt;}
.ws7e{word-spacing:10.042301pt;}
.wsf2{word-spacing:10.095435pt;}
.ws73{word-spacing:10.148569pt;}
.wsbd{word-spacing:10.201702pt;}
.ws12c{word-spacing:10.254836pt;}
.ws17{word-spacing:10.281472pt;}
.ws61{word-spacing:10.307970pt;}
.ws105{word-spacing:10.361104pt;}
.ws94{word-spacing:10.414238pt;}
.ws5a{word-spacing:10.467372pt;}
.ws104{word-spacing:10.520506pt;}
.ws119{word-spacing:10.573639pt;}
.ws97{word-spacing:10.626773pt;}
.wsfb{word-spacing:10.733041pt;}
.wsb2{word-spacing:10.786175pt;}
.wsb9{word-spacing:10.839309pt;}
.ws1db{word-spacing:10.839336pt;}
.wsed{word-spacing:10.892443pt;}
.ws1e8{word-spacing:10.924350pt;}
.ws19b{word-spacing:10.941052pt;}
.ws9e{word-spacing:10.945577pt;}
.ws1e3{word-spacing:11.009365pt;}
.ws163{word-spacing:11.051844pt;}
.ws66{word-spacing:11.104978pt;}
.ws171{word-spacing:11.158112pt;}
.ws170{word-spacing:11.170385pt;}
.ws1ea{word-spacing:11.179394pt;}
.ws80{word-spacing:11.211246pt;}
.ws24{word-spacing:11.264380pt;}
.wsf0{word-spacing:11.317514pt;}
.ws153{word-spacing:11.370647pt;}
.ws34{word-spacing:11.423781pt;}
.ws84{word-spacing:11.530049pt;}
.ws70{word-spacing:11.583183pt;}
.ws57{word-spacing:11.689451pt;}
.ws1f1{word-spacing:11.731987pt;}
.ws63{word-spacing:11.742585pt;}
.ws1e2{word-spacing:11.774494pt;}
.ws44{word-spacing:11.795718pt;}
.wsec{word-spacing:11.848852pt;}
.wsd3{word-spacing:11.901986pt;}
.ws96{word-spacing:11.955120pt;}
.ws15c{word-spacing:11.968805pt;}
.ws15a{word-spacing:11.993667pt;}
.ws7c{word-spacing:12.220789pt;}
.wsbb{word-spacing:12.273923pt;}
.ws144{word-spacing:12.327057pt;}
.ws6c{word-spacing:12.486459pt;}
.ws146{word-spacing:12.504022pt;}
.wsee{word-spacing:12.539593pt;}
.ws1b9{word-spacing:12.582131pt;}
.ws13e{word-spacing:12.592726pt;}
.wsfd{word-spacing:12.645860pt;}
.wsea{word-spacing:12.698994pt;}
.ws5b{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws1a{word-spacing:12.768154pt;}
.ws90{word-spacing:12.805262pt;}
.ws160{word-spacing:12.858396pt;}
.ws9f{word-spacing:12.911530pt;}
.ws7f{word-spacing:12.964663pt;}
.ws1e9{word-spacing:12.964696pt;}
.ws82{word-spacing:13.070931pt;}
.ws197{word-spacing:13.124065pt;}
.ws85{word-spacing:13.177199pt;}
.ws6{word-spacing:13.198541pt;}
.ws11c{word-spacing:13.283467pt;}
.wsf3{word-spacing:13.336601pt;}
.ws55{word-spacing:13.389734pt;}
.ws3a{word-spacing:13.442868pt;}
.wsd5{word-spacing:13.496002pt;}
.ws31{word-spacing:13.602270pt;}
.ws1d0{word-spacing:13.602304pt;}
.wse6{word-spacing:13.708538pt;}
.ws17a{word-spacing:13.761671pt;}
.wsd1{word-spacing:13.814805pt;}
.wsad{word-spacing:13.867939pt;}
.ws1e1{word-spacing:13.984869pt;}
.ws198{word-spacing:14.027341pt;}
.ws35{word-spacing:14.080475pt;}
.ws58{word-spacing:14.133609pt;}
.ws188{word-spacing:14.186742pt;}
.wsbf{word-spacing:14.239876pt;}
.ws130{word-spacing:14.346144pt;}
.ws18{word-spacing:14.346240pt;}
.ws12f{word-spacing:14.348244pt;}
.ws122{word-spacing:14.399278pt;}
.ws148{word-spacing:14.452412pt;}
.wsae{word-spacing:14.505546pt;}
.wsca{word-spacing:14.558679pt;}
.ws11a{word-spacing:14.611813pt;}
.wsc2{word-spacing:14.664947pt;}
.wsc5{word-spacing:14.718081pt;}
.ws13b{word-spacing:14.771215pt;}
.ws102{word-spacing:14.824349pt;}
.ws186{word-spacing:14.835013pt;}
.ws173{word-spacing:14.835934pt;}
.ws4c{word-spacing:14.877483pt;}
.ws12{word-spacing:14.920090pt;}
.ws1f{word-spacing:14.930617pt;}
.ws18b{word-spacing:15.036884pt;}
.ws16d{word-spacing:15.196286pt;}
.ws17d{word-spacing:15.249420pt;}
.ws1f0{word-spacing:15.345099pt;}
.wsa1{word-spacing:15.365226pt;}
.ws10{word-spacing:15.446118pt;}
.ws74{word-spacing:15.461955pt;}
.ws60{word-spacing:15.515089pt;}
.ws16e{word-spacing:15.568223pt;}
.ws106{word-spacing:15.674491pt;}
.ws151{word-spacing:15.727625pt;}
.wsf4{word-spacing:15.833892pt;}
.ws1d{word-spacing:15.940160pt;}
.ws182{word-spacing:15.989636pt;}
.ws149{word-spacing:16.030079pt;}
.ws12b{word-spacing:16.041682pt;}
.ws72{word-spacing:16.046428pt;}
.ws13{word-spacing:16.067789pt;}
.ws67{word-spacing:16.099562pt;}
.ws1aa{word-spacing:16.152736pt;}
.ws19e{word-spacing:16.280258pt;}
.wsc4{word-spacing:16.365231pt;}
.wseb{word-spacing:16.418365pt;}
.ws8d{word-spacing:16.524633pt;}
.wsa3{word-spacing:16.689459pt;}
.wsaf{word-spacing:16.737168pt;}
.wsb0{word-spacing:16.746355pt;}
.ws166{word-spacing:16.790302pt;}
.wsbe{word-spacing:16.896570pt;}
.ws4b{word-spacing:17.055971pt;}
.wsd2{word-spacing:17.162239pt;}
.wse3{word-spacing:17.199346pt;}
.ws19f{word-spacing:17.257923pt;}
.wse5{word-spacing:17.374774pt;}
.ws14b{word-spacing:17.411612pt;}
.ws86{word-spacing:17.587310pt;}
.ws16f{word-spacing:17.640444pt;}
.ws17c{word-spacing:17.746711pt;}
.wsf5{word-spacing:17.906113pt;}
.ws92{word-spacing:17.959247pt;}
.ws199{word-spacing:18.171782pt;}
.ws81{word-spacing:18.278050pt;}
.ws15d{word-spacing:18.287001pt;}
.wsc1{word-spacing:18.331184pt;}
.ws17b{word-spacing:18.384318pt;}
.ws11f{word-spacing:18.543719pt;}
.wsd0{word-spacing:18.596853pt;}
.ws93{word-spacing:18.703121pt;}
.ws162{word-spacing:18.746969pt;}
.wsa0{word-spacing:18.756255pt;}
.ws101{word-spacing:18.915657pt;}
.wsd4{word-spacing:18.968790pt;}
.wscc{word-spacing:19.393861pt;}
.ws37{word-spacing:19.446995pt;}
.ws12a{word-spacing:19.606397pt;}
.wsb6{word-spacing:19.659531pt;}
.ws123{word-spacing:19.722226pt;}
.ws2d{word-spacing:19.765798pt;}
.ws19a{word-spacing:19.818932pt;}
.ws194{word-spacing:19.872066pt;}
.ws1b0{word-spacing:20.190920pt;}
.ws131{word-spacing:20.244003pt;}
.ws71{word-spacing:20.562806pt;}
.ws45{word-spacing:20.722208pt;}
.ws13c{word-spacing:20.934743pt;}
.ws140{word-spacing:21.147279pt;}
.ws125{word-spacing:22.687559pt;}
.ws1eb{word-spacing:22.826366pt;}
.wsf1{word-spacing:24.536946pt;}
.wsbc{word-spacing:26.848302pt;}
.ws121{word-spacing:27.895280pt;}
.wsa6{word-spacing:31.561517pt;}
.wsdd{word-spacing:32.243524pt;}
.ws165{word-spacing:40.700542pt;}
.wsf9{word-spacing:48.455366pt;}
.ws1c{word-spacing:64.605901pt;}
.ws1b{word-spacing:76.561101pt;}
.wsdc{word-spacing:87.716298pt;}
.ws18c{word-spacing:95.641200pt;}
.wsa5{word-spacing:116.162600pt;}
.ws14d{word-spacing:121.214446pt;}
.wsf6{word-spacing:123.950995pt;}
.wsa4{word-spacing:127.456009pt;}
.ws11e{word-spacing:135.209963pt;}
.wsde{word-spacing:164.298563pt;}
.ws18f{word-spacing:171.171396pt;}
.ws192{word-spacing:172.281990pt;}
.ws18e{word-spacing:180.269424pt;}
.ws190{word-spacing:194.981342pt;}
.ws193{word-spacing:197.742062pt;}
.ws191{word-spacing:249.346743pt;}
.ws18d{word-spacing:270.322743pt;}
.ws14c{word-spacing:284.032599pt;}
.ws185{word-spacing:301.079151pt;}
.wsf8{word-spacing:603.756202pt;}
._19{margin-left:-274.021488pt;}
._1c{margin-left:-261.738962pt;}
._e{margin-left:-7.013661pt;}
._d{margin-left:-5.844725pt;}
._2{margin-left:-4.888316pt;}
._1{margin-left:-3.188040pt;}
._0{margin-left:-1.912824pt;}
._3{margin-left:-0.956416pt;}
._b{width:1.005409pt;}
._5{width:2.656693pt;}
._15{width:4.329659pt;}
._3d{width:7.098754pt;}
._18{width:12.273923pt;}
._4{width:13.820211pt;}
._9{width:15.568223pt;}
._2d{width:16.585492pt;}
._16{width:18.596853pt;}
._6{width:20.297137pt;}
._26{width:21.251579pt;}
._7{width:22.209961pt;}
._8{width:23.644571pt;}
._37{width:24.861253pt;}
._c{width:26.566933pt;}
._17{width:27.682749pt;}
._2e{width:29.065497pt;}
._f{width:29.967509pt;}
._34{width:30.876480pt;}
._a{width:31.880320pt;}
._3c{width:34.005679pt;}
._3e{width:42.082430pt;}
._14{width:50.849467pt;}
._33{width:53.049723pt;}
._27{width:63.760800pt;}
._10{width:67.322133pt;}
._2f{width:70.235162pt;}
._13{width:72.103067pt;}
._32{width:75.222966pt;}
._12{width:98.666133pt;}
._31{width:102.935417pt;}
._24{width:103.887597pt;}
._11{width:114.612800pt;}
._38{width:116.210005pt;}
._30{width:119.572096pt;}
._2c{width:124.954205pt;}
._35{width:130.473015pt;}
._1e{width:143.674336pt;}
._29{width:145.548530pt;}
._1f{width:147.882549pt;}
._22{width:165.225486pt;}
._36{width:197.767968pt;}
._3b{width:198.700737pt;}
._20{width:210.113090pt;}
._39{width:211.218657pt;}
._28{width:230.984125pt;}
._3a{width:240.676774pt;}
._25{width:245.181530pt;}
._21{width:252.237725pt;}
._23{width:268.773026pt;}
._2a{width:323.012213pt;}
._1a{width:353.740539pt;}
._1d{width:366.021527pt;}
._1b{width:368.216043pt;}
._2b{width:443.435110pt;}
.fs8{font-size:15.321682pt;}
.fs7{font-size:21.450447pt;}
.fs9{font-size:26.566933pt;}
.fsd{font-size:27.716485pt;}
.fs5{font-size:31.880533pt;}
.fsb{font-size:33.260004pt;}
.fs6{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fsa{font-size:44.346487pt;}
.fs3{font-size:47.820800pt;}
.fsc{font-size:49.890006pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fsf{font-size:63.761067pt;}
.fse{font-size:74.387733pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:6.292000pt;}
.y143{bottom:6.378667pt;}
.y18e{bottom:6.500000pt;}
.y1e5{bottom:6.564255pt;}
.y101{bottom:9.579319pt;}
.y105{bottom:9.809238pt;}
.y140{bottom:10.453333pt;}
.y13f{bottom:11.625333pt;}
.y142{bottom:18.333333pt;}
.yb7{bottom:23.800000pt;}
.y188{bottom:24.678667pt;}
.y1dc{bottom:24.829826pt;}
.y106{bottom:31.025998pt;}
.yb8{bottom:31.297333pt;}
.y189{bottom:32.368000pt;}
.y1dd{bottom:32.651569pt;}
.yc3{bottom:40.260000pt;}
.y144{bottom:43.774667pt;}
.y100{bottom:48.831651pt;}
.y104{bottom:49.061570pt;}
.yb9{bottom:52.453333pt;}
.yc2{bottom:54.413333pt;}
.y1de{bottom:54.722989pt;}
.y141{bottom:59.445333pt;}
.y18f{bottom:63.062667pt;}
.yba{bottom:73.610667pt;}
.y18a{bottom:74.114667pt;}
.y1df{bottom:76.795800pt;}
.yc1{bottom:79.138667pt;}
.y1e6{bottom:82.562997pt;}
.ybb{bottom:94.766667pt;}
.y1e0{bottom:98.867220pt;}
.y18b{bottom:115.860000pt;}
.ybc{bottom:115.924000pt;}
.y1e1{bottom:120.940031pt;}
.y193{bottom:123.337333pt;}
.y232{bottom:127.092000pt;}
.y192{bottom:135.173333pt;}
.ybd{bottom:137.080000pt;}
.y231{bottom:141.646667pt;}
.y1e2{bottom:143.011452pt;}
.y191{bottom:147.008000pt;}
.y1e9{bottom:147.280512pt;}
.y256{bottom:153.494667pt;}
.y230{bottom:156.200000pt;}
.y18c{bottom:157.606667pt;}
.ybe{bottom:158.237333pt;}
.y190{bottom:158.844000pt;}
.y1e8{bottom:159.627265pt;}
.y210{bottom:164.004000pt;}
.y1e3{bottom:165.084263pt;}
.y35{bottom:167.260000pt;}
.y255{bottom:168.048000pt;}
.y2a5{bottom:171.010667pt;}
.y31f{bottom:171.245333pt;}
.y1e7{bottom:172.024095pt;}
.y2e0{bottom:179.216000pt;}
.ybf{bottom:179.393333pt;}
.y34{bottom:183.200000pt;}
.y2a4{bottom:184.161333pt;}
.y1e4{bottom:187.155683pt;}
.y2df{bottom:191.170667pt;}
.y31e{bottom:195.156000pt;}
.y2a3{bottom:197.312000pt;}
.y33{bottom:199.140000pt;}
.y18d{bottom:199.353333pt;}
.y20f{bottom:199.356000pt;}
.y2de{bottom:203.125333pt;}
.y31d{bottom:207.110667pt;}
.y58{bottom:215.080000pt;}
.y32{bottom:215.081333pt;}
.y1b7{bottom:215.221333pt;}
.y20e{bottom:215.297333pt;}
.y2dd{bottom:215.629333pt;}
.y132{bottom:216.997333pt;}
.y31c{bottom:219.066667pt;}
.y2a2{bottom:219.729333pt;}
.y8b{bottom:220.045333pt;}
.y254{bottom:220.566667pt;}
.y186{bottom:221.817333pt;}
.y2dc{bottom:227.585333pt;}
.yb5{bottom:231.020000pt;}
.y31{bottom:231.021333pt;}
.y1b6{bottom:231.161333pt;}
.y20d{bottom:231.237333pt;}
.y131{bottom:232.937333pt;}
.y2a1{bottom:235.669333pt;}
.y2db{bottom:239.540000pt;}
.y31b{bottom:242.976000pt;}
.y8a{bottom:246.849333pt;}
.y57{bottom:246.961333pt;}
.y30{bottom:247.046667pt;}
.y163{bottom:247.048000pt;}
.y1b5{bottom:247.102667pt;}
.y1da{bottom:247.146667pt;}
.y20c{bottom:247.177333pt;}
.y253{bottom:247.317333pt;}
.y130{bottom:248.878667pt;}
.y2a0{bottom:251.609333pt;}
.y2da{bottom:252.044000pt;}
.y185{bottom:252.925333pt;}
.y31a{bottom:254.932000pt;}
.y89{bottom:262.789333pt;}
.y56{bottom:262.901333pt;}
.y2f{bottom:262.986667pt;}
.y162{bottom:262.988000pt;}
.y1b4{bottom:263.042667pt;}
.y1d9{bottom:263.086667pt;}
.y20b{bottom:263.117333pt;}
.y252{bottom:263.257333pt;}
.y274{bottom:263.832000pt;}
.y2d9{bottom:263.998667pt;}
.y12f{bottom:264.818667pt;}
.y319{bottom:266.886667pt;}
.y29f{bottom:267.549333pt;}
.y184{bottom:268.865333pt;}
.y2d8{bottom:275.954667pt;}
.y88{bottom:278.729333pt;}
.y55{bottom:278.841333pt;}
.y2e{bottom:278.926667pt;}
.y161{bottom:278.928000pt;}
.y1b3{bottom:278.982667pt;}
.y1d8{bottom:279.028000pt;}
.y20a{bottom:279.057333pt;}
.y22f{bottom:279.081333pt;}
.y251{bottom:279.198667pt;}
.y273{bottom:279.772000pt;}
.y12e{bottom:280.758667pt;}
.y29e{bottom:283.489333pt;}
.y183{bottom:284.805333pt;}
.y2d7{bottom:288.457333pt;}
.y318{bottom:290.797333pt;}
.y87{bottom:294.670667pt;}
.ye4{bottom:294.781333pt;}
.y2d{bottom:294.868000pt;}
.y1b2{bottom:294.922667pt;}
.y1d7{bottom:294.968000pt;}
.y209{bottom:294.997333pt;}
.y22e{bottom:295.021333pt;}
.y250{bottom:295.138667pt;}
.y272{bottom:295.712000pt;}
.y12d{bottom:296.698667pt;}
.y29d{bottom:299.430667pt;}
.yb4{bottom:300.237333pt;}
.y2d6{bottom:300.413333pt;}
.y182{bottom:300.745333pt;}
.y54{bottom:300.754667pt;}
.y317{bottom:302.752000pt;}
.y86{bottom:310.610667pt;}
.yfe{bottom:310.721333pt;}
.ye3{bottom:310.722667pt;}
.y2c{bottom:310.808000pt;}
.y160{bottom:310.809333pt;}
.y1b1{bottom:310.862667pt;}
.y1d6{bottom:310.908000pt;}
.y208{bottom:310.938667pt;}
.y22d{bottom:310.961333pt;}
.y24f{bottom:311.078667pt;}
.y271{bottom:311.652000pt;}
.y12c{bottom:312.638667pt;}
.y2d5{bottom:312.917333pt;}
.y316{bottom:314.708000pt;}
.y29c{bottom:315.370667pt;}
.yb3{bottom:316.177333pt;}
.y181{bottom:316.686667pt;}
.y2d4{bottom:324.872000pt;}
.y85{bottom:326.550667pt;}
.yfd{bottom:326.661333pt;}
.ye2{bottom:326.662667pt;}
.y2b{bottom:326.748000pt;}
.y15f{bottom:326.749333pt;}
.y1b0{bottom:326.802667pt;}
.y1d5{bottom:326.848000pt;}
.y207{bottom:326.878667pt;}
.y22c{bottom:326.902667pt;}
.y24e{bottom:327.018667pt;}
.y270{bottom:327.593333pt;}
.y12b{bottom:328.578667pt;}
.y53{bottom:330.002667pt;}
.y29b{bottom:331.310667pt;}
.y180{bottom:332.626667pt;}
.y2d3{bottom:337.376000pt;}
.y315{bottom:338.618667pt;}
.y84{bottom:342.490667pt;}
.ye1{bottom:342.602667pt;}
.y2a{bottom:342.688000pt;}
.y15e{bottom:342.689333pt;}
.y1af{bottom:342.744000pt;}
.y1d4{bottom:342.788000pt;}
.y206{bottom:342.818667pt;}
.y22b{bottom:342.842667pt;}
.yb2{bottom:342.884000pt;}
.y24d{bottom:342.958667pt;}
.y26f{bottom:343.533333pt;}
.y12a{bottom:344.520000pt;}
.y52{bottom:345.942667pt;}
.y29a{bottom:347.250667pt;}
.y17f{bottom:348.566667pt;}
.y2d2{bottom:349.330667pt;}
.y314{bottom:350.573333pt;}
.y83{bottom:358.430667pt;}
.ye0{bottom:358.542667pt;}
.y29{bottom:358.628000pt;}
.y15d{bottom:358.629333pt;}
.y1ae{bottom:358.684000pt;}
.y1d3{bottom:358.728000pt;}
.y205{bottom:358.758667pt;}
.y22a{bottom:358.782667pt;}
.yb1{bottom:358.825333pt;}
.y24c{bottom:358.898667pt;}
.y26e{bottom:359.473333pt;}
.y129{bottom:360.460000pt;}
.y2d1{bottom:361.286667pt;}
.y313{bottom:362.528000pt;}
.y299{bottom:363.190667pt;}
.y17e{bottom:364.506667pt;}
.y51{bottom:369.133333pt;}
.y2d0{bottom:373.241333pt;}
.y82{bottom:374.370667pt;}
.ydf{bottom:374.482667pt;}
.y312{bottom:374.484000pt;}
.y15c{bottom:374.569333pt;}
.y1ad{bottom:374.624000pt;}
.y28{bottom:374.654667pt;}
.y1d2{bottom:374.669333pt;}
.y204{bottom:374.698667pt;}
.y229{bottom:374.722667pt;}
.yb0{bottom:374.765333pt;}
.y24b{bottom:374.840000pt;}
.y26d{bottom:376.344000pt;}
.y128{bottom:376.400000pt;}
.y298{bottom:379.130667pt;}
.y17d{bottom:380.446667pt;}
.y2cf{bottom:385.196000pt;}
.y311{bottom:386.438667pt;}
.y81{bottom:390.312000pt;}
.y15b{bottom:390.509333pt;}
.y1ac{bottom:390.564000pt;}
.yfc{bottom:390.592000pt;}
.y27{bottom:390.594667pt;}
.y1d1{bottom:390.609333pt;}
.yde{bottom:390.630667pt;}
.y203{bottom:390.640000pt;}
.y228{bottom:390.662667pt;}
.yaf{bottom:390.705333pt;}
.y24a{bottom:390.780000pt;}
.y26c{bottom:392.284000pt;}
.y127{bottom:392.340000pt;}
.y297{bottom:394.956000pt;}
.y2ce{bottom:397.700000pt;}
.y50{bottom:398.382667pt;}
.y310{bottom:398.393333pt;}
.y17c{bottom:404.948000pt;}
.y80{bottom:406.252000pt;}
.y15a{bottom:406.450667pt;}
.y1ab{bottom:406.504000pt;}
.yfb{bottom:406.532000pt;}
.y26{bottom:406.534667pt;}
.y1d0{bottom:406.549333pt;}
.ydd{bottom:406.570667pt;}
.y202{bottom:406.580000pt;}
.y227{bottom:406.602667pt;}
.yae{bottom:406.645333pt;}
.y249{bottom:406.937333pt;}
.y26b{bottom:408.224000pt;}
.y126{bottom:408.280000pt;}
.y2cd{bottom:409.656000pt;}
.y30f{bottom:410.349333pt;}
.y296{bottom:410.896000pt;}
.y4f{bottom:414.322667pt;}
.y2cc{bottom:421.610667pt;}
.y7f{bottom:422.192000pt;}
.y30e{bottom:422.304000pt;}
.y159{bottom:422.390667pt;}
.y1aa{bottom:422.445333pt;}
.yfa{bottom:422.472000pt;}
.y25{bottom:422.474667pt;}
.y1cf{bottom:422.489333pt;}
.ydc{bottom:422.510667pt;}
.y201{bottom:422.520000pt;}
.y226{bottom:422.544000pt;}
.yad{bottom:422.585333pt;}
.y248{bottom:422.877333pt;}
.y125{bottom:426.137333pt;}
.y295{bottom:426.836000pt;}
.y4e{bottom:430.262667pt;}
.y26a{bottom:433.932000pt;}
.y2cb{bottom:434.114667pt;}
.y30d{bottom:434.260000pt;}
.y17b{bottom:436.056000pt;}
.y7e{bottom:438.132000pt;}
.y158{bottom:438.330667pt;}
.yf9{bottom:438.412000pt;}
.y24{bottom:438.414667pt;}
.y1ce{bottom:438.429333pt;}
.ydb{bottom:438.450667pt;}
.y200{bottom:438.460000pt;}
.y225{bottom:438.484000pt;}
.yac{bottom:438.525333pt;}
.y247{bottom:438.817333pt;}
.y124{bottom:442.077333pt;}
.y294{bottom:442.776000pt;}
.y1a9{bottom:443.062667pt;}
.y2ca{bottom:446.069333pt;}
.y4d{bottom:446.202667pt;}
.y30c{bottom:446.214667pt;}
.y17a{bottom:451.996000pt;}
.y7d{bottom:454.072000pt;}
.y157{bottom:454.270667pt;}
.yf8{bottom:454.353333pt;}
.yda{bottom:454.390667pt;}
.y1ff{bottom:454.400000pt;}
.y224{bottom:454.424000pt;}
.yab{bottom:454.466667pt;}
.y1cd{bottom:454.556000pt;}
.y246{bottom:454.757333pt;}
.y123{bottom:458.018667pt;}
.y2c9{bottom:458.025333pt;}
.y30b{bottom:458.169333pt;}
.y293{bottom:458.716000pt;}
.y23{bottom:459.053333pt;}
.y4c{bottom:462.142667pt;}
.y269{bottom:466.748000pt;}
.y179{bottom:467.936000pt;}
.y1a8{bottom:469.168000pt;}
.y7c{bottom:470.013333pt;}
.y30a{bottom:470.125333pt;}
.y156{bottom:470.210667pt;}
.yf7{bottom:470.293333pt;}
.yd9{bottom:470.332000pt;}
.y1fe{bottom:470.340000pt;}
.y223{bottom:470.364000pt;}
.yaa{bottom:470.406667pt;}
.y1cc{bottom:470.496000pt;}
.y2c8{bottom:470.529333pt;}
.y245{bottom:470.697333pt;}
.y122{bottom:473.958667pt;}
.y292{bottom:474.657333pt;}
.y4b{bottom:478.082667pt;}
.y309{bottom:482.080000pt;}
.y2c7{bottom:482.484000pt;}
.y268{bottom:482.688000pt;}
.y178{bottom:483.876000pt;}
.y1a7{bottom:485.108000pt;}
.y7b{bottom:485.953333pt;}
.y155{bottom:486.150667pt;}
.yf6{bottom:486.233333pt;}
.yd8{bottom:486.272000pt;}
.y1fd{bottom:486.281333pt;}
.y222{bottom:486.304000pt;}
.ya9{bottom:486.346667pt;}
.y1cb{bottom:486.436000pt;}
.y244{bottom:486.638667pt;}
.y121{bottom:489.898667pt;}
.y291{bottom:490.597333pt;}
.y4a{bottom:494.024000pt;}
.y308{bottom:494.034667pt;}
.y2c6{bottom:494.438667pt;}
.y267{bottom:498.628000pt;}
.y177{bottom:499.816000pt;}
.y1a6{bottom:501.048000pt;}
.y7a{bottom:501.893333pt;}
.y154{bottom:502.092000pt;}
.yf5{bottom:502.173333pt;}
.yd7{bottom:502.212000pt;}
.y1fc{bottom:502.221333pt;}
.y221{bottom:502.244000pt;}
.ya8{bottom:502.286667pt;}
.y1ca{bottom:502.376000pt;}
.y243{bottom:502.578667pt;}
.y21{bottom:504.405333pt;}
.y120{bottom:505.838667pt;}
.y307{bottom:505.990667pt;}
.y290{bottom:506.537333pt;}
.y2c5{bottom:506.942667pt;}
.y49{bottom:509.964000pt;}
.y266{bottom:514.569333pt;}
.y176{bottom:515.756000pt;}
.y1a5{bottom:516.988000pt;}
.y20{bottom:517.688000pt;}
.y306{bottom:517.945333pt;}
.y153{bottom:518.032000pt;}
.yd6{bottom:518.152000pt;}
.y1fb{bottom:518.161333pt;}
.y220{bottom:518.185333pt;}
.ya7{bottom:518.226667pt;}
.yf4{bottom:518.282667pt;}
.y1c9{bottom:518.317333pt;}
.y242{bottom:518.518667pt;}
.y2c4{bottom:518.898667pt;}
.y11f{bottom:521.778667pt;}
.y28f{bottom:522.477333pt;}
.y79{bottom:522.798667pt;}
.y48{bottom:529.638667pt;}
.y305{bottom:529.900000pt;}
.y265{bottom:530.509333pt;}
.y1f{bottom:531.057333pt;}
.y2c3{bottom:531.401333pt;}
.y175{bottom:531.697333pt;}
.y1a4{bottom:532.929333pt;}
.y152{bottom:533.972000pt;}
.yd5{bottom:534.092000pt;}
.y1fa{bottom:534.101333pt;}
.y21f{bottom:534.125333pt;}
.ya6{bottom:534.166667pt;}
.yf3{bottom:534.222667pt;}
.y1c8{bottom:534.257333pt;}
.y241{bottom:534.458667pt;}
.y11e{bottom:537.718667pt;}
.y28e{bottom:538.417333pt;}
.y304{bottom:541.856000pt;}
.y2c2{bottom:543.357333pt;}
.y1e{bottom:544.341333pt;}
.y47{bottom:545.578667pt;}
.y264{bottom:546.449333pt;}
.y174{bottom:547.637333pt;}
.y1a3{bottom:548.869333pt;}
.y78{bottom:549.602667pt;}
.y151{bottom:549.912000pt;}
.yd4{bottom:550.032000pt;}
.y1f9{bottom:550.041333pt;}
.y21e{bottom:550.065333pt;}
.ya5{bottom:550.108000pt;}
.yf2{bottom:550.162667pt;}
.y1c7{bottom:550.197333pt;}
.y240{bottom:550.398667pt;}
.y11d{bottom:553.660000pt;}
.y303{bottom:553.810667pt;}
.y28d{bottom:554.357333pt;}
.y2c1{bottom:555.312000pt;}
.y1d{bottom:557.624000pt;}
.y46{bottom:561.520000pt;}
.y263{bottom:563.320000pt;}
.y173{bottom:563.577333pt;}
.y1a2{bottom:564.950667pt;}
.y77{bottom:565.542667pt;}
.y302{bottom:565.766667pt;}
.y150{bottom:565.852000pt;}
.yd3{bottom:565.973333pt;}
.y1f8{bottom:565.981333pt;}
.y21d{bottom:566.005333pt;}
.ya4{bottom:566.048000pt;}
.yf1{bottom:566.104000pt;}
.y1c6{bottom:566.137333pt;}
.y23f{bottom:566.338667pt;}
.y2c0{bottom:567.816000pt;}
.y11c{bottom:569.600000pt;}
.y28c{bottom:570.298667pt;}
.y1c{bottom:570.908000pt;}
.y45{bottom:577.460000pt;}
.y301{bottom:577.721333pt;}
.y262{bottom:579.260000pt;}
.y2bf{bottom:579.770667pt;}
.y172{bottom:580.246667pt;}
.y1a1{bottom:580.890667pt;}
.y76{bottom:581.482667pt;}
.y14f{bottom:581.793333pt;}
.yd2{bottom:581.913333pt;}
.y1f7{bottom:581.922667pt;}
.ya3{bottom:581.988000pt;}
.yf0{bottom:582.044000pt;}
.y1c5{bottom:582.077333pt;}
.y23e{bottom:582.280000pt;}
.y1b{bottom:584.192000pt;}
.y11b{bottom:585.540000pt;}
.y21c{bottom:586.969333pt;}
.y300{bottom:589.676000pt;}
.y28b{bottom:590.306667pt;}
.y2be{bottom:591.726667pt;}
.y44{bottom:593.400000pt;}
.y261{bottom:595.200000pt;}
.y171{bottom:596.186667pt;}
.y1a0{bottom:596.830667pt;}
.y75{bottom:597.422667pt;}
.y1a{bottom:597.474667pt;}
.yd1{bottom:597.853333pt;}
.y1f6{bottom:597.862667pt;}
.ya2{bottom:597.928000pt;}
.yef{bottom:597.984000pt;}
.y1c4{bottom:598.018667pt;}
.y23d{bottom:598.220000pt;}
.y11a{bottom:601.480000pt;}
.y2ff{bottom:601.632000pt;}
.y14e{bottom:602.437333pt;}
.y2bd{bottom:604.230667pt;}
.y19{bottom:610.758667pt;}
.y260{bottom:611.141333pt;}
.y170{bottom:612.128000pt;}
.y19f{bottom:612.770667pt;}
.y43{bottom:613.076000pt;}
.y74{bottom:613.362667pt;}
.y2fe{bottom:613.586667pt;}
.yd0{bottom:613.793333pt;}
.y1f5{bottom:613.802667pt;}
.y21b{bottom:613.913333pt;}
.yee{bottom:613.924000pt;}
.y1c3{bottom:613.958667pt;}
.y28a{bottom:614.517333pt;}
.y2bc{bottom:616.185333pt;}
.y119{bottom:617.420000pt;}
.ya1{bottom:618.794667pt;}
.y23c{bottom:619.104000pt;}
.y18{bottom:624.042667pt;}
.y2fd{bottom:625.541333pt;}
.y25f{bottom:627.081333pt;}
.y16f{bottom:628.068000pt;}
.y14d{bottom:628.081333pt;}
.y2bb{bottom:628.140000pt;}
.y19e{bottom:628.710667pt;}
.y42{bottom:629.016000pt;}
.y73{bottom:629.304000pt;}
.ycf{bottom:629.733333pt;}
.y1f4{bottom:629.742667pt;}
.y21a{bottom:629.853333pt;}
.yed{bottom:629.864000pt;}
.y1c2{bottom:630.084000pt;}
.y289{bottom:630.457333pt;}
.y118{bottom:633.360000pt;}
.y17{bottom:637.325333pt;}
.y2fc{bottom:637.497333pt;}
.y2ba{bottom:640.644000pt;}
.y25e{bottom:643.952000pt;}
.y16e{bottom:644.008000pt;}
.y14c{bottom:644.021333pt;}
.y19d{bottom:644.792000pt;}
.y41{bottom:644.956000pt;}
.y72{bottom:645.244000pt;}
.ya0{bottom:645.501333pt;}
.yce{bottom:645.673333pt;}
.y1f3{bottom:645.682667pt;}
.y219{bottom:645.793333pt;}
.yec{bottom:645.805333pt;}
.y23b{bottom:645.854667pt;}
.y1c1{bottom:646.025333pt;}
.y288{bottom:646.397333pt;}
.y117{bottom:649.301333pt;}
.y2fb{bottom:649.452000pt;}
.y16{bottom:650.609333pt;}
.y2b9{bottom:652.600000pt;}
.y25d{bottom:659.892000pt;}
.y16d{bottom:659.948000pt;}
.y14b{bottom:659.961333pt;}
.y19c{bottom:660.732000pt;}
.y40{bottom:660.896000pt;}
.y71{bottom:661.184000pt;}
.y2fa{bottom:661.408000pt;}
.y9f{bottom:661.441333pt;}
.ycd{bottom:661.614667pt;}
.y218{bottom:661.733333pt;}
.yeb{bottom:661.745333pt;}
.y23a{bottom:661.794667pt;}
.y1c0{bottom:661.965333pt;}
.y287{bottom:662.337333pt;}
.y15{bottom:663.893333pt;}
.y2b8{bottom:664.554667pt;}
.y116{bottom:665.241333pt;}
.y1f2{bottom:666.564000pt;}
.y2f9{bottom:673.362667pt;}
.y25c{bottom:675.832000pt;}
.y16c{bottom:675.888000pt;}
.y14a{bottom:675.901333pt;}
.y19b{bottom:676.673333pt;}
.y3f{bottom:676.836000pt;}
.y2b7{bottom:677.058667pt;}
.y70{bottom:677.124000pt;}
.y14{bottom:677.176000pt;}
.y9e{bottom:677.382667pt;}
.ycc{bottom:677.554667pt;}
.y217{bottom:677.674667pt;}
.y239{bottom:677.734667pt;}
.y1bf{bottom:677.905333pt;}
.y286{bottom:678.278667pt;}
.y115{bottom:681.181333pt;}
.yea{bottom:682.884000pt;}
.y2f8{bottom:685.317333pt;}
.y2b6{bottom:689.013333pt;}
.y13{bottom:690.545333pt;}
.y25b{bottom:691.772000pt;}
.y16b{bottom:691.828000pt;}
.y149{bottom:691.841333pt;}
.y19a{bottom:692.613333pt;}
.y6f{bottom:693.064000pt;}
.y3e{bottom:693.288000pt;}
.y1f1{bottom:693.308000pt;}
.y9d{bottom:693.322667pt;}
.ycb{bottom:693.494667pt;}
.y216{bottom:693.614667pt;}
.y238{bottom:693.674667pt;}
.y1be{bottom:693.845333pt;}
.y114{bottom:697.121333pt;}
.y2f7{bottom:697.273333pt;}
.y285{bottom:698.286667pt;}
.y2b5{bottom:701.517333pt;}
.y12{bottom:703.829333pt;}
.y25a{bottom:707.712000pt;}
.y16a{bottom:707.769333pt;}
.y148{bottom:707.781333pt;}
.y199{bottom:708.553333pt;}
.y6e{bottom:709.004000pt;}
.y3d{bottom:709.228000pt;}
.y1f0{bottom:709.248000pt;}
.y9c{bottom:709.262667pt;}
.y215{bottom:709.554667pt;}
.y237{bottom:709.616000pt;}
.yca{bottom:709.641333pt;}
.y1bd{bottom:709.785333pt;}
.y113{bottom:713.061333pt;}
.y11{bottom:717.112000pt;}
.y2f6{bottom:721.182667pt;}
.y284{bottom:722.497333pt;}
.y259{bottom:723.653333pt;}
.y147{bottom:723.722667pt;}
.y169{bottom:724.438667pt;}
.y198{bottom:724.493333pt;}
.y6d{bottom:724.945333pt;}
.y3c{bottom:725.168000pt;}
.y1ef{bottom:725.188000pt;}
.y9b{bottom:725.202667pt;}
.y214{bottom:725.494667pt;}
.y236{bottom:725.556000pt;}
.yc9{bottom:725.582667pt;}
.y1bc{bottom:725.725333pt;}
.y2b4{bottom:727.169333pt;}
.y112{bottom:729.002667pt;}
.y10{bottom:730.396000pt;}
.y2f5{bottom:733.138667pt;}
.y283{bottom:738.321333pt;}
.y258{bottom:739.593333pt;}
.y146{bottom:739.662667pt;}
.y168{bottom:740.378667pt;}
.y197{bottom:740.574667pt;}
.y6c{bottom:740.885333pt;}
.y3b{bottom:741.108000pt;}
.y1ee{bottom:741.129333pt;}
.y9a{bottom:741.142667pt;}
.y213{bottom:741.434667pt;}
.y235{bottom:741.496000pt;}
.yc8{bottom:741.522667pt;}
.y1bb{bottom:741.666667pt;}
.yf{bottom:743.680000pt;}
.y111{bottom:744.942667pt;}
.y2f4{bottom:745.093333pt;}
.y282{bottom:754.261333pt;}
.y257{bottom:755.533333pt;}
.y167{bottom:756.318667pt;}
.y196{bottom:756.514667pt;}
.y6b{bottom:756.825333pt;}
.ye{bottom:756.962667pt;}
.y3a{bottom:757.048000pt;}
.y2f3{bottom:757.049333pt;}
.y1ed{bottom:757.069333pt;}
.y99{bottom:757.084000pt;}
.y212{bottom:757.376000pt;}
.y234{bottom:757.436000pt;}
.yc7{bottom:757.462667pt;}
.y1ba{bottom:757.606667pt;}
.y2b3{bottom:760.470667pt;}
.y110{bottom:762.800000pt;}
.y2f2{bottom:769.004000pt;}
.y281{bottom:770.201333pt;}
.yd{bottom:770.246667pt;}
.y166{bottom:772.258667pt;}
.y6a{bottom:772.765333pt;}
.y39{bottom:772.988000pt;}
.y1ec{bottom:773.009333pt;}
.y98{bottom:773.024000pt;}
.y211{bottom:773.316000pt;}
.yc6{bottom:773.402667pt;}
.y1b9{bottom:773.546667pt;}
.y2b2{bottom:776.410667pt;}
.y10f{bottom:778.740000pt;}
.y2f1{bottom:780.958667pt;}
.yc{bottom:783.616000pt;}
.y145{bottom:785.322667pt;}
.y280{bottom:786.142667pt;}
.y165{bottom:788.200000pt;}
.y69{bottom:788.705333pt;}
.ye9{bottom:788.928000pt;}
.y38{bottom:788.929333pt;}
.y97{bottom:789.176000pt;}
.y2b1{bottom:792.350667pt;}
.y2f0{bottom:792.914667pt;}
.y1b8{bottom:794.321333pt;}
.y10e{bottom:794.680000pt;}
.yb{bottom:796.898667pt;}
.y27f{bottom:801.966667pt;}
.y195{bottom:802.321333pt;}
.y233{bottom:803.444000pt;}
.y164{bottom:804.140000pt;}
.y13e{bottom:804.452000pt;}
.y68{bottom:804.645333pt;}
.y37{bottom:804.869333pt;}
.y96{bottom:805.116000pt;}
.y2b0{bottom:808.290667pt;}
.ya{bottom:810.182667pt;}
.y2ef{bottom:816.824000pt;}
.y27e{bottom:817.906667pt;}
.y194{bottom:818.261333pt;}
.y1eb{bottom:819.016000pt;}
.yc5{bottom:819.384000pt;}
.y67{bottom:820.586667pt;}
.y36{bottom:820.809333pt;}
.y95{bottom:821.056000pt;}
.y9{bottom:823.466667pt;}
.y2af{bottom:824.232000pt;}
.y2ee{bottom:828.780000pt;}
.y27d{bottom:833.846667pt;}
.y1ea{bottom:834.956000pt;}
.yc4{bottom:835.325333pt;}
.y66{bottom:836.526667pt;}
.y8{bottom:836.749333pt;}
.y94{bottom:836.996000pt;}
.y2ae{bottom:840.172000pt;}
.y2ed{bottom:840.734667pt;}
.y10d{bottom:845.221333pt;}
.y187{bottom:845.358667pt;}
.y27c{bottom:849.786667pt;}
.y65{bottom:852.466667pt;}
.ye8{bottom:852.689333pt;}
.y93{bottom:852.936000pt;}
.y1db{bottom:854.084000pt;}
.y10c{bottom:861.161333pt;}
.yb6{bottom:862.422667pt;}
.y2ec{bottom:864.645333pt;}
.y27b{bottom:865.728000pt;}
.y2ad{bottom:866.221333pt;}
.ye7{bottom:868.629333pt;}
.y64{bottom:868.630667pt;}
.y92{bottom:868.877333pt;}
.y2eb{bottom:876.600000pt;}
.y27a{bottom:881.668000pt;}
.y7{bottom:882.556000pt;}
.y10b{bottom:884.274667pt;}
.y109{bottom:884.390667pt;}
.ye6{bottom:884.569333pt;}
.y63{bottom:884.570667pt;}
.y91{bottom:884.817333pt;}
.y2ea{bottom:888.556000pt;}
.y6{bottom:898.994667pt;}
.y2ac{bottom:899.522667pt;}
.y62{bottom:900.510667pt;}
.y90{bottom:900.757333pt;}
.y10a{bottom:901.544000pt;}
.y108{bottom:901.658667pt;}
.y13d{bottom:908.149333pt;}
.y2e9{bottom:912.465333pt;}
.y5{bottom:915.433333pt;}
.y2ab{bottom:915.462667pt;}
.y61{bottom:916.450667pt;}
.y8f{bottom:916.697333pt;}
.y13c{bottom:920.104000pt;}
.y2e8{bottom:924.421333pt;}
.y279{bottom:928.118667pt;}
.y2aa{bottom:931.404000pt;}
.y4{bottom:931.872000pt;}
.y13b{bottom:932.058667pt;}
.y60{bottom:932.390667pt;}
.y8e{bottom:932.637333pt;}
.y2e7{bottom:936.376000pt;}
.y278{bottom:942.740000pt;}
.y13a{bottom:944.014667pt;}
.y2a9{bottom:947.344000pt;}
.y5f{bottom:948.330667pt;}
.y3{bottom:948.506667pt;}
.y8d{bottom:953.504000pt;}
.y277{bottom:955.652000pt;}
.y139{bottom:955.969333pt;}
.y2e6{bottom:960.286667pt;}
.y2a8{bottom:963.284000pt;}
.ye5{bottom:964.270667pt;}
.y5e{bottom:964.272000pt;}
.y138{bottom:967.924000pt;}
.y107{bottom:971.696000pt;}
.y102{bottom:971.810667pt;}
.y2e5{bottom:972.241333pt;}
.y276{bottom:974.548000pt;}
.y2a7{bottom:979.224000pt;}
.y137{bottom:979.880000pt;}
.y8c{bottom:980.210667pt;}
.y5d{bottom:980.212000pt;}
.y2e4{bottom:984.197333pt;}
.y103{bottom:988.964000pt;}
.yff{bottom:989.078667pt;}
.y275{bottom:989.169333pt;}
.y2{bottom:990.350667pt;}
.y136{bottom:991.834667pt;}
.y2a6{bottom:995.164000pt;}
.y5c{bottom:996.152000pt;}
.y135{bottom:1003.790667pt;}
.y2e3{bottom:1008.106667pt;}
.y5b{bottom:1012.092000pt;}
.y2e2{bottom:1020.062667pt;}
.y134{bottom:1022.685333pt;}
.y1{bottom:1027.544000pt;}
.y5a{bottom:1028.032000pt;}
.y2e1{bottom:1032.017333pt;}
.y59{bottom:1043.972000pt;}
.y133{bottom:1048.754667pt;}
.y22{bottom:1066.278667pt;}
.h13{height:10.970324pt;}
.h12{height:14.886610pt;}
.h16{height:15.966727pt;}
.h19{height:18.278050pt;}
.h1f{height:19.068941pt;}
.h24{height:21.933807pt;}
.h18{height:25.068486pt;}
.he{height:28.734867pt;}
.h20{height:29.159939pt;}
.ha{height:29.244954pt;}
.h26{height:29.452954pt;}
.h25{height:29.458287pt;}
.h1b{height:30.510383pt;}
.hd{height:32.900710pt;}
.h8{height:33.187635pt;}
.h7{height:33.426739pt;}
.h1e{height:34.324324pt;}
.h4{height:36.449833pt;}
.hb{height:36.548574pt;}
.hc{height:36.553907pt;}
.h5{height:36.556100pt;}
.hf{height:36.822767pt;}
.h1c{height:38.130031pt;}
.h1d{height:38.135595pt;}
.h6{height:39.850400pt;}
.h3{height:40.211857pt;}
.h22{height:44.568986pt;}
.h23{height:44.869197pt;}
.h10{height:45.092358pt;}
.h21{height:51.178761pt;}
.h11{height:65.936782pt;}
.h14{height:66.166701pt;}
.h15{height:78.094667pt;}
.h2{height:87.734861pt;}
.h9{height:192.708000pt;}
.h1a{height:201.046475pt;}
.h17{height:209.772000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:164.024551pt;}
.w4{width:305.977333pt;}
.w2{width:320.862667pt;}
.w5{width:322.642667pt;}
.w6{width:334.746394pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:12.413333pt;}
.x2f{left:14.389333pt;}
.x14{left:24.121333pt;}
.x34{left:25.165063pt;}
.x2d{left:26.830667pt;}
.x2c{left:37.421333pt;}
.x1f{left:39.208886pt;}
.x13{left:42.984000pt;}
.x33{left:44.843918pt;}
.x9{left:54.136000pt;}
.x1b{left:55.156000pt;}
.x44{left:59.449333pt;}
.x12{left:61.077333pt;}
.x8{left:67.418667pt;}
.x1c{left:73.845151pt;}
.x1d{left:75.876000pt;}
.x45{left:78.481333pt;}
.x1{left:80.056000pt;}
.x2{left:84.025333pt;}
.x3c{left:90.353333pt;}
.x20{left:93.797333pt;}
.x36{left:96.800155pt;}
.x28{left:101.148000pt;}
.x3b{left:113.465333pt;}
.x25{left:122.292000pt;}
.x2e{left:125.241333pt;}
.x18{left:137.708000pt;}
.x17{left:140.530667pt;}
.x3d{left:144.744000pt;}
.x15{left:145.837333pt;}
.x35{left:152.147715pt;}
.x43{left:160.298667pt;}
.x39{left:162.890667pt;}
.x38{left:165.436000pt;}
.xb{left:169.676000pt;}
.x2a{left:171.754667pt;}
.x30{left:175.337333pt;}
.x32{left:179.321333pt;}
.x31{left:184.556000pt;}
.x26{left:190.810667pt;}
.x3{left:208.110667pt;}
.x1e{left:223.832000pt;}
.x7{left:225.109333pt;}
.x47{left:226.688000pt;}
.x21{left:242.986667pt;}
.x48{left:246.645333pt;}
.xa{left:250.354667pt;}
.x27{left:281.608000pt;}
.x4{left:291.253333pt;}
.x19{left:303.373333pt;}
.x6{left:309.258667pt;}
.x5{left:311.432000pt;}
.x46{left:337.850667pt;}
.xc{left:404.820000pt;}
.x2b{left:410.872000pt;}
.x10{left:412.461333pt;}
.x22{left:415.701333pt;}
.xd{left:418.104000pt;}
.x24{left:419.204000pt;}
.x40{left:428.226667pt;}
.x49{left:429.166667pt;}
.x23{left:434.348000pt;}
.xe{left:437.138667pt;}
.x3f{left:441.510667pt;}
.xf{left:458.089333pt;}
.x3e{left:461.342667pt;}
.x42{left:464.086667pt;}
.x4a{left:478.293333pt;}
.x4c{left:479.917333pt;}
.x29{left:497.434667pt;}
.x41{left:506.420000pt;}
.x11{left:513.061333pt;}
.x1a{left:514.290667pt;}
.x3a{left:519.418667pt;}
.x4b{left:541.806667pt;}
.x37{left:648.785333pt;}
}




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