
    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_ce035fff4dc7075fb38d2a73.woff')format("woff");}.ff1{font-family:ff1;line-height:0.993000;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_4c41357a8273c9f8478dff55.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7713bdf9f64e7af5e5d44323.woff')format("woff");}.ff3{font-family:ff3;line-height:0.719000;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_91fcc79c4d9f1f9d6ec04c46.woff')format("woff");}.ff4{font-family:ff4;line-height:0.993000;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_74d93e23b6c30063d2905027.woff')format("woff");}.ff5{font-family:ff5;line-height:0.915000;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_c7a8f2b5aa46e36763847c2c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.928000;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_feca20263d197b6ae43f801e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.909000;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_7b92e12fef2a2c68df8050e9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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_3ca13baa9e86f928fad9e5c2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.774000;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_dbbfdd7277c3cfa4bdbcfc69.woff')format("woff");}.ffa{font-family:ffa;line-height:0.915000;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_df44fde92654c1da696e12a1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.928000;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_fdb46d0943b4ed13bf0a020e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.716000;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_d45ae57d70bb96574142948a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.775000;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_4f42af3e124654ddccb17e4b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.915000;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_e042eee863005f9c37c0c1b3.woff')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_bd1e9488218c8302553746b6.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0dfa95fb6a60e10c464635ef.woff')format("woff");}.ff11{font-family:ff11;line-height:0.716000;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_669e00408914a87b30bae798.woff')format("woff");}.ff12{font-family:ff12;line-height:0.928000;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_67c81084be761cc5e9fd5c2c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.716000;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_ebbe96c3ce9bafc32a262d2c.woff')format("woff");}.ff14{font-family:ff14;line-height:0.716000;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_d8885d0a300eb3fd603389a8.woff')format("woff");}.ff15{font-family:ff15;line-height:1.226000;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_a922bf8d68d23a8377e4e56f.woff')format("woff");}.ff16{font-family:ff16;line-height:1.181818;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_42ac252d48989fe9c627b7d2.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_dc16d0fa0013bd2a3ea1693c.woff')format("woff");}.ff18{font-family:ff18;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_3723bb3279522bd737adcf30.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_37339d7254b265e1cbf8831e.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.716000;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_177af520c6efe5d4ad4789a3.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_891d19ad367fe106ffc8b42c.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.181818;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_577f9a41e67acd2c7c86ad7b.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_739727ac7b56653cdf08ec4a.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.910000;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_7fc803b0039c35de2dafe6e6.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_37339d7254b265e1cbf8831e.woff')format("woff");}.ff20{font-family:ff20;line-height:0.716000;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_af8212b9ce45b08d080e8e67.woff')format("woff");}.ff21{font-family:ff21;line-height:0.910000;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_5fef47ec7ad75a644de37297.woff')format("woff");}.ff22{font-family:ff22;line-height:0.951000;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_52f4f7e5f9af3d972a5de3d1.woff')format("woff");}.ff23{font-family:ff23;line-height:1.233000;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_beb8483cb844e964fb51b06e.woff')format("woff");}.ff24{font-family:ff24;line-height:1.181818;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_227db0ab9664e072bdc1c820.woff')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_56164ad1215a3e0c813b5b3b.woff')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_8f44756174e0762756c01bf3.woff')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_37339d7254b265e1cbf8831e.woff')format("woff");}.ff28{font-family:ff28;line-height:0.716000;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_a0f8ae69060d46d3292d75f6.woff')format("woff");}.ff29{font-family:ff29;line-height:0.915000;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_eb2b5244af6979e5913d4cf6.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.104000;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_0dc49f5c7bc7e87a0ed8f075.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.910000;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_0b597af3169f67881272fc01.woff')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_9d55a9bba9955e1c78698543.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.226000;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_4c5e5af99242d3cad2330244.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.181818;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_66332304eac388c024d635e5.woff')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_05369ab54bcdcdf65a241bba.woff')format("woff");}.ff30{font-family:ff30;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_60d7caef029124adbd5e709b.woff')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_37339d7254b265e1cbf8831e.woff')format("woff");}.ff32{font-family:ff32;line-height:0.716000;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_205e39967470b7e637088b2f.woff')format("woff");}.ff33{font-family:ff33;line-height:0.909000;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_843376ab40c960dac7aa2e3b.woff')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_ab66a9b805a4dc5fb94ebf1f.woff')format("woff");}.ff35{font-family:ff35;line-height:0.720000;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_f040ff603bd9c8097500502a.woff')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_b03399c64159eb6bab175d2e.woff')format("woff");}.ff37{font-family:ff37;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_ce805ee40f880a1e3f858f24.woff')format("woff");}.ff38{font-family:ff38;line-height:1.181818;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_2306ae6ec2e44df23aad717a.woff')format("woff");}.ff39{font-family:ff39;line-height:0.928000;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_805b8b704430f42324b89d75.woff')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_7702f469c1daebf131e8822c.woff')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_37339d7254b265e1cbf8831e.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.716000;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_3dedb6c2fb8e1b964c004b52.woff')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_8623e29978a99287230760e5.woff')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_610df87931debd6ae196e3e9.woff')format("woff");}.ff3f{font-family:ff3f;line-height:1.019000;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_747c1787edf5495db95df342.woff')format("woff");}.ff40{font-family:ff40;line-height:1.181818;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_0fb1893390fc0276f93e98e5.woff')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_466f60404fcdbdd770bf2c54.woff')format("woff");}.ff42{font-family:ff42;line-height:0.897000;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_7f3a73120d1cf34bada75365.woff')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_37339d7254b265e1cbf8831e.woff')format("woff");}.ff44{font-family:ff44;line-height:0.716000;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_3f60dedf6996e29d7e8a381f.woff')format("woff");}.ff45{font-family:ff45;line-height:0.897000;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_c63f0d545b8189b71e28a7c6.woff')format("woff");}.ff46{font-family:ff46;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:ff47;src:url('chunks/assets/font_443fb3234d61c1e4a62586b2.woff')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_823f23838c0a1d1f7e0486b2.woff')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_c885a45b8292f2897e9b8f4e.woff')format("woff");}.ff49{font-family:ff49;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_4c5e5af99242d3cad2330244.woff')format("woff");}.ff4a{font-family:ff4a;line-height:1.181818;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_f0f0c7cef9f8e920f074ea6f.woff')format("woff");}.ff4b{font-family:ff4b;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:ff4c;src:url('chunks/assets/font_c47dbde958a0e34cfa342e88.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.717000;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_0e845aff8f3fef8cfba9df28.woff')format("woff");}.ff4d{font-family:ff4d;line-height:1.104000;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_37339d7254b265e1cbf8831e.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.716000;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_485358a6abad5c7cbceeba25.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.717000;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_f8565ddf77e1c5e4088db6b3.woff')format("woff");}.ff50{font-family:ff50;line-height:1.104000;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_95d595da5c3012bde169ff7d.woff')format("woff");}.ff51{font-family:ff51;line-height:0.717000;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_a1c8d2abda5dec8aca0f8dcf.woff')format("woff");}.ff52{font-family:ff52;line-height:1.104000;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_55118564d15e75913af2effc.woff')format("woff");}.ff53{font-family:ff53;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_cbd0b83996df24665a6ac25f.woff')format("woff");}.ff54{font-family:ff54;line-height:1.181818;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_b5f5570d62b3e16625fbcc0d.woff')format("woff");}.ff55{font-family:ff55;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:ff56;src:url('chunks/assets/font_375c1f830b2cf3422ed226ba.woff')format("woff");}.ff56{font-family:ff56;line-height:0.909000;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:ff57;src:url('chunks/assets/font_32ddc15c0a4067189db745e1.woff')format("woff");}.ff57{font-family:ff57;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:ff58;src:url('chunks/assets/font_37339d7254b265e1cbf8831e.woff')format("woff");}.ff58{font-family:ff58;line-height:0.716000;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:ff59;src:url('chunks/assets/font_85a79f7ee656f1368d93b42a.woff')format("woff");}.ff59{font-family:ff59;line-height:0.915000;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:ff5a;src:url('chunks/assets/font_ecf646020e1d15d00712b5f2.woff')format("woff");}.ff5a{font-family:ff5a;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:ff5b;src:url('chunks/assets/font_eaf059e9235f0163f1b6569b.woff')format("woff");}.ff5b{font-family:ff5b;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_a9c11ee7389f6060bb9e6e5f.woff')format("woff");}.ff5c{font-family:ff5c;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:ff5d;src:url('chunks/assets/font_42fe4276bebdbd64c76701fe.woff')format("woff");}.ff5d{font-family:ff5d;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_01411ab243f9c71f90005f57.woff')format("woff");}.ff5e{font-family:ff5e;line-height:1.181818;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:ff5f;src:url('chunks/assets/font_841ee414be8dfd0ad99b354c.woff')format("woff");}.ff5f{font-family:ff5f;line-height:0.765137;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:ff60;src:url('chunks/assets/font_aaa012a5e4d71dc006777b17.woff')format("woff");}.ff60{font-family:ff60;line-height:0.983398;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:ff61;src:url('chunks/assets/font_886318252d4cccabb9428fce.woff')format("woff");}.ff61{font-family:ff61;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_041834882969160dda01c588.woff')format("woff");}.ff62{font-family:ff62;line-height:0.932000;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:ff63;src:url('chunks/assets/font_044d5765ffc0eb8109f31d6c.woff')format("woff");}.ff63{font-family:ff63;line-height:0.909000;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:ff64;src:url('chunks/assets/font_bbb280afac1e8fdbeaf6efd6.woff')format("woff");}.ff64{font-family:ff64;line-height:0.928000;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:ff65;src:url('chunks/assets/font_61e4b4039514547b09d7de54.woff')format("woff");}.ff65{font-family:ff65;line-height:1.118000;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:ff66;src:url('chunks/assets/font_5cc23854c583cbea11f81119.woff')format("woff");}.ff66{font-family:ff66;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:ff67;src:url('chunks/assets/font_a8cf5260ead1e4016d5d4252.woff')format("woff");}.ff67{font-family:ff67;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:ff68;src:url('chunks/assets/font_c46b22bc042781507d201fd8.woff')format("woff");}.ff68{font-family:ff68;line-height:0.909000;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:ff69;src:url('chunks/assets/font_538d7ed9ee0af87fea4cf647.woff')format("woff");}.ff69{font-family:ff69;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:ff6a;src:url('chunks/assets/font_5261828283ca9f4b6091cd80.woff')format("woff");}.ff6a{font-family:ff6a;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:ff6b;src:url('chunks/assets/font_6216156b87e7a86ed2bf09eb.woff')format("woff");}.ff6b{font-family:ff6b;line-height:0.910000;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:ff6c;src:url('chunks/assets/font_9ec4617650690f3386e2603b.woff')format("woff");}.ff6c{font-family:ff6c;line-height:0.909000;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:ff6d;src:url('chunks/assets/font_c54a7409ef427ee6ffba4516.woff')format("woff");}.ff6d{font-family:ff6d;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:ff6e;src:url('chunks/assets/font_b9982f2773d3f0d32256a555.woff')format("woff");}.ff6e{font-family:ff6e;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:ff6f;src:url('chunks/assets/font_3dd498d5c468007ed7ec41a1.woff')format("woff");}.ff6f{font-family:ff6f;line-height:0.716000;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:ff70;src:url('chunks/assets/font_d9e3478ea8bb4fca1aba505a.woff')format("woff");}.ff70{font-family:ff70;line-height:0.914000;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:ff71;src:url('chunks/assets/font_15398e0321497811294df491.woff')format("woff");}.ff71{font-family:ff71;line-height:0.931000;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;}
.ff72{font-family:sans-serif;visibility:hidden;}
.ff73{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:62.415545px;}
.v2{vertical-align:78.551061px;}
.v4{vertical-align:81.020258px;}
.v1{vertical-align:82.686136px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000065px;}
.ls1{letter-spacing:0.018455px;}
.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;}
}
.ws4{word-spacing:-95.063858px;}
.ws7{word-spacing:-72.273222px;}
.ws5{word-spacing:-68.170029px;}
.ws9{word-spacing:-60.399055px;}
.ws1e{word-spacing:-58.238596px;}
.wsf{word-spacing:-57.605457px;}
.ws16{word-spacing:-56.897447px;}
.wsa{word-spacing:-54.013556px;}
.ws1c{word-spacing:-53.760052px;}
.wsc{word-spacing:-52.338857px;}
.ws8{word-spacing:-52.338813px;}
.ws14{word-spacing:-50.417016px;}
.wsd{word-spacing:-50.408153px;}
.wse{word-spacing:-46.802746px;}
.ws13{word-spacing:-46.307950px;}
.ws0{word-spacing:-45.694028px;}
.wsb{word-spacing:-40.330122px;}
.ws19{word-spacing:-39.248811px;}
.ws10{word-spacing:-38.130062px;}
.ws1b{word-spacing:-37.002899px;}
.ws1d{word-spacing:-37.001356px;}
.ws17{word-spacing:-33.646645px;}
.ws21{word-spacing:-31.200030px;}
.ws20{word-spacing:-19.501144px;}
.ws1{word-spacing:-19.379164px;}
.ws6{word-spacing:-17.104293px;}
.ws3{word-spacing:-15.958305px;}
.ws23{word-spacing:-15.103090px;}
.ws22{word-spacing:-14.820870px;}
.ws18{word-spacing:-13.683499px;}
.ws12{word-spacing:-13.683434px;}
.ws1a{word-spacing:-13.682655px;}
.ws15{word-spacing:-10.394151px;}
.ws1f{word-spacing:-0.083784px;}
.ws11{word-spacing:-0.080667px;}
.ws2{word-spacing:0.000000px;}
._2c{margin-left:-12.962375px;}
._2{margin-left:-11.834607px;}
._3{margin-left:-9.619207px;}
._6{margin-left:-7.569190px;}
._5{margin-left:-6.385276px;}
._4{margin-left:-5.128403px;}
._0{margin-left:-3.293535px;}
._1{margin-left:-1.486472px;}
._7{width:1.313676px;}
._9{width:2.464418px;}
._18{width:3.529195px;}
._12{width:4.615317px;}
._f{width:5.852819px;}
._13{width:6.998083px;}
._8{width:8.398860px;}
._a{width:10.086784px;}
._e{width:11.470454px;}
._16{width:12.643659px;}
._19{width:13.796544px;}
._1e{width:15.038760px;}
._1d{width:16.335387px;}
._10{width:17.378186px;}
._14{width:19.204199px;}
._11{width:21.035354px;}
._21{width:22.170450px;}
._1f{width:23.331639px;}
._15{width:24.889691px;}
._1b{width:26.140273px;}
._1a{width:27.209075px;}
._20{width:28.898090px;}
._d{width:30.182274px;}
._1c{width:32.060049px;}
._b{width:36.136422px;}
._c{width:37.163025px;}
._2b{width:40.759082px;}
._26{width:43.249669px;}
._17{width:44.687786px;}
._23{width:46.544352px;}
._22{width:47.580118px;}
._25{width:49.100460px;}
._27{width:50.198215px;}
._29{width:53.348336px;}
._24{width:54.469291px;}
._28{width:116.037537px;}
._2a{width:132.849880px;}
.fc3{color:rgb(0,0,1);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:54.706056px;}
.fs12{font-size:72.013973px;}
.fsd{font-size:72.018074px;}
.fs2{font-size:78.004577px;}
.fs1e{font-size:79.489949px;}
.fsa{font-size:80.667226px;}
.fs1a{font-size:83.783966px;}
.fs3{font-size:83.991079px;}
.fs5{font-size:90.022593px;}
.fs1{font-size:101.995598px;}
.fs13{font-size:104.873445px;}
.fs1d{font-size:107.982100px;}
.fs15{font-size:119.459985px;}
.fs0{font-size:120.000116px;}
.fs11{font-size:120.011616px;}
.fs10{font-size:121.031096px;}
.fs17{font-size:121.125399px;}
.fs1c{font-size:125.675955px;}
.fs16{font-size:133.098403px;}
.fs14{font-size:133.103954px;}
.fs9{font-size:137.158496px;}
.fse{font-size:141.182774px;}
.fs18{font-size:143.451006px;}
.fsc{font-size:153.285884px;}
.fs7{font-size:156.009153px;}
.fs6{font-size:168.027178px;}
.fsf{font-size:173.467825px;}
.fs4{font-size:180.045185px;}
.fs8{font-size:192.018190px;}
.fs19{font-size:209.491353px;}
.fs1b{font-size:217.882314px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y1a6{bottom:4.600092px;}
.y12c{bottom:4.630143px;}
.ycd{bottom:4.818005px;}
.y1ef{bottom:4.818022px;}
.y16f{bottom:4.840967px;}
.yfb{bottom:4.850761px;}
.ya3{bottom:4.862179px;}
.y230{bottom:4.882023px;}
.y1d3{bottom:5.300215px;}
.y1c6{bottom:5.310812px;}
.ye1{bottom:5.372471px;}
.y214{bottom:5.394334px;}
.y189{bottom:5.437422px;}
.y118{bottom:5.447134px;}
.y184{bottom:5.505483px;}
.y93{bottom:5.513184px;}
.yb4{bottom:5.535267px;}
.y254{bottom:5.552914px;}
.y1b4{bottom:5.579117px;}
.y17a{bottom:5.579119px;}
.y1a8{bottom:7.073993px;}
.ye0{bottom:8.646612px;}
.y187{bottom:9.146443px;}
.y151{bottom:9.151445px;}
.y116{bottom:9.197083px;}
.y1d7{bottom:9.214213px;}
.y91{bottom:9.306416px;}
.yb2{bottom:9.418860px;}
.y25b{bottom:9.531433px;}
.yfd{bottom:9.989319px;}
.ya5{bottom:10.171901px;}
.y12e{bottom:11.411359px;}
.ycf{bottom:11.683249px;}
.y252{bottom:13.562572px;}
.y256{bottom:14.228196px;}
.y1a5{bottom:18.216091px;}
.y12b{bottom:18.246141px;}
.ycc{bottom:18.434003px;}
.y1ee{bottom:18.434020px;}
.y16e{bottom:18.456966px;}
.yfa{bottom:18.466759px;}
.ya2{bottom:18.478177px;}
.y22f{bottom:18.498021px;}
.y1d2{bottom:22.804827px;}
.y1c5{bottom:22.815424px;}
.y183{bottom:23.010095px;}
.y1b3{bottom:23.083729px;}
.y179{bottom:23.083731px;}
.y1a4{bottom:31.832089px;}
.y12a{bottom:31.862140px;}
.ycb{bottom:32.050002px;}
.y1ed{bottom:32.050018px;}
.y16d{bottom:32.072964px;}
.yf9{bottom:32.082757px;}
.ya1{bottom:32.094175px;}
.y22e{bottom:32.114019px;}
.y20f{bottom:35.612219px;}
.y8{bottom:35.949020px;}
.y18a{bottom:36.945009px;}
.y244{bottom:38.866486px;}
.y1d1{bottom:40.309439px;}
.y1c4{bottom:40.320036px;}
.y182{bottom:40.514707px;}
.y1b2{bottom:40.588341px;}
.y178{bottom:40.588343px;}
.ydf{bottom:44.955941px;}
.y1a3{bottom:45.448087px;}
.y129{bottom:45.478138px;}
.yca{bottom:45.666000px;}
.y16c{bottom:45.688962px;}
.yf8{bottom:45.698756px;}
.ya0{bottom:45.710174px;}
.y22d{bottom:45.730018px;}
.y25a{bottom:46.457974px;}
.y152{bottom:47.745008px;}
.y250{bottom:47.868723px;}
.y1d6{bottom:48.549319px;}
.y90{bottom:50.154411px;}
.y170{bottom:50.625008px;}
.y186{bottom:50.750883px;}
.y150{bottom:50.755885px;}
.y115{bottom:50.801522px;}
.yb1{bottom:51.023300px;}
.y20e{bottom:53.616737px;}
.y251{bottom:54.225008px;}
.yae{bottom:54.562476px;}
.y243{bottom:54.620439px;}
.y2dd{bottom:56.414520px;}
.y181{bottom:58.019319px;}
.y177{bottom:58.092955px;}
.y1a2{bottom:59.064086px;}
.y128{bottom:59.094136px;}
.yc9{bottom:59.281998px;}
.y1ec{bottom:59.282015px;}
.y16b{bottom:59.304961px;}
.yf7{bottom:59.314754px;}
.y9f{bottom:59.326172px;}
.y22c{bottom:59.346016px;}
.y24f{bottom:63.622677px;}
.y1c7{bottom:64.305008px;}
.y204{bottom:64.869528px;}
.y239{bottom:66.151698px;}
.ydc{bottom:68.392671px;}
.y215{bottom:69.345007px;}
.y1b1{bottom:69.470951px;}
.y242{bottom:70.374393px;}
.y20d{bottom:71.621256px;}
.yad{bottom:72.566995px;}
.y1a1{bottom:72.680084px;}
.y127{bottom:72.710135px;}
.yc8{bottom:72.897997px;}
.y1eb{bottom:72.898013px;}
.y16a{bottom:72.920959px;}
.yf6{bottom:72.930753px;}
.y9e{bottom:72.942170px;}
.y22b{bottom:72.962014px;}
.yd5{bottom:73.233322px;}
.y1d0{bottom:75.318663px;}
.y1c3{bottom:75.329259px;}
.y180{bottom:75.523931px;}
.y2dc{bottom:75.544321px;}
.y176{bottom:75.597567px;}
.y1fa{bottom:76.279240px;}
.y24e{bottom:79.376630px;}
.ye2{bottom:80.145007px;}
.y26a{bottom:80.863401px;}
.yde{bottom:81.265270px;}
.y238{bottom:81.905652px;}
.y203{bottom:82.874047px;}
.yb5{bottom:83.025007px;}
.y259{bottom:83.384516px;}
.y1b6{bottom:85.905007px;}
.y241{bottom:86.128347px;}
.y1a0{bottom:86.296082px;}
.y126{bottom:86.326133px;}
.ydb{bottom:86.397189px;}
.yc7{bottom:86.513995px;}
.y1ea{bottom:86.514012px;}
.y169{bottom:86.536957px;}
.yf5{bottom:86.546751px;}
.y9d{bottom:86.558169px;}
.y22a{bottom:86.578013px;}
.y1b0{bottom:86.975563px;}
.y1d5{bottom:87.884426px;}
.y20c{bottom:89.625774px;}
.yac{bottom:90.571514px;}
.y8f{bottom:91.002406px;}
.yd4{bottom:91.237840px;}
.y14f{bottom:92.360324px;}
.y114{bottom:92.405961px;}
.y1cf{bottom:92.823275px;}
.y1c2{bottom:92.833871px;}
.y17f{bottom:93.028543px;}
.y175{bottom:93.102179px;}
.y1f9{bottom:94.283759px;}
.y2db{bottom:94.674122px;}
.y24d{bottom:95.130584px;}
.y237{bottom:97.659606px;}
.y125{bottom:99.942131px;}
.y269{bottom:99.993201px;}
.yc6{bottom:100.129993px;}
.y1e9{bottom:100.130010px;}
.y168{bottom:100.152956px;}
.yf4{bottom:100.162749px;}
.y9c{bottom:100.174167px;}
.y229{bottom:100.194011px;}
.y202{bottom:100.878565px;}
.y112{bottom:102.529375px;}
.y17c{bottom:103.905006px;}
.yda{bottom:104.401708px;}
.y1af{bottom:104.480175px;}
.y20b{bottom:107.630293px;}
.yab{bottom:108.576032px;}
.yd3{bottom:109.242359px;}
.y29{bottom:109.437413px;}
.y1ce{bottom:110.327887px;}
.y1c1{bottom:110.338483px;}
.y174{bottom:110.606791px;}
.y24c{bottom:110.884538px;}
.y1f8{bottom:112.288277px;}
.y236{bottom:113.413559px;}
.y19f{bottom:113.528079px;}
.y124{bottom:113.558130px;}
.yc5{bottom:113.745992px;}
.y1e8{bottom:113.746008px;}
.y167{bottom:113.768954px;}
.yf3{bottom:113.778748px;}
.y9b{bottom:113.790165px;}
.y2da{bottom:113.803923px;}
.y228{bottom:113.810009px;}
.y14d{bottom:114.288114px;}
.y5d{bottom:117.423134px;}
.y240{bottom:117.636254px;}
.y119{bottom:117.945005px;}
.y140{bottom:118.529246px;}
.y201{bottom:118.883084px;}
.y268{bottom:119.123002px;}
.y258{bottom:120.311057px;}
.y111{bottom:120.533893px;}
.y17e{bottom:121.035922px;}
.y1ae{bottom:121.984787px;}
.yd9{bottom:122.406226px;}
.y20a{bottom:125.634811px;}
.yaa{bottom:126.580551px;}
.y19e{bottom:127.144078px;}
.yd2{bottom:127.246877px;}
.yc4{bottom:127.361990px;}
.y1e7{bottom:127.362007px;}
.y166{bottom:127.384952px;}
.yf2{bottom:127.394746px;}
.y9a{bottom:127.406164px;}
.y227{bottom:127.426008px;}
.y1cd{bottom:127.832498px;}
.y1c0{bottom:127.843095px;}
.y173{bottom:128.111403px;}
.y235{bottom:129.167513px;}
.y135{bottom:129.536148px;}
.y28{bottom:129.692496px;}
.y3c{bottom:129.935460px;}
.y1f7{bottom:130.292796px;}
.y14c{bottom:132.292632px;}
.y2d9{bottom:132.933724px;}
.y23f{bottom:133.390208px;}
.y79{bottom:135.373513px;}
.y13f{bottom:136.533765px;}
.y200{bottom:136.887602px;}
.y267{bottom:138.252803px;}
.y105{bottom:138.434291px;}
.y10f{bottom:138.538412px;}
.y1ad{bottom:139.489398px;}
.yd8{bottom:140.410745px;}
.y19d{bottom:140.760076px;}
.y123{bottom:140.790126px;}
.yc3{bottom:140.977988px;}
.y1e6{bottom:140.978005px;}
.y165{bottom:141.000951px;}
.y99{bottom:141.022162px;}
.y226{bottom:141.042006px;}
.y17d{bottom:142.041456px;}
.y24b{bottom:142.392445px;}
.y209{bottom:143.639330px;}
.ya9{bottom:144.585069px;}
.y234{bottom:144.921467px;}
.y94{bottom:144.945004px;}
.y1bf{bottom:145.347707px;}
.y134{bottom:147.540667px;}
.y1f6{bottom:148.297314px;}
.y23e{bottom:149.144162px;}
.y14b{bottom:150.297151px;}
.y2d8{bottom:152.063525px;}
.y3b{bottom:152.441108px;}
.y19c{bottom:154.376074px;}
.y122{bottom:154.406125px;}
.y78{bottom:154.503314px;}
.y13e{bottom:154.538283px;}
.y1e5{bottom:154.594003px;}
.y164{bottom:154.616949px;}
.yf1{bottom:154.626743px;}
.y98{bottom:154.638160px;}
.y225{bottom:154.658004px;}
.y1ff{bottom:154.892121px;}
.y172{bottom:156.118782px;}
.y104{bottom:156.438810px;}
.y257{bottom:156.465004px;}
.y10e{bottom:156.542930px;}
.y1ac{bottom:156.994010px;}
.y266{bottom:157.382604px;}
.y24a{bottom:158.146399px;}
.y208{bottom:161.643849px;}
.ya8{bottom:162.589588px;}
.y1cc{bottom:162.841722px;}
.y1be{bottom:162.852319px;}
.yd1{bottom:163.255914px;}
.y23d{bottom:164.898115px;}
.y133{bottom:165.545185px;}
.y1f5{bottom:166.301833px;}
.y19b{bottom:167.992073px;}
.y121{bottom:168.022123px;}
.yc2{bottom:168.209985px;}
.y1e4{bottom:168.210002px;}
.y163{bottom:168.232947px;}
.yf0{bottom:168.242741px;}
.y97{bottom:168.254159px;}
.y224{bottom:168.274003px;}
.y27{bottom:170.202663px;}
.y52{bottom:170.461464px;}
.y2d7{bottom:171.193326px;}
.y13d{bottom:172.542802px;}
.y1fe{bottom:172.896639px;}
.y249{bottom:173.900353px;}
.y103{bottom:174.443329px;}
.y10d{bottom:174.547449px;}
.y3a{bottom:174.946756px;}
.yd7{bottom:176.419782px;}
.y265{bottom:176.512405px;}
.y171{bottom:177.124316px;}
.y207{bottom:179.648367px;}
.y233{bottom:179.805222px;}
.y1cb{bottom:180.346334px;}
.y23c{bottom:180.652069px;}
.y2ab{bottom:181.357232px;}
.y120{bottom:181.638121px;}
.yc1{bottom:181.825983px;}
.y1e3{bottom:181.826000px;}
.y162{bottom:181.848946px;}
.yef{bottom:181.858739px;}
.y96{bottom:181.870157px;}
.y223{bottom:181.890001px;}
.y132{bottom:183.549704px;}
.y1f4{bottom:184.306352px;}
.yd0{bottom:184.636280px;}
.y1ab{bottom:185.001389px;}
.y14a{bottom:186.306188px;}
.y248{bottom:189.654306px;}
.y2d6{bottom:190.323127px;}
.y26{bottom:190.457747px;}
.y102{bottom:192.447847px;}
.y10c{bottom:192.551967px;}
.y77{bottom:192.762916px;}
.y19a{bottom:195.224069px;}
.y11f{bottom:195.254120px;}
.yc0{bottom:195.441982px;}
.y1e2{bottom:195.441998px;}
.y161{bottom:195.464944px;}
.yee{bottom:195.474738px;}
.y95{bottom:195.486155px;}
.y222{bottom:195.505999px;}
.y264{bottom:195.642206px;}
.y39{bottom:197.452404px;}
.yd6{bottom:197.800148px;}
.y1ca{bottom:197.850946px;}
.y1bd{bottom:197.861543px;}
.ya7{bottom:198.598625px;}
.y2aa{bottom:199.361751px;}
.y232{bottom:201.185587px;}
.y131{bottom:201.554222px;}
.y1f3{bottom:202.310870px;}
.y1aa{bottom:202.506001px;}
.y149{bottom:204.310706px;}
.y38{bottom:204.354166px;}
.y247{bottom:205.408260px;}
.y13c{bottom:208.551839px;}
.y199{bottom:208.840068px;}
.y11e{bottom:208.870118px;}
.y1fd{bottom:208.905676px;}
.ybf{bottom:209.057980px;}
.y160{bottom:209.080942px;}
.yed{bottom:209.090736px;}
.y221{bottom:209.121998px;}
.y2d5{bottom:209.452928px;}
.y101{bottom:210.452366px;}
.y110{bottom:210.556486px;}
.y76{bottom:211.892717px;}
.y263{bottom:214.772007px;}
.y1bc{bottom:215.366155px;}
.y23b{bottom:215.535824px;}
.y206{bottom:215.657404px;}
.y2a9{bottom:217.366269px;}
.ya6{bottom:219.978991px;}
.y148{bottom:222.315225px;}
.y198{bottom:222.456066px;}
.y11d{bottom:222.486116px;}
.ybe{bottom:222.673978px;}
.y1e1{bottom:222.673995px;}
.y15f{bottom:222.696941px;}
.yec{bottom:222.706734px;}
.y220{bottom:222.737996px;}
.y1a9{bottom:223.511536px;}
.y13b{bottom:226.556358px;}
.y10b{bottom:228.561004px;}
.y2d4{bottom:228.582729px;}
.y1fc{bottom:230.286042px;}
.y25{bottom:230.967913px;}
.y75{bottom:231.022518px;}
.y1c9{bottom:232.860170px;}
.y1bb{bottom:232.870767px;}
.y262{bottom:233.901808px;}
.y51{bottom:234.568726px;}
.y23a{bottom:234.665625px;}
.y2a8{bottom:235.370788px;}
.y197{bottom:236.072064px;}
.y11c{bottom:236.102115px;}
.ybd{bottom:236.289977px;}
.y1e0{bottom:236.289993px;}
.y15e{bottom:236.312939px;}
.yeb{bottom:236.322733px;}
.y21f{bottom:236.353994px;}
.y205{bottom:237.037770px;}
.y130{bottom:237.563259px;}
.y1f2{bottom:238.319907px;}
.y246{bottom:240.292015px;}
.y13a{bottom:244.560876px;}
.y100{bottom:246.461403px;}
.y10a{bottom:246.565523px;}
.y2d3{bottom:247.712530px;}
.y196{bottom:249.688063px;}
.y11b{bottom:249.718113px;}
.ybc{bottom:249.905975px;}
.y1df{bottom:249.905992px;}
.y15d{bottom:249.928937px;}
.yea{bottom:249.938731px;}
.y21e{bottom:249.969993px;}
.y74{bottom:250.152319px;}
.y1ba{bottom:250.375379px;}
.y24{bottom:251.222997px;}
.y261{bottom:253.031609px;}
.y2a7{bottom:253.375306px;}
.y1c8{bottom:253.865704px;}
.y50{bottom:257.074374px;}
.y147{bottom:258.324262px;}
.y12f{bottom:258.943625px;}
.y4f{bottom:259.324915px;}
.y245{bottom:259.421816px;}
.y1f1{bottom:259.700273px;}
.y89{bottom:260.430547px;}
.y139{bottom:262.565395px;}
.y195{bottom:263.304061px;}
.y11a{bottom:263.334111px;}
.ybb{bottom:263.521973px;}
.y1de{bottom:263.521990px;}
.y15c{bottom:263.544936px;}
.ye9{bottom:263.554729px;}
.y21d{bottom:263.585991px;}
.yff{bottom:264.465921px;}
.y109{bottom:264.570042px;}
.y2d2{bottom:266.842331px;}
.y73{bottom:269.282120px;}
.y2d{bottom:271.478080px;}
.y260{bottom:272.161410px;}
.y146{bottom:276.328781px;}
.y37{bottom:276.372182px;}
.y194{bottom:276.920059px;}
.yba{bottom:277.137972px;}
.y1dd{bottom:277.137988px;}
.y15b{bottom:277.160934px;}
.ye8{bottom:277.170728px;}
.y21c{bottom:277.201990px;}
.y1b9{bottom:278.382758px;}
.y88{bottom:279.560348px;}
.y138{bottom:280.569913px;}
.yfe{bottom:285.846287px;}
.y2d1{bottom:285.972132px;}
.y2a6{bottom:289.384343px;}
.yb9{bottom:290.753970px;}
.y1dc{bottom:290.753987px;}
.y15a{bottom:290.776932px;}
.ye7{bottom:290.786726px;}
.y21b{bottom:290.817988px;}
.y25f{bottom:291.291211px;}
.y23{bottom:291.733163px;}
.y145{bottom:294.333299px;}
.y1b8{bottom:295.887369px;}
.y87{bottom:298.690149px;}
.y36{bottom:298.877830px;}
.y108{bottom:300.579079px;}
.y193{bottom:304.152056px;}
.yb8{bottom:304.369968px;}
.y1db{bottom:304.369985px;}
.y159{bottom:304.392931px;}
.ye6{bottom:304.402724px;}
.y21a{bottom:304.433986px;}
.y2d0{bottom:305.101933px;}
.y2a5{bottom:307.388862px;}
.y72{bottom:307.541722px;}
.y25e{bottom:310.421012px;}
.y22{bottom:311.988247px;}
.y144{bottom:312.337818px;}
.y137{bottom:316.578950px;}
.y1b7{bottom:316.892904px;}
.y192{bottom:317.768054px;}
.y86{bottom:317.819950px;}
.yb7{bottom:317.985967px;}
.y1da{bottom:317.985983px;}
.y158{bottom:318.008929px;}
.ye5{bottom:318.018723px;}
.y219{bottom:318.049985px;}
.y4e{bottom:319.570949px;}
.y35{bottom:321.383478px;}
.y107{bottom:321.959444px;}
.y2cf{bottom:324.231734px;}
.y2a4{bottom:325.393380px;}
.y71{bottom:326.671523px;}
.y191{bottom:331.384053px;}
.yb6{bottom:331.601965px;}
.y1d9{bottom:331.601982px;}
.y157{bottom:331.624927px;}
.ye4{bottom:331.634721px;}
.y218{bottom:331.665983px;}
.y21{bottom:332.243330px;}
.y136{bottom:337.959316px;}
.y4d{bottom:342.076597px;}
.y2ce{bottom:343.361535px;}
.y2a3{bottom:343.397899px;}
.y34{bottom:343.889127px;}
.y190{bottom:345.000051px;}
.y1d8{bottom:345.217980px;}
.y156{bottom:345.240926px;}
.ye3{bottom:345.250719px;}
.y217{bottom:345.281981px;}
.y70{bottom:345.801324px;}
.y33{bottom:346.757009px;}
.y253{bottom:350.144996px;}
.y20{bottom:352.498413px;}
.y85{bottom:356.079552px;}
.y18f{bottom:358.616049px;}
.y155{bottom:358.856924px;}
.y216{bottom:358.897980px;}
.y2a2{bottom:361.402418px;}
.y2cd{bottom:362.491336px;}
.y4c{bottom:364.582245px;}
.y6f{bottom:364.931125px;}
.y143{bottom:366.351373px;}
.y18e{bottom:372.232048px;}
.y154{bottom:372.472922px;}
.y1f{bottom:372.753497px;}
.y255{bottom:374.624995px;}
.y84{bottom:375.209353px;}
.y2cc{bottom:381.621137px;}
.y6e{bottom:384.060926px;}
.y142{bottom:384.355892px;}
.y18d{bottom:385.848046px;}
.y153{bottom:386.088921px;}
.y4b{bottom:387.087894px;}
.y4a{bottom:389.338477px;}
.y1e{bottom:393.008580px;}
.y8d{bottom:395.724269px;}
.y2a1{bottom:397.411455px;}
.y29b{bottom:399.268809px;}
.y18c{bottom:399.464044px;}
.y2cb{bottom:400.750938px;}
.y6d{bottom:403.190727px;}
.y141{bottom:405.736258px;}
.y18b{bottom:413.080043px;}
.y1d{bottom:413.263664px;}
.y83{bottom:413.468955px;}
.y2a0{bottom:415.415973px;}
.y29a{bottom:417.273328px;}
.y2ca{bottom:419.880739px;}
.y82{bottom:432.598756px;}
.y32{bottom:433.403767px;}
.y29f{bottom:433.420492px;}
.y1c{bottom:433.518747px;}
.y299{bottom:435.277846px;}
.y2c9{bottom:439.010540px;}
.y6c{bottom:441.450329px;}
.y29e{bottom:451.425010px;}
.y81{bottom:451.728557px;}
.y57{bottom:453.294157px;}
.y1b{bottom:453.773830px;}
.y31{bottom:455.909415px;}
.y30{bottom:457.743529px;}
.y2c8{bottom:458.140341px;}
.y6b{bottom:460.580129px;}
.y8c{bottom:462.115931px;}
.y29d{bottom:469.429529px;}
.y80{bottom:470.858358px;}
.y298{bottom:471.286883px;}
.y14e{bottom:471.464991px;}
.ya{bottom:472.754126px;}
.y1a{bottom:474.028914px;}
.y56{bottom:475.799805px;}
.y2c7{bottom:477.270141px;}
.y6a{bottom:479.709930px;}
.y297{bottom:489.291402px;}
.y113{bottom:492.344990px;}
.y19{bottom:494.283997px;}
.y8e{bottom:494.504990px;}
.y2c6{bottom:496.399942px;}
.y1d4{bottom:497.384990px;}
.y9{bottom:497.510339px;}
.y55{bottom:498.305453px;}
.y69{bottom:498.839731px;}
.ydd{bottom:499.184990px;}
.y212{bottom:500.755977px;}
.yb0{bottom:504.224989px;}
.y296{bottom:507.295920px;}
.y2ba{bottom:508.477556px;}
.y7f{bottom:509.117960px;}
.y185{bottom:512.504989px;}
.y18{bottom:514.539080px;}
.y2c5{bottom:515.529743px;}
.y29c{bottom:515.566108px;}
.y68{bottom:517.969532px;}
.y54{bottom:520.811101px;}
.y274{bottom:522.294559px;}
.y53{bottom:523.061663px;}
.y295{bottom:525.300439px;}
.y2b9{bottom:527.607357px;}
.y7e{bottom:528.247761px;}
.y3f{bottom:530.178066px;}
.y2c4{bottom:534.659544px;}
.y2c{bottom:534.794164px;}
.y67{bottom:537.099333px;}
.y211{bottom:537.890297px;}
.y273{bottom:541.424360px;}
.y294{bottom:543.304957px;}
.y2b8{bottom:546.737158px;}
.y7d{bottom:547.377562px;}
.y7{bottom:547.743832px;}
.y3e{bottom:552.683714px;}
.y2c3{bottom:553.789345px;}
.y3d{bottom:554.433124px;}
.y17{bottom:555.049247px;}
.y272{bottom:560.554161px;}
.y2b7{bottom:565.866959px;}
.y7c{bottom:566.507363px;}
.y2c2{bottom:572.919146px;}
.y16{bottom:575.304330px;}
.y66{bottom:575.358935px;}
.y6{bottom:577.001174px;}
.y210{bottom:577.275181px;}
.y49{bottom:579.031005px;}
.y271{bottom:579.683962px;}
.y293{bottom:581.564559px;}
.y2b6{bottom:584.996760px;}
.y2c1{bottom:592.048947px;}
.y65{bottom:594.488736px;}
.y15{bottom:595.559414px;}
.y270{bottom:598.813763px;}
.y48{bottom:601.536653px;}
.y7b{bottom:604.766965px;}
.y5{bottom:606.258517px;}
.y2c0{bottom:611.178748px;}
.y64{bottom:613.618537px;}
.y2b{bottom:615.814497px;}
.y26f{bottom:617.943564px;}
.y2b5{bottom:623.256361px;}
.y47{bottom:624.042301px;}
.y41{bottom:626.451204px;}
.y2bf{bottom:630.308549px;}
.y63{bottom:632.748338px;}
.y292{bottom:635.244366px;}
.y2f{bottom:635.295122px;}
.y4{bottom:635.515859px;}
.y14{bottom:636.069581px;}
.y26e{bottom:637.073365px;}
.y286{bottom:637.644927px;}
.y2b4{bottom:642.386162px;}
.y46{bottom:646.547950px;}
.y2be{bottom:649.438350px;}
.y62{bottom:651.878139px;}
.y117{bottom:652.544983px;}
.yb3{bottom:652.904983px;}
.y291{bottom:653.248885px;}
.y213{bottom:655.064983px;}
.y285{bottom:655.649446px;}
.y26d{bottom:656.203166px;}
.y13{bottom:656.324664px;}
.y92{bottom:657.584983px;}
.y188{bottom:660.104983px;}
.y2b3{bottom:661.515963px;}
.y58{bottom:665.836088px;}
.y2bd{bottom:668.568151px;}
.y45{bottom:669.053598px;}
.y61{bottom:671.007940px;}
.y290{bottom:671.253403px;}
.y284{bottom:673.653964px;}
.y26c{bottom:675.332967px;}
.y2a{bottom:676.579747px;}
.y2b2{bottom:680.645764px;}
.yce{bottom:680.984982px;}
.y12d{bottom:681.704982px;}
.y8b{bottom:686.035258px;}
.y2bc{bottom:687.697952px;}
.y28f{bottom:689.257922px;}
.y60{bottom:690.137741px;}
.ya4{bottom:690.344982px;}
.y44{bottom:691.559246px;}
.y283{bottom:691.658483px;}
.yfc{bottom:692.504982px;}
.y2e{bottom:693.968153px;}
.y3{bottom:694.030545px;}
.y1a7{bottom:695.744981px;}
.y12{bottom:696.834831px;}
.y42{bottom:698.848709px;}
.y231{bottom:701.199933px;}
.y1f0{bottom:705.776096px;}
.y28e{bottom:707.262441px;}
.y27d{bottom:714.164128px;}
.y26b{bottom:715.843133px;}
.y11{bottom:717.089914px;}
.y2b1{bottom:718.905366px;}
.y2{bottom:723.287887px;}
.y28d{bottom:725.266959px;}
.y2bb{bottom:725.957554px;}
.y282{bottom:727.667520px;}
.y5f{bottom:728.397343px;}
.y27c{bottom:732.168647px;}
.y5c{bottom:735.603604px;}
.y10{bottom:737.344997px;}
.y2b0{bottom:738.035167px;}
.y8a{bottom:740.048814px;}
.y25d{bottom:741.396021px;}
.y28c{bottom:743.271478px;}
.y277{bottom:743.525002px;}
.y281{bottom:745.672038px;}
.y5e{bottom:747.527144px;}
.y27b{bottom:750.173166px;}
.y2af{bottom:757.164968px;}
.yf{bottom:757.600081px;}
.y5b{bottom:758.109252px;}
.y28b{bottom:761.275996px;}
.y280{bottom:763.676557px;}
.y27a{bottom:768.177684px;}
.y106{bottom:772.946689px;}
.y2ae{bottom:776.294769px;}
.ye{bottom:777.855164px;}
.y28a{bottom:779.280515px;}
.y5a{bottom:780.614900px;}
.y27f{bottom:781.681075px;}
.y276{bottom:785.160451px;}
.y279{bottom:786.182203px;}
.y43{bottom:788.112444px;}
.yb{bottom:788.568567px;}
.y40{bottom:790.083237px;}
.y7a{bottom:793.159015px;}
.y2ad{bottom:795.424570px;}
.y289{bottom:797.285033px;}
.y25c{bottom:799.910706px;}
.y59{bottom:803.120549px;}
.y17b{bottom:806.662401px;}
.y1fb{bottom:811.463588px;}
.y278{bottom:814.314263px;}
.y1b5{bottom:814.487506px;}
.y2ac{bottom:814.554371px;}
.y288{bottom:815.289552px;}
.yaf{bottom:818.215282px;}
.yd{bottom:818.365331px;}
.yc{bottom:825.379588px;}
.y275{bottom:826.795900px;}
.y27e{bottom:827.817654px;}
.y287{bottom:833.294070px;}
.h1b{height:24.479999px;}
.h49{height:25.199999px;}
.h3b{height:32.039999px;}
.h1e{height:39.005418px;}
.h2b{height:47.879998px;}
.h1f{height:48.239998px;}
.h36{height:51.345963px;}
.h22{height:51.348887px;}
.h26{height:51.839998px;}
.h31{height:53.999998px;}
.h15{height:55.617263px;}
.h53{height:56.040414px;}
.h50{height:56.163295px;}
.h54{height:56.676334px;}
.ha{height:58.793755px;}
.h8{height:59.213711px;}
.h9{height:59.885639px;}
.h6{height:61.857629px;}
.h47{height:63.359997px;}
.hc{height:63.465928px;}
.he{height:64.186109px;}
.h2d{height:64.672231px;}
.h4b{height:65.519997px;}
.h5{height:71.396918px;}
.h4{height:72.722861px;}
.h55{height:75.515452px;}
.h52{height:75.587470px;}
.h1c{height:77.000534px;}
.h4a{height:79.975604px;}
.h3c{height:80.437932px;}
.h7{height:80.882509px;}
.h21{height:84.000081px;}
.h35{height:84.008131px;}
.h38{height:84.239996px;}
.h23{height:84.599996px;}
.h2c{height:84.600082px;}
.h42{height:90.431209px;}
.h44{height:91.691927px;}
.h4e{height:94.870618px;}
.h3{height:95.160092px;}
.h43{height:100.755491px;}
.h41{height:100.759693px;}
.h24{height:106.875360px;}
.h39{height:108.287188px;}
.h46{height:108.592412px;}
.h17{height:109.206407px;}
.h28{height:109.439995px;}
.h51{height:111.600108px;}
.h16{height:117.619025px;}
.h29{height:117.884288px;}
.h40{height:119.159995px;}
.h4f{height:119.635351px;}
.h19{height:123.119995px;}
.h2e{height:125.999995px;}
.h11{height:126.031630px;}
.h27{height:131.315143px;}
.h1a{height:133.592375px;}
.h18{height:134.412733px;}
.hb{height:136.834341px;}
.h2f{height:137.512022px;}
.hf{height:142.737170px;}
.h12{height:144.486186px;}
.h14{height:144.486272px;}
.h13{height:144.486359px;}
.hd{height:146.872245px;}
.h10{height:147.211063px;}
.h20{height:149.300451px;}
.h4d{height:154.439994px;}
.h48{height:158.584955px;}
.h37{height:164.159993px;}
.h4c{height:164.936912px;}
.h32{height:168.957662px;}
.h34{height:199.079992px;}
.h1d{height:205.559991px;}
.h3d{height:245.519990px;}
.h30{height:273.239989px;}
.h3f{height:275.759989px;}
.h3e{height:339.119986px;}
.h25{height:341.639986px;}
.h2a{height:355.319985px;}
.h45{height:368.999985px;}
.h33{height:395.999984px;}
.h3a{height:422.999982px;}
.h1{height:896.250000px;}
.h2{height:896.624963px;}
.h0{height:896.624973px;}
.wf{width:110.159995px;}
.w8{width:116.999995px;}
.w11{width:127.439995px;}
.wc{width:132.119994px;}
.wa{width:138.599994px;}
.wd{width:160.559993px;}
.w9{width:163.799993px;}
.w5{width:164.159993px;}
.w12{width:164.519993px;}
.w4{width:175.679993px;}
.w15{width:177.119993px;}
.wb{width:182.879992px;}
.w1b{width:183.599992px;}
.w1c{width:191.519992px;}
.w7{width:192.959992px;}
.w3{width:196.559992px;}
.w1a{width:200.879992px;}
.w16{width:254.519989px;}
.w13{width:329.399986px;}
.w1d{width:488.519980px;}
.w10{width:496.439979px;}
.w17{width:516.959978px;}
.w1e{width:520.559978px;}
.w14{width:525.239978px;}
.w18{width:525.599978px;}
.w19{width:526.319978px;}
.we{width:527.399978px;}
.w1f{width:527.759978px;}
.w6{width:528.839978px;}
.w2{width:626.624974px;}
.w0{width:626.625000px;}
.w1{width:627.000000px;}
.x0{left:0.000000px;}
.x2a{left:1.030616px;}
.x30{left:5.584545px;}
.x4f{left:14.761427px;}
.x39{left:34.428065px;}
.x22{left:38.036439px;}
.x4e{left:39.641355px;}
.x21{left:42.421453px;}
.x31{left:45.120582px;}
.x4d{left:46.799998px;}
.x20{left:47.879998px;}
.x27{left:49.679998px;}
.x48{left:50.759998px;}
.x43{left:51.839998px;}
.x2f{left:52.919998px;}
.x55{left:54.359998px;}
.x33{left:55.799998px;}
.x47{left:57.959998px;}
.x4b{left:59.470794px;}
.x7{left:62.655726px;}
.x23{left:63.719997px;}
.x3b{left:67.319997px;}
.x16{left:69.264318px;}
.x35{left:70.972266px;}
.x29{left:73.079997px;}
.x3c{left:78.119997px;}
.xb{left:81.592119px;}
.x5b{left:82.734984px;}
.x36{left:85.389947px;}
.x5d{left:86.726220px;}
.x49{left:87.806385px;}
.x5c{left:96.449363px;}
.xc{left:98.348277px;}
.x12{left:100.631257px;}
.xe{left:104.589060px;}
.x51{left:106.237681px;}
.x2d{left:108.557827px;}
.x58{left:112.365973px;}
.x45{left:120.555284px;}
.x3d{left:121.873713px;}
.x57{left:124.322099px;}
.x26{left:132.241505px;}
.x10{left:134.349309px;}
.x3f{left:140.405707px;}
.x53{left:147.051906px;}
.x3e{left:149.038733px;}
.x11{left:154.639557px;}
.x13{left:158.844424px;}
.x34{left:160.748703px;}
.x14{left:162.738375px;}
.x56{left:164.558768px;}
.x1f{left:169.699855px;}
.x50{left:174.164180px;}
.x1a{left:175.438268px;}
.x4c{left:176.478189px;}
.xf{left:179.134673px;}
.x44{left:183.065899px;}
.x25{left:186.823607px;}
.x1b{left:193.407622px;}
.x4a{left:198.564082px;}
.xa{left:199.789292px;}
.x40{left:202.155579px;}
.x41{left:209.346837px;}
.x2c{left:210.999596px;}
.x1e{left:213.233647px;}
.x54{left:215.623803px;}
.x15{left:218.936482px;}
.x52{left:221.399991px;}
.x2e{left:223.026052px;}
.x46{left:226.102624px;}
.x17{left:232.381506px;}
.x37{left:237.689888px;}
.x1c{left:239.226731px;}
.x59{left:240.648168px;}
.x32{left:248.399990px;}
.x24{left:253.074608px;}
.x9{left:255.524435px;}
.x2b{left:256.679989px;}
.x3a{left:258.839989px;}
.x42{left:259.919989px;}
.x28{left:264.959989px;}
.x2{left:269.262324px;}
.x38{left:273.558270px;}
.x6{left:280.532730px;}
.x1{left:285.262433px;}
.xd{left:292.561271px;}
.x5{left:299.961434px;}
.x19{left:312.945209px;}
.x4{left:319.460469px;}
.x3{left:330.572632px;}
.x18{left:346.973386px;}
.x8{left:358.751514px;}
.x1d{left:367.263634px;}
.x5a{left:377.147094px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:55.480485pt;}
.v2{vertical-align:69.823166pt;}
.v4{vertical-align:72.018007pt;}
.v1{vertical-align:73.498788pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000058pt;}
.ls1{letter-spacing:0.016404pt;}
.ws4{word-spacing:-84.501207pt;}
.ws7{word-spacing:-64.242864pt;}
.ws5{word-spacing:-60.595581pt;}
.ws9{word-spacing:-53.688049pt;}
.ws1e{word-spacing:-51.767641pt;}
.wsf{word-spacing:-51.204851pt;}
.ws16{word-spacing:-50.575508pt;}
.wsa{word-spacing:-48.012049pt;}
.ws1c{word-spacing:-47.786713pt;}
.wsc{word-spacing:-46.523428pt;}
.ws8{word-spacing:-46.523390pt;}
.ws14{word-spacing:-44.815125pt;}
.wsd{word-spacing:-44.807248pt;}
.wse{word-spacing:-41.602441pt;}
.ws13{word-spacing:-41.162622pt;}
.ws0{word-spacing:-40.616914pt;}
.wsb{word-spacing:-35.848997pt;}
.ws19{word-spacing:-34.887832pt;}
.ws10{word-spacing:-33.893388pt;}
.ws1b{word-spacing:-32.891466pt;}
.ws1d{word-spacing:-32.890094pt;}
.ws17{word-spacing:-29.908129pt;}
.ws21{word-spacing:-27.733360pt;}
.ws20{word-spacing:-17.334350pt;}
.ws1{word-spacing:-17.225923pt;}
.ws6{word-spacing:-15.203816pt;}
.ws3{word-spacing:-14.185160pt;}
.ws23{word-spacing:-13.424969pt;}
.ws22{word-spacing:-13.174106pt;}
.ws18{word-spacing:-12.163111pt;}
.ws12{word-spacing:-12.163053pt;}
.ws1a{word-spacing:-12.162360pt;}
.ws15{word-spacing:-9.239245pt;}
.ws1f{word-spacing:-0.074475pt;}
.ws11{word-spacing:-0.071704pt;}
.ws2{word-spacing:0.000000pt;}
._2c{margin-left:-11.522111pt;}
._2{margin-left:-10.519651pt;}
._3{margin-left:-8.550406pt;}
._6{margin-left:-6.728169pt;}
._5{margin-left:-5.675801pt;}
._4{margin-left:-4.558581pt;}
._0{margin-left:-2.927587pt;}
._1{margin-left:-1.321308pt;}
._7{width:1.167712pt;}
._9{width:2.190594pt;}
._18{width:3.137062pt;}
._12{width:4.102504pt;}
._f{width:5.202506pt;}
._13{width:6.220518pt;}
._8{width:7.465654pt;}
._a{width:8.966030pt;}
._e{width:10.195959pt;}
._16{width:11.238808pt;}
._19{width:12.263595pt;}
._1e{width:13.367787pt;}
._1d{width:14.520344pt;}
._10{width:15.447277pt;}
._14{width:17.070399pt;}
._11{width:18.698093pt;}
._21{width:19.707066pt;}
._1f{width:20.739234pt;}
._15{width:22.124170pt;}
._1b{width:23.235798pt;}
._1a{width:24.185844pt;}
._20{width:25.687191pt;}
._d{width:26.828688pt;}
._1c{width:28.497821pt;}
._b{width:32.121264pt;}
._c{width:33.033800pt;}
._2b{width:36.230295pt;}
._26{width:38.444151pt;}
._17{width:39.722476pt;}
._23{width:41.372758pt;}
._22{width:42.293438pt;}
._25{width:43.644853pt;}
._27{width:44.620635pt;}
._29{width:47.420743pt;}
._24{width:48.417148pt;}
._28{width:103.144477pt;}
._2a{width:118.088782pt;}
.fsb{font-size:48.627605pt;}
.fs12{font-size:64.012421pt;}
.fsd{font-size:64.016066pt;}
.fs2{font-size:69.337401pt;}
.fs1e{font-size:70.657733pt;}
.fsa{font-size:71.704201pt;}
.fs1a{font-size:74.474636pt;}
.fs3{font-size:74.658737pt;}
.fs5{font-size:80.020082pt;}
.fs1{font-size:90.662753pt;}
.fs13{font-size:93.220840pt;}
.fs1d{font-size:95.984089pt;}
.fs15{font-size:106.186653pt;}
.fs0{font-size:106.666770pt;}
.fs11{font-size:106.676992pt;}
.fs10{font-size:107.583197pt;}
.fs17{font-size:107.667021pt;}
.fs1c{font-size:111.711960pt;}
.fs16{font-size:118.309692pt;}
.fs14{font-size:118.314626pt;}
.fs9{font-size:121.918663pt;}
.fse{font-size:125.495799pt;}
.fs18{font-size:127.512005pt;}
.fsc{font-size:136.254119pt;}
.fs7{font-size:138.674803pt;}
.fs6{font-size:149.357492pt;}
.fsf{font-size:154.193622pt;}
.fs4{font-size:160.040165pt;}
.fs8{font-size:170.682836pt;}
.fs19{font-size:186.214536pt;}
.fs1b{font-size:193.673168pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y1a6{bottom:4.088971pt;}
.y12c{bottom:4.115683pt;}
.ycd{bottom:4.282671pt;}
.y1ef{bottom:4.282686pt;}
.y16f{bottom:4.303082pt;}
.yfb{bottom:4.311787pt;}
.ya3{bottom:4.321936pt;}
.y230{bottom:4.339576pt;}
.y1d3{bottom:4.711302pt;}
.y1c6{bottom:4.720722pt;}
.ye1{bottom:4.775530pt;}
.y214{bottom:4.794963pt;}
.y189{bottom:4.833264pt;}
.y118{bottom:4.841897pt;}
.y184{bottom:4.893763pt;}
.y93{bottom:4.900608pt;}
.yb4{bottom:4.920237pt;}
.y254{bottom:4.935924pt;}
.y1b4{bottom:4.959215pt;}
.y17a{bottom:4.959217pt;}
.y1a8{bottom:6.287993pt;}
.ye0{bottom:7.685878pt;}
.y187{bottom:8.130172pt;}
.y151{bottom:8.134618pt;}
.y116{bottom:8.175185pt;}
.y1d7{bottom:8.190411pt;}
.y91{bottom:8.272370pt;}
.yb2{bottom:8.372320pt;}
.y25b{bottom:8.472385pt;}
.yfd{bottom:8.879395pt;}
.ya5{bottom:9.041690pt;}
.y12e{bottom:10.143430pt;}
.ycf{bottom:10.385110pt;}
.y252{bottom:12.055619pt;}
.y256{bottom:12.647285pt;}
.y1a5{bottom:16.192081pt;}
.y12b{bottom:16.218792pt;}
.ycc{bottom:16.385781pt;}
.y1ee{bottom:16.385795pt;}
.y16e{bottom:16.406192pt;}
.yfa{bottom:16.414897pt;}
.ya2{bottom:16.425046pt;}
.y22f{bottom:16.442685pt;}
.y1d2{bottom:20.270957pt;}
.y1c5{bottom:20.280377pt;}
.y183{bottom:20.453418pt;}
.y1b3{bottom:20.518870pt;}
.y179{bottom:20.518872pt;}
.y1a4{bottom:28.295190pt;}
.y12a{bottom:28.321902pt;}
.ycb{bottom:28.488890pt;}
.y1ed{bottom:28.488905pt;}
.y16d{bottom:28.509301pt;}
.yf9{bottom:28.518007pt;}
.ya1{bottom:28.528156pt;}
.y22e{bottom:28.545795pt;}
.y20f{bottom:31.655305pt;}
.y8{bottom:31.954684pt;}
.y18a{bottom:32.840008pt;}
.y244{bottom:34.547987pt;}
.y1d1{bottom:35.830612pt;}
.y1c4{bottom:35.840032pt;}
.y182{bottom:36.013073pt;}
.y1b2{bottom:36.078525pt;}
.y178{bottom:36.078527pt;}
.ydf{bottom:39.960837pt;}
.y1a3{bottom:40.398300pt;}
.y129{bottom:40.425012pt;}
.yca{bottom:40.592000pt;}
.y16c{bottom:40.612411pt;}
.yf8{bottom:40.621116pt;}
.ya0{bottom:40.631265pt;}
.y22d{bottom:40.648905pt;}
.y25a{bottom:41.295977pt;}
.y152{bottom:42.440007pt;}
.y250{bottom:42.549976pt;}
.y1d6{bottom:43.154950pt;}
.y90{bottom:44.581698pt;}
.y170{bottom:45.000007pt;}
.y186{bottom:45.111896pt;}
.y150{bottom:45.116342pt;}
.y115{bottom:45.156908pt;}
.yb1{bottom:45.354044pt;}
.y20e{bottom:47.659322pt;}
.y251{bottom:48.200007pt;}
.yae{bottom:48.499979pt;}
.y243{bottom:48.551502pt;}
.y2dd{bottom:50.146240pt;}
.y181{bottom:51.572728pt;}
.y177{bottom:51.638182pt;}
.y1a2{bottom:52.501410pt;}
.y128{bottom:52.528121pt;}
.yc9{bottom:52.695110pt;}
.y1ec{bottom:52.695124pt;}
.y16b{bottom:52.715520pt;}
.yf7{bottom:52.724226pt;}
.y9f{bottom:52.734375pt;}
.y22c{bottom:52.752014pt;}
.y24f{bottom:56.553490pt;}
.y1c7{bottom:57.160007pt;}
.y204{bottom:57.661803pt;}
.y239{bottom:58.801510pt;}
.ydc{bottom:60.793485pt;}
.y215{bottom:61.640007pt;}
.y1b1{bottom:61.751956pt;}
.y242{bottom:62.555016pt;}
.y20d{bottom:63.663338pt;}
.yad{bottom:64.503996pt;}
.y1a1{bottom:64.604519pt;}
.y127{bottom:64.631231pt;}
.yc8{bottom:64.798219pt;}
.y1eb{bottom:64.798234pt;}
.y16a{bottom:64.818630pt;}
.yf6{bottom:64.827336pt;}
.y9e{bottom:64.837485pt;}
.y22b{bottom:64.855124pt;}
.yd5{bottom:65.096286pt;}
.y1d0{bottom:66.949922pt;}
.y1c3{bottom:66.959342pt;}
.y180{bottom:67.132383pt;}
.y2dc{bottom:67.150508pt;}
.y176{bottom:67.197837pt;}
.y1fa{bottom:67.803769pt;}
.y24e{bottom:70.557005pt;}
.ye2{bottom:71.240006pt;}
.y26a{bottom:71.878578pt;}
.yde{bottom:72.235796pt;}
.y238{bottom:72.805024pt;}
.y203{bottom:73.665819pt;}
.yb5{bottom:73.800006pt;}
.y259{bottom:74.119570pt;}
.y1b6{bottom:76.360006pt;}
.y241{bottom:76.558530pt;}
.y1a0{bottom:76.707629pt;}
.y126{bottom:76.734340pt;}
.ydb{bottom:76.797501pt;}
.yc7{bottom:76.901329pt;}
.y1ea{bottom:76.901344pt;}
.y169{bottom:76.921740pt;}
.yf5{bottom:76.930445pt;}
.y9d{bottom:76.940594pt;}
.y22a{bottom:76.958233pt;}
.y1b0{bottom:77.311611pt;}
.y1d5{bottom:78.119489pt;}
.y20c{bottom:79.667355pt;}
.yac{bottom:80.508012pt;}
.y8f{bottom:80.891027pt;}
.yd4{bottom:81.100302pt;}
.y14f{bottom:82.098066pt;}
.y114{bottom:82.138632pt;}
.y1cf{bottom:82.509577pt;}
.y1c2{bottom:82.518997pt;}
.y17f{bottom:82.692038pt;}
.y175{bottom:82.757492pt;}
.y1f9{bottom:83.807786pt;}
.y2db{bottom:84.154775pt;}
.y24d{bottom:84.560519pt;}
.y237{bottom:86.808538pt;}
.y125{bottom:88.837450pt;}
.y269{bottom:88.882846pt;}
.yc6{bottom:89.004438pt;}
.y1e9{bottom:89.004453pt;}
.y168{bottom:89.024849pt;}
.yf4{bottom:89.033555pt;}
.y9c{bottom:89.043704pt;}
.y229{bottom:89.061343pt;}
.y202{bottom:89.669836pt;}
.y112{bottom:91.137222pt;}
.y17c{bottom:92.360005pt;}
.yda{bottom:92.801518pt;}
.y1af{bottom:92.871266pt;}
.y20b{bottom:95.671371pt;}
.yab{bottom:96.512029pt;}
.yd3{bottom:97.104319pt;}
.y29{bottom:97.277701pt;}
.y1ce{bottom:98.069233pt;}
.y1c1{bottom:98.078652pt;}
.y174{bottom:98.317147pt;}
.y24c{bottom:98.564034pt;}
.y1f8{bottom:99.811802pt;}
.y236{bottom:100.812053pt;}
.y19f{bottom:100.913848pt;}
.y124{bottom:100.940560pt;}
.yc5{bottom:101.107548pt;}
.y1e8{bottom:101.107563pt;}
.y167{bottom:101.127959pt;}
.yf3{bottom:101.136664pt;}
.y9b{bottom:101.146814pt;}
.y2da{bottom:101.159043pt;}
.y228{bottom:101.164453pt;}
.y14d{bottom:101.589434pt;}
.y5d{bottom:104.376119pt;}
.y240{bottom:104.565559pt;}
.y119{bottom:104.840005pt;}
.y140{bottom:105.359330pt;}
.y201{bottom:105.673852pt;}
.y268{bottom:105.887113pt;}
.y258{bottom:106.943162pt;}
.y111{bottom:107.141238pt;}
.y17e{bottom:107.587486pt;}
.y1ae{bottom:108.430921pt;}
.yd9{bottom:108.805534pt;}
.y20a{bottom:111.675388pt;}
.yaa{bottom:112.516045pt;}
.y19e{bottom:113.016958pt;}
.yd2{bottom:113.108335pt;}
.yc4{bottom:113.210658pt;}
.y1e7{bottom:113.210673pt;}
.y166{bottom:113.231069pt;}
.yf2{bottom:113.239774pt;}
.y9a{bottom:113.249923pt;}
.y227{bottom:113.267562pt;}
.y1cd{bottom:113.628888pt;}
.y1c0{bottom:113.638307pt;}
.y173{bottom:113.876802pt;}
.y235{bottom:114.815567pt;}
.y135{bottom:115.143243pt;}
.y28{bottom:115.282219pt;}
.y3c{bottom:115.498186pt;}
.y1f7{bottom:115.815819pt;}
.y14c{bottom:117.593451pt;}
.y2d9{bottom:118.163310pt;}
.y23f{bottom:118.569074pt;}
.y79{bottom:120.332012pt;}
.y13f{bottom:121.363347pt;}
.y200{bottom:121.677869pt;}
.y267{bottom:122.891381pt;}
.y105{bottom:123.052704pt;}
.y10f{bottom:123.145255pt;}
.y1ad{bottom:123.990576pt;}
.yd8{bottom:124.809551pt;}
.y19d{bottom:125.120067pt;}
.y123{bottom:125.146779pt;}
.yc3{bottom:125.313767pt;}
.y1e6{bottom:125.313782pt;}
.y165{bottom:125.334178pt;}
.y99{bottom:125.353033pt;}
.y226{bottom:125.370672pt;}
.y17d{bottom:126.259072pt;}
.y24b{bottom:126.571062pt;}
.y209{bottom:127.679404pt;}
.ya9{bottom:128.520062pt;}
.y234{bottom:128.819082pt;}
.y94{bottom:128.840004pt;}
.y1bf{bottom:129.197962pt;}
.y134{bottom:131.147259pt;}
.y1f6{bottom:131.819835pt;}
.y23e{bottom:132.572588pt;}
.y14b{bottom:133.597467pt;}
.y2d8{bottom:135.167578pt;}
.y3b{bottom:135.503207pt;}
.y19c{bottom:137.223177pt;}
.y122{bottom:137.249889pt;}
.y78{bottom:137.336279pt;}
.y13e{bottom:137.367363pt;}
.y1e5{bottom:137.416892pt;}
.y164{bottom:137.437288pt;}
.yf1{bottom:137.445993pt;}
.y98{bottom:137.456142pt;}
.y225{bottom:137.473782pt;}
.y1ff{bottom:137.681885pt;}
.y172{bottom:138.772250pt;}
.y104{bottom:139.056720pt;}
.y257{bottom:139.080003pt;}
.y10e{bottom:139.149271pt;}
.y1ac{bottom:139.550231pt;}
.y266{bottom:139.895648pt;}
.y24a{bottom:140.574577pt;}
.y208{bottom:143.683421pt;}
.ya8{bottom:144.524078pt;}
.y1cc{bottom:144.748198pt;}
.y1be{bottom:144.757617pt;}
.yd1{bottom:145.116368pt;}
.y23d{bottom:146.576103pt;}
.y133{bottom:147.151276pt;}
.y1f5{bottom:147.823852pt;}
.y19b{bottom:149.326287pt;}
.y121{bottom:149.352998pt;}
.yc2{bottom:149.519987pt;}
.y1e4{bottom:149.520001pt;}
.y163{bottom:149.540398pt;}
.yf0{bottom:149.549103pt;}
.y97{bottom:149.559252pt;}
.y224{bottom:149.576891pt;}
.y27{bottom:151.291256pt;}
.y52{bottom:151.521301pt;}
.y2d7{bottom:152.171845pt;}
.y13d{bottom:153.371380pt;}
.y1fe{bottom:153.685902pt;}
.y249{bottom:154.578091pt;}
.y103{bottom:155.060737pt;}
.y10d{bottom:155.153288pt;}
.y3a{bottom:155.508228pt;}
.yd7{bottom:156.817584pt;}
.y265{bottom:156.899916pt;}
.y171{bottom:157.443836pt;}
.y207{bottom:159.687437pt;}
.y233{bottom:159.826864pt;}
.y1cb{bottom:160.307853pt;}
.y23c{bottom:160.579617pt;}
.y2ab{bottom:161.206429pt;}
.y120{bottom:161.456108pt;}
.yc1{bottom:161.623096pt;}
.y1e3{bottom:161.623111pt;}
.y162{bottom:161.643507pt;}
.yef{bottom:161.652213pt;}
.y96{bottom:161.662362pt;}
.y223{bottom:161.680001pt;}
.y132{bottom:163.155292pt;}
.y1f4{bottom:163.827868pt;}
.yd0{bottom:164.121138pt;}
.y1ab{bottom:164.445679pt;}
.y14a{bottom:165.605500pt;}
.y248{bottom:168.581606pt;}
.y2d6{bottom:169.176113pt;}
.y26{bottom:169.295775pt;}
.y102{bottom:171.064753pt;}
.y10c{bottom:171.157304pt;}
.y77{bottom:171.344814pt;}
.y19a{bottom:173.532506pt;}
.y11f{bottom:173.559218pt;}
.yc0{bottom:173.726206pt;}
.y1e2{bottom:173.726221pt;}
.y161{bottom:173.746617pt;}
.yee{bottom:173.755322pt;}
.y95{bottom:173.765471pt;}
.y222{bottom:173.783111pt;}
.y264{bottom:173.904183pt;}
.y39{bottom:175.513248pt;}
.yd6{bottom:175.822353pt;}
.y1ca{bottom:175.867508pt;}
.y1bd{bottom:175.876927pt;}
.ya7{bottom:176.532111pt;}
.y2aa{bottom:177.210445pt;}
.y232{bottom:178.831633pt;}
.y131{bottom:179.159309pt;}
.y1f3{bottom:179.831885pt;}
.y1aa{bottom:180.005334pt;}
.y149{bottom:181.609517pt;}
.y38{bottom:181.648148pt;}
.y247{bottom:182.585120pt;}
.y13c{bottom:185.379412pt;}
.y199{bottom:185.635616pt;}
.y11e{bottom:185.662327pt;}
.y1fd{bottom:185.693935pt;}
.ybf{bottom:185.829316pt;}
.y160{bottom:185.849727pt;}
.yed{bottom:185.858432pt;}
.y221{bottom:185.886220pt;}
.y2d5{bottom:186.180381pt;}
.y101{bottom:187.068769pt;}
.y110{bottom:187.161321pt;}
.y76{bottom:188.349082pt;}
.y263{bottom:190.908451pt;}
.y1bc{bottom:191.436582pt;}
.y23b{bottom:191.587399pt;}
.y206{bottom:191.695470pt;}
.y2a9{bottom:193.214462pt;}
.ya6{bottom:195.536881pt;}
.y148{bottom:197.613533pt;}
.y198{bottom:197.738725pt;}
.y11d{bottom:197.765437pt;}
.ybe{bottom:197.932425pt;}
.y1e1{bottom:197.932440pt;}
.y15f{bottom:197.952836pt;}
.yec{bottom:197.961542pt;}
.y220{bottom:197.989330pt;}
.y1a9{bottom:198.676921pt;}
.y13b{bottom:201.383429pt;}
.y10b{bottom:203.165337pt;}
.y2d4{bottom:203.184648pt;}
.y1fc{bottom:204.698704pt;}
.y25{bottom:205.304812pt;}
.y75{bottom:205.353349pt;}
.y1c9{bottom:206.986818pt;}
.y1bb{bottom:206.996237pt;}
.y262{bottom:207.912718pt;}
.y51{bottom:208.505534pt;}
.y23a{bottom:208.591666pt;}
.y2a8{bottom:209.218478pt;}
.y197{bottom:209.841835pt;}
.y11c{bottom:209.868546pt;}
.ybd{bottom:210.035535pt;}
.y1e0{bottom:210.035550pt;}
.y15e{bottom:210.055946pt;}
.yeb{bottom:210.064651pt;}
.y21f{bottom:210.092440pt;}
.y205{bottom:210.700240pt;}
.y130{bottom:211.167342pt;}
.y1f2{bottom:211.839918pt;}
.y246{bottom:213.592902pt;}
.y13a{bottom:217.387445pt;}
.y100{bottom:219.076802pt;}
.y10a{bottom:219.169354pt;}
.y2d3{bottom:220.188916pt;}
.y196{bottom:221.944945pt;}
.y11b{bottom:221.971656pt;}
.ybc{bottom:222.138644pt;}
.y1df{bottom:222.138659pt;}
.y15d{bottom:222.159055pt;}
.yea{bottom:222.167761pt;}
.y21e{bottom:222.195549pt;}
.y74{bottom:222.357617pt;}
.y1ba{bottom:222.555892pt;}
.y24{bottom:223.309330pt;}
.y261{bottom:224.916986pt;}
.y2a7{bottom:225.222494pt;}
.y1c8{bottom:225.658404pt;}
.y50{bottom:228.510555pt;}
.y147{bottom:229.621566pt;}
.y12f{bottom:230.172111pt;}
.y4f{bottom:230.511035pt;}
.y245{bottom:230.597170pt;}
.y1f1{bottom:230.844687pt;}
.y89{bottom:231.493820pt;}
.y139{bottom:233.391462pt;}
.y195{bottom:234.048054pt;}
.y11a{bottom:234.074766pt;}
.ybb{bottom:234.241754pt;}
.y1de{bottom:234.241769pt;}
.y15c{bottom:234.262165pt;}
.ye9{bottom:234.270871pt;}
.y21d{bottom:234.298659pt;}
.yff{bottom:235.080819pt;}
.y109{bottom:235.173370pt;}
.y2d2{bottom:237.193183pt;}
.y73{bottom:239.361884pt;}
.y2d{bottom:241.313849pt;}
.y260{bottom:241.921253pt;}
.y146{bottom:245.625583pt;}
.y37{bottom:245.664162pt;}
.y194{bottom:246.151164pt;}
.yba{bottom:246.344864pt;}
.y1dd{bottom:246.344879pt;}
.y15b{bottom:246.365275pt;}
.ye8{bottom:246.373980pt;}
.y21c{bottom:246.401768pt;}
.y1b9{bottom:247.451340pt;}
.y88{bottom:248.498087pt;}
.y138{bottom:249.395478pt;}
.yfe{bottom:254.085589pt;}
.y2d1{bottom:254.197451pt;}
.y2a6{bottom:257.230527pt;}
.yb9{bottom:258.447973pt;}
.y1dc{bottom:258.447988pt;}
.y15a{bottom:258.468384pt;}
.ye7{bottom:258.477090pt;}
.y21b{bottom:258.504878pt;}
.y25f{bottom:258.925521pt;}
.y23{bottom:259.318367pt;}
.y145{bottom:261.629599pt;}
.y1b8{bottom:263.010995pt;}
.y87{bottom:265.502355pt;}
.y36{bottom:265.669182pt;}
.y108{bottom:267.181403pt;}
.y193{bottom:270.357383pt;}
.yb8{bottom:270.551083pt;}
.y1db{bottom:270.551098pt;}
.y159{bottom:270.571494pt;}
.ye6{bottom:270.580199pt;}
.y21a{bottom:270.607988pt;}
.y2d0{bottom:271.201718pt;}
.y2a5{bottom:273.234544pt;}
.y72{bottom:273.370419pt;}
.y25e{bottom:275.929788pt;}
.y22{bottom:277.322886pt;}
.y144{bottom:277.633616pt;}
.y137{bottom:281.403511pt;}
.y1b7{bottom:281.682581pt;}
.y192{bottom:282.460493pt;}
.y86{bottom:282.506622pt;}
.yb7{bottom:282.654193pt;}
.y1da{bottom:282.654208pt;}
.y158{bottom:282.674604pt;}
.ye5{bottom:282.683309pt;}
.y219{bottom:282.711097pt;}
.y4e{bottom:284.063066pt;}
.y35{bottom:285.674203pt;}
.y107{bottom:286.186173pt;}
.y2cf{bottom:288.205986pt;}
.y2a4{bottom:289.238560pt;}
.y71{bottom:290.374687pt;}
.y191{bottom:294.563602pt;}
.yb6{bottom:294.757302pt;}
.y1d9{bottom:294.757317pt;}
.y157{bottom:294.777713pt;}
.ye4{bottom:294.786419pt;}
.y218{bottom:294.814207pt;}
.y21{bottom:295.327405pt;}
.y136{bottom:300.408281pt;}
.y4d{bottom:304.068086pt;}
.y2ce{bottom:305.210253pt;}
.y2a3{bottom:305.242577pt;}
.y34{bottom:305.679224pt;}
.y190{bottom:306.666712pt;}
.y1d8{bottom:306.860427pt;}
.y156{bottom:306.880823pt;}
.ye3{bottom:306.889528pt;}
.y217{bottom:306.917317pt;}
.y70{bottom:307.378954pt;}
.y33{bottom:308.228453pt;}
.y253{bottom:311.239996pt;}
.y20{bottom:313.331923pt;}
.y85{bottom:316.515157pt;}
.y18f{bottom:318.769822pt;}
.y155{bottom:318.983933pt;}
.y216{bottom:319.020426pt;}
.y2a2{bottom:321.246593pt;}
.y2cd{bottom:322.214521pt;}
.y4c{bottom:324.073107pt;}
.y6f{bottom:324.383222pt;}
.y143{bottom:325.645665pt;}
.y18e{bottom:330.872931pt;}
.y154{bottom:331.087042pt;}
.y1f{bottom:331.336442pt;}
.y255{bottom:332.999995pt;}
.y84{bottom:333.519425pt;}
.y2cc{bottom:339.218788pt;}
.y6e{bottom:341.387489pt;}
.y142{bottom:341.649682pt;}
.y18d{bottom:342.976041pt;}
.y153{bottom:343.190152pt;}
.y4b{bottom:344.078128pt;}
.y4a{bottom:346.078646pt;}
.y1e{bottom:349.340960pt;}
.y8d{bottom:351.754906pt;}
.y2a1{bottom:353.254626pt;}
.y29b{bottom:354.905608pt;}
.y18c{bottom:355.079151pt;}
.y2cb{bottom:356.223056pt;}
.y6d{bottom:358.391757pt;}
.y141{bottom:360.654451pt;}
.y18b{bottom:367.182260pt;}
.y1d{bottom:367.345479pt;}
.y83{bottom:367.527960pt;}
.y2a0{bottom:369.258643pt;}
.y29a{bottom:370.909624pt;}
.y2ca{bottom:373.227323pt;}
.y82{bottom:384.532227pt;}
.y32{bottom:385.247792pt;}
.y29f{bottom:385.262659pt;}
.y1c{bottom:385.349997pt;}
.y299{bottom:386.913641pt;}
.y2c9{bottom:390.231591pt;}
.y6c{bottom:392.400292pt;}
.y29e{bottom:401.266676pt;}
.y81{bottom:401.536495pt;}
.y57{bottom:402.928139pt;}
.y1b{bottom:403.354516pt;}
.y31{bottom:405.252813pt;}
.y30{bottom:406.883137pt;}
.y2c8{bottom:407.235858pt;}
.y6b{bottom:409.404560pt;}
.y8c{bottom:410.769717pt;}
.y29d{bottom:417.270692pt;}
.y80{bottom:418.540763pt;}
.y298{bottom:418.921674pt;}
.y14e{bottom:419.079992pt;}
.ya{bottom:420.225890pt;}
.y1a{bottom:421.359034pt;}
.y56{bottom:422.933160pt;}
.y2c7{bottom:424.240126pt;}
.y6a{bottom:426.408827pt;}
.y297{bottom:434.925690pt;}
.y113{bottom:437.639991pt;}
.y19{bottom:439.363553pt;}
.y8e{bottom:439.559991pt;}
.y2c6{bottom:441.244393pt;}
.y1d4{bottom:442.119991pt;}
.y9{bottom:442.231412pt;}
.y55{bottom:442.938180pt;}
.y69{bottom:443.413095pt;}
.ydd{bottom:443.719991pt;}
.y212{bottom:445.116424pt;}
.yb0{bottom:448.199991pt;}
.y296{bottom:450.929707pt;}
.y2ba{bottom:451.980050pt;}
.y7f{bottom:452.549298pt;}
.y185{bottom:455.559990pt;}
.y18{bottom:457.368071pt;}
.y2c5{bottom:458.248661pt;}
.y29c{bottom:458.280985pt;}
.y68{bottom:460.417362pt;}
.y54{bottom:462.943201pt;}
.y274{bottom:464.261830pt;}
.y53{bottom:464.943701pt;}
.y295{bottom:466.933723pt;}
.y2b9{bottom:468.984317pt;}
.y7e{bottom:469.553565pt;}
.y3f{bottom:471.269392pt;}
.y2c4{bottom:475.252928pt;}
.y2c{bottom:475.372590pt;}
.y67{bottom:477.421630pt;}
.y211{bottom:478.124708pt;}
.y273{bottom:481.266098pt;}
.y294{bottom:482.937740pt;}
.y2b8{bottom:485.988585pt;}
.y7d{bottom:486.557833pt;}
.y7{bottom:486.883406pt;}
.y3e{bottom:491.274413pt;}
.y2c3{bottom:492.257196pt;}
.y3d{bottom:492.829444pt;}
.y17{bottom:493.377109pt;}
.y272{bottom:498.270365pt;}
.y2b7{bottom:502.992852pt;}
.y7c{bottom:503.562100pt;}
.y2c2{bottom:509.261463pt;}
.y16{bottom:511.381627pt;}
.y66{bottom:511.430165pt;}
.y6{bottom:512.889933pt;}
.y210{bottom:513.133494pt;}
.y49{bottom:514.694227pt;}
.y271{bottom:515.274633pt;}
.y293{bottom:516.946275pt;}
.y2b6{bottom:519.997120pt;}
.y2c1{bottom:526.265731pt;}
.y65{bottom:528.434432pt;}
.y15{bottom:529.386146pt;}
.y270{bottom:532.278900pt;}
.y48{bottom:534.699247pt;}
.y7b{bottom:537.570635pt;}
.y5{bottom:538.896459pt;}
.y2c0{bottom:543.269998pt;}
.y64{bottom:545.438700pt;}
.y2b{bottom:547.390664pt;}
.y26f{bottom:549.283168pt;}
.y2b5{bottom:554.005655pt;}
.y47{bottom:554.704268pt;}
.y41{bottom:556.845514pt;}
.y2bf{bottom:560.274266pt;}
.y63{bottom:562.442967pt;}
.y292{bottom:564.661659pt;}
.y2f{bottom:564.706775pt;}
.y4{bottom:564.902986pt;}
.y14{bottom:565.395183pt;}
.y26e{bottom:566.287435pt;}
.y286{bottom:566.795491pt;}
.y2b4{bottom:571.009922pt;}
.y46{bottom:574.709289pt;}
.y2be{bottom:577.278533pt;}
.y62{bottom:579.447235pt;}
.y117{bottom:580.039985pt;}
.yb3{bottom:580.359985pt;}
.y291{bottom:580.665675pt;}
.y213{bottom:582.279985pt;}
.y285{bottom:582.799507pt;}
.y26d{bottom:583.291703pt;}
.y13{bottom:583.399701pt;}
.y92{bottom:584.519985pt;}
.y188{bottom:586.759985pt;}
.y2b3{bottom:588.014190pt;}
.y58{bottom:591.854300pt;}
.y2bd{bottom:594.282801pt;}
.y45{bottom:594.714309pt;}
.y61{bottom:596.451502pt;}
.y290{bottom:596.669692pt;}
.y284{bottom:598.803524pt;}
.y26c{bottom:600.295970pt;}
.y2a{bottom:601.404220pt;}
.y2b2{bottom:605.018457pt;}
.yce{bottom:605.319984pt;}
.y12d{bottom:605.959984pt;}
.y8b{bottom:609.809118pt;}
.y2bc{bottom:611.287068pt;}
.y28f{bottom:612.673708pt;}
.y60{bottom:613.455770pt;}
.ya4{bottom:613.639984pt;}
.y44{bottom:614.719330pt;}
.y283{bottom:614.807540pt;}
.yfc{bottom:615.559984pt;}
.y2e{bottom:616.860581pt;}
.y3{bottom:616.916040pt;}
.y1a7{bottom:618.439983pt;}
.y12{bottom:619.408738pt;}
.y42{bottom:621.198853pt;}
.y231{bottom:623.288830pt;}
.y1f0{bottom:627.356530pt;}
.y28e{bottom:628.677725pt;}
.y27d{bottom:634.812559pt;}
.y26b{bottom:636.305007pt;}
.y11{bottom:637.413257pt;}
.y2b1{bottom:639.026992pt;}
.y2{bottom:642.922567pt;}
.y28d{bottom:644.681741pt;}
.y2bb{bottom:645.295603pt;}
.y282{bottom:646.815573pt;}
.y5f{bottom:647.464305pt;}
.y27c{bottom:650.816575pt;}
.y5c{bottom:653.869870pt;}
.y10{bottom:655.417775pt;}
.y2b0{bottom:656.031260pt;}
.y8a{bottom:657.821168pt;}
.y25d{bottom:659.018685pt;}
.y28c{bottom:660.685758pt;}
.y277{bottom:660.911113pt;}
.y281{bottom:662.819590pt;}
.y5e{bottom:664.468572pt;}
.y27b{bottom:666.820592pt;}
.y2af{bottom:673.035527pt;}
.yf{bottom:673.422294pt;}
.y5b{bottom:673.874891pt;}
.y28b{bottom:676.689774pt;}
.y280{bottom:678.823606pt;}
.y27a{bottom:682.824608pt;}
.y106{bottom:687.063724pt;}
.y2ae{bottom:690.039795pt;}
.ye{bottom:691.426813pt;}
.y28a{bottom:692.693791pt;}
.y5a{bottom:693.879911pt;}
.y27f{bottom:694.827623pt;}
.y276{bottom:697.920401pt;}
.y279{bottom:698.828625pt;}
.y43{bottom:700.544395pt;}
.yb{bottom:700.949837pt;}
.y40{bottom:702.296211pt;}
.y7a{bottom:705.030235pt;}
.y2ad{bottom:707.044062pt;}
.y289{bottom:708.697807pt;}
.y25c{bottom:711.031739pt;}
.y59{bottom:713.884932pt;}
.y17b{bottom:717.033245pt;}
.y1fb{bottom:721.300967pt;}
.y278{bottom:723.834900pt;}
.y1b5{bottom:723.988894pt;}
.y2ac{bottom:724.048330pt;}
.y288{bottom:724.701824pt;}
.yaf{bottom:727.302473pt;}
.yd{bottom:727.435850pt;}
.yc{bottom:733.670745pt;}
.y275{bottom:734.929689pt;}
.y27e{bottom:735.837915pt;}
.y287{bottom:740.705840pt;}
.h1b{height:21.759999pt;}
.h49{height:22.399999pt;}
.h3b{height:28.479999pt;}
.h1e{height:34.671482pt;}
.h2b{height:42.559998pt;}
.h1f{height:42.879998pt;}
.h36{height:45.640856pt;}
.h22{height:45.643455pt;}
.h26{height:46.079998pt;}
.h31{height:47.999998pt;}
.h15{height:49.437567pt;}
.h53{height:49.813702pt;}
.h50{height:49.922929pt;}
.h54{height:50.378963pt;}
.ha{height:52.261116pt;}
.h8{height:52.634410pt;}
.h9{height:53.231679pt;}
.h6{height:54.984559pt;}
.h47{height:56.319998pt;}
.hc{height:56.414158pt;}
.he{height:57.054319pt;}
.h2d{height:57.486427pt;}
.h4b{height:58.239998pt;}
.h5{height:63.463927pt;}
.h4{height:64.642543pt;}
.h55{height:67.124846pt;}
.h52{height:67.188862pt;}
.h1c{height:68.444919pt;}
.h4a{height:71.089425pt;}
.h3c{height:71.500384pt;}
.h7{height:71.895563pt;}
.h21{height:74.666739pt;}
.h35{height:74.673894pt;}
.h38{height:74.879997pt;}
.h23{height:75.199997pt;}
.h2c{height:75.200073pt;}
.h42{height:80.383297pt;}
.h44{height:81.503935pt;}
.h4e{height:84.329438pt;}
.h3{height:84.586749pt;}
.h43{height:89.560437pt;}
.h41{height:89.564172pt;}
.h24{height:95.000320pt;}
.h39{height:96.255278pt;}
.h46{height:96.526588pt;}
.h17{height:97.072362pt;}
.h28{height:97.279996pt;}
.h51{height:99.200096pt;}
.h16{height:104.550244pt;}
.h29{height:104.786034pt;}
.h40{height:105.919996pt;}
.h4f{height:106.342534pt;}
.h19{height:109.439995pt;}
.h2e{height:111.999995pt;}
.h11{height:112.028115pt;}
.h27{height:116.724572pt;}
.h1a{height:118.748778pt;}
.h18{height:119.477985pt;}
.hb{height:121.630525pt;}
.h2f{height:122.232908pt;}
.hf{height:126.877484pt;}
.h12{height:128.432165pt;}
.h14{height:128.432242pt;}
.h13{height:128.432319pt;}
.hd{height:130.553107pt;}
.h10{height:130.854278pt;}
.h20{height:132.711512pt;}
.h4d{height:137.279994pt;}
.h48{height:140.964404pt;}
.h37{height:145.919994pt;}
.h4c{height:146.610588pt;}
.h32{height:150.184588pt;}
.h34{height:176.959993pt;}
.h1d{height:182.719992pt;}
.h3d{height:218.239991pt;}
.h30{height:242.879990pt;}
.h3f{height:245.119990pt;}
.h3e{height:301.439987pt;}
.h25{height:303.679987pt;}
.h2a{height:315.839987pt;}
.h45{height:327.999986pt;}
.h33{height:351.999985pt;}
.h3a{height:375.999984pt;}
.h1{height:796.666667pt;}
.h2{height:796.999967pt;}
.h0{height:796.999976pt;}
.wf{width:97.919996pt;}
.w8{width:103.999996pt;}
.w11{width:113.279995pt;}
.wc{width:117.439995pt;}
.wa{width:123.199995pt;}
.wd{width:142.719994pt;}
.w9{width:145.599994pt;}
.w5{width:145.919994pt;}
.w12{width:146.239994pt;}
.w4{width:156.159993pt;}
.w15{width:157.439993pt;}
.wb{width:162.559993pt;}
.w1b{width:163.199993pt;}
.w1c{width:170.239993pt;}
.w7{width:171.519993pt;}
.w3{width:174.719993pt;}
.w1a{width:178.559993pt;}
.w16{width:226.239991pt;}
.w13{width:292.799988pt;}
.w1d{width:434.239982pt;}
.w10{width:441.279982pt;}
.w17{width:459.519981pt;}
.w1e{width:462.719981pt;}
.w14{width:466.879981pt;}
.w18{width:467.199981pt;}
.w19{width:467.839981pt;}
.we{width:468.799980pt;}
.w1f{width:469.119980pt;}
.w6{width:470.079980pt;}
.w2{width:556.999977pt;}
.w0{width:557.000000pt;}
.w1{width:557.333333pt;}
.x0{left:0.000000pt;}
.x2a{left:0.916103pt;}
.x30{left:4.964040pt;}
.x4f{left:13.121268pt;}
.x39{left:30.602724pt;}
.x22{left:33.810168pt;}
.x4e{left:35.236760pt;}
.x21{left:37.707958pt;}
.x31{left:40.107184pt;}
.x4d{left:41.599998pt;}
.x20{left:42.559998pt;}
.x27{left:44.159998pt;}
.x48{left:45.119998pt;}
.x43{left:46.079998pt;}
.x2f{left:47.039998pt;}
.x55{left:48.319998pt;}
.x33{left:49.599998pt;}
.x47{left:51.519998pt;}
.x4b{left:52.862928pt;}
.x7{left:55.693978pt;}
.x23{left:56.639998pt;}
.x3b{left:59.839998pt;}
.x16{left:61.568282pt;}
.x35{left:63.086459pt;}
.x29{left:64.959997pt;}
.x3c{left:69.439997pt;}
.xb{left:72.526328pt;}
.x5b{left:73.542208pt;}
.x36{left:75.902175pt;}
.x5d{left:77.089973pt;}
.x49{left:78.050120pt;}
.x5c{left:85.732767pt;}
.xc{left:87.420691pt;}
.x12{left:89.450006pt;}
.xe{left:92.968054pt;}
.x51{left:94.433494pt;}
.x2d{left:96.495846pt;}
.x58{left:99.880865pt;}
.x45{left:107.160253pt;}
.x3d{left:108.332189pt;}
.x57{left:110.508532pt;}
.x26{left:117.548005pt;}
.x10{left:119.421608pt;}
.x3f{left:124.805073pt;}
.x53{left:130.712806pt;}
.x3e{left:132.478874pt;}
.x11{left:137.457384pt;}
.x13{left:141.195044pt;}
.x34{left:142.887736pt;}
.x14{left:144.656333pt;}
.x56{left:146.274460pt;}
.x1f{left:150.844316pt;}
.x50{left:154.812604pt;}
.x1a{left:155.945127pt;}
.x4c{left:156.869501pt;}
.xf{left:159.230820pt;}
.x44{left:162.725243pt;}
.x25{left:166.065428pt;}
.x1b{left:171.917886pt;}
.x4a{left:176.501406pt;}
.xa{left:177.590482pt;}
.x40{left:179.693848pt;}
.x41{left:186.086078pt;}
.x2c{left:187.555196pt;}
.x1e{left:189.541019pt;}
.x54{left:191.665603pt;}
.x15{left:194.610206pt;}
.x52{left:196.799992pt;}
.x2e{left:198.245379pt;}
.x46{left:200.980110pt;}
.x17{left:206.561339pt;}
.x37{left:211.279900pt;}
.x1c{left:212.645983pt;}
.x59{left:213.909483pt;}
.x32{left:220.799991pt;}
.x24{left:224.955208pt;}
.x9{left:227.132832pt;}
.x2b{left:228.159990pt;}
.x3a{left:230.079990pt;}
.x42{left:231.039990pt;}
.x28{left:235.519990pt;}
.x2{left:239.344288pt;}
.x38{left:243.162907pt;}
.x6{left:249.362427pt;}
.x1{left:253.566607pt;}
.xd{left:260.054463pt;}
.x5{left:266.632386pt;}
.x19{left:278.173519pt;}
.x4{left:283.964861pt;}
.x3{left:293.842340pt;}
.x18{left:308.420787pt;}
.x8{left:318.890235pt;}
.x1d{left:326.456564pt;}
.x5a{left:335.241861pt;}
}




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