
    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_8cff75252fc260498246bd97.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;font-style:normal;font-weight: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_6fb76889531a482280d60920.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;font-style:normal;font-weight: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_78ecaf4e66ae14bc4ce53d39.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982910;font-style:normal;font-weight: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_4d3c40bda8faff36b411e548.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;font-style:normal;font-weight: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_826eb3d3a91d17490a27e88c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.982910;font-style:normal;font-weight: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_182ed418ac9d27287fcebdb3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a213cb58d64a844bd485f53a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_91a9ea678a55e45bd77ae5a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;font-style:normal;font-weight: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_f30f333881c8c7f812d3efc5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.982910;font-style:normal;font-weight: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_fbe1cc6ce7b0bea55572d4ee.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b9520f5630fff7a7f67747a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.107422;font-style:normal;font-weight: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_8ebd0cf8f760c408d4fc6ffb.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1dc1fbc6eb7599f271e1a2cf.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight: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_5e6e26efe902a284d2210be2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.982910;font-style:normal;font-weight: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_717c0bf7660cbc5a4a088e25.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_f695e80a6f44655a974f6ca4.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_9b1d4e563752c72b0f4660c1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.940918;font-style:normal;font-weight: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_2811b517f6d9e0ca96e122e3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.982910;font-style:normal;font-weight: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_68aacf408146c33d46d405f7.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_e18c01b931fce8c824973f69.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.107422;font-style:normal;font-weight: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_6c2b4520ee4bad6d2bf56457.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_08c76418f529355179abccc8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.948242;font-style:normal;font-weight: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_1181eaf3e78e37ee59001109.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.941895;font-style:normal;font-weight: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_3fdd75f9cc032d31ca2151f5.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_4fe0c79769a0b559d480ed4c.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_2b7d176a9f22c03c21dd7892.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.107422;font-style:normal;font-weight: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_da09ef8de8b8ff233e53fb8d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.980957;font-style:normal;font-weight: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_e4752b926fc92135c826a788.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.941895;font-style:normal;font-weight: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_a8f7a9cacf65af01fca496b6.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_5c7c6a7c6a8cb4f5ff7979e4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.948242;font-style:normal;font-weight: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_1258a201d07b8fb86ee5c3ec.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.402354;font-style:normal;font-weight: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_7a2cc722f5e6dbc434315752.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_635a985c5a98b75e2bedd9de.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.982910;font-style:normal;font-weight: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_683eddbdbfa1055eb7b25098.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_e226bcbae7f5dcdfbb5f48d5.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.940918;font-style:normal;font-weight: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_878d17ab333fed9e6aec1eee.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.982910;font-style:normal;font-weight: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_da821fc7ec817967cfd9bdc4.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_36b4183ed7597473c096eec5.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.106934;font-style:normal;font-weight: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_ef08af07d9ae81be08793071.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.982910;font-style:normal;font-weight: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_83c400d79d884b7dff919505.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.981934;font-style:normal;font-weight: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_c100b147edbc15a2ac162025.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.982910;font-style:normal;font-weight: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_ec213f0a26e276e8e184a567.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.660000px;}
.ls2{letter-spacing:-0.463800px;}
.ls3{letter-spacing:-0.406200px;}
.ls38{letter-spacing:-0.371400px;}
.ls1d{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.312600px;}
.ls32{letter-spacing:-0.294000px;}
.ls2b{letter-spacing:-0.259800px;}
.ls33{letter-spacing:-0.253200px;}
.ls11{letter-spacing:-0.252000px;}
.ls21{letter-spacing:-0.132600px;}
.lse{letter-spacing:-0.108000px;}
.ls16{letter-spacing:-0.106800px;}
.ls2d{letter-spacing:-0.100200px;}
.ls2c{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.018000px;}
.ls2e{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.013440px;}
.ls1b{letter-spacing:0.053280px;}
.ls31{letter-spacing:0.060600px;}
.ls1a{letter-spacing:0.073440px;}
.ls36{letter-spacing:0.075000px;}
.ls20{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.132480px;}
.ls37{letter-spacing:0.141000px;}
.lsb{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.190200px;}
.lsc{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.238800px;}
.ls12{letter-spacing:0.252000px;}
.ls35{letter-spacing:0.256200px;}
.ls1c{letter-spacing:0.312480px;}
.ls4{letter-spacing:0.313800px;}
.ls5{letter-spacing:0.351600px;}
.ls17{letter-spacing:0.612000px;}
.ls15{letter-spacing:0.613440px;}
.ls14{letter-spacing:0.666720px;}
.ls10{letter-spacing:0.702000px;}
.ls1f{letter-spacing:0.733440px;}
.ls30{letter-spacing:0.774000px;}
.ls24{letter-spacing:0.846720px;}
.ls2a{letter-spacing:1.182000px;}
.ls2f{letter-spacing:1.188000px;}
.ls27{letter-spacing:1.338000px;}
.lsf{letter-spacing:1.584000px;}
.ls18{letter-spacing:4.266720px;}
.ls19{letter-spacing:4.986720px;}
.ls26{letter-spacing:5.706720px;}
.ls6{letter-spacing:5.909760px;}
.ls28{letter-spacing:7.866720px;}
.ls1e{letter-spacing:11.466720px;}
.ls25{letter-spacing:12.906720px;}
.ls29{letter-spacing:28.026720px;}
.ls22{letter-spacing:61.146720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-66.240000px;}
.ws1f{word-spacing:-59.760000px;}
.ws12{word-spacing:-18.414720px;}
.ws17{word-spacing:-17.951280px;}
.ws1d{word-spacing:-17.801280px;}
.ws18{word-spacing:-17.795280px;}
.ws1e{word-spacing:-17.387280px;}
.ws11{word-spacing:-17.225280px;}
.ws13{word-spacing:-16.666560px;}
.ws10{word-spacing:-16.613280px;}
.ws9{word-spacing:-16.596000px;}
.ws1b{word-spacing:-16.513080px;}
.wsf{word-spacing:-16.506480px;}
.ws1a{word-spacing:-16.353480px;}
.wsa{word-spacing:-15.714000px;}
.ws3{word-spacing:-15.321840px;}
.wse{word-spacing:-15.264000px;}
.wsb{word-spacing:-15.228000px;}
.ws24{word-spacing:-15.226440px;}
.ws23{word-spacing:-15.209040px;}
.ws26{word-spacing:-15.111240px;}
.ws25{word-spacing:-15.045240px;}
.ws20{word-spacing:-15.030840px;}
.wsc{word-spacing:-15.012000px;}
.ws7{word-spacing:-14.994000px;}
.ws2{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.904000px;}
.wsd{word-spacing:-14.760000px;}
.ws22{word-spacing:-14.717040px;}
.ws21{word-spacing:-14.676240px;}
.ws14{word-spacing:-14.652000px;}
.ws27{word-spacing:-14.598840px;}
.ws1{word-spacing:-14.506440px;}
.ws5{word-spacing:-14.310240px;}
.ws19{word-spacing:-10.808640px;}
.ws1c{word-spacing:-10.791360px;}
.ws16{word-spacing:-10.152000px;}
.ws15{word-spacing:-10.008000px;}
.ws4{word-spacing:-9.125160px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-4.364160px;}
._3{margin-left:-2.517120px;}
._0{margin-left:-1.068000px;}
._1{width:1.376160px;}
._7{width:2.848320px;}
._8{width:4.048800px;}
._11{width:5.053920px;}
._c{width:6.142800px;}
._b{width:7.423440px;}
._6{width:8.743680px;}
._5{width:10.157040px;}
._4{width:11.268960px;}
._e{width:12.283440px;}
._2{width:13.639440px;}
._19{width:14.887200px;}
._9{width:16.141440px;}
._a{width:17.514960px;}
._1a{width:19.292640px;}
._f{width:20.401920px;}
._15{width:21.633120px;}
._14{width:23.541600px;}
._12{width:24.561360px;}
._17{width:26.174880px;}
._18{width:27.489600px;}
._13{width:28.800720px;}
._d{width:48.421440px;}
._10{width:61.920480px;}
.fc2{color:rgb(55,58,62);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y20c{bottom:-37.605000px;}
.ya5{bottom:-34.005000px;}
.y1c8{bottom:-20.325000px;}
.y0{bottom:0.000000px;}
.y17b{bottom:0.735000px;}
.y165{bottom:2.865000px;}
.y16e{bottom:2.871000px;}
.y141{bottom:2.880000px;}
.y197{bottom:2.910000px;}
.y14b{bottom:3.045000px;}
.y170{bottom:3.051000px;}
.y145{bottom:3.060000px;}
.y6e{bottom:3.240000px;}
.y1d8{bottom:3.255000px;}
.y285{bottom:3.420000px;}
.y271{bottom:3.600000px;}
.y26d{bottom:3.615000px;}
.y2da{bottom:4.500000px;}
.y20b{bottom:4.515000px;}
.y30d{bottom:4.665000px;}
.y31c{bottom:4.671000px;}
.y314{bottom:4.680000px;}
.y317{bottom:4.710000px;}
.ya4{bottom:5.415000px;}
.y1af{bottom:5.760000px;}
.y189{bottom:5.940000px;}
.y2c3{bottom:6.105000px;}
.y28b{bottom:6.120000px;}
.y282{bottom:6.165000px;}
.y92{bottom:6.465000px;}
.y9b{bottom:6.471000px;}
.y70{bottom:6.480000px;}
.y84{bottom:6.510000px;}
.yb4{bottom:6.525000px;}
.y1ff{bottom:6.645000px;}
.y2ab{bottom:6.651000px;}
.y1dd{bottom:6.660000px;}
.y1fb{bottom:6.690000px;}
.y2a6{bottom:6.825000px;}
.y297{bottom:6.840000px;}
.y320{bottom:6.855000px;}
.y292{bottom:6.870000px;}
.yd8{bottom:7.020000px;}
.y168{bottom:7.365000px;}
.y173{bottom:7.371000px;}
.y142{bottom:7.380000px;}
.y166{bottom:7.410000px;}
.y14c{bottom:7.545000px;}
.y171{bottom:7.551000px;}
.y146{bottom:7.560000px;}
.y309{bottom:7.740000px;}
.y30b{bottom:9.165000px;}
.y306{bottom:9.180000px;}
.yff{bottom:9.360000px;}
.y32e{bottom:9.375000px;}
.yd6{bottom:9.540000px;}
.y116{bottom:9.735000px;}
.y277{bottom:10.440000px;}
.y2c4{bottom:10.605000px;}
.y28c{bottom:10.620000px;}
.y283{bottom:10.665000px;}
.y95{bottom:10.965000px;}
.y9c{bottom:10.971000px;}
.y72{bottom:10.980000px;}
.y93{bottom:11.010000px;}
.yb5{bottom:11.025000px;}
.y200{bottom:11.145000px;}
.y6c{bottom:11.160000px;}
.y1f0{bottom:11.190000px;}
.y264{bottom:11.340000px;}
.y293{bottom:11.370000px;}
.yd9{bottom:11.520000px;}
.y27e{bottom:11.880000px;}
.y26f{bottom:12.060000px;}
.y269{bottom:12.255000px;}
.y280{bottom:16.380000px;}
.y286{bottom:16.560000px;}
.y2bb{bottom:18.540000px;}
.y13f{bottom:18.720000px;}
.y6d{bottom:18.900000px;}
.y307{bottom:19.260000px;}
.y27f{bottom:20.520000px;}
.y270{bottom:20.700000px;}
.y26c{bottom:20.895000px;}
.y296{bottom:23.400000px;}
.y289{bottom:24.120000px;}
.y1f2{bottom:29.340000px;}
.y268{bottom:29.355000px;}
.y305{bottom:29.385000px;}
.y2af{bottom:33.495000px;}
.y20a{bottom:34.935000px;}
.ya3{bottom:35.655000px;}
.y31f{bottom:37.095000px;}
.y26b{bottom:37.995000px;}
.y17a{bottom:40.155000px;}
.y275{bottom:43.380000px;}
.y266{bottom:46.620000px;}
.y26a{bottom:55.260000px;}
.y2b8{bottom:63.000000px;}
.y1fd{bottom:63.525000px;}
.y1ec{bottom:63.540000px;}
.y1f6{bottom:63.570000px;}
.y2ae{bottom:63.765000px;}
.y209{bottom:65.175000px;}
.ya2{bottom:65.895000px;}
.y179{bottom:70.395000px;}
.y27b{bottom:72.180000px;}
.y1e4{bottom:75.060000px;}
.y1da{bottom:86.445000px;}
.y2ad{bottom:94.005000px;}
.y28e{bottom:94.320000px;}
.y208{bottom:95.415000px;}
.ya1{bottom:95.955000px;}
.y178{bottom:100.455000px;}
.y172{bottom:103.005000px;}
.y2c0{bottom:106.200000px;}
.y233{bottom:106.596000px;}
.y29a{bottom:111.465000px;}
.y1ab{bottom:112.545000px;}
.y9d{bottom:113.805000px;}
.y2d{bottom:117.396000px;}
.y52{bottom:118.656000px;}
.y3d{bottom:119.016000px;}
.yfc{bottom:122.265000px;}
.y31d{bottom:122.580000px;}
.yd4{bottom:123.345000px;}
.y16f{bottom:124.245000px;}
.y207{bottom:125.685000px;}
.ya0{bottom:126.225000px;}
.y232{bottom:126.396000px;}
.y1d5{bottom:126.756000px;}
.y1e{bottom:128.556000px;}
.y114{bottom:128.916000px;}
.y17{bottom:129.456000px;}
.y1c6{bottom:129.636000px;}
.y177{bottom:130.695000px;}
.y29e{bottom:133.545000px;}
.y1aa{bottom:133.965000px;}
.y47{bottom:135.756000px;}
.y9a{bottom:136.305000px;}
.y2aa{bottom:136.845000px;}
.y2fa{bottom:137.736000px;}
.y2a0{bottom:138.045000px;}
.y1fc{bottom:142.785000px;}
.yfb{bottom:144.765000px;}
.y31b{bottom:145.125000px;}
.y16d{bottom:145.665000px;}
.yd3{bottom:145.845000px;}
.y113{bottom:146.196000px;}
.y1c5{bottom:146.736000px;}
.y13c{bottom:151.950000px;}
.y1a9{bottom:155.205000px;}
.y2c{bottom:155.550000px;}
.y2d8{bottom:155.910000px;}
.y206{bottom:155.925000px;}
.y9f{bottom:156.465000px;}
.y51{bottom:156.810000px;}
.y3c{bottom:157.170000px;}
.y2f9{bottom:157.350000px;}
.y29b{bottom:158.205000px;}
.y99{bottom:158.805000px;}
.y176{bottom:160.965000px;}
.y2a9{bottom:162.225000px;}
.y254{bottom:162.750000px;}
.y231{bottom:164.370000px;}
.y204{bottom:165.645000px;}
.y1d{bottom:166.710000px;}
.y16c{bottom:167.085000px;}
.yfa{bottom:167.265000px;}
.y31a{bottom:167.625000px;}
.yd2{bottom:168.345000px;}
.y46{bottom:173.910000px;}
.y16{bottom:174.630000px;}
.y2d7{bottom:175.530000px;}
.y1a8{bottom:176.625000px;}
.y98{bottom:181.305000px;}
.y253{bottom:182.550000px;}
.y230{bottom:184.170000px;}
.y112{bottom:184.350000px;}
.y1c4{bottom:185.070000px;}
.y2a8{bottom:187.605000px;}
.y203{bottom:188.325000px;}
.y16b{bottom:188.505000px;}
.yf9{bottom:189.765000px;}
.y273{bottom:189.900000px;}
.y13b{bottom:190.110000px;}
.y319{bottom:190.125000px;}
.yd1{bottom:190.845000px;}
.y175{bottom:191.205000px;}
.y2b{bottom:193.710000px;}
.y50{bottom:194.970000px;}
.y3b{bottom:195.330000px;}
.y1a7{bottom:198.045000px;}
.y2f8{bottom:198.390000px;}
.y111{bottom:201.630000px;}
.y2b6{bottom:201.960000px;}
.y1c3{bottom:202.350000px;}
.y97{bottom:203.805000px;}
.y1c{bottom:204.870000px;}
.y13a{bottom:207.030000px;}
.y16a{bottom:209.745000px;}
.y202{bottom:211.185000px;}
.y45{bottom:212.070000px;}
.yf8{bottom:212.265000px;}
.y2a7{bottom:212.985000px;}
.yd0{bottom:213.345000px;}
.y2f7{bottom:218.010000px;}
.y110{bottom:218.910000px;}
.y1c2{bottom:219.450000px;}
.y1a6{bottom:219.465000px;}
.y15{bottom:219.810000px;}
.y252{bottom:220.350000px;}
.y22f{bottom:221.970000px;}
.y96{bottom:226.305000px;}
.y169{bottom:231.165000px;}
.y2a{bottom:231.870000px;}
.y4f{bottom:233.130000px;}
.y3a{bottom:233.490000px;}
.y201{bottom:234.045000px;}
.yf7{bottom:234.765000px;}
.ycf{bottom:235.845000px;}
.y2d6{bottom:236.370000px;}
.y2a5{bottom:238.185000px;}
.y1b{bottom:238.710000px;}
.y251{bottom:240.150000px;}
.y1a5{bottom:240.705000px;}
.y22e{bottom:241.770000px;}
.y139{bottom:245.550000px;}
.y94{bottom:248.805000px;}
.y44{bottom:250.410000px;}
.y167{bottom:252.585000px;}
.y2d5{bottom:255.990000px;}
.y1fe{bottom:256.725000px;}
.y10f{bottom:257.070000px;}
.yf6{bottom:257.265000px;}
.y1c1{bottom:257.790000px;}
.yce{bottom:258.345000px;}
.y2f6{bottom:259.050000px;}
.y22d{bottom:261.570000px;}
.y1a4{bottom:262.125000px;}
.y138{bottom:262.650000px;}
.y2a4{bottom:263.565000px;}
.y14{bottom:264.990000px;}
.y29{bottom:270.030000px;}
.y4e{bottom:271.290000px;}
.y91{bottom:271.305000px;}
.y39{bottom:271.650000px;}
.y164{bottom:274.005000px;}
.y10e{bottom:274.170000px;}
.y1c0{bottom:275.070000px;}
.y250{bottom:277.950000px;}
.y2f5{bottom:278.670000px;}
.yf5{bottom:279.765000px;}
.y1f5{bottom:280.305000px;}
.y318{bottom:280.845000px;}
.ycd{bottom:280.875000px;}
.y1a3{bottom:283.575000px;}
.y43{bottom:288.615000px;}
.y2a3{bottom:288.975000px;}
.y90{bottom:293.835000px;}
.y163{bottom:295.275000px;}
.y2d4{bottom:297.075000px;}
.y24f{bottom:297.975000px;}
.y22c{bottom:299.595000px;}
.y137{bottom:301.035000px;}
.yf4{bottom:302.295000px;}
.y1fa{bottom:303.195000px;}
.y316{bottom:303.345000px;}
.ycc{bottom:303.375000px;}
.y1a2{bottom:304.995000px;}
.y28{bottom:308.235000px;}
.y4d{bottom:309.495000px;}
.y38{bottom:309.855000px;}
.y13{bottom:310.395000px;}
.y10d{bottom:312.735000px;}
.y1bf{bottom:313.455000px;}
.y2a2{bottom:314.355000px;}
.y66{bottom:315.435000px;}
.y8f{bottom:316.335000px;}
.y162{bottom:316.695000px;}
.y2d3{bottom:316.875000px;}
.y24e{bottom:317.775000px;}
.y136{bottom:318.315000px;}
.y22b{bottom:319.395000px;}
.y2f4{bottom:319.755000px;}
.yf3{bottom:324.795000px;}
.ycb{bottom:325.875000px;}
.y1a1{bottom:326.235000px;}
.y42{bottom:326.775000px;}
.y10c{bottom:329.835000px;}
.y1be{bottom:330.555000px;}
.y161{bottom:338.115000px;}
.y8e{bottom:338.835000px;}
.y2f3{bottom:339.195000px;}
.y2a1{bottom:339.735000px;}
.y27{bottom:346.395000px;}
.yf2{bottom:347.295000px;}
.y4c{bottom:347.655000px;}
.y37{bottom:348.015000px;}
.yca{bottom:348.375000px;}
.y1f9{bottom:348.735000px;}
.y12{bottom:355.575000px;}
.y135{bottom:356.475000px;}
.y22a{bottom:357.195000px;}
.y2d2{bottom:357.735000px;}
.y160{bottom:359.535000px;}
.y8d{bottom:361.335000px;}
.y41{bottom:364.935000px;}
.y29f{bottom:365.115000px;}
.y10b{bottom:368.175000px;}
.y1bd{bottom:368.895000px;}
.y1a0{bottom:369.075000px;}
.yf1{bottom:369.795000px;}
.y65{bottom:370.695000px;}
.yc9{bottom:370.875000px;}
.y1f8{bottom:371.595000px;}
.y134{bottom:373.575000px;}
.y24d{bottom:375.195000px;}
.y229{bottom:376.995000px;}
.y2d1{bottom:377.535000px;}
.y2f2{bottom:380.415000px;}
.y15f{bottom:380.775000px;}
.y8c{bottom:383.835000px;}
.y26{bottom:384.555000px;}
.y10a{bottom:385.455000px;}
.y4b{bottom:385.815000px;}
.y36{bottom:386.175000px;}
.y29d{bottom:389.595000px;}
.y19f{bottom:390.495000px;}
.yf0{bottom:392.295000px;}
.yc8{bottom:393.375000px;}
.y1f7{bottom:394.275000px;}
.y228{bottom:396.795000px;}
.y2f1{bottom:400.035000px;}
.y11{bottom:400.755000px;}
.y15e{bottom:402.195000px;}
.y40{bottom:403.095000px;}
.y8b{bottom:406.335000px;}
.y64{bottom:411.195000px;}
.y19e{bottom:411.735000px;}
.y133{bottom:412.095000px;}
.y24c{bottom:413.355000px;}
.y29c{bottom:414.255000px;}
.yef{bottom:414.795000px;}
.yc7{bottom:415.875000px;}
.y1f1{bottom:417.135000px;}
.y2d0{bottom:418.575000px;}
.y2f0{bottom:419.835000px;}
.y25{bottom:422.715000px;}
.y109{bottom:423.615000px;}
.y4a{bottom:423.975000px;}
.y35{bottom:424.335000px;}
.y8a{bottom:428.835000px;}
.y132{bottom:429.375000px;}
.y19d{bottom:433.155000px;}
.y227{bottom:434.775000px;}
.yee{bottom:437.295000px;}
.y2cf{bottom:438.195000px;}
.yc6{bottom:438.375000px;}
.y28d{bottom:438.915000px;}
.y315{bottom:439.275000px;}
.y1f4{bottom:439.995000px;}
.y108{bottom:440.895000px;}
.y3f{bottom:441.255000px;}
.y1bc{bottom:441.615000px;}
.y15d{bottom:445.035000px;}
.y10{bottom:445.935000px;}
.y262{bottom:451.155000px;}
.y89{bottom:451.335000px;}
.y63{bottom:451.515000px;}
.y226{bottom:454.395000px;}
.y19c{bottom:454.575000px;}
.y49{bottom:457.815000px;}
.yed{bottom:459.795000px;}
.y24{bottom:460.875000px;}
.y313{bottom:461.775000px;}
.y34{bottom:462.495000px;}
.y1f3{bottom:462.675000px;}
.y298{bottom:464.115000px;}
.y107{bottom:465.555000px;}
.y15c{bottom:466.275000px;}
.y131{bottom:467.535000px;}
.y24b{bottom:470.955000px;}
.y88{bottom:473.835000px;}
.y3e{bottom:474.915000px;}
.y19b{bottom:475.995000px;}
.y2ce{bottom:479.235000px;}
.y1bb{bottom:479.955000px;}
.y2ef{bottom:480.675000px;}
.yec{bottom:482.295000px;}
.yc5{bottom:483.375000px;}
.y312{bottom:484.320000px;}
.y130{bottom:484.815000px;}
.y1eb{bottom:486.255000px;}
.y15b{bottom:487.695000px;}
.y299{bottom:489.495000px;}
.y106{bottom:490.035000px;}
.y24a{bottom:490.755000px;}
.yf{bottom:491.115000px;}
.y62{bottom:491.835000px;}
.y225{bottom:492.375000px;}
.y87{bottom:496.335000px;}
.y1ba{bottom:497.055000px;}
.y19a{bottom:497.235000px;}
.y2cd{bottom:498.855000px;}
.y23{bottom:499.035000px;}
.y33{bottom:500.655000px;}
.y12f{bottom:501.915000px;}
.yeb{bottom:504.795000px;}
.yc4{bottom:505.875000px;}
.y311{bottom:506.820000px;}
.y15a{bottom:509.115000px;}
.y224{bottom:512.175000px;}
.y294{bottom:513.615000px;}
.y199{bottom:518.655000px;}
.y86{bottom:518.835000px;}
.y2ee{bottom:521.715000px;}
.y105{bottom:521.895000px;}
.y32c{bottom:523.560000px;}
.yea{bottom:527.295000px;}
.yc3{bottom:528.375000px;}
.y249{bottom:528.555000px;}
.y310{bottom:529.320000px;}
.y159{bottom:530.535000px;}
.y61{bottom:531.975000px;}
.y22{bottom:532.695000px;}
.y1b9{bottom:535.395000px;}
.ye{bottom:536.475000px;}
.y32{bottom:538.815000px;}
.y295{bottom:538.995000px;}
.y198{bottom:540.075000px;}
.y12e{bottom:540.255000px;}
.y85{bottom:541.335000px;}
.y2cc{bottom:544.755000px;}
.y32b{bottom:546.060000px;}
.y248{bottom:548.535000px;}
.ye9{bottom:549.795000px;}
.y223{bottom:549.975000px;}
.yc2{bottom:550.875000px;}
.y158{bottom:551.775000px;}
.y30f{bottom:551.820000px;}
.y1b8{bottom:552.675000px;}
.y1ef{bottom:554.655000px;}
.y104{bottom:555.735000px;}
.y12d{bottom:557.535000px;}
.y2ed{bottom:561.135000px;}
.y196{bottom:561.495000px;}
.y291{bottom:563.115000px;}
.y83{bottom:563.835000px;}
.y32a{bottom:568.560000px;}
.y222{bottom:569.985000px;}
.y60{bottom:572.325000px;}
.y157{bottom:573.225000px;}
.yc1{bottom:573.405000px;}
.y30e{bottom:574.320000px;}
.y31{bottom:577.005000px;}
.y1ee{bottom:577.545000px;}
.y2cb{bottom:580.965000px;}
.yd{bottom:581.685000px;}
.y195{bottom:582.765000px;}
.y82{bottom:586.365000px;}
.y290{bottom:588.525000px;}
.y1b7{bottom:590.865000px;}
.y329{bottom:591.060000px;}
.y156{bottom:594.645000px;}
.ye8{bottom:594.825000px;}
.yc0{bottom:595.905000px;}
.y30c{bottom:596.820000px;}
.y2b5{bottom:597.345000px;}
.y1ed{bottom:600.405000px;}
.y2ec{bottom:602.205000px;}
.y194{bottom:604.185000px;}
.y247{bottom:606.165000px;}
.y221{bottom:607.785000px;}
.y81{bottom:608.865000px;}
.y5f{bottom:612.645000px;}
.y12c{bottom:613.005000px;}
.y328{bottom:613.560000px;}
.y28f{bottom:613.905000px;}
.y30{bottom:615.165000px;}
.y155{bottom:616.065000px;}
.ye7{bottom:617.325000px;}
.ybf{bottom:618.405000px;}
.y304{bottom:620.025000px;}
.y30a{bottom:620.040000px;}
.y2eb{bottom:621.825000px;}
.y2bf{bottom:623.445000px;}
.y1e3{bottom:623.805000px;}
.y193{bottom:625.605000px;}
.y246{bottom:625.785000px;}
.yc{bottom:626.865000px;}
.y220{bottom:627.585000px;}
.y1b6{bottom:629.025000px;}
.y80{bottom:631.365000px;}
.y327{bottom:636.045000px;}
.y154{bottom:637.305000px;}
.y272{bottom:638.565000px;}
.ye6{bottom:639.825000px;}
.ybe{bottom:640.905000px;}
.y261{bottom:643.965000px;}
.y308{bottom:646.350000px;}
.y1b5{bottom:646.485000px;}
.y1ea{bottom:646.665000px;}
.y192{bottom:647.025000px;}
.y2ca{bottom:649.545000px;}
.y12b{bottom:651.345000px;}
.y5e{bottom:652.965000px;}
.y7f{bottom:653.865000px;}
.y2f{bottom:656.025000px;}
.y326{bottom:658.590000px;}
.y153{bottom:658.725000px;}
.ye5{bottom:662.325000px;}
.y2ea{bottom:662.865000px;}
.ybd{bottom:663.405000px;}
.y245{bottom:663.765000px;}
.y21f{bottom:665.385000px;}
.y191{bottom:668.265000px;}
.y12a{bottom:668.625000px;}
.y1e9{bottom:669.525000px;}
.yb{bottom:672.045000px;}
.y2c9{bottom:674.385000px;}
.y28a{bottom:674.565000px;}
.y7e{bottom:676.365000px;}
.y152{bottom:680.145000px;}
.y325{bottom:681.090000px;}
.y2e9{bottom:682.485000px;}
.y244{bottom:683.565000px;}
.ye4{bottom:684.825000px;}
.y21e{bottom:685.005000px;}
.ybc{bottom:685.905000px;}
.y190{bottom:689.685000px;}
.y1e8{bottom:692.205000px;}
.y288{bottom:698.685000px;}
.y7d{bottom:698.865000px;}
.y2c8{bottom:699.405000px;}
.y151{bottom:701.565000px;}
.y260{bottom:701.745000px;}
.y1b4{bottom:701.925000px;}
.y324{bottom:703.590000px;}
.y129{bottom:706.785000px;}
.ye3{bottom:707.325000px;}
.y5d{bottom:708.045000px;}
.ybb{bottom:708.405000px;}
.y18f{bottom:711.105000px;}
.y1e7{bottom:715.065000px;}
.ya{bottom:717.225000px;}
.y1b3{bottom:719.205000px;}
.y7c{bottom:721.365000px;}
.y243{bottom:721.545000px;}
.y150{bottom:722.805000px;}
.y21d{bottom:723.165000px;}
.y2e8{bottom:723.525000px;}
.y1d0{bottom:723.885000px;}
.y128{bottom:724.065000px;}
.y2c7{bottom:724.245000px;}
.y323{bottom:726.990000px;}
.ye2{bottom:729.825000px;}
.yba{bottom:730.905000px;}
.y18e{bottom:732.525000px;}
.y31e{bottom:735.075000px;}
.y1e6{bottom:737.925000px;}
.y242{bottom:741.345000px;}
.y21c{bottom:742.965000px;}
.y2e7{bottom:743.145000px;}
.y7b{bottom:743.865000px;}
.y14f{bottom:744.225000px;}
.y303{bottom:745.890000px;}
.y2c6{bottom:749.085000px;}
.y287{bottom:749.445000px;}
.y322{bottom:749.490000px;}
.ye1{bottom:752.325000px;}
.yb9{bottom:753.405000px;}
.y18d{bottom:753.765000px;}
.y25f{bottom:759.345000px;}
.y1e5{bottom:760.605000px;}
.y127{bottom:762.225000px;}
.y9{bottom:762.405000px;}
.y21b{bottom:762.765000px;}
.y2e6{bottom:762.945000px;}
.y5c{bottom:763.305000px;}
.y14e{bottom:765.645000px;}
.y7a{bottom:766.365000px;}
.y1b2{bottom:768.345000px;}
.y321{bottom:771.990000px;}
.y2c5{bottom:774.105000px;}
.y27a{bottom:774.645000px;}
.ye0{bottom:774.825000px;}
.y18c{bottom:775.185000px;}
.yb8{bottom:775.905000px;}
.y241{bottom:779.145000px;}
.y1cf{bottom:779.325000px;}
.y126{bottom:779.505000px;}
.y302{bottom:779.730000px;}
.y1d9{bottom:784.185000px;}
.y14d{bottom:787.065000px;}
.y79{bottom:788.865000px;}
.y125{bottom:796.605000px;}
.ydf{bottom:797.325000px;}
.y32d{bottom:797.355000px;}
.yb7{bottom:798.405000px;}
.y240{bottom:798.945000px;}
.y2c2{bottom:798.960000px;}
.y1b1{bottom:800.205000px;}
.y21a{bottom:800.565000px;}
.y5b{bottom:803.805000px;}
.y2e5{bottom:803.985000px;}
.y1e2{bottom:807.045000px;}
.y8{bottom:807.765000px;}
.y14a{bottom:808.320000px;}
.y284{bottom:810.645000px;}
.y78{bottom:811.365000px;}
.y25e{bottom:816.945000px;}
.y1ce{bottom:817.845000px;}
.y18b{bottom:818.025000px;}
.y23f{bottom:818.925000px;}
.yde{bottom:819.825000px;}
.y219{bottom:820.365000px;}
.yb6{bottom:820.905000px;}
.y2e4{bottom:823.605000px;}
.y2c1{bottom:823.785000px;}
.y149{bottom:829.725000px;}
.y1e1{bottom:829.905000px;}
.y77{bottom:833.865000px;}
.y124{bottom:835.125000px;}
.y25d{bottom:836.925000px;}
.y18a{bottom:839.265000px;}
.ydd{bottom:842.325000px;}
.yb3{bottom:843.405000px;}
.y5a{bottom:844.125000px;}
.y281{bottom:846.645000px;}
.y2be{bottom:848.850000px;}
.y148{bottom:851.190000px;}
.y123{bottom:852.270000px;}
.y1e0{bottom:852.630000px;}
.y7{bottom:852.990000px;}
.y76{bottom:856.410000px;}
.y23e{bottom:856.770000px;}
.y218{bottom:858.390000px;}
.y188{bottom:860.730000px;}
.y2e3{bottom:864.690000px;}
.ydc{bottom:864.870000px;}
.yb2{bottom:865.950000px;}
.y27d{bottom:870.990000px;}
.y147{bottom:872.610000px;}
.y1cd{bottom:873.330000px;}
.y25c{bottom:874.590000px;}
.y2b7{bottom:874.950000px;}
.y1df{bottom:875.490000px;}
.y23d{bottom:876.570000px;}
.y217{bottom:878.190000px;}
.y75{bottom:878.910000px;}
.y187{bottom:882.150000px;}
.y2e2{bottom:884.130000px;}
.y59{bottom:884.310000px;}
.ydb{bottom:887.370000px;}
.yb1{bottom:888.450000px;}
.y122{bottom:890.610000px;}
.y144{bottom:893.850000px;}
.y25b{bottom:894.570000px;}
.y216{bottom:897.810000px;}
.y6{bottom:898.170000px;}
.y1de{bottom:898.350000px;}
.y2bd{bottom:901.050000px;}
.y74{bottom:901.410000px;}
.y186{bottom:903.570000px;}
.y27c{bottom:906.990000px;}
.y121{bottom:907.890000px;}
.yda{bottom:909.870000px;}
.yb0{bottom:910.950000px;}
.y25a{bottom:914.190000px;}
.y23c{bottom:914.370000px;}
.y143{bottom:915.270000px;}
.y1dc{bottom:921.030000px;}
.y73{bottom:923.910000px;}
.y58{bottom:924.630000px;}
.y185{bottom:924.810000px;}
.y2e1{bottom:925.350000px;}
.y1cc{bottom:928.590000px;}
.y274{bottom:931.110000px;}
.yd7{bottom:932.370000px;}
.yaf{bottom:933.450000px;}
.y23b{bottom:934.170000px;}
.y215{bottom:935.790000px;}
.y140{bottom:936.690000px;}
.y2bc{bottom:937.770000px;}
.y1db{bottom:943.890000px;}
.y2e0{bottom:945.150000px;}
.y120{bottom:946.050000px;}
.y184{bottom:946.230000px;}
.y71{bottom:946.410000px;}
.y259{bottom:952.170000px;}
.y5{bottom:953.430000px;}
.y23a{bottom:954.150000px;}
.y214{bottom:955.590000px;}
.yae{bottom:955.950000px;}
.y279{bottom:956.490000px;}
.y13e{bottom:958.830000px;}
.y301{bottom:962.790000px;}
.y1cb{bottom:963.150000px;}
.y11f{bottom:963.330000px;}
.y2ba{bottom:963.870000px;}
.y2df{bottom:964.770000px;}
.y57{bottom:964.950000px;}
.y1d7{bottom:967.455000px;}
.y1d6{bottom:967.470000px;}
.y183{bottom:967.650000px;}
.y6f{bottom:968.910000px;}
.y258{bottom:972.150000px;}
.y174{bottom:973.935000px;}
.yad{bottom:978.450000px;}
.y278{bottom:980.610000px;}
.y300{bottom:985.650000px;}
.y2b9{bottom:988.710000px;}
.y182{bottom:989.070000px;}
.y257{bottom:991.770000px;}
.y239{bottom:991.950000px;}
.y6b{bottom:992.490000px;}
.y213{bottom:993.570000px;}
.y4{bottom:993.930000px;}
.yac{bottom:1000.950000px;}
.y11e{bottom:1001.670000px;}
.y56{bottom:1005.270000px;}
.y276{bottom:1005.990000px;}
.y205{bottom:1007.235000px;}
.y13d{bottom:1010.310000px;}
.y238{bottom:1011.750000px;}
.y2b4{bottom:1012.110000px;}
.y212{bottom:1013.370000px;}
.y11d{bottom:1018.770000px;}
.y21{bottom:1020.030000px;}
.yab{bottom:1023.450000px;}
.y2de{bottom:1025.610000px;}
.y9e{bottom:1026.495000px;}
.y2ff{bottom:1026.690000px;}
.y256{bottom:1029.570000px;}
.y26e{bottom:1030.110000px;}
.y1d4{bottom:1030.650000px;}
.y181{bottom:1031.730000px;}
.y2b2{bottom:1036.770000px;}
.y3{bottom:1042.170000px;}
.y6a{bottom:1044.150000px;}
.y55{bottom:1045.590000px;}
.yaa{bottom:1045.950000px;}
.y2fe{bottom:1046.490000px;}
.y237{bottom:1049.550000px;}
.y48{bottom:1050.270000px;}
.y20{bottom:1050.450000px;}
.y211{bottom:1050.990000px;}
.y180{bottom:1053.150000px;}
.y11c{bottom:1057.110000px;}
.y2b3{bottom:1062.150000px;}
.y2fd{bottom:1066.290000px;}
.y2dd{bottom:1066.650000px;}
.y267{bottom:1066.815000px;}
.y265{bottom:1066.830000px;}
.ya9{bottom:1068.450000px;}
.y1d3{bottom:1068.810000px;}
.y236{bottom:1069.350000px;}
.y210{bottom:1070.970000px;}
.y11b{bottom:1074.390000px;}
.y17f{bottom:1074.570000px;}
.y2ac{bottom:1075.635000px;}
.y69{bottom:1077.810000px;}
.y1a{bottom:1080.510000px;}
.y1f{bottom:1080.690000px;}
.y2b1{bottom:1085.550000px;}
.y54{bottom:1085.730000px;}
.y2dc{bottom:1086.270000px;}
.y235{bottom:1089.150000px;}
.y20f{bottom:1090.770000px;}
.ya8{bottom:1090.950000px;}
.y1ca{bottom:1091.490000px;}
.y2{bottom:1095.450000px;}
.y17e{bottom:1095.810000px;}
.y1d2{bottom:1106.970000px;}
.y255{bottom:1107.150000px;}
.y2fc{bottom:1107.510000px;}
.y2e{bottom:1110.750000px;}
.y19{bottom:1110.930000px;}
.y68{bottom:1111.470000px;}
.y11a{bottom:1112.550000px;}
.ya7{bottom:1113.450000px;}
.y17d{bottom:1117.230000px;}
.y20e{bottom:1119.390000px;}
.y234{bottom:1127.130000px;}
.y2db{bottom:1127.310000px;}
.y119{bottom:1129.830000px;}
.y263{bottom:1135.800000px;}
.ya6{bottom:1135.980000px;}
.y2b0{bottom:1136.160000px;}
.y17c{bottom:1138.680000px;}
.y1{bottom:1139.580000px;}
.y53{bottom:1141.020000px;}
.y18{bottom:1141.200000px;}
.y1d1{bottom:1145.160000px;}
.y67{bottom:1145.340000px;}
.y2fb{bottom:1146.780000px;}
.y118{bottom:1146.960000px;}
.y20d{bottom:1147.140000px;}
.yd5{bottom:1158.120000px;}
.y100{bottom:1158.480000px;}
.y1c9{bottom:1159.020000px;}
.y117{bottom:1159.200000px;}
.yfd{bottom:1159.380000px;}
.y101{bottom:1159.740000px;}
.y1ac{bottom:1159.920000px;}
.y1ad{bottom:1160.640000px;}
.yfe{bottom:1160.820000px;}
.y1b0{bottom:1161.180000px;}
.y103{bottom:1163.160000px;}
.y2d9{bottom:1163.340000px;}
.y102{bottom:1163.700000px;}
.y1ae{bottom:1164.780000px;}
.y1c7{bottom:1290.945000px;}
.y115{bottom:1515.435000px;}
.h17{height:-252.555000px;}
.h28{height:-28.065000px;}
.h5a{height:19.980000px;}
.h1c{height:21.225000px;}
.h24{height:21.231000px;}
.h1e{height:21.240000px;}
.h21{height:21.261000px;}
.h26{height:21.270000px;}
.h1b{height:21.405000px;}
.h22{height:21.411000px;}
.h1f{height:21.420000px;}
.h27{height:21.441000px;}
.h1d{height:21.442500px;}
.h20{height:21.450000px;}
.h9{height:22.485000px;}
.h10{height:22.491000px;}
.hc{height:22.500000px;}
.he{height:22.521000px;}
.hb{height:22.522500px;}
.hd{height:22.530000px;}
.h61{height:22.536000px;}
.h2e{height:22.665000px;}
.h32{height:22.680000px;}
.h2f{height:22.702500px;}
.h2d{height:22.845000px;}
.h3a{height:22.851000px;}
.h30{height:22.860000px;}
.h38{height:22.881000px;}
.h34{height:22.890000px;}
.h5f{height:23.205000px;}
.h14{height:23.565000px;}
.h45{height:23.745000px;}
.h48{height:23.760000px;}
.h4f{height:23.925000px;}
.h53{height:23.931000px;}
.h4c{height:23.940000px;}
.h52{height:23.961000px;}
.h4d{height:23.970000px;}
.h15{height:24.840000px;}
.h64{height:24.885000px;}
.h13{height:25.020000px;}
.h60{height:26.301000px;}
.h1a{height:30.945000px;}
.h2a{height:30.951000px;}
.h2b{height:30.960000px;}
.h7{height:31.125000px;}
.h41{height:34.365000px;}
.h4a{height:34.380000px;}
.h47{height:34.560000px;}
.hf{height:38.140313px;}
.h35{height:38.200313px;}
.ha{height:38.320312px;}
.h23{height:38.344313px;}
.h3{height:39.783867px;}
.h44{height:44.327813px;}
.h58{height:47.505000px;}
.h55{height:47.865000px;}
.h4e{height:48.045000px;}
.h5e{height:49.522500px;}
.h12{height:50.520937px;}
.h29{height:50.585625px;}
.h62{height:52.560000px;}
.h3c{height:53.237812px;}
.h6{height:53.302500px;}
.h4{height:54.628594px;}
.h63{height:55.503491px;}
.h8{height:56.320312px;}
.h5b{height:57.937500px;}
.h5{height:58.199766px;}
.h49{height:58.680000px;}
.h2{height:59.378906px;}
.h19{height:61.423863px;}
.h16{height:62.327813px;}
.h36{height:68.385000px;}
.h40{height:68.970000px;}
.h3e{height:68.976000px;}
.h3f{height:68.985000px;}
.h18{height:69.086250px;}
.h3d{height:86.585445px;}
.h43{height:97.365000px;}
.h54{height:109.485000px;}
.h57{height:136.425000px;}
.h39{height:136.791000px;}
.h37{height:136.821000px;}
.h33{height:136.830000px;}
.h46{height:154.830000px;}
.h31{height:159.660000px;}
.h3b{height:171.405000px;}
.h11{height:171.945000px;}
.h2c{height:182.535000px;}
.h4b{height:198.930000px;}
.h25{height:206.685000px;}
.h59{height:223.020000px;}
.h51{height:277.401000px;}
.h50{height:326.541000px;}
.h42{height:389.910000px;}
.h56{height:414.030000px;}
.h5c{height:892.980000px;}
.h5d{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w38{width:50.745000px;}
.w2b{width:51.465000px;}
.w1d{width:53.265000px;}
.w39{width:55.965000px;}
.w2d{width:56.325000px;}
.w2e{width:56.505000px;}
.w31{width:56.520000px;}
.w34{width:56.541000px;}
.w33{width:56.556000px;}
.w2f{width:56.685000px;}
.w32{width:56.700000px;}
.w30{width:56.721000px;}
.w35{width:61.005000px;}
.w1c{width:61.596000px;}
.w4{width:63.000000px;}
.w23{width:63.351000px;}
.w19{width:63.711000px;}
.w21{width:63.720000px;}
.w12{width:74.511000px;}
.w2{width:79.551000px;}
.wc{width:84.240000px;}
.wf{width:84.810000px;}
.w1e{width:87.141000px;}
.w22{width:87.142500px;}
.w20{width:88.230000px;}
.wa{width:95.391000px;}
.w5{width:95.976000px;}
.w24{width:100.821000px;}
.w1a{width:101.181000px;}
.wb{width:105.501000px;}
.w13{width:106.401000px;}
.w14{width:116.856000px;}
.w1f{width:118.965000px;}
.w6{width:126.021000px;}
.wd{width:126.936000px;}
.w37{width:128.016000px;}
.w29{width:128.376000px;}
.w2a{width:128.385000px;}
.w1b{width:138.240000px;}
.we{width:147.981000px;}
.w17{width:159.510000px;}
.w3{width:169.395000px;}
.w7{width:169.770000px;}
.w15{width:180.735000px;}
.w16{width:180.750000px;}
.w11{width:361.515000px;}
.w18{width:678.915000px;}
.w10{width:686.835000px;}
.w25{width:718.155000px;}
.w9{width:728.235000px;}
.w3a{width:728.400000px;}
.w8{width:728.415000px;}
.w26{width:737.595000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2c{width:966.870000px;}
.w36{width:1133.955000px;}
.w27{width:1262.880000px;}
.w28{width:1263.000000px;}
.x0{left:0.000000px;}
.x5f{left:5.220000px;}
.x10{left:6.300000px;}
.x21{left:7.380000px;}
.xd{left:8.640000px;}
.x24{left:9.711000px;}
.x1d{left:10.971000px;}
.x5d{left:12.060000px;}
.x29{left:13.491000px;}
.x41{left:14.745000px;}
.x9{left:15.831000px;}
.x20{left:16.911000px;}
.xf{left:18.390000px;}
.x51{left:19.425000px;}
.x1e{left:20.520000px;}
.x17{left:22.500000px;}
.x27{left:24.150000px;}
.x13{left:25.725000px;}
.x2b{left:26.850000px;}
.x1f{left:28.290000px;}
.x12{left:29.865000px;}
.x1a{left:31.665000px;}
.x38{left:32.745000px;}
.x22{left:34.050000px;}
.x30{left:35.490000px;}
.x31{left:36.885000px;}
.x25{left:38.145000px;}
.x2f{left:39.225000px;}
.x34{left:41.025000px;}
.x26{left:42.285000px;}
.x19{left:43.380000px;}
.x23{left:44.805000px;}
.xb{left:46.785000px;}
.x39{left:47.880000px;}
.x2c{left:48.960000px;}
.x1b{left:50.925000px;}
.x15{left:52.020000px;}
.x47{left:53.310000px;}
.x16{left:54.345000px;}
.x35{left:55.785000px;}
.x3b{left:56.865000px;}
.x32{left:58.305000px;}
.x5b{left:59.400000px;}
.x18{left:60.645000px;}
.x2a{left:62.085000px;}
.x37{left:64.065000px;}
.x28{left:65.865000px;}
.x36{left:67.665000px;}
.x3c{left:69.645000px;}
.x46{left:71.670000px;}
.x3d{left:73.425000px;}
.x53{left:74.700000px;}
.x52{left:77.220000px;}
.x2d{left:79.560000px;}
.x5e{left:80.820000px;}
.x1c{left:82.080000px;}
.x3a{left:83.925000px;}
.x2e{left:85.005000px;}
.x33{left:86.445000px;}
.x54{left:90.405000px;}
.x8{left:92.925000px;}
.x48{left:101.565000px;}
.x7{left:108.036000px;}
.x4c{left:114.345000px;}
.x49{left:116.505000px;}
.x4a{left:118.485000px;}
.x4b{left:119.925000px;}
.x3f{left:122.265000px;}
.x3{left:127.656000px;}
.x3e{left:140.076000px;}
.x1{left:147.636000px;}
.x55{left:154.125000px;}
.xa{left:173.205000px;}
.x60{left:185.985000px;}
.x4d{left:201.465000px;}
.x40{left:218.385000px;}
.x61{left:238.185000px;}
.x56{left:255.315000px;}
.x2{left:285.375000px;}
.x62{left:294.525000px;}
.x4e{left:307.875000px;}
.x42{left:324.795000px;}
.xc{left:343.335000px;}
.x63{left:351.045000px;}
.x57{left:393.555000px;}
.xe{left:407.055000px;}
.x43{left:409.755000px;}
.x4f{left:424.740000px;}
.x58{left:455.160000px;}
.x64{left:464.475000px;}
.x11{left:503.760000px;}
.x59{left:508.440000px;}
.x65{left:520.995000px;}
.x44{left:537.420000px;}
.x66{left:577.695000px;}
.x5a{left:595.590000px;}
.x50{left:605.490000px;}
.x4{left:629.430000px;}
.x14{left:630.510000px;}
.x67{left:634.215000px;}
.x45{left:686.130000px;}
.x68{left:690.915000px;}
.x5c{left:714.570000px;}
.x69{left:747.480000px;}
.x6{left:765.540000px;}
.x5{left:773.460000px;}
.x6a{left:804.180000px;}
.x6b{left:860.880000px;}
.x6c{left:917.400000px;}
.x6d{left:974.100000px;}
.x6e{left:1030.650000px;}
.x6f{left:1087.350000px;}
.x70{left:1144.050000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:-0.412267pt;}
.ls3{letter-spacing:-0.361067pt;}
.ls38{letter-spacing:-0.330133pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.277867pt;}
.ls32{letter-spacing:-0.261333pt;}
.ls2b{letter-spacing:-0.230933pt;}
.ls33{letter-spacing:-0.225067pt;}
.ls11{letter-spacing:-0.224000pt;}
.ls21{letter-spacing:-0.117867pt;}
.lse{letter-spacing:-0.096000pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls2d{letter-spacing:-0.089067pt;}
.ls2c{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls2e{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.011947pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls31{letter-spacing:0.053867pt;}
.ls1a{letter-spacing:0.065280pt;}
.ls36{letter-spacing:0.066667pt;}
.ls20{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.117760pt;}
.ls37{letter-spacing:0.125333pt;}
.lsb{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.169067pt;}
.lsc{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.212267pt;}
.ls12{letter-spacing:0.224000pt;}
.ls35{letter-spacing:0.227733pt;}
.ls1c{letter-spacing:0.277760pt;}
.ls4{letter-spacing:0.278933pt;}
.ls5{letter-spacing:0.312533pt;}
.ls17{letter-spacing:0.544000pt;}
.ls15{letter-spacing:0.545280pt;}
.ls14{letter-spacing:0.592640pt;}
.ls10{letter-spacing:0.624000pt;}
.ls1f{letter-spacing:0.651947pt;}
.ls30{letter-spacing:0.688000pt;}
.ls24{letter-spacing:0.752640pt;}
.ls2a{letter-spacing:1.050667pt;}
.ls2f{letter-spacing:1.056000pt;}
.ls27{letter-spacing:1.189333pt;}
.lsf{letter-spacing:1.408000pt;}
.ls18{letter-spacing:3.792640pt;}
.ls19{letter-spacing:4.432640pt;}
.ls26{letter-spacing:5.072640pt;}
.ls6{letter-spacing:5.253120pt;}
.ls28{letter-spacing:6.992640pt;}
.ls1e{letter-spacing:10.192640pt;}
.ls25{letter-spacing:11.472640pt;}
.ls29{letter-spacing:24.912640pt;}
.ls22{letter-spacing:54.352640pt;}
.ws6{word-spacing:-58.880000pt;}
.ws1f{word-spacing:-53.120000pt;}
.ws12{word-spacing:-16.368640pt;}
.ws17{word-spacing:-15.956693pt;}
.ws1d{word-spacing:-15.823360pt;}
.ws18{word-spacing:-15.818027pt;}
.ws1e{word-spacing:-15.455360pt;}
.ws11{word-spacing:-15.311360pt;}
.ws13{word-spacing:-14.814720pt;}
.ws10{word-spacing:-14.767360pt;}
.ws9{word-spacing:-14.752000pt;}
.ws1b{word-spacing:-14.678293pt;}
.wsf{word-spacing:-14.672427pt;}
.ws1a{word-spacing:-14.536427pt;}
.wsa{word-spacing:-13.968000pt;}
.ws3{word-spacing:-13.619413pt;}
.wse{word-spacing:-13.568000pt;}
.wsb{word-spacing:-13.536000pt;}
.ws24{word-spacing:-13.534613pt;}
.ws23{word-spacing:-13.519147pt;}
.ws26{word-spacing:-13.432213pt;}
.ws25{word-spacing:-13.373547pt;}
.ws20{word-spacing:-13.360747pt;}
.wsc{word-spacing:-13.344000pt;}
.ws7{word-spacing:-13.328000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws8{word-spacing:-13.248000pt;}
.wsd{word-spacing:-13.120000pt;}
.ws22{word-spacing:-13.081813pt;}
.ws21{word-spacing:-13.045547pt;}
.ws14{word-spacing:-13.024000pt;}
.ws27{word-spacing:-12.976747pt;}
.ws1{word-spacing:-12.894613pt;}
.ws5{word-spacing:-12.720213pt;}
.ws19{word-spacing:-9.607680pt;}
.ws1c{word-spacing:-9.592320pt;}
.ws16{word-spacing:-9.024000pt;}
.ws15{word-spacing:-8.896000pt;}
.ws4{word-spacing:-8.111253pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-3.879253pt;}
._3{margin-left:-2.237440pt;}
._0{margin-left:-0.949333pt;}
._1{width:1.223253pt;}
._7{width:2.531840pt;}
._8{width:3.598933pt;}
._11{width:4.492373pt;}
._c{width:5.460267pt;}
._b{width:6.598613pt;}
._6{width:7.772160pt;}
._5{width:9.028480pt;}
._4{width:10.016853pt;}
._e{width:10.918613pt;}
._2{width:12.123947pt;}
._19{width:13.233067pt;}
._9{width:14.347947pt;}
._a{width:15.568853pt;}
._1a{width:17.149013pt;}
._f{width:18.135040pt;}
._15{width:19.229440pt;}
._14{width:20.925867pt;}
._12{width:21.832320pt;}
._17{width:23.266560pt;}
._18{width:24.435200pt;}
._13{width:25.600640pt;}
._d{width:43.041280pt;}
._10{width:55.040427pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y20c{bottom:-33.426667pt;}
.ya5{bottom:-30.226667pt;}
.y1c8{bottom:-18.066667pt;}
.y0{bottom:0.000000pt;}
.y17b{bottom:0.653333pt;}
.y165{bottom:2.546667pt;}
.y16e{bottom:2.552000pt;}
.y141{bottom:2.560000pt;}
.y197{bottom:2.586667pt;}
.y14b{bottom:2.706667pt;}
.y170{bottom:2.712000pt;}
.y145{bottom:2.720000pt;}
.y6e{bottom:2.880000pt;}
.y1d8{bottom:2.893333pt;}
.y285{bottom:3.040000pt;}
.y271{bottom:3.200000pt;}
.y26d{bottom:3.213333pt;}
.y2da{bottom:4.000000pt;}
.y20b{bottom:4.013333pt;}
.y30d{bottom:4.146667pt;}
.y31c{bottom:4.152000pt;}
.y314{bottom:4.160000pt;}
.y317{bottom:4.186667pt;}
.ya4{bottom:4.813333pt;}
.y1af{bottom:5.120000pt;}
.y189{bottom:5.280000pt;}
.y2c3{bottom:5.426667pt;}
.y28b{bottom:5.440000pt;}
.y282{bottom:5.480000pt;}
.y92{bottom:5.746667pt;}
.y9b{bottom:5.752000pt;}
.y70{bottom:5.760000pt;}
.y84{bottom:5.786667pt;}
.yb4{bottom:5.800000pt;}
.y1ff{bottom:5.906667pt;}
.y2ab{bottom:5.912000pt;}
.y1dd{bottom:5.920000pt;}
.y1fb{bottom:5.946667pt;}
.y2a6{bottom:6.066667pt;}
.y297{bottom:6.080000pt;}
.y320{bottom:6.093333pt;}
.y292{bottom:6.106667pt;}
.yd8{bottom:6.240000pt;}
.y168{bottom:6.546667pt;}
.y173{bottom:6.552000pt;}
.y142{bottom:6.560000pt;}
.y166{bottom:6.586667pt;}
.y14c{bottom:6.706667pt;}
.y171{bottom:6.712000pt;}
.y146{bottom:6.720000pt;}
.y309{bottom:6.880000pt;}
.y30b{bottom:8.146667pt;}
.y306{bottom:8.160000pt;}
.yff{bottom:8.320000pt;}
.y32e{bottom:8.333333pt;}
.yd6{bottom:8.480000pt;}
.y116{bottom:8.653333pt;}
.y277{bottom:9.280000pt;}
.y2c4{bottom:9.426667pt;}
.y28c{bottom:9.440000pt;}
.y283{bottom:9.480000pt;}
.y95{bottom:9.746667pt;}
.y9c{bottom:9.752000pt;}
.y72{bottom:9.760000pt;}
.y93{bottom:9.786667pt;}
.yb5{bottom:9.800000pt;}
.y200{bottom:9.906667pt;}
.y6c{bottom:9.920000pt;}
.y1f0{bottom:9.946667pt;}
.y264{bottom:10.080000pt;}
.y293{bottom:10.106667pt;}
.yd9{bottom:10.240000pt;}
.y27e{bottom:10.560000pt;}
.y26f{bottom:10.720000pt;}
.y269{bottom:10.893333pt;}
.y280{bottom:14.560000pt;}
.y286{bottom:14.720000pt;}
.y2bb{bottom:16.480000pt;}
.y13f{bottom:16.640000pt;}
.y6d{bottom:16.800000pt;}
.y307{bottom:17.120000pt;}
.y27f{bottom:18.240000pt;}
.y270{bottom:18.400000pt;}
.y26c{bottom:18.573333pt;}
.y296{bottom:20.800000pt;}
.y289{bottom:21.440000pt;}
.y1f2{bottom:26.080000pt;}
.y268{bottom:26.093333pt;}
.y305{bottom:26.120000pt;}
.y2af{bottom:29.773333pt;}
.y20a{bottom:31.053333pt;}
.ya3{bottom:31.693333pt;}
.y31f{bottom:32.973333pt;}
.y26b{bottom:33.773333pt;}
.y17a{bottom:35.693333pt;}
.y275{bottom:38.560000pt;}
.y266{bottom:41.440000pt;}
.y26a{bottom:49.120000pt;}
.y2b8{bottom:56.000000pt;}
.y1fd{bottom:56.466667pt;}
.y1ec{bottom:56.480000pt;}
.y1f6{bottom:56.506667pt;}
.y2ae{bottom:56.680000pt;}
.y209{bottom:57.933333pt;}
.ya2{bottom:58.573333pt;}
.y179{bottom:62.573333pt;}
.y27b{bottom:64.160000pt;}
.y1e4{bottom:66.720000pt;}
.y1da{bottom:76.840000pt;}
.y2ad{bottom:83.560000pt;}
.y28e{bottom:83.840000pt;}
.y208{bottom:84.813333pt;}
.ya1{bottom:85.293333pt;}
.y178{bottom:89.293333pt;}
.y172{bottom:91.560000pt;}
.y2c0{bottom:94.400000pt;}
.y233{bottom:94.752000pt;}
.y29a{bottom:99.080000pt;}
.y1ab{bottom:100.040000pt;}
.y9d{bottom:101.160000pt;}
.y2d{bottom:104.352000pt;}
.y52{bottom:105.472000pt;}
.y3d{bottom:105.792000pt;}
.yfc{bottom:108.680000pt;}
.y31d{bottom:108.960000pt;}
.yd4{bottom:109.640000pt;}
.y16f{bottom:110.440000pt;}
.y207{bottom:111.720000pt;}
.ya0{bottom:112.200000pt;}
.y232{bottom:112.352000pt;}
.y1d5{bottom:112.672000pt;}
.y1e{bottom:114.272000pt;}
.y114{bottom:114.592000pt;}
.y17{bottom:115.072000pt;}
.y1c6{bottom:115.232000pt;}
.y177{bottom:116.173333pt;}
.y29e{bottom:118.706667pt;}
.y1aa{bottom:119.080000pt;}
.y47{bottom:120.672000pt;}
.y9a{bottom:121.160000pt;}
.y2aa{bottom:121.640000pt;}
.y2fa{bottom:122.432000pt;}
.y2a0{bottom:122.706667pt;}
.y1fc{bottom:126.920000pt;}
.yfb{bottom:128.680000pt;}
.y31b{bottom:129.000000pt;}
.y16d{bottom:129.480000pt;}
.yd3{bottom:129.640000pt;}
.y113{bottom:129.952000pt;}
.y1c5{bottom:130.432000pt;}
.y13c{bottom:135.066667pt;}
.y1a9{bottom:137.960000pt;}
.y2c{bottom:138.266667pt;}
.y2d8{bottom:138.586667pt;}
.y206{bottom:138.600000pt;}
.y9f{bottom:139.080000pt;}
.y51{bottom:139.386667pt;}
.y3c{bottom:139.706667pt;}
.y2f9{bottom:139.866667pt;}
.y29b{bottom:140.626667pt;}
.y99{bottom:141.160000pt;}
.y176{bottom:143.080000pt;}
.y2a9{bottom:144.200000pt;}
.y254{bottom:144.666667pt;}
.y231{bottom:146.106667pt;}
.y204{bottom:147.240000pt;}
.y1d{bottom:148.186667pt;}
.y16c{bottom:148.520000pt;}
.yfa{bottom:148.680000pt;}
.y31a{bottom:149.000000pt;}
.yd2{bottom:149.640000pt;}
.y46{bottom:154.586667pt;}
.y16{bottom:155.226667pt;}
.y2d7{bottom:156.026667pt;}
.y1a8{bottom:157.000000pt;}
.y98{bottom:161.160000pt;}
.y253{bottom:162.266667pt;}
.y230{bottom:163.706667pt;}
.y112{bottom:163.866667pt;}
.y1c4{bottom:164.506667pt;}
.y2a8{bottom:166.760000pt;}
.y203{bottom:167.400000pt;}
.y16b{bottom:167.560000pt;}
.yf9{bottom:168.680000pt;}
.y273{bottom:168.800000pt;}
.y13b{bottom:168.986667pt;}
.y319{bottom:169.000000pt;}
.yd1{bottom:169.640000pt;}
.y175{bottom:169.960000pt;}
.y2b{bottom:172.186667pt;}
.y50{bottom:173.306667pt;}
.y3b{bottom:173.626667pt;}
.y1a7{bottom:176.040000pt;}
.y2f8{bottom:176.346667pt;}
.y111{bottom:179.226667pt;}
.y2b6{bottom:179.520000pt;}
.y1c3{bottom:179.866667pt;}
.y97{bottom:181.160000pt;}
.y1c{bottom:182.106667pt;}
.y13a{bottom:184.026667pt;}
.y16a{bottom:186.440000pt;}
.y202{bottom:187.720000pt;}
.y45{bottom:188.506667pt;}
.yf8{bottom:188.680000pt;}
.y2a7{bottom:189.320000pt;}
.yd0{bottom:189.640000pt;}
.y2f7{bottom:193.786667pt;}
.y110{bottom:194.586667pt;}
.y1c2{bottom:195.066667pt;}
.y1a6{bottom:195.080000pt;}
.y15{bottom:195.386667pt;}
.y252{bottom:195.866667pt;}
.y22f{bottom:197.306667pt;}
.y96{bottom:201.160000pt;}
.y169{bottom:205.480000pt;}
.y2a{bottom:206.106667pt;}
.y4f{bottom:207.226667pt;}
.y3a{bottom:207.546667pt;}
.y201{bottom:208.040000pt;}
.yf7{bottom:208.680000pt;}
.ycf{bottom:209.640000pt;}
.y2d6{bottom:210.106667pt;}
.y2a5{bottom:211.720000pt;}
.y1b{bottom:212.186667pt;}
.y251{bottom:213.466667pt;}
.y1a5{bottom:213.960000pt;}
.y22e{bottom:214.906667pt;}
.y139{bottom:218.266667pt;}
.y94{bottom:221.160000pt;}
.y44{bottom:222.586667pt;}
.y167{bottom:224.520000pt;}
.y2d5{bottom:227.546667pt;}
.y1fe{bottom:228.200000pt;}
.y10f{bottom:228.506667pt;}
.yf6{bottom:228.680000pt;}
.y1c1{bottom:229.146667pt;}
.yce{bottom:229.640000pt;}
.y2f6{bottom:230.266667pt;}
.y22d{bottom:232.506667pt;}
.y1a4{bottom:233.000000pt;}
.y138{bottom:233.466667pt;}
.y2a4{bottom:234.280000pt;}
.y14{bottom:235.546667pt;}
.y29{bottom:240.026667pt;}
.y4e{bottom:241.146667pt;}
.y91{bottom:241.160000pt;}
.y39{bottom:241.466667pt;}
.y164{bottom:243.560000pt;}
.y10e{bottom:243.706667pt;}
.y1c0{bottom:244.506667pt;}
.y250{bottom:247.066667pt;}
.y2f5{bottom:247.706667pt;}
.yf5{bottom:248.680000pt;}
.y1f5{bottom:249.160000pt;}
.y318{bottom:249.640000pt;}
.ycd{bottom:249.666667pt;}
.y1a3{bottom:252.066667pt;}
.y43{bottom:256.546667pt;}
.y2a3{bottom:256.866667pt;}
.y90{bottom:261.186667pt;}
.y163{bottom:262.466667pt;}
.y2d4{bottom:264.066667pt;}
.y24f{bottom:264.866667pt;}
.y22c{bottom:266.306667pt;}
.y137{bottom:267.586667pt;}
.yf4{bottom:268.706667pt;}
.y1fa{bottom:269.506667pt;}
.y316{bottom:269.640000pt;}
.ycc{bottom:269.666667pt;}
.y1a2{bottom:271.106667pt;}
.y28{bottom:273.986667pt;}
.y4d{bottom:275.106667pt;}
.y38{bottom:275.426667pt;}
.y13{bottom:275.906667pt;}
.y10d{bottom:277.986667pt;}
.y1bf{bottom:278.626667pt;}
.y2a2{bottom:279.426667pt;}
.y66{bottom:280.386667pt;}
.y8f{bottom:281.186667pt;}
.y162{bottom:281.506667pt;}
.y2d3{bottom:281.666667pt;}
.y24e{bottom:282.466667pt;}
.y136{bottom:282.946667pt;}
.y22b{bottom:283.906667pt;}
.y2f4{bottom:284.226667pt;}
.yf3{bottom:288.706667pt;}
.ycb{bottom:289.666667pt;}
.y1a1{bottom:289.986667pt;}
.y42{bottom:290.466667pt;}
.y10c{bottom:293.186667pt;}
.y1be{bottom:293.826667pt;}
.y161{bottom:300.546667pt;}
.y8e{bottom:301.186667pt;}
.y2f3{bottom:301.506667pt;}
.y2a1{bottom:301.986667pt;}
.y27{bottom:307.906667pt;}
.yf2{bottom:308.706667pt;}
.y4c{bottom:309.026667pt;}
.y37{bottom:309.346667pt;}
.yca{bottom:309.666667pt;}
.y1f9{bottom:309.986667pt;}
.y12{bottom:316.066667pt;}
.y135{bottom:316.866667pt;}
.y22a{bottom:317.506667pt;}
.y2d2{bottom:317.986667pt;}
.y160{bottom:319.586667pt;}
.y8d{bottom:321.186667pt;}
.y41{bottom:324.386667pt;}
.y29f{bottom:324.546667pt;}
.y10b{bottom:327.266667pt;}
.y1bd{bottom:327.906667pt;}
.y1a0{bottom:328.066667pt;}
.yf1{bottom:328.706667pt;}
.y65{bottom:329.506667pt;}
.yc9{bottom:329.666667pt;}
.y1f8{bottom:330.306667pt;}
.y134{bottom:332.066667pt;}
.y24d{bottom:333.506667pt;}
.y229{bottom:335.106667pt;}
.y2d1{bottom:335.586667pt;}
.y2f2{bottom:338.146667pt;}
.y15f{bottom:338.466667pt;}
.y8c{bottom:341.186667pt;}
.y26{bottom:341.826667pt;}
.y10a{bottom:342.626667pt;}
.y4b{bottom:342.946667pt;}
.y36{bottom:343.266667pt;}
.y29d{bottom:346.306667pt;}
.y19f{bottom:347.106667pt;}
.yf0{bottom:348.706667pt;}
.yc8{bottom:349.666667pt;}
.y1f7{bottom:350.466667pt;}
.y228{bottom:352.706667pt;}
.y2f1{bottom:355.586667pt;}
.y11{bottom:356.226667pt;}
.y15e{bottom:357.506667pt;}
.y40{bottom:358.306667pt;}
.y8b{bottom:361.186667pt;}
.y64{bottom:365.506667pt;}
.y19e{bottom:365.986667pt;}
.y133{bottom:366.306667pt;}
.y24c{bottom:367.426667pt;}
.y29c{bottom:368.226667pt;}
.yef{bottom:368.706667pt;}
.yc7{bottom:369.666667pt;}
.y1f1{bottom:370.786667pt;}
.y2d0{bottom:372.066667pt;}
.y2f0{bottom:373.186667pt;}
.y25{bottom:375.746667pt;}
.y109{bottom:376.546667pt;}
.y4a{bottom:376.866667pt;}
.y35{bottom:377.186667pt;}
.y8a{bottom:381.186667pt;}
.y132{bottom:381.666667pt;}
.y19d{bottom:385.026667pt;}
.y227{bottom:386.466667pt;}
.yee{bottom:388.706667pt;}
.y2cf{bottom:389.506667pt;}
.yc6{bottom:389.666667pt;}
.y28d{bottom:390.146667pt;}
.y315{bottom:390.466667pt;}
.y1f4{bottom:391.106667pt;}
.y108{bottom:391.906667pt;}
.y3f{bottom:392.226667pt;}
.y1bc{bottom:392.546667pt;}
.y15d{bottom:395.586667pt;}
.y10{bottom:396.386667pt;}
.y262{bottom:401.026667pt;}
.y89{bottom:401.186667pt;}
.y63{bottom:401.346667pt;}
.y226{bottom:403.906667pt;}
.y19c{bottom:404.066667pt;}
.y49{bottom:406.946667pt;}
.yed{bottom:408.706667pt;}
.y24{bottom:409.666667pt;}
.y313{bottom:410.466667pt;}
.y34{bottom:411.106667pt;}
.y1f3{bottom:411.266667pt;}
.y298{bottom:412.546667pt;}
.y107{bottom:413.826667pt;}
.y15c{bottom:414.466667pt;}
.y131{bottom:415.586667pt;}
.y24b{bottom:418.626667pt;}
.y88{bottom:421.186667pt;}
.y3e{bottom:422.146667pt;}
.y19b{bottom:423.106667pt;}
.y2ce{bottom:425.986667pt;}
.y1bb{bottom:426.626667pt;}
.y2ef{bottom:427.266667pt;}
.yec{bottom:428.706667pt;}
.yc5{bottom:429.666667pt;}
.y312{bottom:430.506667pt;}
.y130{bottom:430.946667pt;}
.y1eb{bottom:432.226667pt;}
.y15b{bottom:433.506667pt;}
.y299{bottom:435.106667pt;}
.y106{bottom:435.586667pt;}
.y24a{bottom:436.226667pt;}
.yf{bottom:436.546667pt;}
.y62{bottom:437.186667pt;}
.y225{bottom:437.666667pt;}
.y87{bottom:441.186667pt;}
.y1ba{bottom:441.826667pt;}
.y19a{bottom:441.986667pt;}
.y2cd{bottom:443.426667pt;}
.y23{bottom:443.586667pt;}
.y33{bottom:445.026667pt;}
.y12f{bottom:446.146667pt;}
.yeb{bottom:448.706667pt;}
.yc4{bottom:449.666667pt;}
.y311{bottom:450.506667pt;}
.y15a{bottom:452.546667pt;}
.y224{bottom:455.266667pt;}
.y294{bottom:456.546667pt;}
.y199{bottom:461.026667pt;}
.y86{bottom:461.186667pt;}
.y2ee{bottom:463.746667pt;}
.y105{bottom:463.906667pt;}
.y32c{bottom:465.386667pt;}
.yea{bottom:468.706667pt;}
.yc3{bottom:469.666667pt;}
.y249{bottom:469.826667pt;}
.y310{bottom:470.506667pt;}
.y159{bottom:471.586667pt;}
.y61{bottom:472.866667pt;}
.y22{bottom:473.506667pt;}
.y1b9{bottom:475.906667pt;}
.ye{bottom:476.866667pt;}
.y32{bottom:478.946667pt;}
.y295{bottom:479.106667pt;}
.y198{bottom:480.066667pt;}
.y12e{bottom:480.226667pt;}
.y85{bottom:481.186667pt;}
.y2cc{bottom:484.226667pt;}
.y32b{bottom:485.386667pt;}
.y248{bottom:487.586667pt;}
.ye9{bottom:488.706667pt;}
.y223{bottom:488.866667pt;}
.yc2{bottom:489.666667pt;}
.y158{bottom:490.466667pt;}
.y30f{bottom:490.506667pt;}
.y1b8{bottom:491.266667pt;}
.y1ef{bottom:493.026667pt;}
.y104{bottom:493.986667pt;}
.y12d{bottom:495.586667pt;}
.y2ed{bottom:498.786667pt;}
.y196{bottom:499.106667pt;}
.y291{bottom:500.546667pt;}
.y83{bottom:501.186667pt;}
.y32a{bottom:505.386667pt;}
.y222{bottom:506.653333pt;}
.y60{bottom:508.733333pt;}
.y157{bottom:509.533333pt;}
.yc1{bottom:509.693333pt;}
.y30e{bottom:510.506667pt;}
.y31{bottom:512.893333pt;}
.y1ee{bottom:513.373333pt;}
.y2cb{bottom:516.413333pt;}
.yd{bottom:517.053333pt;}
.y195{bottom:518.013333pt;}
.y82{bottom:521.213333pt;}
.y290{bottom:523.133333pt;}
.y1b7{bottom:525.213333pt;}
.y329{bottom:525.386667pt;}
.y156{bottom:528.573333pt;}
.ye8{bottom:528.733333pt;}
.yc0{bottom:529.693333pt;}
.y30c{bottom:530.506667pt;}
.y2b5{bottom:530.973333pt;}
.y1ed{bottom:533.693333pt;}
.y2ec{bottom:535.293333pt;}
.y194{bottom:537.053333pt;}
.y247{bottom:538.813333pt;}
.y221{bottom:540.253333pt;}
.y81{bottom:541.213333pt;}
.y5f{bottom:544.573333pt;}
.y12c{bottom:544.893333pt;}
.y328{bottom:545.386667pt;}
.y28f{bottom:545.693333pt;}
.y30{bottom:546.813333pt;}
.y155{bottom:547.613333pt;}
.ye7{bottom:548.733333pt;}
.ybf{bottom:549.693333pt;}
.y304{bottom:551.133333pt;}
.y30a{bottom:551.146667pt;}
.y2eb{bottom:552.733333pt;}
.y2bf{bottom:554.173333pt;}
.y1e3{bottom:554.493333pt;}
.y193{bottom:556.093333pt;}
.y246{bottom:556.253333pt;}
.yc{bottom:557.213333pt;}
.y220{bottom:557.853333pt;}
.y1b6{bottom:559.133333pt;}
.y80{bottom:561.213333pt;}
.y327{bottom:565.373333pt;}
.y154{bottom:566.493333pt;}
.y272{bottom:567.613333pt;}
.ye6{bottom:568.733333pt;}
.ybe{bottom:569.693333pt;}
.y261{bottom:572.413333pt;}
.y308{bottom:574.533333pt;}
.y1b5{bottom:574.653333pt;}
.y1ea{bottom:574.813333pt;}
.y192{bottom:575.133333pt;}
.y2ca{bottom:577.373333pt;}
.y12b{bottom:578.973333pt;}
.y5e{bottom:580.413333pt;}
.y7f{bottom:581.213333pt;}
.y2f{bottom:583.133333pt;}
.y326{bottom:585.413333pt;}
.y153{bottom:585.533333pt;}
.ye5{bottom:588.733333pt;}
.y2ea{bottom:589.213333pt;}
.ybd{bottom:589.693333pt;}
.y245{bottom:590.013333pt;}
.y21f{bottom:591.453333pt;}
.y191{bottom:594.013333pt;}
.y12a{bottom:594.333333pt;}
.y1e9{bottom:595.133333pt;}
.yb{bottom:597.373333pt;}
.y2c9{bottom:599.453333pt;}
.y28a{bottom:599.613333pt;}
.y7e{bottom:601.213333pt;}
.y152{bottom:604.573333pt;}
.y325{bottom:605.413333pt;}
.y2e9{bottom:606.653333pt;}
.y244{bottom:607.613333pt;}
.ye4{bottom:608.733333pt;}
.y21e{bottom:608.893333pt;}
.ybc{bottom:609.693333pt;}
.y190{bottom:613.053333pt;}
.y1e8{bottom:615.293333pt;}
.y288{bottom:621.053333pt;}
.y7d{bottom:621.213333pt;}
.y2c8{bottom:621.693333pt;}
.y151{bottom:623.613333pt;}
.y260{bottom:623.773333pt;}
.y1b4{bottom:623.933333pt;}
.y324{bottom:625.413333pt;}
.y129{bottom:628.253333pt;}
.ye3{bottom:628.733333pt;}
.y5d{bottom:629.373333pt;}
.ybb{bottom:629.693333pt;}
.y18f{bottom:632.093333pt;}
.y1e7{bottom:635.613333pt;}
.ya{bottom:637.533333pt;}
.y1b3{bottom:639.293333pt;}
.y7c{bottom:641.213333pt;}
.y243{bottom:641.373333pt;}
.y150{bottom:642.493333pt;}
.y21d{bottom:642.813333pt;}
.y2e8{bottom:643.133333pt;}
.y1d0{bottom:643.453333pt;}
.y128{bottom:643.613333pt;}
.y2c7{bottom:643.773333pt;}
.y323{bottom:646.213333pt;}
.ye2{bottom:648.733333pt;}
.yba{bottom:649.693333pt;}
.y18e{bottom:651.133333pt;}
.y31e{bottom:653.400000pt;}
.y1e6{bottom:655.933333pt;}
.y242{bottom:658.973333pt;}
.y21c{bottom:660.413333pt;}
.y2e7{bottom:660.573333pt;}
.y7b{bottom:661.213333pt;}
.y14f{bottom:661.533333pt;}
.y303{bottom:663.013333pt;}
.y2c6{bottom:665.853333pt;}
.y287{bottom:666.173333pt;}
.y322{bottom:666.213333pt;}
.ye1{bottom:668.733333pt;}
.yb9{bottom:669.693333pt;}
.y18d{bottom:670.013333pt;}
.y25f{bottom:674.973333pt;}
.y1e5{bottom:676.093333pt;}
.y127{bottom:677.533333pt;}
.y9{bottom:677.693333pt;}
.y21b{bottom:678.013333pt;}
.y2e6{bottom:678.173333pt;}
.y5c{bottom:678.493333pt;}
.y14e{bottom:680.573333pt;}
.y7a{bottom:681.213333pt;}
.y1b2{bottom:682.973333pt;}
.y321{bottom:686.213333pt;}
.y2c5{bottom:688.093333pt;}
.y27a{bottom:688.573333pt;}
.ye0{bottom:688.733333pt;}
.y18c{bottom:689.053333pt;}
.yb8{bottom:689.693333pt;}
.y241{bottom:692.573333pt;}
.y1cf{bottom:692.733333pt;}
.y126{bottom:692.893333pt;}
.y302{bottom:693.093333pt;}
.y1d9{bottom:697.053333pt;}
.y14d{bottom:699.613333pt;}
.y79{bottom:701.213333pt;}
.y125{bottom:708.093333pt;}
.ydf{bottom:708.733333pt;}
.y32d{bottom:708.760000pt;}
.yb7{bottom:709.693333pt;}
.y240{bottom:710.173333pt;}
.y2c2{bottom:710.186667pt;}
.y1b1{bottom:711.293333pt;}
.y21a{bottom:711.613333pt;}
.y5b{bottom:714.493333pt;}
.y2e5{bottom:714.653333pt;}
.y1e2{bottom:717.373333pt;}
.y8{bottom:718.013333pt;}
.y14a{bottom:718.506667pt;}
.y284{bottom:720.573333pt;}
.y78{bottom:721.213333pt;}
.y25e{bottom:726.173333pt;}
.y1ce{bottom:726.973333pt;}
.y18b{bottom:727.133333pt;}
.y23f{bottom:727.933333pt;}
.yde{bottom:728.733333pt;}
.y219{bottom:729.213333pt;}
.yb6{bottom:729.693333pt;}
.y2e4{bottom:732.093333pt;}
.y2c1{bottom:732.253333pt;}
.y149{bottom:737.533333pt;}
.y1e1{bottom:737.693333pt;}
.y77{bottom:741.213333pt;}
.y124{bottom:742.333333pt;}
.y25d{bottom:743.933333pt;}
.y18a{bottom:746.013333pt;}
.ydd{bottom:748.733333pt;}
.yb3{bottom:749.693333pt;}
.y5a{bottom:750.333333pt;}
.y281{bottom:752.573333pt;}
.y2be{bottom:754.533333pt;}
.y148{bottom:756.613333pt;}
.y123{bottom:757.573333pt;}
.y1e0{bottom:757.893333pt;}
.y7{bottom:758.213333pt;}
.y76{bottom:761.253333pt;}
.y23e{bottom:761.573333pt;}
.y218{bottom:763.013333pt;}
.y188{bottom:765.093333pt;}
.y2e3{bottom:768.613333pt;}
.ydc{bottom:768.773333pt;}
.yb2{bottom:769.733333pt;}
.y27d{bottom:774.213333pt;}
.y147{bottom:775.653333pt;}
.y1cd{bottom:776.293333pt;}
.y25c{bottom:777.413333pt;}
.y2b7{bottom:777.733333pt;}
.y1df{bottom:778.213333pt;}
.y23d{bottom:779.173333pt;}
.y217{bottom:780.613333pt;}
.y75{bottom:781.253333pt;}
.y187{bottom:784.133333pt;}
.y2e2{bottom:785.893333pt;}
.y59{bottom:786.053333pt;}
.ydb{bottom:788.773333pt;}
.yb1{bottom:789.733333pt;}
.y122{bottom:791.653333pt;}
.y144{bottom:794.533333pt;}
.y25b{bottom:795.173333pt;}
.y216{bottom:798.053333pt;}
.y6{bottom:798.373333pt;}
.y1de{bottom:798.533333pt;}
.y2bd{bottom:800.933333pt;}
.y74{bottom:801.253333pt;}
.y186{bottom:803.173333pt;}
.y27c{bottom:806.213333pt;}
.y121{bottom:807.013333pt;}
.yda{bottom:808.773333pt;}
.yb0{bottom:809.733333pt;}
.y25a{bottom:812.613333pt;}
.y23c{bottom:812.773333pt;}
.y143{bottom:813.573333pt;}
.y1dc{bottom:818.693333pt;}
.y73{bottom:821.253333pt;}
.y58{bottom:821.893333pt;}
.y185{bottom:822.053333pt;}
.y2e1{bottom:822.533333pt;}
.y1cc{bottom:825.413333pt;}
.y274{bottom:827.653333pt;}
.yd7{bottom:828.773333pt;}
.yaf{bottom:829.733333pt;}
.y23b{bottom:830.373333pt;}
.y215{bottom:831.813333pt;}
.y140{bottom:832.613333pt;}
.y2bc{bottom:833.573333pt;}
.y1db{bottom:839.013333pt;}
.y2e0{bottom:840.133333pt;}
.y120{bottom:840.933333pt;}
.y184{bottom:841.093333pt;}
.y71{bottom:841.253333pt;}
.y259{bottom:846.373333pt;}
.y5{bottom:847.493333pt;}
.y23a{bottom:848.133333pt;}
.y214{bottom:849.413333pt;}
.yae{bottom:849.733333pt;}
.y279{bottom:850.213333pt;}
.y13e{bottom:852.293333pt;}
.y301{bottom:855.813333pt;}
.y1cb{bottom:856.133333pt;}
.y11f{bottom:856.293333pt;}
.y2ba{bottom:856.773333pt;}
.y2df{bottom:857.573333pt;}
.y57{bottom:857.733333pt;}
.y1d7{bottom:859.960000pt;}
.y1d6{bottom:859.973333pt;}
.y183{bottom:860.133333pt;}
.y6f{bottom:861.253333pt;}
.y258{bottom:864.133333pt;}
.y174{bottom:865.720000pt;}
.yad{bottom:869.733333pt;}
.y278{bottom:871.653333pt;}
.y300{bottom:876.133333pt;}
.y2b9{bottom:878.853333pt;}
.y182{bottom:879.173333pt;}
.y257{bottom:881.573333pt;}
.y239{bottom:881.733333pt;}
.y6b{bottom:882.213333pt;}
.y213{bottom:883.173333pt;}
.y4{bottom:883.493333pt;}
.yac{bottom:889.733333pt;}
.y11e{bottom:890.373333pt;}
.y56{bottom:893.573333pt;}
.y276{bottom:894.213333pt;}
.y205{bottom:895.320000pt;}
.y13d{bottom:898.053333pt;}
.y238{bottom:899.333333pt;}
.y2b4{bottom:899.653333pt;}
.y212{bottom:900.773333pt;}
.y11d{bottom:905.573333pt;}
.y21{bottom:906.693333pt;}
.yab{bottom:909.733333pt;}
.y2de{bottom:911.653333pt;}
.y9e{bottom:912.440000pt;}
.y2ff{bottom:912.613333pt;}
.y256{bottom:915.173333pt;}
.y26e{bottom:915.653333pt;}
.y1d4{bottom:916.133333pt;}
.y181{bottom:917.093333pt;}
.y2b2{bottom:921.573333pt;}
.y3{bottom:926.373333pt;}
.y6a{bottom:928.133333pt;}
.y55{bottom:929.413333pt;}
.yaa{bottom:929.733333pt;}
.y2fe{bottom:930.213333pt;}
.y237{bottom:932.933333pt;}
.y48{bottom:933.573333pt;}
.y20{bottom:933.733333pt;}
.y211{bottom:934.213333pt;}
.y180{bottom:936.133333pt;}
.y11c{bottom:939.653333pt;}
.y2b3{bottom:944.133333pt;}
.y2fd{bottom:947.813333pt;}
.y2dd{bottom:948.133333pt;}
.y267{bottom:948.280000pt;}
.y265{bottom:948.293333pt;}
.ya9{bottom:949.733333pt;}
.y1d3{bottom:950.053333pt;}
.y236{bottom:950.533333pt;}
.y210{bottom:951.973333pt;}
.y11b{bottom:955.013333pt;}
.y17f{bottom:955.173333pt;}
.y2ac{bottom:956.120000pt;}
.y69{bottom:958.053333pt;}
.y1a{bottom:960.453333pt;}
.y1f{bottom:960.613333pt;}
.y2b1{bottom:964.933333pt;}
.y54{bottom:965.093333pt;}
.y2dc{bottom:965.573333pt;}
.y235{bottom:968.133333pt;}
.y20f{bottom:969.573333pt;}
.ya8{bottom:969.733333pt;}
.y1ca{bottom:970.213333pt;}
.y2{bottom:973.733333pt;}
.y17e{bottom:974.053333pt;}
.y1d2{bottom:983.973333pt;}
.y255{bottom:984.133333pt;}
.y2fc{bottom:984.453333pt;}
.y2e{bottom:987.333333pt;}
.y19{bottom:987.493333pt;}
.y68{bottom:987.973333pt;}
.y11a{bottom:988.933333pt;}
.ya7{bottom:989.733333pt;}
.y17d{bottom:993.093333pt;}
.y20e{bottom:995.013333pt;}
.y234{bottom:1001.893333pt;}
.y2db{bottom:1002.053333pt;}
.y119{bottom:1004.293333pt;}
.y263{bottom:1009.600000pt;}
.ya6{bottom:1009.760000pt;}
.y2b0{bottom:1009.920000pt;}
.y17c{bottom:1012.160000pt;}
.y1{bottom:1012.960000pt;}
.y53{bottom:1014.240000pt;}
.y18{bottom:1014.400000pt;}
.y1d1{bottom:1017.920000pt;}
.y67{bottom:1018.080000pt;}
.y2fb{bottom:1019.360000pt;}
.y118{bottom:1019.520000pt;}
.y20d{bottom:1019.680000pt;}
.yd5{bottom:1029.440000pt;}
.y100{bottom:1029.760000pt;}
.y1c9{bottom:1030.240000pt;}
.y117{bottom:1030.400000pt;}
.yfd{bottom:1030.560000pt;}
.y101{bottom:1030.880000pt;}
.y1ac{bottom:1031.040000pt;}
.y1ad{bottom:1031.680000pt;}
.yfe{bottom:1031.840000pt;}
.y1b0{bottom:1032.160000pt;}
.y103{bottom:1033.920000pt;}
.y2d9{bottom:1034.080000pt;}
.y102{bottom:1034.400000pt;}
.y1ae{bottom:1035.360000pt;}
.y1c7{bottom:1147.506667pt;}
.y115{bottom:1347.053333pt;}
.h17{height:-224.493333pt;}
.h28{height:-24.946667pt;}
.h5a{height:17.760000pt;}
.h1c{height:18.866667pt;}
.h24{height:18.872000pt;}
.h1e{height:18.880000pt;}
.h21{height:18.898667pt;}
.h26{height:18.906667pt;}
.h1b{height:19.026667pt;}
.h22{height:19.032000pt;}
.h1f{height:19.040000pt;}
.h27{height:19.058667pt;}
.h1d{height:19.060000pt;}
.h20{height:19.066667pt;}
.h9{height:19.986667pt;}
.h10{height:19.992000pt;}
.hc{height:20.000000pt;}
.he{height:20.018667pt;}
.hb{height:20.020000pt;}
.hd{height:20.026667pt;}
.h61{height:20.032000pt;}
.h2e{height:20.146667pt;}
.h32{height:20.160000pt;}
.h2f{height:20.180000pt;}
.h2d{height:20.306667pt;}
.h3a{height:20.312000pt;}
.h30{height:20.320000pt;}
.h38{height:20.338667pt;}
.h34{height:20.346667pt;}
.h5f{height:20.626667pt;}
.h14{height:20.946667pt;}
.h45{height:21.106667pt;}
.h48{height:21.120000pt;}
.h4f{height:21.266667pt;}
.h53{height:21.272000pt;}
.h4c{height:21.280000pt;}
.h52{height:21.298667pt;}
.h4d{height:21.306667pt;}
.h15{height:22.080000pt;}
.h64{height:22.120000pt;}
.h13{height:22.240000pt;}
.h60{height:23.378667pt;}
.h1a{height:27.506667pt;}
.h2a{height:27.512000pt;}
.h2b{height:27.520000pt;}
.h7{height:27.666667pt;}
.h41{height:30.546667pt;}
.h4a{height:30.560000pt;}
.h47{height:30.720000pt;}
.hf{height:33.902500pt;}
.h35{height:33.955833pt;}
.ha{height:34.062500pt;}
.h23{height:34.083833pt;}
.h3{height:35.363437pt;}
.h44{height:39.402500pt;}
.h58{height:42.226667pt;}
.h55{height:42.546667pt;}
.h4e{height:42.706667pt;}
.h5e{height:44.020000pt;}
.h12{height:44.907500pt;}
.h29{height:44.965000pt;}
.h62{height:46.720000pt;}
.h3c{height:47.322500pt;}
.h6{height:47.380000pt;}
.h4{height:48.558750pt;}
.h63{height:49.336436pt;}
.h8{height:50.062500pt;}
.h5b{height:51.500000pt;}
.h5{height:51.733125pt;}
.h49{height:52.160000pt;}
.h2{height:52.781250pt;}
.h19{height:54.598989pt;}
.h16{height:55.402500pt;}
.h36{height:60.786667pt;}
.h40{height:61.306667pt;}
.h3e{height:61.312000pt;}
.h3f{height:61.320000pt;}
.h18{height:61.410000pt;}
.h3d{height:76.964840pt;}
.h43{height:86.546667pt;}
.h54{height:97.320000pt;}
.h57{height:121.266667pt;}
.h39{height:121.592000pt;}
.h37{height:121.618667pt;}
.h33{height:121.626667pt;}
.h46{height:137.626667pt;}
.h31{height:141.920000pt;}
.h3b{height:152.360000pt;}
.h11{height:152.840000pt;}
.h2c{height:162.253333pt;}
.h4b{height:176.826667pt;}
.h25{height:183.720000pt;}
.h59{height:198.240000pt;}
.h51{height:246.578667pt;}
.h50{height:290.258667pt;}
.h42{height:346.586667pt;}
.h56{height:368.026667pt;}
.h5c{height:793.760000pt;}
.h5d{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w38{width:45.106667pt;}
.w2b{width:45.746667pt;}
.w1d{width:47.346667pt;}
.w39{width:49.746667pt;}
.w2d{width:50.066667pt;}
.w2e{width:50.226667pt;}
.w31{width:50.240000pt;}
.w34{width:50.258667pt;}
.w33{width:50.272000pt;}
.w2f{width:50.386667pt;}
.w32{width:50.400000pt;}
.w30{width:50.418667pt;}
.w35{width:54.226667pt;}
.w1c{width:54.752000pt;}
.w4{width:56.000000pt;}
.w23{width:56.312000pt;}
.w19{width:56.632000pt;}
.w21{width:56.640000pt;}
.w12{width:66.232000pt;}
.w2{width:70.712000pt;}
.wc{width:74.880000pt;}
.wf{width:75.386667pt;}
.w1e{width:77.458667pt;}
.w22{width:77.460000pt;}
.w20{width:78.426667pt;}
.wa{width:84.792000pt;}
.w5{width:85.312000pt;}
.w24{width:89.618667pt;}
.w1a{width:89.938667pt;}
.wb{width:93.778667pt;}
.w13{width:94.578667pt;}
.w14{width:103.872000pt;}
.w1f{width:105.746667pt;}
.w6{width:112.018667pt;}
.wd{width:112.832000pt;}
.w37{width:113.792000pt;}
.w29{width:114.112000pt;}
.w2a{width:114.120000pt;}
.w1b{width:122.880000pt;}
.we{width:131.538667pt;}
.w17{width:141.786667pt;}
.w3{width:150.573333pt;}
.w7{width:150.906667pt;}
.w15{width:160.653333pt;}
.w16{width:160.666667pt;}
.w11{width:321.346667pt;}
.w18{width:603.480000pt;}
.w10{width:610.520000pt;}
.w25{width:638.360000pt;}
.w9{width:647.320000pt;}
.w3a{width:647.466667pt;}
.w8{width:647.480000pt;}
.w26{width:655.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2c{width:859.440000pt;}
.w36{width:1007.960000pt;}
.w27{width:1122.560000pt;}
.w28{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x5f{left:4.640000pt;}
.x10{left:5.600000pt;}
.x21{left:6.560000pt;}
.xd{left:7.680000pt;}
.x24{left:8.632000pt;}
.x1d{left:9.752000pt;}
.x5d{left:10.720000pt;}
.x29{left:11.992000pt;}
.x41{left:13.106667pt;}
.x9{left:14.072000pt;}
.x20{left:15.032000pt;}
.xf{left:16.346667pt;}
.x51{left:17.266667pt;}
.x1e{left:18.240000pt;}
.x17{left:20.000000pt;}
.x27{left:21.466667pt;}
.x13{left:22.866667pt;}
.x2b{left:23.866667pt;}
.x1f{left:25.146667pt;}
.x12{left:26.546667pt;}
.x1a{left:28.146667pt;}
.x38{left:29.106667pt;}
.x22{left:30.266667pt;}
.x30{left:31.546667pt;}
.x31{left:32.786667pt;}
.x25{left:33.906667pt;}
.x2f{left:34.866667pt;}
.x34{left:36.466667pt;}
.x26{left:37.586667pt;}
.x19{left:38.560000pt;}
.x23{left:39.826667pt;}
.xb{left:41.586667pt;}
.x39{left:42.560000pt;}
.x2c{left:43.520000pt;}
.x1b{left:45.266667pt;}
.x15{left:46.240000pt;}
.x47{left:47.386667pt;}
.x16{left:48.306667pt;}
.x35{left:49.586667pt;}
.x3b{left:50.546667pt;}
.x32{left:51.826667pt;}
.x5b{left:52.800000pt;}
.x18{left:53.906667pt;}
.x2a{left:55.186667pt;}
.x37{left:56.946667pt;}
.x28{left:58.546667pt;}
.x36{left:60.146667pt;}
.x3c{left:61.906667pt;}
.x46{left:63.706667pt;}
.x3d{left:65.266667pt;}
.x53{left:66.400000pt;}
.x52{left:68.640000pt;}
.x2d{left:70.720000pt;}
.x5e{left:71.840000pt;}
.x1c{left:72.960000pt;}
.x3a{left:74.600000pt;}
.x2e{left:75.560000pt;}
.x33{left:76.840000pt;}
.x54{left:80.360000pt;}
.x8{left:82.600000pt;}
.x48{left:90.280000pt;}
.x7{left:96.032000pt;}
.x4c{left:101.640000pt;}
.x49{left:103.560000pt;}
.x4a{left:105.320000pt;}
.x4b{left:106.600000pt;}
.x3f{left:108.680000pt;}
.x3{left:113.472000pt;}
.x3e{left:124.512000pt;}
.x1{left:131.232000pt;}
.x55{left:137.000000pt;}
.xa{left:153.960000pt;}
.x60{left:165.320000pt;}
.x4d{left:179.080000pt;}
.x40{left:194.120000pt;}
.x61{left:211.720000pt;}
.x56{left:226.946667pt;}
.x2{left:253.666667pt;}
.x62{left:261.800000pt;}
.x4e{left:273.666667pt;}
.x42{left:288.706667pt;}
.xc{left:305.186667pt;}
.x63{left:312.040000pt;}
.x57{left:349.826667pt;}
.xe{left:361.826667pt;}
.x43{left:364.226667pt;}
.x4f{left:377.546667pt;}
.x58{left:404.586667pt;}
.x64{left:412.866667pt;}
.x11{left:447.786667pt;}
.x59{left:451.946667pt;}
.x65{left:463.106667pt;}
.x44{left:477.706667pt;}
.x66{left:513.506667pt;}
.x5a{left:529.413333pt;}
.x50{left:538.213333pt;}
.x4{left:559.493333pt;}
.x14{left:560.453333pt;}
.x67{left:563.746667pt;}
.x45{left:609.893333pt;}
.x68{left:614.146667pt;}
.x5c{left:635.173333pt;}
.x69{left:664.426667pt;}
.x6{left:680.480000pt;}
.x5{left:687.520000pt;}
.x6a{left:714.826667pt;}
.x6b{left:765.226667pt;}
.x6c{left:815.466667pt;}
.x6d{left:865.866667pt;}
.x6e{left:916.133333pt;}
.x6f{left:966.533333pt;}
.x70{left:1016.933333pt;}
}




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