
    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_e792a9a31d80a87f62cffca8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight: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_8853d62a0931ad938af478b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_454079dbff7b061d86459ff2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0786a8798642a590e94130ba.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a74361e6785944720de13f8f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_725574dbd0cec1e1d47fe8bd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_628991b5aca577c305ba22e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b2b6983537b047d6c414fba2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_57d5e3df4fd88255456d03c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.482000;font-style:normal;font-weight: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_746d715af2b6262870e0cb87.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9a5d9817a92e886b5ab4d898.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight: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_d76857af9dcc42bf0b104a4c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;font-style:normal;font-weight: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_34975a8e942192aca1cb5fb9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.451000;font-style:normal;font-weight: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_eb689d636f73078eed9299ab.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;font-style:normal;font-weight: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_ab0c4d614ba12766b7110f6e.woff2')format("woff");}.fff{font-family:fff;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d76857af9dcc42bf0b104a4c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.311035;font-style:normal;font-weight: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_24335b30cd5be8a2394dc8de.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight: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_d76857af9dcc42bf0b104a4c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;font-style:normal;font-weight: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_7a2dd5c114dc89fe74741c38.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight: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_d76857af9dcc42bf0b104a4c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.311035;font-style:normal;font-weight: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_7a2dd5c114dc89fe74741c38.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight: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_d76857af9dcc42bf0b104a4c.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.311035;font-style:normal;font-weight: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_ea175059a93a2199d712d6be.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284668;font-style:normal;font-weight: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_d76857af9dcc42bf0b104a4c.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.311035;font-style:normal;font-weight: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_24335b30cd5be8a2394dc8de.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight: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_d76857af9dcc42bf0b104a4c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.311035;font-style:normal;font-weight: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_7a2dd5c114dc89fe74741c38.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284668;font-style:normal;font-weight: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_d76857af9dcc42bf0b104a4c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.311035;font-style:normal;font-weight: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_1e0ecb620b88f4a2fc3b06ea.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;font-style:normal;font-weight: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_d76857af9dcc42bf0b104a4c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.311035;font-style:normal;font-weight: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_cd47f585ac4b0357dffffb47.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.284668;font-style:normal;font-weight: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_bdd50983b52ca1e3f77656f3.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_30c9b41c83a16941a46f6ac9.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight: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_83e64b199c10cd868c501fc5.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.284668;font-style:normal;font-weight: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_b1f740d6c8fad6924491aac2.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.311035;font-style:normal;font-weight: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_30c9b41c83a16941a46f6ac9.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.432129;font-style:normal;font-weight: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_83e64b199c10cd868c501fc5.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.284668;font-style:normal;font-weight: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_60e6109d84380853a658c397.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.311035;font-style:normal;font-weight: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_30c9b41c83a16941a46f6ac9.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.432129;font-style:normal;font-weight: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_83e64b199c10cd868c501fc5.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.284668;font-style:normal;font-weight: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_60e6109d84380853a658c397.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.311035;font-style:normal;font-weight: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_30c9b41c83a16941a46f6ac9.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.432129;font-style:normal;font-weight: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_83e64b199c10cd868c501fc5.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.284668;font-style:normal;font-weight: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_edc9c73de05b63d570aa20ce.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.311035;font-style:normal;font-weight: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_30c9b41c83a16941a46f6ac9.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;font-style:normal;font-weight: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_83e64b199c10cd868c501fc5.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.284668;font-style:normal;font-weight: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_b1f740d6c8fad6924491aac2.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_30c9b41c83a16941a46f6ac9.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_8aabf6c69dd5863a07f444fc.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_30c9b41c83a16941a46f6ac9.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_4ae08045473581596d78a9d1.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_30c9b41c83a16941a46f6ac9.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_66afecb8f7d5e47eca93d852.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_30c9b41c83a16941a46f6ac9.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_9113b28f904240481418fe6f.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 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);}
.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);}
.m3{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.878000px;}
.v1{vertical-align:18.132000px;}
.v2{vertical-align:21.696000px;}
.v4{vertical-align:28.392000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000141px;}
.ls16{letter-spacing:0.002638px;}
.ls15{letter-spacing:0.002720px;}
.ls13{letter-spacing:0.002915px;}
.ls7{letter-spacing:0.003701px;}
.ls11{letter-spacing:0.006141px;}
.ls14{letter-spacing:0.008720px;}
.ls0{letter-spacing:1.880823px;}
.lsa{letter-spacing:1.886823px;}
.ls6{letter-spacing:2.988532px;}
.ls2{letter-spacing:2.990525px;}
.ls3{letter-spacing:9.750538px;}
.ls4{letter-spacing:12.942538px;}
.lsb{letter-spacing:17.138823px;}
.ls18{letter-spacing:18.171782px;}
.lsd{letter-spacing:18.386338px;}
.ls10{letter-spacing:19.486846px;}
.ls17{letter-spacing:19.546621px;}
.lse{letter-spacing:19.586338px;}
.lsf{letter-spacing:19.790338px;}
.lsc{letter-spacing:21.806823px;}
.ls5{letter-spacing:22.742525px;}
.ls8{letter-spacing:24.029791px;}
.ls9{letter-spacing:29.884178px;}
.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;}
}
.ws3c{word-spacing:-38.937826px;}
.ws18{word-spacing:-16.605662px;}
.wsc0{word-spacing:-15.278643px;}
.wse9{word-spacing:-14.111859px;}
.ws1b{word-spacing:-3.335478px;}
.ws92{word-spacing:-2.618171px;}
.ws64{word-spacing:-2.080191px;}
.ws87{word-spacing:-2.051324px;}
.ws88{word-spacing:-2.020415px;}
.ws107{word-spacing:-1.601986px;}
.ws110{word-spacing:-1.542210px;}
.ws8a{word-spacing:-1.362884px;}
.ws2c{word-spacing:-1.243332px;}
.ws26{word-spacing:-1.064006px;}
.ws94{word-spacing:-1.004230px;}
.wsfd{word-spacing:-0.817732px;}
.wsd8{word-spacing:-0.645576px;}
.wsae{word-spacing:-0.585801px;}
.wsa6{word-spacing:-0.406474px;}
.ws8b{word-spacing:-0.346698px;}
.ws79{word-spacing:-0.059776px;}
.ws45{word-spacing:-0.047821px;}
.ws29{word-spacing:0.000000px;}
.ws33{word-spacing:0.011955px;}
.ws39{word-spacing:0.071731px;}
.ws69{word-spacing:0.191282px;}
.ws27{word-spacing:0.251058px;}
.ws21{word-spacing:0.430384px;}
.ws50{word-spacing:0.490160px;}
.wscf{word-spacing:0.509502px;}
.wscb{word-spacing:0.549936px;}
.wsb6{word-spacing:0.609711px;}
.wsa4{word-spacing:0.669487px;}
.ws10{word-spacing:0.729262px;}
.ws4b{word-spacing:0.789038px;}
.ws4c{word-spacing:0.848814px;}
.ws4a{word-spacing:1.147692px;}
.ws2b{word-spacing:1.207467px;}
.wsa2{word-spacing:1.327018px;}
.wsc1{word-spacing:1.371889px;}
.ws1f{word-spacing:1.386794px;}
.wsbf{word-spacing:1.390492px;}
.ws2e{word-spacing:1.446570px;}
.wsa3{word-spacing:1.506345px;}
.ws32{word-spacing:1.566121px;}
.ws66{word-spacing:1.625896px;}
.ws3f{word-spacing:1.685672px;}
.wsd4{word-spacing:1.745448px;}
.ws86{word-spacing:1.805223px;}
.ws38{word-spacing:1.924774px;}
.ws41{word-spacing:1.984550px;}
.ws25{word-spacing:2.044326px;}
.ws7b{word-spacing:2.074046px;}
.wsa0{word-spacing:2.104101px;}
.ws4e{word-spacing:2.163877px;}
.ws62{word-spacing:2.283428px;}
.ws5b{word-spacing:2.343204px;}
.wsb9{word-spacing:2.402979px;}
.wsd9{word-spacing:2.474710px;}
.ws2d{word-spacing:2.642082px;}
.ws3b{word-spacing:2.701857px;}
.ws65{word-spacing:2.761633px;}
.ws44{word-spacing:2.816633px;}
.ws108{word-spacing:2.821408px;}
.wsde{word-spacing:2.864454px;}
.wsc7{word-spacing:2.869833px;}
.wsc5{word-spacing:2.881184px;}
.ws7e{word-spacing:3.000735px;}
.ws11d{word-spacing:3.012690px;}
.ws57{word-spacing:3.060511px;}
.ws9d{word-spacing:3.120286px;}
.wscc{word-spacing:3.124754px;}
.ws36{word-spacing:3.180062px;}
.ws20{word-spacing:3.299613px;}
.ws121{word-spacing:3.324027px;}
.ws37{word-spacing:3.419164px;}
.ws52{word-spacing:3.478940px;}
.wsbb{word-spacing:3.538716px;}
.wsce{word-spacing:3.550671px;}
.ws113{word-spacing:3.598491px;}
.ws7f{word-spacing:3.658267px;}
.ws1a{word-spacing:3.718042px;}
.ws11{word-spacing:3.729997px;}
.ws114{word-spacing:3.777818px;}
.ws3a{word-spacing:3.837594px;}
.ws3{word-spacing:3.873485px;}
.ws2{word-spacing:3.945216px;}
.ws85{word-spacing:3.957145px;}
.wsb1{word-spacing:4.315798px;}
.wsc2{word-spacing:4.327753px;}
.wsf9{word-spacing:4.346893px;}
.ws51{word-spacing:4.375574px;}
.ws3e{word-spacing:4.435350px;}
.ws1{word-spacing:4.483200px;}
.ws54{word-spacing:4.495125px;}
.ws4f{word-spacing:4.554901px;}
.ws93{word-spacing:4.614676px;}
.ws43{word-spacing:4.674452px;}
.wsd5{word-spacing:4.686407px;}
.ws9c{word-spacing:4.794003px;}
.ws112{word-spacing:4.853779px;}
.ws28{word-spacing:4.913554px;}
.ws9a{word-spacing:4.973330px;}
.ws84{word-spacing:5.092881px;}
.wsa7{word-spacing:5.152657px;}
.wsb2{word-spacing:5.212432px;}
.ws5f{word-spacing:5.272208px;}
.wsdb{word-spacing:5.331984px;}
.ws2a{word-spacing:5.379825px;}
.ws14{word-spacing:5.391759px;}
.wsdc{word-spacing:5.446766px;}
.ws15{word-spacing:5.511310px;}
.ws59{word-spacing:5.571086px;}
.ws2f{word-spacing:5.630862px;}
.ws34{word-spacing:5.690637px;}
.wsc6{word-spacing:5.702592px;}
.ws74{word-spacing:5.750413px;}
.ws40{word-spacing:5.810188px;}
.ws23{word-spacing:5.929740px;}
.wscd{word-spacing:5.941695px;}
.ws16{word-spacing:5.989515px;}
.wsd6{word-spacing:6.049291px;}
.ws11e{word-spacing:6.061246px;}
.ws11b{word-spacing:6.121021px;}
.ws89{word-spacing:6.168842px;}
.ws56{word-spacing:6.288393px;}
.ws116{word-spacing:6.348169px;}
.wsca{word-spacing:6.352577px;}
.wsb5{word-spacing:6.407944px;}
.ws0{word-spacing:6.455775px;}
.ws83{word-spacing:6.467720px;}
.ws1e{word-spacing:6.527496px;}
.ws98{word-spacing:6.587271px;}
.ws11f{word-spacing:6.647047px;}
.ws80{word-spacing:6.706822px;}
.wsb7{word-spacing:6.766598px;}
.wsb3{word-spacing:6.886149px;}
.wsf6{word-spacing:6.945925px;}
.ws78{word-spacing:7.065476px;}
.wsc3{word-spacing:7.294134px;}
.ws96{word-spacing:7.304578px;}
.ws60{word-spacing:7.364354px;}
.wsd0{word-spacing:7.523140px;}
.ws76{word-spacing:7.543681px;}
.ws81{word-spacing:7.603456px;}
.ws55{word-spacing:7.663232px;}
.wsaa{word-spacing:7.723008px;}
.ws5c{word-spacing:7.782783px;}
.wsb4{word-spacing:7.842559px;}
.ws4d{word-spacing:8.021886px;}
.ws63{word-spacing:8.081661px;}
.ws53{word-spacing:8.141437px;}
.wsb8{word-spacing:8.260988px;}
.ws9f{word-spacing:8.320764px;}
.ws17{word-spacing:8.380539px;}
.ws11c{word-spacing:8.392494px;}
.ws1d{word-spacing:8.440315px;}
.ws5d{word-spacing:8.559866px;}
.wsd2{word-spacing:8.614665px;}
.wsd7{word-spacing:8.631597px;}
.wsab{word-spacing:8.739193px;}
.ws120{word-spacing:8.743902px;}
.wsc8{word-spacing:8.798968px;}
.ws99{word-spacing:8.918520px;}
.ws5e{word-spacing:8.978295px;}
.ws35{word-spacing:9.097846px;}
.wsd1{word-spacing:9.126818px;}
.wsad{word-spacing:9.157622px;}
.ws31{word-spacing:9.396724px;}
.ws5a{word-spacing:9.456500px;}
.ws82{word-spacing:9.635827px;}
.wsb0{word-spacing:9.695602px;}
.wsc4{word-spacing:9.767333px;}
.ws71{word-spacing:9.815154px;}
.ws90{word-spacing:10.054256px;}
.wsa8{word-spacing:10.353134px;}
.wsda{word-spacing:10.472685px;}
.ws22{word-spacing:10.532461px;}
.wsbc{word-spacing:10.672680px;}
.wsbe{word-spacing:10.711788px;}
.ws30{word-spacing:10.771563px;}
.wsd3{word-spacing:10.962845px;}
.ws24{word-spacing:11.070441px;}
.wseb{word-spacing:11.137418px;}
.wsc9{word-spacing:11.142172px;}
.ws19{word-spacing:11.309544px;}
.ws58{word-spacing:11.668197px;}
.ws1c{word-spacing:12.026851px;}
.wsac{word-spacing:12.146402px;}
.ws13{word-spacing:12.265953px;}
.wsa1{word-spacing:12.325729px;}
.ws8e{word-spacing:12.684382px;}
.wsbd{word-spacing:12.875664px;}
.ws11a{word-spacing:13.162587px;}
.ws118{word-spacing:13.222363px;}
.ws12{word-spacing:14.310279px;}
.ws119{word-spacing:15.206913px;}
.ws4{word-spacing:16.785101px;}
.wsd{word-spacing:16.892698px;}
.ws5{word-spacing:18.130061px;}
.wse{word-spacing:18.399053px;}
.wsb{word-spacing:18.452851px;}
.wsc{word-spacing:18.506650px;}
.wsa5{word-spacing:18.530436px;}
.wsa{word-spacing:18.560448px;}
.ws7c{word-spacing:18.629669px;}
.ws9b{word-spacing:19.546621px;}
.ws91{word-spacing:20.443255px;}
.ws7{word-spacing:22.810522px;}
.ws115{word-spacing:22.834279px;}
.ws7d{word-spacing:22.859571px;}
.ws9{word-spacing:23.079514px;}
.ws6a{word-spacing:24.681203px;}
.ws67{word-spacing:24.688076px;}
.ws72{word-spacing:24.691509px;}
.ws6d{word-spacing:24.692222px;}
.ws73{word-spacing:24.693048px;}
.ws75{word-spacing:24.693184px;}
.ws68{word-spacing:24.694103px;}
.ws77{word-spacing:24.694296px;}
.ws6b{word-spacing:24.696655px;}
.ws70{word-spacing:24.697154px;}
.ws6f{word-spacing:24.697889px;}
.ws6e{word-spacing:24.699564px;}
.ws6c{word-spacing:24.703079px;}
.wsba{word-spacing:25.045976px;}
.ws8f{word-spacing:25.404630px;}
.ws97{word-spacing:25.464406px;}
.ws6{word-spacing:26.253619px;}
.ws8{word-spacing:26.576410px;}
.ws95{word-spacing:27.377225px;}
.wsa9{word-spacing:27.974981px;}
.ws9e{word-spacing:28.572737px;}
.ws7a{word-spacing:29.828024px;}
.wsaf{word-spacing:30.126902px;}
.ws8c{word-spacing:33.593887px;}
.ws117{word-spacing:33.664337px;}
.ws8d{word-spacing:45.190249px;}
.ws46{word-spacing:57.619041px;}
.ws111{word-spacing:58.281600px;}
.wse0{word-spacing:60.007584px;}
.wsf1{word-spacing:60.011886px;}
.wsea{word-spacing:60.013584px;}
.wsee{word-spacing:62.202253px;}
.wsf7{word-spacing:66.168854px;}
.wsf{word-spacing:69.937725px;}
.wse2{word-spacing:70.339321px;}
.wsf8{word-spacing:70.518708px;}
.wse1{word-spacing:72.709584px;}
.ws102{word-spacing:72.713886px;}
.wse3{word-spacing:72.715584px;}
.wsed{word-spacing:74.212789px;}
.ws100{word-spacing:74.904253px;}
.wse7{word-spacing:83.011780px;}
.wsdd{word-spacing:84.255115px;}
.wsef{word-spacing:85.411584px;}
.wse6{word-spacing:85.417584px;}
.wsff{word-spacing:86.885248px;}
.wse4{word-spacing:90.028806px;}
.wsdf{word-spacing:99.605528px;}
.wse8{word-spacing:102.730806px;}
.ws10e{word-spacing:105.200538px;}
.ws10d{word-spacing:107.575584px;}
.ws10f{word-spacing:110.141110px;}
.wsf0{word-spacing:114.220750px;}
.wsfa{word-spacing:115.432806px;}
.ws10a{word-spacing:115.912352px;}
.ws106{word-spacing:117.531214px;}
.wse5{word-spacing:124.248084px;}
.ws101{word-spacing:126.922750px;}
.ws10c{word-spacing:130.593277px;}
.ws10b{word-spacing:132.991584px;}
.wsfc{word-spacing:136.950084px;}
.wsf4{word-spacing:141.018515px;}
.ws49{word-spacing:143.279145px;}
.wsf2{word-spacing:143.835346px;}
.wsf5{word-spacing:144.343924px;}
.wsfb{word-spacing:149.652084px;}
.ws105{word-spacing:153.720515px;}
.ws103{word-spacing:156.537346px;}
.ws61{word-spacing:163.431997px;}
.wsf3{word-spacing:164.979102px;}
.ws47{word-spacing:174.205664px;}
.ws104{word-spacing:177.681102px;}
.ws48{word-spacing:186.160814px;}
.ws42{word-spacing:252.404250px;}
.wsec{word-spacing:276.853778px;}
.wsfe{word-spacing:289.555778px;}
.ws109{word-spacing:302.257778px;}
.ws3d{word-spacing:1000.074112px;}
._a{margin-left:-33.211546px;}
._4f{margin-left:-29.098723px;}
._4{margin-left:-5.881958px;}
._3{margin-left:-4.447334px;}
._0{margin-left:-3.202064px;}
._9{margin-left:-1.936742px;}
._8{width:2.008474px;}
._1{width:3.202064px;}
._1e{width:9.900145px;}
._1f{width:12.122274px;}
._15{width:14.762678px;}
._1b{width:16.581764px;}
._e{width:18.237658px;}
._1c{width:19.259737px;}
._31{width:20.933454px;}
._18{width:22.702789px;}
._c{width:24.031010px;}
._d{width:25.823232px;}
._b{width:27.383386px;}
._14{width:28.582836px;}
._13{width:29.875844px;}
._16{width:31.033571px;}
._5{width:32.150771px;}
._11{width:33.534193px;}
._12{width:34.562264px;}
._10{width:35.665939px;}
._35{width:37.152351px;}
._33{width:38.321018px;}
._2d{width:40.069750px;}
._34{width:41.466627px;}
._32{width:42.518226px;}
._f{width:43.875290px;}
._1d{width:44.912149px;}
._30{width:46.433320px;}
._22{width:48.077411px;}
._17{width:49.374624px;}
._2{width:51.646200px;}
._4e{width:59.775600px;}
._7{width:60.806195px;}
._43{width:70.374258px;}
._23{width:74.126003px;}
._1a{width:80.697600px;}
._3d{width:82.640817px;}
._6{width:84.673390px;}
._44{width:88.102374px;}
._41{width:90.699951px;}
._3c{width:95.345902px;}
._19{width:96.836850px;}
._3b{width:100.997107px;}
._4c{width:102.246661px;}
._3a{width:103.413212px;}
._46{width:108.044817px;}
._4b{width:109.996533px;}
._42{width:113.712125px;}
._39{width:116.121212px;}
._45{width:120.749902px;}
._4a{width:126.021326px;}
._48{width:132.008908px;}
._4d{width:139.464735px;}
._2f{width:163.697368px;}
._2e{width:172.835309px;}
._2c{width:188.269702px;}
._2b{width:189.417415px;}
._26{width:191.091118px;}
._27{width:200.320493px;}
._25{width:201.898573px;}
._2a{width:203.811397px;}
._24{width:209.618367px;}
._28{width:210.664127px;}
._29{width:214.618853px;}
._21{width:252.790068px;}
._20{width:266.081870px;}
._36{width:289.941430px;}
._3f{width:336.800486px;}
._38{width:349.472945px;}
._40{width:361.715018px;}
._3e{width:381.273644px;}
._47{width:406.666382px;}
._49{width:409.822542px;}
._37{width:432.059121px;}
.fc5{color:rgb(0,255,0);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(236,0,140);}
.fc3{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:17.359514px;}
.fsf{font-size:19.288574px;}
.fs10{font-size:21.216622px;}
.fs12{font-size:26.299186px;}
.fs7{font-size:28.056353px;}
.fs8{font-size:30.860810px;}
.fs9{font-size:30.860811px;}
.fse{font-size:32.146949px;}
.fsb{font-size:33.666740px;}
.fs13{font-size:34.715157px;}
.fs14{font-size:34.715158px;}
.fsd{font-size:35.865600px;}
.fsc{font-size:37.407980px;}
.fs5{font-size:41.842800px;}
.fs15{font-size:45.234500px;}
.fsa{font-size:46.759607px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1bd{bottom:6.037324px;}
.y1bc{bottom:15.909382px;}
.y83{bottom:17.136361px;}
.y50{bottom:21.243512px;}
.y1be{bottom:21.953273px;}
.y82{bottom:23.634059px;}
.yb8{bottom:29.277197px;}
.y4f{bottom:30.694792px;}
.yc3{bottom:31.841621px;}
.y9a{bottom:32.142555px;}
.y8d{bottom:38.523563px;}
.y1bf{bottom:40.178627px;}
.y2e{bottom:40.207500px;}
.ya6{bottom:45.144225px;}
.ycb{bottom:45.522168px;}
.y84{bottom:45.783098px;}
.yd5{bottom:46.190183px;}
.yb9{bottom:49.663929px;}
.y9b{bottom:52.251423px;}
.y8e{bottom:58.196251px;}
.y1c0{bottom:58.403981px;}
.yc4{bottom:60.623296px;}
.yb2{bottom:60.740496px;}
.y51{bottom:60.793510px;}
.ya7{bottom:64.429373px;}
.ycc{bottom:66.992329px;}
.yba{bottom:70.050646px;}
.y9c{bottom:72.360275px;}
.yd6{bottom:74.776613px;}
.y85{bottom:75.043151px;}
.y5c{bottom:76.037234px;}
.y1c1{bottom:76.629335px;}
.y8f{bottom:77.868938px;}
.ya8{bottom:83.714536px;}
.y2d{bottom:85.039500px;}
.ycd{bottom:88.462475px;}
.yc5{bottom:89.404986px;}
.y15e{bottom:89.760000px;}
.y45{bottom:90.420000px;}
.ybb{bottom:90.437347px;}
.y5d{bottom:91.649167px;}
.y9d{bottom:92.469143px;}
.y1ba{bottom:94.408500px;}
.y1c2{bottom:94.854689px;}
.y90{bottom:97.541625px;}
.y52{bottom:99.823389px;}
.y2c{bottom:102.972000px;}
.ya9{bottom:102.999700px;}
.yd7{bottom:103.363027px;}
.y86{bottom:104.303204px;}
.y212{bottom:106.659836px;}
.y1c9{bottom:107.177602px;}
.y5b{bottom:107.261123px;}
.y15d{bottom:107.692500px;}
.y1b9{bottom:108.606000px;}
.yb3{bottom:109.663255px;}
.yce{bottom:109.932636px;}
.ybc{bottom:110.824064px;}
.y9e{bottom:112.577996px;}
.y1c3{bottom:113.080042px;}
.y91{bottom:117.214313px;}
.yc6{bottom:118.186676px;}
.y2b{bottom:120.904500px;}
.y8c{bottom:121.135967px;}
.yaa{bottom:122.284864px;}
.y1b8{bottom:122.802000px;}
.y98{bottom:123.667433px;}
.y103{bottom:125.770500px;}
.y44{bottom:128.377500px;}
.ybd{bottom:131.210797px;}
.y1c4{bottom:131.305403px;}
.ycf{bottom:131.402797px;}
.y15c{bottom:131.602500px;}
.yd8{bottom:131.949441px;}
.y9f{bottom:132.686864px;}
.y87{bottom:133.563258px;}
.y92{bottom:136.887000px;}
.y1b7{bottom:136.999500px;}
.y2a{bottom:138.837000px;}
.y53{bottom:138.853245px;}
.yab{bottom:141.570012px;}
.yc7{bottom:146.968366px;}
.y1c5{bottom:149.530750px;}
.y15b{bottom:149.535000px;}
.y102{bottom:149.682000px;}
.y1b6{bottom:151.195500px;}
.ybe{bottom:151.597514px;}
.ya0{bottom:152.795724px;}
.yd0{bottom:152.872966px;}
.y93{bottom:156.559688px;}
.y29{bottom:156.769500px;}
.y70{bottom:156.771000px;}
.yb4{bottom:158.586029px;}
.y59{bottom:159.076510px;}
.yd9{bottom:160.535862px;}
.yac{bottom:160.855175px;}
.y88{bottom:162.823319px;}
.y1b5{bottom:165.393000px;}
.y1c6{bottom:167.756104px;}
.ybf{bottom:171.984215px;}
.ya1{bottom:172.904569px;}
.y15a{bottom:173.446500px;}
.y101{bottom:173.592000px;}
.yd1{bottom:174.343127px;}
.y28{bottom:174.703500px;}
.yc8{bottom:175.750048px;}
.y94{bottom:176.232367px;}
.y54{bottom:177.883124px;}
.y130{bottom:178.372500px;}
.y1b4{bottom:179.589000px;}
.yad{bottom:180.140323px;}
.y1c7{bottom:185.981455px;}
.yda{bottom:189.122292px;}
.y159{bottom:191.379000px;}
.y89{bottom:192.083372px;}
.yc0{bottom:192.370932px;}
.y27{bottom:192.636000px;}
.ya2{bottom:193.013437px;}
.yd2{bottom:195.813288px;}
.y95{bottom:195.905070px;}
.y12f{bottom:196.305000px;}
.y100{bottom:197.502000px;}
.yae{bottom:199.425487px;}
.y1b3{bottom:201.289500px;}
.y1c8{bottom:204.206812px;}
.yc9{bottom:204.531739px;}
.yb5{bottom:207.508807px;}
.y49{bottom:208.008000px;}
.y1b2{bottom:208.387500px;}
.y6f{bottom:210.568500px;}
.y1ca{bottom:210.770113px;}
.yc1{bottom:212.757657px;}
.ya3{bottom:213.122301px;}
.y12e{bottom:214.237500px;}
.y158{bottom:215.289000px;}
.y96{bottom:215.577757px;}
.y55{bottom:216.912981px;}
.yd3{bottom:217.283438px;}
.ydb{bottom:217.708702px;}
.yaf{bottom:218.710639px;}
.y26{bottom:221.172000px;}
.y8a{bottom:221.343429px;}
.yff{bottom:221.412000px;}
.y6e{bottom:228.501000px;}
.y215{bottom:232.978500px;}
.yc2{bottom:233.144374px;}
.y157{bottom:233.221500px;}
.ya4{bottom:233.231149px;}
.yca{bottom:233.313425px;}
.y97{bottom:235.250445px;}
.y12d{bottom:235.840500px;}
.yb0{bottom:237.995803px;}
.yd4{bottom:238.753603px;}
.y25{bottom:239.104500px;}
.yfe{bottom:245.322000px;}
.y48{bottom:245.965500px;}
.ydc{bottom:246.295125px;}
.y6d{bottom:246.433500px;}
.y1b1{bottom:250.005000px;}
.y8b{bottom:250.603484px;}
.y214{bottom:250.911000px;}
.y12c{bottom:253.773000px;}
.y81{bottom:255.755372px;}
.y56{bottom:255.942860px;}
.y156{bottom:257.131500px;}
.y1b0{bottom:264.201000px;}
.y6c{bottom:264.367500px;}
.y24{bottom:268.317000px;}
.yfd{bottom:269.233500px;}
.y12b{bottom:271.705500px;}
.y200{bottom:273.664500px;}
.yb7{bottom:273.793500px;}
.y155{bottom:275.065500px;}
.y6b{bottom:282.300000px;}
.y213{bottom:285.880500px;}
.y17f{bottom:287.020500px;}
.y1ff{bottom:287.860500px;}
.y12a{bottom:289.638000px;}
.yb6{bottom:291.726000px;}
.yfc{bottom:293.143500px;}
.y57{bottom:294.972728px;}
.y23{bottom:297.529500px;}
.y154{bottom:298.975500px;}
.y6a{bottom:300.232500px;}
.y1fe{bottom:302.058000px;}
.y17e{bottom:304.953000px;}
.y129{bottom:307.572000px;}
.y22{bottom:315.463500px;}
.y1fd{bottom:316.254000px;}
.y153{bottom:316.908000px;}
.yfb{bottom:317.053500px;}
.y69{bottom:318.165000px;}
.y1af{bottom:319.527000px;}
.y128{bottom:325.504500px;}
.y17d{bottom:328.863000px;}
.yb1{bottom:329.683500px;}
.y1fc{bottom:330.451500px;}
.y1ae{bottom:333.724500px;}
.y58{bottom:334.002595px;}
.y68{bottom:336.097500px;}
.ya5{bottom:338.649000px;}
.y1ab{bottom:340.822500px;}
.y5a{bottom:341.447758px;}
.y203{bottom:343.674000px;}
.y21{bottom:343.999500px;}
.y1fb{bottom:344.647500px;}
.y17c{bottom:346.795500px;}
.yfa{bottom:346.941000px;}
.y1ad{bottom:347.920500px;}
.y152{bottom:349.785000px;}
.y67{bottom:354.030000px;}
.y127{bottom:354.919500px;}
.y1fa{bottom:358.845000px;}
.y5e{bottom:360.683523px;}
.y20{bottom:361.932000px;}
.y1ac{bottom:362.118000px;}
.y151{bottom:367.717500px;}
.y17b{bottom:370.707000px;}
.y126{bottom:372.852000px;}
.yf9{bottom:376.830000px;}
.y202{bottom:378.643500px;}
.y1f{bottom:379.864500px;}
.y1f9{bottom:380.544000px;}
.y1aa{bottom:383.817000px;}
.y150{bottom:385.650000px;}
.y43{bottom:386.466000px;}
.y1f8{bottom:387.642000px;}
.y17a{bottom:388.639500px;}
.y125{bottom:390.784500px;}
.y66{bottom:393.039000px;}
.yf8{bottom:394.762500px;}
.y1e{bottom:397.798500px;}
.y1a9{bottom:398.014500px;}
.y14f{bottom:403.582500px;}
.y42{bottom:404.398500px;}
.y1a6{bottom:405.112500px;}
.y65{bottom:407.833500px;}
.y1a8{bottom:412.210500px;}
.y179{bottom:412.549500px;}
.y1d{bottom:415.731000px;}
.y124{bottom:418.365000px;}
.y14e{bottom:421.516500px;}
.y64{bottom:422.031000px;}
.y41{bottom:422.331000px;}
.yf7{bottom:424.650000px;}
.y1a7{bottom:426.408000px;}
.y1f7{bottom:429.259500px;}
.y178{bottom:430.482000px;}
.y1c{bottom:433.663500px;}
.y63{bottom:436.227000px;}
.y123{bottom:436.297500px;}
.y14d{bottom:439.449000px;}
.y40{bottom:440.263500px;}
.yf6{bottom:442.582500px;}
.y1f6{bottom:443.455500px;}
.y1a5{bottom:448.107000px;}
.y62{bottom:451.021500px;}
.y1b{bottom:451.596000px;}
.y122{bottom:454.230000px;}
.y177{bottom:454.392000px;}
.y14c{bottom:457.381500px;}
.y3f{bottom:458.196000px;}
.y1a4{bottom:462.304500px;}
.y1a1{bottom:469.402500px;}
.y1a{bottom:469.528500px;}
.y121{bottom:472.162500px;}
.y176{bottom:472.326000px;}
.yf5{bottom:472.471500px;}
.y14b{bottom:475.314000px;}
.y3e{bottom:476.128500px;}
.y1a3{bottom:476.500500px;}
.y61{bottom:486.721500px;}
.y19{bottom:487.461000px;}
.y120{bottom:490.095000px;}
.yf4{bottom:490.404000px;}
.y1a2{bottom:490.696500px;}
.y14a{bottom:493.246500px;}
.y3d{bottom:494.062500px;}
.y175{bottom:496.236000px;}
.y1f5{bottom:498.781500px;}
.y60{bottom:504.654000px;}
.y18{bottom:505.395000px;}
.y11f{bottom:508.027500px;}
.y3c{bottom:511.995000px;}
.y1a0{bottom:512.397000px;}
.y1f4{bottom:512.979000px;}
.y174{bottom:514.168500px;}
.y1f1{bottom:520.077000px;}
.yf3{bottom:520.291500px;}
.y149{bottom:523.135500px;}
.y17{bottom:523.327500px;}
.y1cc{bottom:525.282000px;}
.y211{bottom:525.894000px;}
.y19f{bottom:526.594500px;}
.y1f3{bottom:527.175000px;}
.y3b{bottom:529.927500px;}
.y19c{bottom:533.692500px;}
.y11e{bottom:535.608000px;}
.y173{bottom:538.078500px;}
.yf2{bottom:538.224000px;}
.y19e{bottom:540.790500px;}
.y148{bottom:541.068000px;}
.y16{bottom:541.260000px;}
.y1f2{bottom:541.372500px;}
.y3a{bottom:547.860000px;}
.y11d{bottom:553.540500px;}
.y5f{bottom:554.494500px;}
.y19d{bottom:554.986500px;}
.y172{bottom:556.011000px;}
.yf1{bottom:556.156500px;}
.y147{bottom:559.000500px;}
.y15{bottom:559.192500px;}
.y1cb{bottom:560.250000px;}
.y1f0{bottom:563.071500px;}
.y39{bottom:565.792500px;}
.y11c{bottom:575.143500px;}
.y19b{bottom:576.687000px;}
.y14{bottom:577.125000px;}
.y1ef{bottom:577.269000px;}
.y171{bottom:579.922500px;}
.y4e{bottom:581.991000px;}
.y146{bottom:582.910500px;}
.y38{bottom:583.726500px;}
.y1ec{bottom:584.367000px;}
.yf0{bottom:586.045500px;}
.y19a{bottom:590.884500px;}
.y1ee{bottom:591.465000px;}
.y11b{bottom:593.076000px;}
.y13{bottom:595.057500px;}
.y170{bottom:597.855000px;}
.y197{bottom:597.982500px;}
.y145{bottom:600.843000px;}
.y37{bottom:601.659000px;}
.yef{bottom:603.978000px;}
.y199{bottom:605.080500px;}
.y1ed{bottom:605.662500px;}
.y11a{bottom:611.008500px;}
.y12{bottom:612.991500px;}
.y16f{bottom:615.787500px;}
.y201{bottom:618.657000px;}
.y144{bottom:618.775500px;}
.y198{bottom:619.276500px;}
.yee{bottom:621.910500px;}
.y1eb{bottom:627.361500px;}
.y119{bottom:628.941000px;}
.y99{bottom:629.865000px;}
.y143{bottom:636.709500px;}
.y80{bottom:638.832000px;}
.y16e{bottom:639.697500px;}
.y196{bottom:640.977000px;}
.y1ea{bottom:641.559000px;}
.y36{bottom:642.901500px;}
.y11{bottom:645.723000px;}
.y1e7{bottom:648.657000px;}
.y118{bottom:650.544000px;}
.yed{bottom:651.798000px;}
.y195{bottom:655.173000px;}
.y1e9{bottom:655.755000px;}
.y16d{bottom:657.630000px;}
.y142{bottom:660.619500px;}
.y192{bottom:662.272500px;}
.y117{bottom:668.476500px;}
.y194{bottom:669.370500px;}
.y1e8{bottom:669.952500px;}
.y16c{bottom:675.564000px;}
.y141{bottom:678.552000px;}
.yec{bottom:681.687000px;}
.y193{bottom:683.566500px;}
.y1e6{bottom:691.651500px;}
.y10{bottom:694.851000px;}
.y116{bottom:696.057000px;}
.y140{bottom:696.484500px;}
.y191{bottom:705.267000px;}
.y1e5{bottom:705.849000px;}
.y16b{bottom:708.439500px;}
.y21e{bottom:710.215500px;}
.yf{bottom:711.288000px;}
.yeb{bottom:711.574500px;}
.y1e2{bottom:712.947000px;}
.y7f{bottom:713.743500px;}
.y115{bottom:713.989500px;}
.y13f{bottom:714.417000px;}
.y190{bottom:719.463000px;}
.y1e4{bottom:720.045000px;}
.y47{bottom:722.950500px;}
.y16a{bottom:726.373500px;}
.y18d{bottom:726.562500px;}
.ye{bottom:727.726500px;}
.y21d{bottom:728.148000px;}
.y7e{bottom:731.676000px;}
.y114{bottom:731.922000px;}
.y18f{bottom:733.660500px;}
.y1e3{bottom:734.242500px;}
.yea{bottom:741.462000px;}
.yd{bottom:744.165000px;}
.y13e{bottom:744.306000px;}
.y18e{bottom:747.856500px;}
.y7d{bottom:749.608500px;}
.y113{bottom:749.854500px;}
.y1e1{bottom:755.941500px;}
.y21c{bottom:758.035500px;}
.yc{bottom:760.603500px;}
.y46{bottom:760.908000px;}
.y13d{bottom:762.238500px;}
.y112{bottom:767.788500px;}
.y18c{bottom:769.557000px;}
.y1e0{bottom:770.139000px;}
.ye9{bottom:771.349500px;}
.y18b{bottom:776.655000px;}
.yb{bottom:777.042000px;}
.y1dd{bottom:777.237000px;}
.y13c{bottom:780.171000px;}
.y1df{bottom:784.335000px;}
.y7c{bottom:785.473500px;}
.y111{bottom:785.721000px;}
.y21b{bottom:787.923000px;}
.ya{bottom:793.480500px;}
.y169{bottom:795.115500px;}
.y13b{bottom:798.103500px;}
.y1de{bottom:798.532500px;}
.y1bb{bottom:800.265000px;}
.ye8{bottom:801.238500px;}
.y210{bottom:802.330500px;}
.y7b{bottom:803.407500px;}
.y9{bottom:809.919000px;}
.y110{bottom:812.827500px;}
.y168{bottom:813.048000px;}
.y13a{bottom:816.036000px;}
.y20f{bottom:816.526500px;}
.y21a{bottom:817.812000px;}
.y18a{bottom:818.272500px;}
.ye7{bottom:819.171000px;}
.y1dc{bottom:820.231500px;}
.y7a{bottom:821.340000px;}
.y8{bottom:826.357500px;}
.y20e{bottom:830.724000px;}
.y10f{bottom:830.760000px;}
.y189{bottom:832.468500px;}
.y139{bottom:833.970000px;}
.y1db{bottom:834.429000px;}
.y219{bottom:835.744500px;}
.y167{bottom:836.958000px;}
.y79{bottom:839.272500px;}
.y1d8{bottom:841.527000px;}
.y20d{bottom:844.920000px;}
.y7{bottom:848.092500px;}
.y1da{bottom:848.625000px;}
.y10e{bottom:848.692500px;}
.ye6{bottom:849.058500px;}
.y138{bottom:851.902500px;}
.y166{bottom:854.890500px;}
.y78{bottom:857.205000px;}
.y20c{bottom:859.117500px;}
.y188{bottom:860.340000px;}
.y1d9{bottom:862.822500px;}
.y218{bottom:865.632000px;}
.y10d{bottom:866.625000px;}
.ye5{bottom:866.991000px;}
.y137{bottom:869.835000px;}
.y20b{bottom:873.313500px;}
.y77{bottom:875.137500px;}
.y226{bottom:875.958000px;}
.y187{bottom:878.272500px;}
.y165{bottom:878.800500px;}
.y1d7{bottom:884.521500px;}
.y10c{bottom:884.559000px;}
.y20a{bottom:887.511000px;}
.y136{bottom:887.767500px;}
.y76{bottom:893.070000px;}
.y217{bottom:893.215500px;}
.y225{bottom:893.890500px;}
.y186{bottom:896.205000px;}
.ye4{bottom:896.880000px;}
.y1d6{bottom:898.719000px;}
.y6{bottom:899.046000px;}
.y10b{bottom:902.491500px;}
.y164{bottom:902.712000px;}
.y1d3{bottom:905.817000px;}
.y209{bottom:909.210000px;}
.y75{bottom:911.004000px;}
.y1d5{bottom:912.915000px;}
.y185{bottom:914.137500px;}
.ye3{bottom:914.812500px;}
.y208{bottom:916.308000px;}
.y224{bottom:917.800500px;}
.y5{bottom:919.968000px;}
.y10a{bottom:920.424000px;}
.y135{bottom:920.644500px;}
.y1d4{bottom:927.112500px;}
.y74{bottom:928.936500px;}
.y184{bottom:932.070000px;}
.y216{bottom:935.049000px;}
.y223{bottom:935.733000px;}
.y109{bottom:938.356500px;}
.y134{bottom:938.577000px;}
.y163{bottom:944.554500px;}
.y73{bottom:946.869000px;}
.ye2{bottom:947.688000px;}
.y1d2{bottom:948.811500px;}
.y183{bottom:950.002500px;}
.y35{bottom:952.981500px;}
.y222{bottom:953.667000px;}
.y1d1{bottom:955.909500px;}
.y108{bottom:956.289000px;}
.y133{bottom:956.509500px;}
.y207{bottom:957.925500px;}
.y105{bottom:962.487000px;}
.y72{bottom:964.801500px;}
.ye1{bottom:965.622000px;}
.y182{bottom:967.936500px;}
.y4{bottom:969.621000px;}
.y34{bottom:970.914000px;}
.y132{bottom:974.442000px;}
.y221{bottom:977.577000px;}
.y104{bottom:980.419500px;}
.ye0{bottom:983.554500px;}
.y107{bottom:983.874000px;}
.y181{bottom:985.869000px;}
.y162{bottom:986.397000px;}
.y206{bottom:988.701000px;}
.y33{bottom:988.846500px;}
.y131{bottom:992.376000px;}
.y71{bottom:992.385000px;}
.y220{bottom:995.509500px;}
.y1d0{bottom:997.527000px;}
.y4d{bottom:998.353500px;}
.ydf{bottom:1001.487000px;}
.y161{bottom:1004.331000px;}
.y205{bottom:1006.635000px;}
.y32{bottom:1006.779000px;}
.y1cf{bottom:1011.723000px;}
.y21f{bottom:1013.442000px;}
.y180{bottom:1013.452500px;}
.y106{bottom:1014.447000px;}
.y4c{bottom:1016.286000px;}
.y3{bottom:1019.274000px;}
.y204{bottom:1024.567500px;}
.y31{bottom:1024.713000px;}
.y160{bottom:1028.241000px;}
.y4b{bottom:1034.218500px;}
.yde{bottom:1037.352000px;}
.y1ce{bottom:1042.500000px;}
.y15f{bottom:1046.173500px;}
.y2{bottom:1052.151000px;}
.y30{bottom:1052.296500px;}
.ydd{bottom:1055.286000px;}
.y1cd{bottom:1060.432500px;}
.y4a{bottom:1070.083500px;}
.y1{bottom:1085.028000px;}
.y2f{bottom:1088.016000px;}
.h18{height:17.037414px;}
.h16{height:18.930681px;}
.h17{height:21.382376px;}
.h1b{height:27.429229px;}
.hc{height:27.535776px;}
.hd{height:31.101910px;}
.he{height:31.101912px;}
.h15{height:32.398097px;}
.h10{height:33.042064px;}
.h1c{height:34.071028px;}
.h1d{height:34.071029px;}
.h20{height:34.986369px;}
.h21{height:34.986370px;}
.ha{height:35.865450px;}
.h11{height:36.713887px;}
.h5{height:40.348800px;}
.h12{height:40.728624px;}
.h7{height:44.831700px;}
.h1e{height:45.587894px;}
.h13{height:45.907661px;}
.hf{height:47.124916px;}
.h9{height:49.473619px;}
.h8{height:49.479619px;}
.h2{height:50.211840px;}
.h4{height:51.216077px;}
.h6{height:60.254040px;}
.h19{height:64.257450px;}
.h1f{height:64.263450px;}
.h3{height:69.348077px;}
.h1{height:72.304680px;}
.h1a{height:223.571250px;}
.h14{height:273.283500px;}
.hb{height:397.506750px;}
.h0{height:1188.000000px;}
.w3{width:298.270350px;}
.w2{width:364.592340px;}
.w1{width:530.320770px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x38{left:24.504292px;}
.x37{left:27.403779px;}
.x36{left:32.995650px;}
.x21{left:35.659042px;}
.x34{left:36.864922px;}
.x20{left:38.190616px;}
.x1f{left:40.722190px;}
.x1e{left:50.829098px;}
.x16{left:55.182241px;}
.x15{left:58.864563px;}
.x14{left:62.546886px;}
.x3b{left:71.969591px;}
.x12{left:77.798577px;}
.x39{left:87.191904px;}
.x18{left:115.574077px;}
.xb{left:127.558500px;}
.x42{left:131.823312px;}
.x1d{left:136.525500px;}
.x35{left:137.725804px;}
.x2b{left:143.179500px;}
.xd{left:145.824000px;}
.x3d{left:147.264000px;}
.xc{left:149.974500px;}
.x33{left:153.232500px;}
.x2f{left:157.482000px;}
.x3e{left:160.269000px;}
.x1{left:162.321000px;}
.x30{left:163.444500px;}
.xa{left:164.919000px;}
.x3f{left:167.673000px;}
.x31{left:170.848500px;}
.x40{left:172.959000px;}
.x32{left:176.134500px;}
.x28{left:181.731000px;}
.x9{left:185.653500px;}
.x41{left:192.465000px;}
.x11{left:193.846500px;}
.xf{left:195.654000px;}
.x29{left:197.796000px;}
.x5{left:205.296000px;}
.x2{left:209.851500px;}
.x19{left:222.908978px;}
.x2e{left:226.702500px;}
.x2d{left:229.878000px;}
.x17{left:232.170726px;}
.x7{left:240.751500px;}
.x13{left:248.741112px;}
.x1a{left:256.965000px;}
.x3c{left:259.026000px;}
.x1c{left:261.460500px;}
.x1b{left:271.347000px;}
.x2c{left:287.655000px;}
.x6{left:302.352000px;}
.x24{left:308.238000px;}
.x3{left:313.560000px;}
.x4{left:320.364000px;}
.x22{left:324.993946px;}
.x23{left:336.193136px;}
.x27{left:338.471554px;}
.x10{left:395.674500px;}
.x8{left:428.559000px;}
.x2a{left:451.528500px;}
.xe{left:455.263500px;}
.x3a{left:466.471500px;}
.x25{left:519.045000px;}
.x26{left:690.405000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.002667pt;}
.v1{vertical-align:16.117333pt;}
.v2{vertical-align:19.285333pt;}
.v4{vertical-align:25.237333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000125pt;}
.ls16{letter-spacing:0.002345pt;}
.ls15{letter-spacing:0.002418pt;}
.ls13{letter-spacing:0.002591pt;}
.ls7{letter-spacing:0.003290pt;}
.ls11{letter-spacing:0.005459pt;}
.ls14{letter-spacing:0.007751pt;}
.ls0{letter-spacing:1.671842pt;}
.lsa{letter-spacing:1.677176pt;}
.ls6{letter-spacing:2.656473pt;}
.ls2{letter-spacing:2.658245pt;}
.ls3{letter-spacing:8.667145pt;}
.ls4{letter-spacing:11.504479pt;}
.lsb{letter-spacing:15.234509pt;}
.ls18{letter-spacing:16.152695pt;}
.lsd{letter-spacing:16.343412pt;}
.ls10{letter-spacing:17.321641pt;}
.ls17{letter-spacing:17.374774pt;}
.lse{letter-spacing:17.410079pt;}
.lsf{letter-spacing:17.591412pt;}
.lsc{letter-spacing:19.383842pt;}
.ls5{letter-spacing:20.215578pt;}
.ls8{letter-spacing:21.359814pt;}
.ls9{letter-spacing:26.563713pt;}
.ws3c{word-spacing:-34.611401pt;}
.ws18{word-spacing:-14.760588pt;}
.wsc0{word-spacing:-13.581016pt;}
.wse9{word-spacing:-12.543875pt;}
.ws1b{word-spacing:-2.964870pt;}
.ws92{word-spacing:-2.327263pt;}
.ws64{word-spacing:-1.849059pt;}
.ws87{word-spacing:-1.823399pt;}
.ws88{word-spacing:-1.795925pt;}
.ws107{word-spacing:-1.423988pt;}
.ws110{word-spacing:-1.370854pt;}
.ws8a{word-spacing:-1.211452pt;}
.ws2c{word-spacing:-1.105184pt;}
.ws26{word-spacing:-0.945783pt;}
.ws94{word-spacing:-0.892649pt;}
.wsfd{word-spacing:-0.726873pt;}
.wsd8{word-spacing:-0.573846pt;}
.wsae{word-spacing:-0.520712pt;}
.wsa6{word-spacing:-0.361310pt;}
.ws8b{word-spacing:-0.308176pt;}
.ws79{word-spacing:-0.053134pt;}
.ws45{word-spacing:-0.042507pt;}
.ws29{word-spacing:0.000000pt;}
.ws33{word-spacing:0.010627pt;}
.ws39{word-spacing:0.063761pt;}
.ws69{word-spacing:0.170028pt;}
.ws27{word-spacing:0.223162pt;}
.ws21{word-spacing:0.382564pt;}
.ws50{word-spacing:0.435698pt;}
.wscf{word-spacing:0.452891pt;}
.wscb{word-spacing:0.488832pt;}
.wsb6{word-spacing:0.541965pt;}
.wsa4{word-spacing:0.595099pt;}
.ws10{word-spacing:0.648233pt;}
.ws4b{word-spacing:0.701367pt;}
.ws4c{word-spacing:0.754501pt;}
.ws4a{word-spacing:1.020170pt;}
.ws2b{word-spacing:1.073304pt;}
.wsa2{word-spacing:1.179572pt;}
.wsc1{word-spacing:1.219457pt;}
.ws1f{word-spacing:1.232706pt;}
.wsbf{word-spacing:1.235993pt;}
.ws2e{word-spacing:1.285840pt;}
.wsa3{word-spacing:1.338973pt;}
.ws32{word-spacing:1.392107pt;}
.ws66{word-spacing:1.445241pt;}
.ws3f{word-spacing:1.498375pt;}
.wsd4{word-spacing:1.551509pt;}
.ws86{word-spacing:1.604643pt;}
.ws38{word-spacing:1.710911pt;}
.ws41{word-spacing:1.764044pt;}
.ws25{word-spacing:1.817178pt;}
.ws7b{word-spacing:1.843596pt;}
.wsa0{word-spacing:1.870312pt;}
.ws4e{word-spacing:1.923446pt;}
.ws62{word-spacing:2.029714pt;}
.ws5b{word-spacing:2.082848pt;}
.wsb9{word-spacing:2.135981pt;}
.wsd9{word-spacing:2.199742pt;}
.ws2d{word-spacing:2.348517pt;}
.ws3b{word-spacing:2.401651pt;}
.ws65{word-spacing:2.454785pt;}
.ws44{word-spacing:2.503674pt;}
.ws108{word-spacing:2.507919pt;}
.wsde{word-spacing:2.546181pt;}
.wsc7{word-spacing:2.550963pt;}
.wsc5{word-spacing:2.561052pt;}
.ws7e{word-spacing:2.667320pt;}
.ws11d{word-spacing:2.677947pt;}
.ws57{word-spacing:2.720454pt;}
.ws9d{word-spacing:2.773588pt;}
.wscc{word-spacing:2.777559pt;}
.ws36{word-spacing:2.826722pt;}
.ws20{word-spacing:2.932989pt;}
.ws121{word-spacing:2.954690pt;}
.ws37{word-spacing:3.039257pt;}
.ws52{word-spacing:3.092391pt;}
.wsbb{word-spacing:3.145525pt;}
.wsce{word-spacing:3.156152pt;}
.ws113{word-spacing:3.198659pt;}
.ws7f{word-spacing:3.251793pt;}
.ws1a{word-spacing:3.304927pt;}
.ws11{word-spacing:3.315553pt;}
.ws114{word-spacing:3.358060pt;}
.ws3a{word-spacing:3.411194pt;}
.ws3{word-spacing:3.443098pt;}
.ws2{word-spacing:3.506859pt;}
.ws85{word-spacing:3.517462pt;}
.wsb1{word-spacing:3.836265pt;}
.wsc2{word-spacing:3.846892pt;}
.wsf9{word-spacing:3.863904pt;}
.ws51{word-spacing:3.889399pt;}
.ws3e{word-spacing:3.942533pt;}
.ws1{word-spacing:3.985067pt;}
.ws54{word-spacing:3.995667pt;}
.ws4f{word-spacing:4.048801pt;}
.ws93{word-spacing:4.101935pt;}
.ws43{word-spacing:4.155068pt;}
.wsd5{word-spacing:4.165695pt;}
.ws9c{word-spacing:4.261336pt;}
.ws112{word-spacing:4.314470pt;}
.ws28{word-spacing:4.367604pt;}
.ws9a{word-spacing:4.420738pt;}
.ws84{word-spacing:4.527005pt;}
.wsa7{word-spacing:4.580139pt;}
.wsb2{word-spacing:4.633273pt;}
.ws5f{word-spacing:4.686407pt;}
.wsdb{word-spacing:4.739541pt;}
.ws2a{word-spacing:4.782067pt;}
.ws14{word-spacing:4.792675pt;}
.wsdc{word-spacing:4.841570pt;}
.ws15{word-spacing:4.898943pt;}
.ws59{word-spacing:4.952076pt;}
.ws2f{word-spacing:5.005210pt;}
.ws34{word-spacing:5.058344pt;}
.wsc6{word-spacing:5.068971pt;}
.ws74{word-spacing:5.111478pt;}
.ws40{word-spacing:5.164612pt;}
.ws23{word-spacing:5.270880pt;}
.wscd{word-spacing:5.281506pt;}
.ws16{word-spacing:5.324013pt;}
.wsd6{word-spacing:5.377147pt;}
.ws11e{word-spacing:5.387774pt;}
.ws11b{word-spacing:5.440908pt;}
.ws89{word-spacing:5.483415pt;}
.ws56{word-spacing:5.589683pt;}
.ws116{word-spacing:5.642817pt;}
.wsca{word-spacing:5.646735pt;}
.wsb5{word-spacing:5.695951pt;}
.ws0{word-spacing:5.738467pt;}
.ws83{word-spacing:5.749084pt;}
.ws1e{word-spacing:5.802218pt;}
.ws98{word-spacing:5.855352pt;}
.ws11f{word-spacing:5.908486pt;}
.ws80{word-spacing:5.961620pt;}
.wsb7{word-spacing:6.014754pt;}
.wsb3{word-spacing:6.121021pt;}
.wsf6{word-spacing:6.174155pt;}
.ws78{word-spacing:6.280423pt;}
.wsc3{word-spacing:6.483675pt;}
.ws96{word-spacing:6.492959pt;}
.ws60{word-spacing:6.546092pt;}
.wsd0{word-spacing:6.687236pt;}
.ws76{word-spacing:6.705494pt;}
.ws81{word-spacing:6.758628pt;}
.ws55{word-spacing:6.811762pt;}
.wsaa{word-spacing:6.864896pt;}
.ws5c{word-spacing:6.918029pt;}
.wsb4{word-spacing:6.971163pt;}
.ws4d{word-spacing:7.130565pt;}
.ws63{word-spacing:7.183699pt;}
.ws53{word-spacing:7.236833pt;}
.wsb8{word-spacing:7.343100pt;}
.ws9f{word-spacing:7.396234pt;}
.ws17{word-spacing:7.449368pt;}
.ws11c{word-spacing:7.459995pt;}
.ws1d{word-spacing:7.502502pt;}
.ws5d{word-spacing:7.608770pt;}
.wsd2{word-spacing:7.657480pt;}
.wsd7{word-spacing:7.672530pt;}
.wsab{word-spacing:7.768171pt;}
.ws120{word-spacing:7.772358pt;}
.wsc8{word-spacing:7.821305pt;}
.ws99{word-spacing:7.927573pt;}
.ws5e{word-spacing:7.980707pt;}
.ws35{word-spacing:8.086975pt;}
.wsd1{word-spacing:8.112727pt;}
.wsad{word-spacing:8.140108pt;}
.ws31{word-spacing:8.352644pt;}
.ws5a{word-spacing:8.405778pt;}
.ws82{word-spacing:8.565179pt;}
.wsb0{word-spacing:8.618313pt;}
.wsc4{word-spacing:8.682074pt;}
.ws71{word-spacing:8.724581pt;}
.ws90{word-spacing:8.937116pt;}
.wsa8{word-spacing:9.202786pt;}
.wsda{word-spacing:9.309053pt;}
.ws22{word-spacing:9.362187pt;}
.wsbc{word-spacing:9.486826pt;}
.wsbe{word-spacing:9.521589pt;}
.ws30{word-spacing:9.574723pt;}
.wsd3{word-spacing:9.744751pt;}
.ws24{word-spacing:9.840392pt;}
.wseb{word-spacing:9.899927pt;}
.wsc9{word-spacing:9.904153pt;}
.ws19{word-spacing:10.052928pt;}
.ws58{word-spacing:10.371731pt;}
.ws1c{word-spacing:10.690534pt;}
.wsac{word-spacing:10.796802pt;}
.ws13{word-spacing:10.903069pt;}
.wsa1{word-spacing:10.956203pt;}
.ws8e{word-spacing:11.275007pt;}
.wsbd{word-spacing:11.445035pt;}
.ws11a{word-spacing:11.700077pt;}
.ws118{word-spacing:11.753211pt;}
.ws12{word-spacing:12.720248pt;}
.ws119{word-spacing:13.517256pt;}
.ws4{word-spacing:14.920090pt;}
.wsd{word-spacing:15.015731pt;}
.ws5{word-spacing:16.115610pt;}
.wse{word-spacing:16.354714pt;}
.wsb{word-spacing:16.402534pt;}
.wsc{word-spacing:16.450355pt;}
.wsa5{word-spacing:16.471499pt;}
.wsa{word-spacing:16.498176pt;}
.ws7c{word-spacing:16.559705pt;}
.ws9b{word-spacing:17.374774pt;}
.ws91{word-spacing:18.171782pt;}
.ws7{word-spacing:20.276019pt;}
.ws115{word-spacing:20.297137pt;}
.ws7d{word-spacing:20.319619pt;}
.ws9{word-spacing:20.515123pt;}
.ws6a{word-spacing:21.938847pt;}
.ws67{word-spacing:21.944956pt;}
.ws72{word-spacing:21.948008pt;}
.ws6d{word-spacing:21.948641pt;}
.ws73{word-spacing:21.949376pt;}
.ws75{word-spacing:21.949497pt;}
.ws68{word-spacing:21.950314pt;}
.ws77{word-spacing:21.950486pt;}
.ws6b{word-spacing:21.952582pt;}
.ws70{word-spacing:21.953026pt;}
.ws6f{word-spacing:21.953679pt;}
.ws6e{word-spacing:21.955168pt;}
.ws6c{word-spacing:21.958292pt;}
.wsba{word-spacing:22.263090pt;}
.ws8f{word-spacing:22.581893pt;}
.ws97{word-spacing:22.635027pt;}
.ws6{word-spacing:23.336550pt;}
.ws8{word-spacing:23.623475pt;}
.ws95{word-spacing:24.335311pt;}
.wsa9{word-spacing:24.866650pt;}
.ws9e{word-spacing:25.397988pt;}
.ws7a{word-spacing:26.513799pt;}
.wsaf{word-spacing:26.779469pt;}
.ws8c{word-spacing:29.861233pt;}
.ws117{word-spacing:29.923855pt;}
.ws8d{word-spacing:40.169111pt;}
.ws46{word-spacing:51.216925pt;}
.ws111{word-spacing:51.805867pt;}
.wse0{word-spacing:53.340075pt;}
.wsf1{word-spacing:53.343899pt;}
.wsea{word-spacing:53.345408pt;}
.wsee{word-spacing:55.290892pt;}
.wsf7{word-spacing:58.816759pt;}
.wsf{word-spacing:62.166867pt;}
.wse2{word-spacing:62.523840pt;}
.wsf8{word-spacing:62.683296pt;}
.wse1{word-spacing:64.630742pt;}
.ws102{word-spacing:64.634565pt;}
.wse3{word-spacing:64.636075pt;}
.wsed{word-spacing:65.966924pt;}
.ws100{word-spacing:66.581558pt;}
.wse7{word-spacing:73.788248pt;}
.wsdd{word-spacing:74.893436pt;}
.wsef{word-spacing:75.921408pt;}
.wse6{word-spacing:75.926742pt;}
.wsff{word-spacing:77.231332pt;}
.wse4{word-spacing:80.025605pt;}
.wsdf{word-spacing:88.538247pt;}
.wse8{word-spacing:91.316272pt;}
.ws10e{word-spacing:93.511589pt;}
.ws10d{word-spacing:95.622742pt;}
.ws10f{word-spacing:97.903209pt;}
.wsf0{word-spacing:101.529556pt;}
.wsfa{word-spacing:102.606939pt;}
.ws10a{word-spacing:103.033202pt;}
.ws106{word-spacing:104.472190pt;}
.wse5{word-spacing:110.442742pt;}
.ws101{word-spacing:112.820223pt;}
.ws10c{word-spacing:116.082912pt;}
.ws10b{word-spacing:118.214742pt;}
.wsfc{word-spacing:121.733408pt;}
.wsf4{word-spacing:125.349791pt;}
.ws49{word-spacing:127.359240pt;}
.wsf2{word-spacing:127.853640pt;}
.wsf5{word-spacing:128.305711pt;}
.wsfb{word-spacing:133.024075pt;}
.ws105{word-spacing:136.640458pt;}
.ws103{word-spacing:139.144307pt;}
.ws61{word-spacing:145.272886pt;}
.wsf3{word-spacing:146.648091pt;}
.ws47{word-spacing:154.849479pt;}
.ws104{word-spacing:157.938757pt;}
.ws48{word-spacing:165.476279pt;}
.ws42{word-spacing:224.359334pt;}
.wsec{word-spacing:246.092247pt;}
.wsfe{word-spacing:257.382914pt;}
.ws109{word-spacing:268.673580pt;}
.ws3d{word-spacing:888.954767pt;}
._a{margin-left:-29.521374pt;}
._4f{margin-left:-25.865532pt;}
._4{margin-left:-5.228407pt;}
._3{margin-left:-3.953186pt;}
._0{margin-left:-2.846279pt;}
._9{margin-left:-1.721549pt;}
._8{width:1.785310pt;}
._1{width:2.846279pt;}
._1e{width:8.800129pt;}
._1f{width:10.775355pt;}
._15{width:13.122381pt;}
._1b{width:14.739346pt;}
._e{width:16.211251pt;}
._1c{width:17.119766pt;}
._31{width:18.607515pt;}
._18{width:20.180257pt;}
._c{width:21.360898pt;}
._d{width:22.953984pt;}
._b{width:24.340787pt;}
._14{width:25.406965pt;}
._13{width:26.556306pt;}
._16{width:27.585396pt;}
._5{width:28.578463pt;}
._11{width:29.808172pt;}
._12{width:30.722013pt;}
._10{width:31.703057pt;}
._35{width:33.024312pt;}
._33{width:34.063127pt;}
._2d{width:35.617555pt;}
._34{width:36.859224pt;}
._32{width:37.793979pt;}
._f{width:39.000258pt;}
._1d{width:39.921910pt;}
._30{width:41.274062pt;}
._22{width:42.735476pt;}
._17{width:43.888555pt;}
._2{width:45.907733pt;}
._4e{width:53.133867pt;}
._7{width:54.049951pt;}
._43{width:62.554896pt;}
._23{width:65.889780pt;}
._1a{width:71.731200pt;}
._3d{width:73.458504pt;}
._6{width:75.265236pt;}
._44{width:78.313222pt;}
._41{width:80.622179pt;}
._3c{width:84.751913pt;}
._19{width:86.077200pt;}
._3b{width:89.775206pt;}
._4c{width:90.885921pt;}
._3a{width:91.922855pt;}
._46{width:96.039838pt;}
._4b{width:97.774696pt;}
._42{width:101.077445pt;}
._39{width:103.218855pt;}
._45{width:107.333246pt;}
._4a{width:112.018956pt;}
._48{width:117.341252pt;}
._4d{width:123.968653pt;}
._2f{width:145.508772pt;}
._2e{width:153.631386pt;}
._2c{width:167.350846pt;}
._2b{width:168.371036pt;}
._26{width:169.858771pt;}
._27{width:178.062661pt;}
._25{width:179.465398pt;}
._2a{width:181.165686pt;}
._24{width:186.327437pt;}
._28{width:187.257002pt;}
._29{width:190.772314pt;}
._21{width:224.702283pt;}
._20{width:236.517218pt;}
._36{width:257.725715pt;}
._3f{width:299.378210pt;}
._38{width:310.642618pt;}
._40{width:321.524461pt;}
._3e{width:338.909906pt;}
._47{width:361.481229pt;}
._49{width:364.286704pt;}
._37{width:384.052552pt;}
.fs11{font-size:15.430679pt;}
.fsf{font-size:17.145399pt;}
.fs10{font-size:18.859219pt;}
.fs12{font-size:23.377054pt;}
.fs7{font-size:24.938981pt;}
.fs8{font-size:27.431831pt;}
.fs9{font-size:27.431832pt;}
.fse{font-size:28.575065pt;}
.fsb{font-size:29.925991pt;}
.fs13{font-size:30.857917pt;}
.fs14{font-size:30.857918pt;}
.fsd{font-size:31.880533pt;}
.fsc{font-size:33.251538pt;}
.fs5{font-size:37.193600pt;}
.fs15{font-size:40.208444pt;}
.fsa{font-size:41.564095pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1bd{bottom:5.366510pt;}
.y1bc{bottom:14.141673pt;}
.y83{bottom:15.232321pt;}
.y50{bottom:18.883122pt;}
.y1be{bottom:19.514021pt;}
.y82{bottom:21.008053pt;}
.yb8{bottom:26.024175pt;}
.y4f{bottom:27.284259pt;}
.yc3{bottom:28.303663pt;}
.y9a{bottom:28.571160pt;}
.y8d{bottom:34.243167pt;}
.y1bf{bottom:35.714335pt;}
.y2e{bottom:35.740000pt;}
.ya6{bottom:40.128200pt;}
.ycb{bottom:40.464150pt;}
.y84{bottom:40.696087pt;}
.yd5{bottom:41.057941pt;}
.yb9{bottom:44.145715pt;}
.y9b{bottom:46.445709pt;}
.y8e{bottom:51.730001pt;}
.y1c0{bottom:51.914650pt;}
.yc4{bottom:53.887374pt;}
.yb2{bottom:53.991552pt;}
.y51{bottom:54.038675pt;}
.ya7{bottom:57.270553pt;}
.ycc{bottom:59.548737pt;}
.yba{bottom:62.267241pt;}
.y9c{bottom:64.320245pt;}
.yd6{bottom:66.468100pt;}
.y85{bottom:66.705023pt;}
.y5c{bottom:67.588652pt;}
.y1c1{bottom:68.114964pt;}
.y8f{bottom:69.216834pt;}
.ya8{bottom:74.412921pt;}
.y2d{bottom:75.590667pt;}
.ycd{bottom:78.633311pt;}
.yc5{bottom:79.471099pt;}
.y15e{bottom:79.786667pt;}
.y45{bottom:80.373333pt;}
.ybb{bottom:80.388753pt;}
.y5d{bottom:81.465926pt;}
.y9d{bottom:82.194794pt;}
.y1ba{bottom:83.918667pt;}
.y1c2{bottom:84.315279pt;}
.y90{bottom:86.703667pt;}
.y52{bottom:88.731901pt;}
.y2c{bottom:91.530667pt;}
.ya9{bottom:91.555289pt;}
.yd7{bottom:91.878246pt;}
.y86{bottom:92.713959pt;}
.y212{bottom:94.808743pt;}
.y1c9{bottom:95.268979pt;}
.y5b{bottom:95.343221pt;}
.y15d{bottom:95.726667pt;}
.y1b9{bottom:96.538667pt;}
.yb3{bottom:97.478448pt;}
.yce{bottom:97.717899pt;}
.ybc{bottom:98.510279pt;}
.y9e{bottom:100.069330pt;}
.y1c3{bottom:100.515593pt;}
.y91{bottom:104.190500pt;}
.yc6{bottom:105.054823pt;}
.y2b{bottom:107.470667pt;}
.y8c{bottom:107.676415pt;}
.yaa{bottom:108.697656pt;}
.y1b8{bottom:109.157333pt;}
.y98{bottom:109.926607pt;}
.y103{bottom:111.796000pt;}
.y44{bottom:114.113333pt;}
.ybd{bottom:116.631819pt;}
.y1c4{bottom:116.715913pt;}
.ycf{bottom:116.802486pt;}
.y15c{bottom:116.980000pt;}
.yd8{bottom:117.288392pt;}
.y9f{bottom:117.943879pt;}
.y87{bottom:118.722896pt;}
.y92{bottom:121.677333pt;}
.y1b7{bottom:121.777333pt;}
.y2a{bottom:123.410667pt;}
.y53{bottom:123.425107pt;}
.yab{bottom:125.840010pt;}
.yc7{bottom:130.638548pt;}
.y1c5{bottom:132.916222pt;}
.y15b{bottom:132.920000pt;}
.y102{bottom:133.050667pt;}
.y1b6{bottom:134.396000pt;}
.ybe{bottom:134.753345pt;}
.ya0{bottom:135.818421pt;}
.yd0{bottom:135.887081pt;}
.y93{bottom:139.164167pt;}
.y29{bottom:139.350667pt;}
.y70{bottom:139.352000pt;}
.yb4{bottom:140.965359pt;}
.y59{bottom:141.401343pt;}
.yd9{bottom:142.698544pt;}
.yac{bottom:142.982378pt;}
.y88{bottom:144.731839pt;}
.y1b5{bottom:147.016000pt;}
.y1c6{bottom:149.116537pt;}
.ybf{bottom:152.874858pt;}
.ya1{bottom:153.692950pt;}
.y15a{bottom:154.174667pt;}
.y101{bottom:154.304000pt;}
.yd1{bottom:154.971668pt;}
.y28{bottom:155.292000pt;}
.yc8{bottom:156.222265pt;}
.y94{bottom:156.650993pt;}
.y54{bottom:158.118333pt;}
.y130{bottom:158.553333pt;}
.y1b4{bottom:159.634667pt;}
.yad{bottom:160.124732pt;}
.y1c7{bottom:165.316849pt;}
.yda{bottom:168.108704pt;}
.y159{bottom:170.114667pt;}
.y89{bottom:170.740775pt;}
.yc0{bottom:170.996384pt;}
.y27{bottom:171.232000pt;}
.ya2{bottom:171.567499pt;}
.yd2{bottom:174.056256pt;}
.y95{bottom:174.137840pt;}
.y12f{bottom:174.493333pt;}
.y100{bottom:175.557333pt;}
.yae{bottom:177.267100pt;}
.y1b3{bottom:178.924000pt;}
.y1c8{bottom:181.517166pt;}
.yc9{bottom:181.805990pt;}
.yb5{bottom:184.452273pt;}
.y49{bottom:184.896000pt;}
.y1b2{bottom:185.233333pt;}
.y6f{bottom:187.172000pt;}
.y1ca{bottom:187.351212pt;}
.yc1{bottom:189.117917pt;}
.ya3{bottom:189.442045pt;}
.y12e{bottom:190.433333pt;}
.y158{bottom:191.368000pt;}
.y96{bottom:191.624673pt;}
.y55{bottom:192.811538pt;}
.yd3{bottom:193.140833pt;}
.ydb{bottom:193.518846pt;}
.yaf{bottom:194.409457pt;}
.y26{bottom:196.597333pt;}
.y8a{bottom:196.749715pt;}
.yff{bottom:196.810667pt;}
.y6e{bottom:203.112000pt;}
.y215{bottom:207.092000pt;}
.yc2{bottom:207.239443pt;}
.y157{bottom:207.308000pt;}
.ya4{bottom:207.316577pt;}
.yca{bottom:207.389711pt;}
.y97{bottom:209.111506pt;}
.y12d{bottom:209.636000pt;}
.yb0{bottom:211.551825pt;}
.yd4{bottom:212.225424pt;}
.y25{bottom:212.537333pt;}
.yfe{bottom:218.064000pt;}
.y48{bottom:218.636000pt;}
.ydc{bottom:218.929000pt;}
.y6d{bottom:219.052000pt;}
.y1b1{bottom:222.226667pt;}
.y8b{bottom:222.758653pt;}
.y214{bottom:223.032000pt;}
.y12c{bottom:225.576000pt;}
.y81{bottom:227.338108pt;}
.y56{bottom:227.504764pt;}
.y156{bottom:228.561333pt;}
.y1b0{bottom:234.845333pt;}
.y6c{bottom:234.993333pt;}
.y24{bottom:238.504000pt;}
.yfd{bottom:239.318667pt;}
.y12b{bottom:241.516000pt;}
.y200{bottom:243.257333pt;}
.yb7{bottom:243.372000pt;}
.y155{bottom:244.502667pt;}
.y6b{bottom:250.933333pt;}
.y213{bottom:254.116000pt;}
.y17f{bottom:255.129333pt;}
.y1ff{bottom:255.876000pt;}
.y12a{bottom:257.456000pt;}
.yb6{bottom:259.312000pt;}
.yfc{bottom:260.572000pt;}
.y57{bottom:262.197980pt;}
.y23{bottom:264.470667pt;}
.y154{bottom:265.756000pt;}
.y6a{bottom:266.873333pt;}
.y1fe{bottom:268.496000pt;}
.y17e{bottom:271.069333pt;}
.y129{bottom:273.397333pt;}
.y22{bottom:280.412000pt;}
.y1fd{bottom:281.114667pt;}
.y153{bottom:281.696000pt;}
.yfb{bottom:281.825333pt;}
.y69{bottom:282.813333pt;}
.y1af{bottom:284.024000pt;}
.y128{bottom:289.337333pt;}
.y17d{bottom:292.322667pt;}
.yb1{bottom:293.052000pt;}
.y1fc{bottom:293.734667pt;}
.y1ae{bottom:296.644000pt;}
.y58{bottom:296.891196pt;}
.y68{bottom:298.753333pt;}
.ya5{bottom:301.021333pt;}
.y1ab{bottom:302.953333pt;}
.y5a{bottom:303.509118pt;}
.y203{bottom:305.488000pt;}
.y21{bottom:305.777333pt;}
.y1fb{bottom:306.353333pt;}
.y17c{bottom:308.262667pt;}
.yfa{bottom:308.392000pt;}
.y1ad{bottom:309.262667pt;}
.y152{bottom:310.920000pt;}
.y67{bottom:314.693333pt;}
.y127{bottom:315.484000pt;}
.y1fa{bottom:318.973333pt;}
.y5e{bottom:320.607576pt;}
.y20{bottom:321.717333pt;}
.y1ac{bottom:321.882667pt;}
.y151{bottom:326.860000pt;}
.y17b{bottom:329.517333pt;}
.y126{bottom:331.424000pt;}
.yf9{bottom:334.960000pt;}
.y202{bottom:336.572000pt;}
.y1f{bottom:337.657333pt;}
.y1f9{bottom:338.261333pt;}
.y1aa{bottom:341.170667pt;}
.y150{bottom:342.800000pt;}
.y43{bottom:343.525333pt;}
.y1f8{bottom:344.570667pt;}
.y17a{bottom:345.457333pt;}
.y125{bottom:347.364000pt;}
.y66{bottom:349.368000pt;}
.yf8{bottom:350.900000pt;}
.y1e{bottom:353.598667pt;}
.y1a9{bottom:353.790667pt;}
.y14f{bottom:358.740000pt;}
.y42{bottom:359.465333pt;}
.y1a6{bottom:360.100000pt;}
.y65{bottom:362.518667pt;}
.y1a8{bottom:366.409333pt;}
.y179{bottom:366.710667pt;}
.y1d{bottom:369.538667pt;}
.y124{bottom:371.880000pt;}
.y14e{bottom:374.681333pt;}
.y64{bottom:375.138667pt;}
.y41{bottom:375.405333pt;}
.yf7{bottom:377.466667pt;}
.y1a7{bottom:379.029333pt;}
.y1f7{bottom:381.564000pt;}
.y178{bottom:382.650667pt;}
.y1c{bottom:385.478667pt;}
.y63{bottom:387.757333pt;}
.y123{bottom:387.820000pt;}
.y14d{bottom:390.621333pt;}
.y40{bottom:391.345333pt;}
.yf6{bottom:393.406667pt;}
.y1f6{bottom:394.182667pt;}
.y1a5{bottom:398.317333pt;}
.y62{bottom:400.908000pt;}
.y1b{bottom:401.418667pt;}
.y122{bottom:403.760000pt;}
.y177{bottom:403.904000pt;}
.y14c{bottom:406.561333pt;}
.y3f{bottom:407.285333pt;}
.y1a4{bottom:410.937333pt;}
.y1a1{bottom:417.246667pt;}
.y1a{bottom:417.358667pt;}
.y121{bottom:419.700000pt;}
.y176{bottom:419.845333pt;}
.yf5{bottom:419.974667pt;}
.y14b{bottom:422.501333pt;}
.y3e{bottom:423.225333pt;}
.y1a3{bottom:423.556000pt;}
.y61{bottom:432.641333pt;}
.y19{bottom:433.298667pt;}
.y120{bottom:435.640000pt;}
.yf4{bottom:435.914667pt;}
.y1a2{bottom:436.174667pt;}
.y14a{bottom:438.441333pt;}
.y3d{bottom:439.166667pt;}
.y175{bottom:441.098667pt;}
.y1f5{bottom:443.361333pt;}
.y60{bottom:448.581333pt;}
.y18{bottom:449.240000pt;}
.y11f{bottom:451.580000pt;}
.y3c{bottom:455.106667pt;}
.y1a0{bottom:455.464000pt;}
.y1f4{bottom:455.981333pt;}
.y174{bottom:457.038667pt;}
.y1f1{bottom:462.290667pt;}
.yf3{bottom:462.481333pt;}
.y149{bottom:465.009333pt;}
.y17{bottom:465.180000pt;}
.y1cc{bottom:466.917333pt;}
.y211{bottom:467.461333pt;}
.y19f{bottom:468.084000pt;}
.y1f3{bottom:468.600000pt;}
.y3b{bottom:471.046667pt;}
.y19c{bottom:474.393333pt;}
.y11e{bottom:476.096000pt;}
.y173{bottom:478.292000pt;}
.yf2{bottom:478.421333pt;}
.y19e{bottom:480.702667pt;}
.y148{bottom:480.949333pt;}
.y16{bottom:481.120000pt;}
.y1f2{bottom:481.220000pt;}
.y3a{bottom:486.986667pt;}
.y11d{bottom:492.036000pt;}
.y5f{bottom:492.884000pt;}
.y19d{bottom:493.321333pt;}
.y172{bottom:494.232000pt;}
.yf1{bottom:494.361333pt;}
.y147{bottom:496.889333pt;}
.y15{bottom:497.060000pt;}
.y1cb{bottom:498.000000pt;}
.y1f0{bottom:500.508000pt;}
.y39{bottom:502.926667pt;}
.y11c{bottom:511.238667pt;}
.y19b{bottom:512.610667pt;}
.y14{bottom:513.000000pt;}
.y1ef{bottom:513.128000pt;}
.y171{bottom:515.486667pt;}
.y4e{bottom:517.325333pt;}
.y146{bottom:518.142667pt;}
.y38{bottom:518.868000pt;}
.y1ec{bottom:519.437333pt;}
.yf0{bottom:520.929333pt;}
.y19a{bottom:525.230667pt;}
.y1ee{bottom:525.746667pt;}
.y11b{bottom:527.178667pt;}
.y13{bottom:528.940000pt;}
.y170{bottom:531.426667pt;}
.y197{bottom:531.540000pt;}
.y145{bottom:534.082667pt;}
.y37{bottom:534.808000pt;}
.yef{bottom:536.869333pt;}
.y199{bottom:537.849333pt;}
.y1ed{bottom:538.366667pt;}
.y11a{bottom:543.118667pt;}
.y12{bottom:544.881333pt;}
.y16f{bottom:547.366667pt;}
.y201{bottom:549.917333pt;}
.y144{bottom:550.022667pt;}
.y198{bottom:550.468000pt;}
.yee{bottom:552.809333pt;}
.y1eb{bottom:557.654667pt;}
.y119{bottom:559.058667pt;}
.y99{bottom:559.880000pt;}
.y143{bottom:565.964000pt;}
.y80{bottom:567.850667pt;}
.y16e{bottom:568.620000pt;}
.y196{bottom:569.757333pt;}
.y1ea{bottom:570.274667pt;}
.y36{bottom:571.468000pt;}
.y11{bottom:573.976000pt;}
.y1e7{bottom:576.584000pt;}
.y118{bottom:578.261333pt;}
.yed{bottom:579.376000pt;}
.y195{bottom:582.376000pt;}
.y1e9{bottom:582.893333pt;}
.y16d{bottom:584.560000pt;}
.y142{bottom:587.217333pt;}
.y192{bottom:588.686667pt;}
.y117{bottom:594.201333pt;}
.y194{bottom:594.996000pt;}
.y1e8{bottom:595.513333pt;}
.y16c{bottom:600.501333pt;}
.y141{bottom:603.157333pt;}
.yec{bottom:605.944000pt;}
.y193{bottom:607.614667pt;}
.y1e6{bottom:614.801333pt;}
.y10{bottom:617.645333pt;}
.y116{bottom:618.717333pt;}
.y140{bottom:619.097333pt;}
.y191{bottom:626.904000pt;}
.y1e5{bottom:627.421333pt;}
.y16b{bottom:629.724000pt;}
.y21e{bottom:631.302667pt;}
.yf{bottom:632.256000pt;}
.yeb{bottom:632.510667pt;}
.y1e2{bottom:633.730667pt;}
.y7f{bottom:634.438667pt;}
.y115{bottom:634.657333pt;}
.y13f{bottom:635.037333pt;}
.y190{bottom:639.522667pt;}
.y1e4{bottom:640.040000pt;}
.y47{bottom:642.622667pt;}
.y16a{bottom:645.665333pt;}
.y18d{bottom:645.833333pt;}
.ye{bottom:646.868000pt;}
.y21d{bottom:647.242667pt;}
.y7e{bottom:650.378667pt;}
.y114{bottom:650.597333pt;}
.y18f{bottom:652.142667pt;}
.y1e3{bottom:652.660000pt;}
.yea{bottom:659.077333pt;}
.yd{bottom:661.480000pt;}
.y13e{bottom:661.605333pt;}
.y18e{bottom:664.761333pt;}
.y7d{bottom:666.318667pt;}
.y113{bottom:666.537333pt;}
.y1e1{bottom:671.948000pt;}
.y21c{bottom:673.809333pt;}
.yc{bottom:676.092000pt;}
.y46{bottom:676.362667pt;}
.y13d{bottom:677.545333pt;}
.y112{bottom:682.478667pt;}
.y18c{bottom:684.050667pt;}
.y1e0{bottom:684.568000pt;}
.ye9{bottom:685.644000pt;}
.y18b{bottom:690.360000pt;}
.yb{bottom:690.704000pt;}
.y1dd{bottom:690.877333pt;}
.y13c{bottom:693.485333pt;}
.y1df{bottom:697.186667pt;}
.y7c{bottom:698.198667pt;}
.y111{bottom:698.418667pt;}
.y21b{bottom:700.376000pt;}
.ya{bottom:705.316000pt;}
.y169{bottom:706.769333pt;}
.y13b{bottom:709.425333pt;}
.y1de{bottom:709.806667pt;}
.y1bb{bottom:711.346667pt;}
.ye8{bottom:712.212000pt;}
.y210{bottom:713.182667pt;}
.y7b{bottom:714.140000pt;}
.y9{bottom:719.928000pt;}
.y110{bottom:722.513333pt;}
.y168{bottom:722.709333pt;}
.y13a{bottom:725.365333pt;}
.y20f{bottom:725.801333pt;}
.y21a{bottom:726.944000pt;}
.y18a{bottom:727.353333pt;}
.ye7{bottom:728.152000pt;}
.y1dc{bottom:729.094667pt;}
.y7a{bottom:730.080000pt;}
.y8{bottom:734.540000pt;}
.y20e{bottom:738.421333pt;}
.y10f{bottom:738.453333pt;}
.y189{bottom:739.972000pt;}
.y139{bottom:741.306667pt;}
.y1db{bottom:741.714667pt;}
.y219{bottom:742.884000pt;}
.y167{bottom:743.962667pt;}
.y79{bottom:746.020000pt;}
.y1d8{bottom:748.024000pt;}
.y20d{bottom:751.040000pt;}
.y7{bottom:753.860000pt;}
.y1da{bottom:754.333333pt;}
.y10e{bottom:754.393333pt;}
.ye6{bottom:754.718667pt;}
.y138{bottom:757.246667pt;}
.y166{bottom:759.902667pt;}
.y78{bottom:761.960000pt;}
.y20c{bottom:763.660000pt;}
.y188{bottom:764.746667pt;}
.y1d9{bottom:766.953333pt;}
.y218{bottom:769.450667pt;}
.y10d{bottom:770.333333pt;}
.ye5{bottom:770.658667pt;}
.y137{bottom:773.186667pt;}
.y20b{bottom:776.278667pt;}
.y77{bottom:777.900000pt;}
.y226{bottom:778.629333pt;}
.y187{bottom:780.686667pt;}
.y165{bottom:781.156000pt;}
.y1d7{bottom:786.241333pt;}
.y10c{bottom:786.274667pt;}
.y20a{bottom:788.898667pt;}
.y136{bottom:789.126667pt;}
.y76{bottom:793.840000pt;}
.y217{bottom:793.969333pt;}
.y225{bottom:794.569333pt;}
.y186{bottom:796.626667pt;}
.ye4{bottom:797.226667pt;}
.y1d6{bottom:798.861333pt;}
.y6{bottom:799.152000pt;}
.y10b{bottom:802.214667pt;}
.y164{bottom:802.410667pt;}
.y1d3{bottom:805.170667pt;}
.y209{bottom:808.186667pt;}
.y75{bottom:809.781333pt;}
.y1d5{bottom:811.480000pt;}
.y185{bottom:812.566667pt;}
.ye3{bottom:813.166667pt;}
.y208{bottom:814.496000pt;}
.y224{bottom:815.822667pt;}
.y5{bottom:817.749333pt;}
.y10a{bottom:818.154667pt;}
.y135{bottom:818.350667pt;}
.y1d4{bottom:824.100000pt;}
.y74{bottom:825.721333pt;}
.y184{bottom:828.506667pt;}
.y216{bottom:831.154667pt;}
.y223{bottom:831.762667pt;}
.y109{bottom:834.094667pt;}
.y134{bottom:834.290667pt;}
.y163{bottom:839.604000pt;}
.y73{bottom:841.661333pt;}
.ye2{bottom:842.389333pt;}
.y1d2{bottom:843.388000pt;}
.y183{bottom:844.446667pt;}
.y35{bottom:847.094667pt;}
.y222{bottom:847.704000pt;}
.y1d1{bottom:849.697333pt;}
.y108{bottom:850.034667pt;}
.y133{bottom:850.230667pt;}
.y207{bottom:851.489333pt;}
.y105{bottom:855.544000pt;}
.y72{bottom:857.601333pt;}
.ye1{bottom:858.330667pt;}
.y182{bottom:860.388000pt;}
.y4{bottom:861.885333pt;}
.y34{bottom:863.034667pt;}
.y132{bottom:866.170667pt;}
.y221{bottom:868.957333pt;}
.y104{bottom:871.484000pt;}
.ye0{bottom:874.270667pt;}
.y107{bottom:874.554667pt;}
.y181{bottom:876.328000pt;}
.y162{bottom:876.797333pt;}
.y206{bottom:878.845333pt;}
.y33{bottom:878.974667pt;}
.y131{bottom:882.112000pt;}
.y71{bottom:882.120000pt;}
.y220{bottom:884.897333pt;}
.y1d0{bottom:886.690667pt;}
.y4d{bottom:887.425333pt;}
.ydf{bottom:890.210667pt;}
.y161{bottom:892.738667pt;}
.y205{bottom:894.786667pt;}
.y32{bottom:894.914667pt;}
.y1cf{bottom:899.309333pt;}
.y21f{bottom:900.837333pt;}
.y180{bottom:900.846667pt;}
.y106{bottom:901.730667pt;}
.y4c{bottom:903.365333pt;}
.y3{bottom:906.021333pt;}
.y204{bottom:910.726667pt;}
.y31{bottom:910.856000pt;}
.y160{bottom:913.992000pt;}
.y4b{bottom:919.305333pt;}
.yde{bottom:922.090667pt;}
.y1ce{bottom:926.666667pt;}
.y15f{bottom:929.932000pt;}
.y2{bottom:935.245333pt;}
.y30{bottom:935.374667pt;}
.ydd{bottom:938.032000pt;}
.y1cd{bottom:942.606667pt;}
.y4a{bottom:951.185333pt;}
.y1{bottom:964.469333pt;}
.y2f{bottom:967.125333pt;}
.h18{height:15.144368pt;}
.h16{height:16.827272pt;}
.h17{height:19.006557pt;}
.h1b{height:24.381537pt;}
.hc{height:24.476246pt;}
.hd{height:27.646143pt;}
.he{height:27.646144pt;}
.h15{height:28.798308pt;}
.h10{height:29.370724pt;}
.h1c{height:30.285358pt;}
.h1d{height:30.285359pt;}
.h20{height:31.098995pt;}
.h21{height:31.098996pt;}
.ha{height:31.880400pt;}
.h11{height:32.634566pt;}
.h5{height:35.865600pt;}
.h12{height:36.203221pt;}
.h7{height:39.850400pt;}
.h1e{height:40.522573pt;}
.h13{height:40.806810pt;}
.hf{height:41.888815pt;}
.h9{height:43.976550pt;}
.h8{height:43.981884pt;}
.h2{height:44.632747pt;}
.h4{height:45.525402pt;}
.h6{height:53.559147pt;}
.h19{height:57.117733pt;}
.h1f{height:57.123067pt;}
.h3{height:61.642735pt;}
.h1{height:64.270827pt;}
.h1a{height:198.730000pt;}
.h14{height:242.918667pt;}
.hb{height:353.339333pt;}
.h0{height:1056.000000pt;}
.w3{width:265.129200pt;}
.w2{width:324.082080pt;}
.w1{width:471.396240pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x38{left:21.781593pt;}
.x37{left:24.358915pt;}
.x36{left:29.329466pt;}
.x21{left:31.696926pt;}
.x34{left:32.768819pt;}
.x20{left:33.947214pt;}
.x1f{left:36.197503pt;}
.x1e{left:45.181420pt;}
.x16{left:49.050881pt;}
.x15{left:52.324056pt;}
.x14{left:55.597232pt;}
.x3b{left:63.972970pt;}
.x12{left:69.154291pt;}
.x39{left:77.503915pt;}
.x18{left:102.732513pt;}
.xb{left:113.385333pt;}
.x42{left:117.176277pt;}
.x1d{left:121.356000pt;}
.x35{left:122.422937pt;}
.x2b{left:127.270667pt;}
.xd{left:129.621333pt;}
.x3d{left:130.901333pt;}
.xc{left:133.310667pt;}
.x33{left:136.206667pt;}
.x2f{left:139.984000pt;}
.x3e{left:142.461333pt;}
.x1{left:144.285333pt;}
.x30{left:145.284000pt;}
.xa{left:146.594667pt;}
.x3f{left:149.042667pt;}
.x31{left:151.865333pt;}
.x40{left:153.741333pt;}
.x32{left:156.564000pt;}
.x28{left:161.538667pt;}
.x9{left:165.025333pt;}
.x41{left:171.080000pt;}
.x11{left:172.308000pt;}
.xf{left:173.914667pt;}
.x29{left:175.818667pt;}
.x5{left:182.485333pt;}
.x2{left:186.534667pt;}
.x19{left:198.141314pt;}
.x2e{left:201.513333pt;}
.x2d{left:204.336000pt;}
.x17{left:206.373979pt;}
.x7{left:214.001333pt;}
.x13{left:221.103210pt;}
.x1a{left:228.413333pt;}
.x3c{left:230.245333pt;}
.x1c{left:232.409333pt;}
.x1b{left:241.197333pt;}
.x2c{left:255.693333pt;}
.x6{left:268.757333pt;}
.x24{left:273.989333pt;}
.x3{left:278.720000pt;}
.x4{left:284.768000pt;}
.x22{left:288.883508pt;}
.x23{left:298.838343pt;}
.x27{left:300.863603pt;}
.x10{left:351.710667pt;}
.x8{left:380.941333pt;}
.x2a{left:401.358667pt;}
.xe{left:404.678667pt;}
.x3a{left:414.641333pt;}
.x25{left:461.373333pt;}
.x26{left:613.693333pt;}
}




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