
    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_018509b04ff9ace19b2b924f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056000;font-style:normal;font-weight: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_43b30e91237c7f03ff01276c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;font-style:normal;font-weight: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_76f31147f7bc408bc97941fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008000;font-style:normal;font-weight: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_5c386badd735fa4cb7872e3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.768000;font-style:normal;font-weight: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_c4c770d38905f4f5d2babe2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.996000;font-style:normal;font-weight: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_487f10bff8aa858bd7df0b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.996000;font-style:normal;font-weight: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_a2530bdde486b8da24411d38.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946000;font-style:normal;font-weight: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_6b7106abc42a9948fa7f6cd2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8f30b9fcbb5e657f85b8009d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.956000;font-style:normal;font-weight: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_41425f1cf003c41d0a60ad85.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946000;font-style:normal;font-weight: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_bba83ea2ff9f752745c88530.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.951172;font-style:normal;font-weight: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_9e748f7cf1851ed05e824187.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.881836;font-style:normal;font-weight: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_c9dab89b01365b5dfc6ef7a6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.881836;font-style:normal;font-weight: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_ae509e0a4b457714afd5d662.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.881836;font-style:normal;font-weight: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_b25fe418ace4fccdc3869490.woff2')format("woff");}.fff{font-family:fff;line-height:0.760742;font-style:normal;font-weight: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_01d7cb936fc1826b756bbde4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.949707;font-style:normal;font-weight: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_48a18d6ad26c09c63621bbc9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958008;font-style:normal;font-weight: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_6170cfd2b253caea5d9d382f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.881836;font-style:normal;font-weight: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_e8f3c0c69c7fbe14e767fe96.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.760742;font-style:normal;font-weight: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_e83e1458fdff815cf0c21407.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.955000;font-style:normal;font-weight: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_ff97fdb152a25aa97afeb205.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.664000;font-style:normal;font-weight: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_9c67a24a44c5588fd79615bf.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.828000;font-style:normal;font-weight: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_be96a790e1acf432b5f39cb0.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.865000;font-style:normal;font-weight: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_9b230d88149b80f2895e177a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_36e59351d999b37fd878808d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958008;font-style:normal;font-weight: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_4c7097862d1b90e78cc0d7b1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.914062;font-style:normal;font-weight: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_a7122a94d7c782344b17ad3d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.760742;font-style:normal;font-weight: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_f107683f8d4c3c5cdd169c77.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958008;font-style:normal;font-weight: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_4b248e73e4e31bd518288d12.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.881836;font-style:normal;font-weight: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_7b647d124fbaab203e00f0ae.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.760742;font-style:normal;font-weight: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_7350759e87c249af3c57c689.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.958008;font-style:normal;font-weight: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_0ac060770358a0a8cb6caecc.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.881836;font-style:normal;font-weight: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_15d9f34de3a20bdf2d481085.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.760742;font-style:normal;font-weight: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_35961947b161389ee0aac58f.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.903000;font-style:normal;font-weight: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_36bc2ba739713df88b868650.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.913086;font-style:normal;font-weight: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_5c9d958d369a6c5a60639046.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.848145;font-style:normal;font-weight: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_8b0841fe9e852ac08e1058be.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.999000;font-style:normal;font-weight: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_6f483f91eca1745352029b34.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.960000;font-style:normal;font-weight: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_0e094abd71b748e1087becaf.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.976000;font-style:normal;font-weight: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_482b45d93c160bae9df96065.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_121d020b27d20ff1d8447c83.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.925000;font-style:normal;font-weight: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_eeb3b9aac67793e5fbd48736.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.718000;font-style:normal;font-weight: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_1fbb407e6aa67c7382c5a01a.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_d10d0b5f2ddaa5669011ca01.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.732000;font-style:normal;font-weight: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_020a5038f7b8a9ef682f1830.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.680176;font-style:normal;font-weight: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_0d8cc4f7b19134f1bcd5e3fd.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_325e799ec9148bab1d496bb0.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.915527;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.241482,0.241482,0.064703,0,0);-ms-transform:matrix(0.000000,-0.241482,0.241482,0.064703,0,0);-webkit-transform:matrix(0.000000,-0.241482,0.241482,0.064703,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.229351,-0.099489,0.099489,0.229351,0,0);-ms-transform:matrix(0.229351,-0.099489,0.099489,0.229351,0,0);-webkit-transform:matrix(0.229351,-0.099489,0.099489,0.229351,0,0);}
.m7{transform:matrix(0.236830,0.080073,-0.080073,0.236830,0,0);-ms-transform:matrix(0.236830,0.080073,-0.080073,0.236830,0,0);-webkit-transform:matrix(0.236830,0.080073,-0.080073,0.236830,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v1b{vertical-align:-74.668800px;}
.v3{vertical-align:-34.065780px;}
.v1{vertical-align:-32.968200px;}
.v5{vertical-align:-30.658824px;}
.v13{vertical-align:-27.252900px;}
.v1e{vertical-align:-20.260800px;}
.v16{vertical-align:-19.155660px;}
.v14{vertical-align:-17.026920px;}
.v1a{vertical-align:-12.864000px;}
.v10{vertical-align:-11.465790px;}
.vb{vertical-align:-10.373808px;}
.v9{vertical-align:-8.452200px;}
.vc{vertical-align:-7.141800px;}
.v8{vertical-align:-5.634600px;}
.vf{vertical-align:-4.606200px;}
.v12{vertical-align:-3.589800px;}
.v0{vertical-align:0.000000px;}
.v1d{vertical-align:1.801800px;}
.v7{vertical-align:2.817000px;}
.v2{vertical-align:4.352400px;}
.v17{vertical-align:11.465790px;}
.ve{vertical-align:23.760000px;}
.vd{vertical-align:25.080000px;}
.v1c{vertical-align:26.400000px;}
.v19{vertical-align:29.040000px;}
.v6{vertical-align:30.658824px;}
.v4{vertical-align:34.065780px;}
.v11{vertical-align:41.766600px;}
.v15{vertical-align:44.279820px;}
.v18{vertical-align:49.814220px;}
.va{vertical-align:59.468400px;}
.ls1f{letter-spacing:-1.728000px;}
.ls32{letter-spacing:-1.419600px;}
.ls25{letter-spacing:-1.380000px;}
.ls20{letter-spacing:-1.296000px;}
.ls2d{letter-spacing:-0.028080px;}
.ls2c{letter-spacing:-0.020160px;}
.ls2f{letter-spacing:-0.016800px;}
.ls2e{letter-spacing:-0.014040px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000005px;}
.lse{letter-spacing:0.000018px;}
.ls15{letter-spacing:0.000030px;}
.ls13{letter-spacing:0.000120px;}
.ls12{letter-spacing:0.000180px;}
.lsb{letter-spacing:0.000360px;}
.ls2a{letter-spacing:0.059400px;}
.ls29{letter-spacing:0.060000px;}
.ls1d{letter-spacing:0.836250px;}
.ls19{letter-spacing:1.409874px;}
.ls6{letter-spacing:6.813082px;}
.lsc{letter-spacing:11.808000px;}
.ls10{letter-spacing:18.000000px;}
.ls1e{letter-spacing:18.720000px;}
.ls1c{letter-spacing:20.480145px;}
.ls18{letter-spacing:24.224274px;}
.ls16{letter-spacing:24.224334px;}
.ls17{letter-spacing:24.224336px;}
.ls35{letter-spacing:24.242400px;}
.ls27{letter-spacing:29.484000px;}
.ls7{letter-spacing:34.065381px;}
.ls5{letter-spacing:37.850449px;}
.ls22{letter-spacing:39.723000px;}
.ls21{letter-spacing:42.840000px;}
.ls24{letter-spacing:45.215700px;}
.ls23{letter-spacing:45.216000px;}
.lsd{letter-spacing:52.356000px;}
.ls33{letter-spacing:57.577920px;}
.ls11{letter-spacing:59.134080px;}
.lsa{letter-spacing:63.024480px;}
.ls2b{letter-spacing:65.025300px;}
.ls9{letter-spacing:67.104000px;}
.ls26{letter-spacing:70.027200px;}
.ls30{letter-spacing:70.805340px;}
.ls34{letter-spacing:86.705400px;}
.ls14{letter-spacing:89.049180px;}
.ls28{letter-spacing:105.452820px;}
.ls31{letter-spacing:106.624380px;}
.ls1a{letter-spacing:115.356000px;}
.lsf{letter-spacing:237.523596px;}
.ls2{letter-spacing:272.230341px;}
.ls1{letter-spacing:319.805548px;}
.ls8{letter-spacing:338.193129px;}
.ls4{letter-spacing:407.945791px;}
.ls3{letter-spacing:453.641196px;}
.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;}
}
.ws3a{word-spacing:-108.000000px;}
.ws28{word-spacing:-84.000000px;}
.ws2{word-spacing:-65.712000px;}
.ws47{word-spacing:-60.000000px;}
.ws6{word-spacing:-52.800000px;}
.ws5{word-spacing:-52.272000px;}
.ws25{word-spacing:-42.120000px;}
.ws3{word-spacing:-41.700000px;}
.ws64{word-spacing:-29.030400px;}
.ws6e{word-spacing:-28.392000px;}
.ws6f{word-spacing:-28.108080px;}
.ws68{word-spacing:-28.080000px;}
.ws61{word-spacing:-27.600000px;}
.ws2f{word-spacing:-27.216000px;}
.ws2e{word-spacing:-26.943840px;}
.ws6d{word-spacing:-26.688480px;}
.ws5e{word-spacing:-26.400000px;}
.ws3c{word-spacing:-25.200000px;}
.ws60{word-spacing:-25.116000px;}
.ws3b{word-spacing:-24.948000px;}
.wse{word-spacing:-24.800164px;}
.ws9{word-spacing:-24.690327px;}
.ws48{word-spacing:-24.514560px;}
.ws52{word-spacing:-24.192000px;}
.ws3d{word-spacing:-24.000000px;}
.ws63{word-spacing:-23.760000px;}
.ws71{word-spacing:-23.088000px;}
.ws45{word-spacing:-22.800000px;}
.ws4b{word-spacing:-22.763520px;}
.ws44{word-spacing:-22.572000px;}
.ws27{word-spacing:-21.600000px;}
.ws31{word-spacing:-21.384000px;}
.ws7{word-spacing:-21.163193px;}
.ws32{word-spacing:-20.736000px;}
.ws2b{word-spacing:-20.400000px;}
.ws57{word-spacing:-20.304000px;}
.ws66{word-spacing:-20.160000px;}
.ws0{word-spacing:-20.016000px;}
.ws26{word-spacing:-19.200000px;}
.ws6c{word-spacing:-18.927996px;}
.ws2a{word-spacing:-18.432000px;}
.ws2c{word-spacing:-17.280000px;}
.ws4a{word-spacing:-17.024004px;}
.ws35{word-spacing:-16.800000px;}
.ws6b{word-spacing:-16.128000px;}
.ws56{word-spacing:-15.999996px;}
.ws4c{word-spacing:-15.807996px;}
.ws70{word-spacing:-15.392004px;}
.ws22{word-spacing:-15.200004px;}
.ws43{word-spacing:-15.048004px;}
.ws1d{word-spacing:-14.893228px;}
.ws24{word-spacing:-14.592004px;}
.ws30{word-spacing:-14.400000px;}
.ws29{word-spacing:-12.800004px;}
.ws42{word-spacing:-9.731908px;}
.ws5d{word-spacing:-9.524816px;}
.ws46{word-spacing:-0.300000px;}
.ws1{word-spacing:-0.222000px;}
.ws67{word-spacing:-0.151200px;}
.ws13{word-spacing:-0.136262px;}
.ws49{word-spacing:-0.127680px;}
.ws6a{word-spacing:-0.126360px;}
.ws34{word-spacing:-0.126000px;}
.ws17{word-spacing:-0.122636px;}
.ws23{word-spacing:-0.114000px;}
.ws69{word-spacing:-0.112320px;}
.wsc{word-spacing:-0.111018px;}
.ws4d{word-spacing:-0.109009px;}
.ws33{word-spacing:-0.108000px;}
.ws12{word-spacing:-0.097912px;}
.ws10{word-spacing:-0.093560px;}
.wsa{word-spacing:-0.088814px;}
.ws50{word-spacing:-0.087071px;}
.wsd{word-spacing:-0.082470px;}
.ws65{word-spacing:-0.080640px;}
.ws1f{word-spacing:-0.078050px;}
.ws58{word-spacing:-0.078000px;}
.ws4e{word-spacing:-0.077397px;}
.ws1e{word-spacing:-0.070617px;}
.ws51{word-spacing:-0.068971px;}
.wsb{word-spacing:-0.066611px;}
.ws53{word-spacing:-0.061821px;}
.ws37{word-spacing:-0.054817px;}
.ws1b{word-spacing:-0.053573px;}
.ws36{word-spacing:-0.049596px;}
.ws5f{word-spacing:-0.048000px;}
.ws40{word-spacing:-0.035007px;}
.ws5b{word-spacing:-0.034262px;}
.ws4{word-spacing:0.000000px;}
.ws4f{word-spacing:18.095561px;}
.ws39{word-spacing:29.911297px;}
.ws16{word-spacing:33.942447px;}
.ws18{word-spacing:33.943047px;}
.ws15{word-spacing:33.970070px;}
.ws59{word-spacing:40.352454px;}
.ws3e{word-spacing:41.230021px;}
.ws14{word-spacing:41.760187px;}
.ws21{word-spacing:42.588319px;}
.ws19{word-spacing:63.096231px;}
.ws8{word-spacing:189.171672px;}
.ws5a{word-spacing:220.920264px;}
.ws3f{word-spacing:225.723064px;}
.wsf{word-spacing:334.656756px;}
.ws1a{word-spacing:345.436170px;}
.ws5c{word-spacing:445.974478px;}
.ws41{word-spacing:455.671493px;}
.ws1c{word-spacing:697.336854px;}
.ws38{word-spacing:755.316183px;}
.ws62{word-spacing:1003.861800px;}
.ws20{word-spacing:1075.443372px;}
.ws54{word-spacing:1374.369360px;}
.ws55{word-spacing:1374.369540px;}
.ws11{word-spacing:1679.661964px;}
.ws2d{word-spacing:2359.951200px;}
._54{margin-left:-4310.805000px;}
._24{margin-left:-2577.552000px;}
._12{margin-left:-700.630831px;}
._1e{margin-left:-413.701642px;}
._32{margin-left:-343.538528px;}
._17{margin-left:-334.730922px;}
._f{margin-left:-268.155816px;}
._23{margin-left:-264.176701px;}
._1f{margin-left:-251.182117px;}
._10{margin-left:-243.082321px;}
._3c{margin-left:-241.277065px;}
._c{margin-left:-225.296458px;}
._34{margin-left:-210.288282px;}
._11{margin-left:-206.948730px;}
._2b{margin-left:-184.382623px;}
._22{margin-left:-177.397135px;}
._40{margin-left:-148.076367px;}
._1b{margin-left:-144.896063px;}
._1a{margin-left:-143.608444px;}
._2c{margin-left:-140.769528px;}
._21{margin-left:-134.942359px;}
._2e{margin-left:-131.558514px;}
._e{margin-left:-128.681443px;}
._8{margin-left:-125.885379px;}
._47{margin-left:-120.484259px;}
._58{margin-left:-117.920105px;}
._14{margin-left:-115.307920px;}
._20{margin-left:-106.660755px;}
._3f{margin-left:-100.535173px;}
._d{margin-left:-96.960047px;}
._1c{margin-left:-95.290934px;}
._16{margin-left:-93.616741px;}
._48{margin-left:-91.984571px;}
._59{margin-left:-90.027287px;}
._33{margin-left:-87.996901px;}
._4a{margin-left:-85.966094px;}
._15{margin-left:-84.572267px;}
._9{margin-left:-83.563192px;}
._3e{margin-left:-74.851847px;}
._3d{margin-left:-61.803050px;}
._30{margin-left:-55.588137px;}
._4c{margin-left:-36.323959px;}
._5b{margin-left:-34.672484px;}
._2f{margin-left:-31.801831px;}
._4b{margin-left:-20.780911px;}
._3a{margin-left:-17.034000px;}
._3{margin-left:-13.800000px;}
._4{margin-left:-10.488000px;}
._5f{margin-left:-9.024000px;}
._27{margin-left:-7.884000px;}
._1{margin-left:-6.624000px;}
._7{margin-left:-5.161680px;}
._2{margin-left:-3.978000px;}
._5{margin-left:-2.304000px;}
._0{margin-left:-1.296000px;}
._39{width:1.296000px;}
._3b{width:2.826000px;}
._5e{width:3.948000px;}
._42{width:36.674178px;}
._43{width:41.893577px;}
._5d{width:45.135000px;}
._25{width:48.783000px;}
._36{width:52.217866px;}
._53{width:58.256400px;}
._37{width:59.649466px;}
._56{width:68.375870px;}
._44{width:70.605371px;}
._41{width:72.618019px;}
._55{width:80.993873px;}
._45{width:82.754483px;}
._38{width:100.531666px;}
._35{width:103.395906px;}
._29{width:106.914314px;}
._28{width:126.644117px;}
._57{width:134.970629px;}
._46{width:137.906106px;}
._2a{width:211.044098px;}
._b{width:236.807451px;}
._19{width:243.885604px;}
._a{width:252.661853px;}
._5a{width:254.027415px;}
._49{width:259.550769px;}
._5c{width:282.468229px;}
._4d{width:288.610660px;}
._1d{width:385.565324px;}
._2d{width:397.204450px;}
._31{width:441.674840px;}
._18{width:605.128379px;}
._26{width:610.733400px;}
._13{width:636.244914px;}
._50{width:951.744000px;}
._4f{width:1223.682600px;}
._51{width:1287.703800px;}
._4e{width:1296.825360px;}
._52{width:1349.103600px;}
._6{width:1719.753360px;}
.fc18{color:rgb(172,172,172);}
.fc14{color:rgb(77,72,80);}
.fc13{color:rgb(126,115,128);}
.fcf{color:rgb(84,154,73);}
.fc16{color:rgb(240,152,68);}
.fce{color:rgb(11,4,210);}
.fcd{color:rgb(51,166,253);}
.fc4{color:rgb(0,0,0);}
.fc5{color:rgb(83,83,83);}
.fc17{color:rgb(134,84,37);}
.fca{color:rgb(46,46,46);}
.fc2{color:rgb(201,215,252);}
.fc0{color:rgb(61,0,8);}
.fc9{color:rgb(198,63,30);}
.fc11{color:rgb(116,20,123);}
.fc3{color:transparent;}
.fc6{color:rgb(148,84,195);}
.fc15{color:rgb(99,178,85);}
.fc8{color:rgb(183,59,29);}
.fc12{color:rgb(159,27,170);}
.fc10{color:rgb(139,30,18);}
.fcc{color:rgb(67,85,208);}
.fc7{color:rgb(130,0,16);}
.fc1{color:rgb(255,255,255);}
.fcb{color:rgb(114,98,95);}
.fs48{font-size:31.324044px;}
.fs75{font-size:32.458802px;}
.fs6c{font-size:32.487146px;}
.fs5a{font-size:33.164535px;}
.fs51{font-size:33.193495px;}
.fs71{font-size:34.261928px;}
.fs56{font-size:35.006865px;}
.fs49{font-size:36.544581px;}
.fs4c{font-size:39.154849px;}
.fs73{font-size:43.278318px;}
.fs43{font-size:44.000004px;}
.fs58{font-size:44.219293px;}
.fs33{font-size:44.600160px;}
.fs78{font-size:48.000000px;}
.fs74{font-size:48.687950px;}
.fs6e{font-size:48.730707px;}
.fs6b{font-size:48.730719px;}
.fs66{font-size:48.969318px;}
.fs47{font-size:49.596197px;}
.fs59{font-size:49.746543px;}
.fs53{font-size:49.790230px;}
.fs50{font-size:49.790242px;}
.fs10{font-size:50.751063px;}
.fs2f{font-size:50.753352px;}
.fs26{font-size:50.797671px;}
.fs34{font-size:52.033324px;}
.fs1e{font-size:52.219973px;}
.fs70{font-size:52.294443px;}
.fs6f{font-size:52.294455px;}
.fs6d{font-size:52.340261px;}
.fs4d{font-size:52.490214px;}
.fs55{font-size:53.431450px;}
.fs54{font-size:53.431463px;}
.fs52{font-size:53.478264px;}
.fs2b{font-size:53.572762px;}
.fs16{font-size:53.922725px;}
.fs45{font-size:54.817008px;}
.fs63{font-size:54.951612px;}
.fs36{font-size:55.749906px;}
.fs4b{font-size:60.037545px;}
.fse{font-size:60.266944px;}
.fs1b{font-size:60.923378px;}
.fs72{font-size:61.310845px;}
.fs64{font-size:61.820580px;}
.fs57{font-size:62.643891px;}
.fs3f{font-size:64.000020px;}
.fs42{font-size:66.000000px;}
.fs13{font-size:66.610715px;}
.fs2d{font-size:67.671004px;}
.fs65{font-size:68.970840px;}
.fs1f{font-size:69.626797px;}
.fs32{font-size:70.616626px;}
.fs18{font-size:71.802401px;}
.fs0{font-size:72.000000px;}
.fs4a{font-size:73.089436px;}
.fs46{font-size:73.089452px;}
.fs4e{font-size:73.486245px;}
.fs4f{font-size:73.486261px;}
.fs37{font-size:74.737219px;}
.fs39{font-size:76.000020px;}
.fsd{font-size:76.126595px;}
.fs2e{font-size:76.129632px;}
.fs28{font-size:76.196495px;}
.fs25{font-size:76.196506px;}
.fs82{font-size:76.960020px;}
.fs62{font-size:77.396640px;}
.fs44{font-size:78.000000px;}
.fs30{font-size:78.050182px;}
.fs1d{font-size:78.329711px;}
.fs60{font-size:79.039980px;}
.fs68{font-size:79.999980px;}
.fs2a{font-size:81.768837px;}
.fs29{font-size:81.768849px;}
.fs27{font-size:81.840472px;}
.fs15{font-size:82.470366px;}
.fs20{font-size:84.000000px;}
.fs5d{font-size:85.120020px;}
.fs35{font-size:85.483346px;}
.fs24{font-size:87.071220px;}
.fs67{font-size:88.000020px;}
.fs11{font-size:88.814125px;}
.fsf{font-size:88.814137px;}
.fs17{font-size:89.209224px;}
.fs8{font-size:90.000000px;}
.fs12{font-size:91.946937px;}
.fs1a{font-size:93.560422px;}
.fs7e{font-size:94.639980px;}
.fs2c{font-size:95.867090px;}
.fs9{font-size:96.000000px;}
.fs22{font-size:96.745800px;}
.fs1c{font-size:97.912139px;}
.fs7a{font-size:100.800000px;}
.fs3e{font-size:102.000000px;}
.fs31{font-size:104.067039px;}
.fs38{font-size:104.632028px;}
.fs5e{font-size:104.880000px;}
.fs3d{font-size:107.999994px;}
.fs1{font-size:108.000000px;}
.fs19{font-size:108.791652px;}
.fs61{font-size:109.009320px;}
.fs14{font-size:111.018007px;}
.fs7{font-size:114.000000px;}
.fs81{font-size:115.440000px;}
.fs5f{font-size:118.560000px;}
.fsb{font-size:120.000000px;}
.fs23{font-size:122.635500px;}
.fs80{font-size:124.320000px;}
.fs6{font-size:126.000000px;}
.fs5c{font-size:127.680000px;}
.fs76{font-size:132.000000px;}
.fs41{font-size:136.080000px;}
.fs21{font-size:136.261680px;}
.fs40{font-size:138.000000px;}
.fs7b{font-size:140.400000px;}
.fs7d{font-size:141.960000px;}
.fs5{font-size:144.000000px;}
.fs4{font-size:150.000000px;}
.fs79{font-size:151.200000px;}
.fs7c{font-size:152.880000px;}
.fs69{font-size:156.000000px;}
.fs3a{font-size:162.000000px;}
.fs6a{font-size:198.000000px;}
.fs77{font-size:210.000000px;}
.fs3c{font-size:212.040000px;}
.fs3{font-size:222.000000px;}
.fs2{font-size:234.000000px;}
.fs3b{font-size:245.520000px;}
.fsc{font-size:261.360000px;}
.fsa{font-size:264.000000px;}
.fs5b{font-size:300.000000px;}
.fs7f{font-size:342.000000px;}
.y228{bottom:-97.945110px;}
.y227{bottom:-94.340280px;}
.y226{bottom:-91.636605px;}
.y225{bottom:-76.766625px;}
.y229{bottom:-70.007565px;}
.y22e{bottom:-60.995415px;}
.y22a{bottom:-56.038785px;}
.y22b{bottom:-41.619345px;}
.y22c{bottom:-27.650685px;}
.y22d{bottom:-13.681831px;}
.y0{bottom:0.000000px;}
.y143{bottom:0.652440px;}
.y97{bottom:0.928950px;}
.y230{bottom:1.009118px;}
.y181{bottom:1.031055px;}
.y64{bottom:1.577850px;}
.y1dc{bottom:4.310670px;}
.y1d6{bottom:4.310685px;}
.y1d4{bottom:4.482075px;}
.y1db{bottom:4.482120px;}
.y179{bottom:5.064436px;}
.y264{bottom:6.427650px;}
.y262{bottom:6.427800px;}
.y1c3{bottom:7.664835px;}
.y5c{bottom:7.750365px;}
.y55{bottom:8.013000px;}
.y52{bottom:8.516355px;}
.y178{bottom:8.747640px;}
.y1c9{bottom:8.838120px;}
.y1c6{bottom:8.838135px;}
.y1cc{bottom:8.838150px;}
.y4{bottom:9.508974px;}
.y1f{bottom:9.515820px;}
.yc{bottom:9.524446px;}
.y15b{bottom:9.668572px;}
.y175{bottom:9.737595px;}
.y13c{bottom:9.788850px;}
.y1bf{bottom:11.070030px;}
.y177{bottom:11.510100px;}
.y22f{bottom:11.894721px;}
.y3{bottom:12.243833px;}
.y1d2{bottom:12.453585px;}
.y1d0{bottom:12.453630px;}
.y5b{bottom:13.386960px;}
.yea{bottom:13.916100px;}
.y90{bottom:13.937550px;}
.yb0{bottom:13.937565px;}
.y19a{bottom:14.093700px;}
.y2{bottom:14.264700px;}
.yce{bottom:14.843850px;}
.ye2{bottom:15.771450px;}
.y194{bottom:15.771600px;}
.y57{bottom:15.855450px;}
.ye5{bottom:15.855600px;}
.y20{bottom:16.652685px;}
.yd0{bottom:16.699350px;}
.y101{bottom:16.736400px;}
.ye7{bottom:16.766100px;}
.ybc{bottom:16.780350px;}
.y36{bottom:16.862670px;}
.y5a{bottom:17.614485px;}
.y1a6{bottom:17.617350px;}
.y280{bottom:17.903670px;}
.yd2{bottom:17.922450px;}
.yd6{bottom:17.922600px;}
.y1e5{bottom:18.498120px;}
.yd8{bottom:19.071600px;}
.yfc{bottom:20.259855px;}
.yec{bottom:20.259900px;}
.y1a0{bottom:21.140610px;}
.y231{bottom:21.736839px;}
.y182{bottom:22.209450px;}
.ydd{bottom:22.832100px;}
.y37{bottom:25.022055px;}
.y176{bottom:26.703390px;}
.y20e{bottom:27.592350px;}
.y15a{bottom:29.898630px;}
.y13b{bottom:30.018900px;}
.ycb{bottom:30.440700px;}
.y272{bottom:31.649400px;}
.y58{bottom:31.903155px;}
.y17a{bottom:33.609405px;}
.y65{bottom:33.988200px;}
.y144{bottom:34.587015px;}
.y1e{bottom:34.891305px;}
.y210{bottom:35.021100px;}
.y21e{bottom:35.053500px;}
.y15c{bottom:37.077015px;}
.y24f{bottom:37.143600px;}
.y13d{bottom:37.197300px;}
.yc7{bottom:37.322850px;}
.y59{bottom:40.865535px;}
.y8f{bottom:42.741750px;}
.yaf{bottom:42.741765px;}
.y17f{bottom:42.817515px;}
.y232{bottom:42.915669px;}
.y183{bottom:43.848735px;}
.yae{bottom:44.614125px;}
.yd4{bottom:45.662850px;}
.y199{bottom:45.731700px;}
.y17b{bottom:47.881920px;}
.y54{bottom:48.742500px;}
.y15d{bottom:48.823560px;}
.y13e{bottom:48.943800px;}
.y10{bottom:48.983475px;}
.y98{bottom:49.246050px;}
.yfb{bottom:49.917990px;}
.y1f3{bottom:50.355600px;}
.y5d{bottom:51.434160px;}
.ydb{bottom:51.874350px;}
.y27f{bottom:52.403670px;}
.y100{bottom:52.736400px;}
.y197{bottom:52.736430px;}
.ybb{bottom:52.780350px;}
.yb1{bottom:52.962555px;}
.y91{bottom:52.962600px;}
.y11{bottom:53.753475px;}
.y35{bottom:54.395700px;}
.y1a5{bottom:55.117350px;}
.y53{bottom:56.755500px;}
.y1e4{bottom:58.998120px;}
.y281{bottom:59.771550px;}
.y15e{bottom:59.917470px;}
.y13f{bottom:60.037650px;}
.yb6{bottom:60.287295px;}
.y19f{bottom:62.517960px;}
.y17c{bottom:62.614875px;}
.y1cf{bottom:62.958795px;}
.y233{bottom:63.643389px;}
.y184{bottom:65.027085px;}
.y62{bottom:65.525775px;}
.y274{bottom:65.853900px;}
.y279{bottom:65.853930px;}
.y271{bottom:66.149400px;}
.y27a{bottom:66.853620px;}
.y66{bottom:67.103850px;}
.y34{bottom:68.503095px;}
.y145{bottom:69.173985px;}
.y92{bottom:69.687600px;}
.yb2{bottom:69.687675px;}
.y1c5{bottom:70.351095px;}
.y15f{bottom:71.664225px;}
.y140{bottom:71.784450px;}
.y5e{bottom:73.276095px;}
.y203{bottom:73.287555px;}
.ybd{bottom:76.086090px;}
.y17d{bottom:76.887240px;}
.y224{bottom:78.532245px;}
.y1d{bottom:80.926755px;}
.y20d{bottom:81.592350px;}
.y160{bottom:83.410710px;}
.y141{bottom:83.530950px;}
.y234{bottom:84.371109px;}
.y1f2{bottom:84.855600px;}
.y93{bottom:85.483500px;}
.yb3{bottom:85.483530px;}
.y185{bottom:86.205585px;}
.ye0{bottom:86.374350px;}
.y1ca{bottom:86.673480px;}
.y27e{bottom:86.903730px;}
.yca{bottom:88.026150px;}
.y1de{bottom:88.123080px;}
.y196{bottom:88.736430px;}
.yba{bottom:88.780350px;}
.yc2{bottom:88.780410px;}
.y162{bottom:89.074695px;}
.y17e{bottom:91.159815px;}
.y1b2{bottom:92.617350px;}
.yc6{bottom:92.822850px;}
.y142{bottom:93.199215px;}
.y18{bottom:93.653805px;}
.y1a4{bottom:94.740000px;}
.y5f{bottom:95.822670px;}
.y195{bottom:97.998420px;}
.y99{bottom:98.492100px;}
.y67{bottom:99.514200px;}
.y1ad{bottom:99.943545px;}
.y19e{bottom:100.017960px;}
.y270{bottom:100.649400px;}
.y293{bottom:100.739070px;}
.y1e3{bottom:100.966620px;}
.y273{bottom:101.172900px;}
.y278{bottom:101.172930px;}
.yb4{bottom:102.208935px;}
.y94{bottom:102.208950px;}
.y146{bottom:103.107885px;}
.y235{bottom:105.099474px;}
.y1d3{bottom:106.768650px;}
.y1d5{bottom:106.940040px;}
.y186{bottom:107.384535px;}
.y202{bottom:107.787555px;}
.y2a6{bottom:111.060510px;}
.y277{bottom:111.595170px;}
.y21{bottom:111.810795px;}
.y223{bottom:113.032245px;}
.y1c7{bottom:116.413380px;}
.y2bd{bottom:116.680665px;}
.y12{bottom:117.590265px;}
.y60{bottom:117.664410px;}
.yb5{bottom:118.933875px;}
.y95{bottom:118.933950px;}
.y164{bottom:121.408050px;}
.y23b{bottom:121.771749px;}
.y27d{bottom:122.222730px;}
.y18c{bottom:124.419435px;}
.yb9{bottom:124.780305px;}
.yc1{bottom:124.780410px;}
.y23d{bottom:125.376729px;}
.y236{bottom:126.277659px;}
.y180{bottom:127.030065px;}
.y18e{bottom:128.102685px;}
.y187{bottom:129.023235px;}
.y1ac{bottom:129.943545px;}
.y1b1{bottom:130.117350px;}
.y68{bottom:131.924700px;}
.y26f{bottom:135.968400px;}
.y1a3{bottom:136.117350px;}
.y147{bottom:137.042535px;}
.y1d7{bottom:139.428165px;}
.y61{bottom:139.506495px;}
.y1d8{bottom:140.037270px;}
.yc9{bottom:143.826150px;}
.y201{bottom:145.287555px;}
.y9a{bottom:146.808300px;}
.y237{bottom:147.005379px;}
.y19d{bottom:147.318690px;}
.y222{bottom:147.532245px;}
.yc5{bottom:148.322850px;}
.y1c8{bottom:149.153280px;}
.y188{bottom:150.201585px;}
.y1e2{bottom:152.798070px;}
.y16{bottom:153.791850px;}
.y292{bottom:154.636950px;}
.y2a5{bottom:155.645100px;}
.yc8{bottom:157.396500px;}
.y17{bottom:158.561850px;}
.y27c{bottom:159.722730px;}
.y1ab{bottom:159.943500px;}
.yc0{bottom:160.780410px;}
.y151{bottom:161.187885px;}
.y2bc{bottom:162.152700px;}
.y69{bottom:164.335950px;}
.y150{bottom:165.103185px;}
.y1b0{bottom:167.617350px;}
.y238{bottom:167.733729px;}
.y198{bottom:168.131400px;}
.y23c{bottom:168.184179px;}
.y38{bottom:169.714755px;}
.y1da{bottom:170.416200px;}
.y148{bottom:170.976435px;}
.y189{bottom:171.380685px;}
.y18d{bottom:171.841035px;}
.y1a2{bottom:173.617350px;}
.y96{bottom:177.485250px;}
.y268{bottom:177.525750px;}
.y1d9{bottom:179.076900px;}
.y200{bottom:179.787600px;}
.y14f{bottom:183.376035px;}
.y23f{bottom:183.504429px;}
.y190{bottom:187.494285px;}
.y11a{bottom:187.797450px;}
.y239{bottom:188.461479px;}
.y221{bottom:189.532200px;}
.y1aa{bottom:189.943500px;}
.y6f{bottom:190.405200px;}
.y18a{bottom:192.559035px;}
.y1e1{bottom:194.766720px;}
.y9b{bottom:195.125400px;}
.y23e{bottom:195.779679px;}
.y71{bottom:196.042050px;}
.yb8{bottom:196.780305px;}
.ybf{bottom:196.780410px;}
.y27b{bottom:197.222730px;}
.y6a{bottom:197.450700px;}
.y291{bottom:198.136950px;}
.y18f{bottom:200.036385px;}
.y14b{bottom:200.995785px;}
.y14e{bottom:201.648135px;}
.y155{bottom:202.952985px;}
.yc4{bottom:203.822850px;}
.y149{bottom:205.563435px;}
.y1af{bottom:207.240000px;}
.y153{bottom:207.521385px;}
.y267{bottom:207.525750px;}
.y2bb{bottom:207.624600px;}
.y23a{bottom:209.189229px;}
.y2a4{bottom:209.708550px;}
.y63{bottom:211.401750px;}
.y163{bottom:212.531250px;}
.y18b{bottom:213.737535px;}
.y154{bottom:214.047135px;}
.yfd{bottom:217.185600px;}
.y1ff{bottom:217.287600px;}
.y20b{bottom:217.916850px;}
.y14d{bottom:220.572735px;}
.y1a9{bottom:220.762500px;}
.y240{bottom:221.806029px;}
.y220{bottom:224.032200px;}
.y156{bottom:225.141135px;}
.y191{bottom:226.628685px;}
.y241{bottom:227.213529px;}
.y112{bottom:229.008300px;}
.ya5{bottom:229.504350px;}
.y6b{bottom:229.861050px;}
.y23{bottom:231.551145px;}
.y192{bottom:232.153635px;}
.yb7{bottom:232.780305px;}
.ybe{bottom:232.780410px;}
.ya4{bottom:235.079100px;}
.yfe{bottom:237.435600px;}
.y266{bottom:237.525750px;}
.y14c{bottom:238.845585px;}
.y22{bottom:239.481495px;}
.y14a{bottom:239.498085px;}
.y14{bottom:240.043050px;}
.y152{bottom:240.150435px;}
.y9c{bottom:243.441600px;}
.y15{bottom:244.813050px;}
.y290{bottom:245.694750px;}
.y1e0{bottom:250.452420px;}
.y20a{bottom:252.416850px;}
.y2b9{bottom:253.489050px;}
.y2a3{bottom:254.293050px;}
.y1fe{bottom:254.787600px;}
.y3d{bottom:255.116205px;}
.y1a8{bottom:255.262500px;}
.y2ba{bottom:256.894770px;}
.ya3{bottom:261.096600px;}
.y6c{bottom:262.272450px;}
.y157{bottom:262.896285px;}
.y70{bottom:262.976850px;}
.y111{bottom:263.508300px;}
.y159{bottom:263.643435px;}
.y1b7{bottom:266.829600px;}
.y265{bottom:267.525750px;}
.yb{bottom:268.876800px;}
.y39{bottom:269.258355px;}
.y158{bottom:270.822285px;}
.y25b{bottom:276.998850px;}
.yfa{bottom:281.903400px;}
.y24c{bottom:284.488200px;}
.y9f{bottom:286.184100px;}
.y73{bottom:286.931850px;}
.ya2{bottom:287.113050px;}
.ya9{bottom:288.970950px;}
.y1a7{bottom:289.762500px;}
.y1b6{bottom:290.292300px;}
.y21c{bottom:290.939400px;}
.y1df{bottom:292.420920px;}
.y9d{bottom:292.687650px;}
.yff{bottom:293.428500px;}
.y6d{bottom:294.682800px;}
.ya7{bottom:295.475550px;}
.y1cb{bottom:299.485500px;}
.y28f{bottom:299.597550px;}
.y2b8{bottom:301.568700px;}
.y13{bottom:301.590900px;}
.y204{bottom:301.777950px;}
.ya8{bottom:304.767000px;}
.y1ae{bottom:305.579550px;}
.yf{bottom:306.090900px;}
.y72{bottom:306.125700px;}
.y119{bottom:308.400150px;}
.y2a2{bottom:309.923550px;}
.ya{bottom:311.776800px;}
.ya1{bottom:314.058450px;}
.y25a{bottom:317.498850px;}
.yaa{bottom:320.563050px;}
.y24b{bottom:321.988200px;}
.y2b{bottom:322.744245px;}
.y209{bottom:323.122050px;}
.y21b{bottom:325.439400px;}
.y1e6{bottom:326.121900px;}
.y1b5{bottom:326.292300px;}
.y6e{bottom:327.093150px;}
.y1cd{bottom:334.646400px;}
.y276{bottom:337.501950px;}
.y46{bottom:339.429555px;}
.ya0{bottom:340.075800px;}
.y9e{bottom:341.004750px;}
.ya6{bottom:341.933700px;}
.yd{bottom:342.964200px;}
.y1a1{bottom:343.079550px;}
.y1f5{bottom:344.622600px;}
.y74{bottom:346.821150px;}
.y2b7{bottom:347.040600px;}
.y28e{bottom:347.155200px;}
.ye{bottom:347.734200px;}
.y1a{bottom:348.869550px;}
.y1f8{bottom:351.729750px;}
.y25{bottom:352.877595px;}
.y75{bottom:355.276350px;}
.y1dd{bottom:357.703800px;}
.y259{bottom:359.467350px;}
.y24a{bottom:359.488200px;}
.y24{bottom:361.601145px;}
.y45{bottom:361.731555px;}
.y1b4{bottom:362.292300px;}
.y193{bottom:362.482950px;}
.y2a{bottom:367.151445px;}
.y161{bottom:367.600200px;}
.y3a{bottom:368.803155px;}
.y1ce{bottom:369.807300px;}
.yab{bottom:374.320050px;}
.yad{bottom:375.383850px;}
.y13a{bottom:375.725400px;}
.y19{bottom:378.869550px;}
.y1f4{bottom:379.122600px;}
.y208{bottom:379.289250px;}
.y9{bottom:380.831850px;}
.ye8{bottom:383.375100px;}
.y44{bottom:383.489955px;}
.y1f7{bottom:384.233100px;}
.ye9{bottom:384.624600px;}
.yac{bottom:385.605150px;}
.y117{bottom:388.771800px;}
.y174{bottom:389.589300px;}
.y2b6{bottom:392.512650px;}
.y3c{bottom:396.545355px;}
.y249{bottom:396.988200px;}
.y24d{bottom:397.837200px;}
.y1b3{bottom:398.292300px;}
.y2e{bottom:401.250345px;}
.y28d{bottom:403.407300px;}
.y1d1{bottom:403.417500px;}
.y47{bottom:403.615905px;}
.yc3{bottom:405.637350px;}
.y43{bottom:405.791955px;}
.y26e{bottom:406.269600px;}
.y258{bottom:407.498850px;}
.y207{bottom:411.792600px;}
.y21a{bottom:412.539300px;}
.y31{bottom:413.937345px;}
.y29{bottom:414.730845px;}
.y2a1{bottom:416.749800px;}
.yeb{bottom:419.164800px;}
.y263{bottom:419.312400px;}
.y30{bottom:419.488695px;}
.y116{bottom:424.423350px;}
.y2d{bottom:426.625695px;}
.y173{bottom:427.089300px;}
.y42{bottom:427.550505px;}
.y8{bottom:431.627850px;}
.y121{bottom:431.981550px;}
.y1f1{bottom:437.152650px;}
.y2b4{bottom:438.377100px;}
.y28{bottom:438.520545px;}
.y1c4{bottom:438.536400px;}
.y2f{bottom:440.899395px;}
.y261{bottom:441.543900px;}
.y2b5{bottom:441.782820px;}
.y48{bottom:442.237305px;}
.y10e{bottom:446.327850px;}
.y257{bottom:447.998850px;}
.y41{bottom:449.852355px;}
.y219{bottom:450.902250px;}
.y2c{bottom:452.000895px;}
.y16f{bottom:454.655850px;}
.y115{bottom:458.923350px;}
.y16b{bottom:459.699300px;}
.y28c{bottom:461.315100px;}
.y172{bottom:464.589300px;}
.y248{bottom:464.877450px;}
.y2a0{bottom:465.571650px;}
.y3b{bottom:467.803455px;}
.y120{bottom:467.981550px;}
.y122{bottom:469.697250px;}
.y27{bottom:473.411595px;}
.y297{bottom:478.527600px;}
.y26{bottom:481.340745px;}
.y1c2{bottom:481.977450px;}
.y1c1{bottom:483.966300px;}
.y3e{bottom:484.121655px;}
.y40{bottom:485.209755px;}
.y2b3{bottom:486.456600px;}
.y32{bottom:486.892095px;}
.y1be{bottom:488.466300px;}
.y256{bottom:488.498850px;}
.y16e{bottom:489.155850px;}
.y10d{bottom:492.827850px;}
.y114{bottom:493.423350px;}
.y16a{bottom:494.199300px;}
.y3f{bottom:494.457555px;}
.y1f0{bottom:494.782950px;}
.y33{bottom:496.407945px;}
.y118{bottom:498.280650px;}
.y123{bottom:499.715850px;}
.y218{bottom:502.539300px;}
.y11f{bottom:504.800550px;}
.y296{bottom:505.527600px;}
.y28b{bottom:509.315100px;}
.y171{bottom:518.213700px;}
.y247{bottom:519.289950px;}
.y113{bottom:527.446800px;}
.y124{bottom:529.082850px;}
.y255{bottom:530.467350px;}
.y169{bottom:530.508450px;}
.y2b2{bottom:530.956050px;}
.y295{bottom:532.527600px;}
.y1ef{bottom:535.282950px;}
.y217{bottom:540.039300px;}
.y10c{bottom:541.113300px;}
.y11e{bottom:545.300550px;}
.y7{bottom:545.540250px;}
.y2a7{bottom:548.792700px;}
.ye3{bottom:550.265400px;}
.ye4{bottom:554.408400px;}
.y170{bottom:555.713700px;}
.y28a{bottom:558.927300px;}
.y125{bottom:559.101450px;}
.y294{bottom:559.527600px;}
.y246{bottom:561.289950px;}
.y29f{bottom:567.152550px;}
.y2b1{bottom:567.928650px;}
.y1ee{bottom:575.782950px;}
.y216{bottom:578.402250px;}
.y254{bottom:578.498850px;}
.y8e{bottom:579.754950px;}
.y110{bottom:580.822050px;}
.y11d{bottom:585.800550px;}
.y10b{bottom:585.827850px;}
.y168{bottom:586.207650px;}
.y126{bottom:589.120050px;}
.y275{bottom:591.037500px;}
.ye6{bottom:596.340450px;}
.y4b{bottom:599.858400px;}
.y260{bottom:601.380450px;}
.y29e{bottom:611.737050px;}
.y2b0{bottom:612.428100px;}
.yf9{bottom:613.106550px;}
.y245{bottom:615.289950px;}
.y289{bottom:616.835100px;}
.y253{bottom:618.998850px;}
.y127{bottom:619.138650px;}
.y167{bottom:620.707650px;}
.y1b8{bottom:624.102450px;}
.y6{bottom:625.040250px;}
.y215{bottom:630.039300px;}
.y131{bottom:630.232800px;}
.y4a{bottom:633.149400px;}
.y49{bottom:633.486900px;}
.y10a{bottom:634.113300px;}
.y130{bottom:634.147950px;}
.y25f{bottom:643.348950px;}
.y212{bottom:647.854800px;}
.y11c{bottom:647.996700px;}
.y128{bottom:648.504900px;}
.ydc{bottom:648.683400px;}
.y1ed{bottom:648.735600px;}
.y2af{bottom:649.400700px;}
.y12f{bottom:652.420800px;}
.ye1{bottom:654.118050px;}
.y166{bottom:654.731100px;}
.y244{bottom:657.289950px;}
.y252{bottom:659.498850px;}
.y56{bottom:662.360700px;}
.y288{bottom:664.835100px;}
.y29d{bottom:666.885000px;}
.yf8{bottom:669.889500px;}
.y12b{bottom:670.040550px;}
.y12e{bottom:670.693050px;}
.y104{bottom:671.515650px;}
.y135{bottom:671.997900px;}
.y133{bottom:676.566300px;}
.y129{bottom:678.524250px;}
.y1eb{bottom:678.735600px;}
.y109{bottom:678.827850px;}
.y1ec{bottom:681.951600px;}
.y214{bottom:682.539300px;}
.y211{bottom:682.812750px;}
.y134{bottom:683.091900px;}
.y19c{bottom:686.782500px;}
.y11b{bottom:688.496700px;}
.yda{bottom:688.817550px;}
.y12d{bottom:689.617650px;}
.y25e{bottom:691.348950px;}
.yd3{bottom:692.779050px;}
.y136{bottom:694.186050px;}
.y2ae{bottom:695.265000px;}
.y243{bottom:699.289950px;}
.y251{bottom:699.998850px;}
.y5{bottom:704.540250px;}
.yf4{bottom:705.516900px;}
.ydf{bottom:706.083300px;}
.y103{bottom:707.622900px;}
.y12c{bottom:707.890500px;}
.y12a{bottom:708.542850px;}
.y132{bottom:709.195350px;}
.y165{bottom:709.210500px;}
.y1ea{bottom:710.782950px;}
.y76{bottom:713.554950px;}
.y287{bottom:714.447300px;}
.y213{bottom:720.902250px;}
.y29c{bottom:720.948450px;}
.yf7{bottom:722.782650px;}
.y137{bottom:731.941200px;}
.y139{bottom:732.688200px;}
.y19b{bottom:733.282500px;}
.y1c0{bottom:736.694250px;}
.y25d{bottom:737.880450px;}
.y102{bottom:738.441900px;}
.y138{bottom:739.867050px;}
.yf3{bottom:740.691900px;}
.y250{bottom:741.967350px;}
.y2ad{bottom:743.344650px;}
.y1f6{bottom:749.228400px;}
.y1e9{bottom:751.282950px;}
.y206{bottom:754.287900px;}
.y26d{bottom:754.618800px;}
.y77{bottom:756.296550px;}
.yf6{bottom:757.957650px;}
.y1bd{bottom:759.963450px;}
.y108{bottom:760.361400px;}
.y50{bottom:763.254900px;}
.y29b{bottom:765.533100px;}
.y21f{bottom:771.644100px;}
.y286{bottom:772.355100px;}
.yd9{bottom:775.758300px;}
.y25c{bottom:779.848950px;}
.ycf{bottom:782.171400px;}
.y2ac{bottom:787.844100px;}
.yf2{bottom:792.457650px;}
.y26c{bottom:796.618800px;}
.y1bc{bottom:796.861050px;}
.y78{bottom:798.109950px;}
.yee{bottom:798.870750px;}
.y51{bottom:801.112350px;}
.y16d{bottom:803.557650px;}
.yd1{bottom:803.759250px;}
.y107{bottom:806.861400px;}
.y4f{bottom:809.628750px;}
.yde{bottom:810.748800px;}
.yd5{bottom:815.610750px;}
.y29a{bottom:821.163600px;}
.yef{bottom:821.681700px;}
.y285{bottom:821.967300px;}
.y2ab{bottom:823.844100px;}
.yf5{bottom:828.671250px;}
.y1fd{bottom:829.287600px;}
.yf0{bottom:833.533350px;}
.y26b{bottom:838.618800px;}
.y79{bottom:840.851400px;}
.y1bb{bottom:842.589000px;}
.y16c{bottom:844.057650px;}
.y20c{bottom:853.813950px;}
.y4e{bottom:858.838650px;}
.y2aa{bottom:860.816700px;}
.y10f{bottom:862.129200px;}
.y1fc{bottom:863.787600px;}
.y1e8{bottom:867.773400px;}
.y24e{bottom:868.255950px;}
.y20f{bottom:871.302300px;}
.y242{bottom:871.624200px;}
.y21d{bottom:873.819450px;}
.y283{bottom:879.875100px;}
.y299{bottom:879.989850px;}
.y26a{bottom:880.618800px;}
.y7a{bottom:883.593000px;}
.y284{bottom:884.940300px;}
.y1ba{bottom:888.316950px;}
.yd7{bottom:893.972550px;}
.y1fb{bottom:898.287600px;}
.ycd{bottom:900.022050px;}
.y4d{bottom:903.838650px;}
.y2a9{bottom:906.288600px;}
.y1e7{bottom:909.363900px;}
.yf1{bottom:913.044150px;}
.yed{bottom:914.865900px;}
.y106{bottom:915.649800px;}
.y7b{bottom:926.334450px;}
.y298{bottom:928.811550px;}
.y282{bottom:929.487300px;}
.y1fa{bottom:932.787600px;}
.y1b9{bottom:935.198100px;}
.y85{bottom:942.130500px;}
.y84{bottom:947.705100px;}
.y4c{bottom:948.838650px;}
.y2a8{bottom:952.153050px;}
.y105{bottom:958.875900px;}
.y7c{bottom:968.146950px;}
.y269{bottom:971.950950px;}
.y83{bottom:973.722600px;}
.y7f{bottom:998.810100px;}
.y82{bottom:999.739050px;}
.y89{bottom:1001.596950px;}
.y87{bottom:1008.101550px;}
.y7d{bottom:1010.889450px;}
.y88{bottom:1017.393000px;}
.y205{bottom:1018.573200px;}
.y81{bottom:1026.684450px;}
.y1f9{bottom:1028.596050px;}
.y8a{bottom:1033.189050px;}
.y1c{bottom:1034.271600px;}
.y1b{bottom:1034.451750px;}
.ycc{bottom:1036.190550px;}
.y80{bottom:1052.701950px;}
.y7e{bottom:1053.630900px;}
.y86{bottom:1054.559850px;}
.y8b{bottom:1086.946050px;}
.y8d{bottom:1088.009850px;}
.y8c{bottom:1098.231300px;}
.y1{bottom:1111.617600px;}
.h3d{height:0.000000px;}
.h83{height:6.278277px;}
.h47{height:8.939188px;}
.hb2{height:11.914717px;}
.hb0{height:12.086111px;}
.hd5{height:20.144535px;}
.hab{height:21.185280px;}
.h7d{height:23.080069px;}
.hce{height:23.916178px;}
.hc3{height:23.937062px;}
.h9a{height:24.436173px;}
.h8f{height:24.457511px;}
.hca{height:25.244751px;}
.h96{height:25.793632px;}
.haf{height:25.974195px;}
.ha7{height:25.976925px;}
.h7e{height:26.926647px;}
.hc9{height:27.046551px;}
.had{height:27.136230px;}
.h95{height:27.634432px;}
.h81{height:28.849935px;}
.h2c{height:29.106315px;}
.haa{height:29.710500px;}
.h29{height:31.817100px;}
.hcc{height:31.888175px;}
.h98{height:32.581501px;}
.h41{height:32.862129px;}
.hb7{height:33.179040px;}
.hd6{height:33.328125px;}
.hcd{height:35.874080px;}
.hc5{height:35.905584px;}
.hc2{height:35.905593px;}
.h7c{height:36.543292px;}
.h99{height:36.654069px;}
.h91{height:36.686259px;}
.h8e{height:36.686267px;}
.h3{height:37.332525px;}
.h12{height:37.394216px;}
.h3c{height:37.395902px;}
.h31{height:37.428557px;}
.h42{height:38.339007px;}
.h22{height:38.476533px;}
.hc8{height:38.531403px;}
.hc7{height:38.531412px;}
.hc4{height:38.565163px;}
.h84{height:38.675651px;}
.h1{height:39.353280px;}
.h94{height:39.369169px;}
.h93{height:39.369178px;}
.h90{height:39.403663px;}
.h38{height:39.473290px;}
.h18{height:39.731149px;}
.h7a{height:40.390071px;}
.h45{height:41.077446px;}
.h37{height:42.290290px;}
.h10{height:42.492904px;}
.h6b{height:43.484865px;}
.h82{height:44.236648px;}
.h1f{height:44.889344px;}
.hb1{height:45.037959px;}
.hcb{height:45.414332px;}
.hae{height:45.826172px;}
.h57{height:45.983865px;}
.h69{height:46.334865px;}
.h97{height:46.401749px;}
.h15{height:49.079867px;}
.h3a{height:49.861106px;}
.h67{height:49.982850px;}
.h1c{height:50.626302px;}
.h63{height:50.698395px;}
.h24{height:51.302166px;}
.h2e{height:51.469350px;}
.h40{height:52.031489px;}
.h59{height:52.481850px;}
.ha9{height:52.704000px;}
.h5f{height:53.282850px;}
.h7b{height:53.853507px;}
.h89{height:53.912085px;}
.h80{height:54.139001px;}
.h85{height:54.145871px;}
.h86{height:54.145883px;}
.hbf{height:54.158203px;}
.h48{height:55.067609px;}
.h2{height:55.296000px;}
.hf{height:56.091324px;}
.h3b{height:56.093562px;}
.h33{height:56.142827px;}
.h30{height:56.142836px;}
.h3e{height:57.508654px;}
.h23{height:57.714616px;}
.h19{height:58.148051px;}
.h36{height:60.248620px;}
.h35{height:60.248629px;}
.h32{height:60.301402px;}
.h17{height:60.765519px;}
.h27{height:61.488000px;}
.ha{height:61.650000px;}
.he2{height:61.740000px;}
.h11{height:62.620905px;}
.h46{height:62.985532px;}
.h77{height:63.960000px;}
.h14{height:64.829774px;}
.h6c{height:65.183055px;}
.h13{height:65.439705px;}
.h1b{height:65.730820px;}
.h6a{height:65.790000px;}
.h20{height:65.967407px;}
.h9{height:66.150000px;}
.h7f{height:68.693247px;}
.h1e{height:68.936854px;}
.h58{height:70.176000px;}
.hb{height:70.272000px;}
.h78{height:70.560000px;}
.h39{height:71.010926px;}
.h25{height:72.143270px;}
.h64{height:72.240000px;}
.h21{height:72.525740px;}
.h60{height:74.562000px;}
.h68{height:74.970000px;}
.ha8{height:74.998412px;}
.h75{height:76.148438px;}
.h3f{height:76.678302px;}
.h1d{height:76.706614px;}
.h44{height:77.084814px;}
.h49{height:77.094595px;}
.hb9{height:78.720000px;}
.h26{height:78.948000px;}
.h2b{height:79.056000px;}
.h6e{height:79.164000px;}
.h5c{height:79.379995px;}
.h5a{height:79.380000px;}
.hac{height:80.080982px;}
.h74{height:80.712015px;}
.h5d{height:81.276600px;}
.heb{height:81.394219px;}
.h16{height:82.233553px;}
.h4{height:82.944000px;}
.h4e{height:83.334000px;}
.h4d{height:83.448000px;}
.h50{height:83.562000px;}
.ha4{height:83.594062px;}
.h70{height:83.790000px;}
.h76{height:83.953800px;}
.h2d{height:84.373224px;}
.h9c{height:84.469350px;}
.hed{height:84.502080px;}
.hc0{height:84.609375px;}
.h8{height:86.184000px;}
.ha6{height:86.785920px;}
.h61{height:87.656850px;}
.h28{height:87.840000px;}
.hdb{height:87.960000px;}
.hea{height:87.966240px;}
.hee{height:87.966840px;}
.h8b{height:88.200000px;}
.h62{height:88.560000px;}
.hb4{height:88.839844px;}
.h6f{height:89.912085px;}
.h5e{height:90.735450px;}
.hec{height:90.770400px;}
.h8c{height:91.584000px;}
.hb6{height:92.232000px;}
.h79{height:92.610000px;}
.h88{height:93.049665px;}
.h4f{height:93.480000px;}
.ha5{height:93.629400px;}
.hb8{height:93.720015px;}
.h2a{height:93.748036px;}
.h7{height:95.256000px;}
.h71{height:95.947031px;}
.hcf{height:96.624000px;}
.hc1{height:96.730695px;}
.hd0{height:97.020000px;}
.h43{height:97.807407px;}
.h9e{height:98.400000px;}
.hd1{height:98.670000px;}
.ha3{height:98.985000px;}
.hdf{height:98.992969px;}
.h72{height:100.018800px;}
.he6{height:100.092891px;}
.h65{height:100.459500px;}
.hbd{height:101.308440px;}
.h6d{height:101.430000px;}
.h54{height:101.531250px;}
.hef{height:101.942400px;}
.he0{height:102.772800px;}
.he1{height:103.194000px;}
.hd2{height:103.200000px;}
.hb5{height:103.320000px;}
.he7{height:103.914720px;}
.he8{height:104.340600px;}
.h73{height:105.408000px;}
.h55{height:105.840000px;}
.hdc{height:106.607812px;}
.hd3{height:107.857425px;}
.he5{height:108.620760px;}
.he3{height:108.621360px;}
.h8d{height:110.183655px;}
.hd9{height:110.250000px;}
.hdd{height:110.678400px;}
.he4{height:111.908160px;}
.hd7{height:113.160000px;}
.h5b{height:114.438450px;}
.h6{height:115.200000px;}
.hbc{height:119.808000px;}
.h9f{height:120.000000px;}
.hba{height:120.469350px;}
.h66{height:121.988100px;}
.hde{height:123.984000px;}
.h52{height:124.416000px;}
.h9b{height:125.912085px;}
.h4b{height:132.658185px;}
.hbb{height:134.636955px;}
.h9d{height:138.755535px;}
.hbe{height:142.560000px;}
.hd4{height:151.200000px;}
.h8a{height:161.124450px;}
.h2f{height:168.619500px;}
.h5{height:179.712000px;}
.h56{height:180.457200px;}
.h53{height:190.025850px;}
.hd8{height:190.075950px;}
.hd{height:192.099600px;}
.hc{height:194.040000px;}
.ha0{height:212.354850px;}
.ha2{height:212.400000px;}
.hc6{height:233.071500px;}
.hda{height:235.960200px;}
.h92{height:238.138950px;}
.ha1{height:251.255550px;}
.h51{height:258.330750px;}
.he9{height:258.552000px;}
.h4c{height:270.000000px;}
.h87{height:279.889650px;}
.hb3{height:332.751900px;}
.h34{height:364.436100px;}
.h4a{height:398.515650px;}
.he{height:507.509550px;}
.h1a{height:528.481800px;}
.h0{height:1152.000000px;}
.wd{width:0.000000px;}
.w3c{width:11.356135px;}
.w3e{width:11.809102px;}
.w40{width:11.894799px;}
.w3f{width:12.323280px;}
.w3b{width:12.360008px;}
.w3d{width:12.729147px;}
.w41{width:24.137130px;}
.w37{width:27.136230px;}
.w35{width:34.948515px;}
.w38{width:35.386230px;}
.w39{width:38.209785px;}
.w3a{width:39.446190px;}
.w46{width:80.289360px;}
.w49{width:81.000000px;}
.w2b{width:97.056585px;}
.w33{width:101.590785px;}
.w43{width:110.901240px;}
.w18{width:120.801900px;}
.w1d{width:143.218800px;}
.w8{width:151.456950px;}
.w34{width:155.061000px;}
.w23{width:170.317350px;}
.w2f{width:174.238200px;}
.w16{width:175.444380px;}
.w24{width:188.483850px;}
.w25{width:203.819850px;}
.w4b{width:218.217600px;}
.w4a{width:220.766850px;}
.w2e{width:246.503850px;}
.w3{width:251.422650px;}
.w15{width:253.328850px;}
.w44{width:262.456200px;}
.w11{width:273.022050px;}
.w2a{width:274.971600px;}
.w1a{width:278.816850px;}
.w10{width:281.730000px;}
.w19{width:285.646350px;}
.w4c{width:298.033050px;}
.w4d{width:299.214150px;}
.w14{width:299.771850px;}
.w1c{width:307.942350px;}
.wf{width:315.743550px;}
.w2c{width:336.704100px;}
.w20{width:343.760850px;}
.w4e{width:347.870400px;}
.w48{width:358.682250px;}
.w29{width:364.258950px;}
.w2d{width:366.480900px;}
.w9{width:367.056300px;}
.w1e{width:369.882150px;}
.w1f{width:370.178850px;}
.wb{width:372.034350px;}
.wa{width:382.385700px;}
.w1b{width:383.160150px;}
.w36{width:395.425350px;}
.w21{width:408.295350px;}
.w17{width:408.733350px;}
.w5{width:428.045400px;}
.w22{width:431.596350px;}
.w28{width:437.252100px;}
.w31{width:463.904550px;}
.w2{width:476.674050px;}
.w26{width:481.998600px;}
.w32{width:488.731500px;}
.w30{width:500.720100px;}
.we{width:518.643300px;}
.wc{width:560.844000px;}
.w4{width:575.253450px;}
.w6{width:634.387050px;}
.w7{width:704.968500px;}
.w1{width:733.509150px;}
.w42{width:939.342450px;}
.w47{width:1079.623800px;}
.w13{width:1091.688300px;}
.w45{width:1091.979600px;}
.w27{width:1161.042900px;}
.w12{width:1328.435400px;}
.w0{width:1536.000000px;}
.xdf{left:-3.025050px;}
.x41{left:-1.962150px;}
.x0{left:0.000000px;}
.x114{left:3.322350px;}
.xe3{left:4.568100px;}
.x7b{left:6.599250px;}
.x2{left:7.676550px;}
.x70{left:9.000000px;}
.x71{left:10.500000px;}
.xb3{left:14.086050px;}
.x3{left:16.050375px;}
.xf2{left:18.034860px;}
.x64{left:20.056050px;}
.xca{left:21.178500px;}
.x2b{left:22.701060px;}
.xfb{left:25.492650px;}
.xb4{left:27.137700px;}
.x4b{left:29.592300px;}
.x119{left:30.699000px;}
.x1f{left:32.512350px;}
.x18{left:34.161810px;}
.x96{left:35.371050px;}
.x109{left:37.400250px;}
.x66{left:38.639445px;}
.x73{left:40.193685px;}
.x30{left:41.884725px;}
.x62{left:45.143595px;}
.xb1{left:48.020250px;}
.x1e{left:49.165050px;}
.x2f{left:52.763865px;}
.x97{left:54.071805px;}
.x1c{left:56.301900px;}
.x4c{left:59.184600px;}
.x65{left:60.939495px;}
.x63{left:63.726945px;}
.xc5{left:64.916700px;}
.xce{left:65.966400px;}
.x60{left:68.372745px;}
.x1d{left:69.782550px;}
.xf7{left:71.019015px;}
.xdb{left:73.099845px;}
.x6d{left:74.319495px;}
.xb9{left:76.733700px;}
.x11a{left:78.041190px;}
.xf0{left:79.112355px;}
.xb8{left:89.133300px;}
.x11b{left:91.030260px;}
.x10a{left:92.374500px;}
.xcb{left:94.383000px;}
.x6c{left:96.247695px;}
.xe1{left:97.987650px;}
.x46{left:99.345150px;}
.x21{left:101.502000px;}
.xa{left:103.520700px;}
.x101{left:104.781150px;}
.x31{left:107.703585px;}
.x6b{left:109.255845px;}
.x4{left:113.488995px;}
.x27{left:115.776150px;}
.xcc{left:117.403050px;}
.x11d{left:124.399845px;}
.x34{left:127.830390px;}
.x5f{left:129.802455px;}
.xb7{left:131.550900px;}
.x6{left:136.303950px;}
.x2c{left:142.517190px;}
.x26{left:144.322650px;}
.x75{left:146.578020px;}
.x113{left:151.232850px;}
.x53{left:152.646000px;}
.x25{left:156.217500px;}
.x7{left:159.040950px;}
.x76{left:160.616250px;}
.x11e{left:161.652450px;}
.xdc{left:162.849900px;}
.x52{left:168.441900px;}
.xfa{left:169.652400px;}
.xcd{left:171.730350px;}
.x10f{left:174.748800px;}
.x110{left:176.732250px;}
.x4d{left:179.667750px;}
.x35{left:182.770140px;}
.x6a{left:187.306245px;}
.x51{left:190.741950px;}
.xef{left:192.956850px;}
.x24{left:197.453400px;}
.x7a{left:200.053350px;}
.x5c{left:204.121950px;}
.x80{left:205.605450px;}
.x88{left:206.805300px;}
.xf8{left:208.019550px;}
.x23{left:209.348250px;}
.x87{left:211.830600px;}
.x100{left:214.197450px;}
.x22{left:218.864100px;}
.x5b{left:226.050150px;}
.xbb{left:232.701600px;}
.xda{left:237.937050px;}
.x5a{left:239.058300px;}
.xb2{left:241.185150px;}
.x10c{left:243.777450px;}
.xd0{left:249.077850px;}
.xb6{left:250.321200px;}
.x74{left:251.529150px;}
.x59{left:256.713300px;}
.x4e{left:262.807650px;}
.xb5{left:267.288600px;}
.xba{left:274.466700px;}
.x10b{left:277.573200px;}
.x67{left:280.222695px;}
.xc9{left:283.608300px;}
.xc8{left:288.212250px;}
.xcf{left:289.593600px;}
.xc2{left:293.608650px;}
.xc7{left:301.564200px;}
.x112{left:307.563300px;}
.x40{left:309.990600px;}
.xc6{left:313.534950px;}
.x58{left:317.108700px;}
.x20{left:327.502200px;}
.x6f{left:331.327695px;}
.x39{left:335.272050px;}
.xf9{left:340.869300px;}
.x61{left:343.407045px;}
.x8{left:346.572900px;}
.x69{left:356.415195px;}
.x68{left:366.635595px;}
.x86{left:371.330700px;}
.x50{left:381.176400px;}
.xf1{left:387.450900px;}
.x6e{left:390.794145px;}
.x11f{left:403.080660px;}
.x54{left:410.025150px;}
.x94{left:416.790150px;}
.x3b{left:424.781400px;}
.x4a{left:429.792900px;}
.x49{left:434.020050px;}
.x48{left:441.065700px;}
.x4f{left:443.179650px;}
.x3c{left:446.097150px;}
.x120{left:460.796220px;}
.x2a{left:462.310200px;}
.x33{left:463.995840px;}
.x3d{left:469.781400px;}
.x5e{left:473.209500px;}
.x47{left:479.818200px;}
.x57{left:486.217650px;}
.x3e{left:491.097150px;}
.x56{left:496.438050px;}
.x37{left:499.353090px;}
.x3f{left:500.595900px;}
.x82{left:508.386600px;}
.x55{left:510.376200px;}
.xd5{left:513.145350px;}
.x91{left:515.597850px;}
.x29{left:519.404250px;}
.x5d{left:520.596600px;}
.x44{left:523.032000px;}
.x28{left:528.920250px;}
.xd3{left:538.812000px;}
.x93{left:540.536850px;}
.x116{left:547.190550px;}
.x117{left:552.108900px;}
.x95{left:557.571150px;}
.x9{left:564.954450px;}
.x32{left:572.787240px;}
.x11c{left:587.713650px;}
.x1b{left:593.944650px;}
.x1a{left:606.632850px;}
.xbe{left:607.845150px;}
.x108{left:622.830000px;}
.x84{left:624.294300px;}
.xd9{left:631.410150px;}
.x36{left:639.694290px;}
.x107{left:641.755350px;}
.x2e{left:644.045190px;}
.x78{left:655.991850px;}
.x106{left:657.076050px;}
.x2d{left:659.276640px;}
.x8b{left:664.645200px;}
.x115{left:667.052850px;}
.x89{left:680.238000px;}
.x77{left:686.718900px;}
.x79{left:691.900800px;}
.x8a{left:694.891500px;}
.x8c{left:700.554150px;}
.x10d{left:709.004250px;}
.xd8{left:723.861300px;}
.xe{left:727.886550px;}
.xf{left:731.036550px;}
.x10e{left:732.896100px;}
.x11{left:768.697200px;}
.xdd{left:771.647850px;}
.x10{left:779.797650px;}
.x1{left:802.490850px;}
.xc{left:820.167600px;}
.xd{left:821.643750px;}
.x19{left:824.085750px;}
.x38{left:839.638950px;}
.x45{left:841.297800px;}
.x9b{left:846.543450px;}
.x42{left:866.105400px;}
.x81{left:884.285700px;}
.x111{left:891.393450px;}
.xfc{left:897.651450px;}
.x105{left:900.403200px;}
.xff{left:904.521000px;}
.x104{left:917.977050px;}
.x102{left:927.522450px;}
.x103{left:929.692950px;}
.xfd{left:932.151450px;}
.xfe{left:942.651450px;}
.xbf{left:947.547150px;}
.xc0{left:954.134250px;}
.x9c{left:955.878000px;}
.x9e{left:957.651750px;}
.xde{left:960.300750px;}
.xd4{left:962.712450px;}
.x3a{left:966.418500px;}
.x9d{left:968.245650px;}
.xa2{left:969.877950px;}
.xa3{left:971.592150px;}
.xd7{left:972.619800px;}
.x99{left:975.157050px;}
.xd6{left:980.456700px;}
.xc1{left:991.368900px;}
.x98{left:993.112500px;}
.xc3{left:996.017100px;}
.x118{left:1000.670550px;}
.x9a{left:1006.657050px;}
.xc4{left:1008.829050px;}
.xb0{left:1021.161450px;}
.xa7{left:1037.205150px;}
.xa6{left:1048.299150px;}
.xa5{left:1056.130200px;}
.xa4{left:1063.961100px;}
.xad{left:1073.358300px;}
.x43{left:1074.779550px;}
.x7e{left:1077.349800px;}
.xeb{left:1083.021900px;}
.x8f{left:1085.522400px;}
.xac{left:1088.759100px;}
.xe9{left:1093.551900px;}
.x7d{left:1098.309000px;}
.xe8{left:1103.273400px;}
.x8e{left:1106.962500px;}
.x7f{left:1109.324550px;}
.x90{left:1117.497300px;}
.xe2{left:1119.748800px;}
.xf6{left:1139.856750px;}
.x7c{left:1146.643800px;}
.x12{left:1153.101600px;}
.x16{left:1155.175650px;}
.x13{left:1156.251600px;}
.x14{left:1158.527700px;}
.x15{left:1161.677700px;}
.xf5{left:1164.291450px;}
.x8d{left:1168.600500px;}
.x92{left:1176.448200px;}
.xe0{left:1177.740000px;}
.xec{left:1179.027900px;}
.xf3{left:1182.717000px;}
.xe4{left:1185.450000px;}
.x5{left:1189.989450px;}
.xed{left:1211.510700px;}
.xa8{left:1217.970450px;}
.xbc{left:1231.806150px;}
.xd1{left:1238.567100px;}
.x72{left:1249.901550px;}
.x83{left:1257.089550px;}
.xaf{left:1262.346600px;}
.xab{left:1271.482650px;}
.xaa{left:1278.660750px;}
.xa9{left:1288.450050px;}
.x85{left:1292.345550px;}
.xae{left:1295.628150px;}
.xa0{left:1309.306200px;}
.xf4{left:1318.597050px;}
.x9f{left:1333.701750px;}
.xe5{left:1340.490750px;}
.xd2{left:1361.761800px;}
.xbd{left:1369.288800px;}
.xe6{left:1372.427250px;}
.x17{left:1377.475200px;}
.xee{left:1392.486150px;}
.xe7{left:1404.434550px;}
.xea{left:1475.895300px;}
.xa1{left:1477.857450px;}
.xb{left:1494.111600px;}
@media print{
.v1b{vertical-align:-66.372267pt;}
.v3{vertical-align:-30.280693pt;}
.v1{vertical-align:-29.305067pt;}
.v5{vertical-align:-27.252288pt;}
.v13{vertical-align:-24.224800pt;}
.v1e{vertical-align:-18.009600pt;}
.v16{vertical-align:-17.027253pt;}
.v14{vertical-align:-15.135040pt;}
.v1a{vertical-align:-11.434667pt;}
.v10{vertical-align:-10.191813pt;}
.vb{vertical-align:-9.221163pt;}
.v9{vertical-align:-7.513067pt;}
.vc{vertical-align:-6.348267pt;}
.v8{vertical-align:-5.008533pt;}
.vf{vertical-align:-4.094400pt;}
.v12{vertical-align:-3.190933pt;}
.v0{vertical-align:0.000000pt;}
.v1d{vertical-align:1.601600pt;}
.v7{vertical-align:2.504000pt;}
.v2{vertical-align:3.868800pt;}
.v17{vertical-align:10.191813pt;}
.ve{vertical-align:21.120000pt;}
.vd{vertical-align:22.293333pt;}
.v1c{vertical-align:23.466667pt;}
.v19{vertical-align:25.813333pt;}
.v6{vertical-align:27.252288pt;}
.v4{vertical-align:30.280693pt;}
.v11{vertical-align:37.125867pt;}
.v15{vertical-align:39.359840pt;}
.v18{vertical-align:44.279307pt;}
.va{vertical-align:52.860800pt;}
.ls1f{letter-spacing:-1.536000pt;}
.ls32{letter-spacing:-1.261867pt;}
.ls25{letter-spacing:-1.226667pt;}
.ls20{letter-spacing:-1.152000pt;}
.ls2d{letter-spacing:-0.024960pt;}
.ls2c{letter-spacing:-0.017920pt;}
.ls2f{letter-spacing:-0.014933pt;}
.ls2e{letter-spacing:-0.012480pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000004pt;}
.lse{letter-spacing:0.000016pt;}
.ls15{letter-spacing:0.000027pt;}
.ls13{letter-spacing:0.000107pt;}
.ls12{letter-spacing:0.000160pt;}
.lsb{letter-spacing:0.000320pt;}
.ls2a{letter-spacing:0.052800pt;}
.ls29{letter-spacing:0.053333pt;}
.ls1d{letter-spacing:0.743333pt;}
.ls19{letter-spacing:1.253221pt;}
.ls6{letter-spacing:6.056073pt;}
.lsc{letter-spacing:10.496000pt;}
.ls10{letter-spacing:16.000000pt;}
.ls1e{letter-spacing:16.640000pt;}
.ls1c{letter-spacing:18.204573pt;}
.ls18{letter-spacing:21.532688pt;}
.ls16{letter-spacing:21.532741pt;}
.ls17{letter-spacing:21.532743pt;}
.ls35{letter-spacing:21.548800pt;}
.ls27{letter-spacing:26.208000pt;}
.ls7{letter-spacing:30.280339pt;}
.ls5{letter-spacing:33.644844pt;}
.ls22{letter-spacing:35.309333pt;}
.ls21{letter-spacing:38.080000pt;}
.ls24{letter-spacing:40.191733pt;}
.ls23{letter-spacing:40.192000pt;}
.lsd{letter-spacing:46.538667pt;}
.ls33{letter-spacing:51.180373pt;}
.ls11{letter-spacing:52.563627pt;}
.lsa{letter-spacing:56.021760pt;}
.ls2b{letter-spacing:57.800267pt;}
.ls9{letter-spacing:59.648000pt;}
.ls26{letter-spacing:62.246400pt;}
.ls30{letter-spacing:62.938080pt;}
.ls34{letter-spacing:77.071467pt;}
.ls14{letter-spacing:79.154827pt;}
.ls28{letter-spacing:93.735840pt;}
.ls31{letter-spacing:94.777227pt;}
.ls1a{letter-spacing:102.538667pt;}
.lsf{letter-spacing:211.132085pt;}
.ls2{letter-spacing:241.982526pt;}
.ls1{letter-spacing:284.271598pt;}
.ls8{letter-spacing:300.616115pt;}
.ls4{letter-spacing:362.618481pt;}
.ls3{letter-spacing:403.236619pt;}
.ws3a{word-spacing:-96.000000pt;}
.ws28{word-spacing:-74.666667pt;}
.ws2{word-spacing:-58.410667pt;}
.ws47{word-spacing:-53.333333pt;}
.ws6{word-spacing:-46.933333pt;}
.ws5{word-spacing:-46.464000pt;}
.ws25{word-spacing:-37.440000pt;}
.ws3{word-spacing:-37.066667pt;}
.ws64{word-spacing:-25.804800pt;}
.ws6e{word-spacing:-25.237333pt;}
.ws6f{word-spacing:-24.984960pt;}
.ws68{word-spacing:-24.960000pt;}
.ws61{word-spacing:-24.533333pt;}
.ws2f{word-spacing:-24.192000pt;}
.ws2e{word-spacing:-23.950080pt;}
.ws6d{word-spacing:-23.723093pt;}
.ws5e{word-spacing:-23.466667pt;}
.ws3c{word-spacing:-22.400000pt;}
.ws60{word-spacing:-22.325333pt;}
.ws3b{word-spacing:-22.176000pt;}
.wse{word-spacing:-22.044591pt;}
.ws9{word-spacing:-21.946957pt;}
.ws48{word-spacing:-21.790720pt;}
.ws52{word-spacing:-21.504000pt;}
.ws3d{word-spacing:-21.333333pt;}
.ws63{word-spacing:-21.120000pt;}
.ws71{word-spacing:-20.522667pt;}
.ws45{word-spacing:-20.266667pt;}
.ws4b{word-spacing:-20.234240pt;}
.ws44{word-spacing:-20.064000pt;}
.ws27{word-spacing:-19.200000pt;}
.ws31{word-spacing:-19.008000pt;}
.ws7{word-spacing:-18.811727pt;}
.ws32{word-spacing:-18.432000pt;}
.ws2b{word-spacing:-18.133333pt;}
.ws57{word-spacing:-18.048000pt;}
.ws66{word-spacing:-17.920000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws26{word-spacing:-17.066667pt;}
.ws6c{word-spacing:-16.824885pt;}
.ws2a{word-spacing:-16.384000pt;}
.ws2c{word-spacing:-15.360000pt;}
.ws4a{word-spacing:-15.132448pt;}
.ws35{word-spacing:-14.933333pt;}
.ws6b{word-spacing:-14.336000pt;}
.ws56{word-spacing:-14.222219pt;}
.ws4c{word-spacing:-14.051552pt;}
.ws70{word-spacing:-13.681781pt;}
.ws22{word-spacing:-13.511115pt;}
.ws43{word-spacing:-13.376004pt;}
.ws1d{word-spacing:-13.238425pt;}
.ws24{word-spacing:-12.970670pt;}
.ws30{word-spacing:-12.800000pt;}
.ws29{word-spacing:-11.377781pt;}
.ws42{word-spacing:-8.650585pt;}
.ws5d{word-spacing:-8.466503pt;}
.ws46{word-spacing:-0.266667pt;}
.ws1{word-spacing:-0.197333pt;}
.ws67{word-spacing:-0.134400pt;}
.ws13{word-spacing:-0.121121pt;}
.ws49{word-spacing:-0.113493pt;}
.ws6a{word-spacing:-0.112320pt;}
.ws34{word-spacing:-0.112000pt;}
.ws17{word-spacing:-0.109009pt;}
.ws23{word-spacing:-0.101333pt;}
.ws69{word-spacing:-0.099840pt;}
.wsc{word-spacing:-0.098683pt;}
.ws4d{word-spacing:-0.096897pt;}
.ws33{word-spacing:-0.096000pt;}
.ws12{word-spacing:-0.087033pt;}
.ws10{word-spacing:-0.083165pt;}
.wsa{word-spacing:-0.078946pt;}
.ws50{word-spacing:-0.077397pt;}
.wsd{word-spacing:-0.073307pt;}
.ws65{word-spacing:-0.071680pt;}
.ws1f{word-spacing:-0.069378pt;}
.ws58{word-spacing:-0.069333pt;}
.ws4e{word-spacing:-0.068797pt;}
.ws1e{word-spacing:-0.062770pt;}
.ws51{word-spacing:-0.061307pt;}
.wsb{word-spacing:-0.059210pt;}
.ws53{word-spacing:-0.054952pt;}
.ws37{word-spacing:-0.048726pt;}
.ws1b{word-spacing:-0.047620pt;}
.ws36{word-spacing:-0.044086pt;}
.ws5f{word-spacing:-0.042667pt;}
.ws40{word-spacing:-0.031117pt;}
.ws5b{word-spacing:-0.030455pt;}
.ws4{word-spacing:0.000000pt;}
.ws4f{word-spacing:16.084943pt;}
.ws39{word-spacing:26.587820pt;}
.ws16{word-spacing:30.171064pt;}
.ws18{word-spacing:30.171597pt;}
.ws15{word-spacing:30.195617pt;}
.ws59{word-spacing:35.868848pt;}
.ws3e{word-spacing:36.648908pt;}
.ws14{word-spacing:37.120166pt;}
.ws21{word-spacing:37.856283pt;}
.ws19{word-spacing:56.085539pt;}
.ws8{word-spacing:168.152598pt;}
.ws5a{word-spacing:196.373568pt;}
.ws3f{word-spacing:200.642724pt;}
.wsf{word-spacing:297.472672pt;}
.ws1a{word-spacing:307.054373pt;}
.ws5c{word-spacing:396.421758pt;}
.ws41{word-spacing:405.041327pt;}
.ws1c{word-spacing:619.854982pt;}
.ws38{word-spacing:671.392163pt;}
.ws62{word-spacing:892.321600pt;}
.ws20{word-spacing:955.949664pt;}
.ws54{word-spacing:1221.661653pt;}
.ws55{word-spacing:1221.661813pt;}
.ws11{word-spacing:1493.032857pt;}
.ws2d{word-spacing:2097.734400pt;}
._54{margin-left:-3831.826667pt;}
._24{margin-left:-2291.157333pt;}
._12{margin-left:-622.782961pt;}
._1e{margin-left:-367.734793pt;}
._32{margin-left:-305.367580pt;}
._17{margin-left:-297.538598pt;}
._f{margin-left:-238.360725pt;}
._23{margin-left:-234.823734pt;}
._1f{margin-left:-223.272993pt;}
._10{margin-left:-216.073174pt;}
._3c{margin-left:-214.468503pt;}
._c{margin-left:-200.263518pt;}
._34{margin-left:-186.922918pt;}
._11{margin-left:-183.954427pt;}
._2b{margin-left:-163.895665pt;}
._22{margin-left:-157.686343pt;}
._40{margin-left:-131.623437pt;}
._1b{margin-left:-128.796501pt;}
._1a{margin-left:-127.651950pt;}
._2c{margin-left:-125.128469pt;}
._21{margin-left:-119.948763pt;}
._2e{margin-left:-116.940901pt;}
._e{margin-left:-114.383505pt;}
._8{margin-left:-111.898115pt;}
._47{margin-left:-107.097119pt;}
._58{margin-left:-104.817871pt;}
._14{margin-left:-102.495929pt;}
._20{margin-left:-94.809560pt;}
._3f{margin-left:-89.364598pt;}
._d{margin-left:-86.186709pt;}
._1c{margin-left:-84.703053pt;}
._16{margin-left:-83.214881pt;}
._48{margin-left:-81.764063pt;}
._59{margin-left:-80.024255pt;}
._33{margin-left:-78.219468pt;}
._4a{margin-left:-76.414305pt;}
._15{margin-left:-75.175348pt;}
._9{margin-left:-74.278393pt;}
._3e{margin-left:-66.534975pt;}
._3d{margin-left:-54.936044pt;}
._30{margin-left:-49.411677pt;}
._4c{margin-left:-32.287964pt;}
._5b{margin-left:-30.819985pt;}
._2f{margin-left:-28.268294pt;}
._4b{margin-left:-18.471921pt;}
._3a{margin-left:-15.141333pt;}
._3{margin-left:-12.266667pt;}
._4{margin-left:-9.322667pt;}
._5f{margin-left:-8.021333pt;}
._27{margin-left:-7.008000pt;}
._1{margin-left:-5.888000pt;}
._7{margin-left:-4.588160pt;}
._2{margin-left:-3.536000pt;}
._5{margin-left:-2.048000pt;}
._0{margin-left:-1.152000pt;}
._39{width:1.152000pt;}
._3b{width:2.512000pt;}
._5e{width:3.509333pt;}
._42{width:32.599270pt;}
._43{width:37.238735pt;}
._5d{width:40.120000pt;}
._25{width:43.362667pt;}
._36{width:46.415881pt;}
._53{width:51.783467pt;}
._37{width:53.021747pt;}
._56{width:60.778551pt;}
._44{width:62.760330pt;}
._41{width:64.549350pt;}
._55{width:71.994554pt;}
._45{width:73.559540pt;}
._38{width:89.361481pt;}
._35{width:91.907472pt;}
._29{width:95.034946pt;}
._28{width:112.572549pt;}
._57{width:119.973893pt;}
._46{width:122.583206pt;}
._2a{width:187.594754pt;}
._b{width:210.495512pt;}
._19{width:216.787203pt;}
._a{width:224.588314pt;}
._5a{width:225.802147pt;}
._49{width:230.711795pt;}
._5c{width:251.082871pt;}
._4d{width:256.542809pt;}
._1d{width:342.724732pt;}
._2d{width:353.070622pt;}
._31{width:392.599858pt;}
._18{width:537.891892pt;}
._26{width:542.874133pt;}
._13{width:565.551034pt;}
._50{width:845.994667pt;}
._4f{width:1087.717867pt;}
._51{width:1144.625600pt;}
._4e{width:1152.733653pt;}
._52{width:1199.203200pt;}
._6{width:1528.669653pt;}
.fs48{font-size:27.843595pt;}
.fs75{font-size:28.852268pt;}
.fs6c{font-size:28.877463pt;}
.fs5a{font-size:29.479586pt;}
.fs51{font-size:29.505329pt;}
.fs71{font-size:30.455047pt;}
.fs56{font-size:31.117213pt;}
.fs49{font-size:32.484072pt;}
.fs4c{font-size:34.804310pt;}
.fs73{font-size:38.469616pt;}
.fs43{font-size:39.111115pt;}
.fs58{font-size:39.306038pt;}
.fs33{font-size:39.644586pt;}
.fs78{font-size:42.666667pt;}
.fs74{font-size:43.278177pt;}
.fs6e{font-size:43.316184pt;}
.fs6b{font-size:43.316194pt;}
.fs66{font-size:43.528283pt;}
.fs47{font-size:44.085509pt;}
.fs59{font-size:44.219149pt;}
.fs53{font-size:44.257983pt;}
.fs50{font-size:44.257993pt;}
.fs10{font-size:45.112056pt;}
.fs2f{font-size:45.114090pt;}
.fs26{font-size:45.153485pt;}
.fs34{font-size:46.251844pt;}
.fs1e{font-size:46.417754pt;}
.fs70{font-size:46.483949pt;}
.fs6f{font-size:46.483960pt;}
.fs6d{font-size:46.524676pt;}
.fs4d{font-size:46.657968pt;}
.fs55{font-size:47.494623pt;}
.fs54{font-size:47.494634pt;}
.fs52{font-size:47.536235pt;}
.fs2b{font-size:47.620233pt;}
.fs16{font-size:47.931311pt;}
.fs45{font-size:48.726230pt;}
.fs63{font-size:48.845877pt;}
.fs36{font-size:49.555472pt;}
.fs4b{font-size:53.366707pt;}
.fse{font-size:53.570617pt;}
.fs1b{font-size:54.154113pt;}
.fs72{font-size:54.498529pt;}
.fs64{font-size:54.951627pt;}
.fs57{font-size:55.683459pt;}
.fs3f{font-size:56.888907pt;}
.fs42{font-size:58.666667pt;}
.fs13{font-size:59.209524pt;}
.fs2d{font-size:60.152003pt;}
.fs65{font-size:61.307413pt;}
.fs1f{font-size:61.890486pt;}
.fs32{font-size:62.770335pt;}
.fs18{font-size:63.824356pt;}
.fs0{font-size:64.000000pt;}
.fs4a{font-size:64.968387pt;}
.fs46{font-size:64.968402pt;}
.fs4e{font-size:65.321107pt;}
.fs4f{font-size:65.321121pt;}
.fs37{font-size:66.433084pt;}
.fs39{font-size:67.555573pt;}
.fsd{font-size:67.668084pt;}
.fs2e{font-size:67.670784pt;}
.fs28{font-size:67.730217pt;}
.fs25{font-size:67.730228pt;}
.fs82{font-size:68.408907pt;}
.fs62{font-size:68.797013pt;}
.fs44{font-size:69.333333pt;}
.fs30{font-size:69.377939pt;}
.fs1d{font-size:69.626410pt;}
.fs60{font-size:70.257760pt;}
.fs68{font-size:71.111093pt;}
.fs2a{font-size:72.683410pt;}
.fs29{font-size:72.683421pt;}
.fs27{font-size:72.747086pt;}
.fs15{font-size:73.306992pt;}
.fs20{font-size:74.666667pt;}
.fs5d{font-size:75.662240pt;}
.fs35{font-size:75.985197pt;}
.fs24{font-size:77.396640pt;}
.fs67{font-size:78.222240pt;}
.fs11{font-size:78.945889pt;}
.fsf{font-size:78.945900pt;}
.fs17{font-size:79.297088pt;}
.fs8{font-size:80.000000pt;}
.fs12{font-size:81.730611pt;}
.fs1a{font-size:83.164819pt;}
.fs7e{font-size:84.124427pt;}
.fs2c{font-size:85.215191pt;}
.fs9{font-size:85.333333pt;}
.fs22{font-size:85.996267pt;}
.fs1c{font-size:87.033012pt;}
.fs7a{font-size:89.600000pt;}
.fs3e{font-size:90.666667pt;}
.fs31{font-size:92.504035pt;}
.fs38{font-size:93.006247pt;}
.fs5e{font-size:93.226667pt;}
.fs3d{font-size:95.999994pt;}
.fs1{font-size:96.000000pt;}
.fs19{font-size:96.703691pt;}
.fs61{font-size:96.897173pt;}
.fs14{font-size:98.682673pt;}
.fs7{font-size:101.333333pt;}
.fs81{font-size:102.613333pt;}
.fs5f{font-size:105.386667pt;}
.fsb{font-size:106.666667pt;}
.fs23{font-size:109.009333pt;}
.fs80{font-size:110.506667pt;}
.fs6{font-size:112.000000pt;}
.fs5c{font-size:113.493333pt;}
.fs76{font-size:117.333333pt;}
.fs41{font-size:120.960000pt;}
.fs21{font-size:121.121493pt;}
.fs40{font-size:122.666667pt;}
.fs7b{font-size:124.800000pt;}
.fs7d{font-size:126.186667pt;}
.fs5{font-size:128.000000pt;}
.fs4{font-size:133.333333pt;}
.fs79{font-size:134.400000pt;}
.fs7c{font-size:135.893333pt;}
.fs69{font-size:138.666667pt;}
.fs3a{font-size:144.000000pt;}
.fs6a{font-size:176.000000pt;}
.fs77{font-size:186.666667pt;}
.fs3c{font-size:188.480000pt;}
.fs3{font-size:197.333333pt;}
.fs2{font-size:208.000000pt;}
.fs3b{font-size:218.240000pt;}
.fsc{font-size:232.320000pt;}
.fsa{font-size:234.666667pt;}
.fs5b{font-size:266.666667pt;}
.fs7f{font-size:304.000000pt;}
.y228{bottom:-87.062320pt;}
.y227{bottom:-83.858027pt;}
.y226{bottom:-81.454760pt;}
.y225{bottom:-68.237000pt;}
.y229{bottom:-62.228947pt;}
.y22e{bottom:-54.218147pt;}
.y22a{bottom:-49.812253pt;}
.y22b{bottom:-36.994973pt;}
.y22c{bottom:-24.578387pt;}
.y22d{bottom:-12.161628pt;}
.y0{bottom:0.000000pt;}
.y143{bottom:0.579947pt;}
.y97{bottom:0.825733pt;}
.y230{bottom:0.896993pt;}
.y181{bottom:0.916493pt;}
.y64{bottom:1.402533pt;}
.y1dc{bottom:3.831707pt;}
.y1d6{bottom:3.831720pt;}
.y1d4{bottom:3.984067pt;}
.y1db{bottom:3.984107pt;}
.y179{bottom:4.501721pt;}
.y264{bottom:5.713467pt;}
.y262{bottom:5.713600pt;}
.y1c3{bottom:6.813187pt;}
.y5c{bottom:6.889213pt;}
.y55{bottom:7.122667pt;}
.y52{bottom:7.570093pt;}
.y178{bottom:7.775680pt;}
.y1c9{bottom:7.856107pt;}
.y1c6{bottom:7.856120pt;}
.y1cc{bottom:7.856133pt;}
.y4{bottom:8.452421pt;}
.y1f{bottom:8.458507pt;}
.yc{bottom:8.466175pt;}
.y15b{bottom:8.594287pt;}
.y175{bottom:8.655640pt;}
.y13c{bottom:8.701200pt;}
.y1bf{bottom:9.840027pt;}
.y177{bottom:10.231200pt;}
.y22f{bottom:10.573085pt;}
.y3{bottom:10.883407pt;}
.y1d2{bottom:11.069853pt;}
.y1d0{bottom:11.069893pt;}
.y5b{bottom:11.899520pt;}
.yea{bottom:12.369867pt;}
.y90{bottom:12.388933pt;}
.yb0{bottom:12.388947pt;}
.y19a{bottom:12.527733pt;}
.y2{bottom:12.679733pt;}
.yce{bottom:13.194533pt;}
.ye2{bottom:14.019067pt;}
.y194{bottom:14.019200pt;}
.y57{bottom:14.093733pt;}
.ye5{bottom:14.093867pt;}
.y20{bottom:14.802387pt;}
.yd0{bottom:14.843867pt;}
.y101{bottom:14.876800pt;}
.ye7{bottom:14.903200pt;}
.ybc{bottom:14.915867pt;}
.y36{bottom:14.989040pt;}
.y5a{bottom:15.657320pt;}
.y1a6{bottom:15.659867pt;}
.y280{bottom:15.914373pt;}
.yd2{bottom:15.931067pt;}
.yd6{bottom:15.931200pt;}
.y1e5{bottom:16.442773pt;}
.yd8{bottom:16.952533pt;}
.yfc{bottom:18.008760pt;}
.yec{bottom:18.008800pt;}
.y1a0{bottom:18.791653pt;}
.y231{bottom:19.321635pt;}
.y182{bottom:19.741733pt;}
.ydd{bottom:20.295200pt;}
.y37{bottom:22.241827pt;}
.y176{bottom:23.736347pt;}
.y20e{bottom:24.526533pt;}
.y15a{bottom:26.576560pt;}
.y13b{bottom:26.683467pt;}
.ycb{bottom:27.058400pt;}
.y272{bottom:28.132800pt;}
.y58{bottom:28.358360pt;}
.y17a{bottom:29.875027pt;}
.y65{bottom:30.211733pt;}
.y144{bottom:30.744013pt;}
.y1e{bottom:31.014493pt;}
.y210{bottom:31.129867pt;}
.y21e{bottom:31.158667pt;}
.y15c{bottom:32.957347pt;}
.y24f{bottom:33.016533pt;}
.y13d{bottom:33.064267pt;}
.yc7{bottom:33.175867pt;}
.y59{bottom:36.324920pt;}
.y8f{bottom:37.992667pt;}
.yaf{bottom:37.992680pt;}
.y17f{bottom:38.060013pt;}
.y232{bottom:38.147261pt;}
.y183{bottom:38.976653pt;}
.yae{bottom:39.657000pt;}
.yd4{bottom:40.589200pt;}
.y199{bottom:40.650400pt;}
.y17b{bottom:42.561707pt;}
.y54{bottom:43.326667pt;}
.y15d{bottom:43.398720pt;}
.y13e{bottom:43.505600pt;}
.y10{bottom:43.540867pt;}
.y98{bottom:43.774267pt;}
.yfb{bottom:44.371547pt;}
.y1f3{bottom:44.760533pt;}
.y5d{bottom:45.719253pt;}
.ydb{bottom:46.110533pt;}
.y27f{bottom:46.581040pt;}
.y100{bottom:46.876800pt;}
.y197{bottom:46.876827pt;}
.ybb{bottom:46.915867pt;}
.yb1{bottom:47.077827pt;}
.y91{bottom:47.077867pt;}
.y11{bottom:47.780867pt;}
.y35{bottom:48.351733pt;}
.y1a5{bottom:48.993200pt;}
.y53{bottom:50.449333pt;}
.y1e4{bottom:52.442773pt;}
.y281{bottom:53.130267pt;}
.y15e{bottom:53.259973pt;}
.y13f{bottom:53.366800pt;}
.yb6{bottom:53.588707pt;}
.y19f{bottom:55.571520pt;}
.y17c{bottom:55.657667pt;}
.y1cf{bottom:55.963373pt;}
.y233{bottom:56.571901pt;}
.y184{bottom:57.801853pt;}
.y62{bottom:58.245133pt;}
.y274{bottom:58.536800pt;}
.y279{bottom:58.536827pt;}
.y271{bottom:58.799467pt;}
.y27a{bottom:59.425440pt;}
.y66{bottom:59.647867pt;}
.y34{bottom:60.891640pt;}
.y145{bottom:61.487987pt;}
.y92{bottom:61.944533pt;}
.yb2{bottom:61.944600pt;}
.y1c5{bottom:62.534307pt;}
.y15f{bottom:63.701533pt;}
.y140{bottom:63.808400pt;}
.y5e{bottom:65.134307pt;}
.y203{bottom:65.144493pt;}
.ybd{bottom:67.632080pt;}
.y17d{bottom:68.344213pt;}
.y224{bottom:69.806440pt;}
.y1d{bottom:71.934893pt;}
.y20d{bottom:72.526533pt;}
.y160{bottom:74.142853pt;}
.y141{bottom:74.249733pt;}
.y234{bottom:74.996541pt;}
.y1f2{bottom:75.427200pt;}
.y93{bottom:75.985333pt;}
.yb3{bottom:75.985360pt;}
.y185{bottom:76.627187pt;}
.ye0{bottom:76.777200pt;}
.y1ca{bottom:77.043093pt;}
.y27e{bottom:77.247760pt;}
.yca{bottom:78.245467pt;}
.y1de{bottom:78.331627pt;}
.y196{bottom:78.876827pt;}
.yba{bottom:78.915867pt;}
.yc2{bottom:78.915920pt;}
.y162{bottom:79.177507pt;}
.y17e{bottom:81.030947pt;}
.y1b2{bottom:82.326533pt;}
.yc6{bottom:82.509200pt;}
.y142{bottom:82.843747pt;}
.y18{bottom:83.247827pt;}
.y1a4{bottom:84.213333pt;}
.y5f{bottom:85.175707pt;}
.y195{bottom:87.109707pt;}
.y99{bottom:87.548533pt;}
.y67{bottom:88.457067pt;}
.y1ad{bottom:88.838707pt;}
.y19e{bottom:88.904853pt;}
.y270{bottom:89.466133pt;}
.y293{bottom:89.545840pt;}
.y1e3{bottom:89.748107pt;}
.y273{bottom:89.931467pt;}
.y278{bottom:89.931493pt;}
.yb4{bottom:90.852387pt;}
.y94{bottom:90.852400pt;}
.y146{bottom:91.651453pt;}
.y235{bottom:93.421755pt;}
.y1d3{bottom:94.905467pt;}
.y1d5{bottom:95.057813pt;}
.y186{bottom:95.452920pt;}
.y202{bottom:95.811160pt;}
.y2a6{bottom:98.720453pt;}
.y277{bottom:99.195707pt;}
.y21{bottom:99.387373pt;}
.y223{bottom:100.473107pt;}
.y1c7{bottom:103.478560pt;}
.y2bd{bottom:103.716147pt;}
.y12{bottom:104.524680pt;}
.y60{bottom:104.590587pt;}
.yb5{bottom:105.719000pt;}
.y95{bottom:105.719067pt;}
.y164{bottom:107.918267pt;}
.y23b{bottom:108.241555pt;}
.y27d{bottom:108.642427pt;}
.y18c{bottom:110.595053pt;}
.yb9{bottom:110.915827pt;}
.yc1{bottom:110.915920pt;}
.y23d{bottom:111.445981pt;}
.y236{bottom:112.246808pt;}
.y180{bottom:112.915613pt;}
.y18e{bottom:113.869053pt;}
.y187{bottom:114.687320pt;}
.y1ac{bottom:115.505373pt;}
.y1b1{bottom:115.659867pt;}
.y68{bottom:117.266400pt;}
.y26f{bottom:120.860800pt;}
.y1a3{bottom:120.993200pt;}
.y147{bottom:121.815587pt;}
.y1d7{bottom:123.936147pt;}
.y61{bottom:124.005773pt;}
.y1d8{bottom:124.477573pt;}
.yc9{bottom:127.845467pt;}
.y201{bottom:129.144493pt;}
.y9a{bottom:130.496267pt;}
.y237{bottom:130.671448pt;}
.y19d{bottom:130.949947pt;}
.y222{bottom:131.139773pt;}
.yc5{bottom:131.842533pt;}
.y1c8{bottom:132.580693pt;}
.y188{bottom:133.512520pt;}
.y1e2{bottom:135.820507pt;}
.y16{bottom:136.703867pt;}
.y292{bottom:137.455067pt;}
.y2a5{bottom:138.351200pt;}
.yc8{bottom:139.908000pt;}
.y17{bottom:140.943867pt;}
.y27c{bottom:141.975760pt;}
.y1ab{bottom:142.172000pt;}
.yc0{bottom:142.915920pt;}
.y151{bottom:143.278120pt;}
.y2bc{bottom:144.135733pt;}
.y69{bottom:146.076400pt;}
.y150{bottom:146.758387pt;}
.y1b0{bottom:148.993200pt;}
.y238{bottom:149.096648pt;}
.y198{bottom:149.450133pt;}
.y23c{bottom:149.497048pt;}
.y38{bottom:150.857560pt;}
.y1da{bottom:151.481067pt;}
.y148{bottom:151.979053pt;}
.y189{bottom:152.338387pt;}
.y18d{bottom:152.747587pt;}
.y1a2{bottom:154.326533pt;}
.y96{bottom:157.764667pt;}
.y268{bottom:157.800667pt;}
.y1d9{bottom:159.179467pt;}
.y200{bottom:159.811200pt;}
.y14f{bottom:163.000920pt;}
.y23f{bottom:163.115048pt;}
.y190{bottom:166.661587pt;}
.y11a{bottom:166.931067pt;}
.y239{bottom:167.521315pt;}
.y221{bottom:168.473067pt;}
.y1aa{bottom:168.838667pt;}
.y6f{bottom:169.249067pt;}
.y18a{bottom:171.163587pt;}
.y1e1{bottom:173.125973pt;}
.y9b{bottom:173.444800pt;}
.y23e{bottom:174.026381pt;}
.y71{bottom:174.259600pt;}
.yb8{bottom:174.915827pt;}
.ybf{bottom:174.915920pt;}
.y27b{bottom:175.309093pt;}
.y6a{bottom:175.511733pt;}
.y291{bottom:176.121733pt;}
.y18f{bottom:177.810120pt;}
.y14b{bottom:178.662920pt;}
.y14e{bottom:179.242787pt;}
.y155{bottom:180.402653pt;}
.yc4{bottom:181.175867pt;}
.y149{bottom:182.723053pt;}
.y1af{bottom:184.213333pt;}
.y153{bottom:184.463453pt;}
.y267{bottom:184.467333pt;}
.y2bb{bottom:184.555200pt;}
.y23a{bottom:185.945981pt;}
.y2a4{bottom:186.407600pt;}
.y63{bottom:187.912667pt;}
.y163{bottom:188.916667pt;}
.y18b{bottom:189.988920pt;}
.y154{bottom:190.264120pt;}
.yfd{bottom:193.053867pt;}
.y1ff{bottom:193.144533pt;}
.y20b{bottom:193.703867pt;}
.y14d{bottom:196.064653pt;}
.y1a9{bottom:196.233333pt;}
.y240{bottom:197.160915pt;}
.y220{bottom:199.139733pt;}
.y156{bottom:200.125453pt;}
.y191{bottom:201.447720pt;}
.y241{bottom:201.967581pt;}
.y112{bottom:203.562933pt;}
.ya5{bottom:204.003867pt;}
.y6b{bottom:204.320933pt;}
.y23{bottom:205.823240pt;}
.y192{bottom:206.358787pt;}
.yb7{bottom:206.915827pt;}
.ybe{bottom:206.915920pt;}
.ya4{bottom:208.959200pt;}
.yfe{bottom:211.053867pt;}
.y266{bottom:211.134000pt;}
.y14c{bottom:212.307187pt;}
.y22{bottom:212.872440pt;}
.y14a{bottom:212.887187pt;}
.y14{bottom:213.371600pt;}
.y152{bottom:213.467053pt;}
.y9c{bottom:216.392533pt;}
.y15{bottom:217.611600pt;}
.y290{bottom:218.395333pt;}
.y1e0{bottom:222.624373pt;}
.y20a{bottom:224.370533pt;}
.y2b9{bottom:225.323600pt;}
.y2a3{bottom:226.038267pt;}
.y1fe{bottom:226.477867pt;}
.y3d{bottom:226.769960pt;}
.y1a8{bottom:226.900000pt;}
.y2ba{bottom:228.350907pt;}
.ya3{bottom:232.085867pt;}
.y6c{bottom:233.131067pt;}
.y157{bottom:233.685587pt;}
.y70{bottom:233.757200pt;}
.y111{bottom:234.229600pt;}
.y159{bottom:234.349720pt;}
.y1b7{bottom:237.181867pt;}
.y265{bottom:237.800667pt;}
.yb{bottom:239.001600pt;}
.y39{bottom:239.340760pt;}
.y158{bottom:240.730920pt;}
.y25b{bottom:246.221200pt;}
.yfa{bottom:250.580800pt;}
.y24c{bottom:252.878400pt;}
.y9f{bottom:254.385867pt;}
.y73{bottom:255.050533pt;}
.ya2{bottom:255.211600pt;}
.ya9{bottom:256.863067pt;}
.y1a7{bottom:257.566667pt;}
.y1b6{bottom:258.037600pt;}
.y21c{bottom:258.612800pt;}
.y1df{bottom:259.929707pt;}
.y9d{bottom:260.166800pt;}
.yff{bottom:260.825333pt;}
.y6d{bottom:261.940267pt;}
.ya7{bottom:262.644933pt;}
.y1cb{bottom:266.209333pt;}
.y28f{bottom:266.308933pt;}
.y2b8{bottom:268.061067pt;}
.y13{bottom:268.080800pt;}
.y204{bottom:268.247067pt;}
.ya8{bottom:270.904000pt;}
.y1ae{bottom:271.626267pt;}
.yf{bottom:272.080800pt;}
.y72{bottom:272.111733pt;}
.y119{bottom:274.133467pt;}
.y2a2{bottom:275.487600pt;}
.ya{bottom:277.134933pt;}
.ya1{bottom:279.163067pt;}
.y25a{bottom:282.221200pt;}
.yaa{bottom:284.944933pt;}
.y24b{bottom:286.211733pt;}
.y2b{bottom:286.883773pt;}
.y209{bottom:287.219600pt;}
.y21b{bottom:289.279467pt;}
.y1e6{bottom:289.886133pt;}
.y1b5{bottom:290.037600pt;}
.y6e{bottom:290.749467pt;}
.y1cd{bottom:297.463467pt;}
.y276{bottom:300.001733pt;}
.y46{bottom:301.715160pt;}
.ya0{bottom:302.289600pt;}
.y9e{bottom:303.115333pt;}
.ya6{bottom:303.941067pt;}
.yd{bottom:304.857067pt;}
.y1a1{bottom:304.959600pt;}
.y1f5{bottom:306.331200pt;}
.y74{bottom:308.285467pt;}
.y2b7{bottom:308.480533pt;}
.y28e{bottom:308.582400pt;}
.ye{bottom:309.097067pt;}
.y1a{bottom:310.106267pt;}
.y1f8{bottom:312.648667pt;}
.y25{bottom:313.668973pt;}
.y75{bottom:315.801200pt;}
.y1dd{bottom:317.958933pt;}
.y259{bottom:319.526533pt;}
.y24a{bottom:319.545067pt;}
.y24{bottom:321.423240pt;}
.y45{bottom:321.539160pt;}
.y1b4{bottom:322.037600pt;}
.y193{bottom:322.207067pt;}
.y2a{bottom:326.356840pt;}
.y161{bottom:326.755733pt;}
.y3a{bottom:327.825027pt;}
.y1ce{bottom:328.717600pt;}
.yab{bottom:332.728933pt;}
.yad{bottom:333.674533pt;}
.y13a{bottom:333.978133pt;}
.y19{bottom:336.772933pt;}
.y1f4{bottom:336.997867pt;}
.y208{bottom:337.146000pt;}
.y9{bottom:338.517200pt;}
.ye8{bottom:340.777867pt;}
.y44{bottom:340.879960pt;}
.y1f7{bottom:341.540533pt;}
.ye9{bottom:341.888533pt;}
.yac{bottom:342.760133pt;}
.y117{bottom:345.574933pt;}
.y174{bottom:346.301600pt;}
.y2b6{bottom:348.900133pt;}
.y3c{bottom:352.484760pt;}
.y249{bottom:352.878400pt;}
.y24d{bottom:353.633067pt;}
.y1b3{bottom:354.037600pt;}
.y2e{bottom:356.666973pt;}
.y28d{bottom:358.584267pt;}
.y1d1{bottom:358.593333pt;}
.y47{bottom:358.769693pt;}
.yc3{bottom:360.566533pt;}
.y43{bottom:360.703960pt;}
.y26e{bottom:361.128533pt;}
.y258{bottom:362.221200pt;}
.y207{bottom:366.037867pt;}
.y21a{bottom:366.701600pt;}
.y31{bottom:367.944307pt;}
.y29{bottom:368.649640pt;}
.y2a1{bottom:370.444267pt;}
.yeb{bottom:372.590933pt;}
.y263{bottom:372.722133pt;}
.y30{bottom:372.878840pt;}
.y116{bottom:377.265200pt;}
.y2d{bottom:379.222840pt;}
.y173{bottom:379.634933pt;}
.y42{bottom:380.044893pt;}
.y8{bottom:383.669200pt;}
.y121{bottom:383.983600pt;}
.y1f1{bottom:388.580133pt;}
.y2b4{bottom:389.668533pt;}
.y28{bottom:389.796040pt;}
.y1c4{bottom:389.810133pt;}
.y2f{bottom:391.910573pt;}
.y261{bottom:392.483467pt;}
.y2b5{bottom:392.695840pt;}
.y48{bottom:393.099827pt;}
.y10e{bottom:396.735867pt;}
.y257{bottom:398.221200pt;}
.y41{bottom:399.868760pt;}
.y219{bottom:400.802000pt;}
.y2c{bottom:401.778573pt;}
.y16f{bottom:404.138533pt;}
.y115{bottom:407.931867pt;}
.y16b{bottom:408.621600pt;}
.y28c{bottom:410.057867pt;}
.y172{bottom:412.968267pt;}
.y248{bottom:413.224400pt;}
.y2a0{bottom:413.841467pt;}
.y3b{bottom:415.825293pt;}
.y120{bottom:415.983600pt;}
.y122{bottom:417.508667pt;}
.y27{bottom:420.810307pt;}
.y297{bottom:425.357867pt;}
.y26{bottom:427.858440pt;}
.y1c2{bottom:428.424400pt;}
.y1c1{bottom:430.192267pt;}
.y3e{bottom:430.330360pt;}
.y40{bottom:431.297560pt;}
.y2b3{bottom:432.405867pt;}
.y32{bottom:432.792973pt;}
.y1be{bottom:434.192267pt;}
.y256{bottom:434.221200pt;}
.y16e{bottom:434.805200pt;}
.y10d{bottom:438.069200pt;}
.y114{bottom:438.598533pt;}
.y16a{bottom:439.288267pt;}
.y3f{bottom:439.517827pt;}
.y1f0{bottom:439.807067pt;}
.y33{bottom:441.251507pt;}
.y118{bottom:442.916133pt;}
.y123{bottom:444.191867pt;}
.y218{bottom:446.701600pt;}
.y11f{bottom:448.711600pt;}
.y296{bottom:449.357867pt;}
.y28b{bottom:452.724533pt;}
.y171{bottom:460.634400pt;}
.y247{bottom:461.591067pt;}
.y113{bottom:468.841600pt;}
.y124{bottom:470.295867pt;}
.y255{bottom:471.526533pt;}
.y169{bottom:471.563067pt;}
.y2b2{bottom:471.960933pt;}
.y295{bottom:473.357867pt;}
.y1ef{bottom:475.807067pt;}
.y217{bottom:480.034933pt;}
.y10c{bottom:480.989600pt;}
.y11e{bottom:484.711600pt;}
.y7{bottom:484.924667pt;}
.y2a7{bottom:487.815733pt;}
.ye3{bottom:489.124800pt;}
.ye4{bottom:492.807467pt;}
.y170{bottom:493.967733pt;}
.y28a{bottom:496.824267pt;}
.y125{bottom:496.979067pt;}
.y294{bottom:497.357867pt;}
.y246{bottom:498.924400pt;}
.y29f{bottom:504.135600pt;}
.y2b1{bottom:504.825467pt;}
.y1ee{bottom:511.807067pt;}
.y216{bottom:514.135333pt;}
.y254{bottom:514.221200pt;}
.y8e{bottom:515.337733pt;}
.y110{bottom:516.286267pt;}
.y11d{bottom:520.711600pt;}
.y10b{bottom:520.735867pt;}
.y168{bottom:521.073467pt;}
.y126{bottom:523.662267pt;}
.y275{bottom:525.366667pt;}
.ye6{bottom:530.080400pt;}
.y4b{bottom:533.207467pt;}
.y260{bottom:534.560400pt;}
.y29e{bottom:543.766267pt;}
.y2b0{bottom:544.380533pt;}
.yf9{bottom:544.983600pt;}
.y245{bottom:546.924400pt;}
.y289{bottom:548.297867pt;}
.y253{bottom:550.221200pt;}
.y127{bottom:550.345467pt;}
.y167{bottom:551.740133pt;}
.y1b8{bottom:554.757733pt;}
.y6{bottom:555.591333pt;}
.y215{bottom:560.034933pt;}
.y131{bottom:560.206933pt;}
.y4a{bottom:562.799467pt;}
.y49{bottom:563.099467pt;}
.y10a{bottom:563.656267pt;}
.y130{bottom:563.687067pt;}
.y25f{bottom:571.865733pt;}
.y212{bottom:575.870933pt;}
.y11c{bottom:575.997067pt;}
.y128{bottom:576.448800pt;}
.ydc{bottom:576.607467pt;}
.y1ed{bottom:576.653867pt;}
.y2af{bottom:577.245067pt;}
.y12f{bottom:579.929600pt;}
.ye1{bottom:581.438267pt;}
.y166{bottom:581.983200pt;}
.y244{bottom:584.257733pt;}
.y252{bottom:586.221200pt;}
.y56{bottom:588.765067pt;}
.y288{bottom:590.964533pt;}
.y29d{bottom:592.786667pt;}
.yf8{bottom:595.457333pt;}
.y12b{bottom:595.591600pt;}
.y12e{bottom:596.171600pt;}
.y104{bottom:596.902800pt;}
.y135{bottom:597.331467pt;}
.y133{bottom:601.392267pt;}
.y129{bottom:603.132667pt;}
.y1eb{bottom:603.320533pt;}
.y109{bottom:603.402533pt;}
.y1ec{bottom:606.179200pt;}
.y214{bottom:606.701600pt;}
.y211{bottom:606.944667pt;}
.y134{bottom:607.192800pt;}
.y19c{bottom:610.473333pt;}
.y11b{bottom:611.997067pt;}
.yda{bottom:612.282267pt;}
.y12d{bottom:612.993467pt;}
.y25e{bottom:614.532400pt;}
.yd3{bottom:615.803600pt;}
.y136{bottom:617.054267pt;}
.y2ae{bottom:618.013333pt;}
.y243{bottom:621.591067pt;}
.y251{bottom:622.221200pt;}
.y5{bottom:626.258000pt;}
.yf4{bottom:627.126133pt;}
.ydf{bottom:627.629600pt;}
.y103{bottom:628.998133pt;}
.y12c{bottom:629.236000pt;}
.y12a{bottom:629.815867pt;}
.y132{bottom:630.395867pt;}
.y165{bottom:630.409333pt;}
.y1ea{bottom:631.807067pt;}
.y76{bottom:634.271067pt;}
.y287{bottom:635.064267pt;}
.y213{bottom:640.802000pt;}
.y29c{bottom:640.843067pt;}
.yf7{bottom:642.473467pt;}
.y137{bottom:650.614400pt;}
.y139{bottom:651.278400pt;}
.y19b{bottom:651.806667pt;}
.y1c0{bottom:654.839333pt;}
.y25d{bottom:655.893733pt;}
.y102{bottom:656.392800pt;}
.y138{bottom:657.659600pt;}
.yf3{bottom:658.392800pt;}
.y250{bottom:659.526533pt;}
.y2ad{bottom:660.750800pt;}
.y1f6{bottom:665.980800pt;}
.y1e9{bottom:667.807067pt;}
.y206{bottom:670.478133pt;}
.y26d{bottom:670.772267pt;}
.y77{bottom:672.263600pt;}
.yf6{bottom:673.740133pt;}
.y1bd{bottom:675.523067pt;}
.y108{bottom:675.876800pt;}
.y50{bottom:678.448800pt;}
.y29b{bottom:680.473867pt;}
.y21f{bottom:685.905867pt;}
.y286{bottom:686.537867pt;}
.yd9{bottom:689.562933pt;}
.y25c{bottom:693.199067pt;}
.ycf{bottom:695.263467pt;}
.y2ac{bottom:700.305867pt;}
.yf2{bottom:704.406800pt;}
.y26c{bottom:708.105600pt;}
.y1bc{bottom:708.320933pt;}
.y78{bottom:709.431067pt;}
.yee{bottom:710.107333pt;}
.y51{bottom:712.099867pt;}
.y16d{bottom:714.273467pt;}
.yd1{bottom:714.452667pt;}
.y107{bottom:717.210133pt;}
.y4f{bottom:719.670000pt;}
.yde{bottom:720.665600pt;}
.yd5{bottom:724.987333pt;}
.y29a{bottom:729.923200pt;}
.yef{bottom:730.383733pt;}
.y285{bottom:730.637600pt;}
.y2ab{bottom:732.305867pt;}
.yf5{bottom:736.596667pt;}
.y1fd{bottom:737.144533pt;}
.yf0{bottom:740.918533pt;}
.y26b{bottom:745.438933pt;}
.y79{bottom:747.423467pt;}
.y1bb{bottom:748.968000pt;}
.y16c{bottom:750.273467pt;}
.y20c{bottom:758.945733pt;}
.y4e{bottom:763.412133pt;}
.y2aa{bottom:765.170400pt;}
.y10f{bottom:766.337067pt;}
.y1fc{bottom:767.811200pt;}
.y1e8{bottom:771.354133pt;}
.y24e{bottom:771.783067pt;}
.y20f{bottom:774.490933pt;}
.y242{bottom:774.777067pt;}
.y21d{bottom:776.728400pt;}
.y283{bottom:782.111200pt;}
.y299{bottom:782.213200pt;}
.y26a{bottom:782.772267pt;}
.y7a{bottom:785.416000pt;}
.y284{bottom:786.613600pt;}
.y1ba{bottom:789.615067pt;}
.yd7{bottom:794.642267pt;}
.y1fb{bottom:798.477867pt;}
.ycd{bottom:800.019600pt;}
.y4d{bottom:803.412133pt;}
.y2a9{bottom:805.589867pt;}
.y1e7{bottom:808.323467pt;}
.yf1{bottom:811.594800pt;}
.yed{bottom:813.214133pt;}
.y106{bottom:813.910933pt;}
.y7b{bottom:823.408400pt;}
.y298{bottom:825.610267pt;}
.y282{bottom:826.210933pt;}
.y1fa{bottom:829.144533pt;}
.y1b9{bottom:831.287200pt;}
.y85{bottom:837.449333pt;}
.y84{bottom:842.404533pt;}
.y4c{bottom:843.412133pt;}
.y2a8{bottom:846.358267pt;}
.y105{bottom:852.334133pt;}
.y7c{bottom:860.575067pt;}
.y269{bottom:863.956400pt;}
.y83{bottom:865.531200pt;}
.y7f{bottom:887.831200pt;}
.y82{bottom:888.656933pt;}
.y89{bottom:890.308400pt;}
.y87{bottom:896.090267pt;}
.y7d{bottom:898.568400pt;}
.y88{bottom:904.349333pt;}
.y205{bottom:905.398400pt;}
.y81{bottom:912.608400pt;}
.y1f9{bottom:914.307600pt;}
.y8a{bottom:918.390267pt;}
.y1c{bottom:919.352533pt;}
.y1b{bottom:919.512667pt;}
.ycc{bottom:921.058267pt;}
.y80{bottom:935.735067pt;}
.y7e{bottom:936.560800pt;}
.y86{bottom:937.386533pt;}
.y8b{bottom:966.174267pt;}
.y8d{bottom:967.119867pt;}
.y8c{bottom:976.205600pt;}
.y1{bottom:988.104533pt;}
.h3d{height:0.000000pt;}
.h83{height:5.580691pt;}
.h47{height:7.945945pt;}
.hb2{height:10.590860pt;}
.hb0{height:10.743209pt;}
.hd5{height:17.906253pt;}
.hab{height:18.831360pt;}
.h7d{height:20.515617pt;}
.hce{height:21.258825pt;}
.hc3{height:21.277388pt;}
.h9a{height:21.721043pt;}
.h8f{height:21.740010pt;}
.hca{height:22.439778pt;}
.h96{height:22.927673pt;}
.haf{height:23.088173pt;}
.ha7{height:23.090600pt;}
.h7e{height:23.934797pt;}
.hc9{height:24.041378pt;}
.had{height:24.121093pt;}
.h95{height:24.563940pt;}
.h81{height:25.644387pt;}
.h2c{height:25.872280pt;}
.haa{height:26.409333pt;}
.h29{height:28.281867pt;}
.hcc{height:28.345044pt;}
.h98{height:28.961334pt;}
.h41{height:29.210782pt;}
.hb7{height:29.492480pt;}
.hd6{height:29.625000pt;}
.hcd{height:31.888071pt;}
.hc5{height:31.916075pt;}
.hc2{height:31.916083pt;}
.h7c{height:32.482926pt;}
.h99{height:32.581395pt;}
.h91{height:32.610008pt;}
.h8e{height:32.610015pt;}
.h3{height:33.184467pt;}
.h12{height:33.239303pt;}
.h3c{height:33.240802pt;}
.h31{height:33.269829pt;}
.h42{height:34.079117pt;}
.h22{height:34.201363pt;}
.hc8{height:34.250136pt;}
.hc7{height:34.250144pt;}
.hc4{height:34.280145pt;}
.h84{height:34.378356pt;}
.h1{height:34.980693pt;}
.h94{height:34.994817pt;}
.h93{height:34.994825pt;}
.h90{height:35.025478pt;}
.h38{height:35.087369pt;}
.h18{height:35.316576pt;}
.h7a{height:35.902285pt;}
.h45{height:36.513285pt;}
.h37{height:37.591369pt;}
.h10{height:37.771470pt;}
.h6b{height:38.653213pt;}
.h82{height:39.321465pt;}
.h1f{height:39.901639pt;}
.hb1{height:40.033741pt;}
.hcb{height:40.368295pt;}
.hae{height:40.734375pt;}
.h57{height:40.874547pt;}
.h69{height:41.186547pt;}
.h97{height:41.245999pt;}
.h15{height:43.626549pt;}
.h3a{height:44.320983pt;}
.h67{height:44.429200pt;}
.h1c{height:45.001158pt;}
.h63{height:45.065240pt;}
.h24{height:45.601925pt;}
.h2e{height:45.750533pt;}
.h40{height:46.250212pt;}
.h59{height:46.650533pt;}
.ha9{height:46.848000pt;}
.h5f{height:47.362533pt;}
.h7b{height:47.869784pt;}
.h89{height:47.921853pt;}
.h80{height:48.123557pt;}
.h85{height:48.129663pt;}
.h86{height:48.129674pt;}
.hbf{height:48.140625pt;}
.h48{height:48.948986pt;}
.h2{height:49.152000pt;}
.hf{height:49.858955pt;}
.h3b{height:49.860944pt;}
.h33{height:49.904735pt;}
.h30{height:49.904743pt;}
.h3e{height:51.118804pt;}
.h23{height:51.301881pt;}
.h19{height:51.687157pt;}
.h36{height:53.554329pt;}
.h35{height:53.554337pt;}
.h32{height:53.601247pt;}
.h17{height:54.013794pt;}
.h27{height:54.656000pt;}
.ha{height:54.800000pt;}
.he2{height:54.880000pt;}
.h11{height:55.663027pt;}
.h46{height:55.987140pt;}
.h77{height:56.853333pt;}
.h14{height:57.626466pt;}
.h6c{height:57.940493pt;}
.h13{height:58.168626pt;}
.h1b{height:58.427396pt;}
.h6a{height:58.480000pt;}
.h20{height:58.637695pt;}
.h9{height:58.800000pt;}
.h7f{height:61.060664pt;}
.h1e{height:61.277203pt;}
.h58{height:62.378667pt;}
.hb{height:62.464000pt;}
.h78{height:62.720000pt;}
.h39{height:63.120823pt;}
.h25{height:64.127351pt;}
.h64{height:64.213333pt;}
.h21{height:64.467324pt;}
.h60{height:66.277333pt;}
.h68{height:66.640000pt;}
.ha8{height:66.665255pt;}
.h75{height:67.687500pt;}
.h3f{height:68.158490pt;}
.h1d{height:68.183657pt;}
.h44{height:68.519834pt;}
.h49{height:68.528529pt;}
.hb9{height:69.973333pt;}
.h26{height:70.176000pt;}
.h2b{height:70.272000pt;}
.h6e{height:70.368000pt;}
.h5c{height:70.559996pt;}
.h5a{height:70.560000pt;}
.hac{height:71.183095pt;}
.h74{height:71.744013pt;}
.h5d{height:72.245867pt;}
.heb{height:72.350417pt;}
.h16{height:73.096492pt;}
.h4{height:73.728000pt;}
.h4e{height:74.074667pt;}
.h4d{height:74.176000pt;}
.h50{height:74.277333pt;}
.ha4{height:74.305833pt;}
.h70{height:74.480000pt;}
.h76{height:74.625600pt;}
.h2d{height:74.998421pt;}
.h9c{height:75.083867pt;}
.hed{height:75.112960pt;}
.hc0{height:75.208333pt;}
.h8{height:76.608000pt;}
.ha6{height:77.143040pt;}
.h61{height:77.917200pt;}
.h28{height:78.080000pt;}
.hdb{height:78.186667pt;}
.hea{height:78.192213pt;}
.hee{height:78.192747pt;}
.h8b{height:78.400000pt;}
.h62{height:78.720000pt;}
.hb4{height:78.968750pt;}
.h6f{height:79.921853pt;}
.h5e{height:80.653733pt;}
.hec{height:80.684800pt;}
.h8c{height:81.408000pt;}
.hb6{height:81.984000pt;}
.h79{height:82.320000pt;}
.h88{height:82.710813pt;}
.h4f{height:83.093333pt;}
.ha5{height:83.226133pt;}
.hb8{height:83.306680pt;}
.h2a{height:83.331587pt;}
.h7{height:84.672000pt;}
.h71{height:85.286250pt;}
.hcf{height:85.888000pt;}
.hc1{height:85.982840pt;}
.hd0{height:86.240000pt;}
.h43{height:86.939917pt;}
.h9e{height:87.466667pt;}
.hd1{height:87.706667pt;}
.ha3{height:87.986667pt;}
.hdf{height:87.993750pt;}
.h72{height:88.905600pt;}
.he6{height:88.971458pt;}
.h65{height:89.297333pt;}
.hbd{height:90.051947pt;}
.h6d{height:90.160000pt;}
.h54{height:90.250000pt;}
.hef{height:90.615467pt;}
.he0{height:91.353600pt;}
.he1{height:91.728000pt;}
.hd2{height:91.733333pt;}
.hb5{height:91.840000pt;}
.he7{height:92.368640pt;}
.he8{height:92.747200pt;}
.h73{height:93.696000pt;}
.h55{height:94.080000pt;}
.hdc{height:94.762500pt;}
.hd3{height:95.873267pt;}
.he5{height:96.551787pt;}
.he3{height:96.552320pt;}
.h8d{height:97.941027pt;}
.hd9{height:98.000000pt;}
.hdd{height:98.380800pt;}
.he4{height:99.473920pt;}
.hd7{height:100.586667pt;}
.h5b{height:101.723067pt;}
.h6{height:102.400000pt;}
.hbc{height:106.496000pt;}
.h9f{height:106.666667pt;}
.hba{height:107.083867pt;}
.h66{height:108.433867pt;}
.hde{height:110.208000pt;}
.h52{height:110.592000pt;}
.h9b{height:111.921853pt;}
.h4b{height:117.918387pt;}
.hbb{height:119.677293pt;}
.h9d{height:123.338253pt;}
.hbe{height:126.720000pt;}
.hd4{height:134.400000pt;}
.h8a{height:143.221733pt;}
.h2f{height:149.884000pt;}
.h5{height:159.744000pt;}
.h56{height:160.406400pt;}
.h53{height:168.911867pt;}
.hd8{height:168.956400pt;}
.hd{height:170.755200pt;}
.hc{height:172.480000pt;}
.ha0{height:188.759867pt;}
.ha2{height:188.800000pt;}
.hc6{height:207.174667pt;}
.hda{height:209.742400pt;}
.h92{height:211.679067pt;}
.ha1{height:223.338267pt;}
.h51{height:229.627333pt;}
.he9{height:229.824000pt;}
.h4c{height:240.000000pt;}
.h87{height:248.790800pt;}
.hb3{height:295.779467pt;}
.h34{height:323.943200pt;}
.h4a{height:354.236133pt;}
.he{height:451.119600pt;}
.h1a{height:469.761600pt;}
.h0{height:1024.000000pt;}
.wd{width:0.000000pt;}
.w3c{width:10.094343pt;}
.w3e{width:10.496980pt;}
.w40{width:10.573155pt;}
.w3f{width:10.954027pt;}
.w3b{width:10.986673pt;}
.w3d{width:11.314797pt;}
.w41{width:21.455227pt;}
.w37{width:24.121093pt;}
.w35{width:31.065347pt;}
.w38{width:31.454427pt;}
.w39{width:33.964253pt;}
.w3a{width:35.063280pt;}
.w46{width:71.368320pt;}
.w49{width:72.000000pt;}
.w2b{width:86.272520pt;}
.w33{width:90.302920pt;}
.w43{width:98.578880pt;}
.w18{width:107.379467pt;}
.w1d{width:127.305600pt;}
.w8{width:134.628400pt;}
.w34{width:137.832000pt;}
.w23{width:151.393200pt;}
.w2f{width:154.878400pt;}
.w16{width:155.950560pt;}
.w24{width:167.541200pt;}
.w25{width:181.173200pt;}
.w4b{width:193.971200pt;}
.w4a{width:196.237200pt;}
.w2e{width:219.114533pt;}
.w3{width:223.486800pt;}
.w15{width:225.181200pt;}
.w44{width:233.294400pt;}
.w11{width:242.686267pt;}
.w2a{width:244.419200pt;}
.w1a{width:247.837200pt;}
.w10{width:250.426667pt;}
.w19{width:253.907867pt;}
.w4c{width:264.918267pt;}
.w4d{width:265.968133pt;}
.w14{width:266.463867pt;}
.w1c{width:273.726533pt;}
.wf{width:280.660933pt;}
.w2c{width:299.292533pt;}
.w20{width:305.565200pt;}
.w4e{width:309.218133pt;}
.w48{width:318.828667pt;}
.w29{width:323.785733pt;}
.w2d{width:325.760800pt;}
.w9{width:326.272267pt;}
.w1e{width:328.784133pt;}
.w1f{width:329.047867pt;}
.wb{width:330.697200pt;}
.wa{width:339.898400pt;}
.w1b{width:340.586800pt;}
.w36{width:351.489200pt;}
.w21{width:362.929200pt;}
.w17{width:363.318533pt;}
.w5{width:380.484800pt;}
.w22{width:383.641200pt;}
.w28{width:388.668533pt;}
.w31{width:412.359600pt;}
.w2{width:423.710267pt;}
.w26{width:428.443200pt;}
.w32{width:434.428000pt;}
.w30{width:445.084533pt;}
.we{width:461.016267pt;}
.wc{width:498.528000pt;}
.w4{width:511.336400pt;}
.w6{width:563.899600pt;}
.w7{width:626.638667pt;}
.w1{width:652.008133pt;}
.w42{width:834.971067pt;}
.w47{width:959.665600pt;}
.w13{width:970.389600pt;}
.w45{width:970.648533pt;}
.w27{width:1032.038133pt;}
.w12{width:1180.831467pt;}
.w0{width:1365.333333pt;}
.xdf{left:-2.688933pt;}
.x41{left:-1.744133pt;}
.x0{left:0.000000pt;}
.x114{left:2.953200pt;}
.xe3{left:4.060533pt;}
.x7b{left:5.866000pt;}
.x2{left:6.823600pt;}
.x70{left:8.000000pt;}
.x71{left:9.333333pt;}
.xb3{left:12.520933pt;}
.x3{left:14.267000pt;}
.xf2{left:16.030987pt;}
.x64{left:17.827600pt;}
.xca{left:18.825333pt;}
.x2b{left:20.178720pt;}
.xfb{left:22.660133pt;}
.xb4{left:24.122400pt;}
.x4b{left:26.304267pt;}
.x119{left:27.288000pt;}
.x1f{left:28.899867pt;}
.x18{left:30.366053pt;}
.x96{left:31.440933pt;}
.x109{left:33.244667pt;}
.x66{left:34.346173pt;}
.x73{left:35.727720pt;}
.x30{left:37.230867pt;}
.x62{left:40.127640pt;}
.xb1{left:42.684667pt;}
.x1e{left:43.702267pt;}
.x2f{left:46.901213pt;}
.x97{left:48.063827pt;}
.x1c{left:50.046133pt;}
.x4c{left:52.608533pt;}
.x65{left:54.168440pt;}
.x63{left:56.646173pt;}
.xc5{left:57.703733pt;}
.xce{left:58.636800pt;}
.x60{left:60.775773pt;}
.x1d{left:62.028933pt;}
.xf7{left:63.128013pt;}
.xdb{left:64.977640pt;}
.x6d{left:66.061773pt;}
.xb9{left:68.207733pt;}
.x11a{left:69.369947pt;}
.xf0{left:70.322093pt;}
.xb8{left:79.229600pt;}
.x11b{left:80.915787pt;}
.x10a{left:82.110667pt;}
.xcb{left:83.896000pt;}
.x6c{left:85.553507pt;}
.xe1{left:87.100133pt;}
.x46{left:88.306800pt;}
.x21{left:90.224000pt;}
.xa{left:92.018400pt;}
.x101{left:93.138800pt;}
.x31{left:95.736520pt;}
.x6b{left:97.116307pt;}
.x4{left:100.879107pt;}
.x27{left:102.912133pt;}
.xcc{left:104.358267pt;}
.x11d{left:110.577640pt;}
.x34{left:113.627013pt;}
.x5f{left:115.379960pt;}
.xb7{left:116.934133pt;}
.x6{left:121.159067pt;}
.x2c{left:126.681947pt;}
.x26{left:128.286800pt;}
.x75{left:130.291573pt;}
.x113{left:134.429200pt;}
.x53{left:135.685333pt;}
.x25{left:138.860000pt;}
.x7{left:141.369733pt;}
.x76{left:142.770000pt;}
.x11e{left:143.691067pt;}
.xdc{left:144.755467pt;}
.x52{left:149.726133pt;}
.xfa{left:150.802133pt;}
.xcd{left:152.649200pt;}
.x10f{left:155.332267pt;}
.x110{left:157.095333pt;}
.x4d{left:159.704667pt;}
.x35{left:162.462347pt;}
.x6a{left:166.494440pt;}
.x51{left:169.548400pt;}
.xef{left:171.517200pt;}
.x24{left:175.514133pt;}
.x7a{left:177.825200pt;}
.x5c{left:181.441733pt;}
.x80{left:182.760400pt;}
.x88{left:183.826933pt;}
.xf8{left:184.906267pt;}
.x23{left:186.087333pt;}
.x87{left:188.293867pt;}
.x100{left:190.397733pt;}
.x22{left:194.545867pt;}
.x5b{left:200.933467pt;}
.xbb{left:206.845867pt;}
.xda{left:211.499600pt;}
.x5a{left:212.496267pt;}
.xb2{left:214.386800pt;}
.x10c{left:216.691067pt;}
.xd0{left:221.402533pt;}
.xb6{left:222.507733pt;}
.x74{left:223.581467pt;}
.x59{left:228.189600pt;}
.x4e{left:233.606800pt;}
.xb5{left:237.589867pt;}
.xba{left:243.970400pt;}
.x10b{left:246.731733pt;}
.x67{left:249.086840pt;}
.xc9{left:252.096267pt;}
.xc8{left:256.188667pt;}
.xcf{left:257.416533pt;}
.xc2{left:260.985467pt;}
.xc7{left:268.057067pt;}
.x112{left:273.389600pt;}
.x40{left:275.547200pt;}
.xc6{left:278.697733pt;}
.x58{left:281.874400pt;}
.x20{left:291.113067pt;}
.x6f{left:294.513507pt;}
.x39{left:298.019600pt;}
.xf9{left:302.994933pt;}
.x61{left:305.250707pt;}
.x8{left:308.064800pt;}
.x69{left:316.813507pt;}
.x68{left:325.898307pt;}
.x86{left:330.071733pt;}
.x50{left:338.823467pt;}
.xf1{left:344.400800pt;}
.x6e{left:347.372573pt;}
.x11f{left:358.293920pt;}
.x54{left:364.466800pt;}
.x94{left:370.480133pt;}
.x3b{left:377.583467pt;}
.x4a{left:382.038133pt;}
.x49{left:385.795600pt;}
.x48{left:392.058400pt;}
.x4f{left:393.937467pt;}
.x3c{left:396.530800pt;}
.x120{left:409.596640pt;}
.x2a{left:410.942400pt;}
.x33{left:412.440747pt;}
.x3d{left:417.583467pt;}
.x5e{left:420.630667pt;}
.x47{left:426.505067pt;}
.x57{left:432.193467pt;}
.x3e{left:436.530800pt;}
.x56{left:441.278267pt;}
.x37{left:443.869413pt;}
.x3f{left:444.974133pt;}
.x82{left:451.899200pt;}
.x55{left:453.667733pt;}
.xd5{left:456.129200pt;}
.x91{left:458.309200pt;}
.x29{left:461.692667pt;}
.x5d{left:462.752533pt;}
.x44{left:464.917333pt;}
.x28{left:470.151333pt;}
.xd3{left:478.944000pt;}
.x93{left:480.477200pt;}
.x116{left:486.391600pt;}
.x117{left:490.763467pt;}
.x95{left:495.618800pt;}
.x9{left:502.181733pt;}
.x32{left:509.144213pt;}
.x11c{left:522.412133pt;}
.x1b{left:527.950800pt;}
.x1a{left:539.229200pt;}
.xbe{left:540.306800pt;}
.x108{left:553.626667pt;}
.x84{left:554.928267pt;}
.xd9{left:561.253467pt;}
.x36{left:568.617147pt;}
.x107{left:570.449200pt;}
.x2e{left:572.484613pt;}
.x78{left:583.103867pt;}
.x106{left:584.067600pt;}
.x2d{left:586.023680pt;}
.x8b{left:590.795733pt;}
.x115{left:592.935867pt;}
.x89{left:604.656000pt;}
.x77{left:610.416800pt;}
.x79{left:615.022933pt;}
.x8a{left:617.681333pt;}
.x8c{left:622.714800pt;}
.x10d{left:630.226000pt;}
.xd8{left:643.432267pt;}
.xe{left:647.010267pt;}
.xf{left:649.810267pt;}
.x10e{left:651.463200pt;}
.x11{left:683.286400pt;}
.xdd{left:685.909200pt;}
.x10{left:693.153467pt;}
.x1{left:713.325200pt;}
.xc{left:729.037867pt;}
.xd{left:730.350000pt;}
.x19{left:732.520667pt;}
.x38{left:746.345733pt;}
.x45{left:747.820267pt;}
.x9b{left:752.483067pt;}
.x42{left:769.871467pt;}
.x81{left:786.031733pt;}
.x111{left:792.349733pt;}
.xfc{left:797.912400pt;}
.x105{left:800.358400pt;}
.xff{left:804.018667pt;}
.x104{left:815.979600pt;}
.x102{left:824.464400pt;}
.x103{left:826.393733pt;}
.xfd{left:828.579067pt;}
.xfe{left:837.912400pt;}
.xbf{left:842.264133pt;}
.xc0{left:848.119333pt;}
.x9c{left:849.669333pt;}
.x9e{left:851.246000pt;}
.xde{left:853.600667pt;}
.xd4{left:855.744400pt;}
.x3a{left:859.038667pt;}
.x9d{left:860.662800pt;}
.xa2{left:862.113733pt;}
.xa3{left:863.637467pt;}
.xd7{left:864.550933pt;}
.x99{left:866.806267pt;}
.xd6{left:871.517067pt;}
.xc1{left:881.216800pt;}
.x98{left:882.766667pt;}
.xc3{left:885.348533pt;}
.x118{left:889.484933pt;}
.x9a{left:894.806267pt;}
.xc4{left:896.736933pt;}
.xb0{left:907.699067pt;}
.xa7{left:921.960133pt;}
.xa6{left:931.821467pt;}
.xa5{left:938.782400pt;}
.xa4{left:945.743200pt;}
.xad{left:954.096267pt;}
.x43{left:955.359600pt;}
.x7e{left:957.644267pt;}
.xeb{left:962.686133pt;}
.x8f{left:964.908800pt;}
.xac{left:967.785867pt;}
.xe9{left:972.046133pt;}
.x7d{left:976.274667pt;}
.xe8{left:980.687467pt;}
.x8e{left:983.966667pt;}
.x7f{left:986.066267pt;}
.x90{left:993.330933pt;}
.xe2{left:995.332267pt;}
.xf6{left:1013.206000pt;}
.x7c{left:1019.238933pt;}
.x12{left:1024.979200pt;}
.x16{left:1026.822800pt;}
.x13{left:1027.779200pt;}
.x14{left:1029.802400pt;}
.x15{left:1032.602400pt;}
.xf5{left:1034.925733pt;}
.x8d{left:1038.756000pt;}
.x92{left:1045.731733pt;}
.xe0{left:1046.880000pt;}
.xec{left:1048.024800pt;}
.xf3{left:1051.304000pt;}
.xe4{left:1053.733333pt;}
.x5{left:1057.768400pt;}
.xed{left:1076.898400pt;}
.xa8{left:1082.640400pt;}
.xbc{left:1094.938800pt;}
.xd1{left:1100.948533pt;}
.x72{left:1111.023600pt;}
.x83{left:1117.412933pt;}
.xaf{left:1122.085867pt;}
.xab{left:1130.206800pt;}
.xaa{left:1136.587333pt;}
.xa9{left:1145.288933pt;}
.x85{left:1148.751600pt;}
.xae{left:1151.669467pt;}
.xa0{left:1163.827733pt;}
.xf4{left:1172.086267pt;}
.x9f{left:1185.512667pt;}
.xe5{left:1191.547333pt;}
.xd2{left:1210.454933pt;}
.xbd{left:1217.145600pt;}
.xe6{left:1219.935333pt;}
.x17{left:1224.422400pt;}
.xee{left:1237.765467pt;}
.xe7{left:1248.386267pt;}
.xea{left:1311.906933pt;}
.xa1{left:1313.651067pt;}
.xb{left:1328.099200pt;}
}




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