
    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_4eeba224710dccec90dffff7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_571a7ae30f77bbb431ecd06e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.716000;font-style:normal;font-weight: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_9e95ef2a10ecd7798535082f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.716000;font-style:normal;font-weight: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_30eff7d5d435c9926838fd52.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;font-style:normal;font-weight: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_54a584c05ec4f820d50eb981.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912308;font-style:normal;font-weight: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_208d9bd87ec3d9d56c2dc48f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_08edc3358f2e46e1e537f9d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942871;font-style:normal;font-weight: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_9099d41fb2420f89f4af394c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5ac76c2fb4405c05680a2c2c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939453;font-style:normal;font-weight: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_30eff7d5d435c9926838fd52.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936000;font-style:normal;font-weight: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_0191f8f07e7a047646fc7624.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.943359;font-style:normal;font-weight: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_30eff7d5d435c9926838fd52.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936000;font-style:normal;font-weight: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_39fcf21583c4cf40cd4da7f1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.927734;font-style:normal;font-weight: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_91d7676adb96828a440d9298.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.078613;font-style:normal;font-weight: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_d81aa4e836622fd9582645d7.woff2')format("woff");}.fff{font-family:fff;line-height:0.781000;font-style:normal;font-weight: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_dcfb743b88d623890a1df07d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912308;font-style:normal;font-weight: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_593a74301f3b6896b3e6bd70.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.715820;font-style:normal;font-weight: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_4f0f0d9ee40e7d32b417086f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight: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_30eff7d5d435c9926838fd52.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.936000;font-style:normal;font-weight: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_aef20a69080f939e3a859bfa.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.927734;font-style:normal;font-weight: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_c89f7bdfe0d2a7f92ed0a820.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.078613;font-style:normal;font-weight: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_d81aa4e836622fd9582645d7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.781000;font-style:normal;font-weight: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_dcfb743b88d623890a1df07d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.912308;font-style:normal;font-weight: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_593a74301f3b6896b3e6bd70.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.715820;font-style:normal;font-weight: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_4f0f0d9ee40e7d32b417086f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight: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_d81aa4e836622fd9582645d7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.781000;font-style:normal;font-weight: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_dcfb743b88d623890a1df07d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.912308;font-style:normal;font-weight: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_593a74301f3b6896b3e6bd70.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.715820;font-style:normal;font-weight: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_4f0f0d9ee40e7d32b417086f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;font-style:normal;font-weight: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_6b54036d7d4b276bb3296dca.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.927734;font-style:normal;font-weight: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_2762761b4232f3e028bfd5aa.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.078613;font-style:normal;font-weight: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_d81aa4e836622fd9582645d7.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.781000;font-style:normal;font-weight: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_30eff7d5d435c9926838fd52.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.936000;font-style:normal;font-weight: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_dcfb743b88d623890a1df07d.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.912308;font-style:normal;font-weight: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_593a74301f3b6896b3e6bd70.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.715820;font-style:normal;font-weight: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_4f0f0d9ee40e7d32b417086f.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight: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_6b54036d7d4b276bb3296dca.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.927734;font-style:normal;font-weight: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_2762761b4232f3e028bfd5aa.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.078613;font-style:normal;font-weight: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_d81aa4e836622fd9582645d7.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.781000;font-style:normal;font-weight: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_30eff7d5d435c9926838fd52.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.936000;font-style:normal;font-weight: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_dcfb743b88d623890a1df07d.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.912308;font-style:normal;font-weight: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_593a74301f3b6896b3e6bd70.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.715820;font-style:normal;font-weight: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_4f0f0d9ee40e7d32b417086f.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.666504;font-style:normal;font-weight: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_372ee5b3b66d6e2e7b60ff0f.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.935547;font-style:normal;font-weight: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_f1ccc3e3b7c75361f57cb764.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.142000px;}
.v2{vertical-align:6.046800px;}
.v3{vertical-align:19.980000px;}
.v4{vertical-align:32.400000px;}
.lsd{letter-spacing:-1.998000px;}
.ls11{letter-spacing:-1.650000px;}
.ls10{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001800px;}
.ls7{letter-spacing:0.003000px;}
.lsa{letter-spacing:0.003600px;}
.lsc{letter-spacing:0.005520px;}
.lsf{letter-spacing:8.352000px;}
.ls6{letter-spacing:8.640000px;}
.ls4{letter-spacing:10.200000px;}
.ls1{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.lsb{letter-spacing:14.400000px;}
.lse{letter-spacing:14.415600px;}
.ls2{letter-spacing:19.585200px;}
.ls9{letter-spacing:28.800000px;}
.ls5{letter-spacing:36.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-420.000000px;}
.ws22{word-spacing:-98.766600px;}
.wsf{word-spacing:-92.160000px;}
.wsd{word-spacing:-75.600000px;}
.ws46{word-spacing:-72.479400px;}
.ws23{word-spacing:-36.180000px;}
.wsb0{word-spacing:-30.240000px;}
.ws6{word-spacing:-25.812000px;}
.wsb1{word-spacing:-24.192000px;}
.wscb{word-spacing:-20.016000px;}
.ws48{word-spacing:-15.012000px;}
.wse{word-spacing:-14.520000px;}
.ws4f{word-spacing:-14.400000px;}
.ws30{word-spacing:-14.322000px;}
.ws10{word-spacing:-14.124000px;}
.ws17{word-spacing:-13.926000px;}
.ws26{word-spacing:-13.728000px;}
.ws24{word-spacing:-13.332000px;}
.ws7{word-spacing:-12.960000px;}
.ws18{word-spacing:-12.408000px;}
.ws44{word-spacing:-12.210000px;}
.ws1f{word-spacing:-12.144000px;}
.ws1d{word-spacing:-12.012000px;}
.ws19{word-spacing:-11.154000px;}
.ws2d{word-spacing:-10.758000px;}
.ws14{word-spacing:-10.626000px;}
.ws29{word-spacing:-10.428000px;}
.ws33{word-spacing:-9.966000px;}
.ws89{word-spacing:-9.840000px;}
.ws11{word-spacing:-9.768000px;}
.ws32{word-spacing:-9.306000px;}
.ws1a{word-spacing:-9.240000px;}
.ws15{word-spacing:-9.174000px;}
.ws37{word-spacing:-8.778000px;}
.ws39{word-spacing:-8.712000px;}
.ws35{word-spacing:-8.646000px;}
.ws25{word-spacing:-8.514000px;}
.ws2a{word-spacing:-8.184000px;}
.ws1e{word-spacing:-7.986000px;}
.ws3f{word-spacing:-7.854000px;}
.ws2b{word-spacing:-7.722000px;}
.ws2f{word-spacing:-7.590000px;}
.ws38{word-spacing:-7.524000px;}
.ws27{word-spacing:-7.326000px;}
.ws2c{word-spacing:-7.260000px;}
.ws43{word-spacing:-6.336000px;}
.ws16{word-spacing:-6.138000px;}
.ws40{word-spacing:-6.072000px;}
.ws34{word-spacing:-5.940000px;}
.ws20{word-spacing:-5.676000px;}
.wsa4{word-spacing:-5.640000px;}
.ws2e{word-spacing:-5.610000px;}
.ws31{word-spacing:-5.478000px;}
.ws93{word-spacing:-5.460000px;}
.ws91{word-spacing:-5.340000px;}
.ws70{word-spacing:-5.280000px;}
.ws3b{word-spacing:-5.016000px;}
.ws28{word-spacing:-4.884000px;}
.ws1c{word-spacing:-4.818000px;}
.ws13{word-spacing:-4.752000px;}
.ws41{word-spacing:-4.488000px;}
.ws64{word-spacing:-4.440000px;}
.wsc7{word-spacing:-4.212000px;}
.ws77{word-spacing:-3.960000px;}
.ws59{word-spacing:-3.600000px;}
.ws68{word-spacing:-3.540000px;}
.ws80{word-spacing:-3.300000px;}
.ws6d{word-spacing:-3.240000px;}
.ws3d{word-spacing:-3.102000px;}
.ws8e{word-spacing:-3.060000px;}
.ws1b{word-spacing:-2.970000px;}
.ws6c{word-spacing:-2.940000px;}
.ws92{word-spacing:-2.880000px;}
.ws4c{word-spacing:-2.754000px;}
.wsa6{word-spacing:-2.700000px;}
.wsa8{word-spacing:-2.640000px;}
.ws78{word-spacing:-2.580000px;}
.ws3e{word-spacing:-2.442000px;}
.ws62{word-spacing:-2.400000px;}
.wsc9{word-spacing:-2.376000px;}
.ws3c{word-spacing:-2.244000px;}
.ws2{word-spacing:-2.220000px;}
.ws83{word-spacing:-2.160000px;}
.ws3{word-spacing:-1.998000px;}
.ws36{word-spacing:-1.980000px;}
.ws3a{word-spacing:-1.914000px;}
.ws9{word-spacing:-1.887000px;}
.ws12{word-spacing:-1.776000px;}
.ws9d{word-spacing:-1.680000px;}
.ws51{word-spacing:-1.620000px;}
.wsa3{word-spacing:-1.440000px;}
.ws75{word-spacing:-1.260000px;}
.ws4{word-spacing:-0.972000px;}
.wsa{word-spacing:-0.918000px;}
.ws42{word-spacing:-0.864000px;}
.wsb3{word-spacing:-0.780000px;}
.ws54{word-spacing:-0.660000px;}
.ws6b{word-spacing:-0.300000px;}
.ws73{word-spacing:-0.240000px;}
.ws71{word-spacing:-0.180000px;}
.ws1{word-spacing:0.000000px;}
.ws4b{word-spacing:0.270000px;}
.ws55{word-spacing:0.660000px;}
.ws8a{word-spacing:0.840000px;}
.ws84{word-spacing:0.900000px;}
.ws5a{word-spacing:0.960000px;}
.ws69{word-spacing:1.020000px;}
.ws9b{word-spacing:1.140000px;}
.ws4a{word-spacing:1.242000px;}
.ws65{word-spacing:1.920000px;}
.wsb6{word-spacing:2.040000px;}
.ws56{word-spacing:2.160000px;}
.wsc3{word-spacing:2.340000px;}
.ws76{word-spacing:3.120000px;}
.ws72{word-spacing:3.360000px;}
.wsc8{word-spacing:3.456000px;}
.wsc5{word-spacing:3.720000px;}
.wsad{word-spacing:3.960000px;}
.wsa1{word-spacing:4.200000px;}
.ws87{word-spacing:4.260000px;}
.wsb9{word-spacing:4.380000px;}
.ws52{word-spacing:4.440000px;}
.ws8c{word-spacing:4.500000px;}
.ws9e{word-spacing:4.560000px;}
.ws57{word-spacing:4.620000px;}
.ws7f{word-spacing:4.680000px;}
.ws88{word-spacing:4.860000px;}
.ws8d{word-spacing:4.980000px;}
.ws5f{word-spacing:5.160000px;}
.ws4d{word-spacing:5.346000px;}
.ws6a{word-spacing:5.520000px;}
.ws8b{word-spacing:5.880000px;}
.wsb7{word-spacing:6.120000px;}
.ws9f{word-spacing:6.360000px;}
.wsc0{word-spacing:6.660000px;}
.wsc1{word-spacing:7.020000px;}
.wsaa{word-spacing:7.320000px;}
.ws50{word-spacing:7.620000px;}
.ws4e{word-spacing:7.776000px;}
.wsa5{word-spacing:7.800000px;}
.ws7d{word-spacing:7.860000px;}
.ws9a{word-spacing:8.220000px;}
.ws67{word-spacing:8.580000px;}
.ws5b{word-spacing:8.700000px;}
.ws7e{word-spacing:8.820000px;}
.wsb4{word-spacing:9.000000px;}
.wsc4{word-spacing:9.300000px;}
.wsc2{word-spacing:9.420000px;}
.ws99{word-spacing:9.480000px;}
.wsa7{word-spacing:9.540000px;}
.wsca{word-spacing:9.558000px;}
.wsa0{word-spacing:9.600000px;}
.ws6e{word-spacing:9.720000px;}
.wsbb{word-spacing:10.320000px;}
.wsa2{word-spacing:10.380000px;}
.wsb8{word-spacing:10.440000px;}
.ws98{word-spacing:10.620000px;}
.ws9c{word-spacing:10.860000px;}
.ws6f{word-spacing:11.280000px;}
.wsb5{word-spacing:11.460000px;}
.ws8f{word-spacing:11.820000px;}
.ws5c{word-spacing:12.000000px;}
.ws96{word-spacing:12.060000px;}
.ws82{word-spacing:12.480000px;}
.ws58{word-spacing:12.600000px;}
.ws66{word-spacing:13.260000px;}
.wsc6{word-spacing:13.380000px;}
.wsaf{word-spacing:13.440000px;}
.ws86{word-spacing:13.980000px;}
.wsae{word-spacing:14.280000px;}
.wsb2{word-spacing:14.400000px;}
.ws85{word-spacing:14.580000px;}
.ws49{word-spacing:15.012000px;}
.ws5e{word-spacing:15.240000px;}
.ws61{word-spacing:15.480000px;}
.wsbe{word-spacing:15.720000px;}
.wsa9{word-spacing:16.560000px;}
.ws97{word-spacing:17.520000px;}
.wsbd{word-spacing:17.700000px;}
.ws95{word-spacing:19.200000px;}
.ws7c{word-spacing:19.380000px;}
.wsab{word-spacing:19.620000px;}
.wsac{word-spacing:20.160000px;}
.ws8{word-spacing:20.574000px;}
.ws60{word-spacing:20.820000px;}
.wsbc{word-spacing:21.120000px;}
.wsbf{word-spacing:21.720000px;}
.ws94{word-spacing:21.960000px;}
.ws90{word-spacing:22.620000px;}
.ws74{word-spacing:23.760000px;}
.wsba{word-spacing:24.420000px;}
.ws81{word-spacing:26.100000px;}
.ws5d{word-spacing:26.760000px;}
.ws53{word-spacing:27.240000px;}
.ws63{word-spacing:28.440000px;}
.ws7b{word-spacing:35.340000px;}
.wsb{word-spacing:41.597400px;}
.wsc{word-spacing:41.633400px;}
.ws47{word-spacing:79.594800px;}
.ws21{word-spacing:81.017400px;}
.ws5{word-spacing:101.888400px;}
.ws45{word-spacing:107.243400px;}
.ws79{word-spacing:353.894400px;}
.ws7a{word-spacing:394.030200px;}
._10{margin-left:-2067.096000px;}
._36{margin-left:-1881.693600px;}
._2d{margin-left:-1721.301600px;}
._2b{margin-left:-1718.806800px;}
._3f{margin-left:-1698.882600px;}
._34{margin-left:-1597.708200px;}
._38{margin-left:-1537.439400px;}
._25{margin-left:-1473.690000px;}
._2f{margin-left:-1406.215800px;}
._27{margin-left:-1348.122600px;}
._8{margin-left:-1344.388800px;}
._43{margin-left:-1325.889000px;}
._30{margin-left:-1314.353400px;}
._17{margin-left:-1272.573000px;}
._e{margin-left:-1238.490600px;}
._32{margin-left:-1212.406200px;}
._29{margin-left:-1194.318600px;}
._12{margin-left:-1134.312600px;}
._c{margin-left:-1121.347800px;}
._2a{margin-left:-1086.210000px;}
._3b{margin-left:-1072.250400px;}
._1c{margin-left:-1068.670800px;}
._14{margin-left:-1065.258000px;}
._9{margin-left:-1053.270000px;}
._1e{margin-left:-1029.294000px;}
._a{margin-left:-998.220000px;}
._15{margin-left:-951.156000px;}
._35{margin-left:-937.422000px;}
._23{margin-left:-927.258600px;}
._11{margin-left:-924.264000px;}
._21{margin-left:-915.300000px;}
._18{margin-left:-897.210000px;}
._42{margin-left:-891.096000px;}
._3e{margin-left:-882.966000px;}
._20{margin-left:-878.310000px;}
._13{margin-left:-861.192000px;}
._3c{margin-left:-858.276000px;}
._1a{margin-left:-853.032000px;}
._31{margin-left:-840.294000px;}
._1b{margin-left:-838.440000px;}
._d{margin-left:-813.078000px;}
._16{margin-left:-796.932000px;}
._22{margin-left:-786.240000px;}
._1d{margin-left:-782.130000px;}
._1f{margin-left:-775.422000px;}
._33{margin-left:-767.210400px;}
._40{margin-left:-762.156000px;}
._24{margin-left:-724.446000px;}
._3a{margin-left:-705.240000px;}
._2c{margin-left:-696.222000px;}
._7{margin-left:-693.252000px;}
._1{margin-left:-622.440000px;}
._3d{margin-left:-609.336000px;}
._6{margin-left:-571.860000px;}
._41{margin-left:-563.239800px;}
._0{margin-left:-508.577400px;}
._19{margin-left:-480.864000px;}
._2e{margin-left:-441.126000px;}
._f{margin-left:-399.114000px;}
._28{margin-left:-389.048400px;}
._39{margin-left:-378.162000px;}
._37{margin-left:-366.120000px;}
._26{margin-left:-264.060000px;}
._50{margin-left:-14.774400px;}
._49{margin-left:-13.186800px;}
._44{margin-left:-10.800000px;}
._4a{margin-left:-9.589800px;}
._4c{margin-left:-8.052000px;}
._b{margin-left:-6.993000px;}
._45{margin-left:-5.940600px;}
._4{margin-left:-4.017600px;}
._3{margin-left:-2.220000px;}
._5{margin-left:-1.043400px;}
._4d{width:1.016400px;}
._2{width:2.196000px;}
._4b{width:3.314400px;}
._54{width:4.632600px;}
._4e{width:6.481200px;}
._51{width:7.518600px;}
._48{width:8.532000px;}
._47{width:10.492200px;}
._53{width:11.591400px;}
._65{width:14.952000px;}
._52{width:16.906800px;}
._56{width:18.685200px;}
._46{width:20.593200px;}
._55{width:26.353200px;}
._67{width:28.983000px;}
._66{width:59.007000px;}
._57{width:79.395600px;}
._58{width:93.213600px;}
._4f{width:220.797600px;}
._63{width:401.298600px;}
._5e{width:425.319000px;}
._61{width:427.345800px;}
._5a{width:431.357400px;}
._64{width:437.541000px;}
._5b{width:447.991800px;}
._59{width:459.837000px;}
._62{width:461.526600px;}
._5d{width:468.841200px;}
._60{width:470.832000px;}
._5f{width:476.542800px;}
._5c{width:491.550600px;}
.fcc{color:rgb(105,198,71);}
.fcb{color:rgb(246,131,19);}
.fca{color:rgb(33,37,41);}
.fc8{color:rgb(47,92,179);}
.fc7{color:rgb(210,32,39);}
.fc9{color:rgb(90,198,243);}
.fc5{color:rgb(61,123,199);}
.fc6{color:rgb(48,169,64);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(35,31,32);}
.fc2{color:transparent;}
.fc1{color:rgb(217,182,26);}
.fc0{color:rgb(213,185,16);}
.fsd{font-size:34.980000px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fse{font-size:126.000000px;}
.fsc{font-size:144.000000px;}
.fs9{font-size:180.000000px;}
.fsb{font-size:288.000000px;}
.fs2{font-size:300.000000px;}
.fs0{font-size:300.112800px;}
.fs3{font-size:420.000000px;}
.fs1{font-size:420.157800px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.509250px;}
.y3{bottom:72.957000px;}
.y5{bottom:83.368950px;}
.y6{bottom:83.904450px;}
.y35{bottom:84.471900px;}
.ya3{bottom:85.007400px;}
.y34{bottom:127.558950px;}
.y5c{bottom:127.559100px;}
.y60{bottom:127.597200px;}
.y6b{bottom:134.881650px;}
.y1b7{bottom:135.240900px;}
.y14e{bottom:137.551650px;}
.y184{bottom:141.959100px;}
.y5f{bottom:143.797200px;}
.y33{bottom:146.811000px;}
.y5b{bottom:148.011000px;}
.y10b{bottom:149.817750px;}
.y6a{bottom:152.881650px;}
.y1b6{bottom:153.240900px;}
.y14d{bottom:155.551650px;}
.y5e{bottom:159.997200px;}
.y1e8{bottom:164.119050px;}
.y10a{bottom:164.217750px;}
.yd5{bottom:165.734100px;}
.y32{bottom:166.062900px;}
.y5a{bottom:168.463050px;}
.y69{bottom:170.881650px;}
.y1b5{bottom:171.240900px;}
.y5d{bottom:176.197200px;}
.y183{bottom:176.430450px;}
.yd4{bottom:180.134250px;}
.y14c{bottom:182.055600px;}
.y1e7{bottom:182.119050px;}
.y109{bottom:184.017750px;}
.y31{bottom:185.314950px;}
.y68{bottom:188.881650px;}
.y59{bottom:188.914950px;}
.y1b4{bottom:189.240900px;}
.y182{bottom:194.430450px;}
.y14b{bottom:200.055600px;}
.y1e6{bottom:200.119050px;}
.yd3{bottom:204.186150px;}
.y30{bottom:204.566850px;}
.y67{bottom:206.881650px;}
.y108{bottom:208.069650px;}
.y58{bottom:209.366850px;}
.ya2{bottom:210.292950px;}
.y181{bottom:212.430450px;}
.y14a{bottom:218.055600px;}
.y1e5{bottom:218.119050px;}
.yd2{bottom:218.586150px;}
.y107{bottom:222.469650px;}
.y2f{bottom:223.818900px;}
.y66{bottom:224.881650px;}
.y1b3{bottom:225.990900px;}
.y57{bottom:229.818900px;}
.y180{bottom:230.430450px;}
.ya1{bottom:230.745000px;}
.y149{bottom:236.055600px;}
.y1e4{bottom:236.119050px;}
.y106{bottom:242.269650px;}
.yd1{bottom:242.638050px;}
.y65{bottom:242.881650px;}
.y2e{bottom:243.070800px;}
.y1b2{bottom:247.819200px;}
.y17f{bottom:248.430450px;}
.y56{bottom:250.270800px;}
.ya0{bottom:251.196900px;}
.y202{bottom:253.855950px;}
.y148{bottom:254.055600px;}
.y1e3{bottom:254.119050px;}
.yd0{bottom:257.038200px;}
.y64{bottom:260.881650px;}
.y2d{bottom:262.322700px;}
.y105{bottom:266.321550px;}
.y17e{bottom:266.430450px;}
.y1b1{bottom:269.647650px;}
.y55{bottom:270.722850px;}
.y9f{bottom:271.648950px;}
.y201{bottom:271.855950px;}
.y147{bottom:272.055600px;}
.y1e2{bottom:272.119050px;}
.y104{bottom:280.721700px;}
.ycf{bottom:281.090100px;}
.y2c{bottom:281.574750px;}
.y17d{bottom:284.430450px;}
.y63{bottom:287.385450px;}
.y146{bottom:290.055600px;}
.y1e1{bottom:290.119050px;}
.y54{bottom:291.174750px;}
.y1b0{bottom:291.475950px;}
.y9e{bottom:292.100850px;}
.yce{bottom:295.490100px;}
.y103{bottom:300.521550px;}
.y2b{bottom:300.826650px;}
.y17c{bottom:302.430450px;}
.y128{bottom:304.773600px;}
.y62{bottom:305.385450px;}
.y218{bottom:305.730000px;}
.y1e0{bottom:308.119050px;}
.y53{bottom:311.626800px;}
.y9d{bottom:312.552900px;}
.y1af{bottom:313.304400px;}
.ycd{bottom:315.290100px;}
.y145{bottom:319.044450px;}
.y127{bottom:319.173600px;}
.y2a{bottom:320.078700px;}
.y17b{bottom:320.430450px;}
.y102{bottom:324.573600px;}
.y217{bottom:325.530000px;}
.y1df{bottom:326.119050px;}
.y61{bottom:331.889400px;}
.y52{bottom:332.078700px;}
.y9c{bottom:333.004800px;}
.y1ae{bottom:335.132700px;}
.y17a{bottom:338.430450px;}
.y101{bottom:338.973600px;}
.y29{bottom:339.330600px;}
.ycc{bottom:339.342150px;}
.y1ad{bottom:343.232700px;}
.y1de{bottom:344.119050px;}
.y216{bottom:345.330000px;}
.y144{bottom:345.548400px;}
.y51{bottom:352.530600px;}
.y9b{bottom:353.456850px;}
.ycb{bottom:353.742000px;}
.y179{bottom:356.430450px;}
.y28{bottom:358.582650px;}
.y200{bottom:359.534400px;}
.y1dd{bottom:362.119050px;}
.y100{bottom:363.025500px;}
.y143{bottom:363.548400px;}
.y215{bottom:365.130000px;}
.y50{bottom:372.982650px;}
.yca{bottom:373.542000px;}
.y9a{bottom:373.908750px;}
.y1ac{bottom:373.911000px;}
.y178{bottom:374.430450px;}
.y1ff{bottom:375.734550px;}
.yff{bottom:377.425500px;}
.y27{bottom:377.834550px;}
.y1dc{bottom:380.119050px;}
.y142{bottom:381.548400px;}
.y214{bottom:384.930000px;}
.y1fe{bottom:391.934550px;}
.y177{bottom:392.430450px;}
.y4f{bottom:393.434550px;}
.y99{bottom:394.360800px;}
.y26{bottom:397.086600px;}
.yfe{bottom:397.225500px;}
.yc9{bottom:397.594050px;}
.y1db{bottom:398.119050px;}
.y141{bottom:399.548400px;}
.y1fd{bottom:408.134550px;}
.y1ab{bottom:409.911150px;}
.y176{bottom:410.430450px;}
.yc8{bottom:411.994050px;}
.y4e{bottom:413.886600px;}
.y98{bottom:414.812700px;}
.y1da{bottom:416.119050px;}
.y25{bottom:416.338500px;}
.y140{bottom:417.548400px;}
.yfd{bottom:421.277550px;}
.y1fc{bottom:424.334400px;}
.y1aa{bottom:427.911150px;}
.y175{bottom:428.430450px;}
.yc7{bottom:431.794050px;}
.y20d{bottom:432.045300px;}
.y1d9{bottom:434.119050px;}
.y4d{bottom:434.338500px;}
.y97{bottom:435.264750px;}
.y13f{bottom:435.548400px;}
.y24{bottom:435.590400px;}
.yfc{bottom:435.677550px;}
.y1fb{bottom:440.534550px;}
.y1a9{bottom:445.911150px;}
.y174{bottom:446.430450px;}
.y20c{bottom:451.845300px;}
.y1d8{bottom:452.119050px;}
.y4c{bottom:454.790550px;}
.y23{bottom:454.842450px;}
.yfb{bottom:455.477550px;}
.y96{bottom:455.716650px;}
.yc6{bottom:455.845950px;}
.y1fa{bottom:456.734550px;}
.y126{bottom:459.729450px;}
.y1a8{bottom:463.911150px;}
.y13e{bottom:464.125050px;}
.y173{bottom:464.430450px;}
.y1d7{bottom:470.119050px;}
.yc5{bottom:470.245950px;}
.y20b{bottom:471.645300px;}
.y1f9{bottom:472.934400px;}
.y22{bottom:474.094500px;}
.y125{bottom:474.129450px;}
.y4b{bottom:475.242450px;}
.y95{bottom:476.168550px;}
.yfa{bottom:479.529450px;}
.y1a7{bottom:481.911150px;}
.y172{bottom:482.430450px;}
.y1d6{bottom:488.119050px;}
.y1f8{bottom:489.134550px;}
.yc4{bottom:490.045950px;}
.y13d{bottom:490.628850px;}
.y21{bottom:493.346400px;}
.yf9{bottom:493.929450px;}
.y4a{bottom:495.694500px;}
.y94{bottom:496.620600px;}
.y1a6{bottom:499.911150px;}
.y171{bottom:500.430450px;}
.y1f7{bottom:505.334400px;}
.y1d5{bottom:506.119050px;}
.y13c{bottom:508.628850px;}
.y20{bottom:512.598300px;}
.yf8{bottom:513.729450px;}
.yc3{bottom:514.098000px;}
.y49{bottom:516.146400px;}
.y93{bottom:517.072500px;}
.y1a5{bottom:517.911150px;}
.y124{bottom:517.981500px;}
.y170{bottom:518.430450px;}
.y213{bottom:518.760750px;}
.y1f6{bottom:521.534550px;}
.y1d4{bottom:524.119050px;}
.y13b{bottom:526.628850px;}
.yc2{bottom:528.498000px;}
.y1f{bottom:531.850350px;}
.y123{bottom:532.381500px;}
.y1a4{bottom:535.911150px;}
.y16f{bottom:536.430450px;}
.y48{bottom:536.598450px;}
.y92{bottom:537.524550px;}
.y1f5{bottom:537.734550px;}
.yf7{bottom:537.781500px;}
.y212{bottom:538.560750px;}
.y1d3{bottom:542.119050px;}
.y13a{bottom:544.628850px;}
.yc1{bottom:548.298000px;}
.y1e{bottom:551.102400px;}
.yf6{bottom:552.181500px;}
.y1a3{bottom:553.911150px;}
.y1f4{bottom:553.934400px;}
.y16e{bottom:554.430450px;}
.y122{bottom:556.433400px;}
.y47{bottom:557.050350px;}
.y211{bottom:558.360600px;}
.y1d2{bottom:560.119050px;}
.y139{bottom:562.628850px;}
.y1f3{bottom:570.134550px;}
.y1d{bottom:570.354300px;}
.y121{bottom:570.833400px;}
.y1a2{bottom:571.911150px;}
.yf5{bottom:571.981500px;}
.yc0{bottom:572.349900px;}
.y16d{bottom:572.430450px;}
.y91{bottom:574.015800px;}
.y46{bottom:577.502400px;}
.y1d1{bottom:578.119050px;}
.y210{bottom:578.160750px;}
.y138{bottom:580.628850px;}
.y1f2{bottom:586.334400px;}
.ybf{bottom:586.749900px;}
.y90{bottom:589.315800px;}
.y1c{bottom:589.606200px;}
.y1a1{bottom:589.911150px;}
.y16c{bottom:590.430450px;}
.y120{bottom:594.885450px;}
.yf4{bottom:596.033400px;}
.y1d0{bottom:596.119050px;}
.y45{bottom:597.954300px;}
.y20f{bottom:597.960600px;}
.y137{bottom:598.628850px;}
.y8f{bottom:604.615650px;}
.y16b{bottom:608.430450px;}
.y1b{bottom:608.858250px;}
.y11f{bottom:609.285450px;}
.yf3{bottom:610.433400px;}
.ybe{bottom:610.801950px;}
.y1cf{bottom:614.119050px;}
.y1a0{bottom:616.415100px;}
.y20e{bottom:617.760750px;}
.y44{bottom:618.406200px;}
.y8e{bottom:619.915800px;}
.y1f1{bottom:620.534550px;}
.ybd{bottom:625.201950px;}
.y16a{bottom:626.430450px;}
.y1a{bottom:628.110150px;}
.y11e{bottom:629.085450px;}
.y1ce{bottom:632.119050px;}
.yf2{bottom:634.485450px;}
.y8d{bottom:635.215800px;}
.y1f0{bottom:638.534550px;}
.y43{bottom:638.858250px;}
.y19{bottom:647.362200px;}
.yf1{bottom:648.885450px;}
.ybc{bottom:649.253850px;}
.y1cd{bottom:650.119050px;}
.y8c{bottom:650.515800px;}
.y169{bottom:652.934400px;}
.y11d{bottom:653.137350px;}
.y19f{bottom:656.015100px;}
.y1ef{bottom:656.534550px;}
.y42{bottom:659.310150px;}
.ybb{bottom:663.653850px;}
.y8b{bottom:665.815800px;}
.y18{bottom:666.614100px;}
.y11c{bottom:667.537350px;}
.y1cc{bottom:668.119050px;}
.yf0{bottom:668.685450px;}
.y19e{bottom:674.015100px;}
.y1ee{bottom:674.534550px;}
.y20a{bottom:677.952450px;}
.y136{bottom:678.037500px;}
.y41{bottom:679.762200px;}
.y8a{bottom:681.115650px;}
.yba{bottom:683.453850px;}
.y17{bottom:685.866000px;}
.y1cb{bottom:686.119050px;}
.y11b{bottom:687.337350px;}
.y19d{bottom:692.015100px;}
.y168{bottom:692.534400px;}
.y1ed{bottom:692.534550px;}
.yef{bottom:692.737350px;}
.y89{bottom:696.415800px;}
.y209{bottom:697.752450px;}
.y135{bottom:697.837500px;}
.y40{bottom:700.214100px;}
.y1ca{bottom:704.119050px;}
.y16{bottom:705.118050px;}
.yee{bottom:707.137350px;}
.yb9{bottom:707.505900px;}
.y19c{bottom:710.015100px;}
.y167{bottom:710.534400px;}
.y1ec{bottom:710.534550px;}
.y88{bottom:711.715800px;}
.y208{bottom:717.552450px;}
.y134{bottom:717.637500px;}
.y3f{bottom:720.666150px;}
.yb8{bottom:721.905900px;}
.y1c9{bottom:722.119050px;}
.y15{bottom:724.369950px;}
.yed{bottom:726.937350px;}
.y87{bottom:727.015800px;}
.y19b{bottom:728.015100px;}
.y166{bottom:728.534400px;}
.y1eb{bottom:728.534550px;}
.y11a{bottom:731.189400px;}
.y207{bottom:737.352450px;}
.y133{bottom:737.437500px;}
.y1c8{bottom:740.119050px;}
.y3e{bottom:741.118050px;}
.yb7{bottom:741.705900px;}
.y86{bottom:742.315800px;}
.y14{bottom:743.622000px;}
.y119{bottom:745.589250px;}
.y19a{bottom:746.015100px;}
.y165{bottom:746.534400px;}
.y1ea{bottom:746.534550px;}
.yec{bottom:750.989250px;}
.y2{bottom:754.869900px;}
.y4{bottom:755.061000px;}
.y132{bottom:757.237500px;}
.y85{bottom:757.615650px;}
.y1c7{bottom:758.119050px;}
.y3d{bottom:761.570100px;}
.y13{bottom:762.873900px;}
.y199{bottom:764.015100px;}
.y164{bottom:764.534400px;}
.y1e9{bottom:764.534550px;}
.yeb{bottom:765.389400px;}
.yb6{bottom:765.757800px;}
.y203{bottom:766.563300px;}
.y118{bottom:769.641300px;}
.y84{bottom:772.915800px;}
.y1c6{bottom:776.119050px;}
.yb5{bottom:780.157800px;}
.y198{bottom:782.015100px;}
.y3c{bottom:782.022000px;}
.y12{bottom:782.125950px;}
.y163{bottom:782.534400px;}
.y117{bottom:784.041300px;}
.y83{bottom:788.215800px;}
.yea{bottom:789.441300px;}
.y1c5{bottom:794.119050px;}
.y131{bottom:795.037500px;}
.yb4{bottom:799.957800px;}
.y197{bottom:800.015100px;}
.y162{bottom:800.534400px;}
.y11{bottom:801.378000px;}
.y3b{bottom:802.474050px;}
.y82{bottom:803.515800px;}
.ye9{bottom:803.841300px;}
.y206{bottom:805.427700px;}
.y1c4{bottom:812.119050px;}
.y130{bottom:814.837500px;}
.y196{bottom:818.015100px;}
.y161{bottom:818.534400px;}
.y81{bottom:818.815650px;}
.y10{bottom:820.629900px;}
.y3a{bottom:822.925950px;}
.yb3{bottom:824.009700px;}
.ye8{bottom:827.893200px;}
.y1c3{bottom:830.119050px;}
.y80{bottom:834.115650px;}
.y12f{bottom:834.637500px;}
.y205{bottom:835.531800px;}
.y195{bottom:836.015100px;}
.y160{bottom:836.534400px;}
.yb2{bottom:838.409850px;}
.yf{bottom:839.881950px;}
.ye7{bottom:842.293200px;}
.y39{bottom:843.378000px;}
.y1c2{bottom:848.119050px;}
.y7f{bottom:849.415800px;}
.y194{bottom:854.015100px;}
.y12e{bottom:854.437500px;}
.y15f{bottom:854.534400px;}
.ye{bottom:859.133850px;}
.ye6{bottom:862.093350px;}
.yb1{bottom:862.461750px;}
.y38{bottom:863.829900px;}
.y204{bottom:865.635750px;}
.y1c1{bottom:866.119050px;}
.y116{bottom:866.345250px;}
.y193{bottom:872.015100px;}
.y15e{bottom:872.534400px;}
.yb0{bottom:876.861750px;}
.y7e{bottom:880.357200px;}
.y115{bottom:880.745250px;}
.ye5{bottom:881.893200px;}
.y1c0{bottom:884.119050px;}
.y37{bottom:884.281800px;}
.y192{bottom:890.015100px;}
.y15d{bottom:890.534400px;}
.y7d{bottom:895.657050px;}
.yaf{bottom:896.661750px;}
.y114{bottom:900.545250px;}
.y1bf{bottom:902.119050px;}
.yc{bottom:903.943050px;}
.y36{bottom:904.733850px;}
.ye4{bottom:905.945250px;}
.y191{bottom:908.015100px;}
.y15c{bottom:908.534400px;}
.y7c{bottom:910.957050px;}
.y1be{bottom:920.119050px;}
.ye3{bottom:920.345250px;}
.yae{bottom:920.713650px;}
.yb{bottom:921.943050px;}
.y113{bottom:924.597150px;}
.y190{bottom:926.015100px;}
.y7b{bottom:926.257200px;}
.y15b{bottom:926.534400px;}
.yad{bottom:935.113800px;}
.y1bd{bottom:938.119050px;}
.y112{bottom:938.997300px;}
.y7a{bottom:941.557200px;}
.y18f{bottom:944.015100px;}
.ye2{bottom:944.397150px;}
.y15a{bottom:944.534400px;}
.ya{bottom:948.446850px;}
.yac{bottom:954.913800px;}
.y1bc{bottom:956.119050px;}
.y79{bottom:956.857200px;}
.ye1{bottom:958.797150px;}
.y18e{bottom:962.015100px;}
.y159{bottom:962.534400px;}
.y111{bottom:963.049200px;}
.y12d{bottom:964.237500px;}
.y9{bottom:966.446850px;}
.y78{bottom:972.157050px;}
.y1bb{bottom:974.119050px;}
.y110{bottom:977.449200px;}
.yab{bottom:978.965850px;}
.y18d{bottom:980.015100px;}
.y158{bottom:980.534400px;}
.ye0{bottom:982.849200px;}
.y77{bottom:987.457050px;}
.y1ba{bottom:992.119050px;}
.y8{bottom:992.950800px;}
.yaa{bottom:993.365700px;}
.ydf{bottom:997.249200px;}
.y157{bottom:998.534400px;}
.yd{bottom:1000.564800px;}
.y76{bottom:1002.757050px;}
.y18c{bottom:1006.518900px;}
.y12c{bottom:1007.437350px;}
.y1b9{bottom:1010.119050px;}
.y7{bottom:1010.950800px;}
.ya9{bottom:1013.165700px;}
.y156{bottom:1016.534400px;}
.yde{bottom:1017.049200px;}
.y75{bottom:1018.057050px;}
.y10f{bottom:1021.301100px;}
.y1b8{bottom:1028.119050px;}
.y74{bottom:1033.357050px;}
.y155{bottom:1034.534400px;}
.y10e{bottom:1035.701100px;}
.ya8{bottom:1037.217750px;}
.ydd{bottom:1041.101100px;}
.y18b{bottom:1046.119050px;}
.y73{bottom:1048.657050px;}
.y12b{bottom:1050.637500px;}
.ya7{bottom:1051.617750px;}
.y154{bottom:1052.534400px;}
.ydc{bottom:1055.501100px;}
.y10d{bottom:1059.753150px;}
.y72{bottom:1063.957050px;}
.y18a{bottom:1064.119050px;}
.y153{bottom:1070.534400px;}
.ya6{bottom:1071.417750px;}
.y10c{bottom:1074.153150px;}
.y71{bottom:1079.257050px;}
.ydb{bottom:1079.553150px;}
.y189{bottom:1082.119050px;}
.y152{bottom:1088.534400px;}
.y12a{bottom:1093.837500px;}
.yda{bottom:1093.953150px;}
.y70{bottom:1094.557050px;}
.y188{bottom:1100.119050px;}
.y151{bottom:1106.534400px;}
.yd6{bottom:1109.035500px;}
.y6f{bottom:1109.857050px;}
.yd9{bottom:1118.005050px;}
.y187{bottom:1118.119050px;}
.y150{bottom:1124.534400px;}
.y6e{bottom:1125.157050px;}
.yd8{bottom:1132.405050px;}
.y186{bottom:1136.119050px;}
.y129{bottom:1137.037500px;}
.y6d{bottom:1140.457050px;}
.y14f{bottom:1151.038350px;}
.yd7{bottom:1152.205050px;}
.y185{bottom:1154.119050px;}
.y6c{bottom:1155.757050px;}
.ya4{bottom:1201.511100px;}
.ya5{bottom:1203.022800px;}
.h18{height:34.945312px;}
.h25{height:34.992188px;}
.h1a{height:35.156250px;}
.h24{height:35.179688px;}
.h14{height:37.129395px;}
.h12{height:37.179199px;}
.h13{height:37.378418px;}
.h7{height:39.312000px;}
.hb{height:39.313477px;}
.hc{height:39.366211px;}
.h6{height:39.474000px;}
.hd{height:39.550781px;}
.hf{height:39.577148px;}
.he{height:41.454000px;}
.h26{height:42.568359px;}
.h8{height:43.681641px;}
.h20{height:43.740234px;}
.h9{height:43.945312px;}
.h23{height:43.974609px;}
.h22{height:45.480557px;}
.h17{height:46.825195px;}
.h1f{height:48.049805px;}
.h10{height:48.114258px;}
.h11{height:48.372070px;}
.h21{height:51.082031px;}
.ha{height:52.417969px;}
.h29{height:52.488281px;}
.h16{height:52.560000px;}
.h19{height:57.169922px;}
.h27{height:71.713477px;}
.h28{height:85.148438px;}
.h1d{height:102.164062px;}
.h1e{height:124.734375px;}
.h15{height:155.917969px;}
.h1c{height:155.918569px;}
.h1b{height:204.328125px;}
.h4{height:215.625000px;}
.h2{height:215.706075px;}
.h5{height:297.360000px;}
.h3{height:297.471722px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:43.643400px;}
.x8{left:68.031450px;}
.x1b{left:72.776850px;}
.x2a{left:74.031450px;}
.x18{left:79.530450px;}
.x34{left:88.116150px;}
.x37{left:93.945150px;}
.x36{left:94.968300px;}
.x5{left:96.944850px;}
.x38{left:98.654250px;}
.x2b{left:102.744600px;}
.x9{left:104.598450px;}
.x14{left:106.299150px;}
.x4{left:108.374100px;}
.x19{left:110.551200px;}
.x2d{left:127.559100px;}
.x1d{left:140.314950px;}
.x3{left:142.368300px;}
.x21{left:150.361650px;}
.x2e{left:151.467750px;}
.x3a{left:168.038400px;}
.x33{left:178.582650px;}
.x3f{left:198.173850px;}
.x39{left:201.950550px;}
.x1c{left:208.346400px;}
.x40{left:212.393850px;}
.x1a{left:215.016000px;}
.x1f{left:218.160600px;}
.x41{left:226.428600px;}
.x1e{left:230.008200px;}
.x3b{left:255.671700px;}
.x22{left:256.990650px;}
.x20{left:260.049150px;}
.x17{left:280.629900px;}
.x35{left:299.518350px;}
.x3c{left:315.243300px;}
.x30{left:338.333850px;}
.x32{left:356.685300px;}
.x3d{left:359.700600px;}
.x3e{left:369.487800px;}
.x31{left:431.956950px;}
.x2f{left:508.348800px;}
.x7{left:511.976100px;}
.x23{left:531.061650px;}
.x28{left:559.461300px;}
.x6{left:567.081150px;}
.x24{left:573.326100px;}
.xe{left:581.778450px;}
.xa{left:596.738100px;}
.xd{left:605.154750px;}
.x29{left:608.372550px;}
.x26{left:610.042350px;}
.x10{left:611.128800px;}
.xf{left:612.957600px;}
.x13{left:615.692850px;}
.xb{left:617.239800px;}
.x12{left:624.861300px;}
.xc{left:634.041900px;}
.x11{left:652.837950px;}
.x2c{left:658.648500px;}
.x25{left:665.091300px;}
.x1{left:705.924150px;}
.x27{left:712.596150px;}
.x16{left:776.033700px;}
.x15{left:855.139050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v2{vertical-align:5.374933pt;}
.v3{vertical-align:17.760000pt;}
.v4{vertical-align:28.800000pt;}
.lsd{letter-spacing:-1.776000pt;}
.ls11{letter-spacing:-1.466667pt;}
.ls10{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001600pt;}
.ls7{letter-spacing:0.002667pt;}
.lsa{letter-spacing:0.003200pt;}
.lsc{letter-spacing:0.004907pt;}
.lsf{letter-spacing:7.424000pt;}
.ls6{letter-spacing:7.680000pt;}
.ls4{letter-spacing:9.066667pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.lsb{letter-spacing:12.800000pt;}
.lse{letter-spacing:12.813867pt;}
.ls2{letter-spacing:17.409067pt;}
.ls9{letter-spacing:25.600000pt;}
.ls5{letter-spacing:32.000000pt;}
.ws0{word-spacing:-373.333333pt;}
.ws22{word-spacing:-87.792533pt;}
.wsf{word-spacing:-81.920000pt;}
.wsd{word-spacing:-67.200000pt;}
.ws46{word-spacing:-64.426133pt;}
.ws23{word-spacing:-32.160000pt;}
.wsb0{word-spacing:-26.880000pt;}
.ws6{word-spacing:-22.944000pt;}
.wsb1{word-spacing:-21.504000pt;}
.wscb{word-spacing:-17.792000pt;}
.ws48{word-spacing:-13.344000pt;}
.wse{word-spacing:-12.906667pt;}
.ws4f{word-spacing:-12.800000pt;}
.ws30{word-spacing:-12.730667pt;}
.ws10{word-spacing:-12.554667pt;}
.ws17{word-spacing:-12.378667pt;}
.ws26{word-spacing:-12.202667pt;}
.ws24{word-spacing:-11.850667pt;}
.ws7{word-spacing:-11.520000pt;}
.ws18{word-spacing:-11.029333pt;}
.ws44{word-spacing:-10.853333pt;}
.ws1f{word-spacing:-10.794667pt;}
.ws1d{word-spacing:-10.677333pt;}
.ws19{word-spacing:-9.914667pt;}
.ws2d{word-spacing:-9.562667pt;}
.ws14{word-spacing:-9.445333pt;}
.ws29{word-spacing:-9.269333pt;}
.ws33{word-spacing:-8.858667pt;}
.ws89{word-spacing:-8.746667pt;}
.ws11{word-spacing:-8.682667pt;}
.ws32{word-spacing:-8.272000pt;}
.ws1a{word-spacing:-8.213333pt;}
.ws15{word-spacing:-8.154667pt;}
.ws37{word-spacing:-7.802667pt;}
.ws39{word-spacing:-7.744000pt;}
.ws35{word-spacing:-7.685333pt;}
.ws25{word-spacing:-7.568000pt;}
.ws2a{word-spacing:-7.274667pt;}
.ws1e{word-spacing:-7.098667pt;}
.ws3f{word-spacing:-6.981333pt;}
.ws2b{word-spacing:-6.864000pt;}
.ws2f{word-spacing:-6.746667pt;}
.ws38{word-spacing:-6.688000pt;}
.ws27{word-spacing:-6.512000pt;}
.ws2c{word-spacing:-6.453333pt;}
.ws43{word-spacing:-5.632000pt;}
.ws16{word-spacing:-5.456000pt;}
.ws40{word-spacing:-5.397333pt;}
.ws34{word-spacing:-5.280000pt;}
.ws20{word-spacing:-5.045333pt;}
.wsa4{word-spacing:-5.013333pt;}
.ws2e{word-spacing:-4.986667pt;}
.ws31{word-spacing:-4.869333pt;}
.ws93{word-spacing:-4.853333pt;}
.ws91{word-spacing:-4.746667pt;}
.ws70{word-spacing:-4.693333pt;}
.ws3b{word-spacing:-4.458667pt;}
.ws28{word-spacing:-4.341333pt;}
.ws1c{word-spacing:-4.282667pt;}
.ws13{word-spacing:-4.224000pt;}
.ws41{word-spacing:-3.989333pt;}
.ws64{word-spacing:-3.946667pt;}
.wsc7{word-spacing:-3.744000pt;}
.ws77{word-spacing:-3.520000pt;}
.ws59{word-spacing:-3.200000pt;}
.ws68{word-spacing:-3.146667pt;}
.ws80{word-spacing:-2.933333pt;}
.ws6d{word-spacing:-2.880000pt;}
.ws3d{word-spacing:-2.757333pt;}
.ws8e{word-spacing:-2.720000pt;}
.ws1b{word-spacing:-2.640000pt;}
.ws6c{word-spacing:-2.613333pt;}
.ws92{word-spacing:-2.560000pt;}
.ws4c{word-spacing:-2.448000pt;}
.wsa6{word-spacing:-2.400000pt;}
.wsa8{word-spacing:-2.346667pt;}
.ws78{word-spacing:-2.293333pt;}
.ws3e{word-spacing:-2.170667pt;}
.ws62{word-spacing:-2.133333pt;}
.wsc9{word-spacing:-2.112000pt;}
.ws3c{word-spacing:-1.994667pt;}
.ws2{word-spacing:-1.973333pt;}
.ws83{word-spacing:-1.920000pt;}
.ws3{word-spacing:-1.776000pt;}
.ws36{word-spacing:-1.760000pt;}
.ws3a{word-spacing:-1.701333pt;}
.ws9{word-spacing:-1.677333pt;}
.ws12{word-spacing:-1.578667pt;}
.ws9d{word-spacing:-1.493333pt;}
.ws51{word-spacing:-1.440000pt;}
.wsa3{word-spacing:-1.280000pt;}
.ws75{word-spacing:-1.120000pt;}
.ws4{word-spacing:-0.864000pt;}
.wsa{word-spacing:-0.816000pt;}
.ws42{word-spacing:-0.768000pt;}
.wsb3{word-spacing:-0.693333pt;}
.ws54{word-spacing:-0.586667pt;}
.ws6b{word-spacing:-0.266667pt;}
.ws73{word-spacing:-0.213333pt;}
.ws71{word-spacing:-0.160000pt;}
.ws1{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.240000pt;}
.ws55{word-spacing:0.586667pt;}
.ws8a{word-spacing:0.746667pt;}
.ws84{word-spacing:0.800000pt;}
.ws5a{word-spacing:0.853333pt;}
.ws69{word-spacing:0.906667pt;}
.ws9b{word-spacing:1.013333pt;}
.ws4a{word-spacing:1.104000pt;}
.ws65{word-spacing:1.706667pt;}
.wsb6{word-spacing:1.813333pt;}
.ws56{word-spacing:1.920000pt;}
.wsc3{word-spacing:2.080000pt;}
.ws76{word-spacing:2.773333pt;}
.ws72{word-spacing:2.986667pt;}
.wsc8{word-spacing:3.072000pt;}
.wsc5{word-spacing:3.306667pt;}
.wsad{word-spacing:3.520000pt;}
.wsa1{word-spacing:3.733333pt;}
.ws87{word-spacing:3.786667pt;}
.wsb9{word-spacing:3.893333pt;}
.ws52{word-spacing:3.946667pt;}
.ws8c{word-spacing:4.000000pt;}
.ws9e{word-spacing:4.053333pt;}
.ws57{word-spacing:4.106667pt;}
.ws7f{word-spacing:4.160000pt;}
.ws88{word-spacing:4.320000pt;}
.ws8d{word-spacing:4.426667pt;}
.ws5f{word-spacing:4.586667pt;}
.ws4d{word-spacing:4.752000pt;}
.ws6a{word-spacing:4.906667pt;}
.ws8b{word-spacing:5.226667pt;}
.wsb7{word-spacing:5.440000pt;}
.ws9f{word-spacing:5.653333pt;}
.wsc0{word-spacing:5.920000pt;}
.wsc1{word-spacing:6.240000pt;}
.wsaa{word-spacing:6.506667pt;}
.ws50{word-spacing:6.773333pt;}
.ws4e{word-spacing:6.912000pt;}
.wsa5{word-spacing:6.933333pt;}
.ws7d{word-spacing:6.986667pt;}
.ws9a{word-spacing:7.306667pt;}
.ws67{word-spacing:7.626667pt;}
.ws5b{word-spacing:7.733333pt;}
.ws7e{word-spacing:7.840000pt;}
.wsb4{word-spacing:8.000000pt;}
.wsc4{word-spacing:8.266667pt;}
.wsc2{word-spacing:8.373333pt;}
.ws99{word-spacing:8.426667pt;}
.wsa7{word-spacing:8.480000pt;}
.wsca{word-spacing:8.496000pt;}
.wsa0{word-spacing:8.533333pt;}
.ws6e{word-spacing:8.640000pt;}
.wsbb{word-spacing:9.173333pt;}
.wsa2{word-spacing:9.226667pt;}
.wsb8{word-spacing:9.280000pt;}
.ws98{word-spacing:9.440000pt;}
.ws9c{word-spacing:9.653333pt;}
.ws6f{word-spacing:10.026667pt;}
.wsb5{word-spacing:10.186667pt;}
.ws8f{word-spacing:10.506667pt;}
.ws5c{word-spacing:10.666667pt;}
.ws96{word-spacing:10.720000pt;}
.ws82{word-spacing:11.093333pt;}
.ws58{word-spacing:11.200000pt;}
.ws66{word-spacing:11.786667pt;}
.wsc6{word-spacing:11.893333pt;}
.wsaf{word-spacing:11.946667pt;}
.ws86{word-spacing:12.426667pt;}
.wsae{word-spacing:12.693333pt;}
.wsb2{word-spacing:12.800000pt;}
.ws85{word-spacing:12.960000pt;}
.ws49{word-spacing:13.344000pt;}
.ws5e{word-spacing:13.546667pt;}
.ws61{word-spacing:13.760000pt;}
.wsbe{word-spacing:13.973333pt;}
.wsa9{word-spacing:14.720000pt;}
.ws97{word-spacing:15.573333pt;}
.wsbd{word-spacing:15.733333pt;}
.ws95{word-spacing:17.066667pt;}
.ws7c{word-spacing:17.226667pt;}
.wsab{word-spacing:17.440000pt;}
.wsac{word-spacing:17.920000pt;}
.ws8{word-spacing:18.288000pt;}
.ws60{word-spacing:18.506667pt;}
.wsbc{word-spacing:18.773333pt;}
.wsbf{word-spacing:19.306667pt;}
.ws94{word-spacing:19.520000pt;}
.ws90{word-spacing:20.106667pt;}
.ws74{word-spacing:21.120000pt;}
.wsba{word-spacing:21.706667pt;}
.ws81{word-spacing:23.200000pt;}
.ws5d{word-spacing:23.786667pt;}
.ws53{word-spacing:24.213333pt;}
.ws63{word-spacing:25.280000pt;}
.ws7b{word-spacing:31.413333pt;}
.wsb{word-spacing:36.975467pt;}
.wsc{word-spacing:37.007467pt;}
.ws47{word-spacing:70.750933pt;}
.ws21{word-spacing:72.015467pt;}
.ws5{word-spacing:90.567467pt;}
.ws45{word-spacing:95.327467pt;}
.ws79{word-spacing:314.572800pt;}
.ws7a{word-spacing:350.249067pt;}
._10{margin-left:-1837.418667pt;}
._36{margin-left:-1672.616533pt;}
._2d{margin-left:-1530.045867pt;}
._2b{margin-left:-1527.828267pt;}
._3f{margin-left:-1510.117867pt;}
._34{margin-left:-1420.185067pt;}
._38{margin-left:-1366.612800pt;}
._25{margin-left:-1309.946667pt;}
._2f{margin-left:-1249.969600pt;}
._27{margin-left:-1198.331200pt;}
._8{margin-left:-1195.012267pt;}
._43{margin-left:-1178.568000pt;}
._30{margin-left:-1168.314133pt;}
._17{margin-left:-1131.176000pt;}
._e{margin-left:-1100.880533pt;}
._32{margin-left:-1077.694400pt;}
._29{margin-left:-1061.616533pt;}
._12{margin-left:-1008.277867pt;}
._c{margin-left:-996.753600pt;}
._2a{margin-left:-965.520000pt;}
._3b{margin-left:-953.111467pt;}
._1c{margin-left:-949.929600pt;}
._14{margin-left:-946.896000pt;}
._9{margin-left:-936.240000pt;}
._1e{margin-left:-914.928000pt;}
._a{margin-left:-887.306667pt;}
._15{margin-left:-845.472000pt;}
._35{margin-left:-833.264000pt;}
._23{margin-left:-824.229867pt;}
._11{margin-left:-821.568000pt;}
._21{margin-left:-813.600000pt;}
._18{margin-left:-797.520000pt;}
._42{margin-left:-792.085333pt;}
._3e{margin-left:-784.858667pt;}
._20{margin-left:-780.720000pt;}
._13{margin-left:-765.504000pt;}
._3c{margin-left:-762.912000pt;}
._1a{margin-left:-758.250667pt;}
._31{margin-left:-746.928000pt;}
._1b{margin-left:-745.280000pt;}
._d{margin-left:-722.736000pt;}
._16{margin-left:-708.384000pt;}
._22{margin-left:-698.880000pt;}
._1d{margin-left:-695.226667pt;}
._1f{margin-left:-689.264000pt;}
._33{margin-left:-681.964800pt;}
._40{margin-left:-677.472000pt;}
._24{margin-left:-643.952000pt;}
._3a{margin-left:-626.880000pt;}
._2c{margin-left:-618.864000pt;}
._7{margin-left:-616.224000pt;}
._1{margin-left:-553.280000pt;}
._3d{margin-left:-541.632000pt;}
._6{margin-left:-508.320000pt;}
._41{margin-left:-500.657600pt;}
._0{margin-left:-452.068800pt;}
._19{margin-left:-427.434667pt;}
._2e{margin-left:-392.112000pt;}
._f{margin-left:-354.768000pt;}
._28{margin-left:-345.820800pt;}
._39{margin-left:-336.144000pt;}
._37{margin-left:-325.440000pt;}
._26{margin-left:-234.720000pt;}
._50{margin-left:-13.132800pt;}
._49{margin-left:-11.721600pt;}
._44{margin-left:-9.600000pt;}
._4a{margin-left:-8.524267pt;}
._4c{margin-left:-7.157333pt;}
._b{margin-left:-6.216000pt;}
._45{margin-left:-5.280533pt;}
._4{margin-left:-3.571200pt;}
._3{margin-left:-1.973333pt;}
._5{margin-left:-0.927467pt;}
._4d{width:0.903467pt;}
._2{width:1.952000pt;}
._4b{width:2.946133pt;}
._54{width:4.117867pt;}
._4e{width:5.761067pt;}
._51{width:6.683200pt;}
._48{width:7.584000pt;}
._47{width:9.326400pt;}
._53{width:10.303467pt;}
._65{width:13.290667pt;}
._52{width:15.028267pt;}
._56{width:16.609067pt;}
._46{width:18.305067pt;}
._55{width:23.425067pt;}
._67{width:25.762667pt;}
._66{width:52.450667pt;}
._57{width:70.573867pt;}
._58{width:82.856533pt;}
._4f{width:196.264533pt;}
._63{width:356.709867pt;}
._5e{width:378.061333pt;}
._61{width:379.862933pt;}
._5a{width:383.428800pt;}
._64{width:388.925333pt;}
._5b{width:398.214933pt;}
._59{width:408.744000pt;}
._62{width:410.245867pt;}
._5d{width:416.747733pt;}
._60{width:418.517333pt;}
._5f{width:423.593600pt;}
._5c{width:436.933867pt;}
.fsd{font-size:31.093333pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fse{font-size:112.000000pt;}
.fsc{font-size:128.000000pt;}
.fs9{font-size:160.000000pt;}
.fsb{font-size:256.000000pt;}
.fs2{font-size:266.666667pt;}
.fs0{font-size:266.766933pt;}
.fs3{font-size:373.333333pt;}
.fs1{font-size:373.473600pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.452667pt;}
.y3{bottom:64.850667pt;}
.y5{bottom:74.105733pt;}
.y6{bottom:74.581733pt;}
.y35{bottom:75.086133pt;}
.ya3{bottom:75.562133pt;}
.y34{bottom:113.385733pt;}
.y5c{bottom:113.385867pt;}
.y60{bottom:113.419733pt;}
.y6b{bottom:119.894800pt;}
.y1b7{bottom:120.214133pt;}
.y14e{bottom:122.268133pt;}
.y184{bottom:126.185867pt;}
.y5f{bottom:127.819733pt;}
.y33{bottom:130.498667pt;}
.y5b{bottom:131.565333pt;}
.y10b{bottom:133.171333pt;}
.y6a{bottom:135.894800pt;}
.y1b6{bottom:136.214133pt;}
.y14d{bottom:138.268133pt;}
.y5e{bottom:142.219733pt;}
.y1e8{bottom:145.883600pt;}
.y10a{bottom:145.971333pt;}
.yd5{bottom:147.319200pt;}
.y32{bottom:147.611467pt;}
.y5a{bottom:149.744933pt;}
.y69{bottom:151.894800pt;}
.y1b5{bottom:152.214133pt;}
.y5d{bottom:156.619733pt;}
.y183{bottom:156.827067pt;}
.yd4{bottom:160.119333pt;}
.y14c{bottom:161.827200pt;}
.y1e7{bottom:161.883600pt;}
.y109{bottom:163.571333pt;}
.y31{bottom:164.724400pt;}
.y68{bottom:167.894800pt;}
.y59{bottom:167.924400pt;}
.y1b4{bottom:168.214133pt;}
.y182{bottom:172.827067pt;}
.y14b{bottom:177.827200pt;}
.y1e6{bottom:177.883600pt;}
.yd3{bottom:181.498800pt;}
.y30{bottom:181.837200pt;}
.y67{bottom:183.894800pt;}
.y108{bottom:184.950800pt;}
.y58{bottom:186.103867pt;}
.ya2{bottom:186.927067pt;}
.y181{bottom:188.827067pt;}
.y14a{bottom:193.827200pt;}
.y1e5{bottom:193.883600pt;}
.yd2{bottom:194.298800pt;}
.y107{bottom:197.750800pt;}
.y2f{bottom:198.950133pt;}
.y66{bottom:199.894800pt;}
.y1b3{bottom:200.880800pt;}
.y57{bottom:204.283467pt;}
.y180{bottom:204.827067pt;}
.ya1{bottom:205.106667pt;}
.y149{bottom:209.827200pt;}
.y1e4{bottom:209.883600pt;}
.y106{bottom:215.350800pt;}
.yd1{bottom:215.678267pt;}
.y65{bottom:215.894800pt;}
.y2e{bottom:216.062933pt;}
.y1b2{bottom:220.283733pt;}
.y17f{bottom:220.827067pt;}
.y56{bottom:222.462933pt;}
.ya0{bottom:223.286133pt;}
.y202{bottom:225.649733pt;}
.y148{bottom:225.827200pt;}
.y1e3{bottom:225.883600pt;}
.yd0{bottom:228.478400pt;}
.y64{bottom:231.894800pt;}
.y2d{bottom:233.175733pt;}
.y105{bottom:236.730267pt;}
.y17e{bottom:236.827067pt;}
.y1b1{bottom:239.686800pt;}
.y55{bottom:240.642533pt;}
.y9f{bottom:241.465733pt;}
.y201{bottom:241.649733pt;}
.y147{bottom:241.827200pt;}
.y1e2{bottom:241.883600pt;}
.y104{bottom:249.530400pt;}
.ycf{bottom:249.857867pt;}
.y2c{bottom:250.288667pt;}
.y17d{bottom:252.827067pt;}
.y63{bottom:255.453733pt;}
.y146{bottom:257.827200pt;}
.y1e1{bottom:257.883600pt;}
.y54{bottom:258.822000pt;}
.y1b0{bottom:259.089733pt;}
.y9e{bottom:259.645200pt;}
.yce{bottom:262.657867pt;}
.y103{bottom:267.130267pt;}
.y2b{bottom:267.401467pt;}
.y17c{bottom:268.827067pt;}
.y128{bottom:270.909867pt;}
.y62{bottom:271.453733pt;}
.y218{bottom:271.760000pt;}
.y1e0{bottom:273.883600pt;}
.y53{bottom:277.001600pt;}
.y9d{bottom:277.824800pt;}
.y1af{bottom:278.492800pt;}
.ycd{bottom:280.257867pt;}
.y145{bottom:283.595067pt;}
.y127{bottom:283.709867pt;}
.y2a{bottom:284.514400pt;}
.y17b{bottom:284.827067pt;}
.y102{bottom:288.509867pt;}
.y217{bottom:289.360000pt;}
.y1df{bottom:289.883600pt;}
.y61{bottom:295.012800pt;}
.y52{bottom:295.181067pt;}
.y9c{bottom:296.004267pt;}
.y1ae{bottom:297.895733pt;}
.y17a{bottom:300.827067pt;}
.y101{bottom:301.309867pt;}
.y29{bottom:301.627200pt;}
.ycc{bottom:301.637467pt;}
.y1ad{bottom:305.095733pt;}
.y1de{bottom:305.883600pt;}
.y216{bottom:306.960000pt;}
.y144{bottom:307.154133pt;}
.y51{bottom:313.360533pt;}
.y9b{bottom:314.183867pt;}
.ycb{bottom:314.437333pt;}
.y179{bottom:316.827067pt;}
.y28{bottom:318.740133pt;}
.y200{bottom:319.586133pt;}
.y1dd{bottom:321.883600pt;}
.y100{bottom:322.689333pt;}
.y143{bottom:323.154133pt;}
.y215{bottom:324.560000pt;}
.y50{bottom:331.540133pt;}
.yca{bottom:332.037333pt;}
.y9a{bottom:332.363333pt;}
.y1ac{bottom:332.365333pt;}
.y178{bottom:332.827067pt;}
.y1ff{bottom:333.986267pt;}
.yff{bottom:335.489333pt;}
.y27{bottom:335.852933pt;}
.y1dc{bottom:337.883600pt;}
.y142{bottom:339.154133pt;}
.y214{bottom:342.160000pt;}
.y1fe{bottom:348.386267pt;}
.y177{bottom:348.827067pt;}
.y4f{bottom:349.719600pt;}
.y99{bottom:350.542933pt;}
.y26{bottom:352.965867pt;}
.yfe{bottom:353.089333pt;}
.yc9{bottom:353.416933pt;}
.y1db{bottom:353.883600pt;}
.y141{bottom:355.154133pt;}
.y1fd{bottom:362.786267pt;}
.y1ab{bottom:364.365467pt;}
.y176{bottom:364.827067pt;}
.yc8{bottom:366.216933pt;}
.y4e{bottom:367.899200pt;}
.y98{bottom:368.722400pt;}
.y1da{bottom:369.883600pt;}
.y25{bottom:370.078667pt;}
.y140{bottom:371.154133pt;}
.yfd{bottom:374.468933pt;}
.y1fc{bottom:377.186133pt;}
.y1aa{bottom:380.365467pt;}
.y175{bottom:380.827067pt;}
.yc7{bottom:383.816933pt;}
.y20d{bottom:384.040267pt;}
.y1d9{bottom:385.883600pt;}
.y4d{bottom:386.078667pt;}
.y97{bottom:386.902000pt;}
.y13f{bottom:387.154133pt;}
.y24{bottom:387.191467pt;}
.yfc{bottom:387.268933pt;}
.y1fb{bottom:391.586267pt;}
.y1a9{bottom:396.365467pt;}
.y174{bottom:396.827067pt;}
.y20c{bottom:401.640267pt;}
.y1d8{bottom:401.883600pt;}
.y4c{bottom:404.258267pt;}
.y23{bottom:404.304400pt;}
.yfb{bottom:404.868933pt;}
.y96{bottom:405.081467pt;}
.yc6{bottom:405.196400pt;}
.y1fa{bottom:405.986267pt;}
.y126{bottom:408.648400pt;}
.y1a8{bottom:412.365467pt;}
.y13e{bottom:412.555600pt;}
.y173{bottom:412.827067pt;}
.y1d7{bottom:417.883600pt;}
.yc5{bottom:417.996400pt;}
.y20b{bottom:419.240267pt;}
.y1f9{bottom:420.386133pt;}
.y22{bottom:421.417333pt;}
.y125{bottom:421.448400pt;}
.y4b{bottom:422.437733pt;}
.y95{bottom:423.260933pt;}
.yfa{bottom:426.248400pt;}
.y1a7{bottom:428.365467pt;}
.y172{bottom:428.827067pt;}
.y1d6{bottom:433.883600pt;}
.y1f8{bottom:434.786267pt;}
.yc4{bottom:435.596400pt;}
.y13d{bottom:436.114533pt;}
.y21{bottom:438.530133pt;}
.yf9{bottom:439.048400pt;}
.y4a{bottom:440.617333pt;}
.y94{bottom:441.440533pt;}
.y1a6{bottom:444.365467pt;}
.y171{bottom:444.827067pt;}
.y1f7{bottom:449.186133pt;}
.y1d5{bottom:449.883600pt;}
.y13c{bottom:452.114533pt;}
.y20{bottom:455.642933pt;}
.yf8{bottom:456.648400pt;}
.yc3{bottom:456.976000pt;}
.y49{bottom:458.796800pt;}
.y93{bottom:459.620000pt;}
.y1a5{bottom:460.365467pt;}
.y124{bottom:460.428000pt;}
.y170{bottom:460.827067pt;}
.y213{bottom:461.120667pt;}
.y1f6{bottom:463.586267pt;}
.y1d4{bottom:465.883600pt;}
.y13b{bottom:468.114533pt;}
.yc2{bottom:469.776000pt;}
.y1f{bottom:472.755867pt;}
.y123{bottom:473.228000pt;}
.y1a4{bottom:476.365467pt;}
.y16f{bottom:476.827067pt;}
.y48{bottom:476.976400pt;}
.y92{bottom:477.799600pt;}
.y1f5{bottom:477.986267pt;}
.yf7{bottom:478.028000pt;}
.y212{bottom:478.720667pt;}
.y1d3{bottom:481.883600pt;}
.y13a{bottom:484.114533pt;}
.yc1{bottom:487.376000pt;}
.y1e{bottom:489.868800pt;}
.yf6{bottom:490.828000pt;}
.y1a3{bottom:492.365467pt;}
.y1f4{bottom:492.386133pt;}
.y16e{bottom:492.827067pt;}
.y122{bottom:494.607467pt;}
.y47{bottom:495.155867pt;}
.y211{bottom:496.320533pt;}
.y1d2{bottom:497.883600pt;}
.y139{bottom:500.114533pt;}
.y1f3{bottom:506.786267pt;}
.y1d{bottom:506.981600pt;}
.y121{bottom:507.407467pt;}
.y1a2{bottom:508.365467pt;}
.yf5{bottom:508.428000pt;}
.yc0{bottom:508.755467pt;}
.y16d{bottom:508.827067pt;}
.y91{bottom:510.236267pt;}
.y46{bottom:513.335467pt;}
.y1d1{bottom:513.883600pt;}
.y210{bottom:513.920667pt;}
.y138{bottom:516.114533pt;}
.y1f2{bottom:521.186133pt;}
.ybf{bottom:521.555467pt;}
.y90{bottom:523.836267pt;}
.y1c{bottom:524.094400pt;}
.y1a1{bottom:524.365467pt;}
.y16c{bottom:524.827067pt;}
.y120{bottom:528.787067pt;}
.yf4{bottom:529.807467pt;}
.y1d0{bottom:529.883600pt;}
.y45{bottom:531.514933pt;}
.y20f{bottom:531.520533pt;}
.y137{bottom:532.114533pt;}
.y8f{bottom:537.436133pt;}
.y16b{bottom:540.827067pt;}
.y1b{bottom:541.207333pt;}
.y11f{bottom:541.587067pt;}
.yf3{bottom:542.607467pt;}
.ybe{bottom:542.935067pt;}
.y1cf{bottom:545.883600pt;}
.y1a0{bottom:547.924533pt;}
.y20e{bottom:549.120667pt;}
.y44{bottom:549.694400pt;}
.y8e{bottom:551.036267pt;}
.y1f1{bottom:551.586267pt;}
.ybd{bottom:555.735067pt;}
.y16a{bottom:556.827067pt;}
.y1a{bottom:558.320133pt;}
.y11e{bottom:559.187067pt;}
.y1ce{bottom:561.883600pt;}
.yf2{bottom:563.987067pt;}
.y8d{bottom:564.636267pt;}
.y1f0{bottom:567.586267pt;}
.y43{bottom:567.874000pt;}
.y19{bottom:575.433067pt;}
.yf1{bottom:576.787067pt;}
.ybc{bottom:577.114533pt;}
.y1cd{bottom:577.883600pt;}
.y8c{bottom:578.236267pt;}
.y169{bottom:580.386133pt;}
.y11d{bottom:580.566533pt;}
.y19f{bottom:583.124533pt;}
.y1ef{bottom:583.586267pt;}
.y42{bottom:586.053467pt;}
.ybb{bottom:589.914533pt;}
.y8b{bottom:591.836267pt;}
.y18{bottom:592.545867pt;}
.y11c{bottom:593.366533pt;}
.y1cc{bottom:593.883600pt;}
.yf0{bottom:594.387067pt;}
.y19e{bottom:599.124533pt;}
.y1ee{bottom:599.586267pt;}
.y20a{bottom:602.624400pt;}
.y136{bottom:602.700000pt;}
.y41{bottom:604.233067pt;}
.y8a{bottom:605.436133pt;}
.yba{bottom:607.514533pt;}
.y17{bottom:609.658667pt;}
.y1cb{bottom:609.883600pt;}
.y11b{bottom:610.966533pt;}
.y19d{bottom:615.124533pt;}
.y168{bottom:615.586133pt;}
.y1ed{bottom:615.586267pt;}
.yef{bottom:615.766533pt;}
.y89{bottom:619.036267pt;}
.y209{bottom:620.224400pt;}
.y135{bottom:620.300000pt;}
.y40{bottom:622.412533pt;}
.y1ca{bottom:625.883600pt;}
.y16{bottom:626.771600pt;}
.yee{bottom:628.566533pt;}
.yb9{bottom:628.894133pt;}
.y19c{bottom:631.124533pt;}
.y167{bottom:631.586133pt;}
.y1ec{bottom:631.586267pt;}
.y88{bottom:632.636267pt;}
.y208{bottom:637.824400pt;}
.y134{bottom:637.900000pt;}
.y3f{bottom:640.592133pt;}
.yb8{bottom:641.694133pt;}
.y1c9{bottom:641.883600pt;}
.y15{bottom:643.884400pt;}
.yed{bottom:646.166533pt;}
.y87{bottom:646.236267pt;}
.y19b{bottom:647.124533pt;}
.y166{bottom:647.586133pt;}
.y1eb{bottom:647.586267pt;}
.y11a{bottom:649.946133pt;}
.y207{bottom:655.424400pt;}
.y133{bottom:655.500000pt;}
.y1c8{bottom:657.883600pt;}
.y3e{bottom:658.771600pt;}
.yb7{bottom:659.294133pt;}
.y86{bottom:659.836267pt;}
.y14{bottom:660.997333pt;}
.y119{bottom:662.746000pt;}
.y19a{bottom:663.124533pt;}
.y165{bottom:663.586133pt;}
.y1ea{bottom:663.586267pt;}
.yec{bottom:667.546000pt;}
.y2{bottom:670.995467pt;}
.y4{bottom:671.165333pt;}
.y132{bottom:673.100000pt;}
.y85{bottom:673.436133pt;}
.y1c7{bottom:673.883600pt;}
.y3d{bottom:676.951200pt;}
.y13{bottom:678.110133pt;}
.y199{bottom:679.124533pt;}
.y164{bottom:679.586133pt;}
.y1e9{bottom:679.586267pt;}
.yeb{bottom:680.346133pt;}
.yb6{bottom:680.673600pt;}
.y203{bottom:681.389600pt;}
.y118{bottom:684.125600pt;}
.y84{bottom:687.036267pt;}
.y1c6{bottom:689.883600pt;}
.yb5{bottom:693.473600pt;}
.y198{bottom:695.124533pt;}
.y3c{bottom:695.130667pt;}
.y12{bottom:695.223067pt;}
.y163{bottom:695.586133pt;}
.y117{bottom:696.925600pt;}
.y83{bottom:700.636267pt;}
.yea{bottom:701.725600pt;}
.y1c5{bottom:705.883600pt;}
.y131{bottom:706.700000pt;}
.yb4{bottom:711.073600pt;}
.y197{bottom:711.124533pt;}
.y162{bottom:711.586133pt;}
.y11{bottom:712.336000pt;}
.y3b{bottom:713.310267pt;}
.y82{bottom:714.236267pt;}
.ye9{bottom:714.525600pt;}
.y206{bottom:715.935733pt;}
.y1c4{bottom:721.883600pt;}
.y130{bottom:724.300000pt;}
.y196{bottom:727.124533pt;}
.y161{bottom:727.586133pt;}
.y81{bottom:727.836133pt;}
.y10{bottom:729.448800pt;}
.y3a{bottom:731.489733pt;}
.yb3{bottom:732.453067pt;}
.ye8{bottom:735.905067pt;}
.y1c3{bottom:737.883600pt;}
.y80{bottom:741.436133pt;}
.y12f{bottom:741.900000pt;}
.y205{bottom:742.694933pt;}
.y195{bottom:743.124533pt;}
.y160{bottom:743.586133pt;}
.yb2{bottom:745.253200pt;}
.yf{bottom:746.561733pt;}
.ye7{bottom:748.705067pt;}
.y39{bottom:749.669333pt;}
.y1c2{bottom:753.883600pt;}
.y7f{bottom:755.036267pt;}
.y194{bottom:759.124533pt;}
.y12e{bottom:759.500000pt;}
.y15f{bottom:759.586133pt;}
.ye{bottom:763.674533pt;}
.ye6{bottom:766.305200pt;}
.yb1{bottom:766.632667pt;}
.y38{bottom:767.848800pt;}
.y204{bottom:769.454000pt;}
.y1c1{bottom:769.883600pt;}
.y116{bottom:770.084667pt;}
.y193{bottom:775.124533pt;}
.y15e{bottom:775.586133pt;}
.yb0{bottom:779.432667pt;}
.y7e{bottom:782.539733pt;}
.y115{bottom:782.884667pt;}
.ye5{bottom:783.905067pt;}
.y1c0{bottom:785.883600pt;}
.y37{bottom:786.028267pt;}
.y192{bottom:791.124533pt;}
.y15d{bottom:791.586133pt;}
.y7d{bottom:796.139600pt;}
.yaf{bottom:797.032667pt;}
.y114{bottom:800.484667pt;}
.y1bf{bottom:801.883600pt;}
.yc{bottom:803.504933pt;}
.y36{bottom:804.207867pt;}
.ye4{bottom:805.284667pt;}
.y191{bottom:807.124533pt;}
.y15c{bottom:807.586133pt;}
.y7c{bottom:809.739600pt;}
.y1be{bottom:817.883600pt;}
.ye3{bottom:818.084667pt;}
.yae{bottom:818.412133pt;}
.yb{bottom:819.504933pt;}
.y113{bottom:821.864133pt;}
.y190{bottom:823.124533pt;}
.y7b{bottom:823.339733pt;}
.y15b{bottom:823.586133pt;}
.yad{bottom:831.212267pt;}
.y1bd{bottom:833.883600pt;}
.y112{bottom:834.664267pt;}
.y7a{bottom:836.939733pt;}
.y18f{bottom:839.124533pt;}
.ye2{bottom:839.464133pt;}
.y15a{bottom:839.586133pt;}
.ya{bottom:843.063867pt;}
.yac{bottom:848.812267pt;}
.y1bc{bottom:849.883600pt;}
.y79{bottom:850.539733pt;}
.ye1{bottom:852.264133pt;}
.y18e{bottom:855.124533pt;}
.y159{bottom:855.586133pt;}
.y111{bottom:856.043733pt;}
.y12d{bottom:857.100000pt;}
.y9{bottom:859.063867pt;}
.y78{bottom:864.139600pt;}
.y1bb{bottom:865.883600pt;}
.y110{bottom:868.843733pt;}
.yab{bottom:870.191867pt;}
.y18d{bottom:871.124533pt;}
.y158{bottom:871.586133pt;}
.ye0{bottom:873.643733pt;}
.y77{bottom:877.739600pt;}
.y1ba{bottom:881.883600pt;}
.y8{bottom:882.622933pt;}
.yaa{bottom:882.991733pt;}
.ydf{bottom:886.443733pt;}
.y157{bottom:887.586133pt;}
.yd{bottom:889.390933pt;}
.y76{bottom:891.339600pt;}
.y18c{bottom:894.683467pt;}
.y12c{bottom:895.499867pt;}
.y1b9{bottom:897.883600pt;}
.y7{bottom:898.622933pt;}
.ya9{bottom:900.591733pt;}
.y156{bottom:903.586133pt;}
.yde{bottom:904.043733pt;}
.y75{bottom:904.939600pt;}
.y10f{bottom:907.823200pt;}
.y1b8{bottom:913.883600pt;}
.y74{bottom:918.539600pt;}
.y155{bottom:919.586133pt;}
.y10e{bottom:920.623200pt;}
.ya8{bottom:921.971333pt;}
.ydd{bottom:925.423200pt;}
.y18b{bottom:929.883600pt;}
.y73{bottom:932.139600pt;}
.y12b{bottom:933.900000pt;}
.ya7{bottom:934.771333pt;}
.y154{bottom:935.586133pt;}
.ydc{bottom:938.223200pt;}
.y10d{bottom:942.002800pt;}
.y72{bottom:945.739600pt;}
.y18a{bottom:945.883600pt;}
.y153{bottom:951.586133pt;}
.ya6{bottom:952.371333pt;}
.y10c{bottom:954.802800pt;}
.y71{bottom:959.339600pt;}
.ydb{bottom:959.602800pt;}
.y189{bottom:961.883600pt;}
.y152{bottom:967.586133pt;}
.y12a{bottom:972.300000pt;}
.yda{bottom:972.402800pt;}
.y70{bottom:972.939600pt;}
.y188{bottom:977.883600pt;}
.y151{bottom:983.586133pt;}
.yd6{bottom:985.809333pt;}
.y6f{bottom:986.539600pt;}
.yd9{bottom:993.782267pt;}
.y187{bottom:993.883600pt;}
.y150{bottom:999.586133pt;}
.y6e{bottom:1000.139600pt;}
.yd8{bottom:1006.582267pt;}
.y186{bottom:1009.883600pt;}
.y129{bottom:1010.700000pt;}
.y6d{bottom:1013.739600pt;}
.y14f{bottom:1023.145200pt;}
.yd7{bottom:1024.182267pt;}
.y185{bottom:1025.883600pt;}
.y6c{bottom:1027.339600pt;}
.ya4{bottom:1068.009867pt;}
.ya5{bottom:1069.353600pt;}
.h18{height:31.062500pt;}
.h25{height:31.104167pt;}
.h1a{height:31.250000pt;}
.h24{height:31.270833pt;}
.h14{height:33.003906pt;}
.h12{height:33.048177pt;}
.h13{height:33.225260pt;}
.h7{height:34.944000pt;}
.hb{height:34.945312pt;}
.hc{height:34.992188pt;}
.h6{height:35.088000pt;}
.hd{height:35.156250pt;}
.hf{height:35.179688pt;}
.he{height:36.848000pt;}
.h26{height:37.838542pt;}
.h8{height:38.828125pt;}
.h20{height:38.880208pt;}
.h9{height:39.062500pt;}
.h23{height:39.088542pt;}
.h22{height:40.427161pt;}
.h17{height:41.622396pt;}
.h1f{height:42.710938pt;}
.h10{height:42.768229pt;}
.h11{height:42.997396pt;}
.h21{height:45.406250pt;}
.ha{height:46.593750pt;}
.h29{height:46.656250pt;}
.h16{height:46.720000pt;}
.h19{height:50.817708pt;}
.h27{height:63.745312pt;}
.h28{height:75.687500pt;}
.h1d{height:90.812500pt;}
.h1e{height:110.875000pt;}
.h15{height:138.593750pt;}
.h1c{height:138.594283pt;}
.h1b{height:181.625000pt;}
.h4{height:191.666667pt;}
.h2{height:191.738733pt;}
.h5{height:264.320000pt;}
.h3{height:264.419309pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:38.794133pt;}
.x8{left:60.472400pt;}
.x1b{left:64.690533pt;}
.x2a{left:65.805733pt;}
.x18{left:70.693733pt;}
.x34{left:78.325467pt;}
.x37{left:83.506800pt;}
.x36{left:84.416267pt;}
.x5{left:86.173200pt;}
.x38{left:87.692667pt;}
.x2b{left:91.328533pt;}
.x9{left:92.976400pt;}
.x14{left:94.488133pt;}
.x4{left:96.332533pt;}
.x19{left:98.267733pt;}
.x2d{left:113.385867pt;}
.x1d{left:124.724400pt;}
.x3{left:126.549600pt;}
.x21{left:133.654800pt;}
.x2e{left:134.638000pt;}
.x3a{left:149.367467pt;}
.x33{left:158.740133pt;}
.x3f{left:176.154533pt;}
.x39{left:179.511600pt;}
.x1c{left:185.196800pt;}
.x40{left:188.794533pt;}
.x1a{left:191.125333pt;}
.x1f{left:193.920533pt;}
.x41{left:201.269867pt;}
.x1e{left:204.451733pt;}
.x3b{left:227.263733pt;}
.x22{left:228.436133pt;}
.x20{left:231.154800pt;}
.x17{left:249.448800pt;}
.x35{left:266.238533pt;}
.x3c{left:280.216267pt;}
.x30{left:300.741200pt;}
.x32{left:317.053600pt;}
.x3d{left:319.733867pt;}
.x3e{left:328.433600pt;}
.x31{left:383.961733pt;}
.x2f{left:451.865600pt;}
.x7{left:455.089867pt;}
.x23{left:472.054800pt;}
.x28{left:497.298933pt;}
.x6{left:504.072133pt;}
.x24{left:509.623200pt;}
.xe{left:517.136400pt;}
.xa{left:530.433867pt;}
.xd{left:537.915333pt;}
.x29{left:540.775600pt;}
.x26{left:542.259867pt;}
.x10{left:543.225600pt;}
.xf{left:544.851200pt;}
.x13{left:547.282533pt;}
.xb{left:548.657600pt;}
.x12{left:555.432267pt;}
.xc{left:563.592800pt;}
.x11{left:580.300400pt;}
.x2c{left:585.465333pt;}
.x25{left:591.192267pt;}
.x1{left:627.488133pt;}
.x27{left:633.418800pt;}
.x16{left:689.807733pt;}
.x15{left:760.123600pt;}
}




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