
    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_5d2a7bdc394d71c34c8c04af.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943500;font-style:normal;font-weight: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_7ab6e7f1624db30a32c703ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.071500;font-style:normal;font-weight: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_62abb9fda55778bf9af1e487.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.950000;font-style:normal;font-weight: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_9217a28940a59a58e606b3cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948000;font-style:normal;font-weight: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_21736b3a5e2a8f751b229b2c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.744500;font-style:normal;font-weight: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_31ad2c3b21c5a1f65e3cb99c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_26df7cdef43bf06181d43373.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.873000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_562fa90d039de357c17ce93b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956500;font-style:normal;font-weight: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_4c945ac7f43182b9a5aff5c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;font-style:normal;font-weight: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_c7229d861c503ef9c5e62bf0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1687086d0d68098df219cd69.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.744500;font-style:normal;font-weight: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_413c7e49c839344fd7b13c61.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942000;font-style:normal;font-weight: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_b90d094b8e6de706da2eb75f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938000;font-style:normal;font-weight: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_249ec9494c3a6982afa0f21a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b570b17c98d2e92d2cdd0211.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fc651a27c83d22a3f5c85254.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ef8c78dbd27810b1327a6070.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.959000;font-style:normal;font-weight: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_b570b17c98d2e92d2cdd0211.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_fc651a27c83d22a3f5c85254.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ef8c78dbd27810b1327a6070.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.959000;font-style:normal;font-weight: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_0b5b4dfb85889141b84572a4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_ef8c78dbd27810b1327a6070.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.959000;font-style:normal;font-weight: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_0b5b4dfb85889141b84572a4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ef8c78dbd27810b1327a6070.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.959000;font-style:normal;font-weight: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_d1e83bb27d94d2fb96d94624.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_b570b17c98d2e92d2cdd0211.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_ef8c78dbd27810b1327a6070.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.959000;font-style:normal;font-weight: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_b570b17c98d2e92d2cdd0211.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_fc651a27c83d22a3f5c85254.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_b1d15c151cb2c6aa5ac2523a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.923000;font-style:normal;font-weight: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_b570b17c98d2e92d2cdd0211.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_fc651a27c83d22a3f5c85254.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_ef8c78dbd27810b1327a6070.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.959000;font-style:normal;font-weight: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_ef8c78dbd27810b1327a6070.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.959000;font-style:normal;font-weight: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_b570b17c98d2e92d2cdd0211.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_3706c03e4b460ccd28b44a5e.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_162a0586ba6461f6bdf06407.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.450000;font-style:normal;font-weight: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_090bfa2b65c2da985556b6e7.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938000;font-style:normal;font-weight: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_8f96598079d597f5e33e74c9.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.939000;font-style:normal;font-weight: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_090bfa2b65c2da985556b6e7.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.938000;font-style:normal;font-weight: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_413c7e49c839344fd7b13c61.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.942000;font-style:normal;font-weight: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_8f96598079d597f5e33e74c9.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.939000;font-style:normal;font-weight: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_8f96598079d597f5e33e74c9.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.939000;font-style:normal;font-weight: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_413c7e49c839344fd7b13c61.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.942000;font-style:normal;font-weight: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_8f96598079d597f5e33e74c9.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.939000;font-style:normal;font-weight: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_090bfa2b65c2da985556b6e7.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938000;font-style:normal;font-weight: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_413c7e49c839344fd7b13c61.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.942000;font-style:normal;font-weight: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_b90d094b8e6de706da2eb75f.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.938000;font-style:normal;font-weight: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_8f96598079d597f5e33e74c9.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.939000;font-style:normal;font-weight: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_413c7e49c839344fd7b13c61.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{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.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182482,0.000000,0.000000,0.250000,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(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);}
.v2{vertical-align:-18.900000px;}
.v5{vertical-align:-15.840000px;}
.v8{vertical-align:-11.988000px;}
.vb{vertical-align:-8.592000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.262355px;}
.v9{vertical-align:11.986200px;}
.v6{vertical-align:15.840000px;}
.v7{vertical-align:17.280600px;}
.va{vertical-align:19.225800px;}
.v4{vertical-align:21.600000px;}
.v3{vertical-align:24.372000px;}
.v1{vertical-align:32.400600px;}
.ls2f{letter-spacing:-7.541268px;}
.ls32{letter-spacing:-5.541312px;}
.ls34{letter-spacing:-5.501731px;}
.ls33{letter-spacing:-4.121351px;}
.ls2d{letter-spacing:-0.864000px;}
.ls3b{letter-spacing:-0.675000px;}
.ls9{letter-spacing:-0.336000px;}
.ls2c{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.002400px;}
.ls20{letter-spacing:0.004800px;}
.ls11{letter-spacing:0.005400px;}
.ls26{letter-spacing:0.007200px;}
.ls1e{letter-spacing:0.010200px;}
.ls12{letter-spacing:0.010800px;}
.ls2b{letter-spacing:0.011400px;}
.ls1d{letter-spacing:0.012600px;}
.ls18{letter-spacing:0.015000px;}
.lse{letter-spacing:0.015600px;}
.ls14{letter-spacing:0.016200px;}
.lsd{letter-spacing:0.016800px;}
.ls21{letter-spacing:0.018600px;}
.ls10{letter-spacing:0.020400px;}
.ls17{letter-spacing:0.023400px;}
.ls15{letter-spacing:0.024600px;}
.ls1a{letter-spacing:0.031800px;}
.lsf{letter-spacing:0.039600px;}
.ls16{letter-spacing:0.052800px;}
.ls19{letter-spacing:0.068400px;}
.ls24{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.495000px;}
.ls35{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.810000px;}
.ls6{letter-spacing:0.864000px;}
.ls25{letter-spacing:2.886600px;}
.ls8{letter-spacing:2.898000px;}
.ls1f{letter-spacing:2.940600px;}
.ls27{letter-spacing:2.992200px;}
.ls2a{letter-spacing:2.998200px;}
.ls37{letter-spacing:4.800000px;}
.ls39{letter-spacing:5.280000px;}
.ls1c{letter-spacing:5.328000px;}
.ls23{letter-spacing:5.376000px;}
.ls5{letter-spacing:6.000000px;}
.ls22{letter-spacing:6.624000px;}
.ls28{letter-spacing:6.672000px;}
.lsa{letter-spacing:6.720000px;}
.ls29{letter-spacing:8.377200px;}
.ls4{letter-spacing:8.400000px;}
.ls1b{letter-spacing:9.636600px;}
.ls1{letter-spacing:10.800000px;}
.ls31{letter-spacing:49.634323px;}
.ls30{letter-spacing:49.664009px;}
.lsb{letter-spacing:95.770829px;}
.ls36{letter-spacing:126.435216px;}
.ls2e{letter-spacing:166.000313px;}
.ls0{letter-spacing:603.502200px;}
.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;}
}
.ws29{word-spacing:-179.103120px;}
.ws38{word-spacing:-138.309875px;}
.ws10{word-spacing:-95.824512px;}
.ws2d{word-spacing:-57.916606px;}
.ws2f{word-spacing:-57.886920px;}
.wsa{word-spacing:-20.580000px;}
.ws1{word-spacing:-17.496000px;}
.ws3c{word-spacing:-16.464000px;}
.ws36{word-spacing:-14.723936px;}
.ws1a{word-spacing:-14.580000px;}
.ws2c{word-spacing:-13.102807px;}
.ws21{word-spacing:-12.288000px;}
.ws37{word-spacing:-11.874659px;}
.ws42{word-spacing:-11.520000px;}
.ws1b{word-spacing:-11.232000px;}
.ws34{word-spacing:-11.003462px;}
.ws3{word-spacing:-10.752000px;}
.ws3d{word-spacing:-10.530000px;}
.ws4{word-spacing:-10.206000px;}
.ws5{word-spacing:-9.676800px;}
.ws19{word-spacing:-8.601600px;}
.ws9{word-spacing:-8.400000px;}
.ws23{word-spacing:-7.862400px;}
.ws2{word-spacing:-7.526400px;}
.ws2a{word-spacing:-7.433536px;}
.ws18{word-spacing:-6.720000px;}
.wsb{word-spacing:-6.000000px;}
.ws33{word-spacing:-5.506679px;}
.ws35{word-spacing:-5.501731px;}
.ws31{word-spacing:-5.462150px;}
.ws3f{word-spacing:-5.280000px;}
.ws3e{word-spacing:-4.800000px;}
.ws12{word-spacing:-2.898000px;}
.ws8{word-spacing:-2.538000px;}
.ws4a{word-spacing:-1.845000px;}
.wsd{word-spacing:-0.864000px;}
.ws40{word-spacing:-0.810000px;}
.ws3b{word-spacing:-0.720000px;}
.ws43{word-spacing:-0.495000px;}
.wsc{word-spacing:-0.432000px;}
.ws48{word-spacing:-0.405000px;}
.ws1d{word-spacing:-0.144000px;}
.ws0{word-spacing:-0.050400px;}
.ws22{word-spacing:-0.048000px;}
.ws20{word-spacing:-0.033600px;}
.ws24{word-spacing:-0.024000px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:0.108000px;}
.ws25{word-spacing:0.144000px;}
.ws41{word-spacing:0.225000px;}
.ws17{word-spacing:0.336000px;}
.ws46{word-spacing:0.405000px;}
.ws4c{word-spacing:0.675000px;}
.ws26{word-spacing:0.864000px;}
.ws1f{word-spacing:2.592000px;}
.ws4b{word-spacing:2.970000px;}
.ws49{word-spacing:3.735000px;}
.ws1c{word-spacing:3.840000px;}
.ws45{word-spacing:5.040000px;}
.ws16{word-spacing:5.712000px;}
.wse{word-spacing:5.904000px;}
.ws47{word-spacing:6.435000px;}
.ws44{word-spacing:7.290000px;}
.ws14{word-spacing:9.264000px;}
.ws15{word-spacing:9.792000px;}
.ws1e{word-spacing:11.280000px;}
.ws13{word-spacing:13.776000px;}
.ws2e{word-spacing:41.352041px;}
.ws30{word-spacing:41.381726px;}
.ws32{word-spacing:63.170957px;}
.ws11{word-spacing:65.922970px;}
.ws39{word-spacing:78.979295px;}
.ws3a{word-spacing:131.091107px;}
.ws27{word-spacing:152.850373px;}
.ws28{word-spacing:152.944638px;}
.ws2b{word-spacing:264.177102px;}
.wsf{word-spacing:2588.157000px;}
._1a{margin-left:-166.000313px;}
._1d{margin-left:-126.435216px;}
._17{margin-left:-95.770829px;}
._1b{margin-left:-49.664009px;}
._4{margin-left:-26.244000px;}
._d{margin-left:-13.824000px;}
._14{margin-left:-12.784800px;}
._13{margin-left:-11.442000px;}
._5{margin-left:-8.685000px;}
._19{margin-left:-7.230000px;}
._6{margin-left:-5.217000px;}
._7{margin-left:-3.310800px;}
._3{margin-left:-2.190000px;}
._0{margin-left:-1.050000px;}
._e{width:1.112400px;}
._a{width:2.446200px;}
._8{width:4.136400px;}
._f{width:5.680800px;}
._10{width:6.723000px;}
._c{width:7.884000px;}
._2{width:9.450000px;}
._b{width:11.194200px;}
._18{width:12.361200px;}
._15{width:14.132400px;}
._1c{width:15.381000px;}
._9{width:16.399800px;}
._12{width:18.547200px;}
._11{width:19.653000px;}
._16{width:21.110400px;}
._1e{width:102.685898px;}
._1f{width:221.048055px;}
._1{width:1174.950000px;}
.fc2{color:rgb(0,205,0);}
.fc3{color:rgb(169,169,169);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:24.000000px;}
.fs7{font-size:29.400000px;}
.fs11{font-size:29.685600px;}
.fs16{font-size:30.663000px;}
.fsd{font-size:33.600000px;}
.fs13{font-size:34.633200px;}
.fs9{font-size:37.800000px;}
.fs12{font-size:39.580800px;}
.fs0{font-size:42.000000px;}
.fs15{font-size:42.714600px;}
.fs17{font-size:45.000000px;}
.fsf{font-size:47.132400px;}
.fsa{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs14{font-size:52.963800px;}
.fsc{font-size:53.683200px;}
.fs10{font-size:53.866200px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:57.540000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fsb{font-size:78.120000px;}
.fs2{font-size:78.540000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1b6{bottom:0.066450px;}
.y161{bottom:1.476000px;}
.y19c{bottom:1.577400px;}
.y1a0{bottom:1.577550px;}
.y1a3{bottom:1.578900px;}
.y1ac{bottom:1.583100px;}
.y16c{bottom:3.045300px;}
.y173{bottom:3.045450px;}
.y1ed{bottom:3.213000px;}
.y227{bottom:4.299450px;}
.y1dd{bottom:4.372650px;}
.y198{bottom:5.968950px;}
.y19e{bottom:5.969100px;}
.y1a2{bottom:5.970450px;}
.y1a5{bottom:5.970600px;}
.y160{bottom:6.345450px;}
.y1a9{bottom:8.670750px;}
.y1b8{bottom:10.623900px;}
.y19b{bottom:10.775400px;}
.y19f{bottom:10.775550px;}
.y1a8{bottom:10.777200px;}
.y1b2{bottom:13.620600px;}
.y1ee{bottom:16.140300px;}
.y1f8{bottom:16.141050px;}
.y1ae{bottom:20.915550px;}
.y1b5{bottom:24.569400px;}
.y1{bottom:40.619700px;}
.y2{bottom:43.139700px;}
.y1ff{bottom:49.694550px;}
.yd{bottom:63.862650px;}
.y228{bottom:72.939600px;}
.y1ea{bottom:76.414500px;}
.y164{bottom:76.444950px;}
.y123{bottom:76.453650px;}
.y215{bottom:77.242800px;}
.yc{bottom:78.867150px;}
.y196{bottom:79.295100px;}
.yad{bottom:86.191500px;}
.y79{bottom:86.263500px;}
.y1de{bottom:87.396150px;}
.y27b{bottom:92.194950px;}
.y1e9{bottom:92.914500px;}
.yb{bottom:93.871650px;}
.y163{bottom:95.944950px;}
.y122{bottom:95.953650px;}
.yee{bottom:96.004800px;}
.y214{bottom:96.742800px;}
.ybd{bottom:98.385000px;}
.y195{bottom:98.795100px;}
.y2bb{bottom:98.807400px;}
.yac{bottom:105.691500px;}
.y78{bottom:105.763500px;}
.y27a{bottom:107.944950px;}
.y1e8{bottom:109.414500px;}
.y2ba{bottom:114.557400px;}
.y162{bottom:115.444950px;}
.y121{bottom:115.453650px;}
.yed{bottom:115.504800px;}
.y21a{bottom:116.242800px;}
.ybc{bottom:117.885000px;}
.y194{bottom:118.295100px;}
.y279{bottom:123.694950px;}
.yab{bottom:125.191500px;}
.y24e{bottom:125.200950px;}
.y77{bottom:125.263500px;}
.y1e7{bottom:125.914500px;}
.y213{bottom:125.992800px;}
.y15f{bottom:128.599500px;}
.y2b9{bottom:130.307400px;}
.y15e{bottom:134.944950px;}
.y120{bottom:134.953650px;}
.yec{bottom:135.004800px;}
.y219{bottom:135.742800px;}
.ybb{bottom:137.385000px;}
.y193{bottom:137.795100px;}
.y278{bottom:139.444950px;}
.y1e6{bottom:142.414500px;}
.yaa{bottom:144.691500px;}
.y76{bottom:144.763500px;}
.y2b8{bottom:146.057400px;}
.y1f4{bottom:148.219350px;}
.y197{bottom:154.296000px;}
.y11f{bottom:154.453650px;}
.yeb{bottom:154.504800px;}
.y277{bottom:155.194950px;}
.y218{bottom:155.242800px;}
.yba{bottom:156.885000px;}
.y199{bottom:157.268400px;}
.y192{bottom:157.295100px;}
.y19a{bottom:160.264950px;}
.y19d{bottom:160.265100px;}
.y2b7{bottom:161.807400px;}
.ya9{bottom:164.191500px;}
.y75{bottom:164.263500px;}
.y1ec{bottom:169.324500px;}
.y276{bottom:170.944950px;}
.y24d{bottom:173.944950px;}
.y11e{bottom:173.953650px;}
.yea{bottom:174.004800px;}
.y212{bottom:174.742800px;}
.yb9{bottom:176.385000px;}
.y191{bottom:176.795100px;}
.y2b6{bottom:177.557400px;}
.y15d{bottom:181.444950px;}
.ya8{bottom:183.691500px;}
.y74{bottom:183.763500px;}
.y43{bottom:186.624900px;}
.y275{bottom:186.694950px;}
.y1f0{bottom:188.546100px;}
.y2b5{bottom:193.307400px;}
.y24c{bottom:193.444950px;}
.y11d{bottom:193.453650px;}
.ye9{bottom:193.504800px;}
.y211{bottom:194.242800px;}
.yb8{bottom:195.885000px;}
.y190{bottom:196.295100px;}
.y15c{bottom:200.944950px;}
.y274{bottom:202.444950px;}
.ya7{bottom:203.191500px;}
.y73{bottom:203.263500px;}
.y1fb{bottom:204.036505px;}
.y1f6{bottom:204.475195px;}
.y42{bottom:206.124900px;}
.y1eb{bottom:207.054900px;}
.y1fc{bottom:207.055650px;}
.y1f7{bottom:207.056550px;}
.y2b4{bottom:209.057400px;}
.y204{bottom:210.516458px;}
.y24b{bottom:212.944950px;}
.y11c{bottom:212.953650px;}
.ye8{bottom:213.004800px;}
.y1fe{bottom:213.423853px;}
.y210{bottom:213.742800px;}
.yb7{bottom:215.385000px;}
.y18f{bottom:215.795100px;}
.y273{bottom:218.194950px;}
.y202{bottom:219.655505px;}
.y15b{bottom:220.444950px;}
.ya6{bottom:222.691500px;}
.y72{bottom:222.763500px;}
.y217{bottom:223.492800px;}
.y2b3{bottom:224.807400px;}
.y41{bottom:225.624900px;}
.y22c{bottom:229.023450px;}
.y24a{bottom:232.444950px;}
.y11b{bottom:232.453650px;}
.ye7{bottom:232.504800px;}
.y20f{bottom:233.242800px;}
.y272{bottom:233.944950px;}
.yb6{bottom:234.885000px;}
.y18e{bottom:235.295100px;}
.y15a{bottom:239.944950px;}
.y2b2{bottom:240.557400px;}
.ya5{bottom:242.191500px;}
.y71{bottom:242.263500px;}
.y216{bottom:242.992800px;}
.y271{bottom:249.694950px;}
.y249{bottom:251.944950px;}
.y12f{bottom:251.953650px;}
.ye6{bottom:252.004800px;}
.y20e{bottom:252.742800px;}
.y1f5{bottom:253.322850px;}
.yb5{bottom:254.385000px;}
.y18d{bottom:254.795100px;}
.y2b1{bottom:256.307400px;}
.y1fa{bottom:257.181150px;}
.y159{bottom:259.444950px;}
.y40{bottom:261.520650px;}
.ya4{bottom:261.691500px;}
.y11a{bottom:261.703650px;}
.y70{bottom:261.763500px;}
.y239{bottom:264.639000px;}
.y270{bottom:265.444950px;}
.y248{bottom:271.444950px;}
.y12e{bottom:271.453650px;}
.ye5{bottom:271.504800px;}
.y2b0{bottom:272.057400px;}
.y20d{bottom:272.242800px;}
.y1f3{bottom:272.262065px;}
.yb4{bottom:273.885000px;}
.y18c{bottom:274.295100px;}
.y158{bottom:278.944950px;}
.ya3{bottom:281.191500px;}
.y26f{bottom:281.194950px;}
.y6f{bottom:281.263500px;}
.y200{bottom:282.270300px;}
.y1f2{bottom:282.842507px;}
.y3f{bottom:284.025150px;}
.y2af{bottom:287.807400px;}
.y247{bottom:290.944950px;}
.y12d{bottom:290.953650px;}
.ye4{bottom:291.004800px;}
.y20c{bottom:291.742800px;}
.yb3{bottom:293.385000px;}
.y1f1{bottom:293.422950px;}
.y18b{bottom:293.795100px;}
.y203{bottom:296.033250px;}
.y26e{bottom:296.944950px;}
.y201{bottom:297.127500px;}
.y1fd{bottom:297.745800px;}
.y157{bottom:298.444950px;}
.ya2{bottom:300.691500px;}
.y6e{bottom:300.763500px;}
.y2ae{bottom:303.557400px;}
.y3e{bottom:306.529650px;}
.y246{bottom:310.444950px;}
.y119{bottom:310.453650px;}
.ye3{bottom:310.504800px;}
.y20b{bottom:311.242800px;}
.y26d{bottom:312.694950px;}
.yb2{bottom:312.885000px;}
.y18a{bottom:313.295100px;}
.y1ef{bottom:315.267450px;}
.y1f9{bottom:315.268050px;}
.y156{bottom:317.944950px;}
.y2ad{bottom:319.307400px;}
.ya1{bottom:320.191500px;}
.y6d{bottom:320.263500px;}
.y26c{bottom:328.444950px;}
.y3d{bottom:329.034150px;}
.y245{bottom:329.944950px;}
.y118{bottom:329.953650px;}
.ye2{bottom:330.004800px;}
.y20a{bottom:330.742800px;}
.y189{bottom:332.795100px;}
.y2ac{bottom:335.057400px;}
.y155{bottom:337.444950px;}
.ya0{bottom:339.691500px;}
.y6c{bottom:339.763500px;}
.yb1{bottom:342.135000px;}
.y26b{bottom:344.194950px;}
.y244{bottom:349.444950px;}
.y117{bottom:349.453650px;}
.ye1{bottom:349.504800px;}
.y209{bottom:350.242800px;}
.y2ab{bottom:350.807400px;}
.y3c{bottom:351.538650px;}
.y188{bottom:352.295100px;}
.y154{bottom:356.944950px;}
.y9f{bottom:359.191500px;}
.y12c{bottom:359.203650px;}
.y6b{bottom:359.263500px;}
.y26a{bottom:359.944950px;}
.y2aa{bottom:366.557400px;}
.y243{bottom:368.944950px;}
.y116{bottom:368.953650px;}
.ye0{bottom:369.004800px;}
.y208{bottom:369.742800px;}
.y1c5{bottom:369.858300px;}
.y187{bottom:371.795100px;}
.y3b{bottom:374.043150px;}
.y269{bottom:375.694950px;}
.y153{bottom:376.444950px;}
.y9e{bottom:378.691500px;}
.y6a{bottom:378.763500px;}
.yb0{bottom:381.135000px;}
.y2a9{bottom:382.307400px;}
.y242{bottom:388.444950px;}
.y115{bottom:388.453650px;}
.ydf{bottom:388.504800px;}
.y207{bottom:389.242800px;}
.y1c4{bottom:389.358300px;}
.y186{bottom:391.295100px;}
.y268{bottom:391.444950px;}
.y152{bottom:395.944950px;}
.y3a{bottom:396.547650px;}
.y2a8{bottom:398.057400px;}
.y9d{bottom:398.191500px;}
.y69{bottom:398.263500px;}
.y267{bottom:407.194950px;}
.y241{bottom:407.944950px;}
.y114{bottom:407.953650px;}
.yde{bottom:408.004800px;}
.y206{bottom:408.742800px;}
.y1c3{bottom:408.858300px;}
.y185{bottom:410.795100px;}
.y2a7{bottom:413.807400px;}
.y151{bottom:415.444950px;}
.y9c{bottom:417.691500px;}
.y68{bottom:417.763500px;}
.y26{bottom:418.950150px;}
.y39{bottom:419.052150px;}
.y266{bottom:422.944950px;}
.y240{bottom:427.444950px;}
.y113{bottom:427.453650px;}
.ydd{bottom:427.504800px;}
.y205{bottom:428.242800px;}
.y1c2{bottom:428.358300px;}
.y2a6{bottom:429.557400px;}
.y184{bottom:430.295100px;}
.y25{bottom:433.954650px;}
.y150{bottom:434.944950px;}
.y9b{bottom:437.191500px;}
.y67{bottom:437.263500px;}
.y265{bottom:438.694950px;}
.y38{bottom:441.556650px;}
.yf1{bottom:443.984850px;}
.y2a5{bottom:445.307400px;}
.y23f{bottom:446.944950px;}
.y12b{bottom:446.953650px;}
.ydc{bottom:447.004800px;}
.y1c1{bottom:447.858300px;}
.y24{bottom:448.959150px;}
.y183{bottom:449.795100px;}
.y14f{bottom:454.444950px;}
.y9a{bottom:456.691500px;}
.y112{bottom:456.703650px;}
.y66{bottom:456.763500px;}
.yf0{bottom:460.484850px;}
.y2a4{bottom:461.057400px;}
.y37{bottom:464.061150px;}
.y23e{bottom:466.444950px;}
.y12a{bottom:466.453650px;}
.ydb{bottom:466.504800px;}
.y1c0{bottom:467.358300px;}
.y264{bottom:470.194950px;}
.y14e{bottom:473.944950px;}
.y99{bottom:476.191500px;}
.y65{bottom:476.263500px;}
.y2a3{bottom:476.807400px;}
.yef{bottom:476.984850px;}
.y23{bottom:478.957650px;}
.y182{bottom:479.045100px;}
.y233{bottom:482.902650px;}
.y23d{bottom:485.944950px;}
.y129{bottom:485.953650px;}
.yda{bottom:486.004800px;}
.y36{bottom:486.565650px;}
.y1bf{bottom:486.858300px;}
.y2a2{bottom:492.557400px;}
.y22{bottom:493.962150px;}
.y98{bottom:495.691500px;}
.y64{bottom:495.763500px;}
.y181{bottom:498.545100px;}
.y232{bottom:499.402650px;}
.y263{bottom:501.694950px;}
.y14d{bottom:503.194950px;}
.y23c{bottom:505.444950px;}
.y111{bottom:505.453650px;}
.yd9{bottom:505.504800px;}
.y1be{bottom:506.358300px;}
.y2a1{bottom:508.307400px;}
.y21{bottom:508.966650px;}
.y35{bottom:509.070150px;}
.yf4{bottom:513.206351px;}
.y97{bottom:515.191500px;}
.y63{bottom:515.263500px;}
.y231{bottom:515.902650px;}
.y262{bottom:517.444950px;}
.y14c{bottom:522.694950px;}
.y20{bottom:523.971150px;}
.y2a0{bottom:524.057400px;}
.y23b{bottom:524.944950px;}
.y110{bottom:524.953650px;}
.yd8{bottom:525.004800px;}
.y1bd{bottom:525.858300px;}
.yf3{bottom:528.626850px;}
.y34{bottom:531.574650px;}
.y261{bottom:533.194950px;}
.y96{bottom:534.691500px;}
.y62{bottom:534.763500px;}
.y180{bottom:538.295100px;}
.y1f{bottom:538.975650px;}
.y29f{bottom:539.807400px;}
.y238{bottom:542.812500px;}
.y23a{bottom:544.444950px;}
.y10f{bottom:544.453650px;}
.yd7{bottom:544.504800px;}
.y1bc{bottom:545.358300px;}
.y260{bottom:548.944950px;}
.y33{bottom:554.079150px;}
.y95{bottom:554.191500px;}
.y1d2{bottom:554.203650px;}
.y61{bottom:554.263500px;}
.y29e{bottom:555.557400px;}
.y17f{bottom:557.795100px;}
.y14b{bottom:563.944950px;}
.y10e{bottom:563.953650px;}
.yd6{bottom:564.004800px;}
.y25f{bottom:564.694950px;}
.y1bb{bottom:564.858300px;}
.y1e{bottom:568.974150px;}
.y29d{bottom:571.307400px;}
.y94{bottom:573.691500px;}
.y1d1{bottom:573.703650px;}
.y60{bottom:573.763500px;}
.y32{bottom:576.583650px;}
.y17e{bottom:577.295100px;}
.y25e{bottom:580.444950px;}
.y14a{bottom:583.444950px;}
.y10d{bottom:583.453650px;}
.y1d{bottom:583.978650px;}
.y1ba{bottom:584.358300px;}
.y29c{bottom:587.057400px;}
.y93{bottom:593.191500px;}
.yd5{bottom:593.254800px;}
.y5f{bottom:593.263500px;}
.y25d{bottom:596.194950px;}
.y17d{bottom:596.795100px;}
.y31{bottom:599.088150px;}
.y29b{bottom:602.807400px;}
.y149{bottom:602.944950px;}
.y10c{bottom:602.953650px;}
.y1c{bottom:603.708150px;}
.y1b9{bottom:603.858300px;}
.y25c{bottom:611.944950px;}
.y92{bottom:612.691500px;}
.y1d0{bottom:612.703650px;}
.y5e{bottom:612.763500px;}
.y17c{bottom:616.295100px;}
.y29a{bottom:618.557400px;}
.y1b{bottom:619.228650px;}
.y30{bottom:621.592650px;}
.y148{bottom:622.444950px;}
.y10b{bottom:622.453650px;}
.y25b{bottom:627.694950px;}
.y91{bottom:632.191500px;}
.y5d{bottom:632.263500px;}
.y299{bottom:634.307400px;}
.y17b{bottom:635.795100px;}
.y1a{bottom:638.958150px;}
.y147{bottom:641.944950px;}
.y10a{bottom:641.953650px;}
.yd4{bottom:642.004800px;}
.y25a{bottom:643.444950px;}
.y2f{bottom:644.097150px;}
.y1da{bottom:646.518150px;}
.y298{bottom:650.057400px;}
.y90{bottom:651.691500px;}
.y5c{bottom:651.763500px;}
.y19{bottom:654.478650px;}
.y17a{bottom:655.295100px;}
.y259{bottom:659.194950px;}
.y146{bottom:661.444950px;}
.y128{bottom:661.453650px;}
.yd3{bottom:661.504800px;}
.y1d9{bottom:663.018150px;}
.y297{bottom:665.807400px;}
.y2e{bottom:666.601650px;}
.y8f{bottom:671.191500px;}
.y109{bottom:671.203650px;}
.y5b{bottom:671.263500px;}
.y18{bottom:674.208150px;}
.y179{bottom:674.795100px;}
.y1d8{bottom:679.518150px;}
.y145{bottom:680.944950px;}
.y127{bottom:680.953650px;}
.yd2{bottom:681.004800px;}
.y296{bottom:681.557400px;}
.y258{bottom:684.700950px;}
.y2d{bottom:689.106150px;}
.y17{bottom:689.724150px;}
.y8e{bottom:690.691500px;}
.y108{bottom:690.703650px;}
.y5a{bottom:690.763500px;}
.y178{bottom:694.295100px;}
.y1d7{bottom:696.018150px;}
.y295{bottom:697.307400px;}
.y144{bottom:700.444950px;}
.y126{bottom:700.453650px;}
.yd1{bottom:700.504800px;}
.y16{bottom:704.728650px;}
.y8d{bottom:710.191500px;}
.y59{bottom:710.263500px;}
.y2c{bottom:711.592650px;}
.y1d6{bottom:712.518150px;}
.y294{bottom:713.057400px;}
.y177{bottom:713.795100px;}
.y236{bottom:713.867007px;}
.y143{bottom:719.944950px;}
.y125{bottom:719.953650px;}
.yd0{bottom:720.004800px;}
.y15{bottom:724.458150px;}
.y293{bottom:728.807400px;}
.y1d5{bottom:729.018150px;}
.y8c{bottom:729.691500px;}
.y58{bottom:729.763500px;}
.y176{bottom:733.295100px;}
.y257{bottom:733.444950px;}
.y2b{bottom:734.097150px;}
.y142{bottom:739.444950px;}
.y107{bottom:739.453650px;}
.ycf{bottom:739.504800px;}
.y14{bottom:739.969650px;}
.y292{bottom:744.557400px;}
.y1d4{bottom:745.518150px;}
.y8b{bottom:749.191500px;}
.y124{bottom:749.203650px;}
.y57{bottom:749.263500px;}
.y235{bottom:750.846585px;}
.y175{bottom:752.795100px;}
.y256{bottom:752.944950px;}
.y13{bottom:754.974150px;}
.y2a{bottom:756.601650px;}
.y141{bottom:758.944950px;}
.y106{bottom:758.953650px;}
.yce{bottom:759.004800px;}
.y291{bottom:760.307400px;}
.y1d3{bottom:762.018150px;}
.y8a{bottom:768.691500px;}
.y56{bottom:768.763500px;}
.y172{bottom:769.243500px;}
.y12{bottom:769.978650px;}
.y171{bottom:772.294950px;}
.y174{bottom:772.295100px;}
.y255{bottom:772.444950px;}
.y290{bottom:776.057400px;}
.y140{bottom:778.444950px;}
.y105{bottom:778.453650px;}
.ycd{bottom:778.504800px;}
.y29{bottom:779.106150px;}
.y234{bottom:781.662900px;}
.y89{bottom:788.191500px;}
.y55{bottom:788.263500px;}
.y1dc{bottom:788.928000px;}
.y11{bottom:789.708150px;}
.y237{bottom:791.061110px;}
.y28f{bottom:791.807400px;}
.y254{bottom:791.944950px;}
.y1b1{bottom:792.544500px;}
.y13f{bottom:797.944950px;}
.y104{bottom:797.953650px;}
.ycc{bottom:798.004800px;}
.y28{bottom:801.610650px;}
.y1b4{bottom:803.168550px;}
.y10{bottom:805.224150px;}
.y1b7{bottom:806.164800px;}
.y1b3{bottom:806.165100px;}
.y28e{bottom:807.557400px;}
.y88{bottom:807.691500px;}
.y54{bottom:807.763500px;}
.y253{bottom:811.444950px;}
.y1e0{bottom:814.903650px;}
.y13e{bottom:817.444950px;}
.y103{bottom:817.453650px;}
.ycb{bottom:817.504800px;}
.yf{bottom:820.228650px;}
.y28d{bottom:823.307400px;}
.y27{bottom:824.110650px;}
.y87{bottom:827.191500px;}
.y53{bottom:827.263500px;}
.y252{bottom:830.944950px;}
.y13d{bottom:836.944950px;}
.y102{bottom:836.953650px;}
.yca{bottom:837.004800px;}
.y170{bottom:837.394950px;}
.y1db{bottom:838.410150px;}
.y28c{bottom:839.057400px;}
.ye{bottom:839.958150px;}
.y86{bottom:846.691500px;}
.y52{bottom:846.763500px;}
.y1e5{bottom:847.374051px;}
.y28b{bottom:854.807400px;}
.y13c{bottom:856.444950px;}
.y101{bottom:856.453650px;}
.yc9{bottom:856.504800px;}
.y16f{bottom:856.894950px;}
.y251{bottom:860.200950px;}
.y226{bottom:860.773500px;}
.y225{bottom:860.774100px;}
.y85{bottom:866.191500px;}
.y51{bottom:866.263500px;}
.y28a{bottom:870.557400px;}
.y13b{bottom:875.944950px;}
.y100{bottom:875.953650px;}
.yc8{bottom:876.004800px;}
.y16e{bottom:876.394950px;}
.y224{bottom:877.274100px;}
.ya{bottom:882.685500px;}
.y230{bottom:884.738100px;}
.y84{bottom:885.691500px;}
.y1cf{bottom:885.703650px;}
.y50{bottom:885.763500px;}
.y289{bottom:886.307400px;}
.y223{bottom:893.774100px;}
.y13a{bottom:895.444950px;}
.yff{bottom:895.453650px;}
.yc7{bottom:895.504800px;}
.y16d{bottom:895.894950px;}
.y288{bottom:902.057400px;}
.y83{bottom:905.191500px;}
.y4f{bottom:905.263500px;}
.y22d{bottom:909.638100px;}
.y22e{bottom:909.648779px;}
.y9{bottom:909.685500px;}
.y222{bottom:910.274100px;}
.y250{bottom:911.944950px;}
.y16b{bottom:912.343500px;}
.y139{bottom:914.944950px;}
.yfe{bottom:914.953650px;}
.yc6{bottom:915.004800px;}
.y16a{bottom:915.394950px;}
.y287{bottom:917.807400px;}
.y82{bottom:924.691500px;}
.y4e{bottom:924.763500px;}
.y221{bottom:926.774100px;}
.y286{bottom:933.557400px;}
.y22f{bottom:933.711600px;}
.y138{bottom:934.444950px;}
.yfd{bottom:934.453650px;}
.y1ce{bottom:934.458300px;}
.yc5{bottom:934.504800px;}
.y169{bottom:934.894950px;}
.y24f{bottom:941.200950px;}
.y220{bottom:943.274100px;}
.y81{bottom:944.191500px;}
.y4d{bottom:944.263500px;}
.y285{bottom:949.307400px;}
.y137{bottom:953.944950px;}
.yfc{bottom:953.953650px;}
.y1cd{bottom:953.958300px;}
.yc4{bottom:954.004800px;}
.y168{bottom:954.394950px;}
.y21f{bottom:959.774100px;}
.y80{bottom:963.691500px;}
.y4c{bottom:963.763500px;}
.y284{bottom:965.057400px;}
.y8{bottom:967.506300px;}
.y136{bottom:973.444950px;}
.yfb{bottom:973.453650px;}
.y1cc{bottom:973.458300px;}
.yc3{bottom:973.504800px;}
.y167{bottom:973.894950px;}
.y21e{bottom:976.274100px;}
.y2c0{bottom:978.548550px;}
.y283{bottom:980.807400px;}
.y7f{bottom:983.191500px;}
.y4b{bottom:983.263500px;}
.y21d{bottom:992.774100px;}
.y135{bottom:992.944950px;}
.yfa{bottom:992.953650px;}
.y1cb{bottom:992.958300px;}
.yc2{bottom:993.004800px;}
.y166{bottom:993.394950px;}
.y282{bottom:996.557400px;}
.y2bf{bottom:998.048550px;}
.y7{bottom:1002.012300px;}
.y7e{bottom:1002.691500px;}
.y4a{bottom:1002.763500px;}
.y21c{bottom:1009.274100px;}
.y281{bottom:1012.307400px;}
.y134{bottom:1012.444950px;}
.yf9{bottom:1012.453650px;}
.y1ca{bottom:1012.458300px;}
.yc1{bottom:1012.504800px;}
.y165{bottom:1012.900950px;}
.y2c5{bottom:1021.354800px;}
.y7d{bottom:1022.191500px;}
.y49{bottom:1022.263500px;}
.y21b{bottom:1025.774100px;}
.y2be{bottom:1026.548550px;}
.y280{bottom:1028.057400px;}
.y133{bottom:1031.944950px;}
.yf8{bottom:1031.953650px;}
.y1c9{bottom:1031.958300px;}
.yc0{bottom:1032.004800px;}
.y22b{bottom:1034.584569px;}
.y2c4{bottom:1037.104800px;}
.y1e3{bottom:1039.674243px;}
.y7c{bottom:1041.691500px;}
.y48{bottom:1041.763500px;}
.y1aa{bottom:1042.894500px;}
.y27f{bottom:1043.807400px;}
.y22a{bottom:1048.103739px;}
.y1ad{bottom:1048.865100px;}
.y132{bottom:1051.444950px;}
.yf7{bottom:1051.453650px;}
.y1c8{bottom:1051.458300px;}
.ybf{bottom:1051.504800px;}
.y2c3{bottom:1052.854800px;}
.y1df{bottom:1052.972400px;}
.y1b0{bottom:1053.529950px;}
.y1ab{bottom:1053.671400px;}
.y1e4{bottom:1055.781740px;}
.y6{bottom:1056.012300px;}
.y1e2{bottom:1058.432938px;}
.y27e{bottom:1059.557400px;}
.y7b{bottom:1061.191500px;}
.y1af{bottom:1061.663100px;}
.yf2{bottom:1062.914100px;}
.y229{bottom:1063.128600px;}
.y2c2{bottom:1068.604800px;}
.y131{bottom:1070.944950px;}
.yf6{bottom:1070.953650px;}
.y1c7{bottom:1070.958300px;}
.y2bd{bottom:1075.298550px;}
.y27d{bottom:1075.307400px;}
.y1e1{bottom:1077.179850px;}
.y7a{bottom:1080.691500px;}
.ybe{bottom:1080.754800px;}
.y47{bottom:1080.763500px;}
.y1a1{bottom:1084.144500px;}
.y2c1{bottom:1084.354800px;}
.y1a6{bottom:1087.118550px;}
.y1a4{bottom:1090.115100px;}
.y130{bottom:1090.444950px;}
.yf5{bottom:1090.453650px;}
.y1c6{bottom:1090.458300px;}
.y2bc{bottom:1091.048550px;}
.y27c{bottom:1091.057400px;}
.y1a7{bottom:1092.815250px;}
.y5{bottom:1096.573650px;}
.y4{bottom:1115.319150px;}
.y3{bottom:1118.319150px;}
.yaf{bottom:1126.684950px;}
.y45{bottom:1126.685700px;}
.y46{bottom:1129.263000px;}
.yae{bottom:1129.384950px;}
.y44{bottom:1129.385700px;}
.h2a{height:3.168000px;}
.h19{height:8.551500px;}
.h16{height:14.700000px;}
.h1c{height:15.300000px;}
.h22{height:15.301500px;}
.h27{height:17.688000px;}
.h25{height:18.624000px;}
.h30{height:21.611117px;}
.h34{height:21.640802px;}
.h38{height:22.322664px;}
.h39{height:22.353327px;}
.h8{height:22.799700px;}
.h20{height:22.948800px;}
.h28{height:24.000000px;}
.h26{height:24.763200px;}
.h33{height:25.212970px;}
.h29{height:25.350000px;}
.h18{height:26.073600px;}
.h32{height:28.814822px;}
.h10{height:30.093000px;}
.he{height:30.576000px;}
.h12{height:30.605400px;}
.h37{height:31.096229px;}
.h9{height:32.151000px;}
.h1a{height:32.784000px;}
.h2e{height:34.312387px;}
.h2f{height:34.359520px;}
.h13{height:35.232000px;}
.h1f{height:35.376000px;}
.h2b{height:36.574742px;}
.h3b{height:36.744000px;}
.h1e{height:37.248000px;}
.h2{height:37.338000px;}
.h36{height:38.557646px;}
.h14{height:39.081370px;}
.h2d{height:39.214594px;}
.h5{height:39.771000px;}
.h3c{height:40.005000px;}
.h17{height:40.229400px;}
.h23{height:42.174600px;}
.hd{height:42.672000px;}
.h1b{height:42.672600px;}
.h24{height:43.989600px;}
.h3{height:44.622270px;}
.h1d{height:44.770200px;}
.ha{height:45.930000px;}
.h11{height:46.530000px;}
.h15{height:47.656800px;}
.hb{height:48.006000px;}
.hc{height:53.685900px;}
.h21{height:54.814800px;}
.hf{height:60.191460px;}
.h4{height:60.907770px;}
.h7{height:69.243000px;}
.h6{height:82.674000px;}
.h31{height:158.527500px;}
.h35{height:239.331000px;}
.h3a{height:274.948500px;}
.h2c{height:311.176500px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w4{width:9.390000px;}
.w5{width:9.405000px;}
.w2{width:11.520000px;}
.w3{width:11.850000px;}
.w8{width:90.390000px;}
.w7{width:98.190000px;}
.w9{width:134.550000px;}
.w6{width:162.450000px;}
.wa{width:364.479000px;}
.wc{width:501.732000px;}
.wd{width:755.998500px;}
.wb{width:756.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x71{left:3.398100px;}
.x17{left:4.831050px;}
.x48{left:12.317700px;}
.x42{left:15.212700px;}
.x4c{left:18.368850px;}
.x2b{left:23.781300px;}
.x21{left:27.010050px;}
.x6e{left:39.501900px;}
.x2d{left:41.641950px;}
.x2f{left:63.106500px;}
.xc{left:67.138500px;}
.x1{left:69.732300px;}
.x23{left:73.369500px;}
.x31{left:75.662100px;}
.x47{left:76.958250px;}
.x49{left:79.499700px;}
.x25{left:82.171500px;}
.xd{left:86.746950px;}
.x15{left:89.189700px;}
.x3d{left:90.762600px;}
.x4a{left:94.176000px;}
.x34{left:96.101400px;}
.x3e{left:97.512600px;}
.x2{left:98.564850px;}
.x3{left:101.194950px;}
.x16{left:107.677500px;}
.x43{left:115.218150px;}
.x18{left:119.197350px;}
.x4b{left:120.239850px;}
.x27{left:125.358000px;}
.x12{left:129.863550px;}
.x40{left:131.640450px;}
.x6d{left:140.777250px;}
.x19{left:148.720500px;}
.x29{left:152.358000px;}
.x44{left:154.326600px;}
.x1a{left:160.570500px;}
.x51{left:163.715400px;}
.x1f{left:170.715000px;}
.x20{left:178.798050px;}
.x4d{left:180.332250px;}
.x4e{left:186.291634px;}
.x41{left:189.415050px;}
.x22{left:209.631900px;}
.x4{left:218.626650px;}
.x5{left:221.256750px;}
.x50{left:228.351900px;}
.x74{left:229.509107px;}
.x52{left:230.897400px;}
.x72{left:236.538600px;}
.x73{left:238.094747px;}
.x4f{left:242.656050px;}
.x53{left:245.573550px;}
.x24{left:247.689150px;}
.x26{left:261.607650px;}
.x13{left:267.676650px;}
.x14{left:278.587760px;}
.x70{left:296.995800px;}
.x28{left:307.979850px;}
.x8{left:313.801050px;}
.x58{left:315.113400px;}
.x77{left:316.158600px;}
.x5b{left:321.164400px;}
.x54{left:331.730550px;}
.x55{left:337.689934px;}
.x6f{left:358.653387px;}
.x6{left:362.601450px;}
.x7{left:365.231550px;}
.x45{left:370.841063px;}
.x46{left:378.252632px;}
.x57{left:379.750050px;}
.x59{left:382.295400px;}
.x76{left:385.890107px;}
.x75{left:392.919600px;}
.x56{left:394.052550px;}
.x5a{left:396.971550px;}
.xe{left:458.698950px;}
.x10{left:461.211300px;}
.x60{left:466.511400px;}
.x63{left:472.562550px;}
.xf{left:478.198950px;}
.x7e{left:479.232300px;}
.x11{left:480.711300px;}
.x5c{left:483.128550px;}
.x5d{left:489.087934px;}
.x1b{left:515.380500px;}
.x1c{left:524.769450px;}
.x5f{left:531.146400px;}
.x61{left:533.693400px;}
.x79{left:542.269757px;}
.x5e{left:545.450550px;}
.x62{left:548.367900px;}
.x78{left:550.855397px;}
.x3a{left:576.207000px;}
.x1d{left:584.881500px;}
.x1e{left:594.286050px;}
.x6c{left:596.976300px;}
.x35{left:601.287000px;}
.x36{left:606.466800px;}
.x2a{left:608.286450px;}
.x37{left:615.525450px;}
.x3b{left:616.722450px;}
.x67{left:617.909550px;}
.x69{left:623.960550px;}
.x2c{left:626.471100px;}
.x7d{left:628.920750px;}
.x64{left:634.526400px;}
.x65{left:644.715982px;}
.x2e{left:647.935800px;}
.x3c{left:650.445450px;}
.x30{left:662.691450px;}
.x32{left:678.068250px;}
.x39{left:683.093100px;}
.x3f{left:684.465600px;}
.x38{left:686.184300px;}
.x33{left:687.801750px;}
.x66{left:696.848400px;}
.x7c{left:698.650607px;}
.x68{left:699.767550px;}
.x7a{left:705.680100px;}
.x7b{left:707.236247px;}
.x9{left:767.875500px;}
.x6b{left:784.431349px;}
.x6a{left:785.923050px;}
.xa{left:792.172500px;}
.xb{left:794.421600px;}
@media print{
.v2{vertical-align:-16.800000pt;}
.v5{vertical-align:-14.080000pt;}
.v8{vertical-align:-10.656000pt;}
.vb{vertical-align:-7.637333pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.010982pt;}
.v9{vertical-align:10.654400pt;}
.v6{vertical-align:14.080000pt;}
.v7{vertical-align:15.360533pt;}
.va{vertical-align:17.089600pt;}
.v4{vertical-align:19.200000pt;}
.v3{vertical-align:21.664000pt;}
.v1{vertical-align:28.800533pt;}
.ls2f{letter-spacing:-6.703349pt;}
.ls32{letter-spacing:-4.925611pt;}
.ls34{letter-spacing:-4.890428pt;}
.ls33{letter-spacing:-3.663423pt;}
.ls2d{letter-spacing:-0.768000pt;}
.ls3b{letter-spacing:-0.600000pt;}
.ls9{letter-spacing:-0.298667pt;}
.ls2c{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.002133pt;}
.ls20{letter-spacing:0.004267pt;}
.ls11{letter-spacing:0.004800pt;}
.ls26{letter-spacing:0.006400pt;}
.ls1e{letter-spacing:0.009067pt;}
.ls12{letter-spacing:0.009600pt;}
.ls2b{letter-spacing:0.010133pt;}
.ls1d{letter-spacing:0.011200pt;}
.ls18{letter-spacing:0.013333pt;}
.lse{letter-spacing:0.013867pt;}
.ls14{letter-spacing:0.014400pt;}
.lsd{letter-spacing:0.014933pt;}
.ls21{letter-spacing:0.016533pt;}
.ls10{letter-spacing:0.018133pt;}
.ls17{letter-spacing:0.020800pt;}
.ls15{letter-spacing:0.021867pt;}
.ls1a{letter-spacing:0.028267pt;}
.lsf{letter-spacing:0.035200pt;}
.ls16{letter-spacing:0.046933pt;}
.ls19{letter-spacing:0.060800pt;}
.ls24{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.440000pt;}
.ls35{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.720000pt;}
.ls6{letter-spacing:0.768000pt;}
.ls25{letter-spacing:2.565867pt;}
.ls8{letter-spacing:2.576000pt;}
.ls1f{letter-spacing:2.613867pt;}
.ls27{letter-spacing:2.659733pt;}
.ls2a{letter-spacing:2.665067pt;}
.ls37{letter-spacing:4.266667pt;}
.ls39{letter-spacing:4.693333pt;}
.ls1c{letter-spacing:4.736000pt;}
.ls23{letter-spacing:4.778667pt;}
.ls5{letter-spacing:5.333333pt;}
.ls22{letter-spacing:5.888000pt;}
.ls28{letter-spacing:5.930667pt;}
.lsa{letter-spacing:5.973333pt;}
.ls29{letter-spacing:7.446400pt;}
.ls4{letter-spacing:7.466667pt;}
.ls1b{letter-spacing:8.565867pt;}
.ls1{letter-spacing:9.600000pt;}
.ls31{letter-spacing:44.119398pt;}
.ls30{letter-spacing:44.145786pt;}
.lsb{letter-spacing:85.129626pt;}
.ls36{letter-spacing:112.386859pt;}
.ls2e{letter-spacing:147.555834pt;}
.ls0{letter-spacing:536.446400pt;}
.ws29{word-spacing:-159.202773pt;}
.ws38{word-spacing:-122.942111pt;}
.ws10{word-spacing:-85.177344pt;}
.ws2d{word-spacing:-51.481427pt;}
.ws2f{word-spacing:-51.455040pt;}
.wsa{word-spacing:-18.293333pt;}
.ws1{word-spacing:-15.552000pt;}
.ws3c{word-spacing:-14.634667pt;}
.ws36{word-spacing:-13.087943pt;}
.ws1a{word-spacing:-12.960000pt;}
.ws2c{word-spacing:-11.646940pt;}
.ws21{word-spacing:-10.922667pt;}
.ws37{word-spacing:-10.555252pt;}
.ws42{word-spacing:-10.240000pt;}
.ws1b{word-spacing:-9.984000pt;}
.ws34{word-spacing:-9.780855pt;}
.ws3{word-spacing:-9.557333pt;}
.ws3d{word-spacing:-9.360000pt;}
.ws4{word-spacing:-9.072000pt;}
.ws5{word-spacing:-8.601600pt;}
.ws19{word-spacing:-7.645867pt;}
.ws9{word-spacing:-7.466667pt;}
.ws23{word-spacing:-6.988800pt;}
.ws2{word-spacing:-6.690133pt;}
.ws2a{word-spacing:-6.607587pt;}
.ws18{word-spacing:-5.973333pt;}
.wsb{word-spacing:-5.333333pt;}
.ws33{word-spacing:-4.894826pt;}
.ws35{word-spacing:-4.890428pt;}
.ws31{word-spacing:-4.855245pt;}
.ws3f{word-spacing:-4.693333pt;}
.ws3e{word-spacing:-4.266667pt;}
.ws12{word-spacing:-2.576000pt;}
.ws8{word-spacing:-2.256000pt;}
.ws4a{word-spacing:-1.640000pt;}
.wsd{word-spacing:-0.768000pt;}
.ws40{word-spacing:-0.720000pt;}
.ws3b{word-spacing:-0.640000pt;}
.ws43{word-spacing:-0.440000pt;}
.wsc{word-spacing:-0.384000pt;}
.ws48{word-spacing:-0.360000pt;}
.ws1d{word-spacing:-0.128000pt;}
.ws0{word-spacing:-0.044800pt;}
.ws22{word-spacing:-0.042667pt;}
.ws20{word-spacing:-0.029867pt;}
.ws24{word-spacing:-0.021333pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:0.096000pt;}
.ws25{word-spacing:0.128000pt;}
.ws41{word-spacing:0.200000pt;}
.ws17{word-spacing:0.298667pt;}
.ws46{word-spacing:0.360000pt;}
.ws4c{word-spacing:0.600000pt;}
.ws26{word-spacing:0.768000pt;}
.ws1f{word-spacing:2.304000pt;}
.ws4b{word-spacing:2.640000pt;}
.ws49{word-spacing:3.320000pt;}
.ws1c{word-spacing:3.413333pt;}
.ws45{word-spacing:4.480000pt;}
.ws16{word-spacing:5.077333pt;}
.wse{word-spacing:5.248000pt;}
.ws47{word-spacing:5.720000pt;}
.ws44{word-spacing:6.480000pt;}
.ws14{word-spacing:8.234667pt;}
.ws15{word-spacing:8.704000pt;}
.ws1e{word-spacing:10.026667pt;}
.ws13{word-spacing:12.245333pt;}
.ws2e{word-spacing:36.757370pt;}
.ws30{word-spacing:36.783757pt;}
.ws32{word-spacing:56.151962pt;}
.ws11{word-spacing:58.598195pt;}
.ws39{word-spacing:70.203818pt;}
.ws3a{word-spacing:116.525429pt;}
.ws27{word-spacing:135.866998pt;}
.ws28{word-spacing:135.950789pt;}
.ws2b{word-spacing:234.824091pt;}
.wsf{word-spacing:2300.584000pt;}
._1a{margin-left:-147.555834pt;}
._1d{margin-left:-112.386859pt;}
._17{margin-left:-85.129626pt;}
._1b{margin-left:-44.145786pt;}
._4{margin-left:-23.328000pt;}
._d{margin-left:-12.288000pt;}
._14{margin-left:-11.364267pt;}
._13{margin-left:-10.170667pt;}
._5{margin-left:-7.720000pt;}
._19{margin-left:-6.426667pt;}
._6{margin-left:-4.637333pt;}
._7{margin-left:-2.942933pt;}
._3{margin-left:-1.946667pt;}
._0{margin-left:-0.933333pt;}
._e{width:0.988800pt;}
._a{width:2.174400pt;}
._8{width:3.676800pt;}
._f{width:5.049600pt;}
._10{width:5.976000pt;}
._c{width:7.008000pt;}
._2{width:8.400000pt;}
._b{width:9.950400pt;}
._18{width:10.987733pt;}
._15{width:12.562133pt;}
._1c{width:13.672000pt;}
._9{width:14.577600pt;}
._12{width:16.486400pt;}
._11{width:17.469333pt;}
._16{width:18.764800pt;}
._1e{width:91.276354pt;}
._1f{width:196.487160pt;}
._1{width:1044.400000pt;}
.fse{font-size:21.333333pt;}
.fs7{font-size:26.133333pt;}
.fs11{font-size:26.387200pt;}
.fs16{font-size:27.256000pt;}
.fsd{font-size:29.866667pt;}
.fs13{font-size:30.785067pt;}
.fs9{font-size:33.600000pt;}
.fs12{font-size:35.182933pt;}
.fs0{font-size:37.333333pt;}
.fs15{font-size:37.968533pt;}
.fs17{font-size:40.000000pt;}
.fsf{font-size:41.895467pt;}
.fsa{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs14{font-size:47.078933pt;}
.fsc{font-size:47.718400pt;}
.fs10{font-size:47.881067pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:51.146667pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fsb{font-size:69.440000pt;}
.fs2{font-size:69.813333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1b6{bottom:0.059067pt;}
.y161{bottom:1.312000pt;}
.y19c{bottom:1.402133pt;}
.y1a0{bottom:1.402267pt;}
.y1a3{bottom:1.403467pt;}
.y1ac{bottom:1.407200pt;}
.y16c{bottom:2.706933pt;}
.y173{bottom:2.707067pt;}
.y1ed{bottom:2.856000pt;}
.y227{bottom:3.821733pt;}
.y1dd{bottom:3.886800pt;}
.y198{bottom:5.305733pt;}
.y19e{bottom:5.305867pt;}
.y1a2{bottom:5.307067pt;}
.y1a5{bottom:5.307200pt;}
.y160{bottom:5.640400pt;}
.y1a9{bottom:7.707333pt;}
.y1b8{bottom:9.443467pt;}
.y19b{bottom:9.578133pt;}
.y19f{bottom:9.578267pt;}
.y1a8{bottom:9.579733pt;}
.y1b2{bottom:12.107200pt;}
.y1ee{bottom:14.346933pt;}
.y1f8{bottom:14.347600pt;}
.y1ae{bottom:18.591600pt;}
.y1b5{bottom:21.839467pt;}
.y1{bottom:36.106400pt;}
.y2{bottom:38.346400pt;}
.y1ff{bottom:44.172933pt;}
.yd{bottom:56.766800pt;}
.y228{bottom:64.835200pt;}
.y1ea{bottom:67.924000pt;}
.y164{bottom:67.951067pt;}
.y123{bottom:67.958800pt;}
.y215{bottom:68.660267pt;}
.yc{bottom:70.104133pt;}
.y196{bottom:70.484533pt;}
.yad{bottom:76.614667pt;}
.y79{bottom:76.678667pt;}
.y1de{bottom:77.685467pt;}
.y27b{bottom:81.951067pt;}
.y1e9{bottom:82.590667pt;}
.yb{bottom:83.441467pt;}
.y163{bottom:85.284400pt;}
.y122{bottom:85.292133pt;}
.yee{bottom:85.337600pt;}
.y214{bottom:85.993600pt;}
.ybd{bottom:87.453333pt;}
.y195{bottom:87.817867pt;}
.y2bb{bottom:87.828800pt;}
.yac{bottom:93.948000pt;}
.y78{bottom:94.012000pt;}
.y27a{bottom:95.951067pt;}
.y1e8{bottom:97.257333pt;}
.y2ba{bottom:101.828800pt;}
.y162{bottom:102.617733pt;}
.y121{bottom:102.625467pt;}
.yed{bottom:102.670933pt;}
.y21a{bottom:103.326933pt;}
.ybc{bottom:104.786667pt;}
.y194{bottom:105.151200pt;}
.y279{bottom:109.951067pt;}
.yab{bottom:111.281333pt;}
.y24e{bottom:111.289733pt;}
.y77{bottom:111.345333pt;}
.y1e7{bottom:111.924000pt;}
.y213{bottom:111.993600pt;}
.y15f{bottom:114.310667pt;}
.y2b9{bottom:115.828800pt;}
.y15e{bottom:119.951067pt;}
.y120{bottom:119.958800pt;}
.yec{bottom:120.004267pt;}
.y219{bottom:120.660267pt;}
.ybb{bottom:122.120000pt;}
.y193{bottom:122.484533pt;}
.y278{bottom:123.951067pt;}
.y1e6{bottom:126.590667pt;}
.yaa{bottom:128.614667pt;}
.y76{bottom:128.678667pt;}
.y2b8{bottom:129.828800pt;}
.y1f4{bottom:131.750533pt;}
.y197{bottom:137.152000pt;}
.y11f{bottom:137.292133pt;}
.yeb{bottom:137.337600pt;}
.y277{bottom:137.951067pt;}
.y218{bottom:137.993600pt;}
.yba{bottom:139.453333pt;}
.y199{bottom:139.794133pt;}
.y192{bottom:139.817867pt;}
.y19a{bottom:142.457733pt;}
.y19d{bottom:142.457867pt;}
.y2b7{bottom:143.828800pt;}
.ya9{bottom:145.948000pt;}
.y75{bottom:146.012000pt;}
.y1ec{bottom:150.510667pt;}
.y276{bottom:151.951067pt;}
.y24d{bottom:154.617733pt;}
.y11e{bottom:154.625467pt;}
.yea{bottom:154.670933pt;}
.y212{bottom:155.326933pt;}
.yb9{bottom:156.786667pt;}
.y191{bottom:157.151200pt;}
.y2b6{bottom:157.828800pt;}
.y15d{bottom:161.284400pt;}
.ya8{bottom:163.281333pt;}
.y74{bottom:163.345333pt;}
.y43{bottom:165.888800pt;}
.y275{bottom:165.951067pt;}
.y1f0{bottom:167.596533pt;}
.y2b5{bottom:171.828800pt;}
.y24c{bottom:171.951067pt;}
.y11d{bottom:171.958800pt;}
.ye9{bottom:172.004267pt;}
.y211{bottom:172.660267pt;}
.yb8{bottom:174.120000pt;}
.y190{bottom:174.484533pt;}
.y15c{bottom:178.617733pt;}
.y274{bottom:179.951067pt;}
.ya7{bottom:180.614667pt;}
.y73{bottom:180.678667pt;}
.y1fb{bottom:181.365782pt;}
.y1f6{bottom:181.755729pt;}
.y42{bottom:183.222133pt;}
.y1eb{bottom:184.048800pt;}
.y1fc{bottom:184.049467pt;}
.y1f7{bottom:184.050267pt;}
.y2b4{bottom:185.828800pt;}
.y204{bottom:187.125740pt;}
.y24b{bottom:189.284400pt;}
.y11c{bottom:189.292133pt;}
.ye8{bottom:189.337600pt;}
.y1fe{bottom:189.710092pt;}
.y210{bottom:189.993600pt;}
.yb7{bottom:191.453333pt;}
.y18f{bottom:191.817867pt;}
.y273{bottom:193.951067pt;}
.y202{bottom:195.249338pt;}
.y15b{bottom:195.951067pt;}
.ya6{bottom:197.948000pt;}
.y72{bottom:198.012000pt;}
.y217{bottom:198.660267pt;}
.y2b3{bottom:199.828800pt;}
.y41{bottom:200.555467pt;}
.y22c{bottom:203.576400pt;}
.y24a{bottom:206.617733pt;}
.y11b{bottom:206.625467pt;}
.ye7{bottom:206.670933pt;}
.y20f{bottom:207.326933pt;}
.y272{bottom:207.951067pt;}
.yb6{bottom:208.786667pt;}
.y18e{bottom:209.151200pt;}
.y15a{bottom:213.284400pt;}
.y2b2{bottom:213.828800pt;}
.ya5{bottom:215.281333pt;}
.y71{bottom:215.345333pt;}
.y216{bottom:215.993600pt;}
.y271{bottom:221.951067pt;}
.y249{bottom:223.951067pt;}
.y12f{bottom:223.958800pt;}
.ye6{bottom:224.004267pt;}
.y20e{bottom:224.660267pt;}
.y1f5{bottom:225.175867pt;}
.yb5{bottom:226.120000pt;}
.y18d{bottom:226.484533pt;}
.y2b1{bottom:227.828800pt;}
.y1fa{bottom:228.605467pt;}
.y159{bottom:230.617733pt;}
.y40{bottom:232.462800pt;}
.ya4{bottom:232.614667pt;}
.y11a{bottom:232.625467pt;}
.y70{bottom:232.678667pt;}
.y239{bottom:235.234667pt;}
.y270{bottom:235.951067pt;}
.y248{bottom:241.284400pt;}
.y12e{bottom:241.292133pt;}
.ye5{bottom:241.337600pt;}
.y2b0{bottom:241.828800pt;}
.y20d{bottom:241.993600pt;}
.y1f3{bottom:242.010724pt;}
.yb4{bottom:243.453333pt;}
.y18c{bottom:243.817867pt;}
.y158{bottom:247.951067pt;}
.ya3{bottom:249.948000pt;}
.y26f{bottom:249.951067pt;}
.y6f{bottom:250.012000pt;}
.y200{bottom:250.906933pt;}
.y1f2{bottom:251.415562pt;}
.y3f{bottom:252.466800pt;}
.y2af{bottom:255.828800pt;}
.y247{bottom:258.617733pt;}
.y12d{bottom:258.625467pt;}
.ye4{bottom:258.670933pt;}
.y20c{bottom:259.326933pt;}
.yb3{bottom:260.786667pt;}
.y1f1{bottom:260.820400pt;}
.y18b{bottom:261.151200pt;}
.y203{bottom:263.140667pt;}
.y26e{bottom:263.951067pt;}
.y201{bottom:264.113333pt;}
.y1fd{bottom:264.662933pt;}
.y157{bottom:265.284400pt;}
.ya2{bottom:267.281333pt;}
.y6e{bottom:267.345333pt;}
.y2ae{bottom:269.828800pt;}
.y3e{bottom:272.470800pt;}
.y246{bottom:275.951067pt;}
.y119{bottom:275.958800pt;}
.ye3{bottom:276.004267pt;}
.y20b{bottom:276.660267pt;}
.y26d{bottom:277.951067pt;}
.yb2{bottom:278.120000pt;}
.y18a{bottom:278.484533pt;}
.y1ef{bottom:280.237733pt;}
.y1f9{bottom:280.238267pt;}
.y156{bottom:282.617733pt;}
.y2ad{bottom:283.828800pt;}
.ya1{bottom:284.614667pt;}
.y6d{bottom:284.678667pt;}
.y26c{bottom:291.951067pt;}
.y3d{bottom:292.474800pt;}
.y245{bottom:293.284400pt;}
.y118{bottom:293.292133pt;}
.ye2{bottom:293.337600pt;}
.y20a{bottom:293.993600pt;}
.y189{bottom:295.817867pt;}
.y2ac{bottom:297.828800pt;}
.y155{bottom:299.951067pt;}
.ya0{bottom:301.948000pt;}
.y6c{bottom:302.012000pt;}
.yb1{bottom:304.120000pt;}
.y26b{bottom:305.951067pt;}
.y244{bottom:310.617733pt;}
.y117{bottom:310.625467pt;}
.ye1{bottom:310.670933pt;}
.y209{bottom:311.326933pt;}
.y2ab{bottom:311.828800pt;}
.y3c{bottom:312.478800pt;}
.y188{bottom:313.151200pt;}
.y154{bottom:317.284400pt;}
.y9f{bottom:319.281333pt;}
.y12c{bottom:319.292133pt;}
.y6b{bottom:319.345333pt;}
.y26a{bottom:319.951067pt;}
.y2aa{bottom:325.828800pt;}
.y243{bottom:327.951067pt;}
.y116{bottom:327.958800pt;}
.ye0{bottom:328.004267pt;}
.y208{bottom:328.660267pt;}
.y1c5{bottom:328.762933pt;}
.y187{bottom:330.484533pt;}
.y3b{bottom:332.482800pt;}
.y269{bottom:333.951067pt;}
.y153{bottom:334.617733pt;}
.y9e{bottom:336.614667pt;}
.y6a{bottom:336.678667pt;}
.yb0{bottom:338.786667pt;}
.y2a9{bottom:339.828800pt;}
.y242{bottom:345.284400pt;}
.y115{bottom:345.292133pt;}
.ydf{bottom:345.337600pt;}
.y207{bottom:345.993600pt;}
.y1c4{bottom:346.096267pt;}
.y186{bottom:347.817867pt;}
.y268{bottom:347.951067pt;}
.y152{bottom:351.951067pt;}
.y3a{bottom:352.486800pt;}
.y2a8{bottom:353.828800pt;}
.y9d{bottom:353.948000pt;}
.y69{bottom:354.012000pt;}
.y267{bottom:361.951067pt;}
.y241{bottom:362.617733pt;}
.y114{bottom:362.625467pt;}
.yde{bottom:362.670933pt;}
.y206{bottom:363.326933pt;}
.y1c3{bottom:363.429600pt;}
.y185{bottom:365.151200pt;}
.y2a7{bottom:367.828800pt;}
.y151{bottom:369.284400pt;}
.y9c{bottom:371.281333pt;}
.y68{bottom:371.345333pt;}
.y26{bottom:372.400133pt;}
.y39{bottom:372.490800pt;}
.y266{bottom:375.951067pt;}
.y240{bottom:379.951067pt;}
.y113{bottom:379.958800pt;}
.ydd{bottom:380.004267pt;}
.y205{bottom:380.660267pt;}
.y1c2{bottom:380.762933pt;}
.y2a6{bottom:381.828800pt;}
.y184{bottom:382.484533pt;}
.y25{bottom:385.737467pt;}
.y150{bottom:386.617733pt;}
.y9b{bottom:388.614667pt;}
.y67{bottom:388.678667pt;}
.y265{bottom:389.951067pt;}
.y38{bottom:392.494800pt;}
.yf1{bottom:394.653200pt;}
.y2a5{bottom:395.828800pt;}
.y23f{bottom:397.284400pt;}
.y12b{bottom:397.292133pt;}
.ydc{bottom:397.337600pt;}
.y1c1{bottom:398.096267pt;}
.y24{bottom:399.074800pt;}
.y183{bottom:399.817867pt;}
.y14f{bottom:403.951067pt;}
.y9a{bottom:405.948000pt;}
.y112{bottom:405.958800pt;}
.y66{bottom:406.012000pt;}
.yf0{bottom:409.319867pt;}
.y2a4{bottom:409.828800pt;}
.y37{bottom:412.498800pt;}
.y23e{bottom:414.617733pt;}
.y12a{bottom:414.625467pt;}
.ydb{bottom:414.670933pt;}
.y1c0{bottom:415.429600pt;}
.y264{bottom:417.951067pt;}
.y14e{bottom:421.284400pt;}
.y99{bottom:423.281333pt;}
.y65{bottom:423.345333pt;}
.y2a3{bottom:423.828800pt;}
.yef{bottom:423.986533pt;}
.y23{bottom:425.740133pt;}
.y182{bottom:425.817867pt;}
.y233{bottom:429.246800pt;}
.y23d{bottom:431.951067pt;}
.y129{bottom:431.958800pt;}
.yda{bottom:432.004267pt;}
.y36{bottom:432.502800pt;}
.y1bf{bottom:432.762933pt;}
.y2a2{bottom:437.828800pt;}
.y22{bottom:439.077467pt;}
.y98{bottom:440.614667pt;}
.y64{bottom:440.678667pt;}
.y181{bottom:443.151200pt;}
.y232{bottom:443.913467pt;}
.y263{bottom:445.951067pt;}
.y14d{bottom:447.284400pt;}
.y23c{bottom:449.284400pt;}
.y111{bottom:449.292133pt;}
.yd9{bottom:449.337600pt;}
.y1be{bottom:450.096267pt;}
.y2a1{bottom:451.828800pt;}
.y21{bottom:452.414800pt;}
.y35{bottom:452.506800pt;}
.yf4{bottom:456.183423pt;}
.y97{bottom:457.948000pt;}
.y63{bottom:458.012000pt;}
.y231{bottom:458.580133pt;}
.y262{bottom:459.951067pt;}
.y14c{bottom:464.617733pt;}
.y20{bottom:465.752133pt;}
.y2a0{bottom:465.828800pt;}
.y23b{bottom:466.617733pt;}
.y110{bottom:466.625467pt;}
.yd8{bottom:466.670933pt;}
.y1bd{bottom:467.429600pt;}
.yf3{bottom:469.890533pt;}
.y34{bottom:472.510800pt;}
.y261{bottom:473.951067pt;}
.y96{bottom:475.281333pt;}
.y62{bottom:475.345333pt;}
.y180{bottom:478.484533pt;}
.y1f{bottom:479.089467pt;}
.y29f{bottom:479.828800pt;}
.y238{bottom:482.500000pt;}
.y23a{bottom:483.951067pt;}
.y10f{bottom:483.958800pt;}
.yd7{bottom:484.004267pt;}
.y1bc{bottom:484.762933pt;}
.y260{bottom:487.951067pt;}
.y33{bottom:492.514800pt;}
.y95{bottom:492.614667pt;}
.y1d2{bottom:492.625467pt;}
.y61{bottom:492.678667pt;}
.y29e{bottom:493.828800pt;}
.y17f{bottom:495.817867pt;}
.y14b{bottom:501.284400pt;}
.y10e{bottom:501.292133pt;}
.yd6{bottom:501.337600pt;}
.y25f{bottom:501.951067pt;}
.y1bb{bottom:502.096267pt;}
.y1e{bottom:505.754800pt;}
.y29d{bottom:507.828800pt;}
.y94{bottom:509.948000pt;}
.y1d1{bottom:509.958800pt;}
.y60{bottom:510.012000pt;}
.y32{bottom:512.518800pt;}
.y17e{bottom:513.151200pt;}
.y25e{bottom:515.951067pt;}
.y14a{bottom:518.617733pt;}
.y10d{bottom:518.625467pt;}
.y1d{bottom:519.092133pt;}
.y1ba{bottom:519.429600pt;}
.y29c{bottom:521.828800pt;}
.y93{bottom:527.281333pt;}
.yd5{bottom:527.337600pt;}
.y5f{bottom:527.345333pt;}
.y25d{bottom:529.951067pt;}
.y17d{bottom:530.484533pt;}
.y31{bottom:532.522800pt;}
.y29b{bottom:535.828800pt;}
.y149{bottom:535.951067pt;}
.y10c{bottom:535.958800pt;}
.y1c{bottom:536.629467pt;}
.y1b9{bottom:536.762933pt;}
.y25c{bottom:543.951067pt;}
.y92{bottom:544.614667pt;}
.y1d0{bottom:544.625467pt;}
.y5e{bottom:544.678667pt;}
.y17c{bottom:547.817867pt;}
.y29a{bottom:549.828800pt;}
.y1b{bottom:550.425467pt;}
.y30{bottom:552.526800pt;}
.y148{bottom:553.284400pt;}
.y10b{bottom:553.292133pt;}
.y25b{bottom:557.951067pt;}
.y91{bottom:561.948000pt;}
.y5d{bottom:562.012000pt;}
.y299{bottom:563.828800pt;}
.y17b{bottom:565.151200pt;}
.y1a{bottom:567.962800pt;}
.y147{bottom:570.617733pt;}
.y10a{bottom:570.625467pt;}
.yd4{bottom:570.670933pt;}
.y25a{bottom:571.951067pt;}
.y2f{bottom:572.530800pt;}
.y1da{bottom:574.682800pt;}
.y298{bottom:577.828800pt;}
.y90{bottom:579.281333pt;}
.y5c{bottom:579.345333pt;}
.y19{bottom:581.758800pt;}
.y17a{bottom:582.484533pt;}
.y259{bottom:585.951067pt;}
.y146{bottom:587.951067pt;}
.y128{bottom:587.958800pt;}
.yd3{bottom:588.004267pt;}
.y1d9{bottom:589.349467pt;}
.y297{bottom:591.828800pt;}
.y2e{bottom:592.534800pt;}
.y8f{bottom:596.614667pt;}
.y109{bottom:596.625467pt;}
.y5b{bottom:596.678667pt;}
.y18{bottom:599.296133pt;}
.y179{bottom:599.817867pt;}
.y1d8{bottom:604.016133pt;}
.y145{bottom:605.284400pt;}
.y127{bottom:605.292133pt;}
.yd2{bottom:605.337600pt;}
.y296{bottom:605.828800pt;}
.y258{bottom:608.623067pt;}
.y2d{bottom:612.538800pt;}
.y17{bottom:613.088133pt;}
.y8e{bottom:613.948000pt;}
.y108{bottom:613.958800pt;}
.y5a{bottom:614.012000pt;}
.y178{bottom:617.151200pt;}
.y1d7{bottom:618.682800pt;}
.y295{bottom:619.828800pt;}
.y144{bottom:622.617733pt;}
.y126{bottom:622.625467pt;}
.yd1{bottom:622.670933pt;}
.y16{bottom:626.425467pt;}
.y8d{bottom:631.281333pt;}
.y59{bottom:631.345333pt;}
.y2c{bottom:632.526800pt;}
.y1d6{bottom:633.349467pt;}
.y294{bottom:633.828800pt;}
.y177{bottom:634.484533pt;}
.y236{bottom:634.548451pt;}
.y143{bottom:639.951067pt;}
.y125{bottom:639.958800pt;}
.yd0{bottom:640.004267pt;}
.y15{bottom:643.962800pt;}
.y293{bottom:647.828800pt;}
.y1d5{bottom:648.016133pt;}
.y8c{bottom:648.614667pt;}
.y58{bottom:648.678667pt;}
.y176{bottom:651.817867pt;}
.y257{bottom:651.951067pt;}
.y2b{bottom:652.530800pt;}
.y142{bottom:657.284400pt;}
.y107{bottom:657.292133pt;}
.ycf{bottom:657.337600pt;}
.y14{bottom:657.750800pt;}
.y292{bottom:661.828800pt;}
.y1d4{bottom:662.682800pt;}
.y8b{bottom:665.948000pt;}
.y124{bottom:665.958800pt;}
.y57{bottom:666.012000pt;}
.y235{bottom:667.419187pt;}
.y175{bottom:669.151200pt;}
.y256{bottom:669.284400pt;}
.y13{bottom:671.088133pt;}
.y2a{bottom:672.534800pt;}
.y141{bottom:674.617733pt;}
.y106{bottom:674.625467pt;}
.yce{bottom:674.670933pt;}
.y291{bottom:675.828800pt;}
.y1d3{bottom:677.349467pt;}
.y8a{bottom:683.281333pt;}
.y56{bottom:683.345333pt;}
.y172{bottom:683.772000pt;}
.y12{bottom:684.425467pt;}
.y171{bottom:686.484400pt;}
.y174{bottom:686.484533pt;}
.y255{bottom:686.617733pt;}
.y290{bottom:689.828800pt;}
.y140{bottom:691.951067pt;}
.y105{bottom:691.958800pt;}
.ycd{bottom:692.004267pt;}
.y29{bottom:692.538800pt;}
.y234{bottom:694.811467pt;}
.y89{bottom:700.614667pt;}
.y55{bottom:700.678667pt;}
.y1dc{bottom:701.269333pt;}
.y11{bottom:701.962800pt;}
.y237{bottom:703.165431pt;}
.y28f{bottom:703.828800pt;}
.y254{bottom:703.951067pt;}
.y1b1{bottom:704.484000pt;}
.y13f{bottom:709.284400pt;}
.y104{bottom:709.292133pt;}
.ycc{bottom:709.337600pt;}
.y28{bottom:712.542800pt;}
.y1b4{bottom:713.927600pt;}
.y10{bottom:715.754800pt;}
.y1b7{bottom:716.590933pt;}
.y1b3{bottom:716.591200pt;}
.y28e{bottom:717.828800pt;}
.y88{bottom:717.948000pt;}
.y54{bottom:718.012000pt;}
.y253{bottom:721.284400pt;}
.y1e0{bottom:724.358800pt;}
.y13e{bottom:726.617733pt;}
.y103{bottom:726.625467pt;}
.ycb{bottom:726.670933pt;}
.yf{bottom:729.092133pt;}
.y28d{bottom:731.828800pt;}
.y27{bottom:732.542800pt;}
.y87{bottom:735.281333pt;}
.y53{bottom:735.345333pt;}
.y252{bottom:738.617733pt;}
.y13d{bottom:743.951067pt;}
.y102{bottom:743.958800pt;}
.yca{bottom:744.004267pt;}
.y170{bottom:744.351067pt;}
.y1db{bottom:745.253467pt;}
.y28c{bottom:745.828800pt;}
.ye{bottom:746.629467pt;}
.y86{bottom:752.614667pt;}
.y52{bottom:752.678667pt;}
.y1e5{bottom:753.221378pt;}
.y28b{bottom:759.828800pt;}
.y13c{bottom:761.284400pt;}
.y101{bottom:761.292133pt;}
.yc9{bottom:761.337600pt;}
.y16f{bottom:761.684400pt;}
.y251{bottom:764.623067pt;}
.y226{bottom:765.132000pt;}
.y225{bottom:765.132533pt;}
.y85{bottom:769.948000pt;}
.y51{bottom:770.012000pt;}
.y28a{bottom:773.828800pt;}
.y13b{bottom:778.617733pt;}
.y100{bottom:778.625467pt;}
.yc8{bottom:778.670933pt;}
.y16e{bottom:779.017733pt;}
.y224{bottom:779.799200pt;}
.ya{bottom:784.609333pt;}
.y230{bottom:786.433867pt;}
.y84{bottom:787.281333pt;}
.y1cf{bottom:787.292133pt;}
.y50{bottom:787.345333pt;}
.y289{bottom:787.828800pt;}
.y223{bottom:794.465867pt;}
.y13a{bottom:795.951067pt;}
.yff{bottom:795.958800pt;}
.yc7{bottom:796.004267pt;}
.y16d{bottom:796.351067pt;}
.y288{bottom:801.828800pt;}
.y83{bottom:804.614667pt;}
.y4f{bottom:804.678667pt;}
.y22d{bottom:808.567200pt;}
.y22e{bottom:808.576692pt;}
.y9{bottom:808.609333pt;}
.y222{bottom:809.132533pt;}
.y250{bottom:810.617733pt;}
.y16b{bottom:810.972000pt;}
.y139{bottom:813.284400pt;}
.yfe{bottom:813.292133pt;}
.yc6{bottom:813.337600pt;}
.y16a{bottom:813.684400pt;}
.y287{bottom:815.828800pt;}
.y82{bottom:821.948000pt;}
.y4e{bottom:822.012000pt;}
.y221{bottom:823.799200pt;}
.y286{bottom:829.828800pt;}
.y22f{bottom:829.965867pt;}
.y138{bottom:830.617733pt;}
.yfd{bottom:830.625467pt;}
.y1ce{bottom:830.629600pt;}
.yc5{bottom:830.670933pt;}
.y169{bottom:831.017733pt;}
.y24f{bottom:836.623067pt;}
.y220{bottom:838.465867pt;}
.y81{bottom:839.281333pt;}
.y4d{bottom:839.345333pt;}
.y285{bottom:843.828800pt;}
.y137{bottom:847.951067pt;}
.yfc{bottom:847.958800pt;}
.y1cd{bottom:847.962933pt;}
.yc4{bottom:848.004267pt;}
.y168{bottom:848.351067pt;}
.y21f{bottom:853.132533pt;}
.y80{bottom:856.614667pt;}
.y4c{bottom:856.678667pt;}
.y284{bottom:857.828800pt;}
.y8{bottom:860.005600pt;}
.y136{bottom:865.284400pt;}
.yfb{bottom:865.292133pt;}
.y1cc{bottom:865.296267pt;}
.yc3{bottom:865.337600pt;}
.y167{bottom:865.684400pt;}
.y21e{bottom:867.799200pt;}
.y2c0{bottom:869.820933pt;}
.y283{bottom:871.828800pt;}
.y7f{bottom:873.948000pt;}
.y4b{bottom:874.012000pt;}
.y21d{bottom:882.465867pt;}
.y135{bottom:882.617733pt;}
.yfa{bottom:882.625467pt;}
.y1cb{bottom:882.629600pt;}
.yc2{bottom:882.670933pt;}
.y166{bottom:883.017733pt;}
.y282{bottom:885.828800pt;}
.y2bf{bottom:887.154267pt;}
.y7{bottom:890.677600pt;}
.y7e{bottom:891.281333pt;}
.y4a{bottom:891.345333pt;}
.y21c{bottom:897.132533pt;}
.y281{bottom:899.828800pt;}
.y134{bottom:899.951067pt;}
.yf9{bottom:899.958800pt;}
.y1ca{bottom:899.962933pt;}
.yc1{bottom:900.004267pt;}
.y165{bottom:900.356400pt;}
.y2c5{bottom:907.870933pt;}
.y7d{bottom:908.614667pt;}
.y49{bottom:908.678667pt;}
.y21b{bottom:911.799200pt;}
.y2be{bottom:912.487600pt;}
.y280{bottom:913.828800pt;}
.y133{bottom:917.284400pt;}
.yf8{bottom:917.292133pt;}
.y1c9{bottom:917.296267pt;}
.yc0{bottom:917.337600pt;}
.y22b{bottom:919.630728pt;}
.y2c4{bottom:921.870933pt;}
.y1e3{bottom:924.154882pt;}
.y7c{bottom:925.948000pt;}
.y48{bottom:926.012000pt;}
.y1aa{bottom:927.017333pt;}
.y27f{bottom:927.828800pt;}
.y22a{bottom:931.647768pt;}
.y1ad{bottom:932.324533pt;}
.y132{bottom:934.617733pt;}
.yf7{bottom:934.625467pt;}
.y1c8{bottom:934.629600pt;}
.ybf{bottom:934.670933pt;}
.y2c3{bottom:935.870933pt;}
.y1df{bottom:935.975467pt;}
.y1b0{bottom:936.471067pt;}
.y1ab{bottom:936.596800pt;}
.y1e4{bottom:938.472658pt;}
.y6{bottom:938.677600pt;}
.y1e2{bottom:940.829278pt;}
.y27e{bottom:941.828800pt;}
.y7b{bottom:943.281333pt;}
.y1af{bottom:943.700533pt;}
.yf2{bottom:944.812533pt;}
.y229{bottom:945.003200pt;}
.y2c2{bottom:949.870933pt;}
.y131{bottom:951.951067pt;}
.yf6{bottom:951.958800pt;}
.y1c7{bottom:951.962933pt;}
.y2bd{bottom:955.820933pt;}
.y27d{bottom:955.828800pt;}
.y1e1{bottom:957.493200pt;}
.y7a{bottom:960.614667pt;}
.ybe{bottom:960.670933pt;}
.y47{bottom:960.678667pt;}
.y1a1{bottom:963.684000pt;}
.y2c1{bottom:963.870933pt;}
.y1a6{bottom:966.327600pt;}
.y1a4{bottom:968.991200pt;}
.y130{bottom:969.284400pt;}
.yf5{bottom:969.292133pt;}
.y1c6{bottom:969.296267pt;}
.y2bc{bottom:969.820933pt;}
.y27c{bottom:969.828800pt;}
.y1a7{bottom:971.391333pt;}
.y5{bottom:974.732133pt;}
.y4{bottom:991.394800pt;}
.y3{bottom:994.061467pt;}
.yaf{bottom:1001.497733pt;}
.y45{bottom:1001.498400pt;}
.y46{bottom:1003.789333pt;}
.yae{bottom:1003.897733pt;}
.y44{bottom:1003.898400pt;}
.h2a{height:2.816000pt;}
.h19{height:7.601333pt;}
.h16{height:13.066667pt;}
.h1c{height:13.600000pt;}
.h22{height:13.601333pt;}
.h27{height:15.722667pt;}
.h25{height:16.554667pt;}
.h30{height:19.209882pt;}
.h34{height:19.236269pt;}
.h38{height:19.842368pt;}
.h39{height:19.869624pt;}
.h8{height:20.266400pt;}
.h20{height:20.398933pt;}
.h28{height:21.333333pt;}
.h26{height:22.011733pt;}
.h33{height:22.411529pt;}
.h29{height:22.533333pt;}
.h18{height:23.176533pt;}
.h32{height:25.613175pt;}
.h10{height:26.749333pt;}
.he{height:27.178667pt;}
.h12{height:27.204800pt;}
.h37{height:27.641092pt;}
.h9{height:28.578667pt;}
.h1a{height:29.141333pt;}
.h2e{height:30.499900pt;}
.h2f{height:30.541795pt;}
.h13{height:31.317333pt;}
.h1f{height:31.445333pt;}
.h2b{height:32.510882pt;}
.h3b{height:32.661333pt;}
.h1e{height:33.109333pt;}
.h2{height:33.189333pt;}
.h36{height:34.273463pt;}
.h14{height:34.738995pt;}
.h2d{height:34.857417pt;}
.h5{height:35.352000pt;}
.h3c{height:35.560000pt;}
.h17{height:35.759467pt;}
.h23{height:37.488533pt;}
.hd{height:37.930667pt;}
.h1b{height:37.931200pt;}
.h24{height:39.101867pt;}
.h3{height:39.664240pt;}
.h1d{height:39.795733pt;}
.ha{height:40.826667pt;}
.h11{height:41.360000pt;}
.h15{height:42.361600pt;}
.hb{height:42.672000pt;}
.hc{height:47.720800pt;}
.h21{height:48.724267pt;}
.hf{height:53.503520pt;}
.h4{height:54.140240pt;}
.h7{height:61.549333pt;}
.h6{height:73.488000pt;}
.h31{height:140.913333pt;}
.h35{height:212.738667pt;}
.h3a{height:244.398667pt;}
.h2c{height:276.601333pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w4{width:8.346667pt;}
.w5{width:8.360000pt;}
.w2{width:10.240000pt;}
.w3{width:10.533333pt;}
.w8{width:80.346667pt;}
.w7{width:87.280000pt;}
.w9{width:119.600000pt;}
.w6{width:144.400000pt;}
.wa{width:323.981333pt;}
.wc{width:445.984000pt;}
.wd{width:671.998667pt;}
.wb{width:672.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x71{left:3.020533pt;}
.x17{left:4.294267pt;}
.x48{left:10.949067pt;}
.x42{left:13.522400pt;}
.x4c{left:16.327867pt;}
.x2b{left:21.138933pt;}
.x21{left:24.008933pt;}
.x6e{left:35.112800pt;}
.x2d{left:37.015067pt;}
.x2f{left:56.094667pt;}
.xc{left:59.678667pt;}
.x1{left:61.984267pt;}
.x23{left:65.217333pt;}
.x31{left:67.255200pt;}
.x47{left:68.407333pt;}
.x49{left:70.666400pt;}
.x25{left:73.041333pt;}
.xd{left:77.108400pt;}
.x15{left:79.279733pt;}
.x3d{left:80.677867pt;}
.x4a{left:83.712000pt;}
.x34{left:85.423467pt;}
.x3e{left:86.677867pt;}
.x2{left:87.613200pt;}
.x3{left:89.951067pt;}
.x16{left:95.713333pt;}
.x43{left:102.416133pt;}
.x18{left:105.953200pt;}
.x4b{left:106.879867pt;}
.x27{left:111.429333pt;}
.x12{left:115.434267pt;}
.x40{left:117.013733pt;}
.x6d{left:125.135333pt;}
.x19{left:132.196000pt;}
.x29{left:135.429333pt;}
.x44{left:137.179200pt;}
.x1a{left:142.729333pt;}
.x51{left:145.524800pt;}
.x1f{left:151.746667pt;}
.x20{left:158.931600pt;}
.x4d{left:160.295333pt;}
.x4e{left:165.592564pt;}
.x41{left:168.368933pt;}
.x22{left:186.339467pt;}
.x4{left:194.334800pt;}
.x5{left:196.672667pt;}
.x50{left:202.979467pt;}
.x74{left:204.008095pt;}
.x52{left:205.242133pt;}
.x72{left:210.256533pt;}
.x73{left:211.639775pt;}
.x4f{left:215.694267pt;}
.x53{left:218.287600pt;}
.x24{left:220.168133pt;}
.x26{left:232.540133pt;}
.x13{left:237.934800pt;}
.x14{left:247.633565pt;}
.x70{left:263.996267pt;}
.x28{left:273.759867pt;}
.x8{left:278.934267pt;}
.x58{left:280.100800pt;}
.x77{left:281.029867pt;}
.x5b{left:285.479467pt;}
.x54{left:294.871600pt;}
.x55{left:300.168830pt;}
.x6f{left:318.803011pt;}
.x6{left:322.312400pt;}
.x7{left:324.650267pt;}
.x45{left:329.636500pt;}
.x46{left:336.224562pt;}
.x57{left:337.555600pt;}
.x59{left:339.818133pt;}
.x76{left:343.013429pt;}
.x75{left:349.261867pt;}
.x56{left:350.268933pt;}
.x5a{left:352.863600pt;}
.xe{left:407.732400pt;}
.x10{left:409.965600pt;}
.x60{left:414.676800pt;}
.x63{left:420.055600pt;}
.xf{left:425.065733pt;}
.x7e{left:425.984267pt;}
.x11{left:427.298933pt;}
.x5c{left:429.447600pt;}
.x5d{left:434.744830pt;}
.x1b{left:458.116000pt;}
.x1c{left:466.461733pt;}
.x5f{left:472.130133pt;}
.x61{left:474.394133pt;}
.x79{left:482.017562pt;}
.x5e{left:484.844933pt;}
.x62{left:487.438133pt;}
.x78{left:489.649242pt;}
.x3a{left:512.184000pt;}
.x1d{left:519.894667pt;}
.x1e{left:528.254267pt;}
.x6c{left:530.645600pt;}
.x35{left:534.477333pt;}
.x36{left:539.081600pt;}
.x2a{left:540.699067pt;}
.x37{left:547.133733pt;}
.x3b{left:548.197733pt;}
.x67{left:549.252933pt;}
.x69{left:554.631600pt;}
.x2c{left:556.863200pt;}
.x7d{left:559.040667pt;}
.x64{left:564.023467pt;}
.x65{left:573.080873pt;}
.x2e{left:575.942933pt;}
.x3c{left:578.173733pt;}
.x30{left:589.059067pt;}
.x32{left:602.727333pt;}
.x39{left:607.193867pt;}
.x3f{left:608.413867pt;}
.x38{left:609.941600pt;}
.x33{left:611.379333pt;}
.x66{left:619.420800pt;}
.x7c{left:621.022762pt;}
.x68{left:622.015600pt;}
.x7a{left:627.271200pt;}
.x7b{left:628.654442pt;}
.x9{left:682.556000pt;}
.x6b{left:697.272310pt;}
.x6a{left:698.598267pt;}
.xa{left:704.153333pt;}
.xb{left:706.152533pt;}
}




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