
    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_f8c7bfe9da6d564287072aa2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.048340;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_24ddd724b1bacde4de42036f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_2c64b813f10275365a1ca5ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_c75abc8e8f434686114746b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_a2c50a09e54982f62a679d0e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_61a48651fb88b816097ee6fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.169000;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_d43ff2c5b3334498fc6b37ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.650000;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_44e385e23a428d9478fff33a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;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_31c95a722d266d41bdc0525d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.438000;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_5b3637717b88d68f7498bb4d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;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_a7ac694418bbaa4bb281f205.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.684000;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_42df75a00e6eedeed08e577c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.724000;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_260eedfe8e71dd6a24a70b28.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.436000;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_b81875a3421bb812a37c52ee.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.883000;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_12ab5b2cd38a42b01e551df9.woff2')format("woff");}.fff{font-family:fff;line-height:0.712000;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_0c4be5241a9f4f52d61f8d5f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.873000;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_f2fdb96be8643f778ea3a5a3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.258000;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_ddd9b12302c6638b4c663df8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.700000;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_a9e1370ba5511d63445f4bcb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.879000;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_3445733d412eeb19e8cc964b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.952000;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_760b79e2de9b43a1a798ab93.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.199000;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_bad3604061ed8ca6b92ae40f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.724000;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_e39aec302b9c4fd537102646.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.657000;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_06dfc847785dc803240af8e7.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.952000;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_a5f9697472f6c2e32b790bbd.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_5a1cfba25012cba569cb4b8b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.724000;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_90e85604874796eec01a8c0c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.681000;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_607d069eeea76219a0327dff.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.846000;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_88b487075563ed34b7b7fb27.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.964000;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_f038aecf3d6841f4da9fb911.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.258000;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_071e97bf873a5f1aec0cfa48.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.817000;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_2601ca74b9ff53fd327b9aea.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.384000;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_8b9983ade5a63bc9666a15f2.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.724000;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_415d78d75074ab1959f80453.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.475000;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_4f36825bcc23adc370cd61d6.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.712000;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_e9c3f5a4f4d58d74ed8ce104.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.943000;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_d0f0a9f8b1b876ba7bab90e7.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.724000;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_31c50e12c8d470852cdfb241.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.879000;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_2252e37f24aafc66b0542f57.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.700000;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_c99f9128a7d1b93f51359d9d.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.952000;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_4d590a989179557759d7e9ff.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.724000;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_0233ff9669e7f7b92dc48359.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.853000;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_d3baf2f235e74dd44833b83c.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.628000;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_d5c16f88760c0977f7cdd40c.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_a3744546a2db0e89f8e4b5de.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:2.399000;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:ff2e;src:url('chunks/assets/font_2948302301cee09a86e3e38c.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.969000;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:ff2f;src:url('chunks/assets/font_5268afdd33668827b01a89b8.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.678000;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:ff30;src:url('chunks/assets/font_d4231eabca26d99c96a82e36.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.860000;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:ff31;src:url('chunks/assets/font_a0787520de20b0315f3b5187.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.964000;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:ff32;src:url('chunks/assets/font_316f7a440997270a543515c9.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_9ba801470719127b2e1ab69c.woff2')format("woff");}.ff33{font-family:ff33;line-height:3.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_33ba3ee09280b5e9610e4c6d.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.969000;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:ff35;src:url('chunks/assets/font_6e39bb2a6ccd7c8fba5a2691.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.964000;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:ff36;src:url('chunks/assets/font_56a4021977a951ff75f3bb3a.woff2')format("woff");}.ff36{font-family:ff36;line-height:3.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_3922f6b42d30584c3b1874f3.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.969000;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:ff38;src:url('chunks/assets/font_dae2c4147f297f6181066aa1.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_1a58e70db692f4df41860cc2.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.860000;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:ff3a;src:url('chunks/assets/font_5abb29968961876713340221.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.712000;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:ff3b;src:url('chunks/assets/font_c9ef41bdc251a0a5773d20df.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.817000;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:ff3c;src:url('chunks/assets/font_e90156a01f5401f09b330a9c.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.712000;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:ff3d;src:url('chunks/assets/font_e9e584feafbfe125cc04e73d.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.849000;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:ff3e;src:url('chunks/assets/font_42a2b0f18f1fd6b023f83b3f.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.712000;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:ff3f;src:url('chunks/assets/font_016d7c7fbc2a25e0d2308585.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.712000;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:ff40;src:url('chunks/assets/font_add3e5095af9a61de203634e.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.479000;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:ff41;src:url('chunks/assets/font_a8d7997386d90e16b9607e6b.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.817000;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:ff42;src:url('chunks/assets/font_0eb5ae694e91416e7ee37c85.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.724000;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:ff43;src:url('chunks/assets/font_ad815de64ce9b63b775f6e49.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.712000;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:ff44;src:url('chunks/assets/font_573810ec4e6672b48a50b803.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.724000;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:ff45;src:url('chunks/assets/font_3568365a6e3be917e4204a28.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.712000;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:ff46;src:url('chunks/assets/font_78b22438dfbce5581c6bd7a4.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.712000;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:ff47;src:url('chunks/assets/font_f6da45b5ae87e980ddf00780.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.712000;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:ff48;src:url('chunks/assets/font_6226fbd879f0f7ee69f3f5a9.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.712000;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:ff49;src:url('chunks/assets/font_e48e9f0c54d0f8df701f83bd.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.817000;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:ff4a;src:url('chunks/assets/font_e23a990a275d1c30e403214f.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.849000;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:ff4b;src:url('chunks/assets/font_8e3f0e23d48720a4f00b3d02.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.200000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_64337ebe2556c101be37eacd.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.724000;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:ff4d;src:url('chunks/assets/font_c9ef6d32947b7097e58c65d5.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.853000;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:ff4e;src:url('chunks/assets/font_612da0ef5b8b2eb31727e19d.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_23357fe58dac8f3215e3c3c8.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.724000;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:ff50;src:url('chunks/assets/font_85cb276fd23686b574623ad0.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.964000;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:ff51;src:url('chunks/assets/font_edaadc202f005830885a2439.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.438000;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:ff52;src:url('chunks/assets/font_de5fb2574ea89fabfc4bd2c0.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.712000;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:ff53;src:url('chunks/assets/font_42dd22241eff1a4411cc02d1.woff2')format("woff");}.ff53{font-family:ff53;line-height:3.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_0f213a26e5f7a0085519d3df.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.712000;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:ff55;src:url('chunks/assets/font_72f86a3d21c973dcc3eed104.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.908203;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:ff56;src:url('chunks/assets/font_93881553901c789919680a60.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.388000;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v11{vertical-align:-76.246488px;}
.v14{vertical-align:-64.745911px;}
.vf{vertical-align:-24.623474px;}
.v4{vertical-align:-18.899963px;}
.va{vertical-align:-17.849995px;}
.ve{vertical-align:-13.715332px;}
.v12{vertical-align:-12.421142px;}
.v7{vertical-align:-10.806110px;}
.v9{vertical-align:-9.126526px;}
.v5{vertical-align:-8.100037px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:1.026707px;}
.vc{vertical-align:15.281616px;}
.vb{vertical-align:17.825995px;}
.v3{vertical-align:18.900879px;}
.v2{vertical-align:21.000000px;}
.v6{vertical-align:22.679993px;}
.vd{vertical-align:37.880077px;}
.v8{vertical-align:43.770131px;}
.v10{vertical-align:60.696529px;}
.ls69{letter-spacing:-1.890000px;}
.ls26{letter-spacing:-0.810000px;}
.ls21{letter-spacing:-0.378000px;}
.ls5c{letter-spacing:-0.324000px;}
.ls22{letter-spacing:-0.270000px;}
.ls66{letter-spacing:-0.225000px;}
.ls48{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.162000px;}
.ls67{letter-spacing:-0.135000px;}
.ls23{letter-spacing:-0.108000px;}
.ls24{letter-spacing:-0.070200px;}
.ls25{letter-spacing:-0.054000px;}
.ls28{letter-spacing:-0.041068px;}
.ls1e{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000226px;}
.ls1d{letter-spacing:0.018028px;}
.ls65{letter-spacing:0.045000px;}
.ls30{letter-spacing:0.054000px;}
.ls44{letter-spacing:0.054037px;}
.ls4a{letter-spacing:0.070200px;}
.ls3c{letter-spacing:0.079513px;}
.ls18{letter-spacing:0.080973px;}
.ls68{letter-spacing:0.090000px;}
.ls3a{letter-spacing:0.105300px;}
.ls39{letter-spacing:0.108000px;}
.ls45{letter-spacing:0.108074px;}
.ls14{letter-spacing:0.118800px;}
.ls64{letter-spacing:0.135000px;}
.ls1f{letter-spacing:0.140400px;}
.ls4d{letter-spacing:0.151200px;}
.lsd{letter-spacing:0.158747px;}
.ls29{letter-spacing:0.158927px;}
.ls4{letter-spacing:0.159019px;}
.ls3{letter-spacing:0.159568px;}
.ls38{letter-spacing:0.161399px;}
.ls6{letter-spacing:0.162000px;}
.ls2a{letter-spacing:0.175500px;}
.ls61{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.199800px;}
.ls33{letter-spacing:0.200875px;}
.ls34{letter-spacing:0.200950px;}
.ls5f{letter-spacing:0.202500px;}
.ls1b{letter-spacing:0.210594px;}
.ls35{letter-spacing:0.210667px;}
.ls1{letter-spacing:0.216000px;}
.ls55{letter-spacing:0.221364px;}
.ls63{letter-spacing:0.225000px;}
.ls2{letter-spacing:0.225032px;}
.ls31{letter-spacing:0.253800px;}
.ls5e{letter-spacing:0.264000px;}
.ls5{letter-spacing:0.270000px;}
.ls54{letter-spacing:0.275400px;}
.ls16{letter-spacing:0.313179px;}
.ls17{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.324223px;}
.ls50{letter-spacing:0.372686px;}
.ls49{letter-spacing:0.378000px;}
.ls60{letter-spacing:0.405000px;}
.ls36{letter-spacing:0.406028px;}
.ls1c{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.437393px;}
.ls5d{letter-spacing:0.486000px;}
.ls27{letter-spacing:0.540000px;}
.ls37{letter-spacing:0.648000px;}
.ls15{letter-spacing:0.702000px;}
.ls53{letter-spacing:0.756000px;}
.ls11{letter-spacing:0.864595px;}
.ls4e{letter-spacing:0.897416px;}
.ls62{letter-spacing:0.900000px;}
.ls4b{letter-spacing:0.918632px;}
.ls41{letter-spacing:1.773974px;}
.ls2c{letter-spacing:1.796238px;}
.ls56{letter-spacing:1.815789px;}
.ls57{letter-spacing:1.815790px;}
.ls52{letter-spacing:1.815880px;}
.ls51{letter-spacing:1.815972px;}
.ls19{letter-spacing:1.837265px;}
.ls43{letter-spacing:2.269562px;}
.ls9{letter-spacing:2.323600px;}
.ls12{letter-spacing:2.363053px;}
.ls0{letter-spacing:3.000000px;}
.ls4f{letter-spacing:3.005031px;}
.ls13{letter-spacing:3.129214px;}
.ls2b{letter-spacing:3.242232px;}
.ls4c{letter-spacing:3.350306px;}
.ls59{letter-spacing:3.918100px;}
.lsa{letter-spacing:5.380541px;}
.ls5a{letter-spacing:5.565831px;}
.ls40{letter-spacing:7.186947px;}
.ls46{letter-spacing:9.024212px;}
.ls3f{letter-spacing:10.408122px;}
.ls3b{letter-spacing:11.996258px;}
.ls8{letter-spacing:12.050295px;}
.ls5b{letter-spacing:13.326594px;}
.ls7{letter-spacing:13.833523px;}
.lsf{letter-spacing:14.968304px;}
.lsc{letter-spacing:15.022341px;}
.ls3d{letter-spacing:15.076379px;}
.lse{letter-spacing:16.805569px;}
.lsb{letter-spacing:17.979525px;}
.ls42{letter-spacing:18.033354px;}
.ls58{letter-spacing:18.072874px;}
.ls3e{letter-spacing:21.290656px;}
.ls47{letter-spacing:21.344694px;}
.ls2e{letter-spacing:91.182000px;}
.ls2f{letter-spacing:194.585996px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws42{word-spacing:-13.860000px;}
.ws2d{word-spacing:-12.420000px;}
.ws20{word-spacing:-12.366000px;}
.ws21{word-spacing:-12.258000px;}
.ws1f{word-spacing:-11.880000px;}
.ws54{word-spacing:-11.718000px;}
.ws6{word-spacing:-11.448000px;}
.ws46{word-spacing:-10.440000px;}
.ws43{word-spacing:-10.417500px;}
.ws4c{word-spacing:-10.395000px;}
.ws12{word-spacing:-10.044000px;}
.ws0{word-spacing:-9.600000px;}
.ws2c{word-spacing:-8.073000px;}
.ws2b{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws4{word-spacing:-7.967700px;}
.ws5{word-spacing:-7.897500px;}
.ws3{word-spacing:-7.371000px;}
.ws9{word-spacing:-6.630000px;}
.ws23{word-spacing:-5.924100px;}
.wsd{word-spacing:-1.296000px;}
.wsb{word-spacing:-1.242000px;}
.wsf{word-spacing:-1.188000px;}
.ws34{word-spacing:-1.134000px;}
.ws10{word-spacing:-1.080000px;}
.ws48{word-spacing:-1.035000px;}
.ws3e{word-spacing:-1.026000px;}
.ws4e{word-spacing:-0.990000px;}
.ws35{word-spacing:-0.972000px;}
.ws1c{word-spacing:-0.864000px;}
.ws18{word-spacing:-0.648000px;}
.ws40{word-spacing:-0.594000px;}
.ws4f{word-spacing:-0.585000px;}
.wse{word-spacing:-0.540000px;}
.ws13{word-spacing:-0.486000px;}
.ws33{word-spacing:-0.378000px;}
.ws4d{word-spacing:-0.360000px;}
.ws53{word-spacing:-0.324000px;}
.ws1e{word-spacing:-0.270000px;}
.ws52{word-spacing:-0.264000px;}
.ws51{word-spacing:-0.225000px;}
.wsa{word-spacing:-0.216000px;}
.ws45{word-spacing:-0.180000px;}
.wsc{word-spacing:-0.162000px;}
.ws49{word-spacing:-0.135000px;}
.ws41{word-spacing:-0.108000px;}
.ws7{word-spacing:-0.054037px;}
.ws22{word-spacing:-0.042082px;}
.ws8{word-spacing:0.000000px;}
.ws44{word-spacing:0.045000px;}
.ws30{word-spacing:0.108000px;}
.ws50{word-spacing:0.135000px;}
.ws39{word-spacing:0.162000px;}
.ws15{word-spacing:0.216000px;}
.ws2a{word-spacing:0.270000px;}
.ws14{word-spacing:0.378000px;}
.ws3f{word-spacing:0.432000px;}
.ws38{word-spacing:0.486000px;}
.ws32{word-spacing:0.540000px;}
.ws27{word-spacing:0.648000px;}
.ws19{word-spacing:0.702000px;}
.ws36{word-spacing:0.756000px;}
.ws31{word-spacing:0.918000px;}
.ws28{word-spacing:0.972000px;}
.ws3a{word-spacing:1.026000px;}
.ws47{word-spacing:1.035000px;}
.ws11{word-spacing:1.134000px;}
.ws17{word-spacing:1.188000px;}
.ws1a{word-spacing:1.242000px;}
.ws37{word-spacing:1.296000px;}
.ws1b{word-spacing:1.458000px;}
.ws3b{word-spacing:1.512000px;}
.ws16{word-spacing:1.566000px;}
.ws3c{word-spacing:1.620000px;}
.ws1d{word-spacing:1.728000px;}
.ws3d{word-spacing:2.052000px;}
.ws4a{word-spacing:3.015000px;}
.ws55{word-spacing:3.024000px;}
.ws4b{word-spacing:3.060000px;}
.ws56{word-spacing:3.132000px;}
.ws59{word-spacing:5.670000px;}
.ws5a{word-spacing:6.264000px;}
.ws57{word-spacing:8.154000px;}
.ws58{word-spacing:8.532000px;}
.ws2f{word-spacing:8.943156px;}
.ws2e{word-spacing:8.948560px;}
.ws29{word-spacing:15.282000px;}
.ws26{word-spacing:67.452000px;}
.ws24{word-spacing:87.612000px;}
.ws25{word-spacing:164.471996px;}
._d{margin-left:-20.952007px;}
._14{margin-left:-13.978822px;}
._7{margin-left:-12.565287px;}
._5{margin-left:-10.512043px;}
._4{margin-left:-8.640000px;}
._18{margin-left:-6.079500px;}
._8{margin-left:-5.067600px;}
._2{margin-left:-3.291600px;}
._0{margin-left:-1.876800px;}
._3{width:1.051200px;}
._6{width:2.197394px;}
._9{width:5.349683px;}
._a{width:6.915425px;}
._c{width:8.799358px;}
._15{width:10.570800px;}
._b{width:11.912700px;}
._19{width:14.248800px;}
._e{width:15.273600px;}
._17{width:16.290000px;}
._16{width:26.932140px;}
._f{width:55.482000px;}
._10{width:73.415996px;}
._12{width:76.986000px;}
._13{width:97.146000px;}
._11{width:113.694000px;}
._1{width:321.220800px;}
.fc5{color:transparent;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fsf{font-size:27.300000px;}
.fse{font-size:31.981799px;}
.fsa{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fs8{font-size:41.068199px;}
.fsd{font-size:42.000000px;}
.fsc{font-size:42.082200px;}
.fs10{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:54.037199px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y1f{bottom:-1.305176px;}
.y23{bottom:-1.303665px;}
.yb{bottom:-0.854553px;}
.y155{bottom:-0.404938px;}
.y0{bottom:0.000000px;}
.y117{bottom:0.084961px;}
.ye7{bottom:0.108535px;}
.y6a{bottom:0.120140px;}
.y124{bottom:0.146186px;}
.y5c{bottom:0.195145px;}
.y78{bottom:0.195282px;}
.y7b{bottom:0.195465px;}
.y61{bottom:1.393501px;}
.y2b{bottom:1.845291px;}
.yee{bottom:2.144989px;}
.y10d{bottom:2.367142px;}
.y74{bottom:2.444092px;}
.ydc{bottom:2.445007px;}
.y49{bottom:2.445282px;}
.y99{bottom:2.446518px;}
.y9d{bottom:2.594833px;}
.yad{bottom:2.594845px;}
.yf{bottom:2.595245px;}
.y15{bottom:2.595291px;}
.y51{bottom:2.595314px;}
.y8d{bottom:2.744843px;}
.y34{bottom:2.745300px;}
.ybc{bottom:3.119843px;}
.yd6{bottom:3.199200px;}
.y58{bottom:3.199350px;}
.y12c{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.ye0{bottom:3.209839px;}
.y4e{bottom:3.343941px;}
.y93{bottom:3.344971px;}
.y115{bottom:3.900285px;}
.y122{bottom:3.975014px;}
.yf4{bottom:4.544861px;}
.ye6{bottom:4.544998px;}
.y42{bottom:4.695442px;}
.y10b{bottom:5.310287px;}
.y112{bottom:5.310425px;}
.y67{bottom:9.705139px;}
.y6d{bottom:9.705597px;}
.y10f{bottom:10.885620px;}
.ybf{bottom:12.718781px;}
.yb9{bottom:12.719833px;}
.yc2{bottom:15.449982px;}
.y44{bottom:15.643639px;}
.y11f{bottom:15.824982px;}
.y11a{bottom:15.825166px;}
.y111{bottom:16.258621px;}
.y69{bottom:19.182152px;}
.y6c{bottom:19.182587px;}
.ycf{bottom:26.398178px;}
.y57{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.yd7{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.ybe{bottom:31.766830px;}
.ybb{bottom:31.768066px;}
.yc4{bottom:34.511536px;}
.yc6{bottom:34.511993px;}
.y11c{bottom:39.922349px;}
.yd0{bottom:39.925049px;}
.yc9{bottom:39.925507px;}
.y56{bottom:68.037600px;}
.yb6{bottom:69.466500px;}
.y108{bottom:72.345000px;}
.y55{bottom:83.037600px;}
.yb5{bottom:84.465000px;}
.y107{bottom:87.343500px;}
.yb4{bottom:99.463500px;}
.y106{bottom:102.342000px;}
.y54{bottom:102.494099px;}
.y64{bottom:107.101503px;}
.y152{bottom:109.402645px;}
.yb3{bottom:114.462000px;}
.y105{bottom:117.340500px;}
.y63{bottom:122.100003px;}
.y151{bottom:124.402645px;}
.yb2{bottom:129.460500px;}
.y104{bottom:132.339000px;}
.y60{bottom:135.695995px;}
.y62{bottom:137.098503px;}
.y5f{bottom:137.103003px;}
.yb1{bottom:144.460500px;}
.y103{bottom:147.337500px;}
.y5e{bottom:152.101503px;}
.y150{bottom:155.871152px;}
.yb0{bottom:159.462000px;}
.y102{bottom:162.336000px;}
.y5d{bottom:167.100003px;}
.y14f{bottom:170.869652px;}
.yaf{bottom:174.460500px;}
.y101{bottom:177.334500px;}
.y5b{bottom:181.909504px;}
.y5a{bottom:182.098503px;}
.y14e{bottom:185.869652px;}
.yac{bottom:186.867004px;}
.y52{bottom:189.070943px;}
.yae{bottom:189.459000px;}
.yab{bottom:189.460500px;}
.y100{bottom:192.333000px;}
.y4d{bottom:200.722504px;}
.y50{bottom:201.476990px;}
.y4f{bottom:204.069443px;}
.y4c{bottom:204.072305px;}
.yaa{bottom:204.463500px;}
.y66{bottom:204.598503px;}
.yff{bottom:207.331500px;}
.y65{bottom:213.641556px;}
.y68{bottom:214.303642px;}
.y6b{bottom:214.304100px;}
.y14d{bottom:215.878652px;}
.y4b{bottom:219.070805px;}
.ya9{bottom:219.462000px;}
.yfe{bottom:222.330000px;}
.y14c{bottom:230.877152px;}
.y48{bottom:231.612007px;}
.y4a{bottom:234.069305px;}
.y47{bottom:234.072305px;}
.ya8{bottom:234.460500px;}
.yfd{bottom:237.328500px;}
.y14b{bottom:245.875652px;}
.y46{bottom:249.070805px;}
.ya7{bottom:249.467839px;}
.yfc{bottom:252.327000px;}
.y41{bottom:259.371002px;}
.y14a{bottom:260.874152px;}
.y43{bottom:264.066444px;}
.y45{bottom:264.069305px;}
.y40{bottom:264.070805px;}
.ya6{bottom:264.466339px;}
.yfb{bottom:267.325500px;}
.y149{bottom:275.872652px;}
.y3f{bottom:279.069305px;}
.ya5{bottom:279.464839px;}
.yfa{bottom:282.324000px;}
.y148{bottom:290.871152px;}
.y89{bottom:292.152158px;}
.y3e{bottom:294.069305px;}
.ya4{bottom:294.463339px;}
.yf9{bottom:297.322500px;}
.y147{bottom:305.869652px;}
.y88{bottom:307.150658px;}
.ya3{bottom:309.461839px;}
.y121{bottom:319.819496px;}
.y146{bottom:320.869652px;}
.y120{bottom:322.637398px;}
.y123{bottom:323.794510px;}
.ya2{bottom:324.460339px;}
.y3d{bottom:327.073805px;}
.ya1{bottom:339.463362px;}
.y3c{bottom:342.072305px;}
.yf7{bottom:345.733498px;}
.yf8{bottom:350.269500px;}
.yf6{bottom:350.271000px;}
.y145{bottom:350.944629px;}
.ya0{bottom:354.461862px;}
.y3b{bottom:357.070805px;}
.yf3{bottom:360.733498px;}
.y144{bottom:363.690879px;}
.yf5{bottom:365.269500px;}
.yf2{bottom:365.269502px;}
.y39{bottom:369.315010px;}
.y9f{bottom:369.460362px;}
.y3a{bottom:372.069305px;}
.y38{bottom:372.072305px;}
.y143{bottom:376.437129px;}
.yf1{bottom:380.268002px;}
.y9c{bottom:381.867004px;}
.y9e{bottom:384.458862px;}
.y9b{bottom:384.460362px;}
.y37{bottom:387.070805px;}
.y142{bottom:389.183379px;}
.y98{bottom:397.000488px;}
.y9a{bottom:399.458862px;}
.y97{bottom:399.460362px;}
.y141{bottom:401.929629px;}
.y36{bottom:402.070805px;}
.y119{bottom:402.769500px;}
.y11e{bottom:409.009644px;}
.y33{bottom:414.314987px;}
.y96{bottom:414.458862px;}
.y140{bottom:414.675879px;}
.y35{bottom:417.069305px;}
.y32{bottom:417.075305px;}
.y118{bottom:418.112411px;}
.y11b{bottom:418.594666px;}
.y13f{bottom:427.422129px;}
.y11d{bottom:428.074631px;}
.y31{bottom:432.073805px;}
.y13e{bottom:440.168379px;}
.y30{bottom:447.072305px;}
.ycd{bottom:451.959000px;}
.y13d{bottom:452.914629px;}
.yd2{bottom:457.823868px;}
.yf0{bottom:458.271000px;}
.y2f{bottom:462.070805px;}
.y13c{bottom:465.660879px;}
.ycc{bottom:467.301727px;}
.yce{bottom:467.408981px;}
.yd3{bottom:467.409302px;}
.yed{bottom:471.136505px;}
.yef{bottom:473.269500px;}
.yec{bottom:473.271000px;}
.yd1{bottom:476.888855px;}
.y2e{bottom:477.069305px;}
.y13b{bottom:478.407129px;}
.yeb{bottom:488.269500px;}
.y13a{bottom:491.153379px;}
.y2d{bottom:492.069305px;}
.y139{bottom:503.899629px;}
.y95{bottom:507.460362px;}
.y114{bottom:510.769500px;}
.y113{bottom:514.262421px;}
.y116{bottom:514.575439px;}
.y138{bottom:516.645879px;}
.y92{bottom:519.111008px;}
.y94{bottom:522.458862px;}
.y91{bottom:522.460364px;}
.y2a{bottom:523.232986px;}
.y2c{bottom:525.069305px;}
.y29{bottom:525.072305px;}
.y137{bottom:529.392129px;}
.y90{bottom:537.458864px;}
.yea{bottom:538.033493px;}
.y28{bottom:540.070805px;}
.y136{bottom:542.138379px;}
.ye9{bottom:542.571156px;}
.ye5{bottom:553.033493px;}
.y135{bottom:554.884629px;}
.y27{bottom:555.072305px;}
.ye8{bottom:557.569656px;}
.ye4{bottom:557.571156px;}
.yc1{bottom:559.959000px;}
.yc5{bottom:565.823868px;}
.y134{bottom:567.630879px;}
.y26{bottom:570.070805px;}
.ye3{bottom:572.569656px;}
.yc0{bottom:575.301727px;}
.yc3{bottom:575.408981px;}
.ycb{bottom:575.409302px;}
.y133{bottom:580.377129px;}
.yc8{bottom:584.885490px;}
.yca{bottom:584.888855px;}
.y25{bottom:585.070805px;}
.y76{bottom:586.658100px;}
.yc7{bottom:591.042160px;}
.y132{bottom:593.123379px;}
.y10a{bottom:595.069519px;}
.y109{bottom:598.588486px;}
.y73{bottom:599.200516px;}
.y24{bottom:600.069305px;}
.y21{bottom:600.070805px;}
.y10c{bottom:600.284866px;}
.y110{bottom:600.285141px;}
.y10e{bottom:600.379944px;}
.y22{bottom:601.417511px;}
.y75{bottom:601.656600px;}
.y72{bottom:601.658100px;}
.y131{bottom:605.869629px;}
.y20{bottom:615.069305px;}
.y1d{bottom:615.072305px;}
.y8f{bottom:615.461862px;}
.y1e{bottom:616.419022px;}
.y71{bottom:616.656600px;}
.y130{bottom:618.619629px;}
.ydf{bottom:623.818497px;}
.ye2{bottom:624.412491px;}
.ye1{bottom:626.869629px;}
.yde{bottom:626.871129px;}
.y1c{bottom:630.070805px;}
.y8e{bottom:630.460362px;}
.ydb{bottom:639.412491px;}
.ydd{bottom:641.869629px;}
.yda{bottom:641.871129px;}
.y8c{bottom:642.705002px;}
.y1b{bottom:645.087315px;}
.y8b{bottom:645.458862px;}
.y87{bottom:647.926978px;}
.yd9{bottom:656.869629px;}
.y86{bottom:665.461978px;}
.yb8{bottom:667.959000px;}
.y12f{bottom:668.119629px;}
.yb7{bottom:680.530500px;}
.ybd{bottom:680.677505px;}
.yba{bottom:680.678833px;}
.y85{bottom:682.996978px;}
.y1a{bottom:690.231315px;}
.y12e{bottom:698.121129px;}
.y84{bottom:700.531978px;}
.y19{bottom:706.728315px;}
.y12d{bottom:713.119629px;}
.y12b{bottom:717.640622px;}
.y83{bottom:718.066978px;}
.y18{bottom:723.225315px;}
.y12a{bottom:732.639122px;}
.y82{bottom:735.601978px;}
.y17{bottom:739.722315px;}
.yd5{bottom:743.133168px;}
.y129{bottom:747.637622px;}
.y81{bottom:753.136978px;}
.y14{bottom:753.626999px;}
.y16{bottom:756.219315px;}
.y13{bottom:756.228269px;}
.yd4{bottom:758.131668px;}
.y128{bottom:762.636122px;}
.y15a{bottom:765.219170px;}
.y80{bottom:770.671978px;}
.y12{bottom:772.725269px;}
.y127{bottom:777.634622px;}
.y159{bottom:780.217670px;}
.y7f{bottom:788.206978px;}
.y11{bottom:789.222269px;}
.y126{bottom:792.633122px;}
.y158{bottom:795.216170px;}
.ye{bottom:803.127045px;}
.y10{bottom:805.719269px;}
.yd{bottom:805.722269px;}
.y7e{bottom:805.741978px;}
.y125{bottom:807.631622px;}
.y157{bottom:810.214670px;}
.y7c{bottom:821.176758px;}
.yc{bottom:822.219269px;}
.y9{bottom:822.222269px;}
.y7a{bottom:823.087463px;}
.y7d{bottom:823.276978px;}
.ya{bottom:824.254486px;}
.y156{bottom:825.213170px;}
.y8{bottom:838.719269px;}
.y153{bottom:840.211670px;}
.y154{bottom:840.602966px;}
.y77{bottom:840.621002px;}
.y79{bottom:840.810333px;}
.y168{bottom:853.037702px;}
.y7{bottom:868.719269px;}
.y167{bottom:883.034700px;}
.y166{bottom:898.033200px;}
.y6{bottom:901.713269px;}
.y70{bottom:909.754465px;}
.y165{bottom:913.031700px;}
.y6f{bottom:924.752965px;}
.y164{bottom:928.030200px;}
.y6e{bottom:939.751465px;}
.y163{bottom:943.028700px;}
.y5{bottom:946.719269px;}
.y53{bottom:954.366760px;}
.y162{bottom:958.027200px;}
.y161{bottom:973.025700px;}
.y160{bottom:988.024200px;}
.y15f{bottom:1010.516700px;}
.y15e{bottom:1025.515200px;}
.y15d{bottom:1048.019700px;}
.y15c{bottom:1070.524200px;}
.y15b{bottom:1085.524200px;}
.y8a{bottom:1140.640320px;}
.yd8{bottom:1140.746521px;}
.y59{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h1e{height:2.161488px;}
.h8{height:4.117500px;}
.h34{height:5.100000px;}
.h67{height:5.250000px;}
.h10{height:6.000000px;}
.h54{height:8.250000px;}
.h1f{height:8.550000px;}
.h3c{height:8.551500px;}
.h22{height:8.701500px;}
.hb{height:8.850000px;}
.h2a{height:9.148500px;}
.h37{height:9.150000px;}
.h14{height:9.300000px;}
.h28{height:9.900000px;}
.h4c{height:11.550000px;}
.h3b{height:12.151500px;}
.h21{height:12.300000px;}
.h3a{height:12.450000px;}
.h4e{height:12.750000px;}
.h19{height:14.248499px;}
.h17{height:14.849999px;}
.h50{height:15.450000px;}
.h5e{height:15.451499px;}
.h45{height:15.525226px;}
.h1b{height:16.200000px;}
.h56{height:16.800000px;}
.h52{height:16.801500px;}
.h9{height:17.291904px;}
.h35{height:19.441976px;}
.h30{height:19.615503px;}
.h68{height:22.533512px;}
.h3d{height:23.776368px;}
.h23{height:24.370777px;}
.hc{height:24.965186px;}
.h25{height:26.821069px;}
.h5a{height:27.433557px;}
.h2e{height:27.900000px;}
.h39{height:27.955200px;}
.h59{height:28.747739px;}
.h11{height:29.072013px;}
.h4a{height:29.240558px;}
.h15{height:29.774497px;}
.h2b{height:31.071389px;}
.h43{height:31.503687px;}
.h42{height:34.949999px;}
.h62{height:35.411133px;}
.h2f{height:35.502440px;}
.h5b{height:36.096849px;}
.h47{height:36.258961px;}
.h5c{height:36.529147px;}
.h4d{height:37.177593px;}
.h38{height:37.668876px;}
.h1d{height:37.826039px;}
.h58{height:38.204300px;}
.h20{height:38.474486px;}
.h5f{height:38.475915px;}
.h29{height:38.528523px;}
.h2{height:38.835938px;}
.h7{height:38.838867px;}
.h46{height:40.500000px;}
.h4f{height:40.876599px;}
.h36{height:43.008000px;}
.ha{height:44.146143px;}
.h64{height:44.505000px;}
.h26{height:44.647064px;}
.h65{height:45.090000px;}
.h3{height:45.679688px;}
.h1c{height:45.931619px;}
.h63{height:46.080000px;}
.h16{height:47.469727px;}
.h1a{height:48.350919px;}
.h51{height:48.620359px;}
.h55{height:48.620906px;}
.h53{height:49.113177px;}
.h57{height:49.113724px;}
.h6{height:49.183594px;}
.h27{height:49.373529px;}
.h66{height:50.439000px;}
.h18{height:51.050352px;}
.h60{height:51.050900px;}
.h31{height:51.102537px;}
.h5d{height:51.597736px;}
.he{height:53.406000px;}
.hd{height:53.541827px;}
.h3f{height:53.578504px;}
.h3e{height:53.595863px;}
.hf{height:53.601863px;}
.h2d{height:53.601909px;}
.h12{height:53.607863px;}
.h33{height:53.607867px;}
.h41{height:53.607909px;}
.h40{height:53.613863px;}
.h2c{height:53.613909px;}
.h61{height:53.790035px;}
.h13{height:54.108000px;}
.h32{height:55.296000px;}
.h4{height:57.099609px;}
.h44{height:76.354562px;}
.h48{height:76.408599px;}
.h49{height:76.840897px;}
.h24{height:77.677734px;}
.h4b{height:89.937087px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:4.015500px;}
.w10{width:5.190000px;}
.w23{width:5.235000px;}
.wc{width:6.060000px;}
.wb{width:6.660000px;}
.w3{width:7.425000px;}
.w5{width:7.905000px;}
.w14{width:8.085000px;}
.w4{width:9.015000px;}
.w1d{width:11.055000px;}
.wd{width:11.760000px;}
.w1c{width:13.318500px;}
.w1e{width:13.320000px;}
.w1b{width:14.835000px;}
.w11{width:15.825000px;}
.wa{width:16.020000px;}
.w13{width:22.215000px;}
.w8{width:22.815000px;}
.w12{width:25.048499px;}
.wf{width:26.791500px;}
.w9{width:26.819999px;}
.w18{width:33.599999px;}
.w1a{width:37.125000px;}
.w19{width:47.083500px;}
.w7{width:73.830002px;}
.w6{width:88.201498px;}
.w22{width:90.570002px;}
.we{width:104.685000px;}
.w21{width:105.254997px;}
.w20{width:141.930004px;}
.w15{width:143.669998px;}
.w17{width:198.120003px;}
.w1f{width:249.000000px;}
.w16{width:393.435013px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x9{left:-1.011429px;}
.x0{left:0.000000px;}
.x23{left:7.228350px;}
.x1b{left:18.701705px;}
.x47{left:24.389420px;}
.x5c{left:31.460129px;}
.x4e{left:34.465942px;}
.x2d{left:52.824738px;}
.x5e{left:55.706268px;}
.x79{left:59.508732px;}
.x3{left:61.653603px;}
.x49{left:63.741623px;}
.x2f{left:73.560150px;}
.x61{left:92.736603px;}
.x71{left:97.977310px;}
.x31{left:102.180588px;}
.x7b{left:104.804214px;}
.x7c{left:112.347889px;}
.x4b{left:117.512558px;}
.x7d{left:124.082245px;}
.x51{left:127.588966px;}
.x7f{left:139.634216px;}
.x22{left:141.395702px;}
.x74{left:166.166382px;}
.x76{left:180.273468px;}
.x63{left:185.859924px;}
.x78{left:211.269608px;}
.x5{left:233.858253px;}
.x33{left:238.570496px;}
.x54{left:239.571877px;}
.x34{left:243.760506px;}
.x17{left:247.885506px;}
.x35{left:250.161003px;}
.x1e{left:251.851957px;}
.x82{left:254.108253px;}
.x36{left:265.986900px;}
.x24{left:270.260994px;}
.x25{left:276.381889px;}
.x57{left:288.050240px;}
.x6c{left:295.611008px;}
.x28{left:297.397499px;}
.x69{left:301.129509px;}
.x84{left:302.498703px;}
.x29{left:309.218399px;}
.x6d{left:310.507645px;}
.x18{left:321.776390px;}
.x4c{left:335.842506px;}
.x4d{left:345.684448px;}
.x1f{left:349.035004px;}
.x3f{left:355.837509px;}
.xf{left:356.923508px;}
.x40{left:363.982956px;}
.x10{left:365.838295px;}
.x6e{left:368.537109px;}
.x4f{left:380.258240px;}
.x11{left:397.036514px;}
.x83{left:403.169998px;}
.x12{left:405.002243px;}
.x6f{left:408.058502px;}
.x50{left:409.674591px;}
.x70{left:415.397232px;}
.x13{left:417.922485px;}
.x14{left:425.889130px;}
.xb{left:429.912003px;}
.x5a{left:433.498489px;}
.xc{left:437.391586px;}
.x5b{left:445.599747px;}
.x3d{left:450.202515px;}
.x3c{left:454.264206px;}
.x45{left:460.723480px;}
.x46{left:470.829437px;}
.x3e{left:472.400711px;}
.x5d{left:474.908386px;}
.x2b{left:480.216019px;}
.x81{left:487.275009px;}
.x52{left:488.879105px;}
.x2c{left:490.056473px;}
.x48{left:495.062119px;}
.x1c{left:497.281494px;}
.x53{left:499.902693px;}
.x5f{left:504.513611px;}
.x60{left:506.727585px;}
.x72{left:513.569229px;}
.x20{left:515.095505px;}
.x21{left:521.859741px;}
.x1d{left:524.146957px;}
.x37{left:526.691986px;}
.x7a{left:529.260910px;}
.x38{left:531.881378px;}
.x32{left:536.400009px;}
.x73{left:538.354935px;}
.x4a{left:542.096558px;}
.x2e{left:545.230820px;}
.x3a{left:559.426483px;}
.x30{left:562.052261px;}
.x19{left:563.759995px;}
.x62{left:565.587616px;}
.x80{left:568.010100px;}
.x6a{left:570.721481px;}
.x1a{left:575.873978px;}
.x75{left:580.609818px;}
.x6b{left:581.838593px;}
.x3b{left:584.473938px;}
.x4{left:586.814117px;}
.x55{left:590.723099px;}
.x77{left:591.855743px;}
.x7e{left:596.193604px;}
.x56{left:598.661087px;}
.x6{left:601.292999px;}
.x7{left:605.362930px;}
.x43{left:621.435013px;}
.x44{left:629.542648px;}
.x58{left:633.841965px;}
.xd{left:646.591507px;}
.x66{left:650.609985px;}
.xe{left:655.668457px;}
.x64{left:656.781006px;}
.x59{left:663.258591px;}
.x67{left:667.650009px;}
.x68{left:682.658707px;}
.x65{left:690.441467px;}
.x26{left:704.076004px;}
.x27{left:710.197815px;}
.x15{left:739.432480px;}
.x8{left:763.711487px;}
.xa{left:771.191711px;}
.x41{left:787.985962px;}
.x42{left:796.132324px;}
.x39{left:797.390808px;}
.x2{left:798.901611px;}
.x2a{left:815.438141px;}
.x1{left:825.001190px;}
.x16{left:827.626465px;}
@media print{
.v11{vertical-align:-67.774656pt;}
.v14{vertical-align:-57.551921pt;}
.vf{vertical-align:-21.887533pt;}
.v4{vertical-align:-16.799967pt;}
.va{vertical-align:-15.866662pt;}
.ve{vertical-align:-12.191406pt;}
.v12{vertical-align:-11.041015pt;}
.v7{vertical-align:-9.605431pt;}
.v9{vertical-align:-8.112467pt;}
.v5{vertical-align:-7.200033pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:0.912628pt;}
.vc{vertical-align:13.583659pt;}
.vb{vertical-align:15.845329pt;}
.v3{vertical-align:16.800781pt;}
.v2{vertical-align:18.666667pt;}
.v6{vertical-align:20.159993pt;}
.vd{vertical-align:33.671179pt;}
.v8{vertical-align:38.906783pt;}
.v10{vertical-align:53.952470pt;}
.ls69{letter-spacing:-1.680000pt;}
.ls26{letter-spacing:-0.720000pt;}
.ls21{letter-spacing:-0.336000pt;}
.ls5c{letter-spacing:-0.288000pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls66{letter-spacing:-0.200000pt;}
.ls48{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.144000pt;}
.ls67{letter-spacing:-0.120000pt;}
.ls23{letter-spacing:-0.096000pt;}
.ls24{letter-spacing:-0.062400pt;}
.ls25{letter-spacing:-0.048000pt;}
.ls28{letter-spacing:-0.036505pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000201pt;}
.ls1d{letter-spacing:0.016025pt;}
.ls65{letter-spacing:0.040000pt;}
.ls30{letter-spacing:0.048000pt;}
.ls44{letter-spacing:0.048033pt;}
.ls4a{letter-spacing:0.062400pt;}
.ls3c{letter-spacing:0.070678pt;}
.ls18{letter-spacing:0.071976pt;}
.ls68{letter-spacing:0.080000pt;}
.ls3a{letter-spacing:0.093600pt;}
.ls39{letter-spacing:0.096000pt;}
.ls45{letter-spacing:0.096066pt;}
.ls14{letter-spacing:0.105600pt;}
.ls64{letter-spacing:0.120000pt;}
.ls1f{letter-spacing:0.124800pt;}
.ls4d{letter-spacing:0.134400pt;}
.lsd{letter-spacing:0.141109pt;}
.ls29{letter-spacing:0.141269pt;}
.ls4{letter-spacing:0.141350pt;}
.ls3{letter-spacing:0.141839pt;}
.ls38{letter-spacing:0.143466pt;}
.ls6{letter-spacing:0.144000pt;}
.ls2a{letter-spacing:0.156000pt;}
.ls61{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.177600pt;}
.ls33{letter-spacing:0.178555pt;}
.ls34{letter-spacing:0.178622pt;}
.ls5f{letter-spacing:0.180000pt;}
.ls1b{letter-spacing:0.187195pt;}
.ls35{letter-spacing:0.187260pt;}
.ls1{letter-spacing:0.192000pt;}
.ls55{letter-spacing:0.196768pt;}
.ls63{letter-spacing:0.200000pt;}
.ls2{letter-spacing:0.200029pt;}
.ls31{letter-spacing:0.225600pt;}
.ls5e{letter-spacing:0.234667pt;}
.ls5{letter-spacing:0.240000pt;}
.ls54{letter-spacing:0.244800pt;}
.ls16{letter-spacing:0.278382pt;}
.ls17{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.288198pt;}
.ls50{letter-spacing:0.331276pt;}
.ls49{letter-spacing:0.336000pt;}
.ls60{letter-spacing:0.360000pt;}
.ls36{letter-spacing:0.360914pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.388794pt;}
.ls5d{letter-spacing:0.432000pt;}
.ls27{letter-spacing:0.480000pt;}
.ls37{letter-spacing:0.576000pt;}
.ls15{letter-spacing:0.624000pt;}
.ls53{letter-spacing:0.672000pt;}
.ls11{letter-spacing:0.768529pt;}
.ls4e{letter-spacing:0.797703pt;}
.ls62{letter-spacing:0.800000pt;}
.ls4b{letter-spacing:0.816562pt;}
.ls41{letter-spacing:1.576865pt;}
.ls2c{letter-spacing:1.596656pt;}
.ls56{letter-spacing:1.614034pt;}
.ls57{letter-spacing:1.614036pt;}
.ls52{letter-spacing:1.614116pt;}
.ls51{letter-spacing:1.614197pt;}
.ls19{letter-spacing:1.633124pt;}
.ls43{letter-spacing:2.017389pt;}
.ls9{letter-spacing:2.065422pt;}
.ls12{letter-spacing:2.100492pt;}
.ls0{letter-spacing:2.666667pt;}
.ls4f{letter-spacing:2.671139pt;}
.ls13{letter-spacing:2.781523pt;}
.ls2b{letter-spacing:2.881984pt;}
.ls4c{letter-spacing:2.978050pt;}
.ls59{letter-spacing:3.482756pt;}
.lsa{letter-spacing:4.782703pt;}
.ls5a{letter-spacing:4.947406pt;}
.ls40{letter-spacing:6.388398pt;}
.ls46{letter-spacing:8.021522pt;}
.ls3f{letter-spacing:9.251664pt;}
.ls3b{letter-spacing:10.663341pt;}
.ls8{letter-spacing:10.711374pt;}
.ls5b{letter-spacing:11.845861pt;}
.ls7{letter-spacing:12.296465pt;}
.lsf{letter-spacing:13.305159pt;}
.lsc{letter-spacing:13.353192pt;}
.ls3d{letter-spacing:13.401225pt;}
.lse{letter-spacing:14.938283pt;}
.lsb{letter-spacing:15.981800pt;}
.ls42{letter-spacing:16.029648pt;}
.ls58{letter-spacing:16.064777pt;}
.ls3e{letter-spacing:18.925028pt;}
.ls47{letter-spacing:18.973061pt;}
.ls2e{letter-spacing:81.050667pt;}
.ls2f{letter-spacing:172.965329pt;}
.ws1{word-spacing:-13.333333pt;}
.ws42{word-spacing:-12.320000pt;}
.ws2d{word-spacing:-11.040000pt;}
.ws20{word-spacing:-10.992000pt;}
.ws21{word-spacing:-10.896000pt;}
.ws1f{word-spacing:-10.560000pt;}
.ws54{word-spacing:-10.416000pt;}
.ws6{word-spacing:-10.176000pt;}
.ws46{word-spacing:-9.280000pt;}
.ws43{word-spacing:-9.260000pt;}
.ws4c{word-spacing:-9.240000pt;}
.ws12{word-spacing:-8.928000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws2c{word-spacing:-7.176000pt;}
.ws2b{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws4{word-spacing:-7.082400pt;}
.ws5{word-spacing:-7.020000pt;}
.ws3{word-spacing:-6.552000pt;}
.ws9{word-spacing:-5.893333pt;}
.ws23{word-spacing:-5.265867pt;}
.wsd{word-spacing:-1.152000pt;}
.wsb{word-spacing:-1.104000pt;}
.wsf{word-spacing:-1.056000pt;}
.ws34{word-spacing:-1.008000pt;}
.ws10{word-spacing:-0.960000pt;}
.ws48{word-spacing:-0.920000pt;}
.ws3e{word-spacing:-0.912000pt;}
.ws4e{word-spacing:-0.880000pt;}
.ws35{word-spacing:-0.864000pt;}
.ws1c{word-spacing:-0.768000pt;}
.ws18{word-spacing:-0.576000pt;}
.ws40{word-spacing:-0.528000pt;}
.ws4f{word-spacing:-0.520000pt;}
.wse{word-spacing:-0.480000pt;}
.ws13{word-spacing:-0.432000pt;}
.ws33{word-spacing:-0.336000pt;}
.ws4d{word-spacing:-0.320000pt;}
.ws53{word-spacing:-0.288000pt;}
.ws1e{word-spacing:-0.240000pt;}
.ws52{word-spacing:-0.234667pt;}
.ws51{word-spacing:-0.200000pt;}
.wsa{word-spacing:-0.192000pt;}
.ws45{word-spacing:-0.160000pt;}
.wsc{word-spacing:-0.144000pt;}
.ws49{word-spacing:-0.120000pt;}
.ws41{word-spacing:-0.096000pt;}
.ws7{word-spacing:-0.048033pt;}
.ws22{word-spacing:-0.037406pt;}
.ws8{word-spacing:0.000000pt;}
.ws44{word-spacing:0.040000pt;}
.ws30{word-spacing:0.096000pt;}
.ws50{word-spacing:0.120000pt;}
.ws39{word-spacing:0.144000pt;}
.ws15{word-spacing:0.192000pt;}
.ws2a{word-spacing:0.240000pt;}
.ws14{word-spacing:0.336000pt;}
.ws3f{word-spacing:0.384000pt;}
.ws38{word-spacing:0.432000pt;}
.ws32{word-spacing:0.480000pt;}
.ws27{word-spacing:0.576000pt;}
.ws19{word-spacing:0.624000pt;}
.ws36{word-spacing:0.672000pt;}
.ws31{word-spacing:0.816000pt;}
.ws28{word-spacing:0.864000pt;}
.ws3a{word-spacing:0.912000pt;}
.ws47{word-spacing:0.920000pt;}
.ws11{word-spacing:1.008000pt;}
.ws17{word-spacing:1.056000pt;}
.ws1a{word-spacing:1.104000pt;}
.ws37{word-spacing:1.152000pt;}
.ws1b{word-spacing:1.296000pt;}
.ws3b{word-spacing:1.344000pt;}
.ws16{word-spacing:1.392000pt;}
.ws3c{word-spacing:1.440000pt;}
.ws1d{word-spacing:1.536000pt;}
.ws3d{word-spacing:1.824000pt;}
.ws4a{word-spacing:2.680000pt;}
.ws55{word-spacing:2.688000pt;}
.ws4b{word-spacing:2.720000pt;}
.ws56{word-spacing:2.784000pt;}
.ws59{word-spacing:5.040000pt;}
.ws5a{word-spacing:5.568000pt;}
.ws57{word-spacing:7.248000pt;}
.ws58{word-spacing:7.584000pt;}
.ws2f{word-spacing:7.949472pt;}
.ws2e{word-spacing:7.954276pt;}
.ws29{word-spacing:13.584000pt;}
.ws26{word-spacing:59.957333pt;}
.ws24{word-spacing:77.877333pt;}
.ws25{word-spacing:146.197329pt;}
._d{margin-left:-18.624006pt;}
._14{margin-left:-12.425619pt;}
._7{margin-left:-11.169144pt;}
._5{margin-left:-9.344039pt;}
._4{margin-left:-7.680000pt;}
._18{margin-left:-5.404000pt;}
._8{margin-left:-4.504533pt;}
._2{margin-left:-2.925867pt;}
._0{margin-left:-1.668267pt;}
._3{width:0.934400pt;}
._6{width:1.953239pt;}
._9{width:4.755274pt;}
._a{width:6.147045pt;}
._c{width:7.821652pt;}
._15{width:9.396267pt;}
._b{width:10.589066pt;}
._19{width:12.665600pt;}
._e{width:13.576533pt;}
._17{width:14.480000pt;}
._16{width:23.939680pt;}
._f{width:49.317333pt;}
._10{width:65.258663pt;}
._12{width:68.432000pt;}
._13{width:86.352000pt;}
._11{width:101.061333pt;}
._1{width:285.529600pt;}
.fsf{font-size:24.266667pt;}
.fse{font-size:28.428266pt;}
.fsa{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fs8{font-size:36.505066pt;}
.fsd{font-size:37.333333pt;}
.fsc{font-size:37.406400pt;}
.fs10{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:48.033066pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y1f{bottom:-1.160156pt;}
.y23{bottom:-1.158813pt;}
.yb{bottom:-0.759603pt;}
.y155{bottom:-0.359945pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:0.075521pt;}
.ye7{bottom:0.096476pt;}
.y6a{bottom:0.106791pt;}
.y124{bottom:0.129943pt;}
.y5c{bottom:0.173462pt;}
.y78{bottom:0.173584pt;}
.y7b{bottom:0.173747pt;}
.y61{bottom:1.238668pt;}
.y2b{bottom:1.640259pt;}
.yee{bottom:1.906657pt;}
.y10d{bottom:2.104126pt;}
.y74{bottom:2.172526pt;}
.ydc{bottom:2.173340pt;}
.y49{bottom:2.173584pt;}
.y99{bottom:2.174683pt;}
.y9d{bottom:2.306519pt;}
.yad{bottom:2.306529pt;}
.yf{bottom:2.306885pt;}
.y15{bottom:2.306925pt;}
.y51{bottom:2.306946pt;}
.y8d{bottom:2.439860pt;}
.y34{bottom:2.440267pt;}
.ybc{bottom:2.773193pt;}
.yd6{bottom:2.843733pt;}
.y58{bottom:2.843867pt;}
.y12c{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.ye0{bottom:2.853190pt;}
.y4e{bottom:2.972392pt;}
.y93{bottom:2.973307pt;}
.y115{bottom:3.466920pt;}
.y122{bottom:3.533346pt;}
.yf4{bottom:4.039876pt;}
.ye6{bottom:4.039998pt;}
.y42{bottom:4.173726pt;}
.y10b{bottom:4.720256pt;}
.y112{bottom:4.720378pt;}
.y67{bottom:8.626790pt;}
.y6d{bottom:8.627197pt;}
.y10f{bottom:9.676107pt;}
.ybf{bottom:11.305583pt;}
.yb9{bottom:11.306519pt;}
.yc2{bottom:13.733317pt;}
.y44{bottom:13.905457pt;}
.y11f{bottom:14.066651pt;}
.y11a{bottom:14.066814pt;}
.y111{bottom:14.452108pt;}
.y69{bottom:17.050802pt;}
.y6c{bottom:17.051188pt;}
.ycf{bottom:23.465047pt;}
.y57{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.yd7{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.ybe{bottom:28.237183pt;}
.ybb{bottom:28.238281pt;}
.yc4{bottom:30.676921pt;}
.yc6{bottom:30.677327pt;}
.y11c{bottom:35.486532pt;}
.yd0{bottom:35.488932pt;}
.yc9{bottom:35.489339pt;}
.y56{bottom:60.477867pt;}
.yb6{bottom:61.748000pt;}
.y108{bottom:64.306667pt;}
.y55{bottom:73.811200pt;}
.yb5{bottom:75.080000pt;}
.y107{bottom:77.638667pt;}
.yb4{bottom:88.412000pt;}
.y106{bottom:90.970667pt;}
.y54{bottom:91.105865pt;}
.y64{bottom:95.201336pt;}
.y152{bottom:97.246796pt;}
.yb3{bottom:101.744000pt;}
.y105{bottom:104.302667pt;}
.y63{bottom:108.533336pt;}
.y151{bottom:110.580129pt;}
.yb2{bottom:115.076000pt;}
.y104{bottom:117.634667pt;}
.y60{bottom:120.618663pt;}
.y62{bottom:121.865336pt;}
.y5f{bottom:121.869336pt;}
.yb1{bottom:128.409333pt;}
.y103{bottom:130.966667pt;}
.y5e{bottom:135.201336pt;}
.y150{bottom:138.552135pt;}
.yb0{bottom:141.744000pt;}
.y102{bottom:144.298667pt;}
.y5d{bottom:148.533336pt;}
.y14f{bottom:151.884135pt;}
.yaf{bottom:155.076000pt;}
.y101{bottom:157.630667pt;}
.y5b{bottom:161.697337pt;}
.y5a{bottom:161.865336pt;}
.y14e{bottom:165.217468pt;}
.yac{bottom:166.104004pt;}
.y52{bottom:168.063060pt;}
.yae{bottom:168.408000pt;}
.yab{bottom:168.409333pt;}
.y100{bottom:170.962667pt;}
.y4d{bottom:178.420003pt;}
.y50{bottom:179.090658pt;}
.y4f{bottom:181.395060pt;}
.y4c{bottom:181.397605pt;}
.yaa{bottom:181.745333pt;}
.y66{bottom:181.865336pt;}
.yff{bottom:184.294667pt;}
.y65{bottom:189.903605pt;}
.y68{bottom:190.492126pt;}
.y6b{bottom:190.492533pt;}
.y14d{bottom:191.892135pt;}
.y4b{bottom:194.729605pt;}
.ya9{bottom:195.077333pt;}
.yfe{bottom:197.626667pt;}
.y14c{bottom:205.224135pt;}
.y48{bottom:205.877340pt;}
.y4a{bottom:208.061605pt;}
.y47{bottom:208.064271pt;}
.ya8{bottom:208.409333pt;}
.yfd{bottom:210.958667pt;}
.y14b{bottom:218.556135pt;}
.y46{bottom:221.396271pt;}
.ya7{bottom:221.749191pt;}
.yfc{bottom:224.290667pt;}
.y41{bottom:230.552002pt;}
.y14a{bottom:231.888135pt;}
.y43{bottom:234.725728pt;}
.y45{bottom:234.728271pt;}
.y40{bottom:234.729605pt;}
.ya6{bottom:235.081191pt;}
.yfb{bottom:237.622667pt;}
.y149{bottom:245.220135pt;}
.y3f{bottom:248.061605pt;}
.ya5{bottom:248.413191pt;}
.yfa{bottom:250.954667pt;}
.y148{bottom:258.552135pt;}
.y89{bottom:259.690807pt;}
.y3e{bottom:261.394938pt;}
.ya4{bottom:261.745191pt;}
.yf9{bottom:264.286667pt;}
.y147{bottom:271.884135pt;}
.y88{bottom:273.022807pt;}
.ya3{bottom:275.077191pt;}
.y121{bottom:284.283997pt;}
.y146{bottom:285.217468pt;}
.y120{bottom:286.788798pt;}
.y123{bottom:287.817342pt;}
.ya2{bottom:288.409191pt;}
.y3d{bottom:290.732271pt;}
.ya1{bottom:301.745211pt;}
.y3c{bottom:304.064271pt;}
.yf7{bottom:307.318665pt;}
.yf8{bottom:311.350667pt;}
.yf6{bottom:311.352000pt;}
.y145{bottom:311.950781pt;}
.ya0{bottom:315.077211pt;}
.y3b{bottom:317.396271pt;}
.yf3{bottom:320.651998pt;}
.y144{bottom:323.280781pt;}
.yf5{bottom:324.684000pt;}
.yf2{bottom:324.684001pt;}
.y39{bottom:328.280009pt;}
.y9f{bottom:328.409211pt;}
.y3a{bottom:330.728271pt;}
.y38{bottom:330.730938pt;}
.y143{bottom:334.610781pt;}
.yf1{bottom:338.016001pt;}
.y9c{bottom:339.437337pt;}
.y9e{bottom:341.741211pt;}
.y9b{bottom:341.742544pt;}
.y37{bottom:344.062938pt;}
.y142{bottom:345.940781pt;}
.y98{bottom:352.889323pt;}
.y9a{bottom:355.074544pt;}
.y97{bottom:355.075878pt;}
.y141{bottom:357.270781pt;}
.y36{bottom:357.396271pt;}
.y119{bottom:358.017333pt;}
.y11e{bottom:363.564128pt;}
.y33{bottom:368.279989pt;}
.y96{bottom:368.407878pt;}
.y140{bottom:368.600781pt;}
.y35{bottom:370.728271pt;}
.y32{bottom:370.733605pt;}
.y118{bottom:371.655477pt;}
.y11b{bottom:372.084147pt;}
.y13f{bottom:379.930781pt;}
.y11d{bottom:380.510783pt;}
.y31{bottom:384.065605pt;}
.y13e{bottom:391.260781pt;}
.y30{bottom:397.397605pt;}
.ycd{bottom:401.741333pt;}
.y13d{bottom:402.590781pt;}
.yd2{bottom:406.954549pt;}
.yf0{bottom:407.352000pt;}
.y2f{bottom:410.729605pt;}
.y13c{bottom:413.920781pt;}
.ycc{bottom:415.379313pt;}
.yce{bottom:415.474650pt;}
.yd3{bottom:415.474935pt;}
.yed{bottom:418.788005pt;}
.yef{bottom:420.684000pt;}
.yec{bottom:420.685333pt;}
.yd1{bottom:423.901204pt;}
.y2e{bottom:424.061605pt;}
.y13b{bottom:425.250781pt;}
.yeb{bottom:434.017333pt;}
.y13a{bottom:436.580781pt;}
.y2d{bottom:437.394938pt;}
.y139{bottom:447.910781pt;}
.y95{bottom:451.075878pt;}
.y114{bottom:454.017333pt;}
.y113{bottom:457.122152pt;}
.y116{bottom:457.400391pt;}
.y138{bottom:459.240781pt;}
.y92{bottom:461.432007pt;}
.y94{bottom:464.407878pt;}
.y91{bottom:464.409212pt;}
.y2a{bottom:465.095988pt;}
.y2c{bottom:466.728271pt;}
.y29{bottom:466.730938pt;}
.y137{bottom:470.570781pt;}
.y90{bottom:477.741212pt;}
.yea{bottom:478.251994pt;}
.y28{bottom:480.062938pt;}
.y136{bottom:481.900781pt;}
.ye9{bottom:482.285472pt;}
.ye5{bottom:491.585327pt;}
.y135{bottom:493.230781pt;}
.y27{bottom:493.397605pt;}
.ye8{bottom:495.617472pt;}
.ye4{bottom:495.618806pt;}
.yc1{bottom:497.741333pt;}
.yc5{bottom:502.954549pt;}
.y134{bottom:504.560781pt;}
.y26{bottom:506.729605pt;}
.ye3{bottom:508.950806pt;}
.yc0{bottom:511.379313pt;}
.yc3{bottom:511.474650pt;}
.ycb{bottom:511.474935pt;}
.y133{bottom:515.890781pt;}
.yc8{bottom:519.898213pt;}
.yca{bottom:519.901204pt;}
.y25{bottom:520.062938pt;}
.y76{bottom:521.473867pt;}
.yc7{bottom:525.370809pt;}
.y132{bottom:527.220781pt;}
.y10a{bottom:528.950684pt;}
.y109{bottom:532.078655pt;}
.y73{bottom:532.622681pt;}
.y24{bottom:533.394938pt;}
.y21{bottom:533.396271pt;}
.y10c{bottom:533.586548pt;}
.y110{bottom:533.586792pt;}
.y10e{bottom:533.671061pt;}
.y22{bottom:534.593343pt;}
.y75{bottom:534.805867pt;}
.y72{bottom:534.807200pt;}
.y131{bottom:538.550781pt;}
.y20{bottom:546.728271pt;}
.y1d{bottom:546.730938pt;}
.y8f{bottom:547.077211pt;}
.y1e{bottom:547.928019pt;}
.y71{bottom:548.139200pt;}
.y130{bottom:549.884115pt;}
.ydf{bottom:554.505330pt;}
.ye2{bottom:555.033325pt;}
.ye1{bottom:557.217448pt;}
.yde{bottom:557.218781pt;}
.y1c{bottom:560.062938pt;}
.y8e{bottom:560.409211pt;}
.ydb{bottom:568.366659pt;}
.ydd{bottom:570.550781pt;}
.yda{bottom:570.552115pt;}
.y8c{bottom:571.293335pt;}
.y1b{bottom:573.410946pt;}
.y8b{bottom:573.741211pt;}
.y87{bottom:575.935091pt;}
.yd9{bottom:583.884115pt;}
.y86{bottom:591.521758pt;}
.yb8{bottom:593.741333pt;}
.y12f{bottom:593.884115pt;}
.yb7{bottom:604.916000pt;}
.ybd{bottom:605.046672pt;}
.yba{bottom:605.047852pt;}
.y85{bottom:607.108424pt;}
.y1a{bottom:613.538946pt;}
.y12e{bottom:620.552115pt;}
.y84{bottom:622.695091pt;}
.y19{bottom:628.202946pt;}
.y12d{bottom:633.884115pt;}
.y12b{bottom:637.902775pt;}
.y83{bottom:638.281758pt;}
.y18{bottom:642.866946pt;}
.y12a{bottom:651.234775pt;}
.y82{bottom:653.868424pt;}
.y17{bottom:657.530946pt;}
.yd5{bottom:660.562816pt;}
.y129{bottom:664.566775pt;}
.y81{bottom:669.455091pt;}
.y14{bottom:669.890666pt;}
.y16{bottom:672.194946pt;}
.y13{bottom:672.202906pt;}
.yd4{bottom:673.894816pt;}
.y128{bottom:677.898775pt;}
.y15a{bottom:680.194818pt;}
.y80{bottom:685.041758pt;}
.y12{bottom:686.866906pt;}
.y127{bottom:691.230775pt;}
.y159{bottom:693.526818pt;}
.y7f{bottom:700.628424pt;}
.y11{bottom:701.530906pt;}
.y126{bottom:704.562775pt;}
.y158{bottom:706.858818pt;}
.ye{bottom:713.890706pt;}
.y10{bottom:716.194906pt;}
.yd{bottom:716.197572pt;}
.y7e{bottom:716.215091pt;}
.y125{bottom:717.894775pt;}
.y157{bottom:720.190818pt;}
.y7c{bottom:729.934896pt;}
.yc{bottom:730.861572pt;}
.y9{bottom:730.864239pt;}
.y7a{bottom:731.633301pt;}
.y7d{bottom:731.801758pt;}
.ya{bottom:732.670654pt;}
.y156{bottom:733.522818pt;}
.y8{bottom:745.528239pt;}
.y153{bottom:746.854818pt;}
.y154{bottom:747.202637pt;}
.y77{bottom:747.218669pt;}
.y79{bottom:747.386963pt;}
.y168{bottom:758.255735pt;}
.y7{bottom:772.194906pt;}
.y167{bottom:784.919733pt;}
.y166{bottom:798.251733pt;}
.y6{bottom:801.522906pt;}
.y70{bottom:808.670635pt;}
.y165{bottom:811.583733pt;}
.y6f{bottom:822.002635pt;}
.y164{bottom:824.915733pt;}
.y6e{bottom:835.334635pt;}
.y163{bottom:838.247733pt;}
.y5{bottom:841.528239pt;}
.y53{bottom:848.326009pt;}
.y162{bottom:851.579733pt;}
.y161{bottom:864.911733pt;}
.y160{bottom:878.243733pt;}
.y15f{bottom:898.237067pt;}
.y15e{bottom:911.569067pt;}
.y15d{bottom:931.573067pt;}
.y15c{bottom:951.577067pt;}
.y15b{bottom:964.910400pt;}
.y8a{bottom:1013.902507pt;}
.yd8{bottom:1013.996908pt;}
.y59{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h1e{height:1.921323pt;}
.h8{height:3.660000pt;}
.h34{height:4.533333pt;}
.h67{height:4.666667pt;}
.h10{height:5.333333pt;}
.h54{height:7.333333pt;}
.h1f{height:7.600000pt;}
.h3c{height:7.601333pt;}
.h22{height:7.734667pt;}
.hb{height:7.866667pt;}
.h2a{height:8.132000pt;}
.h37{height:8.133333pt;}
.h14{height:8.266666pt;}
.h28{height:8.800000pt;}
.h4c{height:10.266666pt;}
.h3b{height:10.801333pt;}
.h21{height:10.933333pt;}
.h3a{height:11.066667pt;}
.h4e{height:11.333333pt;}
.h19{height:12.665333pt;}
.h17{height:13.199999pt;}
.h50{height:13.733333pt;}
.h5e{height:13.734666pt;}
.h45{height:13.800201pt;}
.h1b{height:14.400000pt;}
.h56{height:14.933333pt;}
.h52{height:14.934667pt;}
.h9{height:15.370581pt;}
.h35{height:17.281757pt;}
.h30{height:17.436003pt;}
.h68{height:20.029788pt;}
.h3d{height:21.134549pt;}
.h23{height:21.662913pt;}
.hc{height:22.191276pt;}
.h25{height:23.840951pt;}
.h5a{height:24.385384pt;}
.h2e{height:24.800000pt;}
.h39{height:24.849067pt;}
.h59{height:25.553546pt;}
.h11{height:25.841789pt;}
.h4a{height:25.991607pt;}
.h15{height:26.466219pt;}
.h2b{height:27.619013pt;}
.h43{height:28.003277pt;}
.h42{height:31.066666pt;}
.h62{height:31.476562pt;}
.h2f{height:31.557724pt;}
.h5b{height:32.086088pt;}
.h47{height:32.230187pt;}
.h5c{height:32.470352pt;}
.h4d{height:33.046749pt;}
.h38{height:33.483445pt;}
.h1d{height:33.623146pt;}
.h58{height:33.959378pt;}
.h20{height:34.199543pt;}
.h5f{height:34.200813pt;}
.h29{height:34.247576pt;}
.h2{height:34.520833pt;}
.h7{height:34.523438pt;}
.h46{height:36.000000pt;}
.h4f{height:36.334754pt;}
.h36{height:38.229333pt;}
.ha{height:39.241016pt;}
.h64{height:39.560000pt;}
.h26{height:39.686279pt;}
.h65{height:40.080000pt;}
.h3{height:40.604167pt;}
.h1c{height:40.828106pt;}
.h63{height:40.960000pt;}
.h16{height:42.195312pt;}
.h1a{height:42.978595pt;}
.h51{height:43.218097pt;}
.h55{height:43.218583pt;}
.h53{height:43.656158pt;}
.h57{height:43.656644pt;}
.h6{height:43.718750pt;}
.h27{height:43.887581pt;}
.h66{height:44.834667pt;}
.h18{height:45.378090pt;}
.h60{height:45.378578pt;}
.h31{height:45.424477pt;}
.h5d{height:45.864654pt;}
.he{height:47.472000pt;}
.hd{height:47.592735pt;}
.h3f{height:47.625337pt;}
.h3e{height:47.640767pt;}
.hf{height:47.646101pt;}
.h2d{height:47.646141pt;}
.h12{height:47.651434pt;}
.h33{height:47.651437pt;}
.h41{height:47.651475pt;}
.h40{height:47.656767pt;}
.h2c{height:47.656808pt;}
.h61{height:47.813364pt;}
.h13{height:48.096000pt;}
.h32{height:49.152000pt;}
.h4{height:50.755208pt;}
.h44{height:67.870722pt;}
.h48{height:67.918755pt;}
.h49{height:68.303020pt;}
.h24{height:69.046875pt;}
.h4b{height:79.944077pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:3.569333pt;}
.w10{width:4.613333pt;}
.w23{width:4.653333pt;}
.wc{width:5.386667pt;}
.wb{width:5.920000pt;}
.w3{width:6.600000pt;}
.w5{width:7.026667pt;}
.w14{width:7.186666pt;}
.w4{width:8.013333pt;}
.w1d{width:9.826667pt;}
.wd{width:10.453333pt;}
.w1c{width:11.838666pt;}
.w1e{width:11.840000pt;}
.w1b{width:13.186667pt;}
.w11{width:14.066667pt;}
.wa{width:14.240000pt;}
.w13{width:19.746667pt;}
.w8{width:20.280000pt;}
.w12{width:22.265333pt;}
.wf{width:23.814667pt;}
.w9{width:23.839999pt;}
.w18{width:29.866666pt;}
.w1a{width:33.000000pt;}
.w19{width:41.852000pt;}
.w7{width:65.626668pt;}
.w6{width:78.401332pt;}
.w22{width:80.506668pt;}
.we{width:93.053333pt;}
.w21{width:93.559998pt;}
.w20{width:126.160004pt;}
.w15{width:127.706665pt;}
.w17{width:176.106669pt;}
.w1f{width:221.333333pt;}
.w16{width:349.720011pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x9{left:-0.899048pt;}
.x0{left:0.000000pt;}
.x23{left:6.425200pt;}
.x1b{left:16.623738pt;}
.x47{left:21.679484pt;}
.x5c{left:27.964559pt;}
.x4e{left:30.636393pt;}
.x2d{left:46.955322pt;}
.x5e{left:49.516683pt;}
.x79{left:52.896650pt;}
.x3{left:54.803202pt;}
.x49{left:56.659220pt;}
.x2f{left:65.386800pt;}
.x61{left:82.432536pt;}
.x71{left:87.090942pt;}
.x31{left:90.827189pt;}
.x7b{left:93.159302pt;}
.x7c{left:99.864790pt;}
.x4b{left:104.455607pt;}
.x7d{left:110.295329pt;}
.x51{left:113.412415pt;}
.x7f{left:124.119303pt;}
.x22{left:125.685069pt;}
.x74{left:147.703451pt;}
.x76{left:160.243083pt;}
.x63{left:165.208822pt;}
.x78{left:187.795207pt;}
.x5{left:207.874003pt;}
.x33{left:212.062663pt;}
.x54{left:212.952779pt;}
.x34{left:216.676005pt;}
.x17{left:220.342672pt;}
.x35{left:222.365336pt;}
.x1e{left:223.868407pt;}
.x82{left:225.874002pt;}
.x36{left:236.432800pt;}
.x24{left:240.231995pt;}
.x25{left:245.672791pt;}
.x57{left:256.044657pt;}
.x6c{left:262.765340pt;}
.x28{left:264.353333pt;}
.x69{left:267.670675pt;}
.x84{left:268.887736pt;}
.x29{left:274.860799pt;}
.x6d{left:276.006795pt;}
.x18{left:286.023458pt;}
.x4c{left:298.526672pt;}
.x4d{left:307.275065pt;}
.x1f{left:310.253337pt;}
.x3f{left:316.300008pt;}
.xf{left:317.265340pt;}
.x40{left:323.540405pt;}
.x10{left:325.189596pt;}
.x6e{left:327.588542pt;}
.x4f{left:338.007324pt;}
.x11{left:352.921346pt;}
.x83{left:358.373332pt;}
.x12{left:360.001994pt;}
.x6f{left:362.718669pt;}
.x50{left:364.155192pt;}
.x70{left:369.241984pt;}
.x13{left:371.486654pt;}
.x14{left:378.568115pt;}
.xb{left:382.144002pt;}
.x5a{left:385.331991pt;}
.xc{left:388.792521pt;}
.x5b{left:396.088664pt;}
.x3d{left:400.180013pt;}
.x3c{left:403.790405pt;}
.x45{left:409.531982pt;}
.x46{left:418.515055pt;}
.x3e{left:419.911743pt;}
.x5d{left:422.140788pt;}
.x2b{left:426.858683pt;}
.x81{left:433.133341pt;}
.x52{left:434.559204pt;}
.x2c{left:435.605754pt;}
.x48{left:440.055216pt;}
.x1c{left:442.027995pt;}
.x53{left:444.357950pt;}
.x5f{left:448.456543pt;}
.x60{left:450.424520pt;}
.x72{left:456.505981pt;}
.x20{left:457.862671pt;}
.x21{left:463.875326pt;}
.x1d{left:465.908407pt;}
.x37{left:468.170654pt;}
.x7a{left:470.454142pt;}
.x38{left:472.783447pt;}
.x32{left:476.800008pt;}
.x73{left:478.537720pt;}
.x4a{left:481.863607pt;}
.x2e{left:484.649618pt;}
.x3a{left:497.267985pt;}
.x30{left:499.602010pt;}
.x19{left:501.119995pt;}
.x62{left:502.744548pt;}
.x80{left:504.897867pt;}
.x6a{left:507.307983pt;}
.x1a{left:511.887980pt;}
.x75{left:516.097616pt;}
.x6b{left:517.189860pt;}
.x3b{left:519.532389pt;}
.x4{left:521.612549pt;}
.x55{left:525.087199pt;}
.x77{left:526.093994pt;}
.x7e{left:529.949870pt;}
.x56{left:532.143188pt;}
.x6{left:534.482666pt;}
.x7{left:538.100382pt;}
.x43{left:552.386678pt;}
.x44{left:559.593465pt;}
.x58{left:563.415080pt;}
.xd{left:574.748006pt;}
.x66{left:578.319987pt;}
.xe{left:582.816406pt;}
.x64{left:583.805339pt;}
.x59{left:589.563192pt;}
.x67{left:593.466675pt;}
.x68{left:606.807739pt;}
.x65{left:613.725749pt;}
.x26{left:625.845337pt;}
.x27{left:631.286947pt;}
.x15{left:657.273315pt;}
.x8{left:678.854655pt;}
.xa{left:685.503743pt;}
.x41{left:700.431966pt;}
.x42{left:707.673177pt;}
.x39{left:708.791829pt;}
.x2{left:710.134766pt;}
.x2a{left:724.833903pt;}
.x1{left:733.334391pt;}
.x16{left:735.667969pt;}
}




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