
    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_2ad1af9332514a36e7d3e8f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;font-style:normal;font-weight: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_e0242e7d801f954cc3470056.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.780000;font-style:normal;font-weight: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_976e118376e8c579f29b52e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061523;font-style:normal;font-weight: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_59ae88cd17f94b452fc30519.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.709961;font-style:normal;font-weight: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_cf5e7746ca6a3f2e492c3372.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.066406;font-style:normal;font-weight: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_6fc0c9a348fa30ccb6f1f248.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.669024;font-style:normal;font-weight: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_49efaae9e7c5f2187ba54778.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.765625;font-style:normal;font-weight: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_df564713a8d31a7787d70925.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.981000;font-style:normal;font-weight: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_df66dd62920ead6cd5a098b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.977539;font-style:normal;font-weight: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_e4ab2405a4796a4932ba1015.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e13197d0cf963d154aae9ad5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_aace6dfb07169c04b4cdda22.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.816406;font-style:normal;font-weight: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_6fc0c9a348fa30ccb6f1f248.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.669024;font-style:normal;font-weight: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_9833bc34cc6689be876b73c7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.801000;font-style:normal;font-weight: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_2099cd1c435afebfdd0fcfaf.woff2')format("woff");}.fff{font-family:fff;line-height:0.981000;font-style:normal;font-weight: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_aace6dfb07169c04b4cdda22.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.816406;font-style:normal;font-weight: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_6fc0c9a348fa30ccb6f1f248.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.669024;font-style:normal;font-weight: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_e5c7f8a3a9b5b787a21fa5b5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.818359;font-style:normal;font-weight: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_6fc0c9a348fa30ccb6f1f248.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.669024;font-style:normal;font-weight: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_2c55a7d7970864b9798a88f6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.981000;font-style:normal;font-weight: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_fffa4d0049a8abeb05fa617b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.752930;font-style:normal;font-weight: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_454690a0cec48e9065429f68.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.816406;font-style:normal;font-weight: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_f3542aac603d8c5745aedce6.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e8921676c1c456307b0bd802.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.981000;font-style:normal;font-weight: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_610f36b683d0515561f55fe7.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.816406;font-style:normal;font-weight: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_a6e9796534abfb67bb319b37.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_33ca6b48affccaef92a0e75c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.981000;font-style:normal;font-weight: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_c8db26794924ab9cb25e0127.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.833984;font-style:normal;font-weight: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_30f4db1b340682e5cd15c243.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff1e{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_dbe95a5d62b8ec31cd579835.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.816406;font-style:normal;font-weight: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_804fe80d8a25745146253561.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_e9da748f1a905fcfd45dc1f2.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.981000;font-style:normal;font-weight: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_05f5342d68b4a781f0df4e9e.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.816406;font-style:normal;font-weight: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_f8c4a0b9d85a8d58d9e333b5.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_53d4f94ad926dda1e6d3a7f5.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.981000;font-style:normal;font-weight: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_6fc0c9a348fa30ccb6f1f248.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.669024;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff26{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff27;src:url('chunks/assets/font_7dd6f2eb22fdbafe4b7aca0d.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.816406;font-style:normal;font-weight: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_e995fc7122e262226fe9bd6d.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.981000;font-style:normal;font-weight: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_57400dfb18ba9bef1565d1ca.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_143ee84ca3df8bd6d6955933.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.816406;font-style:normal;font-weight: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_2a75367459c8a05d225c1857.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.981000;font-style:normal;font-weight: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_6fc0c9a348fa30ccb6f1f248.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.669024;font-style:normal;font-weight: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_da767b937398c8b361739b96.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_8f5be711aba436a8139aead6.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.220703;font-style:normal;font-weight: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_bd02ae000181ddbe127db811.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.981000;font-style:normal;font-weight: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_6d125369e5fd233283f621ee.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.816406;font-style:normal;font-weight: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_d0bbe10e56fc402392e63edb.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.981000;font-style:normal;font-weight: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_6fc0c9a348fa30ccb6f1f248.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.669024;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_351b9a4786ce6f07d7764e5b.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff34{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff35;src:url('chunks/assets/font_724710eea825216ee3a025ef.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_5db15a1262754a2182325f04.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_351b9a4786ce6f07d7764e5b.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_f6694e47fe70ce7b1371a48d.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_96195f8410c140d14ac36b12.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_6fc0c9a348fa30ccb6f1f248.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.669024;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_351b9a4786ce6f07d7764e5b.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff3c{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_d8080b7a732fa28a665172ef.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_17634241d1c2c9972623cc94.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_3b01c78dd3955c67b404ebfc.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_aace6dfb07169c04b4cdda22.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_3b04af5aabc54c6e9407f307.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_b3cdb288eb0ef20e7d0dcd24.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_6fc0c9a348fa30ccb6f1f248.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.669024;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_0a49856bba93c13148a5da41.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.736328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff45{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff46;src:url('chunks/assets/font_3111ba837e45a8aecc0ab483.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_6fc0c9a348fa30ccb6f1f248.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.669024;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_d1496ce16b002ea8f4555158.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_7ed9e817570989104a5b7ad4.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_10d94d7f067a2cd0079e6a2b.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.988000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_d93ca002bcee5126e20e3cc5.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.823000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff4c{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_79b1224fab64d95f8da46dbb.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_468abe88cf7747b866034bef.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_15b0338281c675ab2cd0d24d.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_97b9566565b1b7b7e1d23567.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_187af534b11e327f31a8ab14.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_b5e7ab2cce165840c127ca1d.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_49efaae9e7c5f2187ba54778.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.765625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_6fc0c9a348fa30ccb6f1f248.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.669024;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_7e388b4d99483987aba7a92e.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_399699ca4a3237c424753b76.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.984375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_2f0bfcd81b2145f984b34a65.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.988000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_1d715c2b30e0fa8021287f19.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_e4ab2405a4796a4932ba1015.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_e13197d0cf963d154aae9ad5.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-94.359443px;}
.v5{vertical-align:-70.522163px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.303472px;}
.v3{vertical-align:152.393869px;}
.v4{vertical-align:187.672249px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000069px;}
.ls2{letter-spacing:0.017241px;}
.ls3{letter-spacing:0.047605px;}
.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;}
}
.ws2{word-spacing:-77.691759px;}
.ws4{word-spacing:-70.625022px;}
.ws7{word-spacing:-56.502135px;}
.ws3{word-spacing:-48.026285px;}
.wsd{word-spacing:-46.803009px;}
.ws11{word-spacing:-39.004946px;}
.ws9{word-spacing:-37.924809px;}
.wsb{word-spacing:-37.059088px;}
.wsc{word-spacing:-36.032836px;}
.ws12{word-spacing:-34.084322px;}
.ws6{word-spacing:-32.234665px;}
.wse{word-spacing:-30.342692px;}
.ws13{word-spacing:-24.652548px;}
.ws5{word-spacing:-18.006785px;}
.ws0{word-spacing:-17.502595px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:113.497678px;}
.wsa{word-spacing:289.557888px;}
.ws10{word-spacing:365.099075px;}
.wsf{word-spacing:2338.679804px;}
._4{margin-left:-1120.100430px;}
._1{margin-left:-916.682426px;}
._c{margin-left:-1.000053px;}
._1c{width:3.701065px;}
._12{width:5.934285px;}
._13{width:7.111221px;}
._22{width:8.380527px;}
._3{width:10.211586px;}
._0{width:12.156348px;}
._10{width:14.554315px;}
._19{width:15.573556px;}
._18{width:16.603835px;}
._7{width:17.920061px;}
._d{width:22.617281px;}
._a{width:23.627754px;}
._1f{width:27.226695px;}
._14{width:33.953546px;}
._8{width:41.135240px;}
._f{width:43.569864px;}
._1b{width:45.019767px;}
._1d{width:47.089946px;}
._9{width:48.921136px;}
._20{width:56.345915px;}
._e{width:61.291829px;}
._1a{width:62.497760px;}
._6{width:68.020662px;}
._15{width:83.027976px;}
._b{width:86.506371px;}
._5{width:102.503405px;}
._23{width:105.171494px;}
._17{width:112.383142px;}
._11{width:115.186154px;}
._16{width:128.838718px;}
._21{width:133.934874px;}
._25{width:193.823504px;}
._24{width:201.782969px;}
._1e{width:351.378567px;}
._2{width:584.513808px;}
.fc2{color:transparent;}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs17{font-size:65.994864px;}
.fsa{font-size:69.011001px;}
.fsb{font-size:72.027138px;}
.fs19{font-size:78.014394px;}
.fs0{font-size:81.030530px;}
.fs14{font-size:96.021179px;}
.fs7{font-size:102.008434px;}
.fs18{font-size:108.040707px;}
.fs10{font-size:114.027963px;}
.fsc{font-size:120.015219px;}
.fs4{font-size:126.002475px;}
.fs3{font-size:132.034748px;}
.fs11{font-size:138.022003px;}
.fs13{font-size:144.009259px;}
.fsf{font-size:144.054276px;}
.fse{font-size:156.028788px;}
.fs1{font-size:162.016053px;}
.fs16{font-size:174.035572px;}
.fs8{font-size:177.686684px;}
.fs6{font-size:180.022837px;}
.fs15{font-size:192.042357px;}
.fs2{font-size:204.061895px;}
.fs12{font-size:210.049142px;}
.fsd{font-size:240.075464px;}
.fs9{font-size:300.083082px;}
.fs5{font-size:330.109386px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y74{bottom:38.323112px;}
.y3{bottom:38.910057px;}
.y1d2{bottom:41.167076px;}
.y120{bottom:41.814896px;}
.y4b{bottom:50.466801px;}
.y4a{bottom:99.985458px;}
.yf{bottom:108.024446px;}
.y18{bottom:117.137740px;}
.y49{bottom:124.744787px;}
.y141{bottom:130.228957px;}
.y17{bottom:143.022493px;}
.y23e{bottom:143.877402px;}
.ye{bottom:149.596073px;}
.y7{bottom:154.799268px;}
.y48{bottom:174.263445px;}
.y23d{bottom:176.514699px;}
.y140{bottom:179.658006px;}
.yd{bottom:186.735066px;}
.y47{bottom:199.022773px;}
.y6{bottom:208.615409px;}
.y46{bottom:223.782102px;}
.yc{bottom:228.848884px;}
.y44{bottom:244.094139px;}
.y1fe{bottom:252.707875px;}
.ya8{bottom:256.667378px;}
.y192{bottom:258.198605px;}
.y1d0{bottom:258.226893px;}
.y43{bottom:260.975499px;}
.y5{bottom:261.510338px;}
.y1b1{bottom:263.181267px;}
.y23c{bottom:263.733223px;}
.y11c{bottom:267.858167px;}
.ye9{bottom:269.025149px;}
.y158{bottom:269.040991px;}
.y66{bottom:271.591957px;}
.y13f{bottom:272.592835px;}
.y45{bottom:273.300759px;}
.y1e4{bottom:274.789336px;}
.y42{bottom:277.856860px;}
.y191{bottom:278.456237px;}
.y104{bottom:280.594331px;}
.ya7{bottom:281.426707px;}
.yb{bottom:281.743813px;}
.y1fd{bottom:281.968900px;}
.y1cf{bottom:282.986222px;}
.y23b{bottom:283.990856px;}
.y1b0{bottom:287.940596px;}
.y11b{bottom:292.617496px;}
.ye8{bottom:293.784478px;}
.y41{bottom:294.738220px;}
.y157{bottom:294.925743px;}
.y13e{bottom:295.101315px;}
.y65{bottom:297.476710px;}
.y190{bottom:298.713870px;}
.y103{bottom:303.102812px;}
.y23a{bottom:304.248489px;}
.y8b{bottom:305.270605px;}
.ya6{bottom:306.186035px;}
.y1ce{bottom:307.745551px;}
.yb8{bottom:308.176329px;}
.y1fc{bottom:311.229925px;}
.y1af{bottom:312.699925px;}
.y73{bottom:316.163887px;}
.y11a{bottom:317.376825px;}
.y13d{bottom:317.609796px;}
.ye7{bottom:318.543807px;}
.y18f{bottom:318.971502px;}
.y1e2{bottom:319.069377px;}
.ycf{bottom:320.320316px;}
.y156{bottom:320.810496px;}
.y217{bottom:322.146558px;}
.y64{bottom:323.361462px;}
.y170{bottom:324.189519px;}
.y239{bottom:324.506121px;}
.y102{bottom:325.611292px;}
.y40{bottom:328.500941px;}
.ya5{bottom:330.945364px;}
.y1cd{bottom:332.504880px;}
.y8a{bottom:333.406206px;}
.y1ae{bottom:337.459253px;}
.y18e{bottom:339.229135px;}
.yb7{bottom:339.688202px;}
.y13c{bottom:340.118277px;}
.y1fb{bottom:340.490950px;}
.y119{bottom:342.136154px;}
.ye6{bottom:343.303135px;}
.y3f{bottom:345.382302px;}
.y155{bottom:346.695249px;}
.y101{bottom:348.119773px;}
.y63{bottom:349.246215px;}
.y16f{bottom:350.074272px;}
.y216{bottom:350.282158px;}
.yce{bottom:350.706765px;}
.y1e1{bottom:352.832098px;}
.ya4{bottom:355.704693px;}
.y72{bottom:356.679152px;}
.y1cc{bottom:357.264208px;}
.y18d{bottom:359.486768px;}
.y89{bottom:361.541807px;}
.y1ad{bottom:362.218582px;}
.y3e{bottom:362.263662px;}
.y238{bottom:365.021386px;}
.y118{bottom:366.895482px;}
.ye5{bottom:368.062464px;}
.y1fa{bottom:369.751975px;}
.yb6{bottom:371.200075px;}
.y154{bottom:372.580002px;}
.y62{bottom:375.130968px;}
.y16e{bottom:375.959025px;}
.y215{bottom:378.417759px;}
.y3d{bottom:379.145023px;}
.y18c{bottom:379.744400px;}
.ya3{bottom:380.464021px;}
.ycd{bottom:381.093214px;}
.y1cb{bottom:382.023537px;}
.y13b{bottom:385.135238px;}
.y237{bottom:385.279019px;}
.y1e0{bottom:386.594819px;}
.y1ac{bottom:386.977911px;}
.y88{bottom:389.677407px;}
.ye4{bottom:392.821793px;}
.y100{bottom:393.136734px;}
.y71{bottom:397.194417px;}
.y153{bottom:398.464754px;}
.y1f9{bottom:399.013000px;}
.y61{bottom:401.015721px;}
.y16d{bottom:401.843778px;}
.yb5{bottom:402.711948px;}
.ya2{bottom:405.223350px;}
.y236{bottom:405.536652px;}
.y214{bottom:406.553360px;}
.y1ca{bottom:406.782866px;}
.y13a{bottom:407.643719px;}
.ycc{bottom:411.479663px;}
.y1ab{bottom:411.737240px;}
.y3c{bottom:412.907744px;}
.yff{bottom:415.645215px;}
.y117{bottom:416.414140px;}
.ye3{bottom:417.581121px;}
.y87{bottom:417.813008px;}
.y18b{bottom:420.259665px;}
.y1df{bottom:420.357540px;}
.y152{bottom:424.349507px;}
.y235{bottom:425.794284px;}
.y60{bottom:426.900473px;}
.y16c{bottom:427.728530px;}
.y1f8{bottom:428.274025px;}
.y3b{bottom:429.789104px;}
.ya1{bottom:429.982679px;}
.y139{bottom:430.152199px;}
.y1c9{bottom:431.542194px;}
.yb4{bottom:434.223821px;}
.y213{bottom:434.688961px;}
.y1aa{bottom:436.496568px;}
.y70{bottom:437.709683px;}
.yfe{bottom:438.153696px;}
.y18a{bottom:440.517298px;}
.y116{bottom:441.173468px;}
.ycb{bottom:441.866112px;}
.ye2{bottom:442.340450px;}
.y234{bottom:446.051917px;}
.y3a{bottom:446.670465px;}
.y138{bottom:452.660680px;}
.y5f{bottom:452.785226px;}
.y16b{bottom:453.613283px;}
.y1c8{bottom:456.301523px;}
.y1f7{bottom:457.535049px;}
.y189{bottom:460.774931px;}
.y1a9{bottom:461.255897px;}
.y212{bottom:462.824562px;}
.y39{bottom:463.551825px;}
.yb3{bottom:465.735694px;}
.y115{bottom:465.932797px;}
.y233{bottom:466.309549px;}
.ye1{bottom:467.099779px;}
.y86{bottom:474.084210px;}
.y151{bottom:476.119013px;}
.y6f{bottom:478.224948px;}
.y5e{bottom:478.669979px;}
.ya0{bottom:479.501336px;}
.y188{bottom:481.032563px;}
.y1c7{bottom:481.060852px;}
.yfd{bottom:483.170657px;}
.y1a8{bottom:486.015226px;}
.y232{bottom:486.567182px;}
.y1f6{bottom:486.796074px;}
.y1de{bottom:487.882982px;}
.y114{bottom:490.692126px;}
.y211{bottom:490.960163px;}
.yb2{bottom:497.247567px;}
.y38{bottom:497.314546px;}
.y137{bottom:497.677641px;}
.y187{bottom:501.290196px;}
.y150{bottom:502.003765px;}
.y85{bottom:502.219811px;}
.yca{bottom:502.639010px;}
.y9f{bottom:504.260665px;}
.y5d{bottom:504.554732px;}
.y16a{bottom:505.382789px;}
.yfc{bottom:505.679138px;}
.y1c6{bottom:505.820181px;}
.y1a7{bottom:510.774554px;}
.y37{bottom:514.195906px;}
.y1f5{bottom:516.057099px;}
.ye0{bottom:516.618436px;}
.y6e{bottom:518.740213px;}
.y210{bottom:519.095763px;}
.y136{bottom:520.186122px;}
.y186{bottom:521.547828px;}
.y1dd{bottom:521.645703px;}
.y231{bottom:527.082447px;}
.y14f{bottom:527.888518px;}
.yfb{bottom:528.187618px;}
.y84{bottom:530.355412px;}
.y5c{bottom:530.439485px;}
.y1c5{bottom:530.579509px;}
.y36{bottom:531.077267px;}
.y169{bottom:531.267541px;}
.yc9{bottom:533.025459px;}
.y1a6{bottom:535.533883px;}
.y113{bottom:540.210783px;}
.y185{bottom:541.805461px;}
.y135{bottom:542.694603px;}
.y1f4{bottom:545.318124px;}
.y20f{bottom:547.231364px;}
.y230{bottom:547.340080px;}
.y35{bottom:547.958627px;}
.y14e{bottom:553.773271px;}
.y9e{bottom:553.779323px;}
.y1c4{bottom:555.338838px;}
.y1dc{bottom:555.408424px;}
.y5b{bottom:556.324237px;}
.y168{bottom:557.152294px;}
.y6d{bottom:559.255478px;}
.yb1{bottom:560.271312px;}
.y184{bottom:562.063094px;}
.yc8{bottom:563.411908px;}
.y112{bottom:564.970112px;}
.y134{bottom:565.203083px;}
.ydf{bottom:566.137094px;}
.y22f{bottom:567.597712px;}
.yfa{bottom:573.204580px;}
.y1f3{bottom:574.579149px;}
.y20e{bottom:575.366965px;}
.y9d{bottom:578.538651px;}
.y14d{bottom:579.658024px;}
.y1c3{bottom:580.098167px;}
.y34{bottom:581.721348px;}
.y5a{bottom:582.208990px;}
.y167{bottom:583.037047px;}
.y1a5{bottom:585.052541px;}
.y83{bottom:586.626613px;}
.y22e{bottom:587.855345px;}
.y1db{bottom:589.171145px;}
.y111{bottom:589.729441px;}
.yde{bottom:590.896423px;}
.yb0{bottom:591.783185px;}
.yc7{bottom:593.798357px;}
.yf9{bottom:595.713060px;}
.y33{bottom:598.602709px;}
.y183{bottom:602.578359px;}
.y9c{bottom:603.297980px;}
.y20d{bottom:603.502566px;}
.y1f2{bottom:603.840174px;}
.y1c2{bottom:604.857496px;}
.y14c{bottom:605.542776px;}
.y59{bottom:608.093743px;}
.y166{bottom:608.921800px;}
.y1a4{bottom:609.811869px;}
.y133{bottom:610.220045px;}
.y110{bottom:614.488770px;}
.y82{bottom:614.762214px;}
.y32{bottom:615.484069px;}
.ydd{bottom:615.655751px;}
.y182{bottom:622.835991px;}
.yaf{bottom:623.295058px;}
.yc6{bottom:624.184805px;}
.y9b{bottom:628.057309px;}
.y22d{bottom:628.370610px;}
.y1c1{bottom:629.616824px;}
.y14b{bottom:631.427529px;}
.y20c{bottom:631.638167px;}
.y31{bottom:632.365430px;}
.y132{bottom:632.728525px;}
.y1f1{bottom:633.101199px;}
.y58{bottom:633.978496px;}
.y1a3{bottom:634.571198px;}
.y165{bottom:634.806552px;}
.y10f{bottom:639.248098px;}
.y6c{bottom:640.286009px;}
.ydc{bottom:640.415080px;}
.yf8{bottom:640.730022px;}
.y81{bottom:642.897815px;}
.y181{bottom:643.093624px;}
.y22c{bottom:648.628243px;}
.y9a{bottom:652.816637px;}
.yc5{bottom:654.571254px;}
.yae{bottom:654.806931px;}
.y131{bottom:655.237006px;}
.y1da{bottom:656.696587px;}
.y1a2{bottom:659.330527px;}
.y20b{bottom:659.773767px;}
.y57{bottom:659.863248px;}
.y164{bottom:660.691305px;}
.y1f0{bottom:662.362224px;}
.yf7{bottom:663.238502px;}
.y180{bottom:663.351257px;}
.ydb{bottom:665.174409px;}
.y30{bottom:666.128151px;}
.y22b{bottom:668.885875px;}
.y80{bottom:671.033416px;}
.y99{bottom:677.575966px;}
.y130{bottom:677.745487px;}
.y1c0{bottom:679.135482px;}
.y6b{bottom:680.801274px;}
.y2f{bottom:683.009511px;}
.y14a{bottom:683.197035px;}
.y17f{bottom:683.608889px;}
.y1a1{bottom:684.089856px;}
.yc4{bottom:684.957703px;}
.yf6{bottom:685.746983px;}
.y56{bottom:685.748001px;}
.yad{bottom:686.318804px;}
.y163{bottom:686.576058px;}
.y20a{bottom:687.909368px;}
.y10e{bottom:688.766756px;}
.y22a{bottom:689.143508px;}
.yda{bottom:689.933737px;}
.y1d9{bottom:690.459308px;}
.y2e{bottom:699.890872px;}
.y12f{bottom:700.253967px;}
.y98{bottom:702.335295px;}
.y17e{bottom:703.866522px;}
.y1bf{bottom:703.894811px;}
.yf5{bottom:708.255464px;}
.y1a0{bottom:708.849184px;}
.y149{bottom:709.081787px;}
.y55{bottom:711.632754px;}
.y10d{bottom:713.526085px;}
.yd9{bottom:714.693066px;}
.y209{bottom:716.044969px;}
.y2d{bottom:716.772232px;}
.yac{bottom:717.830677px;}
.y1ef{bottom:720.884273px;}
.y6a{bottom:721.316539px;}
.y17d{bottom:724.124154px;}
.y1d8{bottom:724.222029px;}
.y97{bottom:727.094624px;}
.y7f{bottom:727.304617px;}
.y1be{bottom:728.654139px;}
.y229{bottom:729.658773px;}
.y19f{bottom:733.608513px;}
.y148{bottom:734.966540px;}
.y54{bottom:737.517507px;}
.y10c{bottom:738.285413px;}
.y162{bottom:738.345563px;}
.y208{bottom:744.180570px;}
.y12e{bottom:745.270929px;}
.yc3{bottom:745.730601px;}
.y228{bottom:749.916406px;}
.y1ee{bottom:750.145298px;}
.y2c{bottom:750.534953px;}
.yf4{bottom:753.272425px;}
.y1bd{bottom:753.413468px;}
.y1d7{bottom:757.984750px;}
.y19e{bottom:758.367842px;}
.y147{bottom:760.851293px;}
.y69{bottom:761.831804px;}
.y10b{bottom:763.044742px;}
.y53{bottom:763.402259px;}
.yd8{bottom:764.211724px;}
.y161{bottom:764.230316px;}
.y17c{bottom:764.639420px;}
.y2b{bottom:767.416314px;}
.y12d{bottom:767.779409px;}
.y227{bottom:770.174038px;}
.y207{bottom:772.316171px;}
.yf3{bottom:775.780906px;}
.yc2{bottom:776.117050px;}
.y96{bottom:776.613281px;}
.y1bc{bottom:778.172797px;}
.y1ed{bottom:779.406323px;}
.yab{bottom:780.854423px;}
.y19d{bottom:783.127170px;}
.y7e{bottom:783.575819px;}
.y2a{bottom:784.297674px;}
.y17b{bottom:784.897052px;}
.y146{bottom:786.736046px;}
.y52{bottom:789.287012px;}
.y160{bottom:790.115069px;}
.y12c{bottom:790.287890px;}
.y226{bottom:790.431671px;}
.yf2{bottom:798.289386px;}
.y206{bottom:800.451772px;}
.y29{bottom:801.179035px;}
.y95{bottom:801.372610px;}
.y68{bottom:802.347069px;}
.y1bb{bottom:802.932125px;}
.y17a{bottom:805.154685px;}
.yc1{bottom:806.503499px;}
.y19c{bottom:807.886499px;}
.y1ec{bottom:808.667348px;}
.y225{bottom:810.689304px;}
.y7d{bottom:811.711420px;}
.yaa{bottom:812.366296px;}
.y10a{bottom:812.563399px;}
.y145{bottom:812.620799px;}
.y12b{bottom:812.796371px;}
.yd7{bottom:813.730381px;}
.y51{bottom:815.171765px;}
.y15f{bottom:815.999822px;}
.yf1{bottom:820.797867px;}
.y179{bottom:825.412317px;}
.y1d6{bottom:825.510192px;}
.y1ba{bottom:827.691454px;}
.y205{bottom:828.587372px;}
.y19b{bottom:832.645828px;}
.y28{bottom:834.941756px;}
.yc0{bottom:836.889948px;}
.y109{bottom:837.322728px;}
.y1eb{bottom:837.928373px;}
.yd6{bottom:838.489710px;}
.y144{bottom:838.505551px;}
.y7c{bottom:839.847021px;}
.y50{bottom:841.056518px;}
.y15e{bottom:841.884575px;}
.ya9{bottom:843.878169px;}
.y178{bottom:845.669950px;}
.y94{bottom:850.891267px;}
.y224{bottom:851.204569px;}
.y27{bottom:851.823116px;}
.y1b9{bottom:852.450783px;}
.y204{bottom:856.722973px;}
.y12a{bottom:857.813332px;}
.y1d5{bottom:859.272913px;}
.y108{bottom:862.082057px;}
.yd5{bottom:863.249039px;}
.y143{bottom:864.390304px;}
.yf0{bottom:865.814828px;}
.y177{bottom:865.927582px;}
.y4f{bottom:866.941270px;}
.y1ea{bottom:867.189398px;}
.ybf{bottom:867.276397px;}
.y15d{bottom:867.769327px;}
.y7b{bottom:867.982622px;}
.y26{bottom:868.704477px;}
.y223{bottom:871.462201px;}
.y93{bottom:875.650596px;}
.y1b8{bottom:877.210112px;}
.y129{bottom:880.321813px;}
.y19a{bottom:882.164485px;}
.y4{bottom:884.314753px;}
.y203{bottom:884.858574px;}
.y25{bottom:885.585837px;}
.y176{bottom:886.185215px;}
.y107{bottom:886.841386px;}
.yd4{bottom:888.008367px;}
.yef{bottom:888.323309px;}
.y67{bottom:889.858391px;}
.y222{bottom:891.719834px;}
.y4e{bottom:892.826023px;}
.y1d4{bottom:893.035634px;}
.y15c{bottom:893.654080px;}
.y7a{bottom:896.118222px;}
.y1e9{bottom:896.450422px;}
.ybe{bottom:897.662845px;}
.y92{bottom:900.409925px;}
.y1b7{bottom:901.969440px;}
.y128{bottom:902.830293px;}
.y175{bottom:906.442848px;}
.yba{bottom:909.016635px;}
.yee{bottom:910.831790px;}
.y221{bottom:911.977467px;}
.yd3{bottom:912.767696px;}
.y202{bottom:912.994175px;}
.y142{bottom:916.159810px;}
.y4d{bottom:918.710776px;}
.y24{bottom:919.348558px;}
.y11f{bottom:923.687321px;}
.y79{bottom:924.253823px;}
.y91{bottom:925.169253px;}
.y127{bottom:925.338774px;}
.y1e8{bottom:925.711447px;}
.y174{bottom:926.700480px;}
.y1b6{bottom:926.728769px;}
.y1d3{bottom:926.798355px;}
.ybd{bottom:928.049294px;}
.y199{bottom:931.683143px;}
.y220{bottom:932.235099px;}
.yed{bottom:933.340270px;}
.y23{bottom:936.229919px;}
.yd2{bottom:937.527025px;}
.y201{bottom:941.129776px;}
.y15b{bottom:945.423586px;}
.y90{bottom:949.928582px;}
.y1b5{bottom:951.488098px;}
.y78{bottom:952.389424px;}
.y22{bottom:953.111279px;}
.y1e7{bottom:954.972472px;}
.yec{bottom:955.848751px;}
.y198{bottom:956.442472px;}
.y11e{bottom:960.826314px;}
.yd1{bottom:962.286354px;}
.yb9{bottom:963.036989px;}
.y173{bottom:967.215745px;}
.y13{bottom:969.375853px;}
.y21{bottom:969.992640px;}
.y126{bottom:970.355735px;}
.y4c{bottom:971.605706px;}
.y21f{bottom:972.750364px;}
.y15a{bottom:974.439845px;}
.y8f{bottom:974.687911px;}
.y1b4{bottom:976.247427px;}
.yeb{bottom:978.357232px;}
.y77{bottom:980.525025px;}
.y197{bottom:981.201800px;}
.y1e6{bottom:984.233497px;}
.ybc{bottom:988.822192px;}
.y125{bottom:992.864216px;}
.y21e{bottom:993.007997px;}
.y1e3{bottom:996.014676px;}
.y218{bottom:996.217581px;}
.y11d{bottom:997.965307px;}
.y8e{bottom:999.447240px;}
.yea{bottom:1000.865712px;}
.y1b3{bottom:1001.006755px;}
.y194{bottom:1002.336432px;}
.y20{bottom:1003.755361px;}
.y196{bottom:1005.961129px;}
.y159{bottom:1007.077142px;}
.yd0{bottom:1011.805011px;}
.y21d{bottom:1013.265630px;}
.y1e5{bottom:1013.494522px;}
.y12{bottom:1015.351952px;}
.y124{bottom:1015.372696px;}
.ybb{bottom:1019.208641px;}
.y1f{bottom:1020.636721px;}
.y16{bottom:1021.195551px;}
.y8d{bottom:1024.206568px;}
.y172{bottom:1024.558121px;}
.y193{bottom:1028.221185px;}
.y195{bottom:1030.720458px;}
.y21c{bottom:1033.523262px;}
.ya{bottom:1035.070584px;}
.y1e{bottom:1037.518082px;}
.y123{bottom:1037.881177px;}
.y21b{bottom:1053.780895px;}
.y1d{bottom:1054.399442px;}
.y106{bottom:1056.745225px;}
.y171{bottom:1057.195418px;}
.y76{bottom:1060.386087px;}
.y11{bottom:1061.328051px;}
.y1d1{bottom:1070.191826px;}
.y8c{bottom:1073.725226px;}
.y1b2{bottom:1080.170545px;}
.y200{bottom:1084.275084px;}
.y105{bottom:1087.131674px;}
.y1c{bottom:1088.162163px;}
.y21a{bottom:1097.128831px;}
.y122{bottom:1099.256644px;}
.y15{bottom:1099.975233px;}
.y1b{bottom:1105.043524px;}
.y10{bottom:1107.304150px;}
.y1ff{bottom:1109.034412px;}
.y9{bottom:1120.602810px;}
.y1a{bottom:1121.924884px;}
.y19{bottom:1138.806245px;}
.y75{bottom:1145.918314px;}
.y8{bottom:1151.791961px;}
.y2{bottom:1154.780511px;}
.y219{bottom:1175.908513px;}
.y121{bottom:1176.910902px;}
.y14{bottom:1178.754916px;}
.h11{height:50.563051px;}
.h12{height:51.859539px;}
.h33{height:52.069948px;}
.h10{height:53.483526px;}
.h36{height:60.461155px;}
.h4{height:67.255340px;}
.h2d{height:74.416413px;}
.h3{height:75.558812px;}
.h13{height:78.000590px;}
.h1a{height:78.199825px;}
.h17{height:79.056537px;}
.hb{height:79.793707px;}
.h27{height:80.484655px;}
.h34{height:83.731548px;}
.h8{height:88.226342px;}
.h21{height:88.371671px;}
.h20{height:89.968063px;}
.h1e{height:93.011795px;}
.h16{height:94.692008px;}
.hf{height:95.533290px;}
.h2c{height:99.415953px;}
.h31{height:102.326929px;}
.h1d{height:103.116977px;}
.h7{height:103.281087px;}
.h38{height:104.101723px;}
.h2e{height:104.242401px;}
.h22{height:106.967053px;}
.h5{height:107.902691px;}
.h26{height:108.899361px;}
.h1f{height:110.150877px;}
.h24{height:112.683081px;}
.h28{height:113.623306px;}
.hc{height:118.339331px;}
.h1c{height:120.922311px;}
.h37{height:123.653636px;}
.h2b{height:134.910206px;}
.h32{height:137.314067px;}
.h15{height:137.654181px;}
.he{height:137.707180px;}
.h19{height:138.005788px;}
.ha{height:140.818645px;}
.h30{height:150.945293px;}
.h6{height:159.622634px;}
.h23{height:164.306018px;}
.h2a{height:168.595606px;}
.h1b{height:184.042226px;}
.hd{height:220.666563px;}
.h35{height:242.746453px;}
.h14{height:252.417627px;}
.h18{height:253.062371px;}
.h9{height:258.220331px;}
.h2f{height:306.011580px;}
.h29{height:309.155177px;}
.h25{height:313.603917px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:39.843664px;}
.xb{left:46.363341px;}
.x28{left:49.261919px;}
.x59{left:52.145654px;}
.x3e{left:54.960807px;}
.x3b{left:56.095080px;}
.x4e{left:64.066785px;}
.x9{left:66.138956px;}
.x45{left:70.392532px;}
.x54{left:79.638344px;}
.x7{left:82.402174px;}
.x37{left:83.503631px;}
.x48{left:85.745953px;}
.x4{left:89.324989px;}
.x2f{left:90.356080px;}
.x2b{left:96.967947px;}
.x2a{left:98.990193px;}
.x47{left:101.074255px;}
.x3f{left:103.424380px;}
.x4f{left:104.880991px;}
.x2{left:106.532136px;}
.x41{left:109.614743px;}
.x2c{left:113.356934px;}
.x40{left:116.472795px;}
.x2e{left:123.608844px;}
.x2d{left:133.122194px;}
.x38{left:145.094357px;}
.x30{left:150.794868px;}
.x57{left:153.711014px;}
.x29{left:195.479355px;}
.x31{left:212.728359px;}
.x3{left:224.786874px;}
.x39{left:236.077856px;}
.x49{left:241.230317px;}
.x1{left:243.540145px;}
.x42{left:251.066476px;}
.x3a{left:258.830453px;}
.x52{left:267.534921px;}
.x3c{left:271.187895px;}
.x33{left:283.720045px;}
.x4a{left:296.405124px;}
.x3d{left:306.410150px;}
.x51{left:315.998494px;}
.x53{left:321.738276px;}
.x36{left:327.735098px;}
.x44{left:330.467199px;}
.x34{left:334.733407px;}
.x4b{left:347.418485px;}
.x1b{left:351.846695px;}
.x22{left:363.575724px;}
.x1e{left:376.271914px;}
.x1c{left:385.169797px;}
.x18{left:387.789925px;}
.x14{left:393.487384px;}
.x26{left:394.647978px;}
.x16{left:395.826156px;}
.x21{left:397.567046px;}
.x20{left:400.503700px;}
.x15{left:403.405184px;}
.x55{left:404.707687px;}
.x13{left:407.185905px;}
.xd{left:410.456669px;}
.x27{left:411.933788px;}
.x19{left:413.129551px;}
.xe{left:415.485907px;}
.x23{left:416.998196px;}
.x24{left:418.176374px;}
.x11{left:419.178705px;}
.x25{left:420.567900px;}
.x1a{left:422.959426px;}
.xf{left:424.260698px;}
.x1f{left:426.019173px;}
.x17{left:427.091843px;}
.x12{left:433.914726px;}
.x10{left:438.135066px;}
.x1d{left:439.823202px;}
.xc{left:443.375322px;}
.x4c{left:462.345245px;}
.x8{left:512.736189px;}
.x56{left:545.702217px;}
.x5{left:577.058193px;}
.x35{left:803.432163px;}
.x32{left:807.705218px;}
.x50{left:809.692274px;}
.x4d{left:813.965402px;}
.x43{left:824.792222px;}
.x46{left:826.093514px;}
.x58{left:832.353733px;}
.xa{left:840.015577px;}
@media print{
.v2{vertical-align:-83.875061pt;}
.v5{vertical-align:-62.686367pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.380864pt;}
.v3{vertical-align:135.461217pt;}
.v4{vertical-align:166.819777pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000061pt;}
.ls2{letter-spacing:0.015326pt;}
.ls3{letter-spacing:0.042316pt;}
.ws2{word-spacing:-69.059341pt;}
.ws4{word-spacing:-62.777797pt;}
.ws7{word-spacing:-50.224120pt;}
.ws3{word-spacing:-42.690031pt;}
.wsd{word-spacing:-41.602675pt;}
.ws11{word-spacing:-34.671063pt;}
.ws9{word-spacing:-33.710941pt;}
.wsb{word-spacing:-32.941412pt;}
.wsc{word-spacing:-32.029188pt;}
.ws12{word-spacing:-30.297175pt;}
.ws6{word-spacing:-28.653036pt;}
.wse{word-spacing:-26.971282pt;}
.ws13{word-spacing:-21.913376pt;}
.ws5{word-spacing:-16.006031pt;}
.ws0{word-spacing:-15.557862pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:100.886825pt;}
.wsa{word-spacing:257.384789pt;}
.ws10{word-spacing:324.532511pt;}
.wsf{word-spacing:2078.826493pt;}
._4{margin-left:-995.644827pt;}
._1{margin-left:-814.828823pt;}
._c{margin-left:-0.888936pt;}
._1c{width:3.289836pt;}
._12{width:5.274920pt;}
._13{width:6.321086pt;}
._22{width:7.449358pt;}
._3{width:9.076966pt;}
._0{width:10.805643pt;}
._10{width:12.937169pt;}
._19{width:13.843161pt;}
._18{width:14.758964pt;}
._7{width:15.928943pt;}
._d{width:20.104250pt;}
._a{width:21.002448pt;}
._1f{width:24.201507pt;}
._14{width:30.180929pt;}
._8{width:36.564658pt;}
._f{width:38.728768pt;}
._1b{width:40.017570pt;}
._1d{width:41.857730pt;}
._9{width:43.485454pt;}
._20{width:50.085258pt;}
._e{width:54.481626pt;}
._1a{width:55.553565pt;}
._6{width:60.462811pt;}
._15{width:73.802645pt;}
._b{width:76.894552pt;}
._5{width:91.114138pt;}
._23{width:93.485773pt;}
._17{width:99.896126pt;}
._11{width:102.387692pt;}
._16{width:114.523305pt;}
._21{width:119.053221pt;}
._25{width:172.287559pt;}
._24{width:179.362639pt;}
._1e{width:312.336504pt;}
._2{width:519.567829pt;}
.fs17{font-size:58.662102pt;}
.fsa{font-size:61.343112pt;}
.fsb{font-size:64.024123pt;}
.fs19{font-size:69.346128pt;}
.fs0{font-size:72.027138pt;}
.fs14{font-size:85.352159pt;}
.fs7{font-size:90.674164pt;}
.fs18{font-size:96.036184pt;}
.fs10{font-size:101.358189pt;}
.fsc{font-size:106.680195pt;}
.fs4{font-size:112.002200pt;}
.fs3{font-size:117.364220pt;}
.fs11{font-size:122.686225pt;}
.fs13{font-size:128.008230pt;}
.fsf{font-size:128.048246pt;}
.fse{font-size:138.692256pt;}
.fs1{font-size:144.014269pt;}
.fs16{font-size:154.698287pt;}
.fs8{font-size:157.943719pt;}
.fs6{font-size:160.020300pt;}
.fs15{font-size:170.704317pt;}
.fs2{font-size:181.388351pt;}
.fs12{font-size:186.710348pt;}
.fsd{font-size:213.400412pt;}
.fs9{font-size:266.740518pt;}
.fs5{font-size:293.430566pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y74{bottom:34.064989pt;}
.y3{bottom:34.586717pt;}
.y1d2{bottom:36.592957pt;}
.y120{bottom:37.168797pt;}
.y4b{bottom:44.859379pt;}
.y4a{bottom:88.875963pt;}
.yf{bottom:96.021730pt;}
.y18{bottom:104.122435pt;}
.y49{bottom:110.884255pt;}
.y141{bottom:115.759073pt;}
.y17{bottom:127.131104pt;}
.y23e{bottom:127.891024pt;}
.ye{bottom:132.974287pt;}
.y7{bottom:137.599349pt;}
.y48{bottom:154.900840pt;}
.y23d{bottom:156.901954pt;}
.y140{bottom:159.696006pt;}
.yd{bottom:165.986725pt;}
.y47{bottom:176.909132pt;}
.y6{bottom:185.435919pt;}
.y46{bottom:198.917424pt;}
.yc{bottom:203.421230pt;}
.y44{bottom:216.972568pt;}
.y1fe{bottom:224.629223pt;}
.ya8{bottom:228.148780pt;}
.y192{bottom:229.509871pt;}
.y1d0{bottom:229.535016pt;}
.y43{bottom:231.978221pt;}
.y5{bottom:232.453634pt;}
.y1b1{bottom:233.938904pt;}
.y23c{bottom:234.429532pt;}
.y11c{bottom:238.096149pt;}
.ye9{bottom:239.133466pt;}
.y158{bottom:239.147547pt;}
.y66{bottom:241.415073pt;}
.y13f{bottom:242.304742pt;}
.y45{bottom:242.934008pt;}
.y1e4{bottom:244.257187pt;}
.y42{bottom:246.983875pt;}
.y191{bottom:247.516655pt;}
.y104{bottom:249.417183pt;}
.ya7{bottom:250.157072pt;}
.yb{bottom:250.438945pt;}
.y1fd{bottom:250.639023pt;}
.y1cf{bottom:251.543309pt;}
.y23b{bottom:252.436317pt;}
.y1b0{bottom:255.947196pt;}
.y11b{bottom:260.104441pt;}
.ye8{bottom:261.141758pt;}
.y41{bottom:261.989529pt;}
.y157{bottom:262.156216pt;}
.y13e{bottom:262.312280pt;}
.y65{bottom:264.423742pt;}
.y190{bottom:265.523440pt;}
.y103{bottom:269.424722pt;}
.y23a{bottom:270.443101pt;}
.y8b{bottom:271.351649pt;}
.ya6{bottom:272.165365pt;}
.y1ce{bottom:273.551601pt;}
.yb8{bottom:273.934515pt;}
.y1fc{bottom:276.648822pt;}
.y1af{bottom:277.955489pt;}
.y73{bottom:281.034566pt;}
.y11a{bottom:282.112733pt;}
.y13d{bottom:282.319819pt;}
.ye7{bottom:283.150050pt;}
.y18f{bottom:283.530224pt;}
.y1e2{bottom:283.617224pt;}
.ycf{bottom:284.729170pt;}
.y156{bottom:285.164885pt;}
.y217{bottom:286.352496pt;}
.y64{bottom:287.432411pt;}
.y170{bottom:288.168462pt;}
.y239{bottom:288.449886pt;}
.y102{bottom:289.432260pt;}
.y40{bottom:292.000836pt;}
.ya5{bottom:294.173657pt;}
.y1cd{bottom:295.559893pt;}
.y8a{bottom:296.361072pt;}
.y1ae{bottom:299.963781pt;}
.y18e{bottom:301.537009pt;}
.yb7{bottom:301.945068pt;}
.y13c{bottom:302.327357pt;}
.y1fb{bottom:302.658622pt;}
.y119{bottom:304.121025pt;}
.ye6{bottom:305.158342pt;}
.y3f{bottom:307.006490pt;}
.y155{bottom:308.173555pt;}
.y101{bottom:309.439798pt;}
.y63{bottom:310.441080pt;}
.y16f{bottom:311.177131pt;}
.y216{bottom:311.361919pt;}
.yce{bottom:311.739347pt;}
.y1e1{bottom:313.628532pt;}
.ya4{bottom:316.181949pt;}
.y72{bottom:317.048135pt;}
.y1cc{bottom:317.568185pt;}
.y18d{bottom:319.543793pt;}
.y89{bottom:321.370495pt;}
.y1ad{bottom:321.972073pt;}
.y3e{bottom:322.012144pt;}
.y238{bottom:324.463455pt;}
.y118{bottom:326.129318pt;}
.ye5{bottom:327.166635pt;}
.y1fa{bottom:328.668422pt;}
.yb6{bottom:329.955622pt;}
.y154{bottom:331.182224pt;}
.y62{bottom:333.449749pt;}
.y16e{bottom:334.185800pt;}
.y215{bottom:336.371342pt;}
.y3d{bottom:337.017798pt;}
.y18c{bottom:337.550578pt;}
.ya3{bottom:338.190241pt;}
.ycd{bottom:338.749524pt;}
.y1cb{bottom:339.576477pt;}
.y13b{bottom:342.342434pt;}
.y237{bottom:342.470239pt;}
.y1e0{bottom:343.639839pt;}
.y1ac{bottom:343.980365pt;}
.y88{bottom:346.379918pt;}
.ye4{bottom:349.174927pt;}
.y100{bottom:349.454875pt;}
.y71{bottom:353.061704pt;}
.y153{bottom:354.190893pt;}
.y1f9{bottom:354.678222pt;}
.y61{bottom:356.458418pt;}
.y16d{bottom:357.194469pt;}
.yb5{bottom:357.966176pt;}
.ya2{bottom:360.198533pt;}
.y236{bottom:360.477024pt;}
.y214{bottom:361.380764pt;}
.y1ca{bottom:361.584770pt;}
.y13a{bottom:362.349972pt;}
.ycc{bottom:365.759701pt;}
.y1ab{bottom:365.988657pt;}
.y3c{bottom:367.029105pt;}
.yff{bottom:369.462413pt;}
.y117{bottom:370.145902pt;}
.ye3{bottom:371.183219pt;}
.y87{bottom:371.389341pt;}
.y18b{bottom:373.564147pt;}
.y1df{bottom:373.651147pt;}
.y152{bottom:377.199562pt;}
.y235{bottom:378.483808pt;}
.y60{bottom:379.467088pt;}
.y16c{bottom:380.203138pt;}
.y1f8{bottom:380.688022pt;}
.y3b{bottom:382.034759pt;}
.ya1{bottom:382.206826pt;}
.y139{bottom:382.357510pt;}
.y1c9{bottom:383.593062pt;}
.yb4{bottom:385.976730pt;}
.y213{bottom:386.390187pt;}
.y1aa{bottom:387.996950pt;}
.y70{bottom:389.075273pt;}
.yfe{bottom:389.469952pt;}
.y18a{bottom:391.570932pt;}
.y116{bottom:392.154194pt;}
.ycb{bottom:392.769877pt;}
.ye2{bottom:393.191511pt;}
.y234{bottom:396.490593pt;}
.y3a{bottom:397.040413pt;}
.y138{bottom:402.365049pt;}
.y5f{bottom:402.475757pt;}
.y16b{bottom:403.211807pt;}
.y1c8{bottom:405.601354pt;}
.y1f7{bottom:406.697822pt;}
.y189{bottom:409.577716pt;}
.y1a9{bottom:410.005242pt;}
.y212{bottom:411.399610pt;}
.y39{bottom:412.046067pt;}
.yb3{bottom:413.987283pt;}
.y115{bottom:414.162486pt;}
.y233{bottom:414.497377pt;}
.ye1{bottom:415.199804pt;}
.y86{bottom:421.408187pt;}
.y151{bottom:423.216900pt;}
.y6f{bottom:425.088842pt;}
.y5e{bottom:425.484426pt;}
.ya0{bottom:426.223410pt;}
.y188{bottom:427.584501pt;}
.y1c7{bottom:427.609646pt;}
.yfd{bottom:429.485029pt;}
.y1a8{bottom:432.013534pt;}
.y232{bottom:432.504162pt;}
.y1f6{bottom:432.707622pt;}
.y1de{bottom:433.673762pt;}
.y114{bottom:436.170779pt;}
.y211{bottom:436.409033pt;}
.yb2{bottom:441.997837pt;}
.y38{bottom:442.057374pt;}
.y137{bottom:442.380126pt;}
.y187{bottom:445.591285pt;}
.y150{bottom:446.225569pt;}
.y85{bottom:446.417610pt;}
.yca{bottom:446.790231pt;}
.y9f{bottom:448.231702pt;}
.y5d{bottom:448.493095pt;}
.y16a{bottom:449.229145pt;}
.yfc{bottom:449.492567pt;}
.y1c6{bottom:449.617938pt;}
.y1a7{bottom:454.021826pt;}
.y37{bottom:457.063028pt;}
.y1f5{bottom:458.717422pt;}
.ye0{bottom:459.216388pt;}
.y6e{bottom:461.102412pt;}
.y210{bottom:461.418456pt;}
.y136{bottom:462.387664pt;}
.y186{bottom:463.598070pt;}
.y1dd{bottom:463.685069pt;}
.y231{bottom:468.517731pt;}
.y14f{bottom:469.234238pt;}
.yfb{bottom:469.500105pt;}
.y84{bottom:471.427033pt;}
.y5c{bottom:471.501764pt;}
.y1c5{bottom:471.626231pt;}
.y36{bottom:472.068682pt;}
.y169{bottom:472.237815pt;}
.yc9{bottom:473.800408pt;}
.y1a6{bottom:476.030118pt;}
.y113{bottom:480.187363pt;}
.y185{bottom:481.604854pt;}
.y135{bottom:482.395202pt;}
.y1f4{bottom:484.727221pt;}
.y20f{bottom:486.427879pt;}
.y230{bottom:486.524515pt;}
.y35{bottom:487.074336pt;}
.y14e{bottom:492.242907pt;}
.y9e{bottom:492.248287pt;}
.y1c4{bottom:493.634523pt;}
.y1dc{bottom:493.696377pt;}
.y5b{bottom:494.510433pt;}
.y168{bottom:495.246484pt;}
.y6d{bottom:497.115981pt;}
.yb1{bottom:498.018944pt;}
.y184{bottom:499.611639pt;}
.yc8{bottom:500.810585pt;}
.y112{bottom:502.195655pt;}
.y134{bottom:502.402741pt;}
.ydf{bottom:503.232972pt;}
.y22f{bottom:504.531300pt;}
.yfa{bottom:509.515182pt;}
.y1f3{bottom:510.737021pt;}
.y20e{bottom:511.437302pt;}
.y9d{bottom:514.256579pt;}
.y14d{bottom:515.251577pt;}
.y1c3{bottom:515.642815pt;}
.y34{bottom:517.085643pt;}
.y5a{bottom:517.519102pt;}
.y167{bottom:518.255153pt;}
.y1a5{bottom:520.046703pt;}
.y83{bottom:521.445878pt;}
.y22e{bottom:522.538084pt;}
.y1db{bottom:523.707684pt;}
.y111{bottom:524.203947pt;}
.yde{bottom:525.241265pt;}
.yb0{bottom:526.029498pt;}
.yc7{bottom:527.820761pt;}
.yf9{bottom:529.522720pt;}
.y33{bottom:532.091297pt;}
.y183{bottom:535.625208pt;}
.y9c{bottom:536.264871pt;}
.y20d{bottom:536.446725pt;}
.y1f2{bottom:536.746821pt;}
.y1c2{bottom:537.651107pt;}
.y14c{bottom:538.260246pt;}
.y59{bottom:540.527771pt;}
.y166{bottom:541.263822pt;}
.y1a4{bottom:542.054995pt;}
.y133{bottom:542.417817pt;}
.y110{bottom:546.212240pt;}
.y82{bottom:546.455301pt;}
.y32{bottom:547.096951pt;}
.ydd{bottom:547.249557pt;}
.y182{bottom:553.631992pt;}
.yaf{bottom:554.040052pt;}
.yc6{bottom:554.830938pt;}
.y9b{bottom:558.273163pt;}
.y22d{bottom:558.551654pt;}
.y1c1{bottom:559.659399pt;}
.y14b{bottom:561.268915pt;}
.y20c{bottom:561.456148pt;}
.y31{bottom:562.102604pt;}
.y132{bottom:562.425356pt;}
.y1f1{bottom:562.756621pt;}
.y58{bottom:563.536441pt;}
.y1a3{bottom:564.063287pt;}
.y165{bottom:564.272491pt;}
.y10f{bottom:568.220532pt;}
.y6c{bottom:569.143119pt;}
.ydc{bottom:569.257849pt;}
.yf8{bottom:569.537797pt;}
.y81{bottom:571.464724pt;}
.y181{bottom:571.638777pt;}
.y22c{bottom:576.558438pt;}
.y9a{bottom:580.281456pt;}
.yc5{bottom:581.841115pt;}
.yae{bottom:582.050606pt;}
.y131{bottom:582.432894pt;}
.y1da{bottom:583.730300pt;}
.y1a2{bottom:586.071579pt;}
.y20b{bottom:586.465571pt;}
.y57{bottom:586.545110pt;}
.y164{bottom:587.281160pt;}
.y1f0{bottom:588.766421pt;}
.yf7{bottom:589.545335pt;}
.y180{bottom:589.645561pt;}
.ydb{bottom:591.266141pt;}
.y30{bottom:592.113912pt;}
.y22b{bottom:594.565223pt;}
.y80{bottom:596.474147pt;}
.y99{bottom:602.289748pt;}
.y130{bottom:602.440432pt;}
.y1c0{bottom:603.675984pt;}
.y6b{bottom:605.156688pt;}
.y2f{bottom:607.119566pt;}
.y14a{bottom:607.286253pt;}
.y17f{bottom:607.652346pt;}
.y1a1{bottom:608.079872pt;}
.yc4{bottom:608.851292pt;}
.yf6{bottom:609.552874pt;}
.y56{bottom:609.553779pt;}
.yad{bottom:610.061159pt;}
.y163{bottom:610.289829pt;}
.y20a{bottom:611.474994pt;}
.y10e{bottom:612.237116pt;}
.y22a{bottom:612.572007pt;}
.yda{bottom:613.274433pt;}
.y1d9{bottom:613.741607pt;}
.y2e{bottom:622.125220pt;}
.y12f{bottom:622.447971pt;}
.y98{bottom:624.298040pt;}
.y17e{bottom:625.659130pt;}
.y1bf{bottom:625.684276pt;}
.yf5{bottom:629.560412pt;}
.y1a0{bottom:630.088164pt;}
.y149{bottom:630.294922pt;}
.y55{bottom:632.562448pt;}
.y10d{bottom:634.245408pt;}
.yd9{bottom:635.282726pt;}
.y209{bottom:636.484417pt;}
.y2d{bottom:637.130873pt;}
.yac{bottom:638.071713pt;}
.y1ef{bottom:640.786021pt;}
.y6a{bottom:641.170257pt;}
.y17d{bottom:643.665915pt;}
.y1d8{bottom:643.752915pt;}
.y97{bottom:646.306332pt;}
.y7f{bottom:646.492993pt;}
.y1be{bottom:647.692568pt;}
.y229{bottom:648.585576pt;}
.y19f{bottom:652.096456pt;}
.y148{bottom:653.303591pt;}
.y54{bottom:655.571117pt;}
.y10c{bottom:656.253701pt;}
.y162{bottom:656.307168pt;}
.y208{bottom:661.493840pt;}
.y12e{bottom:662.463048pt;}
.yc3{bottom:662.871645pt;}
.y228{bottom:666.592361pt;}
.y1ee{bottom:666.795821pt;}
.y2c{bottom:667.142181pt;}
.yf4{bottom:669.575489pt;}
.y1bd{bottom:669.700860pt;}
.y1d7{bottom:673.764222pt;}
.y19e{bottom:674.104748pt;}
.y147{bottom:676.312260pt;}
.y69{bottom:677.183826pt;}
.y10b{bottom:678.261993pt;}
.y53{bottom:678.579786pt;}
.yd8{bottom:679.299310pt;}
.y161{bottom:679.315837pt;}
.y17c{bottom:679.679484pt;}
.y2b{bottom:682.147835pt;}
.y12d{bottom:682.470586pt;}
.y227{bottom:684.599145pt;}
.y207{bottom:686.503263pt;}
.yf3{bottom:689.583027pt;}
.yc2{bottom:689.881822pt;}
.y96{bottom:690.322917pt;}
.y1bc{bottom:691.709153pt;}
.y1ed{bottom:692.805620pt;}
.yab{bottom:694.092820pt;}
.y19d{bottom:696.113040pt;}
.y7e{bottom:696.511839pt;}
.y2a{bottom:697.153488pt;}
.y17b{bottom:697.686269pt;}
.y146{bottom:699.320930pt;}
.y52{bottom:701.588455pt;}
.y160{bottom:702.324506pt;}
.y12c{bottom:702.478124pt;}
.y226{bottom:702.605930pt;}
.yf2{bottom:709.590566pt;}
.y206{bottom:711.512686pt;}
.y29{bottom:712.159142pt;}
.y95{bottom:712.331209pt;}
.y68{bottom:713.197395pt;}
.y1bb{bottom:713.717445pt;}
.y17a{bottom:715.693053pt;}
.yc1{bottom:716.891999pt;}
.y19c{bottom:718.121333pt;}
.y1ec{bottom:718.815420pt;}
.y225{bottom:720.612714pt;}
.y7d{bottom:721.521262pt;}
.yaa{bottom:722.103374pt;}
.y10a{bottom:722.278577pt;}
.y145{bottom:722.329599pt;}
.y12b{bottom:722.485663pt;}
.yd7{bottom:723.315894pt;}
.y51{bottom:724.597124pt;}
.y15f{bottom:725.333175pt;}
.yf1{bottom:729.598104pt;}
.y179{bottom:733.699838pt;}
.y1d6{bottom:733.786837pt;}
.y1ba{bottom:735.725737pt;}
.y205{bottom:736.522109pt;}
.y19b{bottom:740.129625pt;}
.y28{bottom:742.170450pt;}
.yc0{bottom:743.902176pt;}
.y109{bottom:744.286869pt;}
.y1eb{bottom:744.825220pt;}
.yd6{bottom:745.324187pt;}
.y144{bottom:745.338268pt;}
.y7c{bottom:746.530685pt;}
.y50{bottom:747.605793pt;}
.y15e{bottom:748.341844pt;}
.ya9{bottom:750.113928pt;}
.y178{bottom:751.706622pt;}
.y94{bottom:756.347793pt;}
.y224{bottom:756.626283pt;}
.y27{bottom:757.176103pt;}
.y1b9{bottom:757.734029pt;}
.y204{bottom:761.531532pt;}
.y12a{bottom:762.500739pt;}
.y1d5{bottom:763.798145pt;}
.y108{bottom:766.295162pt;}
.yd5{bottom:767.332479pt;}
.y143{bottom:768.346937pt;}
.yf0{bottom:769.613181pt;}
.y177{bottom:769.713407pt;}
.y4f{bottom:770.614463pt;}
.y1ea{bottom:770.835020pt;}
.ybf{bottom:770.912353pt;}
.y15d{bottom:771.350513pt;}
.y7b{bottom:771.540108pt;}
.y26{bottom:772.181757pt;}
.y223{bottom:774.633068pt;}
.y93{bottom:778.356085pt;}
.y1b8{bottom:779.742321pt;}
.y129{bottom:782.508278pt;}
.y19a{bottom:784.146209pt;}
.y4{bottom:786.057558pt;}
.y203{bottom:786.540955pt;}
.y25{bottom:787.187411pt;}
.y176{bottom:787.720191pt;}
.y107{bottom:788.303454pt;}
.yd4{bottom:789.340771pt;}
.yef{bottom:789.620719pt;}
.y67{bottom:790.985237pt;}
.y222{bottom:792.639852pt;}
.y4e{bottom:793.623132pt;}
.y1d4{bottom:793.809452pt;}
.y15c{bottom:794.359182pt;}
.y7a{bottom:796.549531pt;}
.y1e9{bottom:796.844820pt;}
.ybe{bottom:797.922529pt;}
.y92{bottom:800.364378pt;}
.y1b7{bottom:801.750614pt;}
.y128{bottom:802.515816pt;}
.y175{bottom:805.726976pt;}
.yba{bottom:808.014787pt;}
.yee{bottom:809.628257pt;}
.y221{bottom:810.646637pt;}
.yd3{bottom:811.349063pt;}
.y202{bottom:811.550378pt;}
.y142{bottom:814.364275pt;}
.y4d{bottom:816.631801pt;}
.y24{bottom:817.198719pt;}
.y11f{bottom:821.055396pt;}
.y79{bottom:821.558954pt;}
.y91{bottom:822.372670pt;}
.y127{bottom:822.523355pt;}
.y1e8{bottom:822.854620pt;}
.y174{bottom:823.733760pt;}
.y1b6{bottom:823.758906pt;}
.y1d3{bottom:823.820760pt;}
.ybd{bottom:824.932706pt;}
.y199{bottom:828.162794pt;}
.y220{bottom:828.653421pt;}
.yed{bottom:829.635796pt;}
.y23{bottom:832.204372pt;}
.yd2{bottom:833.357355pt;}
.y201{bottom:836.559801pt;}
.y15b{bottom:840.376521pt;}
.y90{bottom:844.380962pt;}
.y1b5{bottom:845.767198pt;}
.y78{bottom:846.568377pt;}
.y22{bottom:847.210026pt;}
.y1e7{bottom:848.864420pt;}
.yec{bottom:849.643334pt;}
.y198{bottom:850.171086pt;}
.y11e{bottom:854.067834pt;}
.yd1{bottom:855.365648pt;}
.yb9{bottom:856.032879pt;}
.y173{bottom:859.747329pt;}
.y13{bottom:861.667425pt;}
.y21{bottom:862.215680pt;}
.y126{bottom:862.538431pt;}
.y4c{bottom:863.649516pt;}
.y21f{bottom:864.666991pt;}
.y15a{bottom:866.168751pt;}
.y8f{bottom:866.389254pt;}
.y1b4{bottom:867.775490pt;}
.yeb{bottom:869.650873pt;}
.y77{bottom:871.577800pt;}
.y197{bottom:872.179378pt;}
.y1e6{bottom:874.874220pt;}
.ybc{bottom:878.953060pt;}
.y125{bottom:882.545970pt;}
.y21e{bottom:882.673775pt;}
.y1e3{bottom:885.346379pt;}
.y218{bottom:885.526739pt;}
.y11d{bottom:887.080273pt;}
.y8e{bottom:888.397546pt;}
.yea{bottom:889.658411pt;}
.y1b3{bottom:889.783782pt;}
.y194{bottom:890.965717pt;}
.y20{bottom:892.226987pt;}
.y196{bottom:894.187670pt;}
.y159{bottom:895.179682pt;}
.yd0{bottom:899.382232pt;}
.y21d{bottom:900.680560pt;}
.y1e5{bottom:900.884019pt;}
.y12{bottom:902.535068pt;}
.y124{bottom:902.553508pt;}
.ybb{bottom:905.963236pt;}
.y1f{bottom:907.232641pt;}
.y16{bottom:907.729379pt;}
.y8d{bottom:910.405839pt;}
.y172{bottom:910.718330pt;}
.y193{bottom:913.974386pt;}
.y195{bottom:916.195962pt;}
.y21c{bottom:918.687344pt;}
.ya{bottom:920.062741pt;}
.y1e{bottom:922.238295pt;}
.y123{bottom:922.561046pt;}
.y21b{bottom:936.694129pt;}
.y1d{bottom:937.243949pt;}
.y106{bottom:939.329089pt;}
.y171{bottom:939.729261pt;}
.y76{bottom:942.565411pt;}
.y11{bottom:943.402712pt;}
.y1d1{bottom:951.281623pt;}
.y8c{bottom:954.422423pt;}
.y1b2{bottom:960.151596pt;}
.y200{bottom:963.800074pt;}
.y105{bottom:966.339265pt;}
.y1c{bottom:967.255256pt;}
.y21a{bottom:975.225627pt;}
.y122{bottom:977.117017pt;}
.y15{bottom:977.755763pt;}
.y1b{bottom:982.260910pt;}
.y10{bottom:984.270355pt;}
.y1ff{bottom:985.808367pt;}
.y9{bottom:996.091387pt;}
.y1a{bottom:997.266564pt;}
.y19{bottom:1012.272218pt;}
.y75{bottom:1018.594057pt;}
.y8{bottom:1023.815077pt;}
.y2{bottom:1026.471566pt;}
.y219{bottom:1045.252011pt;}
.y121{bottom:1046.143024pt;}
.y14{bottom:1047.782147pt;}
.h11{height:44.944934pt;}
.h12{height:46.097368pt;}
.h33{height:46.284398pt;}
.h10{height:47.540912pt;}
.h36{height:53.743249pt;}
.h4{height:59.782525pt;}
.h2d{height:66.147923pt;}
.h3{height:67.163388pt;}
.h13{height:69.333858pt;}
.h1a{height:69.510956pt;}
.h17{height:70.272477pt;}
.hb{height:70.927740pt;}
.h27{height:71.541915pt;}
.h34{height:74.428043pt;}
.h8{height:78.423415pt;}
.h21{height:78.552597pt;}
.h20{height:79.971611pt;}
.h1e{height:82.677151pt;}
.h16{height:84.170674pt;}
.hf{height:84.918480pt;}
.h2c{height:88.369736pt;}
.h31{height:90.957271pt;}
.h1d{height:91.659535pt;}
.h7{height:91.805410pt;}
.h38{height:92.534865pt;}
.h2e{height:92.659912pt;}
.h22{height:95.081825pt;}
.h5{height:95.913503pt;}
.h26{height:96.799432pt;}
.h1f{height:97.911891pt;}
.h24{height:100.162739pt;}
.h28{height:100.998494pt;}
.hc{height:105.190517pt;}
.h1c{height:107.486498pt;}
.h37{height:109.914343pt;}
.h2b{height:119.920183pt;}
.h32{height:122.056948pt;}
.h15{height:122.359272pt;}
.he{height:122.406382pt;}
.h19{height:122.671812pt;}
.ha{height:125.172129pt;}
.h30{height:134.173593pt;}
.h6{height:141.886786pt;}
.h23{height:146.049794pt;}
.h2a{height:149.862761pt;}
.h1b{height:163.593089pt;}
.hd{height:196.148056pt;}
.h35{height:215.774625pt;}
.h14{height:224.371224pt;}
.h18{height:224.944330pt;}
.h9{height:229.529183pt;}
.h2f{height:272.010294pt;}
.h29{height:274.804602pt;}
.h25{height:278.759037pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:35.416590pt;}
.xb{left:41.211859pt;}
.x28{left:43.788372pt;}
.x59{left:46.351692pt;}
.x3e{left:48.854051pt;}
.x3b{left:49.862293pt;}
.x4e{left:56.948254pt;}
.x9{left:58.790183pt;}
.x45{left:62.571140pt;}
.x54{left:70.789639pt;}
.x7{left:73.246377pt;}
.x37{left:74.225450pt;}
.x48{left:76.218625pt;}
.x4{left:79.399990pt;}
.x2f{left:80.316516pt;}
.x2b{left:86.193730pt;}
.x2a{left:87.991283pt;}
.x47{left:89.843782pt;}
.x3f{left:91.932782pt;}
.x4f{left:93.227548pt;}
.x2{left:94.695232pt;}
.x41{left:97.435327pt;}
.x2c{left:100.761719pt;}
.x40{left:103.531374pt;}
.x2e{left:109.874528pt;}
.x2d{left:118.330839pt;}
.x38{left:128.972762pt;}
.x30{left:134.039883pt;}
.x57{left:136.632012pt;}
.x29{left:173.759426pt;}
.x31{left:189.091875pt;}
.x3{left:199.810555pt;}
.x39{left:209.846983pt;}
.x49{left:214.426948pt;}
.x1{left:216.480129pt;}
.x42{left:223.170201pt;}
.x3a{left:230.071514pt;}
.x52{left:237.808819pt;}
.x3c{left:241.055907pt;}
.x33{left:252.195596pt;}
.x4a{left:263.471221pt;}
.x3d{left:272.364578pt;}
.x51{left:280.887550pt;}
.x53{left:285.989579pt;}
.x36{left:291.320087pt;}
.x44{left:293.748621pt;}
.x34{left:297.540806pt;}
.x4b{left:308.816431pt;}
.x1b{left:312.752618pt;}
.x22{left:323.178421pt;}
.x1e{left:334.463923pt;}
.x1c{left:342.373153pt;}
.x18{left:344.702156pt;}
.x14{left:349.766564pt;}
.x26{left:350.798203pt;}
.x16{left:351.845472pt;}
.x21{left:353.392930pt;}
.x20{left:356.003289pt;}
.x15{left:358.582385pt;}
.x55{left:359.740167pt;}
.x13{left:361.943027pt;}
.xd{left:364.850372pt;}
.x27{left:366.163367pt;}
.x19{left:367.226267pt;}
.xe{left:369.320806pt;}
.x23{left:370.665063pt;}
.x24{left:371.712333pt;}
.x11{left:372.603293pt;}
.x25{left:373.838133pt;}
.x1a{left:375.963934pt;}
.xf{left:377.120620pt;}
.x1f{left:378.683709pt;}
.x17{left:379.637193pt;}
.x12{left:385.701978pt;}
.x10{left:389.453392pt;}
.x1d{left:390.953957pt;}
.xc{left:394.111397pt;}
.x4c{left:410.973551pt;}
.x8{left:455.765501pt;}
.x56{left:485.068637pt;}
.x5{left:512.940616pt;}
.x35{left:714.161922pt;}
.x32{left:717.960194pt;}
.x50{left:719.726466pt;}
.x4d{left:723.524802pt;}
.x43{left:733.148641pt;}
.x46{left:734.305345pt;}
.x58{left:739.869985pt;}
.xa{left:746.680513pt;}
}




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