
    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_eb7a3008e50660b4996a8178.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_14e771a99c207b22b1b35e5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;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_b839f8d46df721726d612436.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_ac54dbee6042d32957d8517e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e3e30511f1ff686e1bb84635.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_d2aa6584bfc922befd13aafa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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_c0b8ffddca2e8802be5d561e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_67ec74e494723dc93a23de82.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933594;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_7ec3d0023c31c150c0be556c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_09d061e2e86749171d40a7b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_3605ef79fa9fdca9c2271db3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933594;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_b43efc084e20c0e9b65ecc33.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_cea81cf41a77254b90471713.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_a257ded023839124b34572ca.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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_b90d4c2c565f642b0b7013a1.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ecf087ed086a92a0c7574b54.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.933594;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_b12f18922f1edda61e9eac0c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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_07383285556660e214fcf1ec.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_cea81cf41a77254b90471713.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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_3a6572199958249cf833e9f3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.933594;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_bd498a1a7ccfad1cfc34afee.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_608dbacacff8d02803065774.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.933594;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_1db52d83de9b8379f60cecc2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.727539;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_1ef569241c04f0a329a9febb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.933594;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_91595fe05c886e5d6acf47c7.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910156;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_cea81cf41a77254b90471713.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.910156;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_bd498a1a7ccfad1cfc34afee.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_4ad325d52016764a18ab531a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.893555;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_b90d4c2c565f642b0b7013a1.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_b43efc084e20c0e9b65ecc33.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910156;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_cea81cf41a77254b90471713.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910156;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_6c34bc76966f29b7df3bc7cd.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.933594;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_1db52d83de9b8379f60cecc2.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.727539;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_0a635337edba62d1377afe5c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.893555;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_b90d4c2c565f642b0b7013a1.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_2eb7edb754610e960bede197.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.933594;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_520c8aca14e315f2c647986c.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.910156;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_cea81cf41a77254b90471713.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.910156;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_7143388b8fd4cdc15b71cc70.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.933594;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_2ed1a94baa441b7eaa6fb13e.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.893555;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_b90d4c2c565f642b0b7013a1.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_4b01494eb4ce8dd3a58b0f32.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.910156;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_cea81cf41a77254b90471713.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.910156;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_811c774a8ae4c91e2465ba40.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.933594;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_d32c165a78ef7def869237ab.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.893555;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_a523b1a38788d5960a24c077.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.933594;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);}
.v3{vertical-align:-18.000000px;}
.v1{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v2{vertical-align:27.360000px;}
.ls51{letter-spacing:-1.640160px;}
.ls4b{letter-spacing:-1.374480px;}
.ls52{letter-spacing:-1.157760px;}
.ls3d{letter-spacing:-1.135440px;}
.ls3a{letter-spacing:-1.075680px;}
.ls29{letter-spacing:-1.013040px;}
.ls23{letter-spacing:-0.964800px;}
.ls31{letter-spacing:-0.916560px;}
.ls2e{letter-spacing:-0.810000px;}
.ls4a{letter-spacing:-0.776880px;}
.ls2c{letter-spacing:-0.771840px;}
.ls54{letter-spacing:-0.723600px;}
.ls3f{letter-spacing:-0.657360px;}
.ls36{letter-spacing:-0.597600px;}
.ls38{letter-spacing:-0.537840px;}
.ls21{letter-spacing:-0.530640px;}
.ls1e{letter-spacing:-0.480000px;}
.ls3c{letter-spacing:-0.478080px;}
.ls26{letter-spacing:-0.434160px;}
.ls35{letter-spacing:-0.418320px;}
.ls32{letter-spacing:-0.358560px;}
.ls22{letter-spacing:-0.337680px;}
.ls25{letter-spacing:-0.289440px;}
.ls2b{letter-spacing:-0.241200px;}
.ls37{letter-spacing:-0.239040px;}
.ls2d{letter-spacing:-0.216000px;}
.ls3b{letter-spacing:-0.179280px;}
.ls30{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.059760px;}
.ls1d{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.000600px;}
.ls1c{letter-spacing:0.059760px;}
.ls10{letter-spacing:0.119520px;}
.ls20{letter-spacing:0.144720px;}
.ls2a{letter-spacing:0.153360px;}
.ls1f{letter-spacing:0.162000px;}
.ls11{letter-spacing:0.179280px;}
.ls4{letter-spacing:0.192960px;}
.ls16{letter-spacing:0.239040px;}
.ls28{letter-spacing:0.241200px;}
.ls7{letter-spacing:0.253440px;}
.ls24{letter-spacing:0.289440px;}
.ls33{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.306720px;}
.ls9{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.337680px;}
.ls15{letter-spacing:0.358560px;}
.ls4f{letter-spacing:0.361800px;}
.lsc{letter-spacing:0.378000px;}
.ls27{letter-spacing:0.385920px;}
.ls4d{letter-spacing:0.530640px;}
.ls3e{letter-spacing:0.657360px;}
.ls34{letter-spacing:0.776880px;}
.ls17{letter-spacing:0.896400px;}
.ls3{letter-spacing:0.916560px;}
.ls2f{letter-spacing:0.918000px;}
.ls5{letter-spacing:1.013040px;}
.ls50{letter-spacing:1.075680px;}
.ls1{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.350000px;}
.ls44{letter-spacing:1.613520px;}
.lsa{letter-spacing:1.620000px;}
.lsf{letter-spacing:2.330640px;}
.ls43{letter-spacing:2.450160px;}
.ls14{letter-spacing:3.047760px;}
.ls45{letter-spacing:3.227040px;}
.ls47{letter-spacing:3.764880px;}
.ls13{letter-spacing:4.482000px;}
.ls53{letter-spacing:4.486320px;}
.ls1a{letter-spacing:5.199120px;}
.ls8{letter-spacing:5.238000px;}
.ls4e{letter-spacing:5.916240px;}
.ls12{letter-spacing:6.633360px;}
.lsb{letter-spacing:7.398000px;}
.ls18{letter-spacing:8.127360px;}
.ls19{letter-spacing:8.246880px;}
.ls4c{letter-spacing:8.844480px;}
.ls46{letter-spacing:9.561600px;}
.ls49{letter-spacing:10.995840px;}
.ls42{letter-spacing:13.147200px;}
.lse{letter-spacing:13.864320px;}
.ls48{letter-spacing:14.043600px;}
.ls1b{letter-spacing:19.601280px;}
.lsd{letter-spacing:586.357200px;}
.ls41{letter-spacing:610.139520px;}
.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;}
}
.ws6{word-spacing:-99.360000px;}
.wsae{word-spacing:-16.015680px;}
.ws2{word-spacing:-15.984000px;}
.ws1f{word-spacing:-15.716880px;}
.ws83{word-spacing:-15.597360px;}
.ws1c{word-spacing:-15.298560px;}
.ws28{word-spacing:-15.238800px;}
.ws20{word-spacing:-15.179040px;}
.ws5{word-spacing:-15.174000px;}
.ws22{word-spacing:-15.119280px;}
.ws84{word-spacing:-15.059520px;}
.ws1{word-spacing:-15.012000px;}
.ws1d{word-spacing:-14.999760px;}
.ws23{word-spacing:-14.940000px;}
.ws26{word-spacing:-14.880240px;}
.ws27{word-spacing:-14.760720px;}
.ws25{word-spacing:-14.700960px;}
.ws1e{word-spacing:-14.581440px;}
.ws21{word-spacing:-14.521680px;}
.ws2a{word-spacing:-14.461920px;}
.ws17{word-spacing:-14.418000px;}
.ws24{word-spacing:-14.342400px;}
.ws2b{word-spacing:-14.282640px;}
.ws19{word-spacing:-13.878000px;}
.ws14{word-spacing:-13.824000px;}
.ws29{word-spacing:-13.804560px;}
.ws4{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.392000px;}
.ws1a{word-spacing:-13.284000px;}
.wsf{word-spacing:-13.086720px;}
.ws10{word-spacing:-12.933360px;}
.ws16{word-spacing:-12.690000px;}
.wsc{word-spacing:-12.445920px;}
.wsd{word-spacing:-12.349440px;}
.ws1b{word-spacing:-12.301200px;}
.wsb0{word-spacing:-12.252960px;}
.ws9{word-spacing:-12.204720px;}
.ws7{word-spacing:-12.060000px;}
.ws82{word-spacing:-12.000000px;}
.ws12{word-spacing:-11.818800px;}
.wsa{word-spacing:-11.770560px;}
.ws8{word-spacing:-11.722320px;}
.wsb{word-spacing:-11.625840px;}
.wse{word-spacing:-11.529360px;}
.ws13{word-spacing:-11.288160px;}
.wsd2{word-spacing:-11.143440px;}
.wsaf{word-spacing:-10.419840px;}
.ws15{word-spacing:-9.000000px;}
.ws11{word-spacing:-7.560000px;}
.ws97{word-spacing:-3.406320px;}
.wsf1{word-spacing:-2.990880px;}
.wsbf{word-spacing:-2.808720px;}
.wsa5{word-spacing:-2.748960px;}
.ws7a{word-spacing:-2.689200px;}
.ws8f{word-spacing:-2.569680px;}
.wse8{word-spacing:-2.363760px;}
.ws7e{word-spacing:-2.270880px;}
.wse9{word-spacing:-2.267280px;}
.wse5{word-spacing:-2.170800px;}
.wsd3{word-spacing:-2.122560px;}
.ws7f{word-spacing:-2.091600px;}
.ws5b{word-spacing:-2.031840px;}
.ws4c{word-spacing:-1.998000px;}
.ws5d{word-spacing:-1.972080px;}
.wsbe{word-spacing:-1.852560px;}
.wsd6{word-spacing:-1.640160px;}
.ws90{word-spacing:-1.613520px;}
.ws96{word-spacing:-1.553760px;}
.wsea{word-spacing:-1.398960px;}
.ws95{word-spacing:-1.374480px;}
.ws6a{word-spacing:-1.314720px;}
.ws5a{word-spacing:-1.254960px;}
.ws4e{word-spacing:-1.242000px;}
.ws89{word-spacing:-1.135440px;}
.ws4d{word-spacing:-1.134000px;}
.ws94{word-spacing:-1.075680px;}
.wsd4{word-spacing:-0.916560px;}
.wsa2{word-spacing:-0.896400px;}
.ws92{word-spacing:-0.836640px;}
.ws3a{word-spacing:-0.820080px;}
.ws9b{word-spacing:-0.776880px;}
.wsf4{word-spacing:-0.771840px;}
.wsd5{word-spacing:-0.723600px;}
.ws3c{word-spacing:-0.675360px;}
.ws80{word-spacing:-0.657360px;}
.ws9c{word-spacing:-0.597600px;}
.wsf0{word-spacing:-0.578880px;}
.wsa3{word-spacing:-0.537840px;}
.ws39{word-spacing:-0.530640px;}
.wsa4{word-spacing:-0.418320px;}
.wsc4{word-spacing:-0.385920px;}
.ws47{word-spacing:-0.324000px;}
.wsa0{word-spacing:-0.298800px;}
.ws4f{word-spacing:-0.289440px;}
.ws3b{word-spacing:-0.192960px;}
.ws52{word-spacing:-0.179280px;}
.ws2e{word-spacing:-0.162000px;}
.ws2f{word-spacing:-0.144720px;}
.ws67{word-spacing:-0.119520px;}
.ws0{word-spacing:-0.099000px;}
.ws34{word-spacing:-0.096480px;}
.ws2c{word-spacing:0.000000px;}
.ws7c{word-spacing:0.059760px;}
.ws48{word-spacing:0.108000px;}
.ws69{word-spacing:0.119520px;}
.ws66{word-spacing:0.179280px;}
.ws38{word-spacing:0.204480px;}
.ws3d{word-spacing:0.216000px;}
.ws6b{word-spacing:0.239040px;}
.wsfa{word-spacing:0.241200px;}
.ws37{word-spacing:0.306720px;}
.ws49{word-spacing:0.324000px;}
.ws36{word-spacing:0.337680px;}
.ws60{word-spacing:0.358560px;}
.ws58{word-spacing:0.418320px;}
.ws33{word-spacing:0.434160px;}
.ws77{word-spacing:0.478080px;}
.ws2d{word-spacing:0.480000px;}
.ws31{word-spacing:0.482400px;}
.ws99{word-spacing:0.530640px;}
.ws5f{word-spacing:0.537840px;}
.wsc8{word-spacing:0.578880px;}
.wse4{word-spacing:0.627120px;}
.ws9a{word-spacing:0.657360px;}
.ws30{word-spacing:0.675360px;}
.wsa8{word-spacing:0.717120px;}
.wsf9{word-spacing:0.723600px;}
.ws79{word-spacing:0.776880px;}
.ws68{word-spacing:0.836640px;}
.ws50{word-spacing:0.916560px;}
.ws71{word-spacing:0.956160px;}
.ws35{word-spacing:1.013040px;}
.wsb1{word-spacing:1.061280px;}
.ws65{word-spacing:1.075680px;}
.ws32{word-spacing:1.109520px;}
.ws6d{word-spacing:1.135440px;}
.wsc5{word-spacing:1.157760px;}
.ws78{word-spacing:1.195200px;}
.wsca{word-spacing:1.206000px;}
.ws6e{word-spacing:1.314720px;}
.wsad{word-spacing:1.374480px;}
.wse3{word-spacing:1.398960px;}
.ws76{word-spacing:1.553760px;}
.ws41{word-spacing:1.566000px;}
.wsab{word-spacing:1.673280px;}
.ws40{word-spacing:1.782000px;}
.wsc9{word-spacing:1.929600px;}
.wscb{word-spacing:2.026080px;}
.ws62{word-spacing:2.151360px;}
.ws56{word-spacing:2.211120px;}
.ws43{word-spacing:2.268000px;}
.ws55{word-spacing:2.270880px;}
.ws61{word-spacing:2.390400px;}
.ws7d{word-spacing:2.629440px;}
.wsf8{word-spacing:2.653200px;}
.ws44{word-spacing:2.700000px;}
.wsd0{word-spacing:2.701440px;}
.wsc7{word-spacing:2.749680px;}
.ws93{word-spacing:2.928240px;}
.ws57{word-spacing:2.988000px;}
.ws98{word-spacing:3.047760px;}
.ws42{word-spacing:3.078000px;}
.ws6c{word-spacing:3.107520px;}
.wsc6{word-spacing:3.328560px;}
.wsb2{word-spacing:3.346560px;}
.ws63{word-spacing:3.406320px;}
.wsd1{word-spacing:3.521520px;}
.wsa7{word-spacing:3.525840px;}
.ws8c{word-spacing:3.645360px;}
.ws64{word-spacing:3.705120px;}
.wsa6{word-spacing:3.824640px;}
.ws8d{word-spacing:4.063680px;}
.wsda{word-spacing:4.148640px;}
.ws8e{word-spacing:4.183200px;}
.ws5e{word-spacing:4.362480px;}
.ws8a{word-spacing:4.422240px;}
.wsdb{word-spacing:4.775760px;}
.ws8b{word-spacing:4.780800px;}
.ws45{word-spacing:4.860000px;}
.wsc1{word-spacing:4.872240px;}
.wsc2{word-spacing:5.065200px;}
.ws72{word-spacing:5.079600px;}
.ws73{word-spacing:5.139360px;}
.ws3e{word-spacing:5.184000px;}
.wsc3{word-spacing:5.499360px;}
.wsee{word-spacing:5.740560px;}
.ws81{word-spacing:5.856480px;}
.ws3f{word-spacing:5.994000px;}
.wsbd{word-spacing:6.035760px;}
.wsef{word-spacing:6.222960px;}
.ws9f{word-spacing:6.394320px;}
.wsd8{word-spacing:6.464160px;}
.ws59{word-spacing:6.573600px;}
.ws86{word-spacing:6.633360px;}
.wsbc{word-spacing:6.932160px;}
.ws9e{word-spacing:6.991920px;}
.wsd7{word-spacing:7.187760px;}
.ws5c{word-spacing:7.290720px;}
.ws46{word-spacing:7.344000px;}
.wsd9{word-spacing:7.670160px;}
.wse7{word-spacing:7.766640px;}
.wsf2{word-spacing:7.911360px;}
.ws70{word-spacing:8.067600px;}
.wsf3{word-spacing:8.345520px;}
.wsac{word-spacing:8.366400px;}
.wse6{word-spacing:8.393760px;}
.ws6f{word-spacing:8.426160px;}
.wsb9{word-spacing:8.665200px;}
.wsbb{word-spacing:8.724960px;}
.ws9d{word-spacing:8.784720px;}
.wsba{word-spacing:8.844480px;}
.wseb{word-spacing:9.262080px;}
.ws91{word-spacing:9.501840px;}
.wsa1{word-spacing:9.561600px;}
.wsec{word-spacing:9.840960px;}
.wsed{word-spacing:10.033920px;}
.wse1{word-spacing:10.082160px;}
.wse0{word-spacing:10.564560px;}
.ws75{word-spacing:10.637280px;}
.wse2{word-spacing:10.757520px;}
.ws4b{word-spacing:10.908000px;}
.ws74{word-spacing:10.936080px;}
.wsaa{word-spacing:11.055600px;}
.wsa9{word-spacing:11.653200px;}
.ws4a{word-spacing:11.664000px;}
.ws87{word-spacing:13.027680px;}
.ws88{word-spacing:13.087440px;}
.ws53{word-spacing:13.206960px;}
.wsf6{word-spacing:13.410720px;}
.wsc0{word-spacing:13.446000px;}
.ws54{word-spacing:13.505760px;}
.ws51{word-spacing:13.804560px;}
.wsf5{word-spacing:14.134320px;}
.wsf7{word-spacing:14.230800px;}
.wsb7{word-spacing:15.955920px;}
.wsb8{word-spacing:16.075440px;}
.wscc{word-spacing:16.305120px;}
.wsce{word-spacing:16.401600px;}
.ws85{word-spacing:16.673040px;}
.wsb5{word-spacing:16.792560px;}
.wscf{word-spacing:17.028720px;}
.wsb4{word-spacing:17.091360px;}
.wsb6{word-spacing:17.210880px;}
.wscd{word-spacing:17.221680px;}
.wsb3{word-spacing:17.390160px;}
.ws7b{word-spacing:19.541520px;}
.wsde{word-spacing:25.760160px;}
.wsdc{word-spacing:25.904880px;}
.wsdd{word-spacing:26.290800px;}
.wsdf{word-spacing:26.483760px;}
.ws3{word-spacing:1361.383800px;}
._5{margin-left:-7.462200px;}
._2{margin-left:-6.211200px;}
._6{margin-left:-4.757400px;}
._1{margin-left:-3.510600px;}
._0{margin-left:-1.791900px;}
._4{width:1.062000px;}
._3{width:2.452800px;}
._a{width:4.369380px;}
._7{width:5.634000px;}
._9{width:6.752880px;}
._b{width:8.632800px;}
._12{width:9.979920px;}
._8{width:11.145600px;}
._11{width:13.698720px;}
._13{width:16.472400px;}
._10{width:17.583120px;}
._14{width:25.864980px;}
._d{width:483.438900px;}
._f{width:513.781200px;}
._e{width:789.342600px;}
._c{width:861.342000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,57,255);}
.fc2{color:rgb(0,158,227);}
.fc1{color:rgb(0,150,189);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs0{font-size:99.000000px;}
.fs4{font-size:99.360000px;}
.fs7{font-size:102.240000px;}
.y43{bottom:-348.866430px;}
.ybb{bottom:-348.866280px;}
.y42{bottom:-333.924090px;}
.yba{bottom:-333.923940px;}
.y41{bottom:-318.800850px;}
.yb9{bottom:-318.800700px;}
.y40{bottom:-303.858510px;}
.yb8{bottom:-303.858360px;}
.y3f{bottom:-288.916170px;}
.yb7{bottom:-288.916020px;}
.y60{bottom:-255.800190px;}
.yd8{bottom:-255.800040px;}
.y5f{bottom:-240.857850px;}
.yd7{bottom:-240.857700px;}
.y5e{bottom:-224.987850px;}
.yd6{bottom:-224.987700px;}
.y5d{bottom:-193.488390px;}
.yd5{bottom:-193.488240px;}
.y5c{bottom:-118.607850px;}
.yd4{bottom:-118.607700px;}
.yd3{bottom:-102.956700px;}
.y5b{bottom:-102.947850px;}
.yd2{bottom:-86.392200px;}
.y5a{bottom:-86.383350px;}
.y1d{bottom:-80.991930px;}
.y9b{bottom:-80.991780px;}
.yd1{bottom:-70.016700px;}
.y59{bottom:-70.007850px;}
.y1c{bottom:-66.049590px;}
.y9a{bottom:-66.049440px;}
.yd0{bottom:-53.452200px;}
.y58{bottom:-53.443350px;}
.y1b{bottom:-50.926350px;}
.y99{bottom:-50.926200px;}
.ycf{bottom:-37.076700px;}
.y57{bottom:-37.067850px;}
.y1a{bottom:-35.984010px;}
.y98{bottom:-35.983860px;}
.ya{bottom:-31.889700px;}
.yce{bottom:-21.376200px;}
.y56{bottom:-21.367350px;}
.y19{bottom:-21.041670px;}
.y97{bottom:-21.041520px;}
.ycd{bottom:-5.891700px;}
.y55{bottom:-5.882850px;}
.y0{bottom:0.000000px;}
.ycc{bottom:10.672800px;}
.yb5{bottom:12.074460px;}
.yb4{bottom:27.016800px;}
.ycb{bottom:27.237300px;}
.y16{bottom:33.315150px;}
.y95{bottom:33.315300px;}
.yb3{bottom:42.886800px;}
.yca{bottom:43.612800px;}
.y11{bottom:50.040150px;}
.y91{bottom:50.040300px;}
.y15{bottom:54.555150px;}
.y94{bottom:54.555300px;}
.yc9{bottom:60.177300px;}
.y9{bottom:67.989900px;}
.yb2{bottom:74.386260px;}
.yc8{bottom:76.741800px;}
.y8{bottom:81.489900px;}
.y14{bottom:88.575150px;}
.y93{bottom:88.575300px;}
.yc7{bottom:93.117300px;}
.y14e{bottom:94.045800px;}
.y7{bottom:94.989900px;}
.y180{bottom:95.267040px;}
.y108{bottom:95.515800px;}
.y6{bottom:108.489900px;}
.y17f{bottom:108.943080px;}
.y14d{bottom:120.992220px;}
.y5{bottom:121.989900px;}
.y107{bottom:122.604780px;}
.y17e{bottom:122.800020px;}
.yc6{bottom:126.057300px;}
.y12{bottom:127.470150px;}
.y92{bottom:127.470300px;}
.y136{bottom:127.876800px;}
.y8f{bottom:128.326650px;}
.y106{bottom:128.326800px;}
.y4{bottom:135.489900px;}
.y17d{bottom:136.656960px;}
.y135{bottom:145.879500px;}
.y8e{bottom:146.329350px;}
.y105{bottom:146.329500px;}
.yb1{bottom:149.266800px;}
.y17c{bottom:150.333000px;}
.y134{bottom:163.882200px;}
.y17b{bottom:164.189940px;}
.y35{bottom:164.917650px;}
.yb0{bottom:164.917800px;}
.yc5{bottom:177.567300px;}
.y17a{bottom:177.865980px;}
.y34{bottom:181.482150px;}
.yaf{bottom:181.482300px;}
.y133{bottom:181.884900px;}
.y8d{bottom:182.334750px;}
.y104{bottom:182.334900px;}
.y179{bottom:191.722920px;}
.yc4{bottom:192.507300px;}
.y33{bottom:197.857650px;}
.yae{bottom:197.857800px;}
.y132{bottom:199.917480px;}
.y178{bottom:205.616040px;}
.yc3{bottom:207.447300px;}
.y32{bottom:214.422150px;}
.yad{bottom:214.422300px;}
.y8c{bottom:218.370030px;}
.y103{bottom:218.370180px;}
.y177{bottom:219.292080px;}
.yc2{bottom:222.567300px;}
.y31{bottom:230.797650px;}
.yac{bottom:230.797800px;}
.y176{bottom:233.149020px;}
.y131{bottom:235.922880px;}
.y8b{bottom:236.372730px;}
.y102{bottom:236.372880px;}
.y30{bottom:246.498150px;}
.yab{bottom:246.498300px;}
.yc1{bottom:246.687300px;}
.y175{bottom:247.005960px;}
.y17{bottom:251.859000px;}
.y8a{bottom:254.375430px;}
.y101{bottom:254.375580px;}
.y174{bottom:260.682000px;}
.y2f{bottom:261.982650px;}
.yaa{bottom:261.982800px;}
.y3a{bottom:263.933310px;}
.y130{bottom:271.928280px;}
.y89{bottom:272.378130px;}
.y100{bottom:272.378280px;}
.y173{bottom:274.538940px;}
.y2e{bottom:278.547150px;}
.ya9{bottom:278.547300px;}
.y39{bottom:278.875650px;}
.y172{bottom:288.395880px;}
.yc0{bottom:288.628740px;}
.y12f{bottom:289.930980px;}
.y88{bottom:290.380830px;}
.yff{bottom:290.380980px;}
.y38{bottom:294.745650px;}
.y2d{bottom:295.111650px;}
.ya8{bottom:295.111800px;}
.y171{bottom:302.071920px;}
.y12e{bottom:307.933680px;}
.y87{bottom:308.383530px;}
.yfe{bottom:308.383680px;}
.y2c{bottom:311.487150px;}
.ya7{bottom:311.487300px;}
.y170{bottom:315.928860px;}
.ybf{bottom:318.687300px;}
.y12d{bottom:325.936380px;}
.y37{bottom:326.245650px;}
.y86{bottom:326.386230px;}
.yfd{bottom:326.386380px;}
.y2b{bottom:328.051650px;}
.ya6{bottom:328.051800px;}
.y16f{bottom:329.785800px;}
.y12c{bottom:343.939080px;}
.y85{bottom:344.388930px;}
.yfc{bottom:344.389080px;}
.y2a{bottom:344.616150px;}
.ya5{bottom:344.616300px;}
.y29{bottom:360.991650px;}
.ya4{bottom:360.991800px;}
.y12b{bottom:361.941780px;}
.y16e{bottom:362.091780px;}
.y84{bottom:362.391630px;}
.yfb{bottom:362.391780px;}
.ybe{bottom:364.236300px;}
.y12a{bottom:379.944480px;}
.y83{bottom:380.394330px;}
.yfa{bottom:380.394480px;}
.y1ae{bottom:381.725340px;}
.ybd{bottom:382.272300px;}
.y28{bottom:393.931650px;}
.ya3{bottom:393.931800px;}
.y129{bottom:397.947180px;}
.y16d{bottom:398.097180px;}
.y82{bottom:398.397030px;}
.yf9{bottom:398.397180px;}
.y1ad{bottom:399.055560px;}
.ybc{bottom:400.272300px;}
.y36{bottom:401.125650px;}
.y1ac{bottom:412.912500px;}
.y128{bottom:415.994700px;}
.y16c{bottom:416.144700px;}
.y81{bottom:416.444550px;}
.yf8{bottom:416.444700px;}
.y14c{bottom:419.866920px;}
.yf{bottom:426.547800px;}
.y1ab{bottom:426.769440px;}
.y127{bottom:433.997400px;}
.y80{bottom:434.447250px;}
.yf7{bottom:434.447400px;}
.y3e{bottom:435.552150px;}
.yb6{bottom:435.552300px;}
.y14b{bottom:437.869620px;}
.y1aa{bottom:440.445480px;}
.ye{bottom:441.547800px;}
.y27{bottom:445.441650px;}
.ya2{bottom:445.441800px;}
.y126{bottom:452.000100px;}
.y16b{bottom:452.150100px;}
.y7f{bottom:452.449950px;}
.yf6{bottom:452.450100px;}
.y1a9{bottom:454.302420px;}
.y14a{bottom:455.872320px;}
.yd{bottom:456.547800px;}
.y26{bottom:460.381650px;}
.ya1{bottom:460.381800px;}
.y1a8{bottom:468.159360px;}
.y125{bottom:470.002800px;}
.y7e{bottom:470.452650px;}
.yf5{bottom:470.452800px;}
.yc{bottom:471.547800px;}
.y149{bottom:473.875020px;}
.y25{bottom:475.321650px;}
.ya0{bottom:475.321800px;}
.y1a7{bottom:481.835400px;}
.yb{bottom:486.547800px;}
.y124{bottom:488.005500px;}
.y16a{bottom:488.155500px;}
.y7d{bottom:488.455350px;}
.yf4{bottom:488.455500px;}
.y24{bottom:490.441650px;}
.y9f{bottom:490.441800px;}
.y148{bottom:491.877720px;}
.y1a6{bottom:495.692340px;}
.y3d{bottom:501.733500px;}
.y123{bottom:506.008200px;}
.y169{bottom:506.158200px;}
.y7c{bottom:506.458050px;}
.yf3{bottom:506.458200px;}
.y1a5{bottom:509.549280px;}
.y147{bottom:509.880420px;}
.y54{bottom:512.406150px;}
.y23{bottom:514.561650px;}
.y9e{bottom:514.561800px;}
.y1a4{bottom:523.225320px;}
.y122{bottom:524.010900px;}
.y168{bottom:524.160900px;}
.y7b{bottom:524.460750px;}
.yf2{bottom:524.460900px;}
.y146{bottom:527.883120px;}
.y53{bottom:528.970650px;}
.y1a3{bottom:537.082260px;}
.y121{bottom:542.013600px;}
.y167{bottom:542.163600px;}
.y7a{bottom:542.463450px;}
.yf1{bottom:542.463600px;}
.y52{bottom:545.346150px;}
.y145{bottom:545.885820px;}
.y1a2{bottom:550.939200px;}
.y22{bottom:556.503090px;}
.y9d{bottom:556.503240px;}
.y120{bottom:560.016300px;}
.y166{bottom:560.166300px;}
.y79{bottom:560.466150px;}
.yf0{bottom:560.466300px;}
.y51{bottom:561.910650px;}
.y144{bottom:563.888520px;}
.y1a1{bottom:564.615240px;}
.y11f{bottom:578.019000px;}
.y165{bottom:578.169000px;}
.y78{bottom:578.468850px;}
.yef{bottom:578.469000px;}
.y1a0{bottom:578.472180px;}
.y50{bottom:578.475150px;}
.y21{bottom:586.561650px;}
.y9c{bottom:586.561800px;}
.y19f{bottom:592.329120px;}
.y4f{bottom:594.850650px;}
.y11e{bottom:596.021700px;}
.y164{bottom:596.171700px;}
.y77{bottom:596.471550px;}
.yee{bottom:596.471700px;}
.y143{bottom:599.893920px;}
.y19e{bottom:606.041340px;}
.y11d{bottom:614.054280px;}
.y163{bottom:614.204280px;}
.y76{bottom:614.504130px;}
.yed{bottom:614.504280px;}
.y19d{bottom:619.898280px;}
.y4e{bottom:627.790650px;}
.y11c{bottom:632.056980px;}
.y20{bottom:632.110800px;}
.y162{bottom:632.206980px;}
.y75{bottom:632.506830px;}
.yec{bottom:632.506980px;}
.y19c{bottom:633.755220px;}
.y142{bottom:635.929200px;}
.y19b{bottom:647.431260px;}
.y11b{bottom:650.059680px;}
.y1f{bottom:650.146800px;}
.y161{bottom:650.209680px;}
.y74{bottom:650.509530px;}
.yeb{bottom:650.509680px;}
.y141{bottom:653.931900px;}
.y19a{bottom:661.288200px;}
.y11a{bottom:668.062380px;}
.y1e{bottom:668.146800px;}
.y160{bottom:668.212380px;}
.y73{bottom:668.512230px;}
.yea{bottom:668.512380px;}
.y140{bottom:671.934600px;}
.y199{bottom:675.145140px;}
.y4d{bottom:679.300650px;}
.y119{bottom:686.065080px;}
.y15f{bottom:686.215080px;}
.y72{bottom:686.514930px;}
.ye9{bottom:686.515080px;}
.y198{bottom:688.821180px;}
.y13f{bottom:689.937300px;}
.y4c{bottom:694.240650px;}
.y197{bottom:702.678120px;}
.y18{bottom:703.426650px;}
.y96{bottom:703.426800px;}
.y118{bottom:704.067780px;}
.y15e{bottom:704.217780px;}
.y71{bottom:704.517630px;}
.ye8{bottom:704.517780px;}
.y13e{bottom:707.940000px;}
.y4b{bottom:709.180650px;}
.y196{bottom:716.535060px;}
.y117{bottom:722.070480px;}
.y15d{bottom:722.220480px;}
.y70{bottom:722.520330px;}
.ye7{bottom:722.520480px;}
.y4a{bottom:724.300650px;}
.y13d{bottom:725.942700px;}
.y195{bottom:730.211100px;}
.y116{bottom:740.073180px;}
.y15c{bottom:740.223180px;}
.y6f{bottom:740.523030px;}
.ye6{bottom:740.523180px;}
.y13c{bottom:743.945400px;}
.y194{bottom:744.068040px;}
.y49{bottom:748.420650px;}
.y193{bottom:757.924980px;}
.y115{bottom:758.075880px;}
.y15b{bottom:758.225880px;}
.y6e{bottom:758.525730px;}
.ye5{bottom:758.525880px;}
.y13b{bottom:761.948100px;}
.y192{bottom:771.601020px;}
.y114{bottom:776.078580px;}
.y15a{bottom:776.228580px;}
.y6d{bottom:776.528430px;}
.ye4{bottom:776.528580px;}
.y13a{bottom:779.950800px;}
.y191{bottom:785.457960px;}
.y48{bottom:790.362090px;}
.y113{bottom:794.081280px;}
.y159{bottom:794.231280px;}
.y6c{bottom:794.531130px;}
.ye3{bottom:794.531280px;}
.y190{bottom:799.314900px;}
.y112{bottom:812.128800px;}
.y6b{bottom:812.578650px;}
.ye2{bottom:812.578800px;}
.y18f{bottom:813.039180px;}
.y139{bottom:815.455800px;}
.y47{bottom:820.420650px;}
.y18e{bottom:826.896120px;}
.y111{bottom:830.131500px;}
.y158{bottom:830.281500px;}
.y6a{bottom:830.581350px;}
.ye1{bottom:830.581500px;}
.y18d{bottom:840.572160px;}
.y138{bottom:842.455800px;}
.y110{bottom:848.134200px;}
.y69{bottom:848.584050px;}
.ye0{bottom:848.584200px;}
.y18c{bottom:854.429100px;}
.y46{bottom:865.969800px;}
.y10f{bottom:866.136900px;}
.y157{bottom:866.286900px;}
.y68{bottom:866.586750px;}
.ydf{bottom:866.586900px;}
.y18b{bottom:868.286040px;}
.y18a{bottom:881.962080px;}
.y45{bottom:884.005800px;}
.y10e{bottom:884.139600px;}
.y156{bottom:884.289600px;}
.y67{bottom:884.589450px;}
.yde{bottom:884.589600px;}
.y189{bottom:895.819020px;}
.y44{bottom:902.005800px;}
.y155{bottom:902.292300px;}
.y66{bottom:902.592150px;}
.ydd{bottom:902.592300px;}
.y188{bottom:909.675960px;}
.y10d{bottom:920.145000px;}
.y154{bottom:920.295000px;}
.y65{bottom:920.594850px;}
.ydc{bottom:920.595000px;}
.y187{bottom:923.352000px;}
.y186{bottom:937.208940px;}
.y153{bottom:938.297700px;}
.y64{bottom:938.597550px;}
.ydb{bottom:938.597700px;}
.y185{bottom:951.065880px;}
.y10c{bottom:956.150400px;}
.y152{bottom:956.300400px;}
.y63{bottom:956.600250px;}
.yda{bottom:956.600400px;}
.y3{bottom:961.130850px;}
.y184{bottom:964.741920px;}
.y3c{bottom:970.390500px;}
.y3b{bottom:970.405500px;}
.y10b{bottom:974.153100px;}
.y151{bottom:974.303100px;}
.y183{bottom:978.598860px;}
.y13{bottom:988.390500px;}
.y10{bottom:988.405500px;}
.y1{bottom:988.999500px;}
.y10a{bottom:992.155800px;}
.y150{bottom:992.305800px;}
.y182{bottom:992.455800px;}
.y62{bottom:992.605650px;}
.yd9{bottom:992.605800px;}
.y181{bottom:1024.165800px;}
.y109{bottom:1027.465800px;}
.y14f{bottom:1027.615800px;}
.y61{bottom:1027.915800px;}
.y137{bottom:1029.865800px;}
.y2{bottom:1033.378950px;}
.y90{bottom:1035.561750px;}
.h7{height:-571.570500px;}
.ha{height:-571.555500px;}
.h17{height:-43.605000px;}
.h18{height:-43.590000px;}
.h8{height:20.996719px;}
.h4{height:33.351562px;}
.hd{height:33.494766px;}
.hc{height:34.625391px;}
.h5{height:36.000000px;}
.h13{height:36.597656px;}
.h6{height:37.520508px;}
.h9{height:38.654297px;}
.h3{height:38.664000px;}
.h14{height:38.759766px;}
.h1b{height:40.501406px;}
.h1c{height:41.493516px;}
.h1d{height:42.777422px;}
.h16{height:42.894141px;}
.h15{height:43.839844px;}
.hf{height:51.679688px;}
.h12{height:55.814063px;}
.h11{height:64.052578px;}
.hb{height:66.223828px;}
.h10{height:73.385156px;}
.h2{height:74.646000px;}
.he{height:164.976000px;}
.h19{height:425.067000px;}
.h21{height:1009.446000px;}
.h1e{height:1012.321500px;}
.h20{height:1012.897500px;}
.h1a{height:1013.196000px;}
.h1f{height:1014.721500px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w9{width:-656.622000px;}
.wa{width:-229.383000px;}
.wb{width:-48.978000px;}
.w8{width:1.500000px;}
.wc{width:1.602000px;}
.w2{width:94.896000px;}
.w4{width:180.390000px;}
.w5{width:180.405000px;}
.w3{width:427.230000px;}
.w7{width:814.854000px;}
.w6{width:814.878000px;}
.wd{width:814.980000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x2d{left:-759.618000px;}
.x31{left:-754.757850px;}
.x2f{left:-753.300000px;}
.x39{left:-750.618000px;}
.x3f{left:-748.998000px;}
.x3a{left:-741.621240px;}
.x2e{left:-729.702000px;}
.x38{left:-693.517140px;}
.x36{left:-678.401850px;}
.x27{left:-666.882000px;}
.x37{left:-639.708000px;}
.x35{left:-628.548000px;}
.x30{left:-608.544000px;}
.x34{left:-606.588000px;}
.x48{left:-598.847850px;}
.x32{left:-588.771210px;}
.x46{left:-585.167850px;}
.x28{left:-570.182850px;}
.x2a{left:-557.222850px;}
.x33{left:-541.022850px;}
.x29{left:-539.583000px;}
.x40{left:-537.423000px;}
.x2c{left:-229.727850px;}
.x45{left:-164.208000px;}
.x47{left:-124.058880px;}
.x2b{left:-58.157850px;}
.x0{left:0.000000px;}
.xe{left:1.500000px;}
.x5{left:56.125950px;}
.x4{left:58.401900px;}
.x11{left:60.120000px;}
.xf{left:61.578000px;}
.x1c{left:63.078000px;}
.x6{left:64.860000px;}
.x3c{left:65.880000px;}
.x24{left:73.256760px;}
.x1b{left:74.756760px;}
.x3b{left:75.903420px;}
.x26{left:77.403270px;}
.x7{left:84.636000px;}
.x9{left:86.430000px;}
.x49{left:90.552120px;}
.xb{left:99.390000px;}
.xa{left:117.030000px;}
.x23{left:121.360860px;}
.x1a{left:122.856000px;}
.x18{left:136.476000px;}
.x21{left:137.976000px;}
.x8{left:159.765000px;}
.xd{left:171.210000px;}
.x19{left:175.170000px;}
.x22{left:176.670000px;}
.x17{left:186.330000px;}
.x20{left:187.830000px;}
.x10{left:206.334000px;}
.x16{left:208.290000px;}
.x1f{left:209.790000px;}
.x44{left:217.530000px;}
.x12{left:226.106640px;}
.x1d{left:227.606640px;}
.x42{left:231.210000px;}
.x2{left:236.123100px;}
.x3{left:254.268750px;}
.x13{left:273.855000px;}
.x1e{left:275.355000px;}
.x3e{left:278.955000px;}
.x1{left:292.179600px;}
.x14{left:401.092500px;}
.x15{left:410.865000px;}
.xc{left:587.010000px;}
.x41{left:652.170000px;}
.x43{left:692.319120px;}
.x3d{left:758.760720px;}
.x25{left:814.878000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v1{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls51{letter-spacing:-1.457920pt;}
.ls4b{letter-spacing:-1.221760pt;}
.ls52{letter-spacing:-1.029120pt;}
.ls3d{letter-spacing:-1.009280pt;}
.ls3a{letter-spacing:-0.956160pt;}
.ls29{letter-spacing:-0.900480pt;}
.ls23{letter-spacing:-0.857600pt;}
.ls31{letter-spacing:-0.814720pt;}
.ls2e{letter-spacing:-0.720000pt;}
.ls4a{letter-spacing:-0.690560pt;}
.ls2c{letter-spacing:-0.686080pt;}
.ls54{letter-spacing:-0.643200pt;}
.ls3f{letter-spacing:-0.584320pt;}
.ls36{letter-spacing:-0.531200pt;}
.ls38{letter-spacing:-0.478080pt;}
.ls21{letter-spacing:-0.471680pt;}
.ls1e{letter-spacing:-0.426667pt;}
.ls3c{letter-spacing:-0.424960pt;}
.ls26{letter-spacing:-0.385920pt;}
.ls35{letter-spacing:-0.371840pt;}
.ls32{letter-spacing:-0.318720pt;}
.ls22{letter-spacing:-0.300160pt;}
.ls25{letter-spacing:-0.257280pt;}
.ls2b{letter-spacing:-0.214400pt;}
.ls37{letter-spacing:-0.212480pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls3b{letter-spacing:-0.159360pt;}
.ls30{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.053120pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.000533pt;}
.ls1c{letter-spacing:0.053120pt;}
.ls10{letter-spacing:0.106240pt;}
.ls20{letter-spacing:0.128640pt;}
.ls2a{letter-spacing:0.136320pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls11{letter-spacing:0.159360pt;}
.ls4{letter-spacing:0.171520pt;}
.ls16{letter-spacing:0.212480pt;}
.ls28{letter-spacing:0.214400pt;}
.ls7{letter-spacing:0.225280pt;}
.ls24{letter-spacing:0.257280pt;}
.ls33{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.272640pt;}
.ls9{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.300160pt;}
.ls15{letter-spacing:0.318720pt;}
.ls4f{letter-spacing:0.321600pt;}
.lsc{letter-spacing:0.336000pt;}
.ls27{letter-spacing:0.343040pt;}
.ls4d{letter-spacing:0.471680pt;}
.ls3e{letter-spacing:0.584320pt;}
.ls34{letter-spacing:0.690560pt;}
.ls17{letter-spacing:0.796800pt;}
.ls3{letter-spacing:0.814720pt;}
.ls2f{letter-spacing:0.816000pt;}
.ls5{letter-spacing:0.900480pt;}
.ls50{letter-spacing:0.956160pt;}
.ls1{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.200000pt;}
.ls44{letter-spacing:1.434240pt;}
.lsa{letter-spacing:1.440000pt;}
.lsf{letter-spacing:2.071680pt;}
.ls43{letter-spacing:2.177920pt;}
.ls14{letter-spacing:2.709120pt;}
.ls45{letter-spacing:2.868480pt;}
.ls47{letter-spacing:3.346560pt;}
.ls13{letter-spacing:3.984000pt;}
.ls53{letter-spacing:3.987840pt;}
.ls1a{letter-spacing:4.621440pt;}
.ls8{letter-spacing:4.656000pt;}
.ls4e{letter-spacing:5.258880pt;}
.ls12{letter-spacing:5.896320pt;}
.lsb{letter-spacing:6.576000pt;}
.ls18{letter-spacing:7.224320pt;}
.ls19{letter-spacing:7.330560pt;}
.ls4c{letter-spacing:7.861760pt;}
.ls46{letter-spacing:8.499200pt;}
.ls49{letter-spacing:9.774080pt;}
.ls42{letter-spacing:11.686400pt;}
.lse{letter-spacing:12.323840pt;}
.ls48{letter-spacing:12.483200pt;}
.ls1b{letter-spacing:17.423360pt;}
.lsd{letter-spacing:521.206400pt;}
.ls41{letter-spacing:542.346240pt;}
.ws6{word-spacing:-88.320000pt;}
.wsae{word-spacing:-14.236160pt;}
.ws2{word-spacing:-14.208000pt;}
.ws1f{word-spacing:-13.970560pt;}
.ws83{word-spacing:-13.864320pt;}
.ws1c{word-spacing:-13.598720pt;}
.ws28{word-spacing:-13.545600pt;}
.ws20{word-spacing:-13.492480pt;}
.ws5{word-spacing:-13.488000pt;}
.ws22{word-spacing:-13.439360pt;}
.ws84{word-spacing:-13.386240pt;}
.ws1{word-spacing:-13.344000pt;}
.ws1d{word-spacing:-13.333120pt;}
.ws23{word-spacing:-13.280000pt;}
.ws26{word-spacing:-13.226880pt;}
.ws27{word-spacing:-13.120640pt;}
.ws25{word-spacing:-13.067520pt;}
.ws1e{word-spacing:-12.961280pt;}
.ws21{word-spacing:-12.908160pt;}
.ws2a{word-spacing:-12.855040pt;}
.ws17{word-spacing:-12.816000pt;}
.ws24{word-spacing:-12.748800pt;}
.ws2b{word-spacing:-12.695680pt;}
.ws19{word-spacing:-12.336000pt;}
.ws14{word-spacing:-12.288000pt;}
.ws29{word-spacing:-12.270720pt;}
.ws4{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.808000pt;}
.wsf{word-spacing:-11.632640pt;}
.ws10{word-spacing:-11.496320pt;}
.ws16{word-spacing:-11.280000pt;}
.wsc{word-spacing:-11.063040pt;}
.wsd{word-spacing:-10.977280pt;}
.ws1b{word-spacing:-10.934400pt;}
.wsb0{word-spacing:-10.891520pt;}
.ws9{word-spacing:-10.848640pt;}
.ws7{word-spacing:-10.720000pt;}
.ws82{word-spacing:-10.666667pt;}
.ws12{word-spacing:-10.505600pt;}
.wsa{word-spacing:-10.462720pt;}
.ws8{word-spacing:-10.419840pt;}
.wsb{word-spacing:-10.334080pt;}
.wse{word-spacing:-10.248320pt;}
.ws13{word-spacing:-10.033920pt;}
.wsd2{word-spacing:-9.905280pt;}
.wsaf{word-spacing:-9.262080pt;}
.ws15{word-spacing:-8.000000pt;}
.ws11{word-spacing:-6.720000pt;}
.ws97{word-spacing:-3.027840pt;}
.wsf1{word-spacing:-2.658560pt;}
.wsbf{word-spacing:-2.496640pt;}
.wsa5{word-spacing:-2.443520pt;}
.ws7a{word-spacing:-2.390400pt;}
.ws8f{word-spacing:-2.284160pt;}
.wse8{word-spacing:-2.101120pt;}
.ws7e{word-spacing:-2.018560pt;}
.wse9{word-spacing:-2.015360pt;}
.wse5{word-spacing:-1.929600pt;}
.wsd3{word-spacing:-1.886720pt;}
.ws7f{word-spacing:-1.859200pt;}
.ws5b{word-spacing:-1.806080pt;}
.ws4c{word-spacing:-1.776000pt;}
.ws5d{word-spacing:-1.752960pt;}
.wsbe{word-spacing:-1.646720pt;}
.wsd6{word-spacing:-1.457920pt;}
.ws90{word-spacing:-1.434240pt;}
.ws96{word-spacing:-1.381120pt;}
.wsea{word-spacing:-1.243520pt;}
.ws95{word-spacing:-1.221760pt;}
.ws6a{word-spacing:-1.168640pt;}
.ws5a{word-spacing:-1.115520pt;}
.ws4e{word-spacing:-1.104000pt;}
.ws89{word-spacing:-1.009280pt;}
.ws4d{word-spacing:-1.008000pt;}
.ws94{word-spacing:-0.956160pt;}
.wsd4{word-spacing:-0.814720pt;}
.wsa2{word-spacing:-0.796800pt;}
.ws92{word-spacing:-0.743680pt;}
.ws3a{word-spacing:-0.728960pt;}
.ws9b{word-spacing:-0.690560pt;}
.wsf4{word-spacing:-0.686080pt;}
.wsd5{word-spacing:-0.643200pt;}
.ws3c{word-spacing:-0.600320pt;}
.ws80{word-spacing:-0.584320pt;}
.ws9c{word-spacing:-0.531200pt;}
.wsf0{word-spacing:-0.514560pt;}
.wsa3{word-spacing:-0.478080pt;}
.ws39{word-spacing:-0.471680pt;}
.wsa4{word-spacing:-0.371840pt;}
.wsc4{word-spacing:-0.343040pt;}
.ws47{word-spacing:-0.288000pt;}
.wsa0{word-spacing:-0.265600pt;}
.ws4f{word-spacing:-0.257280pt;}
.ws3b{word-spacing:-0.171520pt;}
.ws52{word-spacing:-0.159360pt;}
.ws2e{word-spacing:-0.144000pt;}
.ws2f{word-spacing:-0.128640pt;}
.ws67{word-spacing:-0.106240pt;}
.ws0{word-spacing:-0.088000pt;}
.ws34{word-spacing:-0.085760pt;}
.ws2c{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.053120pt;}
.ws48{word-spacing:0.096000pt;}
.ws69{word-spacing:0.106240pt;}
.ws66{word-spacing:0.159360pt;}
.ws38{word-spacing:0.181760pt;}
.ws3d{word-spacing:0.192000pt;}
.ws6b{word-spacing:0.212480pt;}
.wsfa{word-spacing:0.214400pt;}
.ws37{word-spacing:0.272640pt;}
.ws49{word-spacing:0.288000pt;}
.ws36{word-spacing:0.300160pt;}
.ws60{word-spacing:0.318720pt;}
.ws58{word-spacing:0.371840pt;}
.ws33{word-spacing:0.385920pt;}
.ws77{word-spacing:0.424960pt;}
.ws2d{word-spacing:0.426667pt;}
.ws31{word-spacing:0.428800pt;}
.ws99{word-spacing:0.471680pt;}
.ws5f{word-spacing:0.478080pt;}
.wsc8{word-spacing:0.514560pt;}
.wse4{word-spacing:0.557440pt;}
.ws9a{word-spacing:0.584320pt;}
.ws30{word-spacing:0.600320pt;}
.wsa8{word-spacing:0.637440pt;}
.wsf9{word-spacing:0.643200pt;}
.ws79{word-spacing:0.690560pt;}
.ws68{word-spacing:0.743680pt;}
.ws50{word-spacing:0.814720pt;}
.ws71{word-spacing:0.849920pt;}
.ws35{word-spacing:0.900480pt;}
.wsb1{word-spacing:0.943360pt;}
.ws65{word-spacing:0.956160pt;}
.ws32{word-spacing:0.986240pt;}
.ws6d{word-spacing:1.009280pt;}
.wsc5{word-spacing:1.029120pt;}
.ws78{word-spacing:1.062400pt;}
.wsca{word-spacing:1.072000pt;}
.ws6e{word-spacing:1.168640pt;}
.wsad{word-spacing:1.221760pt;}
.wse3{word-spacing:1.243520pt;}
.ws76{word-spacing:1.381120pt;}
.ws41{word-spacing:1.392000pt;}
.wsab{word-spacing:1.487360pt;}
.ws40{word-spacing:1.584000pt;}
.wsc9{word-spacing:1.715200pt;}
.wscb{word-spacing:1.800960pt;}
.ws62{word-spacing:1.912320pt;}
.ws56{word-spacing:1.965440pt;}
.ws43{word-spacing:2.016000pt;}
.ws55{word-spacing:2.018560pt;}
.ws61{word-spacing:2.124800pt;}
.ws7d{word-spacing:2.337280pt;}
.wsf8{word-spacing:2.358400pt;}
.ws44{word-spacing:2.400000pt;}
.wsd0{word-spacing:2.401280pt;}
.wsc7{word-spacing:2.444160pt;}
.ws93{word-spacing:2.602880pt;}
.ws57{word-spacing:2.656000pt;}
.ws98{word-spacing:2.709120pt;}
.ws42{word-spacing:2.736000pt;}
.ws6c{word-spacing:2.762240pt;}
.wsc6{word-spacing:2.958720pt;}
.wsb2{word-spacing:2.974720pt;}
.ws63{word-spacing:3.027840pt;}
.wsd1{word-spacing:3.130240pt;}
.wsa7{word-spacing:3.134080pt;}
.ws8c{word-spacing:3.240320pt;}
.ws64{word-spacing:3.293440pt;}
.wsa6{word-spacing:3.399680pt;}
.ws8d{word-spacing:3.612160pt;}
.wsda{word-spacing:3.687680pt;}
.ws8e{word-spacing:3.718400pt;}
.ws5e{word-spacing:3.877760pt;}
.ws8a{word-spacing:3.930880pt;}
.wsdb{word-spacing:4.245120pt;}
.ws8b{word-spacing:4.249600pt;}
.ws45{word-spacing:4.320000pt;}
.wsc1{word-spacing:4.330880pt;}
.wsc2{word-spacing:4.502400pt;}
.ws72{word-spacing:4.515200pt;}
.ws73{word-spacing:4.568320pt;}
.ws3e{word-spacing:4.608000pt;}
.wsc3{word-spacing:4.888320pt;}
.wsee{word-spacing:5.102720pt;}
.ws81{word-spacing:5.205760pt;}
.ws3f{word-spacing:5.328000pt;}
.wsbd{word-spacing:5.365120pt;}
.wsef{word-spacing:5.531520pt;}
.ws9f{word-spacing:5.683840pt;}
.wsd8{word-spacing:5.745920pt;}
.ws59{word-spacing:5.843200pt;}
.ws86{word-spacing:5.896320pt;}
.wsbc{word-spacing:6.161920pt;}
.ws9e{word-spacing:6.215040pt;}
.wsd7{word-spacing:6.389120pt;}
.ws5c{word-spacing:6.480640pt;}
.ws46{word-spacing:6.528000pt;}
.wsd9{word-spacing:6.817920pt;}
.wse7{word-spacing:6.903680pt;}
.wsf2{word-spacing:7.032320pt;}
.ws70{word-spacing:7.171200pt;}
.wsf3{word-spacing:7.418240pt;}
.wsac{word-spacing:7.436800pt;}
.wse6{word-spacing:7.461120pt;}
.ws6f{word-spacing:7.489920pt;}
.wsb9{word-spacing:7.702400pt;}
.wsbb{word-spacing:7.755520pt;}
.ws9d{word-spacing:7.808640pt;}
.wsba{word-spacing:7.861760pt;}
.wseb{word-spacing:8.232960pt;}
.ws91{word-spacing:8.446080pt;}
.wsa1{word-spacing:8.499200pt;}
.wsec{word-spacing:8.747520pt;}
.wsed{word-spacing:8.919040pt;}
.wse1{word-spacing:8.961920pt;}
.wse0{word-spacing:9.390720pt;}
.ws75{word-spacing:9.455360pt;}
.wse2{word-spacing:9.562240pt;}
.ws4b{word-spacing:9.696000pt;}
.ws74{word-spacing:9.720960pt;}
.wsaa{word-spacing:9.827200pt;}
.wsa9{word-spacing:10.358400pt;}
.ws4a{word-spacing:10.368000pt;}
.ws87{word-spacing:11.580160pt;}
.ws88{word-spacing:11.633280pt;}
.ws53{word-spacing:11.739520pt;}
.wsf6{word-spacing:11.920640pt;}
.wsc0{word-spacing:11.952000pt;}
.ws54{word-spacing:12.005120pt;}
.ws51{word-spacing:12.270720pt;}
.wsf5{word-spacing:12.563840pt;}
.wsf7{word-spacing:12.649600pt;}
.wsb7{word-spacing:14.183040pt;}
.wsb8{word-spacing:14.289280pt;}
.wscc{word-spacing:14.493440pt;}
.wsce{word-spacing:14.579200pt;}
.ws85{word-spacing:14.820480pt;}
.wsb5{word-spacing:14.926720pt;}
.wscf{word-spacing:15.136640pt;}
.wsb4{word-spacing:15.192320pt;}
.wsb6{word-spacing:15.298560pt;}
.wscd{word-spacing:15.308160pt;}
.wsb3{word-spacing:15.457920pt;}
.ws7b{word-spacing:17.370240pt;}
.wsde{word-spacing:22.897920pt;}
.wsdc{word-spacing:23.026560pt;}
.wsdd{word-spacing:23.369600pt;}
.wsdf{word-spacing:23.541120pt;}
.ws3{word-spacing:1210.118933pt;}
._5{margin-left:-6.633067pt;}
._2{margin-left:-5.521067pt;}
._6{margin-left:-4.228800pt;}
._1{margin-left:-3.120533pt;}
._0{margin-left:-1.592800pt;}
._4{width:0.944000pt;}
._3{width:2.180267pt;}
._a{width:3.883893pt;}
._7{width:5.008000pt;}
._9{width:6.002560pt;}
._b{width:7.673600pt;}
._12{width:8.871040pt;}
._8{width:9.907200pt;}
._11{width:12.176640pt;}
._13{width:14.642133pt;}
._10{width:15.629440pt;}
._14{width:22.991093pt;}
._d{width:429.723467pt;}
._f{width:456.694400pt;}
._e{width:701.637867pt;}
._c{width:765.637333pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs0{font-size:88.000000pt;}
.fs4{font-size:88.320000pt;}
.fs7{font-size:90.880000pt;}
.y43{bottom:-310.103493pt;}
.ybb{bottom:-310.103360pt;}
.y42{bottom:-296.821413pt;}
.yba{bottom:-296.821280pt;}
.y41{bottom:-283.378533pt;}
.yb9{bottom:-283.378400pt;}
.y40{bottom:-270.096453pt;}
.yb8{bottom:-270.096320pt;}
.y3f{bottom:-256.814373pt;}
.yb7{bottom:-256.814240pt;}
.y60{bottom:-227.377947pt;}
.yd8{bottom:-227.377813pt;}
.y5f{bottom:-214.095867pt;}
.yd7{bottom:-214.095733pt;}
.y5e{bottom:-199.989200pt;}
.yd6{bottom:-199.989067pt;}
.y5d{bottom:-171.989680pt;}
.yd5{bottom:-171.989547pt;}
.y5c{bottom:-105.429200pt;}
.yd4{bottom:-105.429067pt;}
.yd3{bottom:-91.517067pt;}
.y5b{bottom:-91.509200pt;}
.yd2{bottom:-76.793067pt;}
.y5a{bottom:-76.785200pt;}
.y1d{bottom:-71.992827pt;}
.y9b{bottom:-71.992693pt;}
.yd1{bottom:-62.237067pt;}
.y59{bottom:-62.229200pt;}
.y1c{bottom:-58.710747pt;}
.y9a{bottom:-58.710613pt;}
.yd0{bottom:-47.513067pt;}
.y58{bottom:-47.505200pt;}
.y1b{bottom:-45.267867pt;}
.y99{bottom:-45.267733pt;}
.ycf{bottom:-32.957067pt;}
.y57{bottom:-32.949200pt;}
.y1a{bottom:-31.985787pt;}
.y98{bottom:-31.985653pt;}
.ya{bottom:-28.346400pt;}
.yce{bottom:-19.001067pt;}
.y56{bottom:-18.993200pt;}
.y19{bottom:-18.703707pt;}
.y97{bottom:-18.703573pt;}
.ycd{bottom:-5.237067pt;}
.y55{bottom:-5.229200pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:9.486933pt;}
.yb5{bottom:10.732853pt;}
.yb4{bottom:24.014933pt;}
.ycb{bottom:24.210933pt;}
.y16{bottom:29.613467pt;}
.y95{bottom:29.613600pt;}
.yb3{bottom:38.121600pt;}
.yca{bottom:38.766933pt;}
.y11{bottom:44.480133pt;}
.y91{bottom:44.480267pt;}
.y15{bottom:48.493467pt;}
.y94{bottom:48.493600pt;}
.yc9{bottom:53.490933pt;}
.y9{bottom:60.435467pt;}
.yb2{bottom:66.121120pt;}
.yc8{bottom:68.214933pt;}
.y8{bottom:72.435467pt;}
.y14{bottom:78.733467pt;}
.y93{bottom:78.733600pt;}
.yc7{bottom:82.770933pt;}
.y14e{bottom:83.596267pt;}
.y7{bottom:84.435467pt;}
.y180{bottom:84.681813pt;}
.y108{bottom:84.902933pt;}
.y6{bottom:96.435467pt;}
.y17f{bottom:96.838293pt;}
.y14d{bottom:107.548640pt;}
.y5{bottom:108.435467pt;}
.y107{bottom:108.982027pt;}
.y17e{bottom:109.155573pt;}
.yc6{bottom:112.050933pt;}
.y12{bottom:113.306800pt;}
.y92{bottom:113.306933pt;}
.y136{bottom:113.668267pt;}
.y8f{bottom:114.068133pt;}
.y106{bottom:114.068267pt;}
.y4{bottom:120.435467pt;}
.y17d{bottom:121.472853pt;}
.y135{bottom:129.670667pt;}
.y8e{bottom:130.070533pt;}
.y105{bottom:130.070667pt;}
.yb1{bottom:132.681600pt;}
.y17c{bottom:133.629333pt;}
.y134{bottom:145.673067pt;}
.y17b{bottom:145.946613pt;}
.y35{bottom:146.593467pt;}
.yb0{bottom:146.593600pt;}
.yc5{bottom:157.837600pt;}
.y17a{bottom:158.103093pt;}
.y34{bottom:161.317467pt;}
.yaf{bottom:161.317600pt;}
.y133{bottom:161.675467pt;}
.y8d{bottom:162.075333pt;}
.y104{bottom:162.075467pt;}
.y179{bottom:170.420373pt;}
.yc4{bottom:171.117600pt;}
.y33{bottom:175.873467pt;}
.yae{bottom:175.873600pt;}
.y132{bottom:177.704427pt;}
.y178{bottom:182.769813pt;}
.yc3{bottom:184.397600pt;}
.y32{bottom:190.597467pt;}
.yad{bottom:190.597600pt;}
.y8c{bottom:194.106693pt;}
.y103{bottom:194.106827pt;}
.y177{bottom:194.926293pt;}
.yc2{bottom:197.837600pt;}
.y31{bottom:205.153467pt;}
.yac{bottom:205.153600pt;}
.y176{bottom:207.243573pt;}
.y131{bottom:209.709227pt;}
.y8b{bottom:210.109093pt;}
.y102{bottom:210.109227pt;}
.y30{bottom:219.109467pt;}
.yab{bottom:219.109600pt;}
.yc1{bottom:219.277600pt;}
.y175{bottom:219.560853pt;}
.y17{bottom:223.874667pt;}
.y8a{bottom:226.111493pt;}
.y101{bottom:226.111627pt;}
.y174{bottom:231.717333pt;}
.y2f{bottom:232.873467pt;}
.yaa{bottom:232.873600pt;}
.y3a{bottom:234.607387pt;}
.y130{bottom:241.714027pt;}
.y89{bottom:242.113893pt;}
.y100{bottom:242.114027pt;}
.y173{bottom:244.034613pt;}
.y2e{bottom:247.597467pt;}
.ya9{bottom:247.597600pt;}
.y39{bottom:247.889467pt;}
.y172{bottom:256.351893pt;}
.yc0{bottom:256.558880pt;}
.y12f{bottom:257.716427pt;}
.y88{bottom:258.116293pt;}
.yff{bottom:258.116427pt;}
.y38{bottom:261.996133pt;}
.y2d{bottom:262.321467pt;}
.ya8{bottom:262.321600pt;}
.y171{bottom:268.508373pt;}
.y12e{bottom:273.718827pt;}
.y87{bottom:274.118693pt;}
.yfe{bottom:274.118827pt;}
.y2c{bottom:276.877467pt;}
.ya7{bottom:276.877600pt;}
.y170{bottom:280.825653pt;}
.ybf{bottom:283.277600pt;}
.y12d{bottom:289.721227pt;}
.y37{bottom:289.996133pt;}
.y86{bottom:290.121093pt;}
.yfd{bottom:290.121227pt;}
.y2b{bottom:291.601467pt;}
.ya6{bottom:291.601600pt;}
.y16f{bottom:293.142933pt;}
.y12c{bottom:305.723627pt;}
.y85{bottom:306.123493pt;}
.yfc{bottom:306.123627pt;}
.y2a{bottom:306.325467pt;}
.ya5{bottom:306.325600pt;}
.y29{bottom:320.881467pt;}
.ya4{bottom:320.881600pt;}
.y12b{bottom:321.726027pt;}
.y16e{bottom:321.859360pt;}
.y84{bottom:322.125893pt;}
.yfb{bottom:322.126027pt;}
.ybe{bottom:323.765600pt;}
.y12a{bottom:337.728427pt;}
.y83{bottom:338.128293pt;}
.yfa{bottom:338.128427pt;}
.y1ae{bottom:339.311413pt;}
.ybd{bottom:339.797600pt;}
.y28{bottom:350.161467pt;}
.ya3{bottom:350.161600pt;}
.y129{bottom:353.730827pt;}
.y16d{bottom:353.864160pt;}
.y82{bottom:354.130693pt;}
.yf9{bottom:354.130827pt;}
.y1ad{bottom:354.716053pt;}
.ybc{bottom:355.797600pt;}
.y36{bottom:356.556133pt;}
.y1ac{bottom:367.033333pt;}
.y128{bottom:369.773067pt;}
.y16c{bottom:369.906400pt;}
.y81{bottom:370.172933pt;}
.yf8{bottom:370.173067pt;}
.y14c{bottom:373.215040pt;}
.yf{bottom:379.153600pt;}
.y1ab{bottom:379.350613pt;}
.y127{bottom:385.775467pt;}
.y80{bottom:386.175333pt;}
.yf7{bottom:386.175467pt;}
.y3e{bottom:387.157467pt;}
.yb6{bottom:387.157600pt;}
.y14b{bottom:389.217440pt;}
.y1aa{bottom:391.507093pt;}
.ye{bottom:392.486933pt;}
.y27{bottom:395.948133pt;}
.ya2{bottom:395.948267pt;}
.y126{bottom:401.777867pt;}
.y16b{bottom:401.911200pt;}
.y7f{bottom:402.177733pt;}
.yf6{bottom:402.177867pt;}
.y1a9{bottom:403.824373pt;}
.y14a{bottom:405.219840pt;}
.yd{bottom:405.820267pt;}
.y26{bottom:409.228133pt;}
.ya1{bottom:409.228267pt;}
.y1a8{bottom:416.141653pt;}
.y125{bottom:417.780267pt;}
.y7e{bottom:418.180133pt;}
.yf5{bottom:418.180267pt;}
.yc{bottom:419.153600pt;}
.y149{bottom:421.222240pt;}
.y25{bottom:422.508133pt;}
.ya0{bottom:422.508267pt;}
.y1a7{bottom:428.298133pt;}
.yb{bottom:432.486933pt;}
.y124{bottom:433.782667pt;}
.y16a{bottom:433.916000pt;}
.y7d{bottom:434.182533pt;}
.yf4{bottom:434.182667pt;}
.y24{bottom:435.948133pt;}
.y9f{bottom:435.948267pt;}
.y148{bottom:437.224640pt;}
.y1a6{bottom:440.615413pt;}
.y3d{bottom:445.985333pt;}
.y123{bottom:449.785067pt;}
.y169{bottom:449.918400pt;}
.y7c{bottom:450.184933pt;}
.yf3{bottom:450.185067pt;}
.y1a5{bottom:452.932693pt;}
.y147{bottom:453.227040pt;}
.y54{bottom:455.472133pt;}
.y23{bottom:457.388133pt;}
.y9e{bottom:457.388267pt;}
.y1a4{bottom:465.089173pt;}
.y122{bottom:465.787467pt;}
.y168{bottom:465.920800pt;}
.y7b{bottom:466.187333pt;}
.yf2{bottom:466.187467pt;}
.y146{bottom:469.229440pt;}
.y53{bottom:470.196133pt;}
.y1a3{bottom:477.406453pt;}
.y121{bottom:481.789867pt;}
.y167{bottom:481.923200pt;}
.y7a{bottom:482.189733pt;}
.yf1{bottom:482.189867pt;}
.y52{bottom:484.752133pt;}
.y145{bottom:485.231840pt;}
.y1a2{bottom:489.723733pt;}
.y22{bottom:494.669413pt;}
.y9d{bottom:494.669547pt;}
.y120{bottom:497.792267pt;}
.y166{bottom:497.925600pt;}
.y79{bottom:498.192133pt;}
.yf0{bottom:498.192267pt;}
.y51{bottom:499.476133pt;}
.y144{bottom:501.234240pt;}
.y1a1{bottom:501.880213pt;}
.y11f{bottom:513.794667pt;}
.y165{bottom:513.928000pt;}
.y78{bottom:514.194533pt;}
.yef{bottom:514.194667pt;}
.y1a0{bottom:514.197493pt;}
.y50{bottom:514.200133pt;}
.y21{bottom:521.388133pt;}
.y9c{bottom:521.388267pt;}
.y19f{bottom:526.514773pt;}
.y4f{bottom:528.756133pt;}
.y11e{bottom:529.797067pt;}
.y164{bottom:529.930400pt;}
.y77{bottom:530.196933pt;}
.yee{bottom:530.197067pt;}
.y143{bottom:533.239040pt;}
.y19e{bottom:538.703413pt;}
.y11d{bottom:545.826027pt;}
.y163{bottom:545.959360pt;}
.y76{bottom:546.225893pt;}
.yed{bottom:546.226027pt;}
.y19d{bottom:551.020693pt;}
.y4e{bottom:558.036133pt;}
.y11c{bottom:561.828427pt;}
.y20{bottom:561.876267pt;}
.y162{bottom:561.961760pt;}
.y75{bottom:562.228293pt;}
.yec{bottom:562.228427pt;}
.y19c{bottom:563.337973pt;}
.y142{bottom:565.270400pt;}
.y19b{bottom:575.494453pt;}
.y11b{bottom:577.830827pt;}
.y1f{bottom:577.908267pt;}
.y161{bottom:577.964160pt;}
.y74{bottom:578.230693pt;}
.yeb{bottom:578.230827pt;}
.y141{bottom:581.272800pt;}
.y19a{bottom:587.811733pt;}
.y11a{bottom:593.833227pt;}
.y1e{bottom:593.908267pt;}
.y160{bottom:593.966560pt;}
.y73{bottom:594.233093pt;}
.yea{bottom:594.233227pt;}
.y140{bottom:597.275200pt;}
.y199{bottom:600.129013pt;}
.y4d{bottom:603.822800pt;}
.y119{bottom:609.835627pt;}
.y15f{bottom:609.968960pt;}
.y72{bottom:610.235493pt;}
.ye9{bottom:610.235627pt;}
.y198{bottom:612.285493pt;}
.y13f{bottom:613.277600pt;}
.y4c{bottom:617.102800pt;}
.y197{bottom:624.602773pt;}
.y18{bottom:625.268133pt;}
.y96{bottom:625.268267pt;}
.y118{bottom:625.838027pt;}
.y15e{bottom:625.971360pt;}
.y71{bottom:626.237893pt;}
.ye8{bottom:626.238027pt;}
.y13e{bottom:629.280000pt;}
.y4b{bottom:630.382800pt;}
.y196{bottom:636.920053pt;}
.y117{bottom:641.840427pt;}
.y15d{bottom:641.973760pt;}
.y70{bottom:642.240293pt;}
.ye7{bottom:642.240427pt;}
.y4a{bottom:643.822800pt;}
.y13d{bottom:645.282400pt;}
.y195{bottom:649.076533pt;}
.y116{bottom:657.842827pt;}
.y15c{bottom:657.976160pt;}
.y6f{bottom:658.242693pt;}
.ye6{bottom:658.242827pt;}
.y13c{bottom:661.284800pt;}
.y194{bottom:661.393813pt;}
.y49{bottom:665.262800pt;}
.y193{bottom:673.711093pt;}
.y115{bottom:673.845227pt;}
.y15b{bottom:673.978560pt;}
.y6e{bottom:674.245093pt;}
.ye5{bottom:674.245227pt;}
.y13b{bottom:677.287200pt;}
.y192{bottom:685.867573pt;}
.y114{bottom:689.847627pt;}
.y15a{bottom:689.980960pt;}
.y6d{bottom:690.247493pt;}
.ye4{bottom:690.247627pt;}
.y13a{bottom:693.289600pt;}
.y191{bottom:698.184853pt;}
.y48{bottom:702.544080pt;}
.y113{bottom:705.850027pt;}
.y159{bottom:705.983360pt;}
.y6c{bottom:706.249893pt;}
.ye3{bottom:706.250027pt;}
.y190{bottom:710.502133pt;}
.y112{bottom:721.892267pt;}
.y6b{bottom:722.292133pt;}
.ye2{bottom:722.292267pt;}
.y18f{bottom:722.701493pt;}
.y139{bottom:724.849600pt;}
.y47{bottom:729.262800pt;}
.y18e{bottom:735.018773pt;}
.y111{bottom:737.894667pt;}
.y158{bottom:738.028000pt;}
.y6a{bottom:738.294533pt;}
.ye1{bottom:738.294667pt;}
.y18d{bottom:747.175253pt;}
.y138{bottom:748.849600pt;}
.y110{bottom:753.897067pt;}
.y69{bottom:754.296933pt;}
.ye0{bottom:754.297067pt;}
.y18c{bottom:759.492533pt;}
.y46{bottom:769.750933pt;}
.y10f{bottom:769.899467pt;}
.y157{bottom:770.032800pt;}
.y68{bottom:770.299333pt;}
.ydf{bottom:770.299467pt;}
.y18b{bottom:771.809813pt;}
.y18a{bottom:783.966293pt;}
.y45{bottom:785.782933pt;}
.y10e{bottom:785.901867pt;}
.y156{bottom:786.035200pt;}
.y67{bottom:786.301733pt;}
.yde{bottom:786.301867pt;}
.y189{bottom:796.283573pt;}
.y44{bottom:801.782933pt;}
.y155{bottom:802.037600pt;}
.y66{bottom:802.304133pt;}
.ydd{bottom:802.304267pt;}
.y188{bottom:808.600853pt;}
.y10d{bottom:817.906667pt;}
.y154{bottom:818.040000pt;}
.y65{bottom:818.306533pt;}
.ydc{bottom:818.306667pt;}
.y187{bottom:820.757333pt;}
.y186{bottom:833.074613pt;}
.y153{bottom:834.042400pt;}
.y64{bottom:834.308933pt;}
.ydb{bottom:834.309067pt;}
.y185{bottom:845.391893pt;}
.y10c{bottom:849.911467pt;}
.y152{bottom:850.044800pt;}
.y63{bottom:850.311333pt;}
.yda{bottom:850.311467pt;}
.y3{bottom:854.338533pt;}
.y184{bottom:857.548373pt;}
.y3c{bottom:862.569333pt;}
.y3b{bottom:862.582667pt;}
.y10b{bottom:865.913867pt;}
.y151{bottom:866.047200pt;}
.y183{bottom:869.865653pt;}
.y13{bottom:878.569333pt;}
.y10{bottom:878.582667pt;}
.y1{bottom:879.110667pt;}
.y10a{bottom:881.916267pt;}
.y150{bottom:882.049600pt;}
.y182{bottom:882.182933pt;}
.y62{bottom:882.316133pt;}
.yd9{bottom:882.316267pt;}
.y181{bottom:910.369600pt;}
.y109{bottom:913.302933pt;}
.y14f{bottom:913.436267pt;}
.y61{bottom:913.702933pt;}
.y137{bottom:915.436267pt;}
.y2{bottom:918.559067pt;}
.y90{bottom:920.499333pt;}
.h7{height:-508.062667pt;}
.ha{height:-508.049333pt;}
.h17{height:-38.760000pt;}
.h18{height:-38.746667pt;}
.h8{height:18.663750pt;}
.h4{height:29.645833pt;}
.hd{height:29.773125pt;}
.hc{height:30.778125pt;}
.h5{height:32.000000pt;}
.h13{height:32.531250pt;}
.h6{height:33.351562pt;}
.h9{height:34.359375pt;}
.h3{height:34.368000pt;}
.h14{height:34.453125pt;}
.h1b{height:36.001250pt;}
.h1c{height:36.883125pt;}
.h1d{height:38.024375pt;}
.h16{height:38.128125pt;}
.h15{height:38.968750pt;}
.hf{height:45.937500pt;}
.h12{height:49.612500pt;}
.h11{height:56.935625pt;}
.hb{height:58.865625pt;}
.h10{height:65.231250pt;}
.h2{height:66.352000pt;}
.he{height:146.645333pt;}
.h19{height:377.837333pt;}
.h21{height:897.285333pt;}
.h1e{height:899.841333pt;}
.h20{height:900.353333pt;}
.h1a{height:900.618667pt;}
.h1f{height:901.974667pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w9{width:-583.664000pt;}
.wa{width:-203.896000pt;}
.wb{width:-43.536000pt;}
.w8{width:1.333333pt;}
.wc{width:1.424000pt;}
.w2{width:84.352000pt;}
.w4{width:160.346667pt;}
.w5{width:160.360000pt;}
.w3{width:379.760000pt;}
.w7{width:724.314667pt;}
.w6{width:724.336000pt;}
.wd{width:724.426667pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x2d{left:-675.216000pt;}
.x31{left:-670.895867pt;}
.x2f{left:-669.600000pt;}
.x39{left:-667.216000pt;}
.x3f{left:-665.776000pt;}
.x3a{left:-659.218880pt;}
.x2e{left:-648.624000pt;}
.x38{left:-616.459680pt;}
.x36{left:-603.023867pt;}
.x27{left:-592.784000pt;}
.x37{left:-568.629333pt;}
.x35{left:-558.709333pt;}
.x30{left:-540.928000pt;}
.x34{left:-539.189333pt;}
.x48{left:-532.309200pt;}
.x32{left:-523.352187pt;}
.x46{left:-520.149200pt;}
.x28{left:-506.829200pt;}
.x2a{left:-495.309200pt;}
.x33{left:-480.909200pt;}
.x29{left:-479.629333pt;}
.x40{left:-477.709333pt;}
.x2c{left:-204.202533pt;}
.x45{left:-145.962667pt;}
.x47{left:-110.274560pt;}
.x2b{left:-51.695867pt;}
.x0{left:0.000000pt;}
.xe{left:1.333333pt;}
.x5{left:49.889733pt;}
.x4{left:51.912800pt;}
.x11{left:53.440000pt;}
.xf{left:54.736000pt;}
.x1c{left:56.069333pt;}
.x6{left:57.653333pt;}
.x3c{left:58.560000pt;}
.x24{left:65.117120pt;}
.x1b{left:66.450453pt;}
.x3b{left:67.469707pt;}
.x26{left:68.802907pt;}
.x7{left:75.232000pt;}
.x9{left:76.826667pt;}
.x49{left:80.490773pt;}
.xb{left:88.346667pt;}
.xa{left:104.026667pt;}
.x23{left:107.876320pt;}
.x1a{left:109.205333pt;}
.x18{left:121.312000pt;}
.x21{left:122.645333pt;}
.x8{left:142.013333pt;}
.xd{left:152.186667pt;}
.x19{left:155.706667pt;}
.x22{left:157.040000pt;}
.x17{left:165.626667pt;}
.x20{left:166.960000pt;}
.x10{left:183.408000pt;}
.x16{left:185.146667pt;}
.x1f{left:186.480000pt;}
.x44{left:193.360000pt;}
.x12{left:200.983680pt;}
.x1d{left:202.317013pt;}
.x42{left:205.520000pt;}
.x2{left:209.887200pt;}
.x3{left:226.016667pt;}
.x13{left:243.426667pt;}
.x1e{left:244.760000pt;}
.x3e{left:247.960000pt;}
.x1{left:259.715200pt;}
.x14{left:356.526667pt;}
.x15{left:365.213333pt;}
.xc{left:521.786667pt;}
.x41{left:579.706667pt;}
.x43{left:615.394773pt;}
.x3d{left:674.453973pt;}
.x25{left:724.336000pt;}
}




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