
    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_311bf51c924a2ba3c7c2cd66.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight: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_ad708678f685104073e50250.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6c727be44aa5d76435b2f236.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;font-style:normal;font-weight: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_dfc4baac998b8a04599a35fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010254;font-style:normal;font-weight: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_727ee58160d89571770d9c7f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf1a702503d62f6572127156.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight: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_cf92451e888f25aa12828251.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9dc644c5e195b9da4666b7d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.145996;font-style:normal;font-weight: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_1b572a920e51dbaeeea02d87.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010254;font-style:normal;font-weight: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_4be976f7e96c0b287414ef5b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_627d9ef10eea80715956986d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010254;font-style:normal;font-weight: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_4eafd153e95d8d4e341f8037.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.145996;font-style:normal;font-weight: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_104ddf844290dd84f5a09dba.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight: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_3a56f5fb211fcf2f0eda3ee6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_12d92c2084c0e960edb93d69.woff2')format("woff");}.fff{font-family:fff;line-height:0.987793;font-style:normal;font-weight: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_89a6a0a623488206f2ed6a04.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.010254;font-style:normal;font-weight: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_4be976f7e96c0b287414ef5b.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ce294e2efc4d7120a596abd2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.010254;font-style:normal;font-weight: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_f821294964135b0222c997d4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.987793;font-style:normal;font-weight: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_5dc5755f4bb4bd528ff75113.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.727539;font-style:normal;font-weight: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_337ab945dd515c235b9b594c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;font-style:normal;font-weight: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_6e86f268c4c3635032b78f88.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_54af4cb59f2133dd771eb4b5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.065430;font-style:normal;font-weight: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_ca5ffa5413c828c174f918f3.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.010254;font-style:normal;font-weight: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_6b06672353e16ba13125656a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;font-style:normal;font-weight: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_58d42f0a7df86a4ee125a972.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_6de8d424fdc827c99c455535.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.010254;font-style:normal;font-weight: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_c7a956694e04ea42bfb47288.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910156;font-style:normal;font-weight: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_815d61a682c3f32f56b739f4.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.065430;font-style:normal;font-weight: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_1a7a88dae51e355a822216d3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938477;font-style:normal;font-weight: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_854eb9a7240756d86db62578.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;font-style:normal;font-weight: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_d6aeb2bb3141ef20f1791b52.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.758789;font-style:normal;font-weight: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_7dbfcaabb4d9c674b73e50c8.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.284180;font-style:normal;font-weight: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_650446c730517b00bb523e63.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_05fe586b9d2c2f6b066f3968.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.158691;font-style:normal;font-weight: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_db802f5e14d7b230d805fb5f.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.010254;font-style:normal;font-weight: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_58d42f0a7df86a4ee125a972.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_316ca9cca18aca0cc5fbebcb.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.158691;font-style:normal;font-weight: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_5c719009ef27d1908b436513.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.010254;font-style:normal;font-weight: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_5dc5755f4bb4bd528ff75113.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.727539;font-style:normal;font-weight: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_d6aeb2bb3141ef20f1791b52.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.758789;font-style:normal;font-weight: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_2dd4c9e3a767aba1dae13ad8.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.727539;font-style:normal;font-weight: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_d0046361239aa5c5c4756bcf.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.284180;font-style:normal;font-weight: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_cf92451e888f25aa12828251.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_cc58a1880403d559a84a3962.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.979004;font-style:normal;font-weight: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_331aadff459a12a33acd5be4.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.187012;font-style:normal;font-weight: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_866883a4adb01c57c97e808a.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_e777415e37930b118849855a.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.187012;font-style:normal;font-weight: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_82cbc0e57ddabff9ab2a8d1a.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.979004;font-style:normal;font-weight: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_08e34ab3a7d89808106b10bd.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.730957;font-style:normal;font-weight: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_d6aeb2bb3141ef20f1791b52.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_d7f285f34c9dd222e0f78be3.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_af02fa5dfd8607919a49aa33.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_668c518bb0cc553e64c44d33.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.991699;font-style:normal;font-weight: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_a6db61fc5a290b44c24fa38d.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.010254;font-style:normal;font-weight: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_866883a4adb01c57c97e808a.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_5167ebed75b13e0e1783754b.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.010254;font-style:normal;font-weight: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_00fe18160daf049f330a4da4.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.991699;font-style:normal;font-weight: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_5dc5755f4bb4bd528ff75113.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_e3df90bbd8501a72e8e3cac9.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_6e86f268c4c3635032b78f88.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_94f731221a631f91cff627fe.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.898438;font-style:normal;font-weight: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_6dc7daf87a99165488dea73e.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.187012;font-style:normal;font-weight: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_05fa5c32cdf72e0e87c5a3d2.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_22f921d58f4f35b54727e934.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.187012;font-style:normal;font-weight: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_df2c5aace61df473b1abb367.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.898438;font-style:normal;font-weight: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_c7a956694e04ea42bfb47288.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.910156;font-style:normal;font-weight: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_5dc5755f4bb4bd528ff75113.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_2dd4c9e3a767aba1dae13ad8.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.727539;font-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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls21{letter-spacing:-1.008000px;}
.ls28{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.252000px;}
.ls9{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.049680px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.037440px;}
.ls22{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.049680px;}
.ls27{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.101280px;}
.ls2a{letter-spacing:0.112320px;}
.lsa{letter-spacing:0.119520px;}
.ls20{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.189360px;}
.ls3{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.701280px;}
.ls1a{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.832320px;}
.ls5{letter-spacing:0.840000px;}
.ls1f{letter-spacing:10.800000px;}
.ls1b{letter-spacing:11.520000px;}
.lsc{letter-spacing:20.160000px;}
.ls23{letter-spacing:26.064000px;}
.ls26{letter-spacing:29.664000px;}
.ls15{letter-spacing:30.384000px;}
.lse{letter-spacing:33.240000px;}
.ls7{letter-spacing:33.960000px;}
.ls14{letter-spacing:33.984000px;}
.ls24{letter-spacing:35.424000px;}
.ls19{letter-spacing:38.304000px;}
.ls25{letter-spacing:46.224000px;}
.ls1e{letter-spacing:54.864000px;}
.ls2b{letter-spacing:64.026720px;}
.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;}
}
.ws12{word-spacing:-72.000000px;}
.ws19{word-spacing:-59.760000px;}
.ws1c{word-spacing:-43.776000px;}
.wsb{word-spacing:-43.632000px;}
.ws1b{word-spacing:-43.488000px;}
.ws1{word-spacing:-27.000000px;}
.ws8{word-spacing:-26.748000px;}
.ws2{word-spacing:-23.940000px;}
.ws7{word-spacing:-21.730320px;}
.ws3{word-spacing:-19.440000px;}
.ws11{word-spacing:-18.720000px;}
.ws1a{word-spacing:-18.504000px;}
.ws10{word-spacing:-18.288000px;}
.ws16{word-spacing:-18.144000px;}
.ws15{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.280000px;}
.ws13{word-spacing:-16.704000px;}
.ws14{word-spacing:-16.416000px;}
.ws9{word-spacing:-12.420000px;}
.ws17{word-spacing:-12.240000px;}
.wsd{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.700000px;}
.ws0{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-2.760000px;}
._1{margin-left:-1.268880px;}
._0{width:1.195200px;}
._2{width:2.274240px;}
._6{width:3.816000px;}
._7{width:4.824000px;}
._5{width:6.204000px;}
._3{width:7.808880px;}
._12{width:9.216000px;}
._19{width:10.872000px;}
._a{width:12.024000px;}
._8{width:13.320000px;}
._9{width:14.500800px;}
._13{width:15.880800px;}
._4{width:16.892880px;}
._b{width:19.296000px;}
._1e{width:20.448000px;}
._1d{width:21.528000px;}
._1f{width:23.328000px;}
._d{width:24.912000px;}
._c{width:25.992000px;}
._18{width:27.216000px;}
._f{width:28.872000px;}
._10{width:30.096000px;}
._20{width:31.321680px;}
._e{width:32.328000px;}
._21{width:34.257840px;}
._11{width:35.280000px;}
._14{width:36.288000px;}
._1a{width:37.368000px;}
._16{width:39.268800px;}
._17{width:40.449600px;}
._1b{width:47.736000px;}
._1c{width:48.888000px;}
._23{width:54.000000px;}
._24{width:55.612800px;}
._22{width:99.360000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.000000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:87.120000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y11a{bottom:4.140000px;}
.y11f{bottom:4.170000px;}
.y2{bottom:57.240000px;}
.y244{bottom:79.200000px;}
.y6d{bottom:112.680000px;}
.y228{bottom:113.580000px;}
.y2b9{bottom:114.660000px;}
.y2a{bottom:124.740000px;}
.y272{bottom:125.100000px;}
.y165{bottom:125.280000px;}
.y288{bottom:129.420000px;}
.y18d{bottom:130.500000px;}
.yeb{bottom:132.660000px;}
.y257{bottom:132.840000px;}
.y227{bottom:133.380000px;}
.y241{bottom:137.520000px;}
.y4c{bottom:139.680000px;}
.y10e{bottom:139.860000px;}
.ycc{bottom:140.580000px;}
.y2a7{bottom:142.560000px;}
.y8f{bottom:143.460000px;}
.y237{bottom:143.820000px;}
.y1a6{bottom:145.080000px;}
.y6c{bottom:145.980000px;}
.y17b{bottom:147.240000px;}
.y2b8{bottom:147.960000px;}
.y1c3{bottom:150.300000px;}
.y2ce{bottom:152.640000px;}
.yaf{bottom:157.320000px;}
.y164{bottom:158.040000px;}
.y29{bottom:158.400000px;}
.y271{bottom:158.580000px;}
.y287{bottom:163.080000px;}
.y1da{bottom:163.620000px;}
.y18c{bottom:163.980000px;}
.y1a5{bottom:164.880000px;}
.y296{bottom:165.420000px;}
.yea{bottom:166.140000px;}
.y256{bottom:166.320000px;}
.y226{bottom:166.680000px;}
.y17a{bottom:166.860000px;}
.y240{bottom:170.310000px;}
.y4b{bottom:173.190000px;}
.y10d{bottom:173.370000px;}
.ycb{bottom:174.090000px;}
.y2a6{bottom:176.250000px;}
.y8e{bottom:177.150000px;}
.y1f6{bottom:179.310000px;}
.y6b{bottom:179.490000px;}
.y2b7{bottom:181.650000px;}
.y1c2{bottom:183.810000px;}
.y286{bottom:183.990000px;}
.y2cd{bottom:186.150000px;}
.y255{bottom:187.230000px;}
.ye9{bottom:187.590000px;}
.yae{bottom:190.830000px;}
.y163{bottom:191.370000px;}
.y28{bottom:191.910000px;}
.y270{bottom:192.090000px;}
.y12f{bottom:195.690000px;}
.y236{bottom:196.950000px;}
.y1d9{bottom:197.310000px;}
.y18b{bottom:197.670000px;}
.y1a4{bottom:198.210000px;}
.y295{bottom:198.930000px;}
.y1f5{bottom:199.830000px;}
.y179{bottom:200.370000px;}
.y285{bottom:203.610000px;}
.y23f{bottom:203.790000px;}
.y4a{bottom:206.670000px;}
.y254{bottom:206.850000px;}
.y10c{bottom:207.030000px;}
.yca{bottom:207.570000px;}
.ye8{bottom:208.110000px;}
.y2a5{bottom:209.730000px;}
.y8d{bottom:210.630000px;}
.y6a{bottom:212.250000px;}
.y2b6{bottom:215.130000px;}
.y1c1{bottom:217.470000px;}
.y1d8{bottom:218.550000px;}
.y178{bottom:221.610000px;}
.yad{bottom:224.490000px;}
.y162{bottom:225.030000px;}
.y27{bottom:225.570000px;}
.y26f{bottom:225.750000px;}
.y2cc{bottom:226.650000px;}
.yc9{bottom:228.990000px;}
.y12e{bottom:229.350000px;}
.y235{bottom:230.610000px;}
.y18a{bottom:231.150000px;}
.y1a3{bottom:231.870000px;}
.y294{bottom:232.410000px;}
.y1f4{bottom:233.490000px;}
.y225{bottom:233.850000px;}
.y284{bottom:236.910000px;}
.y23e{bottom:237.270000px;}
.y1d7{bottom:239.250000px;}
.y49{bottom:240.330000px;}
.y10b{bottom:240.510000px;}
.y177{bottom:241.410000px;}
.ye7{bottom:241.770000px;}
.y2a4{bottom:243.210000px;}
.y8c{bottom:244.290000px;}
.yac{bottom:245.370000px;}
.y69{bottom:245.730000px;}
.y26e{bottom:246.630000px;}
.y26{bottom:246.810000px;}
.y2b5{bottom:248.610000px;}
.yc8{bottom:248.790000px;}
.y12d{bottom:250.590000px;}
.y1c0{bottom:250.950000px;}
.y189{bottom:252.570000px;}
.y224{bottom:255.270000px;}
.y161{bottom:258.510000px;}
.y2cb{bottom:260.130000px;}
.y48{bottom:261.570000px;}
.ye6{bottom:263.010000px;}
.y234{bottom:264.090000px;}
.yab{bottom:264.990000px;}
.y1a2{bottom:265.350000px;}
.y8b{bottom:265.530000px;}
.y293{bottom:266.070000px;}
.y26d{bottom:266.250000px;}
.y25{bottom:266.610000px;}
.y1f3{bottom:266.970000px;}
.y12c{bottom:270.390000px;}
.y23d{bottom:270.750000px;}
.y188{bottom:272.370000px;}
.y1d6{bottom:272.730000px;}
.y253{bottom:273.810000px;}
.y10a{bottom:274.170000px;}
.y176{bottom:274.890000px;}
.y223{bottom:275.070000px;}
.y2a3{bottom:276.870000px;}
.y68{bottom:279.210000px;}
.y47{bottom:281.370000px;}
.yc7{bottom:282.090000px;}
.y2b4{bottom:282.270000px;}
.ye5{bottom:283.710000px;}
.y1bf{bottom:284.430000px;}
.y8a{bottom:285.330000px;}
.y1f2{bottom:287.850000px;}
.y160{bottom:292.170000px;}
.y2ca{bottom:293.610000px;}
.y175{bottom:296.130000px;}
.y233{bottom:297.570000px;}
.yaa{bottom:298.290000px;}
.y1a1{bottom:298.830000px;}
.y26c{bottom:299.550000px;}
.y24{bottom:299.910000px;}
.y12b{bottom:303.690000px;}
.y283{bottom:304.050000px;}
.y187{bottom:305.670000px;}
.y1d5{bottom:306.390000px;}
.y1f1{bottom:307.470000px;}
.y109{bottom:307.650000px;}
.y222{bottom:308.370000px;}
.y2a2{bottom:310.350000px;}
.y23c{bottom:311.970000px;}
.y67{bottom:312.690000px;}
.y15f{bottom:313.410000px;}
.y46{bottom:314.850000px;}
.yc6{bottom:315.750000px;}
.y174{bottom:315.930000px;}
.ye4{bottom:317.190000px;}
.y1be{bottom:318.090000px;}
.y89{bottom:318.630000px;}
.y282{bottom:324.930000px;}
.y2c9{bottom:326.370000px;}
.y108{bottom:329.070000px;}
.y232{bottom:331.230000px;}
.ya9{bottom:331.770000px;}
.y1a0{bottom:332.490000px;}
.y26b{bottom:333.030000px;}
.y15e{bottom:333.210000px;}
.y23{bottom:333.570000px;}
.y12a{bottom:337.350000px;}
.y1bd{bottom:338.970000px;}
.y186{bottom:339.150000px;}
.y1d4{bottom:339.870000px;}
.y1f0{bottom:340.770000px;}
.y252{bottom:340.950000px;}
.y221{bottom:341.850000px;}
.y281{bottom:344.550000px;}
.y23b{bottom:345.270000px;}
.y66{bottom:346.350000px;}
.y45{bottom:348.330000px;}
.yc5{bottom:348.510000px;}
.y107{bottom:348.870000px;}
.y173{bottom:349.410000px;}
.ye3{bottom:350.850000px;}
.y2a1{bottom:351.570000px;}
.y88{bottom:352.290000px;}
.y231{bottom:352.470000px;}
.y292{bottom:353.910000px;}
.y1bc{bottom:358.590000px;}
.y2c8{bottom:359.670000px;}
.y1d3{bottom:360.750000px;}
.y251{bottom:362.370000px;}
.y220{bottom:363.270000px;}
.ya8{bottom:365.430000px;}
.y19f{bottom:365.970000px;}
.y15d{bottom:366.510000px;}
.y26a{bottom:366.690000px;}
.y22{bottom:367.050000px;}
.y106{bottom:369.930000px;}
.y172{bottom:370.650000px;}
.y129{bottom:370.830000px;}
.ye2{bottom:372.090000px;}
.y230{bottom:372.270000px;}
.y185{bottom:372.810000px;}
.y291{bottom:373.530000px;}
.y1ef{bottom:374.430000px;}
.y280{bottom:377.850000px;}
.y23a{bottom:378.930000px;}
.y65{bottom:379.830000px;}
.y1d2{bottom:380.370000px;}
.y44{bottom:381.810000px;}
.y250{bottom:381.990000px;}
.y21f{bottom:383.070000px;}
.y2a0{bottom:384.870000px;}
.y87{bottom:385.770000px;}
.ya7{bottom:386.310000px;}
.y171{bottom:390.450000px;}
.y105{bottom:390.630000px;}
.ye1{bottom:391.890000px;}
.y2c7{bottom:393.330000px;}
.y184{bottom:393.690000px;}
.y19e{bottom:399.630000px;}
.y15c{bottom:400.170000px;}
.y21{bottom:400.710000px;}
.y128{bottom:404.490000px;}
.y22f{bottom:405.750000px;}
.ya6{bottom:405.930000px;}
.y29f{bottom:406.290000px;}
.y86{bottom:406.650000px;}
.y290{bottom:407.010000px;}
.y1ee{bottom:407.910000px;}
.y27f{bottom:411.330000px;}
.y239{bottom:412.455000px;}
.y183{bottom:413.355000px;}
.y64{bottom:413.535000px;}
.y1d1{bottom:413.715000px;}
.yc4{bottom:415.335000px;}
.y43{bottom:415.515000px;}
.y21e{bottom:416.415000px;}
.y269{bottom:421.095000px;}
.y20{bottom:421.995000px;}
.y170{bottom:423.795000px;}
.y104{bottom:424.155000px;}
.y1bb{bottom:424.695000px;}
.ye0{bottom:425.235000px;}
.y29e{bottom:425.955000px;}
.y85{bottom:426.315000px;}
.y2c6{bottom:426.855000px;}
.y28f{bottom:427.935000px;}
.y27e{bottom:432.795000px;}
.y19d{bottom:433.155000px;}
.y15b{bottom:433.695000px;}
.y127{bottom:438.015000px;}
.y20b{bottom:439.095000px;}
.ya5{bottom:439.275000px;}
.y268{bottom:440.715000px;}
.y1ed{bottom:441.615000px;}
.y1f{bottom:441.795000px;}
.y16f{bottom:445.215000px;}
.y238{bottom:445.935000px;}
.y63{bottom:446.115000px;}
.y182{bottom:446.655000px;}
.y1d0{bottom:447.375000px;}
.y28e{bottom:447.555000px;}
.y42{bottom:448.995000px;}
.y21d{bottom:450.075000px;}
.y27d{bottom:453.315000px;}
.y19c{bottom:454.035000px;}
.y15a{bottom:455.115000px;}
.y2b3{bottom:457.455000px;}
.y103{bottom:457.635000px;}
.y1ba{bottom:457.995000px;}
.ydf{bottom:458.895000px;}
.y29d{bottom:459.435000px;}
.y84{bottom:459.615000px;}
.y2c5{bottom:460.335000px;}
.y1ec{bottom:462.855000px;}
.y16e{bottom:465.015000px;}
.y41{bottom:470.415000px;}
.y126{bottom:471.495000px;}
.y20a{bottom:472.395000px;}
.ya4{bottom:472.755000px;}
.y19b{bottom:473.655000px;}
.y267{bottom:474.195000px;}
.y159{bottom:474.915000px;}
.y1e{bottom:475.275000px;}
.y102{bottom:478.515000px;}
.y62{bottom:479.595000px;}
.y181{bottom:480.135000px;}
.y1cf{bottom:480.855000px;}
.y2c4{bottom:481.755000px;}
.yc3{bottom:482.475000px;}
.y1eb{bottom:482.655000px;}
.y21c{bottom:483.555000px;}
.y101{bottom:486.795000px;}
.y27c{bottom:486.975000px;}
.y40{bottom:490.215000px;}
.y1b9{bottom:490.755000px;}
.y2b2{bottom:490.935000px;}
.y29c{bottom:492.195000px;}
.y83{bottom:492.375000px;}
.y22e{bottom:493.635000px;}
.y16d{bottom:498.315000px;}
.y2c3{bottom:501.555000px;}
.y1ce{bottom:501.735000px;}
.y21b{bottom:504.975000px;}
.y125{bottom:505.155000px;}
.y209{bottom:506.055000px;}
.ya3{bottom:506.415000px;}
.y100{bottom:506.595000px;}
.y19a{bottom:506.955000px;}
.y266{bottom:507.675000px;}
.y158{bottom:508.215000px;}
.y1d{bottom:508.755000px;}
.y61{bottom:513.075000px;}
.y22d{bottom:513.255000px;}
.y180{bottom:513.795000px;}
.y28d{bottom:514.335000px;}
.yc2{bottom:516.135000px;}
.y16c{bottom:519.735000px;}
.y27b{bottom:520.455000px;}
.y1cd{bottom:521.355000px;}
.y3f{bottom:523.515000px;}
.y1b8{bottom:524.235000px;}
.y2b1{bottom:524.595000px;}
.y21a{bottom:524.775000px;}
.y29b{bottom:525.495000px;}
.y82{bottom:525.855000px;}
.yde{bottom:526.035000px;}
.y199{bottom:527.835000px;}
.y17f{bottom:534.675000px;}
.y2c2{bottom:534.855000px;}
.y24f{bottom:537.555000px;}
.y124{bottom:538.635000px;}
.y16b{bottom:539.535000px;}
.ya2{bottom:539.895000px;}
.y265{bottom:541.155000px;}
.y157{bottom:541.875000px;}
.y1c{bottom:542.235000px;}
.y60{bottom:546.735000px;}
.y198{bottom:547.455000px;}
.y28c{bottom:547.995000px;}
.yc1{bottom:549.615000px;}
.y17e{bottom:554.295000px;}
.y1cc{bottom:554.655000px;}
.y1b7{bottom:556.815000px;}
.y3e{bottom:556.995000px;}
.y24e{bottom:557.175000px;}
.y219{bottom:558.075000px;}
.y29a{bottom:558.255000px;}
.y81{bottom:559.335000px;}
.ydd{bottom:559.515000px;}
.y27a{bottom:562.395000px;}
.y156{bottom:563.115000px;}
.y2c1{bottom:567.615000px;}
.y123{bottom:572.295000px;}
.y16a{bottom:572.835000px;}
.y208{bottom:573.195000px;}
.ya1{bottom:573.555000px;}
.y264{bottom:574.815000px;}
.y1b{bottom:575.895000px;}
.y2b0{bottom:579.495000px;}
.y5f{bottom:580.215000px;}
.ydc{bottom:580.395000px;}
.y197{bottom:580.935000px;}
.y28b{bottom:581.475000px;}
.y155{bottom:582.915000px;}
.yc0{bottom:583.095000px;}
.y279{bottom:583.815000px;}
.y17d{bottom:587.595000px;}
.y1cb{bottom:588.315000px;}
.y3d{bottom:589.755000px;}
.y1b6{bottom:590.295000px;}
.y24d{bottom:590.655000px;}
.y218{bottom:591.555000px;}
.y80{bottom:592.815000px;}
.y207{bottom:594.075000px;}
.y169{bottom:594.255000px;}
.ya0{bottom:594.435000px;}
.y1a{bottom:597.135000px;}
.y2af{bottom:599.115000px;}
.ydb{bottom:600.015000px;}
.y2c0{bottom:601.095000px;}
.y5e{bottom:601.635000px;}
.y28a{bottom:602.355000px;}
.ybf{bottom:603.975000px;}
.y278{bottom:604.335000px;}
.y122{bottom:605.775000px;}
.yff{bottom:607.035000px;}
.y263{bottom:608.295000px;}
.y206{bottom:613.515000px;}
.y22c{bottom:613.695000px;}
.y7f{bottom:613.875000px;}
.y196{bottom:614.415000px;}
.y154{bottom:616.215000px;}
.y1ea{bottom:616.755000px;}
.y19{bottom:616.935000px;}
.y17c{bottom:621.075000px;}
.y5d{bottom:621.255000px;}
.y1ca{bottom:621.795000px;}
.y289{bottom:621.975000px;}
.y1b5{bottom:623.055000px;}
.y3c{bottom:623.235000px;}
.ybe{bottom:623.595000px;}
.y24c{bottom:624.135000px;}
.y299{bottom:624.315000px;}
.y217{bottom:625.215000px;}
.y121{bottom:627.195000px;}
.y262{bottom:629.175000px;}
.y120{bottom:632.235000px;}
.y2ae{bottom:632.595000px;}
.y7e{bottom:633.315000px;}
.y2bf{bottom:633.675000px;}
.y22b{bottom:635.115000px;}
.y277{bottom:637.995000px;}
.yfe{bottom:639.795000px;}
.ybd{bottom:644.295000px;}
.y216{bottom:646.455000px;}
.y205{bottom:646.995000px;}
.y9f{bottom:647.355000px;}
.y195{bottom:647.895000px;}
.y261{bottom:648.795000px;}
.y153{bottom:649.875000px;}
.y1e9{bottom:650.235000px;}
.y18{bottom:650.415000px;}
.y11e{bottom:652.935000px;}
.y5c{bottom:654.735000px;}
.y22a{bottom:654.915000px;}
.y1c9{bottom:655.275000px;}
.y1b4{bottom:656.385000px;}
.y3b{bottom:656.745000px;}
.y24b{bottom:657.825000px;}
.y276{bottom:659.265000px;}
.ybc{bottom:664.845000px;}
.y2ad{bottom:665.385000px;}
.y215{bottom:666.285000px;}
.y7d{bottom:666.825000px;}
.yda{bottom:667.005000px;}
.y2be{bottom:667.185000px;}
.y152{bottom:671.145000px;}
.yfd{bottom:673.125000px;}
.y11d{bottom:673.485000px;}
.y275{bottom:679.965000px;}
.y204{bottom:680.505000px;}
.y9e{bottom:680.865000px;}
.y194{bottom:681.585000px;}
.y260{bottom:682.125000px;}
.y17{bottom:683.925000px;}
.y5b{bottom:688.245000px;}
.y1c8{bottom:688.965000px;}
.y1b3{bottom:689.145000px;}
.y3a{bottom:689.505000px;}
.y1e8{bottom:690.765000px;}
.y151{bottom:690.945000px;}
.y24a{bottom:691.305000px;}
.y142{bottom:691.845000px;}
.y11c{bottom:694.185000px;}
.ybb{bottom:698.325000px;}
.y2ac{bottom:698.685000px;}
.y214{bottom:699.765000px;}
.y2bd{bottom:699.945000px;}
.y7c{bottom:700.305000px;}
.yd9{bottom:700.485000px;}
.y16{bottom:705.345000px;}
.yfc{bottom:706.785000px;}
.y141{bottom:712.545000px;}
.y249{bottom:712.725000px;}
.y274{bottom:713.445000px;}
.y203{bottom:714.165000px;}
.y9d{bottom:714.525000px;}
.y11b{bottom:714.885000px;}
.y193{bottom:715.065000px;}
.y25f{bottom:715.785000px;}
.y5a{bottom:721.905000px;}
.y1b2{bottom:722.445000px;}
.y39{bottom:722.805000px;}
.y1e7{bottom:724.065000px;}
.y150{bottom:724.425000px;}
.y298{bottom:724.785000px;}
.y15{bottom:724.965000px;}
.yfb{bottom:728.025000px;}
.y2ab{bottom:731.445000px;}
.yba{bottom:731.805000px;}
.y248{bottom:732.345000px;}
.y140{bottom:733.065000px;}
.y213{bottom:733.245000px;}
.y7b{bottom:733.965000px;}
.y273{bottom:734.865000px;}
.y119{bottom:735.585000px;}
.y192{bottom:735.945000px;}
.yd8{bottom:741.705000px;}
.y1c7{bottom:743.325000px;}
.y202{bottom:747.645000px;}
.y9c{bottom:748.005000px;}
.yfa{bottom:748.725000px;}
.y25e{bottom:749.265000px;}
.y13f{bottom:754.305000px;}
.y59{bottom:755.385000px;}
.y191{bottom:755.565000px;}
.y1b1{bottom:756.105000px;}
.y38{bottom:756.465000px;}
.y1e6{bottom:757.725000px;}
.y14f{bottom:757.905000px;}
.y14{bottom:758.445000px;}
.y118{bottom:760.965000px;}
.y1c6{bottom:762.945000px;}
.y2aa{bottom:764.745000px;}
.yb9{bottom:765.465000px;}
.y247{bottom:765.825000px;}
.y2bc{bottom:766.005000px;}
.y212{bottom:766.725000px;}
.y7a{bottom:767.445000px;}
.y25d{bottom:770.685000px;}
.y13e{bottom:774.825000px;}
.yd7{bottom:775.005000px;}
.y14e{bottom:779.325000px;}
.y297{bottom:779.685000px;}
.y201{bottom:781.125000px;}
.y9b{bottom:781.485000px;}
.yf9{bottom:782.205000px;}
.y211{bottom:788.145000px;}
.y58{bottom:789.045000px;}
.y1b0{bottom:789.585000px;}
.y37{bottom:789.945000px;}
.y25c{bottom:790.485000px;}
.y1e5{bottom:791.205000px;}
.y13{bottom:791.925000px;}
.y1c5{bottom:796.425000px;}
.y2a9{bottom:797.505000px;}
.yb8{bottom:798.945000px;}
.y246{bottom:799.305000px;}
.yd{bottom:799.485000px;}
.y79{bottom:800.925000px;}
.y200{bottom:802.185000px;}
.y168{bottom:802.905000px;}
.y74{bottom:804.885000px;}
.yd6{bottom:808.485000px;}
.y210{bottom:808.665000px;}
.y13d{bottom:809.205000px;}
.y57{bottom:810.285000px;}
.y36{bottom:811.365000px;}
.y12{bottom:813.345000px;}
.y9a{bottom:815.145000px;}
.yf8{bottom:815.685000px;}
.y1ff{bottom:821.625000px;}
.y190{bottom:822.525000px;}
.y167{bottom:822.705000px;}
.y1af{bottom:823.065000px;}
.y25b{bottom:823.785000px;}
.y1e4{bottom:824.865000px;}
.y1c4{bottom:829.905000px;}
.y56{bottom:830.085000px;}
.y2a8{bottom:830.985000px;}
.y35{bottom:831.165000px;}
.y14d{bottom:832.425000px;}
.yb7{bottom:832.605000px;}
.yc{bottom:832.965000px;}
.y11{bottom:833.145000px;}
.y78{bottom:834.585000px;}
.y117{bottom:836.385000px;}
.y73{bottom:838.365000px;}
.y20f{bottom:841.425000px;}
.y13c{bottom:842.685000px;}
.yd5{bottom:842.865000px;}
.y18f{bottom:843.945000px;}
.y1ae{bottom:844.485000px;}
.y25a{bottom:844.665000px;}
.y99{bottom:848.625000px;}
.yf7{bottom:849.345000px;}
.yb6{bottom:853.485000px;}
.y1fe{bottom:855.105000px;}
.y166{bottom:856.005000px;}
.y116{bottom:856.185000px;}
.y1e3{bottom:858.345000px;}
.y55{bottom:863.385000px;}
.y18e{bottom:863.565000px;}
.y1ad{bottom:864.285000px;}
.y34{bottom:864.465000px;}
.y14c{bottom:865.905000px;}
.yb{bottom:866.445000px;}
.y77{bottom:868.065000px;}
.y98{bottom:870.045000px;}
.y72{bottom:871.845000px;}
.yb5{bottom:873.105000px;}
.y20e{bottom:874.905000px;}
.y13b{bottom:877.065000px;}
.yd4{bottom:877.245000px;}
.y1e2{bottom:879.225000px;}
.yf6{bottom:882.825000px;}
.y14b{bottom:887.325000px;}
.y245{bottom:887.865000px;}
.y1fd{bottom:888.585000px;}
.y76{bottom:888.945000px;}
.y115{bottom:889.665000px;}
.y97{bottom:889.845000px;}
.y54{bottom:897.045000px;}
.y1ac{bottom:897.585000px;}
.y33{bottom:897.945000px;}
.y1e1{bottom:898.890000px;}
.ya{bottom:899.970000px;}
.yf5{bottom:904.290000px;}
.y71{bottom:905.370000px;}
.yb4{bottom:906.450000px;}
.y14a{bottom:907.170000px;}
.y20d{bottom:907.530000px;}
.y75{bottom:908.610000px;}
.y1fc{bottom:910.050000px;}
.yd3{bottom:910.950000px;}
.y13a{bottom:911.490000px;}
.y9{bottom:921.390000px;}
.y96{bottom:923.190000px;}
.yf4{bottom:924.090000px;}
.y1fb{bottom:929.850000px;}
.y53{bottom:930.570000px;}
.y242{bottom:930.750000px;}
.y1ab{bottom:931.290000px;}
.y32{bottom:931.650000px;}
.yd2{bottom:932.190000px;}
.y10{bottom:933.630000px;}
.y70{bottom:938.130000px;}
.yb3{bottom:939.930000px;}
.y149{bottom:940.470000px;}
.y20c{bottom:941.010000px;}
.y8{bottom:941.190000px;}
.y95{bottom:944.610000px;}
.y139{bottom:945.870000px;}
.yd1{bottom:950.910000px;}
.yf{bottom:954.870000px;}
.y114{bottom:956.850000px;}
.yf3{bottom:957.390000px;}
.y1fa{bottom:963.150000px;}
.y52{bottom:964.230000px;}
.y94{bottom:964.410000px;}
.y1aa{bottom:964.770000px;}
.y31{bottom:965.130000px;}
.y1e0{bottom:965.850000px;}
.y6f{bottom:971.610000px;}
.yb2{bottom:972.690000px;}
.y2bb{bottom:973.770000px;}
.y148{bottom:973.950000px;}
.y7{bottom:974.490000px;}
.ye{bottom:974.670000px;}
.y113{bottom:978.090000px;}
.y138{bottom:980.250000px;}
.yd0{bottom:981.870000px;}
.y51{bottom:985.470000px;}
.yf2{bottom:990.870000px;}
.y1f9{bottom:996.630000px;}
.y93{bottom:997.710000px;}
.y112{bottom:997.890000px;}
.y1a9{bottom:998.430000px;}
.y30{bottom:998.790000px;}
.y1df{bottom:999.330000px;}
.y137{bottom:1001.670000px;}
.y6e{bottom:1005.090000px;}
.y50{bottom:1005.270000px;}
.yb1{bottom:1006.170000px;}
.y136{bottom:1006.710000px;}
.y2ba{bottom:1007.070000px;}
.y147{bottom:1007.610000px;}
.y6{bottom:1008.150000px;}
.ycf{bottom:1013.010000px;}
.y229{bottom:1019.130000px;}
.y1a8{bottom:1019.310000px;}
.y2f{bottom:1020.030000px;}
.yf1{bottom:1024.530000px;}
.y135{bottom:1028.130000px;}
.y1f8{bottom:1030.290000px;}
.y92{bottom:1031.190000px;}
.y259{bottom:1031.910000px;}
.y1de{bottom:1032.810000px;}
.yce{bottom:1033.530000px;}
.y4f{bottom:1038.570000px;}
.y1a7{bottom:1038.750000px;}
.yb0{bottom:1039.650000px;}
.y2e{bottom:1039.830000px;}
.y2cf{bottom:1040.370000px;}
.y146{bottom:1041.090000px;}
.y5{bottom:1041.630000px;}
.ycd{bottom:1041.990000px;}
.yf0{bottom:1045.770000px;}
.y134{bottom:1049.550000px;}
.y1f7{bottom:1051.530000px;}
.y91{bottom:1052.610000px;}
.y258{bottom:1052.790000px;}
.y111{bottom:1064.850000px;}
.yef{bottom:1065.570000px;}
.y1dd{bottom:1066.470000px;}
.y133{bottom:1070.970000px;}
.y4e{bottom:1072.230000px;}
.y90{bottom:1072.410000px;}
.y2d{bottom:1073.130000px;}
.y145{bottom:1081.950000px;}
.y4{bottom:1082.310000px;}
.y1dc{bottom:1087.350000px;}
.y132{bottom:1092.390000px;}
.y110{bottom:1098.330000px;}
.yee{bottom:1099.050000px;}
.y4d{bottom:1105.710000px;}
.y2c{bottom:1105.890000px;}
.y1db{bottom:1106.970000px;}
.y144{bottom:1108.590000px;}
.y131{bottom:1113.810000px;}
.y143{bottom:1114.170000px;}
.y10f{bottom:1119.750000px;}
.yed{bottom:1119.930000px;}
.y3{bottom:1131.270000px;}
.y130{bottom:1135.230000px;}
.y2b{bottom:1139.370000px;}
.yec{bottom:1139.550000px;}
.y243{bottom:1160.820000px;}
.y1{bottom:1196.100000px;}
.hb{height:12.884766px;}
.h13{height:12.937500px;}
.h8{height:13.104492px;}
.h12{height:16.286133px;}
.hd{height:20.520000px;}
.hf{height:20.556000px;}
.he{height:20.700000px;}
.h16{height:51.539062px;}
.h15{height:51.750000px;}
.ha{height:52.312500px;}
.h6{height:52.417969px;}
.h2{height:58.621992px;}
.h7{height:64.335938px;}
.h11{height:65.144531px;}
.h3{height:70.664062px;}
.h5{height:74.004654px;}
.h9{height:78.468750px;}
.hc{height:85.566797px;}
.h10{height:86.642227px;}
.h14{height:96.120000px;}
.h4{height:96.503906px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:66.420000px;}
.w3{width:69.120000px;}
.w8{width:81.900000px;}
.w4{width:104.760000px;}
.wa{width:106.955985px;}
.w9{width:154.110000px;}
.w5{width:154.650000px;}
.w7{width:250.995000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x20{left:10.799985px;}
.xc{left:12.240000px;}
.x15{left:13.860000px;}
.xa{left:16.020000px;}
.x1b{left:18.360000px;}
.x1c{left:22.500000px;}
.xe{left:29.160000px;}
.x17{left:33.120000px;}
.x19{left:36.720000px;}
.xf{left:40.140000px;}
.x1a{left:46.260000px;}
.x1d{left:52.740000px;}
.x11{left:65.010000px;}
.x10{left:69.150000px;}
.x13{left:91.485000px;}
.x1{left:127.655987px;}
.x2{left:154.649987px;}
.x6{left:168.149987px;}
.x4{left:180.569987px;}
.x3{left:181.649987px;}
.x5{left:195.149987px;}
.x1f{left:208.649987px;}
.x1e{left:222.149987px;}
.x7{left:234.029987px;}
.x12{left:249.150000px;}
.x21{left:276.149987px;}
.x9{left:285.915000px;}
.x8{left:289.694987px;}
.xb{left:355.035000px;}
.xd{left:459.795000px;}
.x14{left:500.865000px;}
.x16{left:583.485000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls21{letter-spacing:-0.896000pt;}
.ls28{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.224000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.044160pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.033280pt;}
.ls22{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.044160pt;}
.ls27{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.090027pt;}
.ls2a{letter-spacing:0.099840pt;}
.lsa{letter-spacing:0.106240pt;}
.ls20{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.168320pt;}
.ls3{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.623360pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.739840pt;}
.ls5{letter-spacing:0.746667pt;}
.ls1f{letter-spacing:9.600000pt;}
.ls1b{letter-spacing:10.240000pt;}
.lsc{letter-spacing:17.920000pt;}
.ls23{letter-spacing:23.168000pt;}
.ls26{letter-spacing:26.368000pt;}
.ls15{letter-spacing:27.008000pt;}
.lse{letter-spacing:29.546667pt;}
.ls7{letter-spacing:30.186667pt;}
.ls14{letter-spacing:30.208000pt;}
.ls24{letter-spacing:31.488000pt;}
.ls19{letter-spacing:34.048000pt;}
.ls25{letter-spacing:41.088000pt;}
.ls1e{letter-spacing:48.768000pt;}
.ls2b{letter-spacing:56.912640pt;}
.ws12{word-spacing:-64.000000pt;}
.ws19{word-spacing:-53.120000pt;}
.ws1c{word-spacing:-38.912000pt;}
.wsb{word-spacing:-38.784000pt;}
.ws1b{word-spacing:-38.656000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws8{word-spacing:-23.776000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws7{word-spacing:-19.315840pt;}
.ws3{word-spacing:-17.280000pt;}
.ws11{word-spacing:-16.640000pt;}
.ws1a{word-spacing:-16.448000pt;}
.ws10{word-spacing:-16.256000pt;}
.ws16{word-spacing:-16.128000pt;}
.ws15{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.360000pt;}
.ws13{word-spacing:-14.848000pt;}
.ws14{word-spacing:-14.592000pt;}
.ws9{word-spacing:-11.040000pt;}
.ws17{word-spacing:-10.880000pt;}
.wsd{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.400000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-2.453333pt;}
._1{margin-left:-1.127893pt;}
._0{width:1.062400pt;}
._2{width:2.021547pt;}
._6{width:3.392000pt;}
._7{width:4.288000pt;}
._5{width:5.514667pt;}
._3{width:6.941227pt;}
._12{width:8.192000pt;}
._19{width:9.664000pt;}
._a{width:10.688000pt;}
._8{width:11.840000pt;}
._9{width:12.889600pt;}
._13{width:14.116267pt;}
._4{width:15.015893pt;}
._b{width:17.152000pt;}
._1e{width:18.176000pt;}
._1d{width:19.136000pt;}
._1f{width:20.736000pt;}
._d{width:22.144000pt;}
._c{width:23.104000pt;}
._18{width:24.192000pt;}
._f{width:25.664000pt;}
._10{width:26.752000pt;}
._20{width:27.841493pt;}
._e{width:28.736000pt;}
._21{width:30.451413pt;}
._11{width:31.360000pt;}
._14{width:32.256000pt;}
._1a{width:33.216000pt;}
._16{width:34.905600pt;}
._17{width:35.955200pt;}
._1b{width:42.432000pt;}
._1c{width:43.456000pt;}
._23{width:48.000000pt;}
._24{width:49.433600pt;}
._22{width:88.320000pt;}
.fs6{font-size:16.000000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:77.440000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y11a{bottom:3.680000pt;}
.y11f{bottom:3.706667pt;}
.y2{bottom:50.880000pt;}
.y244{bottom:70.400000pt;}
.y6d{bottom:100.160000pt;}
.y228{bottom:100.960000pt;}
.y2b9{bottom:101.920000pt;}
.y2a{bottom:110.880000pt;}
.y272{bottom:111.200000pt;}
.y165{bottom:111.360000pt;}
.y288{bottom:115.040000pt;}
.y18d{bottom:116.000000pt;}
.yeb{bottom:117.920000pt;}
.y257{bottom:118.080000pt;}
.y227{bottom:118.560000pt;}
.y241{bottom:122.240000pt;}
.y4c{bottom:124.160000pt;}
.y10e{bottom:124.320000pt;}
.ycc{bottom:124.960000pt;}
.y2a7{bottom:126.720000pt;}
.y8f{bottom:127.520000pt;}
.y237{bottom:127.840000pt;}
.y1a6{bottom:128.960000pt;}
.y6c{bottom:129.760000pt;}
.y17b{bottom:130.880000pt;}
.y2b8{bottom:131.520000pt;}
.y1c3{bottom:133.600000pt;}
.y2ce{bottom:135.680000pt;}
.yaf{bottom:139.840000pt;}
.y164{bottom:140.480000pt;}
.y29{bottom:140.800000pt;}
.y271{bottom:140.960000pt;}
.y287{bottom:144.960000pt;}
.y1da{bottom:145.440000pt;}
.y18c{bottom:145.760000pt;}
.y1a5{bottom:146.560000pt;}
.y296{bottom:147.040000pt;}
.yea{bottom:147.680000pt;}
.y256{bottom:147.840000pt;}
.y226{bottom:148.160000pt;}
.y17a{bottom:148.320000pt;}
.y240{bottom:151.386667pt;}
.y4b{bottom:153.946667pt;}
.y10d{bottom:154.106667pt;}
.ycb{bottom:154.746667pt;}
.y2a6{bottom:156.666667pt;}
.y8e{bottom:157.466667pt;}
.y1f6{bottom:159.386667pt;}
.y6b{bottom:159.546667pt;}
.y2b7{bottom:161.466667pt;}
.y1c2{bottom:163.386667pt;}
.y286{bottom:163.546667pt;}
.y2cd{bottom:165.466667pt;}
.y255{bottom:166.426667pt;}
.ye9{bottom:166.746667pt;}
.yae{bottom:169.626667pt;}
.y163{bottom:170.106667pt;}
.y28{bottom:170.586667pt;}
.y270{bottom:170.746667pt;}
.y12f{bottom:173.946667pt;}
.y236{bottom:175.066667pt;}
.y1d9{bottom:175.386667pt;}
.y18b{bottom:175.706667pt;}
.y1a4{bottom:176.186667pt;}
.y295{bottom:176.826667pt;}
.y1f5{bottom:177.626667pt;}
.y179{bottom:178.106667pt;}
.y285{bottom:180.986667pt;}
.y23f{bottom:181.146667pt;}
.y4a{bottom:183.706667pt;}
.y254{bottom:183.866667pt;}
.y10c{bottom:184.026667pt;}
.yca{bottom:184.506667pt;}
.ye8{bottom:184.986667pt;}
.y2a5{bottom:186.426667pt;}
.y8d{bottom:187.226667pt;}
.y6a{bottom:188.666667pt;}
.y2b6{bottom:191.226667pt;}
.y1c1{bottom:193.306667pt;}
.y1d8{bottom:194.266667pt;}
.y178{bottom:196.986667pt;}
.yad{bottom:199.546667pt;}
.y162{bottom:200.026667pt;}
.y27{bottom:200.506667pt;}
.y26f{bottom:200.666667pt;}
.y2cc{bottom:201.466667pt;}
.yc9{bottom:203.546667pt;}
.y12e{bottom:203.866667pt;}
.y235{bottom:204.986667pt;}
.y18a{bottom:205.466667pt;}
.y1a3{bottom:206.106667pt;}
.y294{bottom:206.586667pt;}
.y1f4{bottom:207.546667pt;}
.y225{bottom:207.866667pt;}
.y284{bottom:210.586667pt;}
.y23e{bottom:210.906667pt;}
.y1d7{bottom:212.666667pt;}
.y49{bottom:213.626667pt;}
.y10b{bottom:213.786667pt;}
.y177{bottom:214.586667pt;}
.ye7{bottom:214.906667pt;}
.y2a4{bottom:216.186667pt;}
.y8c{bottom:217.146667pt;}
.yac{bottom:218.106667pt;}
.y69{bottom:218.426667pt;}
.y26e{bottom:219.226667pt;}
.y26{bottom:219.386667pt;}
.y2b5{bottom:220.986667pt;}
.yc8{bottom:221.146667pt;}
.y12d{bottom:222.746667pt;}
.y1c0{bottom:223.066667pt;}
.y189{bottom:224.506667pt;}
.y224{bottom:226.906667pt;}
.y161{bottom:229.786667pt;}
.y2cb{bottom:231.226667pt;}
.y48{bottom:232.506667pt;}
.ye6{bottom:233.786667pt;}
.y234{bottom:234.746667pt;}
.yab{bottom:235.546667pt;}
.y1a2{bottom:235.866667pt;}
.y8b{bottom:236.026667pt;}
.y293{bottom:236.506667pt;}
.y26d{bottom:236.666667pt;}
.y25{bottom:236.986667pt;}
.y1f3{bottom:237.306667pt;}
.y12c{bottom:240.346667pt;}
.y23d{bottom:240.666667pt;}
.y188{bottom:242.106667pt;}
.y1d6{bottom:242.426667pt;}
.y253{bottom:243.386667pt;}
.y10a{bottom:243.706667pt;}
.y176{bottom:244.346667pt;}
.y223{bottom:244.506667pt;}
.y2a3{bottom:246.106667pt;}
.y68{bottom:248.186667pt;}
.y47{bottom:250.106667pt;}
.yc7{bottom:250.746667pt;}
.y2b4{bottom:250.906667pt;}
.ye5{bottom:252.186667pt;}
.y1bf{bottom:252.826667pt;}
.y8a{bottom:253.626667pt;}
.y1f2{bottom:255.866667pt;}
.y160{bottom:259.706667pt;}
.y2ca{bottom:260.986667pt;}
.y175{bottom:263.226667pt;}
.y233{bottom:264.506667pt;}
.yaa{bottom:265.146667pt;}
.y1a1{bottom:265.626667pt;}
.y26c{bottom:266.266667pt;}
.y24{bottom:266.586667pt;}
.y12b{bottom:269.946667pt;}
.y283{bottom:270.266667pt;}
.y187{bottom:271.706667pt;}
.y1d5{bottom:272.346667pt;}
.y1f1{bottom:273.306667pt;}
.y109{bottom:273.466667pt;}
.y222{bottom:274.106667pt;}
.y2a2{bottom:275.866667pt;}
.y23c{bottom:277.306667pt;}
.y67{bottom:277.946667pt;}
.y15f{bottom:278.586667pt;}
.y46{bottom:279.866667pt;}
.yc6{bottom:280.666667pt;}
.y174{bottom:280.826667pt;}
.ye4{bottom:281.946667pt;}
.y1be{bottom:282.746667pt;}
.y89{bottom:283.226667pt;}
.y282{bottom:288.826667pt;}
.y2c9{bottom:290.106667pt;}
.y108{bottom:292.506667pt;}
.y232{bottom:294.426667pt;}
.ya9{bottom:294.906667pt;}
.y1a0{bottom:295.546667pt;}
.y26b{bottom:296.026667pt;}
.y15e{bottom:296.186667pt;}
.y23{bottom:296.506667pt;}
.y12a{bottom:299.866667pt;}
.y1bd{bottom:301.306667pt;}
.y186{bottom:301.466667pt;}
.y1d4{bottom:302.106667pt;}
.y1f0{bottom:302.906667pt;}
.y252{bottom:303.066667pt;}
.y221{bottom:303.866667pt;}
.y281{bottom:306.266667pt;}
.y23b{bottom:306.906667pt;}
.y66{bottom:307.866667pt;}
.y45{bottom:309.626667pt;}
.yc5{bottom:309.786667pt;}
.y107{bottom:310.106667pt;}
.y173{bottom:310.586667pt;}
.ye3{bottom:311.866667pt;}
.y2a1{bottom:312.506667pt;}
.y88{bottom:313.146667pt;}
.y231{bottom:313.306667pt;}
.y292{bottom:314.586667pt;}
.y1bc{bottom:318.746667pt;}
.y2c8{bottom:319.706667pt;}
.y1d3{bottom:320.666667pt;}
.y251{bottom:322.106667pt;}
.y220{bottom:322.906667pt;}
.ya8{bottom:324.826667pt;}
.y19f{bottom:325.306667pt;}
.y15d{bottom:325.786667pt;}
.y26a{bottom:325.946667pt;}
.y22{bottom:326.266667pt;}
.y106{bottom:328.826667pt;}
.y172{bottom:329.466667pt;}
.y129{bottom:329.626667pt;}
.ye2{bottom:330.746667pt;}
.y230{bottom:330.906667pt;}
.y185{bottom:331.386667pt;}
.y291{bottom:332.026667pt;}
.y1ef{bottom:332.826667pt;}
.y280{bottom:335.866667pt;}
.y23a{bottom:336.826667pt;}
.y65{bottom:337.626667pt;}
.y1d2{bottom:338.106667pt;}
.y44{bottom:339.386667pt;}
.y250{bottom:339.546667pt;}
.y21f{bottom:340.506667pt;}
.y2a0{bottom:342.106667pt;}
.y87{bottom:342.906667pt;}
.ya7{bottom:343.386667pt;}
.y171{bottom:347.066667pt;}
.y105{bottom:347.226667pt;}
.ye1{bottom:348.346667pt;}
.y2c7{bottom:349.626667pt;}
.y184{bottom:349.946667pt;}
.y19e{bottom:355.226667pt;}
.y15c{bottom:355.706667pt;}
.y21{bottom:356.186667pt;}
.y128{bottom:359.546667pt;}
.y22f{bottom:360.666667pt;}
.ya6{bottom:360.826667pt;}
.y29f{bottom:361.146667pt;}
.y86{bottom:361.466667pt;}
.y290{bottom:361.786667pt;}
.y1ee{bottom:362.586667pt;}
.y27f{bottom:365.626667pt;}
.y239{bottom:366.626667pt;}
.y183{bottom:367.426667pt;}
.y64{bottom:367.586667pt;}
.y1d1{bottom:367.746667pt;}
.yc4{bottom:369.186667pt;}
.y43{bottom:369.346667pt;}
.y21e{bottom:370.146667pt;}
.y269{bottom:374.306667pt;}
.y20{bottom:375.106667pt;}
.y170{bottom:376.706667pt;}
.y104{bottom:377.026667pt;}
.y1bb{bottom:377.506667pt;}
.ye0{bottom:377.986667pt;}
.y29e{bottom:378.626667pt;}
.y85{bottom:378.946667pt;}
.y2c6{bottom:379.426667pt;}
.y28f{bottom:380.386667pt;}
.y27e{bottom:384.706667pt;}
.y19d{bottom:385.026667pt;}
.y15b{bottom:385.506667pt;}
.y127{bottom:389.346667pt;}
.y20b{bottom:390.306667pt;}
.ya5{bottom:390.466667pt;}
.y268{bottom:391.746667pt;}
.y1ed{bottom:392.546667pt;}
.y1f{bottom:392.706667pt;}
.y16f{bottom:395.746667pt;}
.y238{bottom:396.386667pt;}
.y63{bottom:396.546667pt;}
.y182{bottom:397.026667pt;}
.y1d0{bottom:397.666667pt;}
.y28e{bottom:397.826667pt;}
.y42{bottom:399.106667pt;}
.y21d{bottom:400.066667pt;}
.y27d{bottom:402.946667pt;}
.y19c{bottom:403.586667pt;}
.y15a{bottom:404.546667pt;}
.y2b3{bottom:406.626667pt;}
.y103{bottom:406.786667pt;}
.y1ba{bottom:407.106667pt;}
.ydf{bottom:407.906667pt;}
.y29d{bottom:408.386667pt;}
.y84{bottom:408.546667pt;}
.y2c5{bottom:409.186667pt;}
.y1ec{bottom:411.426667pt;}
.y16e{bottom:413.346667pt;}
.y41{bottom:418.146667pt;}
.y126{bottom:419.106667pt;}
.y20a{bottom:419.906667pt;}
.ya4{bottom:420.226667pt;}
.y19b{bottom:421.026667pt;}
.y267{bottom:421.506667pt;}
.y159{bottom:422.146667pt;}
.y1e{bottom:422.466667pt;}
.y102{bottom:425.346667pt;}
.y62{bottom:426.306667pt;}
.y181{bottom:426.786667pt;}
.y1cf{bottom:427.426667pt;}
.y2c4{bottom:428.226667pt;}
.yc3{bottom:428.866667pt;}
.y1eb{bottom:429.026667pt;}
.y21c{bottom:429.826667pt;}
.y101{bottom:432.706667pt;}
.y27c{bottom:432.866667pt;}
.y40{bottom:435.746667pt;}
.y1b9{bottom:436.226667pt;}
.y2b2{bottom:436.386667pt;}
.y29c{bottom:437.506667pt;}
.y83{bottom:437.666667pt;}
.y22e{bottom:438.786667pt;}
.y16d{bottom:442.946667pt;}
.y2c3{bottom:445.826667pt;}
.y1ce{bottom:445.986667pt;}
.y21b{bottom:448.866667pt;}
.y125{bottom:449.026667pt;}
.y209{bottom:449.826667pt;}
.ya3{bottom:450.146667pt;}
.y100{bottom:450.306667pt;}
.y19a{bottom:450.626667pt;}
.y266{bottom:451.266667pt;}
.y158{bottom:451.746667pt;}
.y1d{bottom:452.226667pt;}
.y61{bottom:456.066667pt;}
.y22d{bottom:456.226667pt;}
.y180{bottom:456.706667pt;}
.y28d{bottom:457.186667pt;}
.yc2{bottom:458.786667pt;}
.y16c{bottom:461.986667pt;}
.y27b{bottom:462.626667pt;}
.y1cd{bottom:463.426667pt;}
.y3f{bottom:465.346667pt;}
.y1b8{bottom:465.986667pt;}
.y2b1{bottom:466.306667pt;}
.y21a{bottom:466.466667pt;}
.y29b{bottom:467.106667pt;}
.y82{bottom:467.426667pt;}
.yde{bottom:467.586667pt;}
.y199{bottom:469.186667pt;}
.y17f{bottom:475.266667pt;}
.y2c2{bottom:475.426667pt;}
.y24f{bottom:477.826667pt;}
.y124{bottom:478.786667pt;}
.y16b{bottom:479.586667pt;}
.ya2{bottom:479.906667pt;}
.y265{bottom:481.026667pt;}
.y157{bottom:481.666667pt;}
.y1c{bottom:481.986667pt;}
.y60{bottom:485.986667pt;}
.y198{bottom:486.626667pt;}
.y28c{bottom:487.106667pt;}
.yc1{bottom:488.546667pt;}
.y17e{bottom:492.706667pt;}
.y1cc{bottom:493.026667pt;}
.y1b7{bottom:494.946667pt;}
.y3e{bottom:495.106667pt;}
.y24e{bottom:495.266667pt;}
.y219{bottom:496.066667pt;}
.y29a{bottom:496.226667pt;}
.y81{bottom:497.186667pt;}
.ydd{bottom:497.346667pt;}
.y27a{bottom:499.906667pt;}
.y156{bottom:500.546667pt;}
.y2c1{bottom:504.546667pt;}
.y123{bottom:508.706667pt;}
.y16a{bottom:509.186667pt;}
.y208{bottom:509.506667pt;}
.ya1{bottom:509.826667pt;}
.y264{bottom:510.946667pt;}
.y1b{bottom:511.906667pt;}
.y2b0{bottom:515.106667pt;}
.y5f{bottom:515.746667pt;}
.ydc{bottom:515.906667pt;}
.y197{bottom:516.386667pt;}
.y28b{bottom:516.866667pt;}
.y155{bottom:518.146667pt;}
.yc0{bottom:518.306667pt;}
.y279{bottom:518.946667pt;}
.y17d{bottom:522.306667pt;}
.y1cb{bottom:522.946667pt;}
.y3d{bottom:524.226667pt;}
.y1b6{bottom:524.706667pt;}
.y24d{bottom:525.026667pt;}
.y218{bottom:525.826667pt;}
.y80{bottom:526.946667pt;}
.y207{bottom:528.066667pt;}
.y169{bottom:528.226667pt;}
.ya0{bottom:528.386667pt;}
.y1a{bottom:530.786667pt;}
.y2af{bottom:532.546667pt;}
.ydb{bottom:533.346667pt;}
.y2c0{bottom:534.306667pt;}
.y5e{bottom:534.786667pt;}
.y28a{bottom:535.426667pt;}
.ybf{bottom:536.866667pt;}
.y278{bottom:537.186667pt;}
.y122{bottom:538.466667pt;}
.yff{bottom:539.586667pt;}
.y263{bottom:540.706667pt;}
.y206{bottom:545.346667pt;}
.y22c{bottom:545.506667pt;}
.y7f{bottom:545.666667pt;}
.y196{bottom:546.146667pt;}
.y154{bottom:547.746667pt;}
.y1ea{bottom:548.226667pt;}
.y19{bottom:548.386667pt;}
.y17c{bottom:552.066667pt;}
.y5d{bottom:552.226667pt;}
.y1ca{bottom:552.706667pt;}
.y289{bottom:552.866667pt;}
.y1b5{bottom:553.826667pt;}
.y3c{bottom:553.986667pt;}
.ybe{bottom:554.306667pt;}
.y24c{bottom:554.786667pt;}
.y299{bottom:554.946667pt;}
.y217{bottom:555.746667pt;}
.y121{bottom:557.506667pt;}
.y262{bottom:559.266667pt;}
.y120{bottom:561.986667pt;}
.y2ae{bottom:562.306667pt;}
.y7e{bottom:562.946667pt;}
.y2bf{bottom:563.266667pt;}
.y22b{bottom:564.546667pt;}
.y277{bottom:567.106667pt;}
.yfe{bottom:568.706667pt;}
.ybd{bottom:572.706667pt;}
.y216{bottom:574.626667pt;}
.y205{bottom:575.106667pt;}
.y9f{bottom:575.426667pt;}
.y195{bottom:575.906667pt;}
.y261{bottom:576.706667pt;}
.y153{bottom:577.666667pt;}
.y1e9{bottom:577.986667pt;}
.y18{bottom:578.146667pt;}
.y11e{bottom:580.386667pt;}
.y5c{bottom:581.986667pt;}
.y22a{bottom:582.146667pt;}
.y1c9{bottom:582.466667pt;}
.y1b4{bottom:583.453333pt;}
.y3b{bottom:583.773333pt;}
.y24b{bottom:584.733333pt;}
.y276{bottom:586.013333pt;}
.ybc{bottom:590.973333pt;}
.y2ad{bottom:591.453333pt;}
.y215{bottom:592.253333pt;}
.y7d{bottom:592.733333pt;}
.yda{bottom:592.893333pt;}
.y2be{bottom:593.053333pt;}
.y152{bottom:596.573333pt;}
.yfd{bottom:598.333333pt;}
.y11d{bottom:598.653333pt;}
.y275{bottom:604.413333pt;}
.y204{bottom:604.893333pt;}
.y9e{bottom:605.213333pt;}
.y194{bottom:605.853333pt;}
.y260{bottom:606.333333pt;}
.y17{bottom:607.933333pt;}
.y5b{bottom:611.773333pt;}
.y1c8{bottom:612.413333pt;}
.y1b3{bottom:612.573333pt;}
.y3a{bottom:612.893333pt;}
.y1e8{bottom:614.013333pt;}
.y151{bottom:614.173333pt;}
.y24a{bottom:614.493333pt;}
.y142{bottom:614.973333pt;}
.y11c{bottom:617.053333pt;}
.ybb{bottom:620.733333pt;}
.y2ac{bottom:621.053333pt;}
.y214{bottom:622.013333pt;}
.y2bd{bottom:622.173333pt;}
.y7c{bottom:622.493333pt;}
.yd9{bottom:622.653333pt;}
.y16{bottom:626.973333pt;}
.yfc{bottom:628.253333pt;}
.y141{bottom:633.373333pt;}
.y249{bottom:633.533333pt;}
.y274{bottom:634.173333pt;}
.y203{bottom:634.813333pt;}
.y9d{bottom:635.133333pt;}
.y11b{bottom:635.453333pt;}
.y193{bottom:635.613333pt;}
.y25f{bottom:636.253333pt;}
.y5a{bottom:641.693333pt;}
.y1b2{bottom:642.173333pt;}
.y39{bottom:642.493333pt;}
.y1e7{bottom:643.613333pt;}
.y150{bottom:643.933333pt;}
.y298{bottom:644.253333pt;}
.y15{bottom:644.413333pt;}
.yfb{bottom:647.133333pt;}
.y2ab{bottom:650.173333pt;}
.yba{bottom:650.493333pt;}
.y248{bottom:650.973333pt;}
.y140{bottom:651.613333pt;}
.y213{bottom:651.773333pt;}
.y7b{bottom:652.413333pt;}
.y273{bottom:653.213333pt;}
.y119{bottom:653.853333pt;}
.y192{bottom:654.173333pt;}
.yd8{bottom:659.293333pt;}
.y1c7{bottom:660.733333pt;}
.y202{bottom:664.573333pt;}
.y9c{bottom:664.893333pt;}
.yfa{bottom:665.533333pt;}
.y25e{bottom:666.013333pt;}
.y13f{bottom:670.493333pt;}
.y59{bottom:671.453333pt;}
.y191{bottom:671.613333pt;}
.y1b1{bottom:672.093333pt;}
.y38{bottom:672.413333pt;}
.y1e6{bottom:673.533333pt;}
.y14f{bottom:673.693333pt;}
.y14{bottom:674.173333pt;}
.y118{bottom:676.413333pt;}
.y1c6{bottom:678.173333pt;}
.y2aa{bottom:679.773333pt;}
.yb9{bottom:680.413333pt;}
.y247{bottom:680.733333pt;}
.y2bc{bottom:680.893333pt;}
.y212{bottom:681.533333pt;}
.y7a{bottom:682.173333pt;}
.y25d{bottom:685.053333pt;}
.y13e{bottom:688.733333pt;}
.yd7{bottom:688.893333pt;}
.y14e{bottom:692.733333pt;}
.y297{bottom:693.053333pt;}
.y201{bottom:694.333333pt;}
.y9b{bottom:694.653333pt;}
.yf9{bottom:695.293333pt;}
.y211{bottom:700.573333pt;}
.y58{bottom:701.373333pt;}
.y1b0{bottom:701.853333pt;}
.y37{bottom:702.173333pt;}
.y25c{bottom:702.653333pt;}
.y1e5{bottom:703.293333pt;}
.y13{bottom:703.933333pt;}
.y1c5{bottom:707.933333pt;}
.y2a9{bottom:708.893333pt;}
.yb8{bottom:710.173333pt;}
.y246{bottom:710.493333pt;}
.yd{bottom:710.653333pt;}
.y79{bottom:711.933333pt;}
.y200{bottom:713.053333pt;}
.y168{bottom:713.693333pt;}
.y74{bottom:715.453333pt;}
.yd6{bottom:718.653333pt;}
.y210{bottom:718.813333pt;}
.y13d{bottom:719.293333pt;}
.y57{bottom:720.253333pt;}
.y36{bottom:721.213333pt;}
.y12{bottom:722.973333pt;}
.y9a{bottom:724.573333pt;}
.yf8{bottom:725.053333pt;}
.y1ff{bottom:730.333333pt;}
.y190{bottom:731.133333pt;}
.y167{bottom:731.293333pt;}
.y1af{bottom:731.613333pt;}
.y25b{bottom:732.253333pt;}
.y1e4{bottom:733.213333pt;}
.y1c4{bottom:737.693333pt;}
.y56{bottom:737.853333pt;}
.y2a8{bottom:738.653333pt;}
.y35{bottom:738.813333pt;}
.y14d{bottom:739.933333pt;}
.yb7{bottom:740.093333pt;}
.yc{bottom:740.413333pt;}
.y11{bottom:740.573333pt;}
.y78{bottom:741.853333pt;}
.y117{bottom:743.453333pt;}
.y73{bottom:745.213333pt;}
.y20f{bottom:747.933333pt;}
.y13c{bottom:749.053333pt;}
.yd5{bottom:749.213333pt;}
.y18f{bottom:750.173333pt;}
.y1ae{bottom:750.653333pt;}
.y25a{bottom:750.813333pt;}
.y99{bottom:754.333333pt;}
.yf7{bottom:754.973333pt;}
.yb6{bottom:758.653333pt;}
.y1fe{bottom:760.093333pt;}
.y166{bottom:760.893333pt;}
.y116{bottom:761.053333pt;}
.y1e3{bottom:762.973333pt;}
.y55{bottom:767.453333pt;}
.y18e{bottom:767.613333pt;}
.y1ad{bottom:768.253333pt;}
.y34{bottom:768.413333pt;}
.y14c{bottom:769.693333pt;}
.yb{bottom:770.173333pt;}
.y77{bottom:771.613333pt;}
.y98{bottom:773.373333pt;}
.y72{bottom:774.973333pt;}
.yb5{bottom:776.093333pt;}
.y20e{bottom:777.693333pt;}
.y13b{bottom:779.613333pt;}
.yd4{bottom:779.773333pt;}
.y1e2{bottom:781.533333pt;}
.yf6{bottom:784.733333pt;}
.y14b{bottom:788.733333pt;}
.y245{bottom:789.213333pt;}
.y1fd{bottom:789.853333pt;}
.y76{bottom:790.173333pt;}
.y115{bottom:790.813333pt;}
.y97{bottom:790.973333pt;}
.y54{bottom:797.373333pt;}
.y1ac{bottom:797.853333pt;}
.y33{bottom:798.173333pt;}
.y1e1{bottom:799.013333pt;}
.ya{bottom:799.973333pt;}
.yf5{bottom:803.813333pt;}
.y71{bottom:804.773333pt;}
.yb4{bottom:805.733333pt;}
.y14a{bottom:806.373333pt;}
.y20d{bottom:806.693333pt;}
.y75{bottom:807.653333pt;}
.y1fc{bottom:808.933333pt;}
.yd3{bottom:809.733333pt;}
.y13a{bottom:810.213333pt;}
.y9{bottom:819.013333pt;}
.y96{bottom:820.613333pt;}
.yf4{bottom:821.413333pt;}
.y1fb{bottom:826.533333pt;}
.y53{bottom:827.173333pt;}
.y242{bottom:827.333333pt;}
.y1ab{bottom:827.813333pt;}
.y32{bottom:828.133333pt;}
.yd2{bottom:828.613333pt;}
.y10{bottom:829.893333pt;}
.y70{bottom:833.893333pt;}
.yb3{bottom:835.493333pt;}
.y149{bottom:835.973333pt;}
.y20c{bottom:836.453333pt;}
.y8{bottom:836.613333pt;}
.y95{bottom:839.653333pt;}
.y139{bottom:840.773333pt;}
.yd1{bottom:845.253333pt;}
.yf{bottom:848.773333pt;}
.y114{bottom:850.533333pt;}
.yf3{bottom:851.013333pt;}
.y1fa{bottom:856.133333pt;}
.y52{bottom:857.093333pt;}
.y94{bottom:857.253333pt;}
.y1aa{bottom:857.573333pt;}
.y31{bottom:857.893333pt;}
.y1e0{bottom:858.533333pt;}
.y6f{bottom:863.653333pt;}
.yb2{bottom:864.613333pt;}
.y2bb{bottom:865.573333pt;}
.y148{bottom:865.733333pt;}
.y7{bottom:866.213333pt;}
.ye{bottom:866.373333pt;}
.y113{bottom:869.413333pt;}
.y138{bottom:871.333333pt;}
.yd0{bottom:872.773333pt;}
.y51{bottom:875.973333pt;}
.yf2{bottom:880.773333pt;}
.y1f9{bottom:885.893333pt;}
.y93{bottom:886.853333pt;}
.y112{bottom:887.013333pt;}
.y1a9{bottom:887.493333pt;}
.y30{bottom:887.813333pt;}
.y1df{bottom:888.293333pt;}
.y137{bottom:890.373333pt;}
.y6e{bottom:893.413333pt;}
.y50{bottom:893.573333pt;}
.yb1{bottom:894.373333pt;}
.y136{bottom:894.853333pt;}
.y2ba{bottom:895.173333pt;}
.y147{bottom:895.653333pt;}
.y6{bottom:896.133333pt;}
.ycf{bottom:900.453333pt;}
.y229{bottom:905.893333pt;}
.y1a8{bottom:906.053333pt;}
.y2f{bottom:906.693333pt;}
.yf1{bottom:910.693333pt;}
.y135{bottom:913.893333pt;}
.y1f8{bottom:915.813333pt;}
.y92{bottom:916.613333pt;}
.y259{bottom:917.253333pt;}
.y1de{bottom:918.053333pt;}
.yce{bottom:918.693333pt;}
.y4f{bottom:923.173333pt;}
.y1a7{bottom:923.333333pt;}
.yb0{bottom:924.133333pt;}
.y2e{bottom:924.293333pt;}
.y2cf{bottom:924.773333pt;}
.y146{bottom:925.413333pt;}
.y5{bottom:925.893333pt;}
.ycd{bottom:926.213333pt;}
.yf0{bottom:929.573333pt;}
.y134{bottom:932.933333pt;}
.y1f7{bottom:934.693333pt;}
.y91{bottom:935.653333pt;}
.y258{bottom:935.813333pt;}
.y111{bottom:946.533333pt;}
.yef{bottom:947.173333pt;}
.y1dd{bottom:947.973333pt;}
.y133{bottom:951.973333pt;}
.y4e{bottom:953.093333pt;}
.y90{bottom:953.253333pt;}
.y2d{bottom:953.893333pt;}
.y145{bottom:961.733333pt;}
.y4{bottom:962.053333pt;}
.y1dc{bottom:966.533333pt;}
.y132{bottom:971.013333pt;}
.y110{bottom:976.293333pt;}
.yee{bottom:976.933333pt;}
.y4d{bottom:982.853333pt;}
.y2c{bottom:983.013333pt;}
.y1db{bottom:983.973333pt;}
.y144{bottom:985.413333pt;}
.y131{bottom:990.053333pt;}
.y143{bottom:990.373333pt;}
.y10f{bottom:995.333333pt;}
.yed{bottom:995.493333pt;}
.y3{bottom:1005.573333pt;}
.y130{bottom:1009.093333pt;}
.y2b{bottom:1012.773333pt;}
.yec{bottom:1012.933333pt;}
.y243{bottom:1031.840000pt;}
.y1{bottom:1063.200000pt;}
.hb{height:11.453125pt;}
.h13{height:11.500000pt;}
.h8{height:11.648438pt;}
.h12{height:14.476562pt;}
.hd{height:18.240000pt;}
.hf{height:18.272000pt;}
.he{height:18.400000pt;}
.h16{height:45.812500pt;}
.h15{height:46.000000pt;}
.ha{height:46.500000pt;}
.h6{height:46.593750pt;}
.h2{height:52.108438pt;}
.h7{height:57.187500pt;}
.h11{height:57.906250pt;}
.h3{height:62.812500pt;}
.h5{height:65.781915pt;}
.h9{height:69.750000pt;}
.hc{height:76.059375pt;}
.h10{height:77.015312pt;}
.h14{height:85.440000pt;}
.h4{height:85.781250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:59.040000pt;}
.w3{width:61.440000pt;}
.w8{width:72.800000pt;}
.w4{width:93.120000pt;}
.wa{width:95.071987pt;}
.w9{width:136.986667pt;}
.w5{width:137.466667pt;}
.w7{width:223.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x20{left:9.599987pt;}
.xc{left:10.880000pt;}
.x15{left:12.320000pt;}
.xa{left:14.240000pt;}
.x1b{left:16.320000pt;}
.x1c{left:20.000000pt;}
.xe{left:25.920000pt;}
.x17{left:29.440000pt;}
.x19{left:32.640000pt;}
.xf{left:35.680000pt;}
.x1a{left:41.120000pt;}
.x1d{left:46.880000pt;}
.x11{left:57.786667pt;}
.x10{left:61.466667pt;}
.x13{left:81.320000pt;}
.x1{left:113.471988pt;}
.x2{left:137.466655pt;}
.x6{left:149.466655pt;}
.x4{left:160.506655pt;}
.x3{left:161.466655pt;}
.x5{left:173.466655pt;}
.x1f{left:185.466655pt;}
.x1e{left:197.466655pt;}
.x7{left:208.026655pt;}
.x12{left:221.466667pt;}
.x21{left:245.466655pt;}
.x9{left:254.146667pt;}
.x8{left:257.506655pt;}
.xb{left:315.586667pt;}
.xd{left:408.706667pt;}
.x14{left:445.213333pt;}
.x16{left:518.653333pt;}
}




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