
    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_7e6b6de266b1aa27054e0d8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;font-style:normal;font-weight: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_662381cc6706a26f5259bd91.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887000;font-style:normal;font-weight: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_d79c861350e1deaa6d36881b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706000;font-style:normal;font-weight: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_3f06b19484ed62ea69240d71.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8bea9f21c9bd2237a549372f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-style:normal;font-weight: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_eea507ca26687d9f8c9a0514.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9b016b410c34f8d12d4e2365.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ba138ef5d46bae7a674efb07.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3ddff0677c3f5ef0a8c9c7d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_818504307995bb1ded37bba2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cbfc28838c46606ecd1cd7d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_54ffcd4eb2677c756ab94461.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_422800f709ba0e20ce29c23c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_393b9fb98139ada4502abbb9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4633c6da290965fc535de1d2.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_fe5e2389b5354e9100523e02.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a5b83d04e0fa91ac30d24b13.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9f9cd2eff96d6f0b7e5756d3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921000;font-style:normal;font-weight: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_5d08228b32f5f859569d50eb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.913000;font-style:normal;font-weight: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_b3b420af580c94f6235ae70d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_454cbf3ad99c097781ef08e7.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_19f73b5d91f15cc7c6667374.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_b33394b4d28e5b1919ffd3a9.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_33748942fb086f40e723530b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_45a9d0fcfbe5085d041ddc43.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a67ed47f21ce874b65ac2a35.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a8be40874971c5ed6286a97c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_b82ae0c9e648e9eef2051acc.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_a8be40874971c5ed6286a97c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_0e7cfaa1495cfe1b6628926d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_a8be40874971c5ed6286a97c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_f88633d82a4c21c3f0691cae.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_a8be40874971c5ed6286a97c.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_549f7a67738c4d1d99d2b17a.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_a8be40874971c5ed6286a97c.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_00ac5424b328de2573462d16.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_a8be40874971c5ed6286a97c.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_ee29d8af95c2c9eb893c16a7.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-2.160173px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.320346px;}
.v2{vertical-align:28.480396px;}
.v3{vertical-align:35.868000px;}
.v6{vertical-align:48.423874px;}
.v7{vertical-align:55.384430px;}
.v4{vertical-align:71.736000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:29.887920px;}
.ls2{letter-spacing:29.892396px;}
.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;}
}
.ws1{word-spacing:-103.292640px;}
.wsa{word-spacing:-86.077200px;}
.ws0{word-spacing:-72.098263px;}
.ws11{word-spacing:-64.557900px;}
.ws1d{word-spacing:-60.598349px;}
.wse{word-spacing:-59.775840px;}
.wsc{word-spacing:-58.460772px;}
.ws1e{word-spacing:-53.798250px;}
.ws3{word-spacing:-48.346707px;}
.ws38{word-spacing:-46.508494px;}
.ws36{word-spacing:-46.505604px;}
.ws65{word-spacing:-45.429638px;}
.ws13{word-spacing:-44.831888px;}
.ws47{word-spacing:-44.350487px;}
.ws37{word-spacing:-43.875515px;}
.ws62{word-spacing:-43.636363px;}
.ws33{word-spacing:-41.843088px;}
.ws6f{word-spacing:-40.946450px;}
.ws6e{word-spacing:-40.707347px;}
.ws6d{word-spacing:-40.408468px;}
.ws6c{word-spacing:-39.990037px;}
.ws18{word-spacing:-39.870485px;}
.ws3a{word-spacing:-39.750934px;}
.ws27{word-spacing:-38.973848px;}
.wsd{word-spacing:-38.495641px;}
.ws1f{word-spacing:-38.376089px;}
.ws34{word-spacing:-37.120797px;}
.wsb{word-spacing:-36.881693px;}
.ws4{word-spacing:-36.260041px;}
.ws5{word-spacing:-36.206242px;}
.ws9{word-spacing:-35.399268px;}
.ws8{word-spacing:-35.237873px;}
.ws20{word-spacing:-35.028642px;}
.ws39{word-spacing:-34.909091px;}
.ws19{word-spacing:-34.550436px;}
.ws6{word-spacing:-33.462530px;}
.ws7{word-spacing:-32.494161px;}
.ws1c{word-spacing:-30.892146px;}
.wsf{word-spacing:-29.887920px;}
.ws22{word-spacing:-23.774940px;}
.ws4a{word-spacing:-22.922567px;}
.ws16{word-spacing:-18.349468px;}
.ws63{word-spacing:-16.681334px;}
.ws14{word-spacing:-15.013201px;}
.ws1b{word-spacing:-9.446101px;}
.ws1a{word-spacing:-7.728628px;}
.ws5a{word-spacing:-6.647124px;}
.ws10{word-spacing:-4.483188px;}
.ws12{word-spacing:0.000000px;}
.ws4b{word-spacing:5.345442px;}
.ws4d{word-spacing:6.959353px;}
.ws51{word-spacing:6.964956px;}
.ws43{word-spacing:23.238876px;}
.ws5e{word-spacing:23.240400px;}
.ws42{word-spacing:23.242956px;}
.ws46{word-spacing:25.250796px;}
.ws24{word-spacing:33.456220px;}
.ws40{word-spacing:35.237442px;}
.ws3b{word-spacing:35.584851px;}
.ws31{word-spacing:40.969728px;}
.ws23{word-spacing:45.301728px;}
.ws67{word-spacing:48.804876px;}
.ws44{word-spacing:53.466876px;}
.ws3d{word-spacing:53.470956px;}
.ws41{word-spacing:58.303513px;}
.ws25{word-spacing:58.513513px;}
.ws69{word-spacing:69.606939px;}
.ws45{word-spacing:69.746796px;}
.ws58{word-spacing:79.728876px;}
.ws56{word-spacing:79.730400px;}
.ws3f{word-spacing:79.732320px;}
.ws3e{word-spacing:79.734240px;}
.ws54{word-spacing:83.358876px;}
.ws28{word-spacing:87.406898px;}
.ws30{word-spacing:88.539060px;}
.ws53{word-spacing:99.638796px;}
.ws17{word-spacing:151.068084px;}
.ws60{word-spacing:151.128089px;}
.ws61{word-spacing:154.404351px;}
.ws6b{word-spacing:158.000968px;}
.ws29{word-spacing:165.178851px;}
.ws4e{word-spacing:185.630979px;}
.ws21{word-spacing:192.078280px;}
.ws50{word-spacing:232.130979px;}
.ws26{word-spacing:253.892310px;}
.ws6a{word-spacing:258.917024px;}
.ws2{word-spacing:261.818223px;}
.ws66{word-spacing:288.266968px;}
.ws4f{word-spacing:342.538479px;}
.ws48{word-spacing:343.283958px;}
.ws64{word-spacing:344.979596px;}
.ws49{word-spacing:351.743958px;}
.ws68{word-spacing:351.988007px;}
.ws3c{word-spacing:400.760193px;}
.ws52{word-spacing:418.930479px;}
.ws5f{word-spacing:437.747017px;}
.ws5b{word-spacing:447.981537px;}
.ws15{word-spacing:451.728135px;}
.ws32{word-spacing:459.588764px;}
.ws5c{word-spacing:477.873537px;}
.ws57{word-spacing:527.363853px;}
.ws59{word-spacing:554.265537px;}
.ws35{word-spacing:554.864386px;}
.ws5d{word-spacing:583.374451px;}
.ws4c{word-spacing:595.510867px;}
.ws2a{word-spacing:623.042193px;}
.ws55{word-spacing:629.046636px;}
.ws2e{word-spacing:810.263696px;}
.ws2c{word-spacing:825.502695px;}
.ws2b{word-spacing:861.965958px;}
.ws2d{word-spacing:886.177093px;}
.ws2f{word-spacing:910.203537px;}
._1c{margin-left:-1294.303536px;}
._91{margin-left:-1257.940627px;}
._41{margin-left:-1152.452189px;}
._93{margin-left:-347.541801px;}
._94{margin-left:-78.036242px;}
._1d{margin-left:-40.172185px;}
._d{margin-left:-31.561644px;}
._b{margin-left:-29.887920px;}
._e{margin-left:-14.525529px;}
._92{margin-left:-11.154892px;}
._c{margin-left:-9.982565px;}
._2{margin-left:-8.056826px;}
._19{margin-left:-6.480518px;}
._3{margin-left:-5.133073px;}
._1e{margin-left:-3.892115px;}
._0{margin-left:-2.685609px;}
._5{margin-left:-1.506352px;}
._4{width:1.560150px;}
._1{width:2.685609px;}
._42{width:3.826617px;}
._1f{width:5.315746px;}
._59{width:6.965353px;}
._12{width:19.905355px;}
._6{width:23.316891px;}
._90{width:24.627646px;}
._1a{width:26.540473px;}
._68{width:28.393273px;}
._7{width:30.288432px;}
._8{width:32.494161px;}
._17{width:37.632952px;}
._1b{width:43.433945px;}
._55{width:45.311353px;}
._13{width:46.453479px;}
._5b{width:53.131764px;}
._9{width:55.292652px;}
._10{width:57.141921px;}
._40{width:59.775840px;}
._11{width:61.090908px;}
._6f{width:65.123838px;}
._72{width:66.739273px;}
._22{width:68.495353px;}
._18{width:71.731020px;}
._76{width:83.017764px;}
._6a{width:85.030716px;}
._16{width:86.077200px;}
._7e{width:95.015838px;}
._69{width:108.095353px;}
._5d{width:113.244636px;}
._6b{width:114.743741px;}
._8f{width:115.763056px;}
._61{width:129.522876px;}
._65{width:137.987353px;}
._53{width:139.504716px;}
._71{width:141.523362px;}
._52{width:143.133193px;}
._a2{width:146.440732px;}
._44{width:159.416796px;}
._5e{width:161.423113px;}
._80{width:169.395193px;}
._4c{width:171.405282px;}
._47{width:173.022636px;}
._46{width:175.405867px;}
._73{width:178.506072px;}
._86{width:186.468703px;}
._48{width:189.300636px;}
._45{width:191.304636px;}
._74{width:197.371133px;}
._66{width:206.702141px;}
._89{width:208.876279px;}
._83{width:211.908618px;}
._67{width:215.162141px;}
._99{width:218.522953px;}
._8c{width:219.526716px;}
._64{width:221.200320px;}
._20{width:222.631259px;}
._84{width:228.621764px;}
._9e{width:230.880636px;}
._9d{width:241.492716px;}
._50{width:247.798805px;}
._4e{width:249.412716px;}
._9c{width:250.781202px;}
._9a{width:260.601185px;}
._88{width:267.702636px;}
._96{width:271.384716px;}
._4b{width:279.298716px;}
._97{width:280.670556px;}
._37{width:282.623410px;}
._98{width:285.644556px;}
._9f{width:294.902080px;}
._49{width:297.590556px;}
._85{width:305.013764px;}
._3f{width:306.618240px;}
._6e{width:318.142286px;}
._8e{width:320.834507px;}
._56{width:337.465758px;}
._95{width:346.620137px;}
._54{width:352.310110px;}
._32{width:356.412240px;}
._23{width:365.449998px;}
._87{width:367.300189px;}
._6d{width:368.838176px;}
._6c{width:382.116063px;}
._8a{width:383.913792px;}
._25{width:385.357273px;}
._70{width:396.267786px;}
._60{width:425.091470px;}
._7c{width:427.157113px;}
._51{width:429.349034px;}
._82{width:435.617113px;}
._78{width:438.254111px;}
._30{width:444.493187px;}
._7d{width:453.900869px;}
._7b{width:459.719645px;}
._5a{width:467.769897px;}
._33{width:472.823117px;}
._58{width:473.953944px;}
._3a{width:478.509474px;}
._75{width:481.032483px;}
._8d{width:482.967076px;}
._24{width:487.065948px;}
._7a{width:496.071005px;}
._7f{width:498.071645px;}
._81{width:504.531005px;}
._4d{width:510.570922px;}
._79{width:512.240565px;}
._43{width:518.397477px;}
._3b{width:523.102251px;}
._35{width:529.372960px;}
._57{width:533.406816px;}
._62{width:538.019988px;}
._5f{width:546.852936px;}
._77{width:550.671337px;}
._2e{width:568.757961px;}
._a0{width:575.894556px;}
._21{width:577.205353px;}
._8b{width:584.440232px;}
._3d{width:595.479061px;}
._3c{width:600.151635px;}
._4f{width:604.668526px;}
._9b{width:605.777202px;}
._3e{width:628.608753px;}
._4a{width:643.990596px;}
._5c{width:655.585189px;}
._63{width:666.877241px;}
._2d{width:691.545523px;}
._27{width:715.159849px;}
._39{width:730.110289px;}
._26{width:747.315897px;}
._a{width:750.136327px;}
._29{width:762.799759px;}
._2f{width:764.889994px;}
._28{width:781.029470px;}
._2a{width:784.857044px;}
._2b{width:816.418688px;}
._38{width:825.694716px;}
._2c{width:838.298565px;}
._31{width:902.088240px;}
._36{width:931.976160px;}
._34{width:961.864080px;}
._a1{width:1394.269961px;}
._14{width:1612.267978px;}
._f{width:1811.741630px;}
._15{width:2505.265230px;}
.fc3{color:transparent;}
.fc2{color:rgb(77,77,77);}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.800820px;}
.fsa{font-size:33.978780px;}
.fs8{font-size:43.245720px;}
.fsb{font-size:47.820660px;}
.fs7{font-size:48.003840px;}
.fs2{font-size:53.798280px;}
.fs5{font-size:54.004320px;}
.fs4{font-size:59.775840px;}
.fsc{font-size:60.004800px;}
.fs6{font-size:66.005280px;}
.fs1{font-size:71.731020px;}
.fsd{font-size:84.006720px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292640px;}
.y18b{bottom:-68.300464px;}
.y18a{bottom:-21.421714px;}
.y0{bottom:0.000000px;}
.y4c{bottom:4.146956px;}
.y19a{bottom:8.055644px;}
.y1a5{bottom:8.070646px;}
.y29{bottom:11.850948px;}
.y6d{bottom:20.657554px;}
.y47{bottom:20.750223px;}
.y74{bottom:20.896950px;}
.y6c{bottom:21.113178px;}
.y58{bottom:22.093929px;}
.y7e{bottom:22.534109px;}
.y63{bottom:23.568917px;}
.y189{bottom:23.941915px;}
.y7c{bottom:26.982240px;}
.y225{bottom:27.812225px;}
.y41{bottom:28.611677px;}
.y7b{bottom:29.476592px;}
.y59{bottom:30.364673px;}
.y20{bottom:30.782462px;}
.y71{bottom:31.275922px;}
.y42{bottom:33.152478px;}
.y62{bottom:34.102339px;}
.y222{bottom:35.012801px;}
.y55{bottom:35.067645px;}
.y48{bottom:36.040674px;}
.y75{bottom:37.005980px;}
.y7f{bottom:37.971287px;}
.y57{bottom:38.928870px;}
.y72{bottom:39.871009px;}
.y1b1{bottom:40.068205px;}
.y1d9{bottom:40.113209px;}
.y19{bottom:40.207500px;}
.y1a3{bottom:40.293223px;}
.y1b5{bottom:40.593247px;}
.y73{bottom:40.797703px;}
.y1db{bottom:40.998280px;}
.y1dd{bottom:41.523322px;}
.y46{bottom:41.708952px;}
.y1bc{bottom:42.903432px;}
.y60{bottom:43.461949px;}
.y1ee{bottom:43.758500px;}
.y7d{bottom:44.295973px;}
.y1b6{bottom:44.718577px;}
.y1d4{bottom:45.768661px;}
.y195{bottom:45.783662px;}
.y43{bottom:45.863631px;}
.y191{bottom:46.923754px;}
.y54{bottom:47.910080px;}
.y1b2{bottom:48.168853px;}
.y61{bottom:48.504708px;}
.y80{bottom:49.053002px;}
.y1cc{bottom:49.503960px;}
.y49{bottom:49.539517px;}
.y64{bottom:49.979696px;}
.y25{bottom:50.209016px;}
.y5a{bottom:50.697884px;}
.y44{bottom:50.968170px;}
.y56{bottom:51.176676px;}
.y177{bottom:51.274102px;}
.y45{bottom:51.331125px;}
.y6e{bottom:51.416072px;}
.y4a{bottom:51.446962px;}
.y1cd{bottom:52.399192px;}
.yda{bottom:52.609208px;}
.y1b0{bottom:53.959316px;}
.y19d{bottom:55.579446px;}
.y1dc{bottom:57.244579px;}
.y1bd{bottom:58.969717px;}
.y1df{bottom:60.739859px;}
.y1e7{bottom:60.754860px;}
.y94{bottom:61.354908px;}
.y1e9{bottom:62.555004px;}
.y19e{bottom:64.385150px;}
.y5d{bottom:65.100254px;}
.y1d3{bottom:66.245299px;}
.y194{bottom:68.120449px;}
.y226{bottom:68.750500px;}
.y39{bottom:68.930514px;}
.y188{bottom:69.305544px;}
.y190{bottom:69.995599px;}
.y223{bottom:70.280622px;}
.y79{bottom:71.772450px;}
.y1e2{bottom:71.870749px;}
.y196{bottom:71.885750px;}
.y224{bottom:72.155772px;}
.y1b4{bottom:73.745899px;}
.y1bb{bottom:75.606048px;}
.y1e0{bottom:77.436194px;}
.y52{bottom:78.444647px;}
.y1e1{bottom:79.251340px;}
.y1a2{bottom:81.021481px;}
.y1e8{bottom:82.746619px;}
.y1d1{bottom:84.411752px;}
.y1b3{bottom:84.426754px;}
.y6a{bottom:85.116844px;}
.y1ed{bottom:86.031882px;}
.y1de{bottom:86.046883px;}
.y192{bottom:87.592007px;}
.y19f{bottom:89.077126px;}
.y169{bottom:89.800500px;}
.y51{bottom:91.789041px;}
.y1ea{bottom:91.822345px;}
.y1b9{bottom:93.067445px;}
.y1d2{bottom:94.222537px;}
.yc8{bottom:94.359000px;}
.y227{bottom:94.867589px;}
.y1ce{bottom:95.272621px;}
.y197{bottom:96.232698px;}
.y1d5{bottom:97.087766px;}
.y69{bottom:98.461238px;}
.y1be{bottom:98.467877px;}
.y157{bottom:98.766000px;}
.y1a0{bottom:98.992919px;}
.y1ba{bottom:99.397951px;}
.y1da{bottom:99.412952px;}
.y1a1{bottom:99.697975px;}
.y193{bottom:99.877990px;}
.y198{bottom:99.937994px;}
.y1d8{bottom:101.163000px;}
.y1e{bottom:104.933394px;}
.y50{bottom:105.133434px;}
.y221{bottom:105.578446px;}
.y114{bottom:105.828000px;}
.y26{bottom:106.658532px;}
.y178{bottom:107.363588px;}
.y13e{bottom:107.733000px;}
.ydb{bottom:109.313744px;}
.y68{bottom:111.805631px;}
.y1c8{bottom:113.499079px;}
.y187{bottom:114.669173px;}
.y38{bottom:115.809264px;}
.y156{bottom:116.700000px;}
.y4f{bottom:118.477828px;}
.yd4{bottom:119.634570px;}
.yc7{bottom:121.257000px;}
.y21a{bottom:123.741000px;}
.y113{bottom:123.760500px;}
.y67{bottom:125.150025px;}
.y13d{bottom:125.665500px;}
.y1e5{bottom:126.460116px;}
.y1ca{bottom:128.659500px;}
.y4e{bottom:131.822221px;}
.y1c{bottom:134.620769px;}
.y168{bottom:134.632500px;}
.y8f{bottom:137.065964px;}
.y78{bottom:138.494418px;}
.y1c7{bottom:139.421153px;}
.y66{bottom:139.482892px;}
.y155{bottom:143.598000px;}
.y5c{bottom:145.166615px;}
.y4d{bottom:146.155089px;}
.yc6{bottom:148.156500px;}
.yd2{bottom:149.321945px;}
.y24e{bottom:149.592000px;}
.y112{bottom:150.660000px;}
.y1ac{bottom:152.382190px;}
.y13c{bottom:152.565000px;}
.y77{bottom:152.827286px;}
.y95{bottom:153.057244px;}
.y5b{bottom:159.499482px;}
.y186{bottom:160.032802px;}
.y37{bottom:161.172893px;}
.y154{bottom:161.532000px;}
.y27{bottom:163.123049px;}
.y1d0{bottom:163.222265px;}
.y179{bottom:163.468076px;}
.y1c6{bottom:165.343226px;}
.ydc{bottom:166.018280px;}
.y9f{bottom:166.542000px;}
.y24d{bottom:167.526000px;}
.y91{bottom:171.613728px;}
.yc5{bottom:175.056000px;}
.y248{bottom:176.491500px;}
.y111{bottom:177.559500px;}
.y1ab{bottom:178.304263px;}
.y13b{bottom:179.464500px;}
.y9e{bottom:184.476000px;}
.y24c{bottom:185.458500px;}
.y153{bottom:188.430000px;}
.y81{bottom:190.128000px;}
.y1c5{bottom:191.265300px;}
.y247{bottom:194.424000px;}
.yde{bottom:201.661132px;}
.yc4{bottom:201.955500px;}
.y24b{bottom:203.391000px;}
.y1aa{bottom:204.226337px;}
.y110{bottom:204.457500px;}
.y185{bottom:205.396430px;}
.y13a{bottom:206.364000px;}
.y36{bottom:206.536522px;}
.y99{bottom:207.811624px;}
.y219{bottom:208.152000px;}
.y2a{bottom:208.801703px;}
.yc3{bottom:210.921000px;}
.y246{bottom:212.358000px;}
.y1a6{bottom:212.446994px;}
.y152{bottom:215.329500px;}
.y1c4{bottom:217.187374px;}
.y17a{bottom:219.557563px;}
.y28{bottom:219.587566px;}
.y9c{bottom:219.932593px;}
.y17c{bottom:220.206000px;}
.y24a{bottom:221.323500px;}
.ydd{bottom:222.722816px;}
.y7a{bottom:223.378500px;}
.y151{bottom:224.296500px;}
.y9d{bottom:225.721500px;}
.y3f{bottom:229.117369px;}
.y1a9{bottom:230.148410px;}
.y10f{bottom:231.357000px;}
.y139{bottom:233.262000px;}
.y21c{bottom:233.508679px;}
.y218{bottom:235.051500px;}
.y17b{bottom:238.140000px;}
.y249{bottom:239.256000px;}
.y6f{bottom:239.293500px;}
.y21{bottom:240.079205px;}
.y3e{bottom:240.793713px;}
.y173{bottom:240.949274px;}
.y1c3{bottom:243.109447px;}
.y96{bottom:244.744578px;}
.y9b{bottom:245.854667px;}
.y184{bottom:250.760059px;}
.y35{bottom:251.900150px;}
.y217{bottom:252.984000px;}
.y93{bottom:253.218000px;}
.y1a8{bottom:256.070484px;}
.y10e{bottom:258.256500px;}
.yc2{bottom:259.041000px;}
.y138{bottom:260.161500px;}
.y172{bottom:265.636500px;}
.y245{bottom:266.155500px;}
.y1c2{bottom:269.031521px;}
.y167{bottom:269.128500px;}
.y1d7{bottom:270.951674px;}
.yd6{bottom:271.686733px;}
.y9a{bottom:273.696894px;}
.ye9{bottom:274.581965px;}
.y137{bottom:278.094000px;}
.y216{bottom:279.883500px;}
.y1e4{bottom:281.992558px;}
.y1a7{bottom:283.912711px;}
.y22{bottom:284.002718px;}
.y244{bottom:284.088000px;}
.y229{bottom:284.527760px;}
.y10d{bottom:285.156000px;}
.y21d{bottom:288.338065px;}
.y30{bottom:289.688173px;}
.ye1{bottom:290.918272px;}
.y240{bottom:293.055000px;}
.y17d{bottom:294.233537px;}
.y1c1{bottom:294.953594px;}
.y174{bottom:295.013599px;}
.ye8{bottom:295.748658px;}
.y25b{bottom:296.026500px;}
.y183{bottom:296.123688px;}
.ye0{bottom:296.667000px;}
.y34{bottom:297.263779px;}
.y8e{bottom:301.086829px;}
.y243{bottom:302.020500px;}
.y22d{bottom:303.519280px;}
.y136{bottom:304.993500px;}
.y228{bottom:306.279500px;}
.y215{bottom:306.781500px;}
.y1e3{bottom:309.834785px;}
.y23f{bottom:310.987500px;}
.y10c{bottom:312.054000px;}
.y1d6{bottom:312.904238px;}
.y171{bottom:313.505329px;}
.y70{bottom:313.946424px;}
.y135{bottom:313.960500px;}
.ydf{bottom:314.599500px;}
.ye7{bottom:316.915351px;}
.y242{bottom:319.954500px;}
.y90{bottom:320.440633px;}
.yc1{bottom:321.805500px;}
.y1c0{bottom:322.795822px;}
.y25a{bottom:322.926000px;}
.y214{bottom:324.715500px;}
.yd7{bottom:324.760979px;}
.y23{bottom:327.926232px;}
.y150{bottom:331.893000px;}
.y22a{bottom:335.561843px;}
.y97{bottom:336.431912px;}
.y241{bottom:337.887000px;}
.ye6{bottom:338.082044px;}
.y10b{bottom:338.953500px;}
.y25d{bottom:340.858500px;}
.y182{bottom:341.487317px;}
.yd5{bottom:342.097500px;}
.y33{bottom:342.627408px;}
.y21e{bottom:343.167451px;}
.yc0{bottom:348.705000px;}
.y175{bottom:349.062923px;}
.y134{bottom:349.825500px;}
.y213{bottom:351.613500px;}
.y18{bottom:352.789500px;}
.y92{bottom:354.988397px;}
.y25c{bottom:358.791000px;}
.ye5{bottom:359.248738px;}
.y23e{bottom:364.785000px;}
.y10a{bottom:365.853000px;}
.y256{bottom:367.758000px;}
.y24{bottom:371.834744px;}
.ybf{bottom:375.603000px;}
.y133{bottom:376.725000px;}
.y3c{bottom:377.341500px;}
.yd8{bottom:377.835224px;}
.y212{bottom:378.513000px;}
.ye4{bottom:380.430432px;}
.y23d{bottom:382.719000px;}
.y1cb{bottom:384.144937px;}
.y132{bottom:385.690500px;}
.y22b{bottom:386.580924px;}
.y181{bottom:386.850946px;}
.yd3{bottom:389.966329px;}
.y76{bottom:391.008753px;}
.y239{bottom:391.684500px;}
.y109{bottom:392.752500px;}
.ybe{bottom:393.537000px;}
.y14f{bottom:394.657500px;}
.y211{bottom:396.445500px;}
.y21f{bottom:397.996837px;}
.y23c{bottom:400.651500px;}
.ye3{bottom:401.597125px;}
.y176{bottom:403.127248px;}
.y166{bottom:403.623000px;}
.y3b{bottom:404.838000px;}
.y238{bottom:409.617000px;}
.y108{bottom:410.685000px;}
.y17{bottom:411.198000px;}
.y257{bottom:412.590000px;}
.y23b{bottom:418.584000px;}
.ybd{bottom:420.435000px;}
.y131{bottom:421.557000px;}
.y210{bottom:423.345000px;}
.y32{bottom:424.818983px;}
.y98{bottom:428.119247px;}
.y165{bottom:430.522500px;}
.yd9{bottom:430.894469px;}
.y180{bottom:432.214574px;}
.y19b{bottom:433.369667px;}
.y23a{bottom:436.516500px;}
.y107{bottom:437.583000px;}
.y22c{bottom:437.600005px;}
.y1ec{bottom:439.400765px;}
.y255{bottom:439.489500px;}
.y18e{bottom:445.070603px;}
.y106{bottom:446.550000px;}
.ybc{bottom:447.334500px;}
.y130{bottom:448.455000px;}
.y20f{bottom:450.244500px;}
.y2b{bottom:450.711054px;}
.y220{bottom:452.811222px;}
.y16{bottom:453.042000px;}
.y164{bottom:457.422000px;}
.y31{bottom:459.591764px;}
.ye2{bottom:460.131808px;}
.y17e{bottom:460.671851px;}
.y235{bottom:463.416000px;}
.y12f{bottom:466.387500px;}
.y18d{bottom:467.752417px;}
.y20e{bottom:468.177000px;}
.y237{bottom:472.381500px;}
.ybb{bottom:474.234000px;}
.y14e{bottom:475.354500px;}
.y234{bottom:481.348500px;}
.y105{bottom:482.415000px;}
.y12e{bottom:484.321500px;}
.y236{bottom:490.315500px;}
.y15{bottom:494.884500px;}
.y20d{bottom:495.076500px;}
.y233{bottom:499.281000px;}
.yba{bottom:501.133500px;}
.y14d{bottom:502.254000px;}
.y170{bottom:503.195503px;}
.y104{bottom:509.314500px;}
.y6b{bottom:510.199500px;}
.y12d{bottom:511.219500px;}
.y17f{bottom:514.406149px;}
.y103{bottom:518.281500px;}
.y254{bottom:520.186500px;}
.y14{bottom:521.784000px;}
.y20c{bottom:521.974500px;}
.y5e{bottom:526.114500px;}
.y232{bottom:526.180500px;}
.yb9{bottom:528.031500px;}
.y14c{bottom:529.153500px;}
.y1cf{bottom:533.841912px;}
.y231{bottom:535.147500px;}
.y12c{bottom:538.119000px;}
.y20b{bottom:539.908500px;}
.y259{bottom:547.086000px;}
.y13{bottom:548.683500px;}
.y102{bottom:554.146500px;}
.yb8{bottom:554.931000px;}
.y14b{bottom:556.051500px;}
.y12b{bottom:565.018500px;}
.y12{bottom:566.616000px;}
.y20a{bottom:566.806500px;}
.y230{bottom:571.012500px;}
.y3a{bottom:573.814500px;}
.y163{bottom:573.984000px;}
.y101{bottom:581.046000px;}
.yb7{bottom:581.830500px;}
.y14a{bottom:582.951000px;}
.y1ef{bottom:589.082738px;}
.y12a{bottom:591.918000px;}
.y209{bottom:593.706000px;}
.y1ad{bottom:594.496500px;}
.y5f{bottom:600.767424px;}
.y162{bottom:600.883500px;}
.y2f{bottom:601.311000px;}
.y100{bottom:607.945500px;}
.y11{bottom:608.458500px;}
.yb6{bottom:608.730000px;}
.yd1{bottom:609.058855px;}
.y129{bottom:609.850500px;}
.y22f{bottom:610.165500px;}
.y208{bottom:611.638500px;}
.y2c{bottom:618.120000px;}
.y161{bottom:618.816000px;}
.y18c{bottom:621.993000px;}
.y149{bottom:627.783000px;}
.yff{bottom:634.843500px;}
.y10{bottom:635.358000px;}
.yb5{bottom:635.628000px;}
.y128{bottom:636.750000px;}
.y207{bottom:638.538000px;}
.y1f{bottom:645.616500px;}
.y160{bottom:645.715500px;}
.y1c9{bottom:653.518500px;}
.y127{bottom:654.682500px;}
.y19c{bottom:656.555765px;}
.y1e6{bottom:660.323437px;}
.yfe{bottom:661.743000px;}
.yf{bottom:662.257500px;}
.yb4{bottom:662.527500px;}
.y253{bottom:663.648000px;}
.y22e{bottom:664.263000px;}
.y206{bottom:665.437500px;}
.y15f{bottom:672.615000px;}
.y65{bottom:677.829753px;}
.y1ae{bottom:681.015000px;}
.y126{bottom:681.580500px;}
.y205{bottom:683.370000px;}
.yfd{bottom:688.642500px;}
.ye{bottom:689.155500px;}
.yb3{bottom:689.427000px;}
.y258{bottom:690.547500px;}
.y21b{bottom:691.759500px;}
.y1d{bottom:693.485329px;}
.y15e{bottom:699.514500px;}
.yfc{bottom:706.575000px;}
.y125{bottom:708.480000px;}
.y204{bottom:710.269500px;}
.y1b8{bottom:715.577765px;}
.yb2{bottom:716.326500px;}
.y148{bottom:717.447000px;}
.y15d{bottom:726.412500px;}
.yd{bottom:730.999500px;}
.yfb{bottom:733.474500px;}
.y124{bottom:735.379500px;}
.y203{bottom:737.169000px;}
.yb1{bottom:743.224500px;}
.y15c{bottom:744.346500px;}
.yfa{bottom:751.407000px;}
.y123{bottom:753.312000px;}
.y202{bottom:755.101500px;}
.y147{bottom:762.279000px;}
.yb0{bottom:770.124000px;}
.y15b{bottom:771.244500px;}
.yf9{bottom:778.306500px;}
.y122{bottom:780.211500px;}
.y201{bottom:781.999500px;}
.y16f{bottom:782.269500px;}
.y8d{bottom:783.189000px;}
.y15a{bottom:789.177000px;}
.yc{bottom:789.408000px;}
.y53{bottom:797.019000px;}
.yaf{bottom:797.023500px;}
.y146{bottom:798.144000px;}
.y200{bottom:799.933500px;}
.yf8{bottom:805.204500px;}
.yb{bottom:805.846500px;}
.y1a4{bottom:806.237738px;}
.y121{bottom:807.111000px;}
.y1eb{bottom:810.020412px;}
.y8c{bottom:810.088500px;}
.y3d{bottom:812.934000px;}
.y159{bottom:816.076500px;}
.y16e{bottom:818.830500px;}
.ya{bottom:822.285000px;}
.yae{bottom:823.923000px;}
.y1ff{bottom:826.831500px;}
.yf7{bottom:832.104000px;}
.y120{bottom:834.009000px;}
.y8b{bottom:836.986500px;}
.y9{bottom:838.722000px;}
.y145{bottom:842.976000px;}
.y1fe{bottom:844.765500px;}
.yd0{bottom:849.144000px;}
.yad{bottom:850.821000px;}
.y8a{bottom:854.920500px;}
.y8{bottom:855.160500px;}
.yf6{bottom:859.003500px;}
.y11f{bottom:860.908500px;}
.y1bf{bottom:865.259738px;}
.y144{bottom:869.875500px;}
.y7{bottom:871.599000px;}
.y1fd{bottom:871.663500px;}
.yf5{bottom:876.936000px;}
.y18f{bottom:877.478437px;}
.yac{bottom:877.720500px;}
.y11e{bottom:878.841000px;}
.y1b{bottom:883.175503px;}
.ycf{bottom:885.705000px;}
.y40{bottom:887.586924px;}
.y143{bottom:887.808000px;}
.y6{bottom:888.037500px;}
.y1fc{bottom:889.596000px;}
.y89{bottom:894.073500px;}
.y158{bottom:896.773500px;}
.yf4{bottom:903.835500px;}
.yab{bottom:904.620000px;}
.y11d{bottom:905.740500px;}
.y142{bottom:914.707500px;}
.y5{bottom:915.684000px;}
.y1fb{bottom:916.495500px;}
.yf3{bottom:921.768000px;}
.yaa{bottom:922.552500px;}
.y11c{bottom:923.673000px;}
.y141{bottom:932.640000px;}
.y1fa{bottom:934.428000px;}
.y1af{bottom:936.500437px;}
.y88{bottom:940.603500px;}
.yce{bottom:941.605500px;}
.yf2{bottom:948.667500px;}
.ya9{bottom:949.452000px;}
.y11b{bottom:950.572500px;}
.y1f9{bottom:952.362000px;}
.yef{bottom:957.633000px;}
.y11a{bottom:959.539500px;}
.y4b{bottom:964.649253px;}
.yf1{bottom:966.600000px;}
.y16d{bottom:967.384500px;}
.ycd{bottom:968.505000px;}
.y4{bottom:970.977000px;}
.yee{bottom:975.567000px;}
.ya8{bottom:976.351500px;}
.y24f{bottom:977.472000px;}
.y1f8{bottom:979.260000px;}
.yf0{bottom:984.532500px;}
.y140{bottom:986.437500px;}
.y87{bottom:991.425000px;}
.y16c{bottom:994.284000px;}
.ycc{bottom:995.404500px;}
.ya7{bottom:1003.249500px;}
.y252{bottom:1004.370000px;}
.y1f7{bottom:1006.159500px;}
.y16b{bottom:1012.216500px;}
.y13f{bottom:1013.337000px;}
.y3{bottom:1014.906000px;}
.y1f4{bottom:1015.126500px;}
.y86{bottom:1021.312500px;}
.ycb{bottom:1022.304000px;}
.yed{bottom:1023.685500px;}
.y1f3{bottom:1024.092000px;}
.y199{bottom:1027.175412px;}
.ya6{bottom:1030.149000px;}
.y1f5{bottom:1033.059000px;}
.y16a{bottom:1039.116000px;}
.y119{bottom:1040.236500px;}
.yec{bottom:1041.618000px;}
.y1f6{bottom:1042.024500px;}
.yca{bottom:1049.202000px;}
.y85{bottom:1051.200000px;}
.ya5{bottom:1057.048500px;}
.y251{bottom:1058.169000px;}
.y118{bottom:1066.014000px;}
.y2{bottom:1067.209500px;}
.ya4{bottom:1074.981000px;}
.yc9{bottom:1076.101500px;}
.y1f2{bottom:1081.177500px;}
.yeb{bottom:1081.459500px;}
.y117{bottom:1083.948000px;}
.y1b7{bottom:1086.197412px;}
.y116{bottom:1092.913500px;}
.y84{bottom:1093.044000px;}
.y250{bottom:1094.034000px;}
.yea{bottom:1099.392000px;}
.y1{bottom:1100.086500px;}
.ya2{bottom:1101.880500px;}
.y2e{bottom:1108.357500px;}
.ya1{bottom:1110.846000px;}
.ya3{bottom:1119.813000px;}
.y1f1{bottom:1121.019000px;}
.y2d{bottom:1126.291500px;}
.y83{bottom:1134.756000px;}
.y115{bottom:1141.033500px;}
.ya0{bottom:1158.966000px;}
.y82{bottom:1161.655500px;}
.y1f0{bottom:1162.732500px;}
.y1a{bottom:1162.851000px;}
.h12{height:13.290336px;}
.h22{height:25.817065px;}
.h11{height:28.995386px;}
.h13{height:35.438806px;}
.h14{height:35.865495px;}
.h4{height:37.658796px;}
.h5{height:40.348710px;}
.h16{height:42.799501px;}
.h7{height:44.831880px;}
.hf{height:45.103935px;}
.h3{height:48.992287px;}
.hd{height:50.066505px;}
.h8{height:53.798265px;}
.ha{height:56.324818px;}
.h15{height:57.475782px;}
.h1e{height:60.422958px;}
.h1d{height:62.583131px;}
.h6{height:64.557900px;}
.hc{height:68.841444px;}
.h2{height:73.027896px;}
.h10{height:77.062329px;}
.h1b{height:80.693880px;}
.h19{height:80.699880px;}
.h1f{height:87.616384px;}
.h21{height:104.748692px;}
.h23{height:111.709249px;}
.h1a{height:116.561880px;}
.h17{height:116.567880px;}
.h20{height:149.696975px;}
.h9{height:181.469516px;}
.h1c{height:210.871868px;}
.he{height:250.207380px;}
.h18{height:403.442273px;}
.hb{height:486.038880px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:25.817065px;}
.w5{width:77.062329px;}
.w7{width:149.696975px;}
.w4{width:361.410660px;}
.w6{width:459.171731px;}
.w3{width:702.056160px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.055644px;}
.x1d{left:16.433374px;}
.x2e{left:18.070533px;}
.x12{left:20.071606px;}
.x2f{left:22.518664px;}
.x20{left:24.155824px;}
.x31{left:26.078714px;}
.x10{left:27.812225px;}
.x1e{left:29.677375px;}
.x14{left:30.767461px;}
.x6b{left:31.922554px;}
.x21{left:33.507711px;}
.xf{left:35.312825px;}
.x28{left:36.395907px;}
.x6c{left:38.268061px;}
.x2a{left:40.071793px;}
.x26{left:41.400054px;}
.x3d{left:42.828426px;}
.x1c{left:45.083663px;}
.x29{left:46.720822px;}
.x63{left:47.808824px;}
.x73{left:49.053924px;}
.x4e{left:50.704056px;}
.x77{left:52.099168px;}
.x7f{left:55.729458px;}
.x6d{left:57.649612px;}
.x72{left:59.494759px;}
.x69{left:60.649852px;}
.x66{left:63.215057px;}
.x68{left:65.090207px;}
.x71{left:68.855508px;}
.x75{left:70.700656px;}
.xe{left:72.845827px;}
.x76{left:77.841227px;}
.x7a{left:78.936314px;}
.x74{left:80.421433px;}
.x79{left:83.166653px;}
.x8{left:85.039500px;}
.x3e{left:86.316905px;}
.x6a{left:87.577006px;}
.x6e{left:89.182134px;}
.x30{left:90.795000px;}
.x7e{left:92.182374px;}
.x1{left:95.506500px;}
.x55{left:97.612500px;}
.x3c{left:101.843147px;}
.x1b{left:103.164090px;}
.x9{left:107.455500px;}
.x44{left:108.801000px;}
.x50{left:110.318825px;}
.x4c{left:112.350000px;}
.x43{left:116.763000px;}
.x38{left:118.674000px;}
.x7{left:122.400000px;}
.x6f{left:127.045163px;}
.x65{left:130.639316px;}
.x8f{left:135.160812px;}
.x53{left:136.750500px;}
.x15{left:141.221297px;}
.x6{left:142.573500px;}
.x90{left:148.241858px;}
.x4d{left:150.477037px;}
.x3a{left:154.765078px;}
.xd{left:157.797623px;}
.x91{left:161.337906px;}
.x62{left:165.613248px;}
.x61{left:168.943514px;}
.x92{left:174.433954px;}
.x56{left:177.070500px;}
.x1a{left:179.199452px;}
.x1f{left:184.450599px;}
.x42{left:187.336500px;}
.xae{left:188.337000px;}
.x34{left:191.115193px;}
.x84{left:195.106500px;}
.x93{left:200.626049px;}
.x35{left:208.691489px;}
.x94{left:213.707095px;}
.x7b{left:218.547000px;}
.x13{left:219.632569px;}
.x2b{left:222.669123px;}
.x49{left:223.918500px;}
.x45{left:224.979000px;}
.x22{left:226.198283px;}
.x85{left:227.422500px;}
.x83{left:229.366500px;}
.xaf{left:230.457000px;}
.x7d{left:234.066000px;}
.x32{left:237.063770px;}
.x2c{left:240.245420px;}
.x23{left:243.774579px;}
.x39{left:245.655000px;}
.x64{left:248.046000px;}
.x19{left:251.781000px;}
.x95{left:252.995238px;}
.x33{left:254.640066px;}
.x57{left:261.928500px;}
.x96{left:266.091286px;}
.x3f{left:270.876668px;}
.x97{left:279.187333px;}
.x18{left:284.808000px;}
.x86{left:286.935000px;}
.x67{left:288.541948px;}
.x98{left:292.268380px;}
.x87{left:301.804500px;}
.x99{left:305.364427px;}
.x3b{left:317.440393px;}
.x9a{left:318.460475px;}
.x60{left:321.948000px;}
.x4f{left:330.266419px;}
.x9b{left:331.556522px;}
.x11{left:341.337305px;}
.x9c{left:344.652570px;}
.x4a{left:347.508000px;}
.x37{left:356.352000px;}
.x81{left:371.249698px;}
.x3{left:373.542000px;}
.x9e{left:378.840305px;}
.x88{left:385.551000px;}
.x9d{left:393.856506px;}
.x82{left:405.392429px;}
.x4{left:407.425500px;}
.x5{left:416.020500px;}
.x2{left:419.484000px;}
.x9f{left:426.514118px;}
.x78{left:432.544601px;}
.x7c{left:433.714694px;}
.x54{left:438.984000px;}
.xa{left:442.720500px;}
.x47{left:448.695000px;}
.x24{left:451.426500px;}
.x48{left:453.670500px;}
.x2d{left:459.829500px;}
.x36{left:467.080500px;}
.x25{left:469.551090px;}
.x70{left:473.542880px;}
.xa0{left:480.308422px;}
.x89{left:482.289000px;}
.x58{left:486.172500px;}
.x80{left:494.649569px;}
.xa1{left:507.205573px;}
.x8a{left:510.324000px;}
.x51{left:518.666490px;}
.x16{left:521.336704px;}
.xa2{left:534.087724px;}
.x52{left:540.583243px;}
.x17{left:543.268458px;}
.xa3{left:547.543800px;}
.x27{left:550.837599px;}
.x40{left:553.559281px;}
.x8b{left:556.929000px;}
.xa4{left:560.984875px;}
.x5a{left:563.470500px;}
.xa5{left:574.440952px;}
.x59{left:583.182000px;}
.x41{left:587.702012px;}
.xa6{left:601.338103px;}
.xa7{left:614.779178px;}
.xa8{left:628.220254px;}
.xa9{left:641.676330px;}
.x4b{left:645.135000px;}
.x5c{left:650.785500px;}
.xaa{left:655.117405px;}
.x5b{left:661.785000px;}
.xab{left:668.573482px;}
.xac{left:682.014557px;}
.x5d{left:689.446500px;}
.xad{left:695.455632px;}
.x5e{left:719.430000px;}
.x46{left:725.800500px;}
.x5f{left:736.600500px;}
.x8d{left:756.642000px;}
.x8c{left:761.647500px;}
.xb{left:763.449937px;}
.x8e{left:770.316000px;}
@media print{
.v5{vertical-align:-1.920154pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.840307pt;}
.v2{vertical-align:25.315907pt;}
.v3{vertical-align:31.882667pt;}
.v6{vertical-align:43.043443pt;}
.v7{vertical-align:49.230605pt;}
.v4{vertical-align:63.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:26.567040pt;}
.ls2{letter-spacing:26.571019pt;}
.ws1{word-spacing:-91.815680pt;}
.wsa{word-spacing:-76.513067pt;}
.ws0{word-spacing:-64.087345pt;}
.ws11{word-spacing:-57.384800pt;}
.ws1d{word-spacing:-53.865199pt;}
.wse{word-spacing:-53.134080pt;}
.wsc{word-spacing:-51.965130pt;}
.ws1e{word-spacing:-47.820667pt;}
.ws3{word-spacing:-42.974851pt;}
.ws38{word-spacing:-41.340884pt;}
.ws36{word-spacing:-41.338314pt;}
.ws65{word-spacing:-40.381901pt;}
.ws13{word-spacing:-39.850567pt;}
.ws47{word-spacing:-39.422655pt;}
.ws37{word-spacing:-39.000458pt;}
.ws62{word-spacing:-38.787878pt;}
.ws33{word-spacing:-37.193856pt;}
.ws6f{word-spacing:-36.396845pt;}
.ws6e{word-spacing:-36.184308pt;}
.ws6d{word-spacing:-35.918638pt;}
.ws6c{word-spacing:-35.546700pt;}
.ws18{word-spacing:-35.440431pt;}
.ws3a{word-spacing:-35.334163pt;}
.ws27{word-spacing:-34.643420pt;}
.wsd{word-spacing:-34.218348pt;}
.ws1f{word-spacing:-34.112079pt;}
.ws34{word-spacing:-32.996264pt;}
.wsb{word-spacing:-32.783727pt;}
.ws4{word-spacing:-32.231147pt;}
.ws5{word-spacing:-32.183327pt;}
.ws9{word-spacing:-31.466016pt;}
.ws8{word-spacing:-31.322554pt;}
.ws20{word-spacing:-31.136571pt;}
.ws39{word-spacing:-31.030303pt;}
.ws19{word-spacing:-30.711498pt;}
.ws6{word-spacing:-29.744471pt;}
.ws7{word-spacing:-28.883699pt;}
.ws1c{word-spacing:-27.459686pt;}
.wsf{word-spacing:-26.567040pt;}
.ws22{word-spacing:-21.133280pt;}
.ws4a{word-spacing:-20.375615pt;}
.ws16{word-spacing:-16.310638pt;}
.ws63{word-spacing:-14.827853pt;}
.ws14{word-spacing:-13.345068pt;}
.ws1b{word-spacing:-8.396534pt;}
.ws1a{word-spacing:-6.869892pt;}
.ws5a{word-spacing:-5.908554pt;}
.ws10{word-spacing:-3.985056pt;}
.ws12{word-spacing:0.000000pt;}
.ws4b{word-spacing:4.751504pt;}
.ws4d{word-spacing:6.186092pt;}
.ws51{word-spacing:6.191072pt;}
.ws43{word-spacing:20.656779pt;}
.ws5e{word-spacing:20.658133pt;}
.ws42{word-spacing:20.660406pt;}
.ws46{word-spacing:22.445152pt;}
.ws24{word-spacing:29.738863pt;}
.ws40{word-spacing:31.322170pt;}
.ws3b{word-spacing:31.630979pt;}
.ws31{word-spacing:36.417536pt;}
.ws23{word-spacing:40.268203pt;}
.ws67{word-spacing:43.382112pt;}
.ws44{word-spacing:47.526112pt;}
.ws3d{word-spacing:47.529739pt;}
.ws41{word-spacing:51.825345pt;}
.ws25{word-spacing:52.012012pt;}
.ws69{word-spacing:61.872835pt;}
.ws45{word-spacing:61.997152pt;}
.ws58{word-spacing:70.870112pt;}
.ws56{word-spacing:70.871467pt;}
.ws3f{word-spacing:70.873173pt;}
.ws3e{word-spacing:70.874880pt;}
.ws54{word-spacing:74.096779pt;}
.ws28{word-spacing:77.695020pt;}
.ws30{word-spacing:78.701387pt;}
.ws53{word-spacing:88.567819pt;}
.ws17{word-spacing:134.282742pt;}
.ws60{word-spacing:134.336079pt;}
.ws61{word-spacing:137.248312pt;}
.ws6b{word-spacing:140.445305pt;}
.ws29{word-spacing:146.825646pt;}
.ws4e{word-spacing:165.005315pt;}
.ws21{word-spacing:170.736249pt;}
.ws50{word-spacing:206.338648pt;}
.ws26{word-spacing:225.682053pt;}
.ws6a{word-spacing:230.148466pt;}
.ws2{word-spacing:232.727309pt;}
.ws66{word-spacing:256.237305pt;}
.ws4f{word-spacing:304.478648pt;}
.ws48{word-spacing:305.141296pt;}
.ws64{word-spacing:306.648530pt;}
.ws49{word-spacing:312.661296pt;}
.ws68{word-spacing:312.878228pt;}
.ws3c{word-spacing:356.231282pt;}
.ws52{word-spacing:372.382648pt;}
.ws5f{word-spacing:389.108460pt;}
.ws5b{word-spacing:398.205811pt;}
.ws15{word-spacing:401.536120pt;}
.ws32{word-spacing:408.523346pt;}
.ws5c{word-spacing:424.776477pt;}
.ws57{word-spacing:468.767869pt;}
.ws59{word-spacing:492.680477pt;}
.ws35{word-spacing:493.212787pt;}
.ws5d{word-spacing:518.555068pt;}
.ws4c{word-spacing:529.342993pt;}
.ws2a{word-spacing:553.815282pt;}
.ws55{word-spacing:559.152566pt;}
.ws2e{word-spacing:720.234397pt;}
.ws2c{word-spacing:733.780174pt;}
.ws2b{word-spacing:766.191962pt;}
.ws2d{word-spacing:787.712972pt;}
.ws2f{word-spacing:809.069811pt;}
._1c{margin-left:-1150.492032pt;}
._91{margin-left:-1118.169446pt;}
._41{margin-left:-1024.401946pt;}
._93{margin-left:-308.926045pt;}
._94{margin-left:-69.365549pt;}
._1d{margin-left:-35.708609pt;}
._d{margin-left:-28.054794pt;}
._b{margin-left:-26.567040pt;}
._e{margin-left:-12.911581pt;}
._92{margin-left:-9.915460pt;}
._c{margin-left:-8.873391pt;}
._2{margin-left:-7.161623pt;}
._19{margin-left:-5.760461pt;}
._3{margin-left:-4.562731pt;}
._1e{margin-left:-3.459658pt;}
._0{margin-left:-2.387208pt;}
._5{margin-left:-1.338979pt;}
._4{width:1.386800pt;}
._1{width:2.387208pt;}
._42{width:3.401437pt;}
._1f{width:4.725107pt;}
._59{width:6.191425pt;}
._12{width:17.693649pt;}
._6{width:20.726125pt;}
._90{width:21.891241pt;}
._1a{width:23.591532pt;}
._68{width:25.238465pt;}
._7{width:26.923050pt;}
._8{width:28.883699pt;}
._17{width:33.451513pt;}
._1b{width:38.607951pt;}
._55{width:40.276758pt;}
._13{width:41.291982pt;}
._5b{width:47.228234pt;}
._9{width:49.149024pt;}
._10{width:50.792819pt;}
._40{width:53.134080pt;}
._11{width:54.303030pt;}
._6f{width:57.887856pt;}
._72{width:59.323798pt;}
._22{width:60.884758pt;}
._18{width:63.760907pt;}
._76{width:73.793568pt;}
._6a{width:75.582859pt;}
._16{width:76.513067pt;}
._7e{width:84.458523pt;}
._69{width:96.084758pt;}
._5d{width:100.661899pt;}
._6b{width:101.994437pt;}
._8f{width:102.900494pt;}
._61{width:115.131446pt;}
._65{width:122.655425pt;}
._53{width:124.004192pt;}
._71{width:125.798544pt;}
._52{width:127.229505pt;}
._a2{width:130.169539pt;}
._44{width:141.703819pt;}
._5e{width:143.487212pt;}
._80{width:150.573505pt;}
._4c{width:152.360250pt;}
._47{width:153.797899pt;}
._46{width:155.916326pt;}
._73{width:158.672064pt;}
._86{width:165.749958pt;}
._48{width:168.267232pt;}
._45{width:170.048566pt;}
._74{width:175.441007pt;}
._66{width:183.735237pt;}
._89{width:185.667803pt;}
._83{width:188.363216pt;}
._67{width:191.255237pt;}
._99{width:194.242625pt;}
._8c{width:195.134859pt;}
._64{width:196.622507pt;}
._20{width:197.894453pt;}
._84{width:203.219345pt;}
._9e{width:205.227232pt;}
._9d{width:214.660192pt;}
._50{width:220.265605pt;}
._4e{width:221.700192pt;}
._9c{width:222.916624pt;}
._9a{width:231.645498pt;}
._88{width:237.957899pt;}
._96{width:241.230859pt;}
._4b{width:248.265526pt;}
._97{width:249.484939pt;}
._37{width:251.220809pt;}
._98{width:253.906272pt;}
._9f{width:262.135182pt;}
._49{width:264.524939pt;}
._85{width:271.123345pt;}
._3f{width:272.549547pt;}
._6e{width:282.793144pt;}
._8e{width:285.186229pt;}
._56{width:299.969563pt;}
._95{width:308.106789pt;}
._54{width:313.164542pt;}
._32{width:316.810880pt;}
._23{width:324.844443pt;}
._87{width:326.489057pt;}
._6d{width:327.856157pt;}
._6c{width:339.658722pt;}
._8a{width:341.256704pt;}
._25{width:342.539798pt;}
._70{width:352.238032pt;}
._60{width:377.859085pt;}
._7c{width:379.695212pt;}
._51{width:381.643586pt;}
._82{width:387.215212pt;}
._78{width:389.559210pt;}
._30{width:395.105055pt;}
._7d{width:403.467439pt;}
._7b{width:408.639684pt;}
._5a{width:415.795464pt;}
._33{width:420.287215pt;}
._58{width:421.292395pt;}
._3a{width:425.341755pt;}
._75{width:427.584430pt;}
._8d{width:429.304067pt;}
._24{width:432.947509pt;}
._7a{width:440.952005pt;}
._7f{width:442.730351pt;}
._81{width:448.472005pt;}
._4d{width:453.840819pt;}
._79{width:455.324947pt;}
._43{width:460.797757pt;}
._3b{width:464.979779pt;}
._35{width:470.553742pt;}
._57{width:474.139392pt;}
._62{width:478.239989pt;}
._5f{width:486.091499pt;}
._77{width:489.485633pt;}
._2e{width:505.562632pt;}
._a0{width:511.906272pt;}
._21{width:513.071425pt;}
._8b{width:519.502428pt;}
._3d{width:529.314721pt;}
._3c{width:533.468120pt;}
._4f{width:537.483134pt;}
._9b{width:538.468624pt;}
._3e{width:558.763336pt;}
._4a{width:572.436086pt;}
._5c{width:582.742391pt;}
._63{width:592.779770pt;}
._2d{width:614.707132pt;}
._27{width:635.697644pt;}
._39{width:648.986924pt;}
._26{width:664.280797pt;}
._a{width:666.787846pt;}
._29{width:678.044230pt;}
._2f{width:679.902217pt;}
._28{width:694.248418pt;}
._2a{width:697.650706pt;}
._2b{width:725.705500pt;}
._38{width:733.950859pt;}
._2c{width:745.154280pt;}
._31{width:801.856213pt;}
._36{width:828.423253pt;}
._34{width:854.990293pt;}
._a1{width:1239.351077pt;}
._14{width:1433.127092pt;}
._f{width:1610.437005pt;}
._15{width:2226.902427pt;}
.fs9{font-size:24.711840pt;}
.fsa{font-size:30.203360pt;}
.fs8{font-size:38.440640pt;}
.fsb{font-size:42.507253pt;}
.fs7{font-size:42.670080pt;}
.fs2{font-size:47.820693pt;}
.fs5{font-size:48.003840pt;}
.fs4{font-size:53.134080pt;}
.fsc{font-size:53.337600pt;}
.fs6{font-size:58.671360pt;}
.fs1{font-size:63.760907pt;}
.fsd{font-size:74.672640pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815680pt;}
.y18b{bottom:-60.711523pt;}
.y18a{bottom:-19.041523pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:3.686183pt;}
.y19a{bottom:7.160573pt;}
.y1a5{bottom:7.173907pt;}
.y29{bottom:10.534176pt;}
.y6d{bottom:18.362270pt;}
.y47{bottom:18.444643pt;}
.y74{bottom:18.575066pt;}
.y6c{bottom:18.767270pt;}
.y58{bottom:19.639048pt;}
.y7e{bottom:20.030319pt;}
.y63{bottom:20.950149pt;}
.y189{bottom:21.281702pt;}
.y7c{bottom:23.984214pt;}
.y225{bottom:24.721978pt;}
.y41{bottom:25.432602pt;}
.y7b{bottom:26.201415pt;}
.y59{bottom:26.990821pt;}
.y20{bottom:27.362189pt;}
.y71{bottom:27.800820pt;}
.y42{bottom:29.468869pt;}
.y62{bottom:30.313190pt;}
.y222{bottom:31.122490pt;}
.y55{bottom:31.171240pt;}
.y48{bottom:32.036155pt;}
.y75{bottom:32.894205pt;}
.y7f{bottom:33.752255pt;}
.y57{bottom:34.603440pt;}
.y72{bottom:35.440897pt;}
.y1b1{bottom:35.616182pt;}
.y1d9{bottom:35.656186pt;}
.y19{bottom:35.740000pt;}
.y1a3{bottom:35.816198pt;}
.y1b5{bottom:36.082886pt;}
.y73{bottom:36.264625pt;}
.y1db{bottom:36.442915pt;}
.y1dd{bottom:36.909619pt;}
.y46{bottom:37.074624pt;}
.y1bc{bottom:38.136384pt;}
.y60{bottom:38.632843pt;}
.y1ee{bottom:38.896445pt;}
.y7d{bottom:39.374198pt;}
.y1b6{bottom:39.749846pt;}
.y1d4{bottom:40.683254pt;}
.y195{bottom:40.696589pt;}
.y43{bottom:40.767672pt;}
.y191{bottom:41.710003pt;}
.y54{bottom:42.586738pt;}
.y1b2{bottom:42.816758pt;}
.y61{bottom:43.115296pt;}
.y80{bottom:43.602669pt;}
.y1cc{bottom:44.003520pt;}
.y49{bottom:44.035126pt;}
.y64{bottom:44.426397pt;}
.y25{bottom:44.630237pt;}
.y5a{bottom:45.064786pt;}
.y44{bottom:45.305040pt;}
.y56{bottom:45.490379pt;}
.y177{bottom:45.576979pt;}
.y45{bottom:45.627667pt;}
.y6e{bottom:45.703175pt;}
.y4a{bottom:45.730633pt;}
.y1cd{bottom:46.577059pt;}
.yda{bottom:46.763741pt;}
.y1b0{bottom:47.963837pt;}
.y19d{bottom:49.403952pt;}
.y1dc{bottom:50.884070pt;}
.y1bd{bottom:52.417526pt;}
.y1df{bottom:53.990986pt;}
.y1e7{bottom:54.004320pt;}
.y94{bottom:54.537696pt;}
.y1e9{bottom:55.604448pt;}
.y19e{bottom:57.231245pt;}
.y5d{bottom:57.866892pt;}
.y1d3{bottom:58.884710pt;}
.y194{bottom:60.551510pt;}
.y226{bottom:61.111555pt;}
.y39{bottom:61.271568pt;}
.y188{bottom:61.604928pt;}
.y190{bottom:62.218310pt;}
.y223{bottom:62.471664pt;}
.y79{bottom:63.797734pt;}
.y1e2{bottom:63.885110pt;}
.y196{bottom:63.898445pt;}
.y224{bottom:64.138464pt;}
.y1b4{bottom:65.551910pt;}
.y1bb{bottom:67.205376pt;}
.y1e0{bottom:68.832173pt;}
.y52{bottom:69.728575pt;}
.y1e1{bottom:70.445635pt;}
.y1a2{bottom:72.019094pt;}
.y1e8{bottom:73.552550pt;}
.y1d1{bottom:75.032669pt;}
.y1b3{bottom:75.046003pt;}
.y6a{bottom:75.659417pt;}
.y1ed{bottom:76.472784pt;}
.y1de{bottom:76.486118pt;}
.y192{bottom:77.859562pt;}
.y19f{bottom:79.179667pt;}
.y169{bottom:79.822667pt;}
.y51{bottom:81.590258pt;}
.y1ea{bottom:81.619862pt;}
.y1b9{bottom:82.726618pt;}
.y1d2{bottom:83.753366pt;}
.yc8{bottom:83.874667pt;}
.y227{bottom:84.326746pt;}
.y1ce{bottom:84.686774pt;}
.y197{bottom:85.540176pt;}
.y1d5{bottom:86.300237pt;}
.y69{bottom:87.521100pt;}
.y1be{bottom:87.527002pt;}
.y157{bottom:87.792000pt;}
.y1a0{bottom:87.993706pt;}
.y1ba{bottom:88.353734pt;}
.y1da{bottom:88.367069pt;}
.y1a1{bottom:88.620422pt;}
.y193{bottom:88.780435pt;}
.y198{bottom:88.833773pt;}
.y1d8{bottom:89.922667pt;}
.y1e{bottom:93.274128pt;}
.y50{bottom:93.451942pt;}
.y221{bottom:93.847507pt;}
.y114{bottom:94.069333pt;}
.y26{bottom:94.807584pt;}
.y178{bottom:95.434301pt;}
.y13e{bottom:95.762667pt;}
.ydb{bottom:97.167773pt;}
.y68{bottom:99.382783pt;}
.y1c8{bottom:100.888070pt;}
.y187{bottom:101.928154pt;}
.y38{bottom:102.941568pt;}
.y156{bottom:103.733333pt;}
.y4f{bottom:105.313625pt;}
.yd4{bottom:106.341840pt;}
.yc7{bottom:107.784000pt;}
.y21a{bottom:109.992000pt;}
.y113{bottom:110.009333pt;}
.y67{bottom:111.244466pt;}
.y13d{bottom:111.702667pt;}
.y1e5{bottom:112.408992pt;}
.y1ca{bottom:114.364000pt;}
.y4e{bottom:117.175308pt;}
.y1c{bottom:119.662906pt;}
.y168{bottom:119.673333pt;}
.y8f{bottom:121.836413pt;}
.y78{bottom:123.106150pt;}
.y1c7{bottom:123.929914pt;}
.y66{bottom:123.984793pt;}
.y155{bottom:127.642667pt;}
.y5c{bottom:129.036991pt;}
.y4d{bottom:129.915634pt;}
.yc6{bottom:131.694667pt;}
.yd2{bottom:132.730618pt;}
.y24e{bottom:132.970667pt;}
.y112{bottom:133.920000pt;}
.y1ac{bottom:135.450835pt;}
.y13c{bottom:135.613333pt;}
.y77{bottom:135.846476pt;}
.y95{bottom:136.050883pt;}
.y5b{bottom:141.777318pt;}
.y186{bottom:142.251379pt;}
.y37{bottom:143.264794pt;}
.y154{bottom:143.584000pt;}
.y27{bottom:144.998266pt;}
.y1d0{bottom:145.086458pt;}
.y179{bottom:145.304957pt;}
.y1c6{bottom:146.971757pt;}
.ydc{bottom:147.571805pt;}
.y9f{bottom:148.037333pt;}
.y24d{bottom:148.912000pt;}
.y91{bottom:152.545536pt;}
.yc5{bottom:155.605333pt;}
.y248{bottom:156.881333pt;}
.y111{bottom:157.830667pt;}
.y1ab{bottom:158.492678pt;}
.y13b{bottom:159.524000pt;}
.y9e{bottom:163.978667pt;}
.y24c{bottom:164.852000pt;}
.y153{bottom:167.493333pt;}
.y81{bottom:169.002667pt;}
.y1c5{bottom:170.013600pt;}
.y247{bottom:172.821333pt;}
.yde{bottom:179.254339pt;}
.yc4{bottom:179.516000pt;}
.y24b{bottom:180.792000pt;}
.y1aa{bottom:181.534522pt;}
.y110{bottom:181.740000pt;}
.y185{bottom:182.574605pt;}
.y13a{bottom:183.434667pt;}
.y36{bottom:183.588019pt;}
.y99{bottom:184.721443pt;}
.y219{bottom:185.024000pt;}
.y2a{bottom:185.601514pt;}
.yc3{bottom:187.485333pt;}
.y246{bottom:188.762667pt;}
.y1a6{bottom:188.841773pt;}
.y152{bottom:191.404000pt;}
.y1c4{bottom:193.055443pt;}
.y17a{bottom:195.162278pt;}
.y28{bottom:195.188947pt;}
.y9c{bottom:195.495638pt;}
.y17c{bottom:195.738667pt;}
.y24a{bottom:196.732000pt;}
.ydd{bottom:197.975837pt;}
.y7a{bottom:198.558667pt;}
.y151{bottom:199.374667pt;}
.y9d{bottom:200.641333pt;}
.y3f{bottom:203.659884pt;}
.y1a9{bottom:204.576365pt;}
.y10f{bottom:205.650667pt;}
.y139{bottom:207.344000pt;}
.y21c{bottom:207.563270pt;}
.y218{bottom:208.934667pt;}
.y17b{bottom:211.680000pt;}
.y249{bottom:212.672000pt;}
.y6f{bottom:212.705333pt;}
.y21{bottom:213.403738pt;}
.y3e{bottom:214.038856pt;}
.y173{bottom:214.177133pt;}
.y1c3{bottom:216.097286pt;}
.y96{bottom:217.550736pt;}
.y9b{bottom:218.537482pt;}
.y184{bottom:222.897830pt;}
.y35{bottom:223.911245pt;}
.y217{bottom:224.874667pt;}
.y93{bottom:225.082667pt;}
.y1a8{bottom:227.618208pt;}
.y10e{bottom:229.561333pt;}
.yc2{bottom:230.258667pt;}
.y138{bottom:231.254667pt;}
.y172{bottom:236.121333pt;}
.y245{bottom:236.582667pt;}
.y1c2{bottom:239.139130pt;}
.y167{bottom:239.225333pt;}
.y1d7{bottom:240.845933pt;}
.yd6{bottom:241.499318pt;}
.y9a{bottom:243.286128pt;}
.ye9{bottom:244.072858pt;}
.y137{bottom:247.194667pt;}
.y216{bottom:248.785333pt;}
.y1e4{bottom:250.660051pt;}
.y1a7{bottom:252.366854pt;}
.y22{bottom:252.446861pt;}
.y244{bottom:252.522667pt;}
.y229{bottom:252.913565pt;}
.y10d{bottom:253.472000pt;}
.y21d{bottom:256.300502pt;}
.y30{bottom:257.500598pt;}
.ye1{bottom:258.594019pt;}
.y240{bottom:260.493333pt;}
.y17d{bottom:261.540922pt;}
.y1c1{bottom:262.180973pt;}
.y174{bottom:262.234310pt;}
.ye8{bottom:262.887696pt;}
.y25b{bottom:263.134667pt;}
.y183{bottom:263.221056pt;}
.ye0{bottom:263.704000pt;}
.y34{bottom:264.234470pt;}
.y8e{bottom:267.632737pt;}
.y243{bottom:268.462667pt;}
.y22d{bottom:269.794915pt;}
.y136{bottom:271.105333pt;}
.y228{bottom:272.248445pt;}
.y215{bottom:272.694667pt;}
.y1e3{bottom:275.408698pt;}
.y23f{bottom:276.433333pt;}
.y10c{bottom:277.381333pt;}
.y1d6{bottom:278.137101pt;}
.y171{bottom:278.671404pt;}
.y70{bottom:279.063488pt;}
.y135{bottom:279.076000pt;}
.ydf{bottom:279.644000pt;}
.ye7{bottom:281.702534pt;}
.y242{bottom:284.404000pt;}
.y90{bottom:284.836118pt;}
.yc1{bottom:286.049333pt;}
.y1c0{bottom:286.929619pt;}
.y25a{bottom:287.045333pt;}
.y214{bottom:288.636000pt;}
.yd7{bottom:288.676426pt;}
.y23{bottom:291.489984pt;}
.y150{bottom:295.016000pt;}
.y22a{bottom:298.277194pt;}
.y97{bottom:299.050589pt;}
.y241{bottom:300.344000pt;}
.ye6{bottom:300.517373pt;}
.y10b{bottom:301.292000pt;}
.y25d{bottom:302.985333pt;}
.y182{bottom:303.544282pt;}
.yd5{bottom:304.086667pt;}
.y33{bottom:304.557696pt;}
.y21e{bottom:305.037734pt;}
.yc0{bottom:309.960000pt;}
.y175{bottom:310.278154pt;}
.y134{bottom:310.956000pt;}
.y213{bottom:312.545333pt;}
.y18{bottom:313.590667pt;}
.y92{bottom:315.545242pt;}
.y25c{bottom:318.925333pt;}
.ye5{bottom:319.332211pt;}
.y23e{bottom:324.253333pt;}
.y10a{bottom:325.202667pt;}
.y256{bottom:326.896000pt;}
.y24{bottom:330.519773pt;}
.ybf{bottom:333.869333pt;}
.y133{bottom:334.866667pt;}
.y3c{bottom:335.414667pt;}
.yd8{bottom:335.853533pt;}
.y212{bottom:336.456000pt;}
.ye4{bottom:338.160384pt;}
.y23d{bottom:340.194667pt;}
.y1cb{bottom:341.462166pt;}
.y132{bottom:342.836000pt;}
.y22b{bottom:343.627488pt;}
.y181{bottom:343.867507pt;}
.yd3{bottom:346.636737pt;}
.y76{bottom:347.563336pt;}
.y239{bottom:348.164000pt;}
.y109{bottom:349.113333pt;}
.ybe{bottom:349.810667pt;}
.y14f{bottom:350.806667pt;}
.y211{bottom:352.396000pt;}
.y21f{bottom:353.774966pt;}
.y23c{bottom:356.134667pt;}
.ye3{bottom:356.975222pt;}
.y176{bottom:358.335331pt;}
.y166{bottom:358.776000pt;}
.y3b{bottom:359.856000pt;}
.y238{bottom:364.104000pt;}
.y108{bottom:365.053333pt;}
.y17{bottom:365.509333pt;}
.y257{bottom:366.746667pt;}
.y23b{bottom:372.074667pt;}
.ybd{bottom:373.720000pt;}
.y131{bottom:374.717333pt;}
.y210{bottom:376.306667pt;}
.y32{bottom:377.616874pt;}
.y98{bottom:380.550442pt;}
.y165{bottom:382.686667pt;}
.yd9{bottom:383.017306pt;}
.y180{bottom:384.190733pt;}
.y19b{bottom:385.217482pt;}
.y23a{bottom:388.014667pt;}
.y107{bottom:388.962667pt;}
.y22c{bottom:388.977782pt;}
.y1ec{bottom:390.578458pt;}
.y255{bottom:390.657333pt;}
.y18e{bottom:395.618314pt;}
.y106{bottom:396.933333pt;}
.ybc{bottom:397.630667pt;}
.y130{bottom:398.626667pt;}
.y20f{bottom:400.217333pt;}
.y2b{bottom:400.632048pt;}
.y220{bottom:402.498864pt;}
.y16{bottom:402.704000pt;}
.y164{bottom:406.597333pt;}
.y31{bottom:408.526013pt;}
.ye2{bottom:409.006051pt;}
.y17e{bottom:409.486090pt;}
.y235{bottom:411.925333pt;}
.y12f{bottom:414.566667pt;}
.y18d{bottom:415.779926pt;}
.y20e{bottom:416.157333pt;}
.y237{bottom:419.894667pt;}
.ybb{bottom:421.541333pt;}
.y14e{bottom:422.537333pt;}
.y234{bottom:427.865333pt;}
.y105{bottom:428.813333pt;}
.y12e{bottom:430.508000pt;}
.y236{bottom:435.836000pt;}
.y15{bottom:439.897333pt;}
.y20d{bottom:440.068000pt;}
.y233{bottom:443.805333pt;}
.yba{bottom:445.452000pt;}
.y14d{bottom:446.448000pt;}
.y170{bottom:447.284892pt;}
.y104{bottom:452.724000pt;}
.y6b{bottom:453.510667pt;}
.y12d{bottom:454.417333pt;}
.y17f{bottom:457.249910pt;}
.y103{bottom:460.694667pt;}
.y254{bottom:462.388000pt;}
.y14{bottom:463.808000pt;}
.y20c{bottom:463.977333pt;}
.y5e{bottom:467.657333pt;}
.y232{bottom:467.716000pt;}
.yb9{bottom:469.361333pt;}
.y14c{bottom:470.358667pt;}
.y1cf{bottom:474.526144pt;}
.y231{bottom:475.686667pt;}
.y12c{bottom:478.328000pt;}
.y20b{bottom:479.918667pt;}
.y259{bottom:486.298667pt;}
.y13{bottom:487.718667pt;}
.y102{bottom:492.574667pt;}
.yb8{bottom:493.272000pt;}
.y14b{bottom:494.268000pt;}
.y12b{bottom:502.238667pt;}
.y12{bottom:503.658667pt;}
.y20a{bottom:503.828000pt;}
.y230{bottom:507.566667pt;}
.y3a{bottom:510.057333pt;}
.y163{bottom:510.208000pt;}
.y101{bottom:516.485333pt;}
.yb7{bottom:517.182667pt;}
.y14a{bottom:518.178667pt;}
.y1ef{bottom:523.629101pt;}
.y12a{bottom:526.149333pt;}
.y209{bottom:527.738667pt;}
.y1ad{bottom:528.441333pt;}
.y5f{bottom:534.015488pt;}
.y162{bottom:534.118667pt;}
.y2f{bottom:534.498667pt;}
.y100{bottom:540.396000pt;}
.y11{bottom:540.852000pt;}
.yb6{bottom:541.093333pt;}
.yd1{bottom:541.385649pt;}
.y129{bottom:542.089333pt;}
.y22f{bottom:542.369333pt;}
.y208{bottom:543.678667pt;}
.y2c{bottom:549.440000pt;}
.y161{bottom:550.058667pt;}
.y18c{bottom:552.882667pt;}
.y149{bottom:558.029333pt;}
.yff{bottom:564.305333pt;}
.y10{bottom:564.762667pt;}
.yb5{bottom:565.002667pt;}
.y128{bottom:566.000000pt;}
.y207{bottom:567.589333pt;}
.y1f{bottom:573.881333pt;}
.y160{bottom:573.969333pt;}
.y1c9{bottom:580.905333pt;}
.y127{bottom:581.940000pt;}
.y19c{bottom:583.605124pt;}
.y1e6{bottom:586.954166pt;}
.yfe{bottom:588.216000pt;}
.yf{bottom:588.673333pt;}
.yb4{bottom:588.913333pt;}
.y253{bottom:589.909333pt;}
.y22e{bottom:590.456000pt;}
.y206{bottom:591.500000pt;}
.y15f{bottom:597.880000pt;}
.y65{bottom:602.515336pt;}
.y1ae{bottom:605.346667pt;}
.y126{bottom:605.849333pt;}
.y205{bottom:607.440000pt;}
.yfd{bottom:612.126667pt;}
.ye{bottom:612.582667pt;}
.yb3{bottom:612.824000pt;}
.y258{bottom:613.820000pt;}
.y21b{bottom:614.897333pt;}
.y1d{bottom:616.431404pt;}
.y15e{bottom:621.790667pt;}
.yfc{bottom:628.066667pt;}
.y125{bottom:629.760000pt;}
.y204{bottom:631.350667pt;}
.y1b8{bottom:636.069124pt;}
.yb2{bottom:636.734667pt;}
.y148{bottom:637.730667pt;}
.y15d{bottom:645.700000pt;}
.yd{bottom:649.777333pt;}
.yfb{bottom:651.977333pt;}
.y124{bottom:653.670667pt;}
.y203{bottom:655.261333pt;}
.yb1{bottom:660.644000pt;}
.y15c{bottom:661.641333pt;}
.yfa{bottom:667.917333pt;}
.y123{bottom:669.610667pt;}
.y202{bottom:671.201333pt;}
.y147{bottom:677.581333pt;}
.yb0{bottom:684.554667pt;}
.y15b{bottom:685.550667pt;}
.yf9{bottom:691.828000pt;}
.y122{bottom:693.521333pt;}
.y201{bottom:695.110667pt;}
.y16f{bottom:695.350667pt;}
.y8d{bottom:696.168000pt;}
.y15a{bottom:701.490667pt;}
.yc{bottom:701.696000pt;}
.y53{bottom:708.461333pt;}
.yaf{bottom:708.465333pt;}
.y146{bottom:709.461333pt;}
.y200{bottom:711.052000pt;}
.yf8{bottom:715.737333pt;}
.yb{bottom:716.308000pt;}
.y1a4{bottom:716.655767pt;}
.y121{bottom:717.432000pt;}
.y1eb{bottom:720.018144pt;}
.y8c{bottom:720.078667pt;}
.y3d{bottom:722.608000pt;}
.y159{bottom:725.401333pt;}
.y16e{bottom:727.849333pt;}
.ya{bottom:730.920000pt;}
.yae{bottom:732.376000pt;}
.y1ff{bottom:734.961333pt;}
.yf7{bottom:739.648000pt;}
.y120{bottom:741.341333pt;}
.y8b{bottom:743.988000pt;}
.y9{bottom:745.530667pt;}
.y145{bottom:749.312000pt;}
.y1fe{bottom:750.902667pt;}
.yd0{bottom:754.794667pt;}
.yad{bottom:756.285333pt;}
.y8a{bottom:759.929333pt;}
.y8{bottom:760.142667pt;}
.yf6{bottom:763.558667pt;}
.y11f{bottom:765.252000pt;}
.y1bf{bottom:769.119767pt;}
.y144{bottom:773.222667pt;}
.y7{bottom:774.754667pt;}
.y1fd{bottom:774.812000pt;}
.yf5{bottom:779.498667pt;}
.y18f{bottom:779.980833pt;}
.yac{bottom:780.196000pt;}
.y11e{bottom:781.192000pt;}
.y1b{bottom:785.044892pt;}
.ycf{bottom:787.293333pt;}
.y40{bottom:788.966155pt;}
.y143{bottom:789.162667pt;}
.y6{bottom:789.366667pt;}
.y1fc{bottom:790.752000pt;}
.y89{bottom:794.732000pt;}
.y158{bottom:797.132000pt;}
.yf4{bottom:803.409333pt;}
.yab{bottom:804.106667pt;}
.y11d{bottom:805.102667pt;}
.y142{bottom:813.073333pt;}
.y5{bottom:813.941333pt;}
.y1fb{bottom:814.662667pt;}
.yf3{bottom:819.349333pt;}
.yaa{bottom:820.046667pt;}
.y11c{bottom:821.042667pt;}
.y141{bottom:829.013333pt;}
.y1fa{bottom:830.602667pt;}
.y1af{bottom:832.444833pt;}
.y88{bottom:836.092000pt;}
.yce{bottom:836.982667pt;}
.yf2{bottom:843.260000pt;}
.ya9{bottom:843.957333pt;}
.y11b{bottom:844.953333pt;}
.y1f9{bottom:846.544000pt;}
.yef{bottom:851.229333pt;}
.y11a{bottom:852.924000pt;}
.y4b{bottom:857.466002pt;}
.yf1{bottom:859.200000pt;}
.y16d{bottom:859.897333pt;}
.ycd{bottom:860.893333pt;}
.y4{bottom:863.090667pt;}
.yee{bottom:867.170667pt;}
.ya8{bottom:867.868000pt;}
.y24f{bottom:868.864000pt;}
.y1f8{bottom:870.453333pt;}
.yf0{bottom:875.140000pt;}
.y140{bottom:876.833333pt;}
.y87{bottom:881.266667pt;}
.y16c{bottom:883.808000pt;}
.ycc{bottom:884.804000pt;}
.ya7{bottom:891.777333pt;}
.y252{bottom:892.773333pt;}
.y1f7{bottom:894.364000pt;}
.y16b{bottom:899.748000pt;}
.y13f{bottom:900.744000pt;}
.y3{bottom:902.138667pt;}
.y1f4{bottom:902.334667pt;}
.y86{bottom:907.833333pt;}
.ycb{bottom:908.714667pt;}
.yed{bottom:909.942667pt;}
.y1f3{bottom:910.304000pt;}
.y199{bottom:913.044811pt;}
.ya6{bottom:915.688000pt;}
.y1f5{bottom:918.274667pt;}
.y16a{bottom:923.658667pt;}
.y119{bottom:924.654667pt;}
.yec{bottom:925.882667pt;}
.y1f6{bottom:926.244000pt;}
.yca{bottom:932.624000pt;}
.y85{bottom:934.400000pt;}
.ya5{bottom:939.598667pt;}
.y251{bottom:940.594667pt;}
.y118{bottom:947.568000pt;}
.y2{bottom:948.630667pt;}
.ya4{bottom:955.538667pt;}
.yc9{bottom:956.534667pt;}
.y1f2{bottom:961.046667pt;}
.yeb{bottom:961.297333pt;}
.y117{bottom:963.509333pt;}
.y1b7{bottom:965.508811pt;}
.y116{bottom:971.478667pt;}
.y84{bottom:971.594667pt;}
.y250{bottom:972.474667pt;}
.yea{bottom:977.237333pt;}
.y1{bottom:977.854667pt;}
.ya2{bottom:979.449333pt;}
.y2e{bottom:985.206667pt;}
.ya1{bottom:987.418667pt;}
.ya3{bottom:995.389333pt;}
.y1f1{bottom:996.461333pt;}
.y2d{bottom:1001.148000pt;}
.y83{bottom:1008.672000pt;}
.y115{bottom:1014.252000pt;}
.ya0{bottom:1030.192000pt;}
.y82{bottom:1032.582667pt;}
.y1f0{bottom:1033.540000pt;}
.y1a{bottom:1033.645333pt;}
.h12{height:11.813632pt;}
.h22{height:22.948502pt;}
.h11{height:25.773677pt;}
.h13{height:31.501161pt;}
.h14{height:31.880440pt;}
.h4{height:33.474485pt;}
.h5{height:35.865520pt;}
.h16{height:38.044001pt;}
.h7{height:39.850560pt;}
.hf{height:40.092386pt;}
.h3{height:43.548699pt;}
.hd{height:44.503560pt;}
.h8{height:47.820680pt;}
.ha{height:50.066505pt;}
.h15{height:51.089584pt;}
.h1e{height:53.709296pt;}
.h1d{height:55.629450pt;}
.h6{height:57.384800pt;}
.hc{height:61.192395pt;}
.h2{height:64.913686pt;}
.h10{height:68.499848pt;}
.h1b{height:71.727893pt;}
.h19{height:71.733227pt;}
.h1f{height:77.881230pt;}
.h21{height:93.109948pt;}
.h23{height:99.297110pt;}
.h1a{height:103.610560pt;}
.h17{height:103.615893pt;}
.h20{height:133.063978pt;}
.h9{height:161.306237pt;}
.h1c{height:187.441661pt;}
.he{height:222.406560pt;}
.h18{height:358.615354pt;}
.hb{height:432.034560pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:22.948502pt;}
.w5{width:68.499848pt;}
.w7{width:133.063978pt;}
.w4{width:321.253920pt;}
.w6{width:408.152650pt;}
.w3{width:624.049920pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.160573pt;}
.x1d{left:14.607443pt;}
.x2e{left:16.062696pt;}
.x12{left:17.841427pt;}
.x2f{left:20.016590pt;}
.x20{left:21.471843pt;}
.x31{left:23.181079pt;}
.x10{left:24.721978pt;}
.x1e{left:26.379889pt;}
.x14{left:27.348854pt;}
.x6b{left:28.375603pt;}
.x21{left:29.784632pt;}
.xf{left:31.389178pt;}
.x28{left:32.351917pt;}
.x6c{left:34.016054pt;}
.x2a{left:35.619372pt;}
.x26{left:36.800048pt;}
.x3d{left:38.069712pt;}
.x1c{left:40.074367pt;}
.x29{left:41.529620pt;}
.x63{left:42.496733pt;}
.x73{left:43.603488pt;}
.x4e{left:45.070272pt;}
.x77{left:46.310371pt;}
.x7f{left:49.537296pt;}
.x6d{left:51.244099pt;}
.x72{left:52.884230pt;}
.x69{left:53.910979pt;}
.x66{left:56.191162pt;}
.x68{left:57.857962pt;}
.x71{left:61.204896pt;}
.x75{left:62.845027pt;}
.xe{left:64.751846pt;}
.x76{left:69.192202pt;}
.x7a{left:70.165613pt;}
.x74{left:71.485718pt;}
.x79{left:73.925914pt;}
.x8{left:75.590667pt;}
.x3e{left:76.726138pt;}
.x6a{left:77.846227pt;}
.x6e{left:79.273008pt;}
.x30{left:80.706667pt;}
.x7e{left:81.939888pt;}
.x1{left:84.894667pt;}
.x55{left:86.766667pt;}
.x3c{left:90.527242pt;}
.x1b{left:91.701413pt;}
.x9{left:95.516000pt;}
.x44{left:96.712000pt;}
.x50{left:98.061178pt;}
.x4c{left:99.866667pt;}
.x43{left:103.789333pt;}
.x38{left:105.488000pt;}
.x7{left:108.800000pt;}
.x6f{left:112.929034pt;}
.x65{left:116.123837pt;}
.x8f{left:120.142944pt;}
.x53{left:121.556000pt;}
.x15{left:125.530042pt;}
.x6{left:126.732000pt;}
.x90{left:131.770541pt;}
.x4d{left:133.757366pt;}
.x3a{left:137.568958pt;}
.xd{left:140.264554pt;}
.x91{left:143.411472pt;}
.x62{left:147.211776pt;}
.x61{left:150.172013pt;}
.x92{left:155.052403pt;}
.x56{left:157.396000pt;}
.x1a{left:159.288402pt;}
.x1f{left:163.956088pt;}
.x42{left:166.521333pt;}
.xae{left:167.410667pt;}
.x34{left:169.880171pt;}
.x84{left:173.428000pt;}
.x93{left:178.334266pt;}
.x35{left:185.503546pt;}
.x94{left:189.961862pt;}
.x7b{left:194.264000pt;}
.x13{left:195.228950pt;}
.x2b{left:197.928110pt;}
.x49{left:199.038667pt;}
.x45{left:199.981333pt;}
.x22{left:201.065140pt;}
.x85{left:202.153333pt;}
.x83{left:203.881333pt;}
.xaf{left:204.850667pt;}
.x7d{left:208.058667pt;}
.x32{left:210.723351pt;}
.x2c{left:213.551484pt;}
.x23{left:216.688515pt;}
.x39{left:218.360000pt;}
.x64{left:220.485333pt;}
.x19{left:223.805333pt;}
.x95{left:224.884656pt;}
.x33{left:226.346726pt;}
.x57{left:232.825333pt;}
.x96{left:236.525587pt;}
.x3f{left:240.779261pt;}
.x97{left:248.166518pt;}
.x18{left:253.162667pt;}
.x86{left:255.053333pt;}
.x67{left:256.481731pt;}
.x98{left:259.794115pt;}
.x87{left:268.270667pt;}
.x99{left:271.435046pt;}
.x3b{left:282.169238pt;}
.x9a{left:283.075978pt;}
.x60{left:286.176000pt;}
.x4f{left:293.570150pt;}
.x9b{left:294.716909pt;}
.x11{left:303.410938pt;}
.x9c{left:306.357840pt;}
.x4a{left:308.896000pt;}
.x37{left:316.757333pt;}
.x81{left:329.999731pt;}
.x3{left:332.037333pt;}
.x9e{left:336.746938pt;}
.x88{left:342.712000pt;}
.x9d{left:350.094672pt;}
.x82{left:360.348826pt;}
.x4{left:362.156000pt;}
.x5{left:369.796000pt;}
.x2{left:372.874667pt;}
.x9f{left:379.123661pt;}
.x78{left:384.484090pt;}
.x7c{left:385.524173pt;}
.x54{left:390.208000pt;}
.xa{left:393.529333pt;}
.x47{left:398.840000pt;}
.x24{left:401.268000pt;}
.x48{left:403.262667pt;}
.x2d{left:408.737333pt;}
.x36{left:415.182667pt;}
.x25{left:417.378747pt;}
.x70{left:420.927005pt;}
.xa0{left:426.940819pt;}
.x89{left:428.701333pt;}
.x58{left:432.153333pt;}
.x80{left:439.688506pt;}
.xa1{left:450.849398pt;}
.x8a{left:453.621333pt;}
.x51{left:461.036880pt;}
.x16{left:463.410403pt;}
.xa2{left:474.744643pt;}
.x52{left:480.518438pt;}
.x17{left:482.905296pt;}
.xa3{left:486.705600pt;}
.x27{left:489.633421pt;}
.x40{left:492.052694pt;}
.x8b{left:495.048000pt;}
.xa4{left:498.653222pt;}
.x5a{left:500.862667pt;}
.xa5{left:510.614179pt;}
.x59{left:518.384000pt;}
.x41{left:522.401789pt;}
.xa6{left:534.522758pt;}
.xa7{left:546.470381pt;}
.xa8{left:558.418003pt;}
.xa9{left:570.378960pt;}
.x4b{left:573.453333pt;}
.x5c{left:578.476000pt;}
.xaa{left:582.326582pt;}
.x5b{left:588.253333pt;}
.xab{left:594.287539pt;}
.xac{left:606.235162pt;}
.x5d{left:612.841333pt;}
.xad{left:618.182784pt;}
.x5e{left:639.493333pt;}
.x46{left:645.156000pt;}
.x5f{left:654.756000pt;}
.x8d{left:672.570667pt;}
.x8c{left:677.020000pt;}
.xb{left:678.622166pt;}
.x8e{left:684.725333pt;}
}




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