
    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_368c7aad69766edb5d429a61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.719000;font-style:normal;font-weight: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_6f5564b43bba27820b2105d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.684000;font-style:normal;font-weight: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_e5a8541d6f8871ea76446f09.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089000;font-style:normal;font-weight: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_b0f8b15ce5a73fc0692b7c90.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;font-style:normal;font-weight: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_a87cb36913a7d38001704d3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.697000;font-style:normal;font-weight: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_15049da84b3a447a2a040fde.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.068000;font-style:normal;font-weight: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_5c0b5eb8a2264c23c06c06ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.089000;font-style:normal;font-weight: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_a188c1061b1755614aef3283.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.068000;font-style:normal;font-weight: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_e685cd171a0c20f8566ba4f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959450;font-style:normal;font-weight: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_ac811a76c240c55c2a501b7e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925287;font-style:normal;font-weight: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_a8e80d003967e16235345cc8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.992000;font-style:normal;font-weight: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_368c7aad69766edb5d429a61.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.719000;font-style:normal;font-weight: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_6f5564b43bba27820b2105d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.684000;font-style:normal;font-weight: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_e5a8541d6f8871ea76446f09.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.089000;font-style:normal;font-weight: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_b0f8b15ce5a73fc0692b7c90.woff2')format("woff");}.fff{font-family:fff;line-height:0.940000;font-style:normal;font-weight: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_a87cb36913a7d38001704d3d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.697000;font-style:normal;font-weight: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_acc589ff378a33e2c62dedb4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.960111;font-style:normal;font-weight: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_46fa9c68c855743992f61558.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.953167;font-style:normal;font-weight: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_ddd50ee57a08b96b5d1f2cf4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.068000;font-style:normal;font-weight: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_dfccc2adc0f1a90f3c56af71.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.089000;font-style:normal;font-weight: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_368c7aad69766edb5d429a61.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.719000;font-style:normal;font-weight: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_6f5564b43bba27820b2105d6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.684000;font-style:normal;font-weight: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_e5a8541d6f8871ea76446f09.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.089000;font-style:normal;font-weight: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_b0f8b15ce5a73fc0692b7c90.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.940000;font-style:normal;font-weight: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_a87cb36913a7d38001704d3d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.697000;font-style:normal;font-weight: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_a8e80d003967e16235345cc8.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.992000;font-style:normal;font-weight: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_da02a6dde91a6c88a83e2744.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.089000;font-style:normal;font-weight: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_ddd50ee57a08b96b5d1f2cf4.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.068000;font-style:normal;font-weight: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_368c7aad69766edb5d429a61.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.719000;font-style:normal;font-weight: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_6f5564b43bba27820b2105d6.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.684000;font-style:normal;font-weight: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_e5a8541d6f8871ea76446f09.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.089000;font-style:normal;font-weight: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_b0f8b15ce5a73fc0692b7c90.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.940000;font-style:normal;font-weight: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_a87cb36913a7d38001704d3d.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.697000;font-style:normal;font-weight: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_ddd50ee57a08b96b5d1f2cf4.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.068000;font-style:normal;font-weight: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_a8e80d003967e16235345cc8.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.992000;font-style:normal;font-weight: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_b46a5219ec4ed765b80e7f1d.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.678000;font-style:normal;font-weight: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_7121683eae2a50429d8809e3.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.089000;font-style:normal;font-weight: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_8be582dc8054cfc005b84946.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.068000;font-style:normal;font-weight: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_368c7aad69766edb5d429a61.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.719000;font-style:normal;font-weight: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_6f5564b43bba27820b2105d6.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.684000;font-style:normal;font-weight: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_e5a8541d6f8871ea76446f09.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.089000;font-style:normal;font-weight: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_b0f8b15ce5a73fc0692b7c90.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.940000;font-style:normal;font-weight: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_a87cb36913a7d38001704d3d.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.697000;font-style:normal;font-weight: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_ddd50ee57a08b96b5d1f2cf4.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.068000;font-style:normal;font-weight: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_7121683eae2a50429d8809e3.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.089000;font-style:normal;font-weight: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_3578d8c331731abe0abd2acd.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.068000;font-style:normal;font-weight: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_acc589ff378a33e2c62dedb4.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.960111;font-style:normal;font-weight: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_65c7e53356f2efb183bd4abd.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.944000;font-style:normal;font-weight: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_368c7aad69766edb5d429a61.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.719000;font-style:normal;font-weight: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_6f5564b43bba27820b2105d6.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.684000;font-style:normal;font-weight: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_e5a8541d6f8871ea76446f09.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.089000;font-style:normal;font-weight: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_b0f8b15ce5a73fc0692b7c90.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.940000;font-style:normal;font-weight: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_a87cb36913a7d38001704d3d.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.697000;font-style:normal;font-weight: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_619f03326448fab59ad3da20.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.089000;font-style:normal;font-weight: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_ddd50ee57a08b96b5d1f2cf4.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.068000;font-style:normal;font-weight: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_65c7e53356f2efb183bd4abd.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.944000;font-style:normal;font-weight: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_a8e80d003967e16235345cc8.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.992000;font-style:normal;font-weight: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_368c7aad69766edb5d429a61.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.719000;font-style:normal;font-weight: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_6f5564b43bba27820b2105d6.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.684000;font-style:normal;font-weight: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_e5a8541d6f8871ea76446f09.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.089000;font-style:normal;font-weight: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_b0f8b15ce5a73fc0692b7c90.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.940000;font-style:normal;font-weight: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_a87cb36913a7d38001704d3d.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.697000;font-style:normal;font-weight: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_65c7e53356f2efb183bd4abd.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.944000;font-style:normal;font-weight: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_ddd50ee57a08b96b5d1f2cf4.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.068000;font-style:normal;font-weight: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_eb648a0eb22ef11247955f3e.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.089000;font-style:normal;font-weight: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_368c7aad69766edb5d429a61.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.719000;font-style:normal;font-weight: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_6f5564b43bba27820b2105d6.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.684000;font-style:normal;font-weight: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_e5a8541d6f8871ea76446f09.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.089000;font-style:normal;font-weight: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_b0f8b15ce5a73fc0692b7c90.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_a87cb36913a7d38001704d3d.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.697000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_ddd50ee57a08b96b5d1f2cf4.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.068000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_1966a57ffa90291baa493423.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.068000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_7121683eae2a50429d8809e3.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_65c7e53356f2efb183bd4abd.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_acc589ff378a33e2c62dedb4.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.960111;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_a8e80d003967e16235345cc8.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_368c7aad69766edb5d429a61.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_6f5564b43bba27820b2105d6.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_e5a8541d6f8871ea76446f09.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_b0f8b15ce5a73fc0692b7c90.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_a87cb36913a7d38001704d3d.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.697000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_ddd50ee57a08b96b5d1f2cf4.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.068000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_3578d8c331731abe0abd2acd.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.068000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_65c7e53356f2efb183bd4abd.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_1715cebe700960fee6b8dbae.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.992000;font-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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls1a{letter-spacing:-6.120000px;}
.ls49{letter-spacing:-3.903768px;}
.ls2e{letter-spacing:-3.420000px;}
.ls32{letter-spacing:-3.300000px;}
.ls36{letter-spacing:-3.180000px;}
.lsb{letter-spacing:-3.135000px;}
.ls10{letter-spacing:-2.793000px;}
.ls4a{letter-spacing:-2.640000px;}
.ls8{letter-spacing:-2.508000px;}
.ls22{letter-spacing:-2.460000px;}
.ls5a{letter-spacing:-2.400000px;}
.lsc{letter-spacing:-2.394000px;}
.ls35{letter-spacing:-2.280000px;}
.ls2a{letter-spacing:-2.220000px;}
.lsf{letter-spacing:-2.166000px;}
.ls27{letter-spacing:-2.160000px;}
.ls6{letter-spacing:-2.109000px;}
.ls30{letter-spacing:-2.100000px;}
.ls26{letter-spacing:-2.040000px;}
.ls4{letter-spacing:-1.995000px;}
.ls29{letter-spacing:-1.980000px;}
.ls25{letter-spacing:-1.920000px;}
.ls28{letter-spacing:-1.860000px;}
.ls2f{letter-spacing:-1.800000px;}
.ls23{letter-spacing:-1.740000px;}
.ls2b{letter-spacing:-1.680000px;}
.ls9{letter-spacing:-1.653000px;}
.ls39{letter-spacing:-1.560000px;}
.ls24{letter-spacing:-1.500000px;}
.ls5{letter-spacing:-1.425000px;}
.ls1e{letter-spacing:-1.326000px;}
.ls20{letter-spacing:-1.320000px;}
.lse{letter-spacing:-1.254000px;}
.ls31{letter-spacing:-1.200000px;}
.ls3{letter-spacing:-1.140000px;}
.ls2c{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-1.026000px;}
.ls34{letter-spacing:-1.021020px;}
.ls33{letter-spacing:-1.020000px;}
.lsa{letter-spacing:-0.969000px;}
.ls14{letter-spacing:-0.960000px;}
.ls17{letter-spacing:-0.840000px;}
.ls21{letter-spacing:-0.780000px;}
.ls2d{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.600000px;}
.ls59{letter-spacing:-0.561600px;}
.ls40{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.420000px;}
.ls41{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.300000px;}
.ls57{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.205200px;}
.ls38{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.151200px;}
.ls1b{letter-spacing:-0.120000px;}
.ls3f{letter-spacing:-0.060000px;}
.ls52{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.120000px;}
.ls3e{letter-spacing:0.180000px;}
.ls4e{letter-spacing:0.220800px;}
.ls50{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.300000px;}
.ls3c{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.364800px;}
.ls55{letter-spacing:0.384000px;}
.ls5b{letter-spacing:0.399600px;}
.ls15{letter-spacing:0.420000px;}
.ls4f{letter-spacing:0.422400px;}
.ls19{letter-spacing:0.438600px;}
.ls44{letter-spacing:0.588000px;}
.ls3b{letter-spacing:0.600000px;}
.ls42{letter-spacing:0.780000px;}
.ls48{letter-spacing:0.840000px;}
.ls3d{letter-spacing:0.900000px;}
.ls46{letter-spacing:0.960000px;}
.ls58{letter-spacing:1.032000px;}
.ls45{letter-spacing:1.140000px;}
.ls4c{letter-spacing:1.176000px;}
.ls54{letter-spacing:1.310400px;}
.ls56{letter-spacing:1.320000px;}
.ls43{letter-spacing:1.500000px;}
.ls53{letter-spacing:3.782400px;}
.lsd{letter-spacing:3.876000px;}
.ls18{letter-spacing:4.057740px;}
.ls0{letter-spacing:4.200000px;}
.ls3a{letter-spacing:4.615140px;}
.ls51{letter-spacing:5.040000px;}
.ls1{letter-spacing:6.000000px;}
.ls37{letter-spacing:6.300000px;}
.ls4b{letter-spacing:8.466000px;}
.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;}
}
.ws15{word-spacing:-18.390600px;}
.wsf{word-spacing:-17.560800px;}
.ws37{word-spacing:-14.678400px;}
.ws2e{word-spacing:-14.220000px;}
.ws2f{word-spacing:-13.920000px;}
.ws1f{word-spacing:-13.740000px;}
.ws13{word-spacing:-13.620000px;}
.ws2c{word-spacing:-13.200000px;}
.ws14{word-spacing:-13.140000px;}
.ws1e{word-spacing:-13.020000px;}
.ws17{word-spacing:-12.840000px;}
.ws10{word-spacing:-12.780000px;}
.ws1d{word-spacing:-12.540000px;}
.ws3b{word-spacing:-12.312000px;}
.ws19{word-spacing:-12.258000px;}
.ws38{word-spacing:-12.206400px;}
.ws25{word-spacing:-12.120000px;}
.ws39{word-spacing:-12.072000px;}
.ws3e{word-spacing:-12.024000px;}
.ws22{word-spacing:-12.000000px;}
.ws3c{word-spacing:-11.376000px;}
.wsc{word-spacing:-11.286000px;}
.ws1c{word-spacing:-11.280000px;}
.ws1a{word-spacing:-11.160000px;}
.ws33{word-spacing:-11.100000px;}
.ws31{word-spacing:-10.980000px;}
.ws36{word-spacing:-10.944000px;}
.wsa{word-spacing:-10.773000px;}
.ws3d{word-spacing:-10.704000px;}
.ws3a{word-spacing:-10.632000px;}
.ws20{word-spacing:-10.440000px;}
.ws40{word-spacing:-10.416000px;}
.ws3f{word-spacing:-10.334400px;}
.ws41{word-spacing:-8.496000px;}
.ws30{word-spacing:-5.708736px;}
.ws2d{word-spacing:-0.660000px;}
.ws42{word-spacing:-0.507600px;}
.ws11{word-spacing:-0.480000px;}
.ws28{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.071400px;}
.ws12{word-spacing:-0.060000px;}
.ws3{word-spacing:-0.057000px;}
.ws18{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.048000px;}
.wsd{word-spacing:0.000000px;}
.wse{word-spacing:0.097200px;}
.ws26{word-spacing:0.240000px;}
.ws29{word-spacing:0.360000px;}
.ws27{word-spacing:0.540000px;}
.ws2b{word-spacing:0.720000px;}
.ws4{word-spacing:0.969000px;}
.ws35{word-spacing:1.020000px;}
.ws9{word-spacing:1.197000px;}
.ws2a{word-spacing:1.260000px;}
.ws16{word-spacing:1.266000px;}
.ws6{word-spacing:1.596000px;}
.ws23{word-spacing:1.800000px;}
.ws1{word-spacing:1.938000px;}
.ws34{word-spacing:2.040000px;}
.ws2{word-spacing:2.052000px;}
.ws24{word-spacing:2.100000px;}
.wsb{word-spacing:2.109000px;}
.ws8{word-spacing:2.337000px;}
.ws1b{word-spacing:2.400000px;}
.ws5{word-spacing:2.451000px;}
.ws32{word-spacing:2.580000px;}
.ws7{word-spacing:3.078000px;}
._17{margin-left:-8.931900px;}
._0{margin-left:-7.008000px;}
._7{margin-left:-5.895600px;}
._9{margin-left:-4.269000px;}
._4{margin-left:-3.045000px;}
._1{margin-left:-1.876800px;}
._5{width:1.359600px;}
._6{width:2.409600px;}
._8{width:3.628500px;}
._2{width:4.643100px;}
._3{width:5.872500px;}
._10{width:7.080000px;}
._d{width:8.820000px;}
._c{width:10.225200px;}
._b{width:11.296800px;}
._f{width:12.480000px;}
._16{width:13.697400px;}
._e{width:15.016200px;}
._a{width:16.270800px;}
._11{width:17.814000px;}
._12{width:19.059600px;}
._15{width:20.709600px;}
._13{width:25.990800px;}
._14{width:27.414000px;}
.fc2{color:rgb(0,51,102);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:34.980000px;}
.fsa{font-size:41.976000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:71.400000px;}
.fs7{font-size:102.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:204.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:80.787450px;}
.y20{bottom:245.818050px;}
.y13f{bottom:246.111600px;}
.y1bd{bottom:246.546000px;}
.y16b{bottom:246.546600px;}
.y223{bottom:246.795900px;}
.y4d{bottom:246.924300px;}
.y24c{bottom:246.926400px;}
.y2ec{bottom:247.018950px;}
.yf4{bottom:247.200600px;}
.y2c2{bottom:247.221150px;}
.y276{bottom:247.411200px;}
.y1e6{bottom:247.598850px;}
.ya2{bottom:247.624650px;}
.y11d{bottom:247.635600px;}
.y76{bottom:248.056650px;}
.yc8{bottom:248.185650px;}
.y18c{bottom:249.193500px;}
.y2eb{bottom:261.418950px;}
.y13e{bottom:265.611600px;}
.y1bc{bottom:266.046000px;}
.y16a{bottom:266.046600px;}
.y75{bottom:266.291400px;}
.y222{bottom:266.295900px;}
.yc7{bottom:266.410650px;}
.y4c{bottom:266.424300px;}
.y24b{bottom:266.426400px;}
.yf3{bottom:266.700600px;}
.y2c1{bottom:266.721150px;}
.y275{bottom:266.911200px;}
.y1e5{bottom:267.098850px;}
.ya1{bottom:267.124650px;}
.y11c{bottom:267.135600px;}
.y18b{bottom:268.693500px;}
.y2ea{bottom:275.818950px;}
.y1f{bottom:281.813550px;}
.yc6{bottom:284.635650px;}
.y13d{bottom:285.111600px;}
.y1bb{bottom:285.546000px;}
.y169{bottom:285.546600px;}
.y221{bottom:285.795900px;}
.y4b{bottom:285.924300px;}
.y24a{bottom:285.926400px;}
.yf2{bottom:286.200600px;}
.y2c0{bottom:286.221150px;}
.y274{bottom:286.411200px;}
.y1e4{bottom:286.598850px;}
.ya0{bottom:286.624650px;}
.y11b{bottom:286.635600px;}
.y18a{bottom:288.193500px;}
.y1e{bottom:299.811300px;}
.yc5{bottom:302.860650px;}
.y2e9{bottom:302.974950px;}
.y13c{bottom:304.611600px;}
.y1ba{bottom:305.046000px;}
.y168{bottom:305.046600px;}
.y4a{bottom:305.424300px;}
.y249{bottom:305.426400px;}
.yf1{bottom:305.700600px;}
.y2bf{bottom:305.721150px;}
.y273{bottom:305.911200px;}
.y1e3{bottom:306.098850px;}
.y9f{bottom:306.124650px;}
.y11a{bottom:306.135600px;}
.y74{bottom:307.046400px;}
.y2e8{bottom:317.374950px;}
.y1d{bottom:317.809050px;}
.y1ca{bottom:319.296000px;}
.yc4{bottom:321.085650px;}
.y220{bottom:323.295750px;}
.y1b9{bottom:324.546000px;}
.y167{bottom:324.546600px;}
.y248{bottom:324.926400px;}
.yf0{bottom:325.200600px;}
.y2be{bottom:325.221150px;}
.y272{bottom:325.411200px;}
.y1e2{bottom:325.598850px;}
.y9e{bottom:325.624650px;}
.y119{bottom:325.635600px;}
.y189{bottom:325.693500px;}
.y73{bottom:326.546400px;}
.y1c{bottom:335.806800px;}
.y1c9{bottom:338.796000px;}
.yc3{bottom:339.310650px;}
.y21f{bottom:341.520750px;}
.y13b{bottom:342.110250px;}
.y49{bottom:342.924300px;}
.y1b8{bottom:344.046000px;}
.y166{bottom:344.046600px;}
.y247{bottom:344.426400px;}
.y2e7{bottom:344.530950px;}
.yef{bottom:344.700600px;}
.y2bd{bottom:344.721150px;}
.y271{bottom:344.911200px;}
.y9d{bottom:345.124650px;}
.y118{bottom:345.135600px;}
.y188{bottom:345.193500px;}
.y72{bottom:346.046400px;}
.y1b{bottom:353.804550px;}
.yc2{bottom:357.535650px;}
.y1c8{bottom:358.296000px;}
.y2e6{bottom:358.930950px;}
.y21e{bottom:359.745750px;}
.y48{bottom:362.424300px;}
.y1e1{bottom:363.098850px;}
.y1b7{bottom:363.546000px;}
.y165{bottom:363.546600px;}
.y246{bottom:363.926400px;}
.yee{bottom:364.200600px;}
.y2bc{bottom:364.221150px;}
.y270{bottom:364.411200px;}
.y9c{bottom:364.624650px;}
.y117{bottom:364.635600px;}
.y187{bottom:364.693500px;}
.y71{bottom:365.546400px;}
.y1a{bottom:371.802300px;}
.y13a{bottom:372.710250px;}
.y2e5{bottom:373.330950px;}
.yc1{bottom:375.760650px;}
.y1c7{bottom:377.796000px;}
.y21d{bottom:377.970750px;}
.y47{bottom:381.924300px;}
.y1e0{bottom:382.598850px;}
.y1b6{bottom:383.046000px;}
.y164{bottom:383.046600px;}
.yed{bottom:383.700600px;}
.y2bb{bottom:383.721150px;}
.y26f{bottom:383.911200px;}
.y9b{bottom:384.124650px;}
.y116{bottom:384.135600px;}
.y186{bottom:384.193500px;}
.y70{bottom:385.046400px;}
.y19{bottom:389.800050px;}
.y21c{bottom:396.195750px;}
.y1c6{bottom:397.296000px;}
.y2e4{bottom:400.486950px;}
.y46{bottom:401.424300px;}
.y245{bottom:401.426400px;}
.y1df{bottom:402.098850px;}
.y1b5{bottom:402.546000px;}
.y163{bottom:402.546600px;}
.yec{bottom:403.200600px;}
.y139{bottom:403.310250px;}
.y26e{bottom:403.411200px;}
.y9a{bottom:403.624650px;}
.y115{bottom:403.635600px;}
.y185{bottom:403.693500px;}
.y6f{bottom:404.546400px;}
.y18{bottom:407.797800px;}
.y299{bottom:409.353900px;}
.yc0{bottom:411.985650px;}
.y21b{bottom:414.420750px;}
.y2e3{bottom:414.886950px;}
.y1c5{bottom:416.796000px;}
.y45{bottom:420.924300px;}
.y244{bottom:420.926400px;}
.y1de{bottom:421.598850px;}
.y1b4{bottom:422.046000px;}
.y162{bottom:422.046600px;}
.y30c{bottom:422.225100px;}
.yeb{bottom:422.700600px;}
.y99{bottom:423.124650px;}
.y114{bottom:423.135600px;}
.y184{bottom:423.193500px;}
.y6e{bottom:424.046400px;}
.y17{bottom:425.795550px;}
.y2ba{bottom:426.606150px;}
.y2e2{bottom:429.286950px;}
.ybf{bottom:431.485650px;}
.y21a{bottom:432.645750px;}
.y1c4{bottom:436.296000px;}
.y207{bottom:437.785500px;}
.y44{bottom:440.424300px;}
.y243{bottom:440.426400px;}
.y26d{bottom:440.911200px;}
.y1dd{bottom:441.098850px;}
.y1b3{bottom:441.546000px;}
.y161{bottom:441.546600px;}
.yea{bottom:442.200600px;}
.y98{bottom:442.624650px;}
.y113{bottom:442.635600px;}
.y183{bottom:442.693500px;}
.y6d{bottom:443.546400px;}
.y16{bottom:443.793300px;}
.y2b9{bottom:446.106150px;}
.y206{bottom:448.290000px;}
.ybe{bottom:450.985650px;}
.y298{bottom:455.358900px;}
.y1c3{bottom:455.796000px;}
.y2e1{bottom:456.442950px;}
.y30b{bottom:456.725100px;}
.y43{bottom:459.924300px;}
.y242{bottom:459.926400px;}
.y26c{bottom:460.411200px;}
.y1dc{bottom:460.598850px;}
.y1b2{bottom:461.046000px;}
.y160{bottom:461.046600px;}
.ye9{bottom:461.700600px;}
.y15{bottom:461.791050px;}
.y97{bottom:462.124650px;}
.y112{bottom:462.135600px;}
.y182{bottom:462.193500px;}
.y6c{bottom:463.046400px;}
.y2b8{bottom:465.606150px;}
.y219{bottom:468.870900px;}
.ybd{bottom:470.485650px;}
.y2e0{bottom:470.842950px;}
.y30a{bottom:473.225100px;}
.y297{bottom:474.858900px;}
.y1c2{bottom:475.296000px;}
.y42{bottom:479.424300px;}
.y241{bottom:479.426400px;}
.y14{bottom:479.788800px;}
.y26b{bottom:479.911200px;}
.y1db{bottom:480.098850px;}
.y1b1{bottom:480.546000px;}
.y15f{bottom:480.546600px;}
.ye8{bottom:481.200600px;}
.y96{bottom:481.624650px;}
.y111{bottom:481.635600px;}
.y1a4{bottom:483.279150px;}
.y2b7{bottom:485.106150px;}
.y2df{bottom:485.242950px;}
.y218{bottom:488.370900px;}
.y138{bottom:489.411000px;}
.y309{bottom:489.725100px;}
.ybc{bottom:489.985650px;}
.y296{bottom:494.358900px;}
.y1c1{bottom:494.796000px;}
.y13{bottom:497.786550px;}
.y181{bottom:498.701400px;}
.y41{bottom:498.924300px;}
.y240{bottom:498.926400px;}
.y26a{bottom:499.411200px;}
.y1da{bottom:499.598850px;}
.y2de{bottom:499.642950px;}
.y1b0{bottom:500.046000px;}
.y15e{bottom:500.046600px;}
.ye7{bottom:500.700600px;}
.y95{bottom:501.124650px;}
.y6b{bottom:503.801400px;}
.y2b6{bottom:504.606150px;}
.y308{bottom:506.225100px;}
.y217{bottom:507.870900px;}
.y137{bottom:508.911000px;}
.ybb{bottom:509.485650px;}
.y205{bottom:512.798850px;}
.y295{bottom:513.858900px;}
.y1c0{bottom:514.296000px;}
.y180{bottom:516.926400px;}
.y40{bottom:518.424300px;}
.y23f{bottom:518.426400px;}
.y269{bottom:518.911200px;}
.y1d9{bottom:519.098850px;}
.y1af{bottom:519.546000px;}
.y15d{bottom:519.546600px;}
.ye6{bottom:520.200600px;}
.y94{bottom:520.624650px;}
.y6a{bottom:523.301400px;}
.y2b5{bottom:524.106150px;}
.y110{bottom:524.520600px;}
.y2dd{bottom:526.798950px;}
.y216{bottom:527.370900px;}
.y136{bottom:528.411000px;}
.yba{bottom:528.985650px;}
.y204{bottom:532.298850px;}
.y294{bottom:533.358900px;}
.y12{bottom:533.782050px;}
.y1bf{bottom:533.796000px;}
.y17f{bottom:535.151400px;}
.y3f{bottom:537.924300px;}
.y23e{bottom:537.926400px;}
.y268{bottom:538.411200px;}
.y1d8{bottom:538.598850px;}
.y1ae{bottom:539.046000px;}
.y15c{bottom:539.046600px;}
.ye5{bottom:539.700600px;}
.y93{bottom:540.124650px;}
.y307{bottom:540.725100px;}
.y69{bottom:542.801400px;}
.y2b4{bottom:543.606150px;}
.y10f{bottom:544.020600px;}
.y1a3{bottom:545.796000px;}
.y215{bottom:546.870900px;}
.y135{bottom:547.911000px;}
.yb9{bottom:548.485650px;}
.y203{bottom:551.798850px;}
.y293{bottom:552.858900px;}
.y1be{bottom:553.296000px;}
.y17e{bottom:553.376400px;}
.y2dc{bottom:553.954950px;}
.y3e{bottom:557.424300px;}
.y23d{bottom:557.426400px;}
.y267{bottom:557.911200px;}
.y1d7{bottom:558.098850px;}
.y1ad{bottom:558.546000px;}
.y15b{bottom:558.546600px;}
.ye4{bottom:559.200600px;}
.y92{bottom:559.624650px;}
.y68{bottom:562.301400px;}
.y2b3{bottom:563.106150px;}
.y10e{bottom:563.520600px;}
.y1a2{bottom:565.296000px;}
.y214{bottom:566.370900px;}
.y134{bottom:567.411000px;}
.yb8{bottom:567.985650px;}
.y2db{bottom:568.354950px;}
.y11{bottom:569.777550px;}
.y202{bottom:571.298850px;}
.y17d{bottom:571.601400px;}
.y292{bottom:572.358900px;}
.y3d{bottom:576.924300px;}
.y23c{bottom:576.926400px;}
.y266{bottom:577.411200px;}
.y1d6{bottom:577.598850px;}
.y15a{bottom:578.046600px;}
.ye3{bottom:578.700600px;}
.y91{bottom:579.124650px;}
.y67{bottom:581.801400px;}
.y2b2{bottom:582.606150px;}
.y2da{bottom:582.754950px;}
.y10d{bottom:583.020600px;}
.y1a1{bottom:584.796000px;}
.y213{bottom:585.870900px;}
.y133{bottom:586.911000px;}
.yb7{bottom:587.485650px;}
.y10{bottom:587.775300px;}
.y17c{bottom:589.826400px;}
.y1ac{bottom:590.796000px;}
.y201{bottom:590.798850px;}
.y291{bottom:591.858900px;}
.y3c{bottom:596.424300px;}
.y23b{bottom:596.426400px;}
.y265{bottom:596.911200px;}
.y1d5{bottom:597.098850px;}
.y2d9{bottom:597.154950px;}
.y159{bottom:597.546600px;}
.ye2{bottom:598.200600px;}
.y90{bottom:598.624650px;}
.y66{bottom:601.301400px;}
.y2b1{bottom:602.106150px;}
.y10c{bottom:602.520600px;}
.y1a0{bottom:604.296000px;}
.y212{bottom:605.370900px;}
.yf{bottom:605.773050px;}
.y132{bottom:606.411000px;}
.yb6{bottom:606.985650px;}
.y17b{bottom:608.051400px;}
.y1ab{bottom:610.296000px;}
.y200{bottom:610.298850px;}
.y290{bottom:611.358900px;}
.y2d8{bottom:611.554950px;}
.y3b{bottom:615.924300px;}
.y23a{bottom:615.926400px;}
.y264{bottom:616.411200px;}
.y1d4{bottom:616.598850px;}
.y158{bottom:617.046600px;}
.ye1{bottom:617.700600px;}
.y8f{bottom:618.124650px;}
.y306{bottom:618.582450px;}
.y65{bottom:620.801400px;}
.y2b0{bottom:621.606150px;}
.y10b{bottom:622.020600px;}
.ye{bottom:623.770800px;}
.y19f{bottom:623.796000px;}
.y211{bottom:624.870900px;}
.y131{bottom:625.911000px;}
.y2d7{bottom:625.954950px;}
.yb5{bottom:626.485650px;}
.y1aa{bottom:629.796000px;}
.y1ff{bottom:629.798850px;}
.y28f{bottom:630.858900px;}
.y305{bottom:632.982450px;}
.y3a{bottom:635.424300px;}
.y239{bottom:635.426400px;}
.y263{bottom:635.911200px;}
.y1d3{bottom:636.098850px;}
.y157{bottom:636.546600px;}
.ye0{bottom:637.200600px;}
.y8e{bottom:637.624650px;}
.y64{bottom:640.301400px;}
.y2af{bottom:641.106150px;}
.y10a{bottom:641.520600px;}
.yd{bottom:641.768550px;}
.y19e{bottom:643.296000px;}
.y210{bottom:644.370900px;}
.y130{bottom:645.411000px;}
.yb4{bottom:645.985650px;}
.y17a{bottom:647.541000px;}
.y1a9{bottom:649.296000px;}
.y173{bottom:649.296600px;}
.y1fe{bottom:649.298850px;}
.y28e{bottom:650.358900px;}
.y2d6{bottom:653.110950px;}
.y39{bottom:654.924300px;}
.y262{bottom:655.411200px;}
.y1d2{bottom:655.598850px;}
.y156{bottom:656.046600px;}
.ydf{bottom:656.700600px;}
.y8d{bottom:657.124650px;}
.yc{bottom:659.766300px;}
.y63{bottom:659.801400px;}
.y304{bottom:660.138450px;}
.y2ae{bottom:660.606150px;}
.y109{bottom:661.020600px;}
.y19d{bottom:662.796000px;}
.y20f{bottom:663.870900px;}
.y12f{bottom:664.911000px;}
.yb3{bottom:665.485650px;}
.y179{bottom:667.041000px;}
.y2d5{bottom:667.510950px;}
.y1a8{bottom:668.796000px;}
.y172{bottom:668.796600px;}
.y1fd{bottom:668.798850px;}
.y28d{bottom:669.858900px;}
.y238{bottom:672.926400px;}
.y38{bottom:674.424300px;}
.y303{bottom:674.538450px;}
.y261{bottom:674.911200px;}
.y1d1{bottom:675.098850px;}
.y155{bottom:675.546600px;}
.yde{bottom:676.200600px;}
.y8c{bottom:676.624650px;}
.yb{bottom:677.764050px;}
.y62{bottom:679.301400px;}
.y2ad{bottom:680.106150px;}
.y108{bottom:680.520600px;}
.y2d4{bottom:681.910950px;}
.y19c{bottom:682.296000px;}
.y20e{bottom:683.370900px;}
.y12e{bottom:684.411000px;}
.yb2{bottom:684.985650px;}
.y178{bottom:686.541000px;}
.y1a7{bottom:688.296000px;}
.y171{bottom:688.296600px;}
.y1fc{bottom:688.298850px;}
.y302{bottom:688.938450px;}
.y28c{bottom:689.358900px;}
.y237{bottom:692.426400px;}
.y37{bottom:693.924300px;}
.y260{bottom:694.411200px;}
.y1d0{bottom:694.598850px;}
.y154{bottom:695.046600px;}
.ydd{bottom:695.700600px;}
.ya{bottom:695.761800px;}
.y8b{bottom:696.124650px;}
.y2d3{bottom:696.310950px;}
.y61{bottom:698.801400px;}
.y2ac{bottom:699.606150px;}
.y107{bottom:700.020600px;}
.y19b{bottom:701.796000px;}
.y20d{bottom:702.870900px;}
.y301{bottom:703.338450px;}
.y12d{bottom:703.911000px;}
.yb1{bottom:704.485650px;}
.y177{bottom:706.041000px;}
.y1a6{bottom:707.796000px;}
.y170{bottom:707.796600px;}
.y1fb{bottom:707.798850px;}
.y28b{bottom:708.858900px;}
.y236{bottom:711.926400px;}
.y36{bottom:713.424300px;}
.y9{bottom:713.759550px;}
.y25f{bottom:713.911200px;}
.y1cf{bottom:714.098850px;}
.y153{bottom:714.546600px;}
.ydc{bottom:715.200600px;}
.y8a{bottom:715.624650px;}
.y60{bottom:718.301400px;}
.y106{bottom:719.520600px;}
.y19a{bottom:721.296000px;}
.y20c{bottom:722.370900px;}
.yb0{bottom:723.985650px;}
.y176{bottom:725.541000px;}
.y1a5{bottom:727.296000px;}
.y16f{bottom:727.296600px;}
.y1fa{bottom:727.298850px;}
.y2d2{bottom:727.718850px;}
.y28a{bottom:728.358900px;}
.y300{bottom:730.494450px;}
.y235{bottom:731.426400px;}
.y8{bottom:731.757300px;}
.y35{bottom:732.924300px;}
.y25e{bottom:733.411200px;}
.y1ce{bottom:733.598850px;}
.y152{bottom:734.046600px;}
.ydb{bottom:734.700600px;}
.y89{bottom:735.124650px;}
.y5f{bottom:737.801400px;}
.y199{bottom:740.796000px;}
.y20b{bottom:741.870900px;}
.y2ab{bottom:742.491150px;}
.yaf{bottom:743.485650px;}
.y2ff{bottom:744.894450px;}
.y175{bottom:745.041000px;}
.y12c{bottom:746.796000px;}
.y16e{bottom:746.796600px;}
.y1f9{bottom:746.798850px;}
.y289{bottom:747.858900px;}
.y7{bottom:749.755050px;}
.y234{bottom:750.926400px;}
.y34{bottom:752.424300px;}
.y25d{bottom:752.911200px;}
.y151{bottom:753.546600px;}
.yda{bottom:754.200600px;}
.y88{bottom:754.624650px;}
.y5e{bottom:757.301400px;}
.y2fe{bottom:759.294450px;}
.y198{bottom:760.296000px;}
.y20a{bottom:761.370900px;}
.y2aa{bottom:761.991150px;}
.y105{bottom:762.405600px;}
.yae{bottom:762.985650px;}
.y174{bottom:764.541000px;}
.y12b{bottom:766.296000px;}
.y16d{bottom:766.296600px;}
.y1f8{bottom:766.298850px;}
.y288{bottom:767.358900px;}
.y6{bottom:767.752800px;}
.y233{bottom:770.426400px;}
.y1cd{bottom:771.097500px;}
.y33{bottom:771.924300px;}
.y25c{bottom:772.411200px;}
.y150{bottom:773.046600px;}
.yd9{bottom:773.700600px;}
.y87{bottom:774.124650px;}
.y5d{bottom:776.801400px;}
.y197{bottom:779.796000px;}
.y209{bottom:780.870900px;}
.y2a9{bottom:781.491150px;}
.y104{bottom:781.905600px;}
.yad{bottom:782.485650px;}
.y5{bottom:785.750550px;}
.y12a{bottom:785.796000px;}
.y16c{bottom:785.796600px;}
.y1f7{bottom:785.798850px;}
.y2fd{bottom:786.450450px;}
.y287{bottom:786.858900px;}
.y232{bottom:789.926400px;}
.y25b{bottom:791.911200px;}
.yd8{bottom:793.200600px;}
.y86{bottom:793.624650px;}
.y196{bottom:799.296000px;}
.y2fc{bottom:800.850450px;}
.y2a8{bottom:800.991150px;}
.y103{bottom:801.405600px;}
.y1cc{bottom:801.697500px;}
.yac{bottom:801.985650px;}
.y2d1{bottom:802.476150px;}
.y129{bottom:805.296000px;}
.y14f{bottom:805.296600px;}
.y1f6{bottom:805.298850px;}
.y286{bottom:806.358900px;}
.y32{bottom:809.424300px;}
.y25a{bottom:811.411200px;}
.yd7{bottom:812.700600px;}
.y85{bottom:813.124650px;}
.y5c{bottom:817.561200px;}
.y195{bottom:818.796000px;}
.y2a7{bottom:820.491150px;}
.y102{bottom:820.905600px;}
.yab{bottom:821.485650px;}
.y2d0{bottom:821.976150px;}
.y128{bottom:824.796000px;}
.y14e{bottom:824.796600px;}
.y1f5{bottom:824.798850px;}
.y285{bottom:825.858900px;}
.y208{bottom:826.625700px;}
.y2fb{bottom:828.006450px;}
.y31{bottom:828.924300px;}
.y231{bottom:830.686200px;}
.y259{bottom:830.911200px;}
.yd6{bottom:832.200600px;}
.y84{bottom:832.624650px;}
.y5b{bottom:835.786200px;}
.y24{bottom:839.790450px;}
.y2a6{bottom:839.991150px;}
.y101{bottom:840.405600px;}
.yaa{bottom:840.985650px;}
.y2cf{bottom:841.476150px;}
.y2fa{bottom:842.406450px;}
.y127{bottom:844.296000px;}
.y14d{bottom:844.296600px;}
.y1f4{bottom:844.298850px;}
.y284{bottom:845.358900px;}
.y30{bottom:848.424300px;}
.y230{bottom:848.911200px;}
.yd5{bottom:851.700600px;}
.y83{bottom:852.124650px;}
.y5a{bottom:854.011200px;}
.y194{bottom:856.308000px;}
.y2f9{bottom:856.806450px;}
.y2a5{bottom:859.491150px;}
.y100{bottom:859.905600px;}
.y2ce{bottom:860.976150px;}
.y126{bottom:863.796000px;}
.y14c{bottom:863.796600px;}
.y1f3{bottom:863.798850px;}
.y283{bottom:864.858900px;}
.y22f{bottom:867.136200px;}
.y2f{bottom:867.924300px;}
.yd4{bottom:871.200600px;}
.y2f8{bottom:871.206450px;}
.y82{bottom:871.624650px;}
.y258{bottom:871.677000px;}
.y59{bottom:872.236200px;}
.ya9{bottom:878.484150px;}
.y2a4{bottom:878.991150px;}
.yff{bottom:879.405600px;}
.y2cd{bottom:880.476150px;}
.y125{bottom:883.296000px;}
.y14b{bottom:883.296600px;}
.y1f2{bottom:883.298850px;}
.y282{bottom:884.358900px;}
.y22e{bottom:885.361200px;}
.y2e{bottom:887.424300px;}
.y193{bottom:889.302000px;}
.y58{bottom:890.461200px;}
.yd3{bottom:890.700600px;}
.y257{bottom:891.171000px;}
.y2f7{bottom:898.362450px;}
.y2a3{bottom:898.491150px;}
.yfe{bottom:898.905600px;}
.y2cc{bottom:899.976150px;}
.y1cb{bottom:900.291000px;}
.y124{bottom:902.796000px;}
.y14a{bottom:902.796600px;}
.y1f1{bottom:902.798850px;}
.y22d{bottom:903.586200px;}
.y281{bottom:903.858900px;}
.y2d{bottom:906.924300px;}
.y57{bottom:908.686200px;}
.ya8{bottom:909.084150px;}
.y256{bottom:909.396000px;}
.yd2{bottom:910.200600px;}
.y2f6{bottom:912.762450px;}
.y81{bottom:916.630650px;}
.y2a2{bottom:917.991150px;}
.yfd{bottom:918.405600px;}
.y2cb{bottom:919.476150px;}
.y22c{bottom:921.811200px;}
.y123{bottom:922.296000px;}
.y149{bottom:922.296600px;}
.y1f0{bottom:922.298850px;}
.y280{bottom:923.358900px;}
.y2c{bottom:926.424300px;}
.y56{bottom:926.911200px;}
.y255{bottom:927.621000px;}
.y23{bottom:933.822900px;}
.y80{bottom:934.855650px;}
.y2a1{bottom:937.491150px;}
.yfc{bottom:937.905600px;}
.y2ca{bottom:938.976150px;}
.ya7{bottom:939.684150px;}
.y2f5{bottom:939.918450px;}
.y122{bottom:941.796000px;}
.y148{bottom:941.796600px;}
.y1ef{bottom:941.798850px;}
.y27f{bottom:942.858900px;}
.y55{bottom:945.136200px;}
.y254{bottom:945.846000px;}
.y2b{bottom:945.924300px;}
.y7f{bottom:953.080650px;}
.yd1{bottom:953.088150px;}
.y2f4{bottom:954.318450px;}
.y2a0{bottom:956.991150px;}
.yfb{bottom:957.405600px;}
.y2c9{bottom:958.476150px;}
.y22b{bottom:961.290900px;}
.y121{bottom:961.296000px;}
.y147{bottom:961.296600px;}
.y1ee{bottom:961.298850px;}
.y27e{bottom:962.358900px;}
.y54{bottom:963.361200px;}
.y253{bottom:964.071000px;}
.y2f3{bottom:968.718450px;}
.y7e{bottom:971.305650px;}
.yd0{bottom:971.313150px;}
.y29f{bottom:976.491150px;}
.y22a{bottom:980.790900px;}
.y120{bottom:980.796000px;}
.y146{bottom:980.796600px;}
.y1ed{bottom:980.798850px;}
.y53{bottom:981.586200px;}
.y27d{bottom:981.858900px;}
.y7d{bottom:989.530650px;}
.ycf{bottom:989.538150px;}
.y2a{bottom:990.954000px;}
.y2f2{bottom:995.874450px;}
.y29e{bottom:995.991150px;}
.y52{bottom:999.811200px;}
.yfa{bottom:1000.290600px;}
.y229{bottom:1000.290900px;}
.y11f{bottom:1000.296000px;}
.y145{bottom:1000.296600px;}
.y1ec{bottom:1000.298850px;}
.y252{bottom:1000.301400px;}
.y192{bottom:1000.303500px;}
.y27c{bottom:1001.358900px;}
.y2c8{bottom:1001.361150px;}
.y22{bottom:1005.822900px;}
.y7c{bottom:1007.755650px;}
.yce{bottom:1007.763150px;}
.y2f1{bottom:1010.274450px;}
.y29d{bottom:1015.491150px;}
.yf9{bottom:1019.790600px;}
.y228{bottom:1019.790900px;}
.y11e{bottom:1019.796000px;}
.y144{bottom:1019.796600px;}
.y1eb{bottom:1019.798850px;}
.y251{bottom:1019.801400px;}
.y191{bottom:1019.803500px;}
.y27b{bottom:1020.858900px;}
.y2c7{bottom:1020.861150px;}
.y29{bottom:1023.948000px;}
.y7b{bottom:1025.980650px;}
.ycd{bottom:1025.988150px;}
.y29c{bottom:1034.991150px;}
.y2f0{bottom:1037.430450px;}
.yf8{bottom:1039.290600px;}
.y227{bottom:1039.290900px;}
.ya6{bottom:1039.296000px;}
.y143{bottom:1039.296600px;}
.y1ea{bottom:1039.298850px;}
.y51{bottom:1039.299300px;}
.y250{bottom:1039.301400px;}
.y190{bottom:1039.303500px;}
.y27a{bottom:1040.358900px;}
.y2c6{bottom:1040.361150px;}
.y7a{bottom:1044.205650px;}
.ycc{bottom:1044.213150px;}
.y2ef{bottom:1051.830450px;}
.y29b{bottom:1054.491150px;}
.y28{bottom:1056.942000px;}
.yf7{bottom:1058.790600px;}
.y226{bottom:1058.790900px;}
.ya5{bottom:1058.796000px;}
.y142{bottom:1058.796600px;}
.y1e9{bottom:1058.798850px;}
.y50{bottom:1058.799300px;}
.y24f{bottom:1058.801400px;}
.y18f{bottom:1058.803500px;}
.y279{bottom:1059.858900px;}
.y2c5{bottom:1059.861150px;}
.y79{bottom:1062.430650px;}
.ycb{bottom:1062.438150px;}
.y21{bottom:1067.022900px;}
.yf6{bottom:1078.290600px;}
.y225{bottom:1078.290900px;}
.ya4{bottom:1078.296000px;}
.y141{bottom:1078.296600px;}
.y1e8{bottom:1078.298850px;}
.y4f{bottom:1078.299300px;}
.y24e{bottom:1078.301400px;}
.y18e{bottom:1078.303500px;}
.y2ee{bottom:1078.986450px;}
.y278{bottom:1079.358900px;}
.y2c4{bottom:1079.361150px;}
.y78{bottom:1080.655650px;}
.yca{bottom:1080.663150px;}
.y27{bottom:1089.936000px;}
.y29a{bottom:1090.998900px;}
.y2ed{bottom:1093.386450px;}
.yf5{bottom:1097.790600px;}
.y224{bottom:1097.790900px;}
.ya3{bottom:1097.796000px;}
.y140{bottom:1097.796600px;}
.y1e7{bottom:1097.798850px;}
.y4e{bottom:1097.799300px;}
.y24d{bottom:1097.801400px;}
.y18d{bottom:1097.803500px;}
.y277{bottom:1098.858900px;}
.y2c3{bottom:1098.861150px;}
.y77{bottom:1098.880650px;}
.yc9{bottom:1098.888150px;}
.y26{bottom:1237.642800px;}
.y4{bottom:1238.457600px;}
.y1{bottom:1250.110800px;}
.y25{bottom:1250.242800px;}
.y3{bottom:1251.057750px;}
.h6{height:28.140000px;}
.h10{height:28.613640px;}
.h3{height:33.024000px;}
.h5{height:33.360000px;}
.h11{height:34.336368px;}
.h12{height:38.928000px;}
.h4{height:39.264000px;}
.ha{height:42.087000px;}
.he{height:44.172000px;}
.h7{height:46.626000px;}
.hd{height:48.660000px;}
.hc{height:49.080000px;}
.hf{height:73.338000px;}
.hb{height:75.828000px;}
.h9{height:77.652000px;}
.h8{height:143.095800px;}
.h2{height:1317.000000px;}
.h1{height:1317.750000px;}
.h0{height:1318.110000px;}
.w1{width:999.000000px;}
.w0{width:999.213000px;}
.x0{left:0.000000px;}
.xb{left:68.421150px;}
.xc{left:72.283500px;}
.x3{left:102.649650px;}
.x11{left:123.307050px;}
.x5{left:146.352150px;}
.x6{left:237.387150px;}
.x4{left:242.362200px;}
.xd{left:352.918500px;}
.xe{left:374.173200px;}
.x13{left:382.677150px;}
.x12{left:403.931550px;}
.x7{left:424.958250px;}
.x8{left:439.860600px;}
.xa{left:480.027450px;}
.x2{left:508.728300px;}
.x10{left:633.543300px;}
.xf{left:654.801300px;}
.x14{left:663.312150px;}
.x15{left:684.566850px;}
.x9{left:805.307550px;}
.x1{left:835.886400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls1a{letter-spacing:-5.440000pt;}
.ls49{letter-spacing:-3.470016pt;}
.ls2e{letter-spacing:-3.040000pt;}
.ls32{letter-spacing:-2.933333pt;}
.ls36{letter-spacing:-2.826667pt;}
.lsb{letter-spacing:-2.786667pt;}
.ls10{letter-spacing:-2.482667pt;}
.ls4a{letter-spacing:-2.346667pt;}
.ls8{letter-spacing:-2.229333pt;}
.ls22{letter-spacing:-2.186667pt;}
.ls5a{letter-spacing:-2.133333pt;}
.lsc{letter-spacing:-2.128000pt;}
.ls35{letter-spacing:-2.026667pt;}
.ls2a{letter-spacing:-1.973333pt;}
.lsf{letter-spacing:-1.925333pt;}
.ls27{letter-spacing:-1.920000pt;}
.ls6{letter-spacing:-1.874667pt;}
.ls30{letter-spacing:-1.866667pt;}
.ls26{letter-spacing:-1.813333pt;}
.ls4{letter-spacing:-1.773333pt;}
.ls29{letter-spacing:-1.760000pt;}
.ls25{letter-spacing:-1.706667pt;}
.ls28{letter-spacing:-1.653333pt;}
.ls2f{letter-spacing:-1.600000pt;}
.ls23{letter-spacing:-1.546667pt;}
.ls2b{letter-spacing:-1.493333pt;}
.ls9{letter-spacing:-1.469333pt;}
.ls39{letter-spacing:-1.386667pt;}
.ls24{letter-spacing:-1.333333pt;}
.ls5{letter-spacing:-1.266667pt;}
.ls1e{letter-spacing:-1.178667pt;}
.ls20{letter-spacing:-1.173333pt;}
.lse{letter-spacing:-1.114667pt;}
.ls31{letter-spacing:-1.066667pt;}
.ls3{letter-spacing:-1.013333pt;}
.ls2c{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.912000pt;}
.ls34{letter-spacing:-0.907573pt;}
.ls33{letter-spacing:-0.906667pt;}
.lsa{letter-spacing:-0.861333pt;}
.ls14{letter-spacing:-0.853333pt;}
.ls17{letter-spacing:-0.746667pt;}
.ls21{letter-spacing:-0.693333pt;}
.ls2d{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.533333pt;}
.ls59{letter-spacing:-0.499200pt;}
.ls40{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.373333pt;}
.ls41{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.266667pt;}
.ls57{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.182400pt;}
.ls38{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.134400pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls3f{letter-spacing:-0.053333pt;}
.ls52{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.106667pt;}
.ls3e{letter-spacing:0.160000pt;}
.ls4e{letter-spacing:0.196267pt;}
.ls50{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.266667pt;}
.ls3c{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.324267pt;}
.ls55{letter-spacing:0.341333pt;}
.ls5b{letter-spacing:0.355200pt;}
.ls15{letter-spacing:0.373333pt;}
.ls4f{letter-spacing:0.375467pt;}
.ls19{letter-spacing:0.389867pt;}
.ls44{letter-spacing:0.522667pt;}
.ls3b{letter-spacing:0.533333pt;}
.ls42{letter-spacing:0.693333pt;}
.ls48{letter-spacing:0.746667pt;}
.ls3d{letter-spacing:0.800000pt;}
.ls46{letter-spacing:0.853333pt;}
.ls58{letter-spacing:0.917333pt;}
.ls45{letter-spacing:1.013333pt;}
.ls4c{letter-spacing:1.045333pt;}
.ls54{letter-spacing:1.164800pt;}
.ls56{letter-spacing:1.173333pt;}
.ls43{letter-spacing:1.333333pt;}
.ls53{letter-spacing:3.362133pt;}
.lsd{letter-spacing:3.445333pt;}
.ls18{letter-spacing:3.606880pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3a{letter-spacing:4.102347pt;}
.ls51{letter-spacing:4.480000pt;}
.ls1{letter-spacing:5.333333pt;}
.ls37{letter-spacing:5.600000pt;}
.ls4b{letter-spacing:7.525333pt;}
.ws15{word-spacing:-16.347200pt;}
.wsf{word-spacing:-15.609600pt;}
.ws37{word-spacing:-13.047467pt;}
.ws2e{word-spacing:-12.640000pt;}
.ws2f{word-spacing:-12.373333pt;}
.ws1f{word-spacing:-12.213333pt;}
.ws13{word-spacing:-12.106667pt;}
.ws2c{word-spacing:-11.733333pt;}
.ws14{word-spacing:-11.680000pt;}
.ws1e{word-spacing:-11.573333pt;}
.ws17{word-spacing:-11.413333pt;}
.ws10{word-spacing:-11.360000pt;}
.ws1d{word-spacing:-11.146667pt;}
.ws3b{word-spacing:-10.944000pt;}
.ws19{word-spacing:-10.896000pt;}
.ws38{word-spacing:-10.850133pt;}
.ws25{word-spacing:-10.773333pt;}
.ws39{word-spacing:-10.730667pt;}
.ws3e{word-spacing:-10.688000pt;}
.ws22{word-spacing:-10.666667pt;}
.ws3c{word-spacing:-10.112000pt;}
.wsc{word-spacing:-10.032000pt;}
.ws1c{word-spacing:-10.026667pt;}
.ws1a{word-spacing:-9.920000pt;}
.ws33{word-spacing:-9.866667pt;}
.ws31{word-spacing:-9.760000pt;}
.ws36{word-spacing:-9.728000pt;}
.wsa{word-spacing:-9.576000pt;}
.ws3d{word-spacing:-9.514667pt;}
.ws3a{word-spacing:-9.450667pt;}
.ws20{word-spacing:-9.280000pt;}
.ws40{word-spacing:-9.258667pt;}
.ws3f{word-spacing:-9.186133pt;}
.ws41{word-spacing:-7.552000pt;}
.ws30{word-spacing:-5.074432pt;}
.ws2d{word-spacing:-0.586667pt;}
.ws42{word-spacing:-0.451200pt;}
.ws11{word-spacing:-0.426667pt;}
.ws28{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.063467pt;}
.ws12{word-spacing:-0.053333pt;}
.ws3{word-spacing:-0.050667pt;}
.ws18{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.042667pt;}
.wsd{word-spacing:0.000000pt;}
.wse{word-spacing:0.086400pt;}
.ws26{word-spacing:0.213333pt;}
.ws29{word-spacing:0.320000pt;}
.ws27{word-spacing:0.480000pt;}
.ws2b{word-spacing:0.640000pt;}
.ws4{word-spacing:0.861333pt;}
.ws35{word-spacing:0.906667pt;}
.ws9{word-spacing:1.064000pt;}
.ws2a{word-spacing:1.120000pt;}
.ws16{word-spacing:1.125333pt;}
.ws6{word-spacing:1.418667pt;}
.ws23{word-spacing:1.600000pt;}
.ws1{word-spacing:1.722667pt;}
.ws34{word-spacing:1.813333pt;}
.ws2{word-spacing:1.824000pt;}
.ws24{word-spacing:1.866667pt;}
.wsb{word-spacing:1.874667pt;}
.ws8{word-spacing:2.077333pt;}
.ws1b{word-spacing:2.133333pt;}
.ws5{word-spacing:2.178667pt;}
.ws32{word-spacing:2.293333pt;}
.ws7{word-spacing:2.736000pt;}
._17{margin-left:-7.939467pt;}
._0{margin-left:-6.229333pt;}
._7{margin-left:-5.240533pt;}
._9{margin-left:-3.794667pt;}
._4{margin-left:-2.706667pt;}
._1{margin-left:-1.668267pt;}
._5{width:1.208533pt;}
._6{width:2.141867pt;}
._8{width:3.225333pt;}
._2{width:4.127200pt;}
._3{width:5.220000pt;}
._10{width:6.293333pt;}
._d{width:7.840000pt;}
._c{width:9.089067pt;}
._b{width:10.041600pt;}
._f{width:11.093333pt;}
._16{width:12.175467pt;}
._e{width:13.347733pt;}
._a{width:14.462933pt;}
._11{width:15.834667pt;}
._12{width:16.941867pt;}
._15{width:18.408533pt;}
._13{width:23.102933pt;}
._14{width:24.368000pt;}
.fs8{font-size:31.093333pt;}
.fsa{font-size:37.312000pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:63.466667pt;}
.fs7{font-size:90.666667pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:181.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:71.811067pt;}
.y20{bottom:218.504933pt;}
.y13f{bottom:218.765867pt;}
.y1bd{bottom:219.152000pt;}
.y16b{bottom:219.152533pt;}
.y223{bottom:219.374133pt;}
.y4d{bottom:219.488267pt;}
.y24c{bottom:219.490133pt;}
.y2ec{bottom:219.572400pt;}
.yf4{bottom:219.733867pt;}
.y2c2{bottom:219.752133pt;}
.y276{bottom:219.921067pt;}
.y1e6{bottom:220.087867pt;}
.ya2{bottom:220.110800pt;}
.y11d{bottom:220.120533pt;}
.y76{bottom:220.494800pt;}
.yc8{bottom:220.609467pt;}
.y18c{bottom:221.505333pt;}
.y2eb{bottom:232.372400pt;}
.y13e{bottom:236.099200pt;}
.y1bc{bottom:236.485333pt;}
.y16a{bottom:236.485867pt;}
.y75{bottom:236.703467pt;}
.y222{bottom:236.707467pt;}
.yc7{bottom:236.809467pt;}
.y4c{bottom:236.821600pt;}
.y24b{bottom:236.823467pt;}
.yf3{bottom:237.067200pt;}
.y2c1{bottom:237.085467pt;}
.y275{bottom:237.254400pt;}
.y1e5{bottom:237.421200pt;}
.ya1{bottom:237.444133pt;}
.y11c{bottom:237.453867pt;}
.y18b{bottom:238.838667pt;}
.y2ea{bottom:245.172400pt;}
.y1f{bottom:250.500933pt;}
.yc6{bottom:253.009467pt;}
.y13d{bottom:253.432533pt;}
.y1bb{bottom:253.818667pt;}
.y169{bottom:253.819200pt;}
.y221{bottom:254.040800pt;}
.y4b{bottom:254.154933pt;}
.y24a{bottom:254.156800pt;}
.yf2{bottom:254.400533pt;}
.y2c0{bottom:254.418800pt;}
.y274{bottom:254.587733pt;}
.y1e4{bottom:254.754533pt;}
.ya0{bottom:254.777467pt;}
.y11b{bottom:254.787200pt;}
.y18a{bottom:256.172000pt;}
.y1e{bottom:266.498933pt;}
.yc5{bottom:269.209467pt;}
.y2e9{bottom:269.311067pt;}
.y13c{bottom:270.765867pt;}
.y1ba{bottom:271.152000pt;}
.y168{bottom:271.152533pt;}
.y4a{bottom:271.488267pt;}
.y249{bottom:271.490133pt;}
.yf1{bottom:271.733867pt;}
.y2bf{bottom:271.752133pt;}
.y273{bottom:271.921067pt;}
.y1e3{bottom:272.087867pt;}
.y9f{bottom:272.110800pt;}
.y11a{bottom:272.120533pt;}
.y74{bottom:272.930133pt;}
.y2e8{bottom:282.111067pt;}
.y1d{bottom:282.496933pt;}
.y1ca{bottom:283.818667pt;}
.yc4{bottom:285.409467pt;}
.y220{bottom:287.374000pt;}
.y1b9{bottom:288.485333pt;}
.y167{bottom:288.485867pt;}
.y248{bottom:288.823467pt;}
.yf0{bottom:289.067200pt;}
.y2be{bottom:289.085467pt;}
.y272{bottom:289.254400pt;}
.y1e2{bottom:289.421200pt;}
.y9e{bottom:289.444133pt;}
.y119{bottom:289.453867pt;}
.y189{bottom:289.505333pt;}
.y73{bottom:290.263467pt;}
.y1c{bottom:298.494933pt;}
.y1c9{bottom:301.152000pt;}
.yc3{bottom:301.609467pt;}
.y21f{bottom:303.574000pt;}
.y13b{bottom:304.098000pt;}
.y49{bottom:304.821600pt;}
.y1b8{bottom:305.818667pt;}
.y166{bottom:305.819200pt;}
.y247{bottom:306.156800pt;}
.y2e7{bottom:306.249733pt;}
.yef{bottom:306.400533pt;}
.y2bd{bottom:306.418800pt;}
.y271{bottom:306.587733pt;}
.y9d{bottom:306.777467pt;}
.y118{bottom:306.787200pt;}
.y188{bottom:306.838667pt;}
.y72{bottom:307.596800pt;}
.y1b{bottom:314.492933pt;}
.yc2{bottom:317.809467pt;}
.y1c8{bottom:318.485333pt;}
.y2e6{bottom:319.049733pt;}
.y21e{bottom:319.774000pt;}
.y48{bottom:322.154933pt;}
.y1e1{bottom:322.754533pt;}
.y1b7{bottom:323.152000pt;}
.y165{bottom:323.152533pt;}
.y246{bottom:323.490133pt;}
.yee{bottom:323.733867pt;}
.y2bc{bottom:323.752133pt;}
.y270{bottom:323.921067pt;}
.y9c{bottom:324.110800pt;}
.y117{bottom:324.120533pt;}
.y187{bottom:324.172000pt;}
.y71{bottom:324.930133pt;}
.y1a{bottom:330.490933pt;}
.y13a{bottom:331.298000pt;}
.y2e5{bottom:331.849733pt;}
.yc1{bottom:334.009467pt;}
.y1c7{bottom:335.818667pt;}
.y21d{bottom:335.974000pt;}
.y47{bottom:339.488267pt;}
.y1e0{bottom:340.087867pt;}
.y1b6{bottom:340.485333pt;}
.y164{bottom:340.485867pt;}
.yed{bottom:341.067200pt;}
.y2bb{bottom:341.085467pt;}
.y26f{bottom:341.254400pt;}
.y9b{bottom:341.444133pt;}
.y116{bottom:341.453867pt;}
.y186{bottom:341.505333pt;}
.y70{bottom:342.263467pt;}
.y19{bottom:346.488933pt;}
.y21c{bottom:352.174000pt;}
.y1c6{bottom:353.152000pt;}
.y2e4{bottom:355.988400pt;}
.y46{bottom:356.821600pt;}
.y245{bottom:356.823467pt;}
.y1df{bottom:357.421200pt;}
.y1b5{bottom:357.818667pt;}
.y163{bottom:357.819200pt;}
.yec{bottom:358.400533pt;}
.y139{bottom:358.498000pt;}
.y26e{bottom:358.587733pt;}
.y9a{bottom:358.777467pt;}
.y115{bottom:358.787200pt;}
.y185{bottom:358.838667pt;}
.y6f{bottom:359.596800pt;}
.y18{bottom:362.486933pt;}
.y299{bottom:363.870133pt;}
.yc0{bottom:366.209467pt;}
.y21b{bottom:368.374000pt;}
.y2e3{bottom:368.788400pt;}
.y1c5{bottom:370.485333pt;}
.y45{bottom:374.154933pt;}
.y244{bottom:374.156800pt;}
.y1de{bottom:374.754533pt;}
.y1b4{bottom:375.152000pt;}
.y162{bottom:375.152533pt;}
.y30c{bottom:375.311200pt;}
.yeb{bottom:375.733867pt;}
.y99{bottom:376.110800pt;}
.y114{bottom:376.120533pt;}
.y184{bottom:376.172000pt;}
.y6e{bottom:376.930133pt;}
.y17{bottom:378.484933pt;}
.y2ba{bottom:379.205467pt;}
.y2e2{bottom:381.588400pt;}
.ybf{bottom:383.542800pt;}
.y21a{bottom:384.574000pt;}
.y1c4{bottom:387.818667pt;}
.y207{bottom:389.142667pt;}
.y44{bottom:391.488267pt;}
.y243{bottom:391.490133pt;}
.y26d{bottom:391.921067pt;}
.y1dd{bottom:392.087867pt;}
.y1b3{bottom:392.485333pt;}
.y161{bottom:392.485867pt;}
.yea{bottom:393.067200pt;}
.y98{bottom:393.444133pt;}
.y113{bottom:393.453867pt;}
.y183{bottom:393.505333pt;}
.y6d{bottom:394.263467pt;}
.y16{bottom:394.482933pt;}
.y2b9{bottom:396.538800pt;}
.y206{bottom:398.480000pt;}
.ybe{bottom:400.876133pt;}
.y298{bottom:404.763467pt;}
.y1c3{bottom:405.152000pt;}
.y2e1{bottom:405.727067pt;}
.y30b{bottom:405.977867pt;}
.y43{bottom:408.821600pt;}
.y242{bottom:408.823467pt;}
.y26c{bottom:409.254400pt;}
.y1dc{bottom:409.421200pt;}
.y1b2{bottom:409.818667pt;}
.y160{bottom:409.819200pt;}
.ye9{bottom:410.400533pt;}
.y15{bottom:410.480933pt;}
.y97{bottom:410.777467pt;}
.y112{bottom:410.787200pt;}
.y182{bottom:410.838667pt;}
.y6c{bottom:411.596800pt;}
.y2b8{bottom:413.872133pt;}
.y219{bottom:416.774133pt;}
.ybd{bottom:418.209467pt;}
.y2e0{bottom:418.527067pt;}
.y30a{bottom:420.644533pt;}
.y297{bottom:422.096800pt;}
.y1c2{bottom:422.485333pt;}
.y42{bottom:426.154933pt;}
.y241{bottom:426.156800pt;}
.y14{bottom:426.478933pt;}
.y26b{bottom:426.587733pt;}
.y1db{bottom:426.754533pt;}
.y1b1{bottom:427.152000pt;}
.y15f{bottom:427.152533pt;}
.ye8{bottom:427.733867pt;}
.y96{bottom:428.110800pt;}
.y111{bottom:428.120533pt;}
.y1a4{bottom:429.581467pt;}
.y2b7{bottom:431.205467pt;}
.y2df{bottom:431.327067pt;}
.y218{bottom:434.107467pt;}
.y138{bottom:435.032000pt;}
.y309{bottom:435.311200pt;}
.ybc{bottom:435.542800pt;}
.y296{bottom:439.430133pt;}
.y1c1{bottom:439.818667pt;}
.y13{bottom:442.476933pt;}
.y181{bottom:443.290133pt;}
.y41{bottom:443.488267pt;}
.y240{bottom:443.490133pt;}
.y26a{bottom:443.921067pt;}
.y1da{bottom:444.087867pt;}
.y2de{bottom:444.127067pt;}
.y1b0{bottom:444.485333pt;}
.y15e{bottom:444.485867pt;}
.ye7{bottom:445.067200pt;}
.y95{bottom:445.444133pt;}
.y6b{bottom:447.823467pt;}
.y2b6{bottom:448.538800pt;}
.y308{bottom:449.977867pt;}
.y217{bottom:451.440800pt;}
.y137{bottom:452.365333pt;}
.ybb{bottom:452.876133pt;}
.y205{bottom:455.821200pt;}
.y295{bottom:456.763467pt;}
.y1c0{bottom:457.152000pt;}
.y180{bottom:459.490133pt;}
.y40{bottom:460.821600pt;}
.y23f{bottom:460.823467pt;}
.y269{bottom:461.254400pt;}
.y1d9{bottom:461.421200pt;}
.y1af{bottom:461.818667pt;}
.y15d{bottom:461.819200pt;}
.ye6{bottom:462.400533pt;}
.y94{bottom:462.777467pt;}
.y6a{bottom:465.156800pt;}
.y2b5{bottom:465.872133pt;}
.y110{bottom:466.240533pt;}
.y2dd{bottom:468.265733pt;}
.y216{bottom:468.774133pt;}
.y136{bottom:469.698667pt;}
.yba{bottom:470.209467pt;}
.y204{bottom:473.154533pt;}
.y294{bottom:474.096800pt;}
.y12{bottom:474.472933pt;}
.y1bf{bottom:474.485333pt;}
.y17f{bottom:475.690133pt;}
.y3f{bottom:478.154933pt;}
.y23e{bottom:478.156800pt;}
.y268{bottom:478.587733pt;}
.y1d8{bottom:478.754533pt;}
.y1ae{bottom:479.152000pt;}
.y15c{bottom:479.152533pt;}
.ye5{bottom:479.733867pt;}
.y93{bottom:480.110800pt;}
.y307{bottom:480.644533pt;}
.y69{bottom:482.490133pt;}
.y2b4{bottom:483.205467pt;}
.y10f{bottom:483.573867pt;}
.y1a3{bottom:485.152000pt;}
.y215{bottom:486.107467pt;}
.y135{bottom:487.032000pt;}
.yb9{bottom:487.542800pt;}
.y203{bottom:490.487867pt;}
.y293{bottom:491.430133pt;}
.y1be{bottom:491.818667pt;}
.y17e{bottom:491.890133pt;}
.y2dc{bottom:492.404400pt;}
.y3e{bottom:495.488267pt;}
.y23d{bottom:495.490133pt;}
.y267{bottom:495.921067pt;}
.y1d7{bottom:496.087867pt;}
.y1ad{bottom:496.485333pt;}
.y15b{bottom:496.485867pt;}
.ye4{bottom:497.067200pt;}
.y92{bottom:497.444133pt;}
.y68{bottom:499.823467pt;}
.y2b3{bottom:500.538800pt;}
.y10e{bottom:500.907200pt;}
.y1a2{bottom:502.485333pt;}
.y214{bottom:503.440800pt;}
.y134{bottom:504.365333pt;}
.yb8{bottom:504.876133pt;}
.y2db{bottom:505.204400pt;}
.y11{bottom:506.468933pt;}
.y202{bottom:507.821200pt;}
.y17d{bottom:508.090133pt;}
.y292{bottom:508.763467pt;}
.y3d{bottom:512.821600pt;}
.y23c{bottom:512.823467pt;}
.y266{bottom:513.254400pt;}
.y1d6{bottom:513.421200pt;}
.y15a{bottom:513.819200pt;}
.ye3{bottom:514.400533pt;}
.y91{bottom:514.777467pt;}
.y67{bottom:517.156800pt;}
.y2b2{bottom:517.872133pt;}
.y2da{bottom:518.004400pt;}
.y10d{bottom:518.240533pt;}
.y1a1{bottom:519.818667pt;}
.y213{bottom:520.774133pt;}
.y133{bottom:521.698667pt;}
.yb7{bottom:522.209467pt;}
.y10{bottom:522.466933pt;}
.y17c{bottom:524.290133pt;}
.y1ac{bottom:525.152000pt;}
.y201{bottom:525.154533pt;}
.y291{bottom:526.096800pt;}
.y3c{bottom:530.154933pt;}
.y23b{bottom:530.156800pt;}
.y265{bottom:530.587733pt;}
.y1d5{bottom:530.754533pt;}
.y2d9{bottom:530.804400pt;}
.y159{bottom:531.152533pt;}
.ye2{bottom:531.733867pt;}
.y90{bottom:532.110800pt;}
.y66{bottom:534.490133pt;}
.y2b1{bottom:535.205467pt;}
.y10c{bottom:535.573867pt;}
.y1a0{bottom:537.152000pt;}
.y212{bottom:538.107467pt;}
.yf{bottom:538.464933pt;}
.y132{bottom:539.032000pt;}
.yb6{bottom:539.542800pt;}
.y17b{bottom:540.490133pt;}
.y1ab{bottom:542.485333pt;}
.y200{bottom:542.487867pt;}
.y290{bottom:543.430133pt;}
.y2d8{bottom:543.604400pt;}
.y3b{bottom:547.488267pt;}
.y23a{bottom:547.490133pt;}
.y264{bottom:547.921067pt;}
.y1d4{bottom:548.087867pt;}
.y158{bottom:548.485867pt;}
.ye1{bottom:549.067200pt;}
.y8f{bottom:549.444133pt;}
.y306{bottom:549.851067pt;}
.y65{bottom:551.823467pt;}
.y2b0{bottom:552.538800pt;}
.y10b{bottom:552.907200pt;}
.ye{bottom:554.462933pt;}
.y19f{bottom:554.485333pt;}
.y211{bottom:555.440800pt;}
.y131{bottom:556.365333pt;}
.y2d7{bottom:556.404400pt;}
.yb5{bottom:556.876133pt;}
.y1aa{bottom:559.818667pt;}
.y1ff{bottom:559.821200pt;}
.y28f{bottom:560.763467pt;}
.y305{bottom:562.651067pt;}
.y3a{bottom:564.821600pt;}
.y239{bottom:564.823467pt;}
.y263{bottom:565.254400pt;}
.y1d3{bottom:565.421200pt;}
.y157{bottom:565.819200pt;}
.ye0{bottom:566.400533pt;}
.y8e{bottom:566.777467pt;}
.y64{bottom:569.156800pt;}
.y2af{bottom:569.872133pt;}
.y10a{bottom:570.240533pt;}
.yd{bottom:570.460933pt;}
.y19e{bottom:571.818667pt;}
.y210{bottom:572.774133pt;}
.y130{bottom:573.698667pt;}
.yb4{bottom:574.209467pt;}
.y17a{bottom:575.592000pt;}
.y1a9{bottom:577.152000pt;}
.y173{bottom:577.152533pt;}
.y1fe{bottom:577.154533pt;}
.y28e{bottom:578.096800pt;}
.y2d6{bottom:580.543067pt;}
.y39{bottom:582.154933pt;}
.y262{bottom:582.587733pt;}
.y1d2{bottom:582.754533pt;}
.y156{bottom:583.152533pt;}
.ydf{bottom:583.733867pt;}
.y8d{bottom:584.110800pt;}
.yc{bottom:586.458933pt;}
.y63{bottom:586.490133pt;}
.y304{bottom:586.789733pt;}
.y2ae{bottom:587.205467pt;}
.y109{bottom:587.573867pt;}
.y19d{bottom:589.152000pt;}
.y20f{bottom:590.107467pt;}
.y12f{bottom:591.032000pt;}
.yb3{bottom:591.542800pt;}
.y179{bottom:592.925333pt;}
.y2d5{bottom:593.343067pt;}
.y1a8{bottom:594.485333pt;}
.y172{bottom:594.485867pt;}
.y1fd{bottom:594.487867pt;}
.y28d{bottom:595.430133pt;}
.y238{bottom:598.156800pt;}
.y38{bottom:599.488267pt;}
.y303{bottom:599.589733pt;}
.y261{bottom:599.921067pt;}
.y1d1{bottom:600.087867pt;}
.y155{bottom:600.485867pt;}
.yde{bottom:601.067200pt;}
.y8c{bottom:601.444133pt;}
.yb{bottom:602.456933pt;}
.y62{bottom:603.823467pt;}
.y2ad{bottom:604.538800pt;}
.y108{bottom:604.907200pt;}
.y2d4{bottom:606.143067pt;}
.y19c{bottom:606.485333pt;}
.y20e{bottom:607.440800pt;}
.y12e{bottom:608.365333pt;}
.yb2{bottom:608.876133pt;}
.y178{bottom:610.258667pt;}
.y1a7{bottom:611.818667pt;}
.y171{bottom:611.819200pt;}
.y1fc{bottom:611.821200pt;}
.y302{bottom:612.389733pt;}
.y28c{bottom:612.763467pt;}
.y237{bottom:615.490133pt;}
.y37{bottom:616.821600pt;}
.y260{bottom:617.254400pt;}
.y1d0{bottom:617.421200pt;}
.y154{bottom:617.819200pt;}
.ydd{bottom:618.400533pt;}
.ya{bottom:618.454933pt;}
.y8b{bottom:618.777467pt;}
.y2d3{bottom:618.943067pt;}
.y61{bottom:621.156800pt;}
.y2ac{bottom:621.872133pt;}
.y107{bottom:622.240533pt;}
.y19b{bottom:623.818667pt;}
.y20d{bottom:624.774133pt;}
.y301{bottom:625.189733pt;}
.y12d{bottom:625.698667pt;}
.yb1{bottom:626.209467pt;}
.y177{bottom:627.592000pt;}
.y1a6{bottom:629.152000pt;}
.y170{bottom:629.152533pt;}
.y1fb{bottom:629.154533pt;}
.y28b{bottom:630.096800pt;}
.y236{bottom:632.823467pt;}
.y36{bottom:634.154933pt;}
.y9{bottom:634.452933pt;}
.y25f{bottom:634.587733pt;}
.y1cf{bottom:634.754533pt;}
.y153{bottom:635.152533pt;}
.ydc{bottom:635.733867pt;}
.y8a{bottom:636.110800pt;}
.y60{bottom:638.490133pt;}
.y106{bottom:639.573867pt;}
.y19a{bottom:641.152000pt;}
.y20c{bottom:642.107467pt;}
.yb0{bottom:643.542800pt;}
.y176{bottom:644.925333pt;}
.y1a5{bottom:646.485333pt;}
.y16f{bottom:646.485867pt;}
.y1fa{bottom:646.487867pt;}
.y2d2{bottom:646.861200pt;}
.y28a{bottom:647.430133pt;}
.y300{bottom:649.328400pt;}
.y235{bottom:650.156800pt;}
.y8{bottom:650.450933pt;}
.y35{bottom:651.488267pt;}
.y25e{bottom:651.921067pt;}
.y1ce{bottom:652.087867pt;}
.y152{bottom:652.485867pt;}
.ydb{bottom:653.067200pt;}
.y89{bottom:653.444133pt;}
.y5f{bottom:655.823467pt;}
.y199{bottom:658.485333pt;}
.y20b{bottom:659.440800pt;}
.y2ab{bottom:659.992133pt;}
.yaf{bottom:660.876133pt;}
.y2ff{bottom:662.128400pt;}
.y175{bottom:662.258667pt;}
.y12c{bottom:663.818667pt;}
.y16e{bottom:663.819200pt;}
.y1f9{bottom:663.821200pt;}
.y289{bottom:664.763467pt;}
.y7{bottom:666.448933pt;}
.y234{bottom:667.490133pt;}
.y34{bottom:668.821600pt;}
.y25d{bottom:669.254400pt;}
.y151{bottom:669.819200pt;}
.yda{bottom:670.400533pt;}
.y88{bottom:670.777467pt;}
.y5e{bottom:673.156800pt;}
.y2fe{bottom:674.928400pt;}
.y198{bottom:675.818667pt;}
.y20a{bottom:676.774133pt;}
.y2aa{bottom:677.325467pt;}
.y105{bottom:677.693867pt;}
.yae{bottom:678.209467pt;}
.y174{bottom:679.592000pt;}
.y12b{bottom:681.152000pt;}
.y16d{bottom:681.152533pt;}
.y1f8{bottom:681.154533pt;}
.y288{bottom:682.096800pt;}
.y6{bottom:682.446933pt;}
.y233{bottom:684.823467pt;}
.y1cd{bottom:685.420000pt;}
.y33{bottom:686.154933pt;}
.y25c{bottom:686.587733pt;}
.y150{bottom:687.152533pt;}
.yd9{bottom:687.733867pt;}
.y87{bottom:688.110800pt;}
.y5d{bottom:690.490133pt;}
.y197{bottom:693.152000pt;}
.y209{bottom:694.107467pt;}
.y2a9{bottom:694.658800pt;}
.y104{bottom:695.027200pt;}
.yad{bottom:695.542800pt;}
.y5{bottom:698.444933pt;}
.y12a{bottom:698.485333pt;}
.y16c{bottom:698.485867pt;}
.y1f7{bottom:698.487867pt;}
.y2fd{bottom:699.067067pt;}
.y287{bottom:699.430133pt;}
.y232{bottom:702.156800pt;}
.y25b{bottom:703.921067pt;}
.yd8{bottom:705.067200pt;}
.y86{bottom:705.444133pt;}
.y196{bottom:710.485333pt;}
.y2fc{bottom:711.867067pt;}
.y2a8{bottom:711.992133pt;}
.y103{bottom:712.360533pt;}
.y1cc{bottom:712.620000pt;}
.yac{bottom:712.876133pt;}
.y2d1{bottom:713.312133pt;}
.y129{bottom:715.818667pt;}
.y14f{bottom:715.819200pt;}
.y1f6{bottom:715.821200pt;}
.y286{bottom:716.763467pt;}
.y32{bottom:719.488267pt;}
.y25a{bottom:721.254400pt;}
.yd7{bottom:722.400533pt;}
.y85{bottom:722.777467pt;}
.y5c{bottom:726.721067pt;}
.y195{bottom:727.818667pt;}
.y2a7{bottom:729.325467pt;}
.y102{bottom:729.693867pt;}
.yab{bottom:730.209467pt;}
.y2d0{bottom:730.645467pt;}
.y128{bottom:733.152000pt;}
.y14e{bottom:733.152533pt;}
.y1f5{bottom:733.154533pt;}
.y285{bottom:734.096800pt;}
.y208{bottom:734.778400pt;}
.y2fb{bottom:736.005733pt;}
.y31{bottom:736.821600pt;}
.y231{bottom:738.387733pt;}
.y259{bottom:738.587733pt;}
.yd6{bottom:739.733867pt;}
.y84{bottom:740.110800pt;}
.y5b{bottom:742.921067pt;}
.y24{bottom:746.480400pt;}
.y2a6{bottom:746.658800pt;}
.y101{bottom:747.027200pt;}
.yaa{bottom:747.542800pt;}
.y2cf{bottom:747.978800pt;}
.y2fa{bottom:748.805733pt;}
.y127{bottom:750.485333pt;}
.y14d{bottom:750.485867pt;}
.y1f4{bottom:750.487867pt;}
.y284{bottom:751.430133pt;}
.y30{bottom:754.154933pt;}
.y230{bottom:754.587733pt;}
.yd5{bottom:757.067200pt;}
.y83{bottom:757.444133pt;}
.y5a{bottom:759.121067pt;}
.y194{bottom:761.162667pt;}
.y2f9{bottom:761.605733pt;}
.y2a5{bottom:763.992133pt;}
.y100{bottom:764.360533pt;}
.y2ce{bottom:765.312133pt;}
.y126{bottom:767.818667pt;}
.y14c{bottom:767.819200pt;}
.y1f3{bottom:767.821200pt;}
.y283{bottom:768.763467pt;}
.y22f{bottom:770.787733pt;}
.y2f{bottom:771.488267pt;}
.yd4{bottom:774.400533pt;}
.y2f8{bottom:774.405733pt;}
.y82{bottom:774.777467pt;}
.y258{bottom:774.824000pt;}
.y59{bottom:775.321067pt;}
.ya9{bottom:780.874800pt;}
.y2a4{bottom:781.325467pt;}
.yff{bottom:781.693867pt;}
.y2cd{bottom:782.645467pt;}
.y125{bottom:785.152000pt;}
.y14b{bottom:785.152533pt;}
.y1f2{bottom:785.154533pt;}
.y282{bottom:786.096800pt;}
.y22e{bottom:786.987733pt;}
.y2e{bottom:788.821600pt;}
.y193{bottom:790.490667pt;}
.y58{bottom:791.521067pt;}
.yd3{bottom:791.733867pt;}
.y257{bottom:792.152000pt;}
.y2f7{bottom:798.544400pt;}
.y2a3{bottom:798.658800pt;}
.yfe{bottom:799.027200pt;}
.y2cc{bottom:799.978800pt;}
.y1cb{bottom:800.258667pt;}
.y124{bottom:802.485333pt;}
.y14a{bottom:802.485867pt;}
.y1f1{bottom:802.487867pt;}
.y22d{bottom:803.187733pt;}
.y281{bottom:803.430133pt;}
.y2d{bottom:806.154933pt;}
.y57{bottom:807.721067pt;}
.ya8{bottom:808.074800pt;}
.y256{bottom:808.352000pt;}
.yd2{bottom:809.067200pt;}
.y2f6{bottom:811.344400pt;}
.y81{bottom:814.782800pt;}
.y2a2{bottom:815.992133pt;}
.yfd{bottom:816.360533pt;}
.y2cb{bottom:817.312133pt;}
.y22c{bottom:819.387733pt;}
.y123{bottom:819.818667pt;}
.y149{bottom:819.819200pt;}
.y1f0{bottom:819.821200pt;}
.y280{bottom:820.763467pt;}
.y2c{bottom:823.488267pt;}
.y56{bottom:823.921067pt;}
.y255{bottom:824.552000pt;}
.y23{bottom:830.064800pt;}
.y80{bottom:830.982800pt;}
.y2a1{bottom:833.325467pt;}
.yfc{bottom:833.693867pt;}
.y2ca{bottom:834.645467pt;}
.ya7{bottom:835.274800pt;}
.y2f5{bottom:835.483067pt;}
.y122{bottom:837.152000pt;}
.y148{bottom:837.152533pt;}
.y1ef{bottom:837.154533pt;}
.y27f{bottom:838.096800pt;}
.y55{bottom:840.121067pt;}
.y254{bottom:840.752000pt;}
.y2b{bottom:840.821600pt;}
.y7f{bottom:847.182800pt;}
.yd1{bottom:847.189467pt;}
.y2f4{bottom:848.283067pt;}
.y2a0{bottom:850.658800pt;}
.yfb{bottom:851.027200pt;}
.y2c9{bottom:851.978800pt;}
.y22b{bottom:854.480800pt;}
.y121{bottom:854.485333pt;}
.y147{bottom:854.485867pt;}
.y1ee{bottom:854.487867pt;}
.y27e{bottom:855.430133pt;}
.y54{bottom:856.321067pt;}
.y253{bottom:856.952000pt;}
.y2f3{bottom:861.083067pt;}
.y7e{bottom:863.382800pt;}
.yd0{bottom:863.389467pt;}
.y29f{bottom:867.992133pt;}
.y22a{bottom:871.814133pt;}
.y120{bottom:871.818667pt;}
.y146{bottom:871.819200pt;}
.y1ed{bottom:871.821200pt;}
.y53{bottom:872.521067pt;}
.y27d{bottom:872.763467pt;}
.y7d{bottom:879.582800pt;}
.ycf{bottom:879.589467pt;}
.y2a{bottom:880.848000pt;}
.y2f2{bottom:885.221733pt;}
.y29e{bottom:885.325467pt;}
.y52{bottom:888.721067pt;}
.yfa{bottom:889.147200pt;}
.y229{bottom:889.147467pt;}
.y11f{bottom:889.152000pt;}
.y145{bottom:889.152533pt;}
.y1ec{bottom:889.154533pt;}
.y252{bottom:889.156800pt;}
.y192{bottom:889.158667pt;}
.y27c{bottom:890.096800pt;}
.y2c8{bottom:890.098800pt;}
.y22{bottom:894.064800pt;}
.y7c{bottom:895.782800pt;}
.yce{bottom:895.789467pt;}
.y2f1{bottom:898.021733pt;}
.y29d{bottom:902.658800pt;}
.yf9{bottom:906.480533pt;}
.y228{bottom:906.480800pt;}
.y11e{bottom:906.485333pt;}
.y144{bottom:906.485867pt;}
.y1eb{bottom:906.487867pt;}
.y251{bottom:906.490133pt;}
.y191{bottom:906.492000pt;}
.y27b{bottom:907.430133pt;}
.y2c7{bottom:907.432133pt;}
.y29{bottom:910.176000pt;}
.y7b{bottom:911.982800pt;}
.ycd{bottom:911.989467pt;}
.y29c{bottom:919.992133pt;}
.y2f0{bottom:922.160400pt;}
.yf8{bottom:923.813867pt;}
.y227{bottom:923.814133pt;}
.ya6{bottom:923.818667pt;}
.y143{bottom:923.819200pt;}
.y1ea{bottom:923.821200pt;}
.y51{bottom:923.821600pt;}
.y250{bottom:923.823467pt;}
.y190{bottom:923.825333pt;}
.y27a{bottom:924.763467pt;}
.y2c6{bottom:924.765467pt;}
.y7a{bottom:928.182800pt;}
.ycc{bottom:928.189467pt;}
.y2ef{bottom:934.960400pt;}
.y29b{bottom:937.325467pt;}
.y28{bottom:939.504000pt;}
.yf7{bottom:941.147200pt;}
.y226{bottom:941.147467pt;}
.ya5{bottom:941.152000pt;}
.y142{bottom:941.152533pt;}
.y1e9{bottom:941.154533pt;}
.y50{bottom:941.154933pt;}
.y24f{bottom:941.156800pt;}
.y18f{bottom:941.158667pt;}
.y279{bottom:942.096800pt;}
.y2c5{bottom:942.098800pt;}
.y79{bottom:944.382800pt;}
.ycb{bottom:944.389467pt;}
.y21{bottom:948.464800pt;}
.yf6{bottom:958.480533pt;}
.y225{bottom:958.480800pt;}
.ya4{bottom:958.485333pt;}
.y141{bottom:958.485867pt;}
.y1e8{bottom:958.487867pt;}
.y4f{bottom:958.488267pt;}
.y24e{bottom:958.490133pt;}
.y18e{bottom:958.492000pt;}
.y2ee{bottom:959.099067pt;}
.y278{bottom:959.430133pt;}
.y2c4{bottom:959.432133pt;}
.y78{bottom:960.582800pt;}
.yca{bottom:960.589467pt;}
.y27{bottom:968.832000pt;}
.y29a{bottom:969.776800pt;}
.y2ed{bottom:971.899067pt;}
.yf5{bottom:975.813867pt;}
.y224{bottom:975.814133pt;}
.ya3{bottom:975.818667pt;}
.y140{bottom:975.819200pt;}
.y1e7{bottom:975.821200pt;}
.y4e{bottom:975.821600pt;}
.y24d{bottom:975.823467pt;}
.y18d{bottom:975.825333pt;}
.y277{bottom:976.763467pt;}
.y2c3{bottom:976.765467pt;}
.y77{bottom:976.782800pt;}
.yc9{bottom:976.789467pt;}
.y26{bottom:1100.126933pt;}
.y4{bottom:1100.851200pt;}
.y1{bottom:1111.209600pt;}
.y25{bottom:1111.326933pt;}
.y3{bottom:1112.051333pt;}
.h6{height:25.013333pt;}
.h10{height:25.434347pt;}
.h3{height:29.354667pt;}
.h5{height:29.653333pt;}
.h11{height:30.521216pt;}
.h12{height:34.602667pt;}
.h4{height:34.901333pt;}
.ha{height:37.410667pt;}
.he{height:39.264000pt;}
.h7{height:41.445333pt;}
.hd{height:43.253333pt;}
.hc{height:43.626667pt;}
.hf{height:65.189333pt;}
.hb{height:67.402667pt;}
.h9{height:69.024000pt;}
.h8{height:127.196267pt;}
.h2{height:1170.666667pt;}
.h1{height:1171.333333pt;}
.h0{height:1171.653333pt;}
.w1{width:888.000000pt;}
.w0{width:888.189333pt;}
.x0{left:0.000000pt;}
.xb{left:60.818800pt;}
.xc{left:64.252000pt;}
.x3{left:91.244133pt;}
.x11{left:109.606267pt;}
.x5{left:130.090800pt;}
.x6{left:211.010800pt;}
.x4{left:215.433067pt;}
.xd{left:313.705333pt;}
.xe{left:332.598400pt;}
.x13{left:340.157467pt;}
.x12{left:359.050267pt;}
.x7{left:377.740667pt;}
.x8{left:390.987200pt;}
.xa{left:426.691067pt;}
.x2{left:452.202933pt;}
.x10{left:563.149600pt;}
.xf{left:582.045600pt;}
.x14{left:589.610800pt;}
.x15{left:608.503867pt;}
.x9{left:715.828933pt;}
.x1{left:743.010133pt;}
}




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