
    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_2d4a88dc9739e96628e029dd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919000;font-style:normal;font-weight: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_b44602c76d1ef07060768136.woff')format("woff");}.ff2{font-family:ff2;line-height:0.728000;font-style:normal;font-weight: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_e3e25eaa44ec2821079ad362.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_05059105ef26cd49e41b5057.woff')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_f644110c61250ab1d7f72f71.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ba48cac9a26cb6ae25ef0d04.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight: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_d39dab2e5e24852ba838e022.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893555;font-style:normal;font-weight: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_2e9d1ca311c54c86e9c89f0a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight: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_5e21b73d70aae6d34185d795.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5b8cf84196756df0993f5179.woff')format("woff");}.ffa{font-family:ffa;line-height:0.908203;font-style:normal;font-weight: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_1964f9ec96853a71931fefa3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.093262;font-style:normal;font-weight: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_ec323e2f2768d82776eafab2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.093262;font-style:normal;font-weight: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_0d34da578280911296c2eb13.woff')format("woff");}.ffd{font-family:ffd;line-height:0.893555;font-style:normal;font-weight: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_d7b100f3a24afd7256a7a31e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0e8802f8fe46742a87ef183f.woff')format("woff");}.fff{font-family:fff;line-height:1.093262;font-style:normal;font-weight: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_090c596e1bdee49777d54d48.woff')format("woff");}.ff10{font-family:ff10;line-height:1.093262;font-style:normal;font-weight: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_24d32aeeff4f69a19ed8654e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.893555;font-style:normal;font-weight: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_d7b100f3a24afd7256a7a31e.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f129268706c354dd665eb37f.woff')format("woff");}.ff13{font-family:ff13;line-height:1.093262;font-style:normal;font-weight: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_e78a5efcb6da02dd8d2bee28.woff')format("woff");}.ff14{font-family:ff14;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5809b31491b8cd36a907b240.woff')format("woff");}.ff15{font-family:ff15;line-height:1.093262;font-style:normal;font-weight: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_8fd8e77be6b581f7c3a2b442.woff')format("woff");}.ff16{font-family:ff16;line-height:3.333984;font-style:normal;font-weight: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_3693793a620e3636dd9e4d4f.woff')format("woff");}.ff17{font-family:ff17;line-height:1.093262;font-style:normal;font-weight: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_e847f52fc16d9a67f43e3b2b.woff')format("woff");}.ff18{font-family:ff18;line-height:3.333984;font-style:normal;font-weight: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_e32b4ea96f7ec87be8c3d47d.woff')format("woff");}.ff19{font-family:ff19;line-height:1.093262;font-style:normal;font-weight: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_41c3148a2ce4af72e1f5b8a5.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_e6d96b2fddf4e136787faf74.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.893555;font-style:normal;font-weight: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_f1daef1139b35db3b0110177.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.093262;font-style:normal;font-weight: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_0986480ea1415cdee6d5f398.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.093262;font-style:normal;font-weight: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_68960cebd57f329d694a0319.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_fd5ae1b25cea918f375d06b4.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.093262;font-style:normal;font-weight: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_fab0c40ceddf998d812f47d7.woff')format("woff");}.ff20{font-family:ff20;line-height:1.093262;font-style:normal;font-weight: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_df2d3d6c0997f4ba87bee943.woff')format("woff");}.ff21{font-family:ff21;line-height:1.093262;font-style:normal;font-weight: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_2c633232b8922de0c9409a84.woff')format("woff");}.ff22{font-family:ff22;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_f8a75fa9a83df64681ad50fb.woff')format("woff");}.ff23{font-family:ff23;line-height:1.093262;font-style:normal;font-weight: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_19a1ca44ea62b36722a09fd3.woff')format("woff");}.ff24{font-family:ff24;line-height:1.093262;font-style:normal;font-weight: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_fdc73234f1596faa1b8af09d.woff')format("woff");}.ff25{font-family:ff25;line-height:0.893555;font-style:normal;font-weight: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_177ed7ff97ed5525a40df256.woff')format("woff");}.ff26{font-family:ff26;line-height:1.093262;font-style:normal;font-weight: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_2515e378ecacefbb8ea19674.woff')format("woff");}.ff27{font-family:ff27;line-height:0.893555;font-style:normal;font-weight: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_837ada78ec5f8b145b827036.woff')format("woff");}.ff28{font-family:ff28;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_d7b100f3a24afd7256a7a31e.woff')format("woff");}.ff29{font-family:ff29;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_33677f9213b9f889c247f2f5.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.093262;font-style:normal;font-weight: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_c57e5657bbd7e88454326285.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.093262;font-style:normal;font-weight: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_a75aca13a8b956893746df14.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.093262;font-style:normal;font-weight: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_400ab8fe745d942bcc344f60.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.893555;font-style:normal;font-weight: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_b94e39a0873581cbba149b7a.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.093262;font-style:normal;font-weight: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_2e7c4b9764d4903b16d91711.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.093262;font-style:normal;font-weight: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_69687593090cc0ffeb724966.woff')format("woff");}.ff30{font-family:ff30;line-height:1.093262;font-style:normal;font-weight: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_05f82d6c37d6dd2af7780907.woff')format("woff");}.ff31{font-family:ff31;line-height:0.893555;font-style:normal;font-weight: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_2d7c8f6b4c52b6f596573e28.woff')format("woff");}.ff32{font-family:ff32;line-height:1.093262;font-style:normal;font-weight: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_c9636c2cc42d0691f34b5eb8.woff')format("woff");}.ff33{font-family:ff33;line-height:1.093262;font-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);}
.vb{vertical-align:-72.013500px;}
.v2{vertical-align:-22.500000px;}
.v5{vertical-align:-13.500000px;}
.v4{vertical-align:-9.000000px;}
.v8{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:4.500000px;}
.v3{vertical-align:9.000000px;}
.vc{vertical-align:13.491000px;}
.v7{vertical-align:18.000000px;}
.v1{vertical-align:22.500000px;}
.v9{vertical-align:40.500000px;}
.va{vertical-align:45.180000px;}
.vd{vertical-align:58.500000px;}
.ve{vertical-align:81.000000px;}
.ls77{letter-spacing:-3.960000px;}
.ls51{letter-spacing:-3.451500px;}
.ls76{letter-spacing:-2.970000px;}
.ls1e{letter-spacing:-2.749500px;}
.ls56{letter-spacing:-2.227500px;}
.ls24{letter-spacing:-2.223000px;}
.ls53{letter-spacing:-2.047500px;}
.ls52{letter-spacing:-1.863000px;}
.ls1f{letter-spacing:-1.755000px;}
.ls67{letter-spacing:-1.732500px;}
.lsb{letter-spacing:-1.534500px;}
.ls18{letter-spacing:-1.512000px;}
.ls21{letter-spacing:-1.462500px;}
.ls17{letter-spacing:-1.458000px;}
.ls75{letter-spacing:-1.237500px;}
.ls5c{letter-spacing:-1.228500px;}
.ls1d{letter-spacing:-1.111500px;}
.lsf{letter-spacing:-1.053000px;}
.ls72{letter-spacing:-0.544500px;}
.ls50{letter-spacing:-0.468000px;}
.lsc{letter-spacing:-0.247500px;}
.ls23{letter-spacing:-0.234000px;}
.lsa{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.093000px;}
.ls6d{letter-spacing:0.175500px;}
.ls65{letter-spacing:0.198000px;}
.ls66{letter-spacing:0.292500px;}
.ls27{letter-spacing:0.378000px;}
.ls3e{letter-spacing:0.438000px;}
.ls8{letter-spacing:0.445500px;}
.lsd{letter-spacing:0.495000px;}
.ls4{letter-spacing:0.522000px;}
.ls12{letter-spacing:0.932850px;}
.ls11{letter-spacing:0.994500px;}
.ls70{letter-spacing:1.089000px;}
.ls57{letter-spacing:1.138500px;}
.ls14{letter-spacing:1.149750px;}
.ls38{letter-spacing:1.170000px;}
.ls62{letter-spacing:1.188000px;}
.ls31{letter-spacing:1.309500px;}
.ls63{letter-spacing:1.404000px;}
.ls2e{letter-spacing:1.429500px;}
.ls5e{letter-spacing:1.435500px;}
.ls5{letter-spacing:1.456350px;}
.ls68{letter-spacing:1.462500px;}
.ls74{letter-spacing:1.475100px;}
.ls33{letter-spacing:1.485000px;}
.ls29{letter-spacing:1.489500px;}
.ls9{letter-spacing:1.512000px;}
.ls3{letter-spacing:1.534500px;}
.ls5b{letter-spacing:1.584000px;}
.ls73{letter-spacing:1.633500px;}
.ls5d{letter-spacing:1.683000px;}
.ls1c{letter-spacing:1.696500px;}
.ls55{letter-spacing:1.701000px;}
.ls22{letter-spacing:1.755000px;}
.ls35{letter-spacing:1.872000px;}
.ls15{letter-spacing:1.916250px;}
.ls13{letter-spacing:2.073000px;}
.ls10{letter-spacing:2.164500px;}
.ls2{letter-spacing:2.178000px;}
.ls37{letter-spacing:2.223000px;}
.ls16{letter-spacing:2.227500px;}
.ls6{letter-spacing:2.250000px;}
.ls58{letter-spacing:2.252250px;}
.lse{letter-spacing:2.281500px;}
.ls69{letter-spacing:2.376000px;}
.ls60{letter-spacing:2.398500px;}
.ls71{letter-spacing:2.425500px;}
.ls30{letter-spacing:2.722500px;}
.ls1b{letter-spacing:2.983494px;}
.ls6c{letter-spacing:3.217500px;}
.ls26{letter-spacing:3.532500px;}
.ls4b{letter-spacing:3.550500px;}
.ls46{letter-spacing:3.700500px;}
.ls32{letter-spacing:3.784500px;}
.ls4f{letter-spacing:4.014000px;}
.ls42{letter-spacing:4.473000px;}
.ls45{letter-spacing:4.485000px;}
.ls4a{letter-spacing:4.504500px;}
.ls2b{letter-spacing:4.603500px;}
.ls43{letter-spacing:5.031000px;}
.ls3d{letter-spacing:5.224500px;}
.ls20{letter-spacing:5.440500px;}
.ls3a{letter-spacing:5.662500px;}
.ls4d{letter-spacing:5.725500px;}
.ls6e{letter-spacing:7.546500px;}
.ls25{letter-spacing:7.897500px;}
.ls2d{letter-spacing:7.929000px;}
.ls2f{letter-spacing:8.284500px;}
.ls7{letter-spacing:11.259000px;}
.ls6f{letter-spacing:12.051000px;}
.ls19{letter-spacing:12.519000px;}
.ls2a{letter-spacing:12.550500px;}
.ls1{letter-spacing:13.266000px;}
.ls0{letter-spacing:13.365000px;}
.ls61{letter-spacing:14.652000px;}
.ls36{letter-spacing:15.736500px;}
.ls6b{letter-spacing:15.741000px;}
.ls59{letter-spacing:15.889500px;}
.ls64{letter-spacing:15.970500px;}
.ls3f{letter-spacing:16.222500px;}
.ls44{letter-spacing:16.263000px;}
.ls2c{letter-spacing:16.402500px;}
.ls3c{letter-spacing:17.050500px;}
.ls34{letter-spacing:17.298000px;}
.ls49{letter-spacing:19.422000px;}
.ls3b{letter-spacing:19.480500px;}
.ls54{letter-spacing:20.241000px;}
.ls5a{letter-spacing:20.416500px;}
.ls28{letter-spacing:20.722500px;}
.ls5f{letter-spacing:20.767500px;}
.ls39{letter-spacing:20.943000px;}
.ls4c{letter-spacing:31.590000px;}
.ls1a{letter-spacing:45.279000px;}
.ls4e{letter-spacing:61.041000px;}
.ls41{letter-spacing:75.670500px;}
.ls47{letter-spacing:75.718500px;}
.ls48{letter-spacing:80.205000px;}
.ls6a{letter-spacing:81.256500px;}
.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;}
}
.ws49{word-spacing:-58.500000px;}
.ws4a{word-spacing:-58.032000px;}
.ws52{word-spacing:-56.452500px;}
.ws54{word-spacing:-42.201000px;}
.ws4b{word-spacing:-40.500000px;}
.ws4f{word-spacing:-38.637000px;}
.ws50{word-spacing:-23.229000px;}
.wsc{word-spacing:-21.078750px;}
.wsd{word-spacing:-19.162500px;}
.ws21{word-spacing:-17.608494px;}
.ws48{word-spacing:-16.906500px;}
.ws3d{word-spacing:-16.789500px;}
.ws24{word-spacing:-16.380000px;}
.ws41{word-spacing:-16.321500px;}
.ws68{word-spacing:-16.029000px;}
.ws3{word-spacing:-15.984000px;}
.ws26{word-spacing:-15.619500px;}
.ws83{word-spacing:-15.592500px;}
.ws1{word-spacing:-15.012000px;}
.ws64{word-spacing:-14.917500px;}
.ws22{word-spacing:-14.625000px;}
.ws7d{word-spacing:-14.602500px;}
.wsb{word-spacing:-14.553000px;}
.ws5e{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.572000px;}
.ws65{word-spacing:-13.563000px;}
.ws10{word-spacing:-13.500000px;}
.ws70{word-spacing:-13.396500px;}
.ws4c{word-spacing:-13.162500px;}
.ws6{word-spacing:-12.870000px;}
.ws63{word-spacing:-12.573000px;}
.ws9{word-spacing:-12.375000px;}
.wsa{word-spacing:-12.127500px;}
.wse{word-spacing:-12.042000px;}
.ws2{word-spacing:-12.000000px;}
.ws3e{word-spacing:-11.875500px;}
.ws82{word-spacing:-11.830500px;}
.ws87{word-spacing:-11.137500px;}
.ws31{word-spacing:-11.056500px;}
.ws67{word-spacing:-10.642500px;}
.ws66{word-spacing:-10.147500px;}
.ws27{word-spacing:-7.780500px;}
.ws15{word-spacing:-6.610500px;}
.ws55{word-spacing:-6.493500px;}
.ws40{word-spacing:-6.435000px;}
.ws4e{word-spacing:-6.376500px;}
.ws23{word-spacing:-6.318000px;}
.ws61{word-spacing:-5.544000px;}
.ws6e{word-spacing:-5.382000px;}
.ws7e{word-spacing:-5.375700px;}
.ws81{word-spacing:-4.797000px;}
.ws85{word-spacing:-4.455000px;}
.ws3a{word-spacing:-4.153494px;}
.ws2f{word-spacing:-3.861000px;}
.ws2a{word-spacing:-3.276000px;}
.ws60{word-spacing:-3.118500px;}
.ws18{word-spacing:-3.066000px;}
.ws46{word-spacing:-2.808000px;}
.ws79{word-spacing:-2.515494px;}
.ws17{word-spacing:-2.299500px;}
.ws5c{word-spacing:-2.281500px;}
.ws19{word-spacing:-2.227500px;}
.ws7{word-spacing:-2.193750px;}
.ws1a{word-spacing:-2.178000px;}
.ws3b{word-spacing:-2.164500px;}
.ws25{word-spacing:-2.135250px;}
.ws38{word-spacing:-2.106000px;}
.ws84{word-spacing:-1.831500px;}
.ws47{word-spacing:-1.755000px;}
.ws2b{word-spacing:-1.696500px;}
.ws76{word-spacing:-1.579500px;}
.ws6a{word-spacing:-1.521000px;}
.ws6d{word-spacing:-1.462500px;}
.ws16{word-spacing:-1.140150px;}
.ws59{word-spacing:-1.138500px;}
.ws12{word-spacing:-1.089000px;}
.ws7a{word-spacing:-1.039500px;}
.ws2d{word-spacing:-0.994500px;}
.ws7b{word-spacing:-0.891000px;}
.ws37{word-spacing:-0.877500px;}
.ws89{word-spacing:-0.841500px;}
.ws6b{word-spacing:-0.495000px;}
.ws8a{word-spacing:-0.396000px;}
.ws7c{word-spacing:-0.234000px;}
.ws80{word-spacing:-0.175500px;}
.ws0{word-spacing:-0.099000px;}
.ws6f{word-spacing:-0.058500px;}
.ws11{word-spacing:0.000000px;}
.ws6c{word-spacing:0.247500px;}
.ws34{word-spacing:0.351000px;}
.ws5a{word-spacing:0.594000px;}
.ws86{word-spacing:0.891000px;}
.ws78{word-spacing:1.053000px;}
.ws2c{word-spacing:1.111500px;}
.ws14{word-spacing:1.170000px;}
.ws13{word-spacing:1.336500px;}
.ws56{word-spacing:1.462500px;}
.ws1e{word-spacing:1.512000px;}
.ws2e{word-spacing:1.638000px;}
.ws5{word-spacing:1.881000px;}
.ws39{word-spacing:2.223000px;}
.ws58{word-spacing:2.227500px;}
.ws36{word-spacing:2.340000px;}
.ws88{word-spacing:2.673000px;}
.ws35{word-spacing:2.749500px;}
.ws4d{word-spacing:2.808000px;}
.ws5f{word-spacing:2.983500px;}
.ws7f{word-spacing:3.334500px;}
.ws53{word-spacing:3.451500px;}
.ws5b{word-spacing:4.329000px;}
.ws45{word-spacing:4.387500px;}
.ws1c{word-spacing:4.428000px;}
.ws57{word-spacing:4.797000px;}
.wsf{word-spacing:4.860000px;}
.ws77{word-spacing:5.206500px;}
.ws29{word-spacing:5.674500px;}
.ws1f{word-spacing:5.886000px;}
.ws20{word-spacing:5.940000px;}
.ws30{word-spacing:6.084000px;}
.ws4{word-spacing:6.232050px;}
.ws44{word-spacing:6.844500px;}
.ws3f{word-spacing:7.195500px;}
.ws5d{word-spacing:8.892000px;}
.ws1b{word-spacing:8.964000px;}
.ws32{word-spacing:9.301500px;}
.ws33{word-spacing:10.179000px;}
.ws1d{word-spacing:10.476000px;}
.ws43{word-spacing:10.588500px;}
.ws42{word-spacing:14.625000px;}
.ws62{word-spacing:15.093000px;}
.ws28{word-spacing:15.795000px;}
.ws69{word-spacing:22.522500px;}
.ws51{word-spacing:43.699500px;}
.ws71{word-spacing:83.044500px;}
.ws72{word-spacing:176.958600px;}
.ws75{word-spacing:177.526500px;}
.ws73{word-spacing:272.266500px;}
.ws74{word-spacing:281.326500px;}
.ws3c{word-spacing:730.198200px;}
._17{margin-left:-14.167800px;}
._16{margin-left:-13.075200px;}
._19{margin-left:-10.259100px;}
._e{margin-left:-8.946900px;}
._13{margin-left:-7.321050px;}
._6{margin-left:-5.762250px;}
._5{margin-left:-4.574250px;}
._3{margin-left:-3.306600px;}
._0{margin-left:-1.791900px;}
._8{width:1.019250px;}
._1{width:2.029500px;}
._2{width:3.717450px;}
._7{width:5.070150px;}
._10{width:6.224400px;}
._14{width:7.267950px;}
._f{width:8.635500px;}
._a{width:9.722250px;}
._12{width:12.197700px;}
._18{width:13.251600px;}
._9{width:14.880600px;}
._1d{width:15.948900px;}
._4{width:17.315100px;}
._15{width:18.467550px;}
._1c{width:19.614900px;}
._1b{width:20.794500px;}
._1a{width:22.274550px;}
._b{width:23.803200px;}
._d{width:24.851250px;}
._1e{width:26.882550px;}
._c{width:28.113750px;}
._11{width:436.668300px;}
.fc2{color:rgb(0,158,227);}
.fc1{color:rgb(0,150,189);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.500000px;}
.fs9{font-size:40.500000px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:76.650000px;}
.fs0{font-size:99.000000px;}
.fs6{font-size:103.650000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:2.250300px;}
.y103{bottom:3.373800px;}
.yf7{bottom:3.375300px;}
.yf9{bottom:3.388800px;}
.y69{bottom:3.390300px;}
.yf1{bottom:3.403800px;}
.y122{bottom:4.500300px;}
.y125{bottom:4.515300px;}
.y11c{bottom:5.625300px;}
.y121{bottom:6.750300px;}
.y11b{bottom:7.875300px;}
.y120{bottom:9.000300px;}
.y7a{bottom:11.235300px;}
.y87{bottom:12.412800px;}
.y86{bottom:14.662800px;}
.y119{bottom:20.250300px;}
.y126{bottom:21.390300px;}
.y78{bottom:21.405300px;}
.y67{bottom:21.420300px;}
.y85{bottom:22.537800px;}
.yf3{bottom:31.545300px;}
.y79{bottom:39.405300px;}
.y68{bottom:43.965300px;}
.y7{bottom:68.038200px;}
.y6{bottom:81.538200px;}
.y18a{bottom:90.339300px;}
.ybd{bottom:94.090800px;}
.y138{bottom:94.840800px;}
.y5{bottom:95.038200px;}
.y189{bottom:103.840425px;}
.y4{bottom:108.538200px;}
.yb5{bottom:110.121300px;}
.y188{bottom:117.378675px;}
.ycb{bottom:123.378300px;}
.yb4{bottom:128.124675px;}
.y57{bottom:128.495925px;}
.ybc{bottom:129.003300px;}
.y50{bottom:129.622050px;}
.y187{bottom:130.879800px;}
.y135{bottom:134.227050px;}
.y84{bottom:137.253000px;}
.y186{bottom:145.544175px;}
.yb3{bottom:146.157300px;}
.y56{bottom:146.528550px;}
.y4f{bottom:147.654675px;}
.y134{bottom:152.259675px;}
.y156{bottom:156.338925px;}
.y185{bottom:159.045300px;}
.y88{bottom:163.165800px;}
.y1c6{bottom:163.530675px;}
.yb2{bottom:164.160675px;}
.y4e{bottom:165.658050px;}
.y133{bottom:170.263050px;}
.y184{bottom:172.546425px;}
.y155{bottom:174.371550px;}
.y1c5{bottom:178.182675px;}
.yb1{bottom:182.193300px;}
.y55{bottom:182.564550px;}
.y4d{bottom:183.690675px;}
.y183{bottom:186.097050px;}
.y132{bottom:188.310300px;}
.y1c4{bottom:191.696175px;}
.y154{bottom:192.374925px;}
.yb0{bottom:200.211300px;}
.y54{bottom:200.582550px;}
.y182{bottom:200.724300px;}
.y4c{bottom:201.708675px;}
.yeb{bottom:202.506675px;}
.y1c3{bottom:205.197300px;}
.y131{bottom:206.313675px;}
.y153{bottom:210.422175px;}
.y181{bottom:214.250175px;}
.y83{bottom:214.959300px;}
.y53{bottom:218.615175px;}
.y1c2{bottom:218.723175px;}
.yea{bottom:220.539300px;}
.y130{bottom:224.346300px;}
.yec{bottom:226.615800px;}
.y180{bottom:227.751300px;}
.y152{bottom:228.425550px;}
.y81{bottom:231.863550px;}
.y145{bottom:232.940550px;}
.y1c1{bottom:233.350425px;}
.yaf{bottom:236.247300px;}
.y4b{bottom:236.618550px;}
.y82{bottom:237.491925px;}
.ye9{bottom:238.542675px;}
.y17f{bottom:242.378550px;}
.yd{bottom:244.500150px;}
.y151{bottom:246.458175px;}
.y1c0{bottom:246.851550px;}
.y7f{bottom:248.738175px;}
.y144{bottom:250.973175px;}
.y80{bottom:254.397300px;}
.y4a{bottom:254.651175px;}
.y17e{bottom:255.904425px;}
.ye8{bottom:256.575300px;}
.y12f{bottom:259.256175px;}
.yc{bottom:260.290650px;}
.y1bf{bottom:260.377425px;}
.y150{bottom:264.461550px;}
.y7e{bottom:266.761425px;}
.y143{bottom:268.976550px;}
.y17d{bottom:269.405550px;}
.yae{bottom:272.283300px;}
.y49{bottom:272.654550px;}
.y1be{bottom:273.878550px;}
.ye7{bottom:274.578675px;}
.y12e{bottom:277.259550px;}
.y14f{bottom:282.494175px;}
.y17c{bottom:282.906675px;}
.y7d{bottom:284.764800px;}
.y142{bottom:287.009175px;}
.y1bd{bottom:288.542925px;}
.yad{bottom:290.330550px;}
.y48{bottom:290.657925px;}
.ye6{bottom:292.625925px;}
.y12d{bottom:295.306800px;}
.y17b{bottom:297.571050px;}
.y14e{bottom:300.497550px;}
.y1bc{bottom:302.044050px;}
.y141{bottom:305.012550px;}
.yac{bottom:308.333925px;}
.y47{bottom:308.705175px;}
.ye5{bottom:310.629300px;}
.y17a{bottom:311.072175px;}
.y12c{bottom:313.310175px;}
.y1bb{bottom:315.545175px;}
.y14d{bottom:318.544800px;}
.y7c{bottom:319.689300px;}
.y140{bottom:323.059800px;}
.y179{bottom:324.598050px;}
.yab{bottom:326.366550px;}
.y46{bottom:326.708550px;}
.ye4{bottom:328.676550px;}
.y1ba{bottom:329.095800px;}
.yb{bottom:335.731275px;}
.y14c{bottom:336.548175px;}
.y116{bottom:336.926925px;}
.y178{bottom:338.099175px;}
.y13f{bottom:341.063175px;}
.y1b9{bottom:343.723050px;}
.yaa{bottom:344.369925px;}
.y45{bottom:344.755800px;}
.ye3{bottom:346.679925px;}
.y12b{bottom:349.360800px;}
.y77{bottom:350.110500px;}
.y177{bottom:352.738800px;}
.ya{bottom:353.763900px;}
.y14b{bottom:354.580800px;}
.y115{bottom:354.930300px;}
.y1b8{bottom:357.224175px;}
.ya9{bottom:362.417175px;}
.y44{bottom:362.744550px;}
.ye2{bottom:364.712550px;}
.y176{bottom:366.264675px;}
.y7b{bottom:367.015800px;}
.y1b7{bottom:370.750050px;}
.y14a{bottom:372.584175px;}
.y114{bottom:372.977550px;}
.y175{bottom:379.765800px;}
.ya8{bottom:380.420550px;}
.y43{bottom:380.791800px;}
.ye1{bottom:382.715925px;}
.y1b6{bottom:385.377300px;}
.y9{bottom:389.770650px;}
.y149{bottom:390.631425px;}
.y113{bottom:390.980925px;}
.y13e{bottom:394.015800px;}
.ya7{bottom:398.423925px;}
.y42{bottom:398.795175px;}
.y1b5{bottom:398.927925px;}
.ye0{bottom:400.748550px;}
.yca{bottom:407.162550px;}
.y136{bottom:407.920800px;}
.y148{bottom:408.634800px;}
.y112{bottom:409.028175px;}
.y174{bottom:412.342425px;}
.y1b4{bottom:412.429050px;}
.ya6{bottom:416.456550px;}
.y41{bottom:416.842425px;}
.y76{bottom:417.638550px;}
.ydf{bottom:418.766550px;}
.yc9{bottom:425.151300px;}
.y1b3{bottom:425.930175px;}
.y111{bottom:427.016925px;}
.ya5{bottom:434.459925px;}
.y40{bottom:434.831175px;}
.y75{bottom:435.685800px;}
.yde{bottom:436.799175px;}
.y1b2{bottom:440.582175px;}
.y8{bottom:441.595650px;}
.yc8{bottom:443.198550px;}
.y147{bottom:444.670800px;}
.y110{bottom:445.064175px;}
.y173{bottom:448.378425px;}
.ya4{bottom:452.507175px;}
.y3f{bottom:452.878425px;}
.y74{bottom:453.689175px;}
.y1b1{bottom:454.083300px;}
.ydd{bottom:454.802550px;}
.yc7{bottom:461.201925px;}
.y10f{bottom:463.067550px;}
.y172{bottom:466.381800px;}
.y21{bottom:466.508700px;}
.y1b0{bottom:467.584425px;}
.ya3{bottom:470.510550px;}
.y3e{bottom:470.881800px;}
.y73{bottom:471.736425px;}
.ydc{bottom:472.849800px;}
.yc6{bottom:479.234550px;}
.y146{bottom:480.715800px;}
.y10e{bottom:481.100175px;}
.y1af{bottom:481.110300px;}
.y20{bottom:481.508700px;}
.y171{bottom:484.414425px;}
.ya2{bottom:488.557800px;}
.y52{bottom:488.914425px;}
.y72{bottom:489.739800px;}
.ydb{bottom:490.838550px;}
.y1ae{bottom:495.749925px;}
.y1f{bottom:496.508700px;}
.yc5{bottom:497.252550px;}
.y10d{bottom:499.118175px;}
.ya1{bottom:506.561175px;}
.y3d{bottom:506.932425px;}
.y71{bottom:507.728550px;}
.yda{bottom:508.885800px;}
.y1ad{bottom:509.275800px;}
.yc4{bottom:515.285175px;}
.y10c{bottom:517.150800px;}
.y170{bottom:520.465050px;}
.y1e{bottom:521.217150px;}
.y1ac{bottom:522.776925px;}
.ya0{bottom:524.593800px;}
.y51{bottom:524.965050px;}
.y70{bottom:525.775800px;}
.yc3{bottom:533.288550px;}
.y10b{bottom:535.154175px;}
.y1ab{bottom:536.278050px;}
.y1d{bottom:536.971650px;}
.yce{bottom:541.545300px;}
.y9f{bottom:542.597175px;}
.y3c{bottom:542.968425px;}
.y6f{bottom:543.779175px;}
.yd9{bottom:544.936425px;}
.y1aa{bottom:550.942425px;}
.y10a{bottom:553.201425px;}
.y1c{bottom:553.887150px;}
.y16f{bottom:556.515675px;}
.ycd{bottom:557.335800px;}
.y9e{bottom:560.644425px;}
.y3b{bottom:561.015675px;}
.y6e{bottom:561.826425px;}
.y1a9{bottom:564.443550px;}
.y1b{bottom:570.762150px;}
.y109{bottom:571.204800px;}
.y16e{bottom:574.519050px;}
.y1a8{bottom:577.969425px;}
.y9d{bottom:578.647800px;}
.y3a{bottom:579.019050px;}
.y6d{bottom:579.829800px;}
.yd8{bottom:580.972425px;}
.ybb{bottom:583.981425px;}
.yc2{bottom:586.240800px;}
.y1a{bottom:586.543650px;}
.y108{bottom:589.237425px;}
.y1a7{bottom:591.470550px;}
.y16d{bottom:592.551675px;}
.y9c{bottom:596.680425px;}
.y39{bottom:597.051675px;}
.y6c{bottom:597.862425px;}
.yd7{bottom:598.975800px;}
.yba{bottom:601.984800px;}
.y19{bottom:603.418650px;}
.y1a6{bottom:606.097800px;}
.y16c{bottom:610.555050px;}
.y38{bottom:615.055050px;}
.y6b{bottom:615.856425px;}
.yd6{bottom:617.008425px;}
.y1a5{bottom:619.623675px;}
.yb9{bottom:620.032050px;}
.y18{bottom:620.334150px;}
.y107{bottom:621.897000px;}
.y16b{bottom:628.602300px;}
.y9b{bottom:632.716425px;}
.y37{bottom:633.102300px;}
.y1a4{bottom:633.124800px;}
.yd5{bottom:635.026425px;}
.y17{bottom:636.088650px;}
.y106{bottom:639.895500px;}
.y16a{bottom:646.591050px;}
.y1a3{bottom:647.752050px;}
.y66{bottom:648.520500px;}
.y137{bottom:648.910800px;}
.y36{bottom:651.091050px;}
.y16{bottom:652.990650px;}
.yd4{bottom:653.015175px;}
.y105{bottom:657.942000px;}
.y1a2{bottom:661.302675px;}
.y169{bottom:664.638300px;}
.y35{bottom:669.138300px;}
.y15{bottom:669.865650px;}
.yd3{bottom:671.062425px;}
.y6a{bottom:671.065800px;}
.yb8{bottom:672.940800px;}
.y1a1{bottom:674.803800px;}
.y104{bottom:675.940500px;}
.y168{bottom:682.641675px;}
.y9a{bottom:685.644300px;}
.y34{bottom:687.141675px;}
.y1a0{bottom:688.354425px;}
.yd2{bottom:689.065800px;}
.y102{bottom:693.987000px;}
.y167{bottom:700.688925px;}
.y14{bottom:702.535650px;}
.y19f{bottom:702.981675px;}
.y99{bottom:703.691550px;}
.y33{bottom:705.188925px;}
.y129{bottom:706.360500px;}
.y100{bottom:706.363800px;}
.y101{bottom:711.985500px;}
.y12a{bottom:711.985800px;}
.y19e{bottom:716.482800px;}
.y166{bottom:718.692300px;}
.y65{bottom:721.692300px;}
.y98{bottom:721.694925px;}
.y32{bottom:723.192300px;}
.yd1{bottom:723.984300px;}
.y128{bottom:727.765500px;}
.y19d{bottom:730.008675px;}
.y165{bottom:736.724925px;}
.y64{bottom:739.724925px;}
.y97{bottom:739.727550px;}
.yd0{bottom:739.762425px;}
.y31{bottom:741.224925px;}
.y19c{bottom:743.509800px;}
.yff{bottom:748.015500px;}
.y127{bottom:749.140500px;}
.y164{bottom:754.728300px;}
.ycf{bottom:755.515800px;}
.y63{bottom:757.728300px;}
.y96{bottom:757.730925px;}
.y13{bottom:757.735650px;}
.y19b{bottom:758.137050px;}
.y30{bottom:759.228300px;}
.yfe{bottom:766.060500px;}
.y124{bottom:771.670500px;}
.y19a{bottom:771.687675px;}
.y12{bottom:772.360650px;}
.y163{bottom:772.775550px;}
.y62{bottom:775.775550px;}
.y95{bottom:775.778175px;}
.y2f{bottom:777.275550px;}
.yfd{bottom:784.047000px;}
.y199{bottom:785.188800px;}
.y162{bottom:790.778925px;}
.y61{bottom:793.778925px;}
.y94{bottom:793.781550px;}
.y2e{bottom:795.278925px;}
.y11{bottom:796.015650px;}
.y198{bottom:798.714675px;}
.yfc{bottom:802.090500px;}
.y123{bottom:807.715500px;}
.y161{bottom:808.811550px;}
.y60{bottom:811.811550px;}
.y93{bottom:811.814175px;}
.y2d{bottom:813.311550px;}
.y197{bottom:813.341925px;}
.yfa{bottom:814.469175px;}
.yfb{bottom:820.090500px;}
.y160{bottom:826.814925px;}
.y196{bottom:826.843050px;}
.y5f{bottom:829.814925px;}
.y92{bottom:829.817550px;}
.y2c{bottom:831.314925px;}
.y10{bottom:832.055595px;}
.y195{bottom:840.393675px;}
.y15f{bottom:844.862175px;}
.y11f{bottom:847.135500px;}
.y5e{bottom:847.862175px;}
.y91{bottom:847.864800px;}
.y2b{bottom:849.362175px;}
.y194{bottom:855.020925px;}
.yf8{bottom:856.122000px;}
.yf{bottom:861.310800px;}
.y15e{bottom:862.865550px;}
.y5d{bottom:865.865550px;}
.y90{bottom:865.868175px;}
.y2a{bottom:867.365550px;}
.y193{bottom:868.522050px;}
.y11d{bottom:869.665500px;}
.yf6{bottom:874.165500px;}
.y11e{bottom:875.290800px;}
.y15d{bottom:880.898175px;}
.y192{bottom:882.047925px;}
.y5c{bottom:883.898175px;}
.y8f{bottom:883.900800px;}
.y29{bottom:885.398175px;}
.y11a{bottom:891.040500px;}
.yf2{bottom:892.165500px;}
.y191{bottom:895.549050px;}
.y15c{bottom:898.901550px;}
.ye{bottom:901.840650px;}
.y8e{bottom:901.904175px;}
.y28{bottom:903.401550px;}
.yf4{bottom:909.085800px;}
.y190{bottom:910.213425px;}
.y118{bottom:913.585500px;}
.y15b{bottom:916.948800px;}
.yef{bottom:919.210800px;}
.y5b{bottom:919.948800px;}
.y8d{bottom:919.951425px;}
.y13d{bottom:921.029175px;}
.y27{bottom:921.448800px;}
.y18f{bottom:923.714550px;}
.y15a{bottom:934.952175px;}
.y18e{bottom:937.215675px;}
.ycc{bottom:937.952175px;}
.y8c{bottom:937.954800px;}
.yf0{bottom:938.337000px;}
.y13c{bottom:939.076425px;}
.y26{bottom:939.452175px;}
.yc1{bottom:939.829425px;}
.y117{bottom:948.490500px;}
.y18d{bottom:950.741550px;}
.y159{bottom:952.984800px;}
.y5a{bottom:955.984800px;}
.y8b{bottom:955.987425px;}
.y13b{bottom:957.079800px;}
.y25{bottom:957.484800px;}
.yc0{bottom:957.862050px;}
.y3{bottom:961.130850px;}
.y18c{bottom:965.368800px;}
.y8a{bottom:970.615800px;}
.y158{bottom:970.988175px;}
.yb7{bottom:972.488175px;}
.y59{bottom:973.988175px;}
.y89{bottom:973.990800px;}
.ybf{bottom:974.739300px;}
.y13a{bottom:975.112425px;}
.y24{bottom:975.488175px;}
.yee{bottom:976.617675px;}
.y18b{bottom:978.894675px;}
.y1{bottom:988.999500px;}
.y157{bottom:989.020800px;}
.yb6{bottom:990.520800px;}
.ybe{bottom:991.645800px;}
.y58{bottom:992.020800px;}
.yed{bottom:992.395800px;}
.y139{bottom:993.115800px;}
.y23{bottom:993.520800px;}
.y2{bottom:1033.378950px;}
.y22{bottom:1035.561750px;}
.h23{height:16.875000px;}
.h21{height:16.911000px;}
.h24{height:16.912500px;}
.h25{height:21.375000px;}
.h27{height:21.412500px;}
.hc{height:21.871582px;}
.h28{height:22.522500px;}
.h2a{height:22.537500px;}
.h4{height:33.328125px;}
.h26{height:33.787500px;}
.h29{height:34.912500px;}
.h5{height:36.000000px;}
.hd{height:36.597656px;}
.hf{height:37.494141px;}
.h3{height:38.664000px;}
.h7{height:39.647461px;}
.h10{height:40.618652px;}
.h6{height:43.433350px;}
.h22{height:45.039000px;}
.h16{height:47.287500px;}
.he{height:47.381836px;}
.h8{height:51.330322px;}
.h11{height:52.950000px;}
.h1a{height:53.624162px;}
.h1c{height:56.325000px;}
.h9{height:63.175781px;}
.hb{height:67.255884px;}
.ha{height:70.247168px;}
.h2{height:74.646000px;}
.h13{height:80.742920px;}
.h18{height:94.128662px;}
.h1b{height:103.133162px;}
.h14{height:116.628662px;}
.h12{height:125.628662px;}
.h15{height:125.637662px;}
.h1f{height:161.628662px;}
.h19{height:161.808662px;}
.h17{height:166.128662px;}
.h1d{height:175.128662px;}
.h1e{height:206.628662px;}
.h20{height:1013.515500px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w10{width:52.950000px;}
.w11{width:52.951500px;}
.wd{width:54.075000px;}
.wc{width:55.200000px;}
.w5{width:56.325000px;}
.w6{width:56.326500px;}
.w7{width:57.450000px;}
.w8{width:61.986000px;}
.w17{width:64.200000px;}
.wa{width:65.361000px;}
.we{width:84.487500px;}
.w18{width:94.650000px;}
.w13{width:95.775000px;}
.w15{width:103.612500px;}
.w12{width:105.900000px;}
.w14{width:141.937500px;}
.w3{width:350.371500px;}
.w2{width:351.495000px;}
.w16{width:531.705000px;}
.wf{width:542.955000px;}
.wb{width:558.750000px;}
.w9{width:571.125000px;}
.w4{width:574.500000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x5e{left:5.625000px;}
.x52{left:6.735000px;}
.x3f{left:7.860000px;}
.x5f{left:9.000000px;}
.x60{left:10.125000px;}
.x44{left:11.265000px;}
.x68{left:13.545000px;}
.x5a{left:15.780000px;}
.x3d{left:16.905000px;}
.x4f{left:18.030000px;}
.x39{left:19.155000px;}
.x3b{left:20.280000px;}
.x46{left:21.405000px;}
.x31{left:22.500000px;}
.x2d{left:23.617500px;}
.x36{left:24.780000px;}
.x6e{left:25.920000px;}
.x63{left:27.030000px;}
.x70{left:29.280000px;}
.x61{left:31.545000px;}
.x69{left:33.780000px;}
.x6b{left:34.905000px;}
.x6a{left:37.155000px;}
.x71{left:47.295000px;}
.x6f{left:49.545000px;}
.x65{left:52.920000px;}
.x10{left:55.204875px;}
.x5{left:56.700000px;}
.x4{left:58.336950px;}
.xc{left:60.000000px;}
.x48{left:64.200000px;}
.x7{left:65.700000px;}
.x27{left:70.990500px;}
.xf{left:73.237500px;}
.x6{left:74.732625px;}
.xe{left:77.732625px;}
.x14{left:81.112500px;}
.x49{left:82.233750px;}
.x19{left:85.612500px;}
.x73{left:86.756250px;}
.x75{left:93.487500px;}
.x77{left:109.275000px;}
.x17{left:112.647000px;}
.x76{left:113.778750px;}
.x21{left:118.275000px;}
.x18{left:120.523875px;}
.x72{left:122.775000px;}
.x2c{left:127.312500px;}
.x4a{left:130.687500px;}
.x2e{left:137.437500px;}
.x9{left:138.937500px;}
.x53{left:148.687500px;}
.x22{left:150.926250px;}
.x28{left:154.350000px;}
.x1a{left:156.600000px;}
.xa{left:164.850000px;}
.x29{left:166.725000px;}
.x6c{left:176.850000px;}
.x25{left:179.100000px;}
.x6d{left:183.645000px;}
.x2f{left:184.770000px;}
.x4b{left:187.020000px;}
.x8{left:189.645000px;}
.x2b{left:194.895000px;}
.x30{left:196.020000px;}
.x54{left:203.895000px;}
.x12{left:210.675000px;}
.x15{left:212.925000px;}
.x11{left:217.425000px;}
.x1b{left:224.175000px;}
.x1d{left:234.300000px;}
.x2{left:236.123100px;}
.x3{left:242.822550px;}
.x4c{left:244.470000px;}
.x32{left:254.595000px;}
.x55{left:260.220000px;}
.xd{left:261.801450px;}
.x1e{left:273.753375px;}
.x74{left:280.500000px;}
.x62{left:282.750000px;}
.x1{left:292.179600px;}
.x33{left:299.670000px;}
.xb{left:301.155000px;}
.x34{left:313.155000px;}
.x26{left:315.420000px;}
.x56{left:316.545000px;}
.x23{left:323.325000px;}
.x24{left:331.200000px;}
.x2a{left:355.986750px;}
.x35{left:357.120000px;}
.x4d{left:358.245000px;}
.x37{left:367.245000px;}
.x57{left:372.870000px;}
.x64{left:378.525000px;}
.x38{left:414.570000px;}
.x4e{left:415.695000px;}
.x3a{left:424.695000px;}
.x58{left:428.070000px;}
.x3c{left:472.020000px;}
.x50{left:473.145000px;}
.x59{left:483.270000px;}
.x3e{left:485.520000px;}
.x66{left:520.470000px;}
.x40{left:529.470000px;}
.x51{left:530.595000px;}
.x5b{left:539.595000px;}
.x41{left:541.845000px;}
.x42{left:586.905000px;}
.x5c{left:594.780000px;}
.x43{left:598.170000px;}
.x1f{left:613.950000px;}
.x67{left:624.075000px;}
.x20{left:643.233375px;}
.x45{left:644.370000px;}
.x5d{left:651.120000px;}
.x47{left:657.900000px;}
.x1c{left:735.600000px;}
.x16{left:736.725000px;}
.x13{left:737.850000px;}
@media print{
.vb{vertical-align:-64.012000pt;}
.v2{vertical-align:-20.000000pt;}
.v5{vertical-align:-12.000000pt;}
.v4{vertical-align:-8.000000pt;}
.v8{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:4.000000pt;}
.v3{vertical-align:8.000000pt;}
.vc{vertical-align:11.992000pt;}
.v7{vertical-align:16.000000pt;}
.v1{vertical-align:20.000000pt;}
.v9{vertical-align:36.000000pt;}
.va{vertical-align:40.160000pt;}
.vd{vertical-align:52.000000pt;}
.ve{vertical-align:72.000000pt;}
.ls77{letter-spacing:-3.520000pt;}
.ls51{letter-spacing:-3.068000pt;}
.ls76{letter-spacing:-2.640000pt;}
.ls1e{letter-spacing:-2.444000pt;}
.ls56{letter-spacing:-1.980000pt;}
.ls24{letter-spacing:-1.976000pt;}
.ls53{letter-spacing:-1.820000pt;}
.ls52{letter-spacing:-1.656000pt;}
.ls1f{letter-spacing:-1.560000pt;}
.ls67{letter-spacing:-1.540000pt;}
.lsb{letter-spacing:-1.364000pt;}
.ls18{letter-spacing:-1.344000pt;}
.ls21{letter-spacing:-1.300000pt;}
.ls17{letter-spacing:-1.296000pt;}
.ls75{letter-spacing:-1.100000pt;}
.ls5c{letter-spacing:-1.092000pt;}
.ls1d{letter-spacing:-0.988000pt;}
.lsf{letter-spacing:-0.936000pt;}
.ls72{letter-spacing:-0.484000pt;}
.ls50{letter-spacing:-0.416000pt;}
.lsc{letter-spacing:-0.220000pt;}
.ls23{letter-spacing:-0.208000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.082667pt;}
.ls6d{letter-spacing:0.156000pt;}
.ls65{letter-spacing:0.176000pt;}
.ls66{letter-spacing:0.260000pt;}
.ls27{letter-spacing:0.336000pt;}
.ls3e{letter-spacing:0.389333pt;}
.ls8{letter-spacing:0.396000pt;}
.lsd{letter-spacing:0.440000pt;}
.ls4{letter-spacing:0.464000pt;}
.ls12{letter-spacing:0.829200pt;}
.ls11{letter-spacing:0.884000pt;}
.ls70{letter-spacing:0.968000pt;}
.ls57{letter-spacing:1.012000pt;}
.ls14{letter-spacing:1.022000pt;}
.ls38{letter-spacing:1.040000pt;}
.ls62{letter-spacing:1.056000pt;}
.ls31{letter-spacing:1.164000pt;}
.ls63{letter-spacing:1.248000pt;}
.ls2e{letter-spacing:1.270667pt;}
.ls5e{letter-spacing:1.276000pt;}
.ls5{letter-spacing:1.294533pt;}
.ls68{letter-spacing:1.300000pt;}
.ls74{letter-spacing:1.311200pt;}
.ls33{letter-spacing:1.320000pt;}
.ls29{letter-spacing:1.324000pt;}
.ls9{letter-spacing:1.344000pt;}
.ls3{letter-spacing:1.364000pt;}
.ls5b{letter-spacing:1.408000pt;}
.ls73{letter-spacing:1.452000pt;}
.ls5d{letter-spacing:1.496000pt;}
.ls1c{letter-spacing:1.508000pt;}
.ls55{letter-spacing:1.512000pt;}
.ls22{letter-spacing:1.560000pt;}
.ls35{letter-spacing:1.664000pt;}
.ls15{letter-spacing:1.703333pt;}
.ls13{letter-spacing:1.842667pt;}
.ls10{letter-spacing:1.924000pt;}
.ls2{letter-spacing:1.936000pt;}
.ls37{letter-spacing:1.976000pt;}
.ls16{letter-spacing:1.980000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls58{letter-spacing:2.002000pt;}
.lse{letter-spacing:2.028000pt;}
.ls69{letter-spacing:2.112000pt;}
.ls60{letter-spacing:2.132000pt;}
.ls71{letter-spacing:2.156000pt;}
.ls30{letter-spacing:2.420000pt;}
.ls1b{letter-spacing:2.651995pt;}
.ls6c{letter-spacing:2.860000pt;}
.ls26{letter-spacing:3.140000pt;}
.ls4b{letter-spacing:3.156000pt;}
.ls46{letter-spacing:3.289333pt;}
.ls32{letter-spacing:3.364000pt;}
.ls4f{letter-spacing:3.568000pt;}
.ls42{letter-spacing:3.976000pt;}
.ls45{letter-spacing:3.986667pt;}
.ls4a{letter-spacing:4.004000pt;}
.ls2b{letter-spacing:4.092000pt;}
.ls43{letter-spacing:4.472000pt;}
.ls3d{letter-spacing:4.644000pt;}
.ls20{letter-spacing:4.836000pt;}
.ls3a{letter-spacing:5.033333pt;}
.ls4d{letter-spacing:5.089333pt;}
.ls6e{letter-spacing:6.708000pt;}
.ls25{letter-spacing:7.020000pt;}
.ls2d{letter-spacing:7.048000pt;}
.ls2f{letter-spacing:7.364000pt;}
.ls7{letter-spacing:10.008000pt;}
.ls6f{letter-spacing:10.712000pt;}
.ls19{letter-spacing:11.128000pt;}
.ls2a{letter-spacing:11.156000pt;}
.ls1{letter-spacing:11.792000pt;}
.ls0{letter-spacing:11.880000pt;}
.ls61{letter-spacing:13.024000pt;}
.ls36{letter-spacing:13.988000pt;}
.ls6b{letter-spacing:13.992000pt;}
.ls59{letter-spacing:14.124000pt;}
.ls64{letter-spacing:14.196000pt;}
.ls3f{letter-spacing:14.420000pt;}
.ls44{letter-spacing:14.456000pt;}
.ls2c{letter-spacing:14.580000pt;}
.ls3c{letter-spacing:15.156000pt;}
.ls34{letter-spacing:15.376000pt;}
.ls49{letter-spacing:17.264000pt;}
.ls3b{letter-spacing:17.316000pt;}
.ls54{letter-spacing:17.992000pt;}
.ls5a{letter-spacing:18.148000pt;}
.ls28{letter-spacing:18.420000pt;}
.ls5f{letter-spacing:18.460000pt;}
.ls39{letter-spacing:18.616000pt;}
.ls4c{letter-spacing:28.080000pt;}
.ls1a{letter-spacing:40.248000pt;}
.ls4e{letter-spacing:54.258667pt;}
.ls41{letter-spacing:67.262667pt;}
.ls47{letter-spacing:67.305333pt;}
.ls48{letter-spacing:71.293333pt;}
.ls6a{letter-spacing:72.228000pt;}
.ws49{word-spacing:-52.000000pt;}
.ws4a{word-spacing:-51.584000pt;}
.ws52{word-spacing:-50.180000pt;}
.ws54{word-spacing:-37.512000pt;}
.ws4b{word-spacing:-36.000000pt;}
.ws4f{word-spacing:-34.344000pt;}
.ws50{word-spacing:-20.648000pt;}
.wsc{word-spacing:-18.736667pt;}
.wsd{word-spacing:-17.033333pt;}
.ws21{word-spacing:-15.651995pt;}
.ws48{word-spacing:-15.028000pt;}
.ws3d{word-spacing:-14.924000pt;}
.ws24{word-spacing:-14.560000pt;}
.ws41{word-spacing:-14.508000pt;}
.ws68{word-spacing:-14.248000pt;}
.ws3{word-spacing:-14.208000pt;}
.ws26{word-spacing:-13.884000pt;}
.ws83{word-spacing:-13.860000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws64{word-spacing:-13.260000pt;}
.ws22{word-spacing:-13.000000pt;}
.ws7d{word-spacing:-12.980000pt;}
.wsb{word-spacing:-12.936000pt;}
.ws5e{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.064000pt;}
.ws65{word-spacing:-12.056000pt;}
.ws10{word-spacing:-12.000000pt;}
.ws70{word-spacing:-11.908000pt;}
.ws4c{word-spacing:-11.700000pt;}
.ws6{word-spacing:-11.440000pt;}
.ws63{word-spacing:-11.176000pt;}
.ws9{word-spacing:-11.000000pt;}
.wsa{word-spacing:-10.780000pt;}
.wse{word-spacing:-10.704000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws3e{word-spacing:-10.556000pt;}
.ws82{word-spacing:-10.516000pt;}
.ws87{word-spacing:-9.900000pt;}
.ws31{word-spacing:-9.828000pt;}
.ws67{word-spacing:-9.460000pt;}
.ws66{word-spacing:-9.020000pt;}
.ws27{word-spacing:-6.916000pt;}
.ws15{word-spacing:-5.876000pt;}
.ws55{word-spacing:-5.772000pt;}
.ws40{word-spacing:-5.720000pt;}
.ws4e{word-spacing:-5.668000pt;}
.ws23{word-spacing:-5.616000pt;}
.ws61{word-spacing:-4.928000pt;}
.ws6e{word-spacing:-4.784000pt;}
.ws7e{word-spacing:-4.778400pt;}
.ws81{word-spacing:-4.264000pt;}
.ws85{word-spacing:-3.960000pt;}
.ws3a{word-spacing:-3.691995pt;}
.ws2f{word-spacing:-3.432000pt;}
.ws2a{word-spacing:-2.912000pt;}
.ws60{word-spacing:-2.772000pt;}
.ws18{word-spacing:-2.725333pt;}
.ws46{word-spacing:-2.496000pt;}
.ws79{word-spacing:-2.235995pt;}
.ws17{word-spacing:-2.044000pt;}
.ws5c{word-spacing:-2.028000pt;}
.ws19{word-spacing:-1.980000pt;}
.ws7{word-spacing:-1.950000pt;}
.ws1a{word-spacing:-1.936000pt;}
.ws3b{word-spacing:-1.924000pt;}
.ws25{word-spacing:-1.898000pt;}
.ws38{word-spacing:-1.872000pt;}
.ws84{word-spacing:-1.628000pt;}
.ws47{word-spacing:-1.560000pt;}
.ws2b{word-spacing:-1.508000pt;}
.ws76{word-spacing:-1.404000pt;}
.ws6a{word-spacing:-1.352000pt;}
.ws6d{word-spacing:-1.300000pt;}
.ws16{word-spacing:-1.013467pt;}
.ws59{word-spacing:-1.012000pt;}
.ws12{word-spacing:-0.968000pt;}
.ws7a{word-spacing:-0.924000pt;}
.ws2d{word-spacing:-0.884000pt;}
.ws7b{word-spacing:-0.792000pt;}
.ws37{word-spacing:-0.780000pt;}
.ws89{word-spacing:-0.748000pt;}
.ws6b{word-spacing:-0.440000pt;}
.ws8a{word-spacing:-0.352000pt;}
.ws7c{word-spacing:-0.208000pt;}
.ws80{word-spacing:-0.156000pt;}
.ws0{word-spacing:-0.088000pt;}
.ws6f{word-spacing:-0.052000pt;}
.ws11{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.220000pt;}
.ws34{word-spacing:0.312000pt;}
.ws5a{word-spacing:0.528000pt;}
.ws86{word-spacing:0.792000pt;}
.ws78{word-spacing:0.936000pt;}
.ws2c{word-spacing:0.988000pt;}
.ws14{word-spacing:1.040000pt;}
.ws13{word-spacing:1.188000pt;}
.ws56{word-spacing:1.300000pt;}
.ws1e{word-spacing:1.344000pt;}
.ws2e{word-spacing:1.456000pt;}
.ws5{word-spacing:1.672000pt;}
.ws39{word-spacing:1.976000pt;}
.ws58{word-spacing:1.980000pt;}
.ws36{word-spacing:2.080000pt;}
.ws88{word-spacing:2.376000pt;}
.ws35{word-spacing:2.444000pt;}
.ws4d{word-spacing:2.496000pt;}
.ws5f{word-spacing:2.652000pt;}
.ws7f{word-spacing:2.964000pt;}
.ws53{word-spacing:3.068000pt;}
.ws5b{word-spacing:3.848000pt;}
.ws45{word-spacing:3.900000pt;}
.ws1c{word-spacing:3.936000pt;}
.ws57{word-spacing:4.264000pt;}
.wsf{word-spacing:4.320000pt;}
.ws77{word-spacing:4.628000pt;}
.ws29{word-spacing:5.044000pt;}
.ws1f{word-spacing:5.232000pt;}
.ws20{word-spacing:5.280000pt;}
.ws30{word-spacing:5.408000pt;}
.ws4{word-spacing:5.539600pt;}
.ws44{word-spacing:6.084000pt;}
.ws3f{word-spacing:6.396000pt;}
.ws5d{word-spacing:7.904000pt;}
.ws1b{word-spacing:7.968000pt;}
.ws32{word-spacing:8.268000pt;}
.ws33{word-spacing:9.048000pt;}
.ws1d{word-spacing:9.312000pt;}
.ws43{word-spacing:9.412000pt;}
.ws42{word-spacing:13.000000pt;}
.ws62{word-spacing:13.416000pt;}
.ws28{word-spacing:14.040000pt;}
.ws69{word-spacing:20.020000pt;}
.ws51{word-spacing:38.844000pt;}
.ws71{word-spacing:73.817333pt;}
.ws72{word-spacing:157.296533pt;}
.ws75{word-spacing:157.801333pt;}
.ws73{word-spacing:242.014667pt;}
.ws74{word-spacing:250.068000pt;}
.ws3c{word-spacing:649.065067pt;}
._17{margin-left:-12.593600pt;}
._16{margin-left:-11.622400pt;}
._19{margin-left:-9.119200pt;}
._e{margin-left:-7.952800pt;}
._13{margin-left:-6.507600pt;}
._6{margin-left:-5.122000pt;}
._5{margin-left:-4.066000pt;}
._3{margin-left:-2.939200pt;}
._0{margin-left:-1.592800pt;}
._8{width:0.906000pt;}
._1{width:1.804000pt;}
._2{width:3.304400pt;}
._7{width:4.506800pt;}
._10{width:5.532800pt;}
._14{width:6.460400pt;}
._f{width:7.676000pt;}
._a{width:8.642000pt;}
._12{width:10.842400pt;}
._18{width:11.779200pt;}
._9{width:13.227200pt;}
._1d{width:14.176800pt;}
._4{width:15.391200pt;}
._15{width:16.415600pt;}
._1c{width:17.435467pt;}
._1b{width:18.484000pt;}
._1a{width:19.799600pt;}
._b{width:21.158400pt;}
._d{width:22.090000pt;}
._1e{width:23.895600pt;}
._c{width:24.990000pt;}
._11{width:388.149600pt;}
.fs8{font-size:28.000000pt;}
.fs9{font-size:36.000000pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:68.133333pt;}
.fs0{font-size:88.000000pt;}
.fs6{font-size:92.133333pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:2.000267pt;}
.y103{bottom:2.998933pt;}
.yf7{bottom:3.000267pt;}
.yf9{bottom:3.012267pt;}
.y69{bottom:3.013600pt;}
.yf1{bottom:3.025600pt;}
.y122{bottom:4.000267pt;}
.y125{bottom:4.013600pt;}
.y11c{bottom:5.000267pt;}
.y121{bottom:6.000267pt;}
.y11b{bottom:7.000267pt;}
.y120{bottom:8.000267pt;}
.y7a{bottom:9.986933pt;}
.y87{bottom:11.033600pt;}
.y86{bottom:13.033600pt;}
.y119{bottom:18.000267pt;}
.y126{bottom:19.013600pt;}
.y78{bottom:19.026933pt;}
.y67{bottom:19.040267pt;}
.y85{bottom:20.033600pt;}
.yf3{bottom:28.040267pt;}
.y79{bottom:35.026933pt;}
.y68{bottom:39.080267pt;}
.y7{bottom:60.478400pt;}
.y6{bottom:72.478400pt;}
.y18a{bottom:80.301600pt;}
.ybd{bottom:83.636267pt;}
.y138{bottom:84.302933pt;}
.y5{bottom:84.478400pt;}
.y189{bottom:92.302600pt;}
.y4{bottom:96.478400pt;}
.yb5{bottom:97.885600pt;}
.y188{bottom:104.336600pt;}
.ycb{bottom:109.669600pt;}
.yb4{bottom:113.888600pt;}
.y57{bottom:114.218600pt;}
.ybc{bottom:114.669600pt;}
.y50{bottom:115.219600pt;}
.y187{bottom:116.337600pt;}
.y135{bottom:119.312933pt;}
.y84{bottom:122.002667pt;}
.y186{bottom:129.372600pt;}
.yb3{bottom:129.917600pt;}
.y56{bottom:130.247600pt;}
.y4f{bottom:131.248600pt;}
.y134{bottom:135.341933pt;}
.y156{bottom:138.967933pt;}
.y185{bottom:141.373600pt;}
.y88{bottom:145.036267pt;}
.y1c6{bottom:145.360600pt;}
.yb2{bottom:145.920600pt;}
.y4e{bottom:147.251600pt;}
.y133{bottom:151.344933pt;}
.y184{bottom:153.374600pt;}
.y155{bottom:154.996933pt;}
.y1c5{bottom:158.384600pt;}
.yb1{bottom:161.949600pt;}
.y55{bottom:162.279600pt;}
.y4d{bottom:163.280600pt;}
.y183{bottom:165.419600pt;}
.y132{bottom:167.386933pt;}
.y1c4{bottom:170.396600pt;}
.y154{bottom:170.999933pt;}
.yb0{bottom:177.965600pt;}
.y54{bottom:178.295600pt;}
.y182{bottom:178.421600pt;}
.y4c{bottom:179.296600pt;}
.yeb{bottom:180.005933pt;}
.y1c3{bottom:182.397600pt;}
.y131{bottom:183.389933pt;}
.y153{bottom:187.041933pt;}
.y181{bottom:190.444600pt;}
.y83{bottom:191.074933pt;}
.y53{bottom:194.324600pt;}
.y1c2{bottom:194.420600pt;}
.yea{bottom:196.034933pt;}
.y130{bottom:199.418933pt;}
.yec{bottom:201.436267pt;}
.y180{bottom:202.445600pt;}
.y152{bottom:203.044933pt;}
.y81{bottom:206.100933pt;}
.y145{bottom:207.058267pt;}
.y1c1{bottom:207.422600pt;}
.yaf{bottom:209.997600pt;}
.y4b{bottom:210.327600pt;}
.y82{bottom:211.103933pt;}
.ye9{bottom:212.037933pt;}
.y17f{bottom:215.447600pt;}
.yd{bottom:217.333467pt;}
.y151{bottom:219.073933pt;}
.y1c0{bottom:219.423600pt;}
.y7f{bottom:221.100600pt;}
.y144{bottom:223.087267pt;}
.y80{bottom:226.130933pt;}
.y4a{bottom:226.356600pt;}
.y17e{bottom:227.470600pt;}
.ye8{bottom:228.066933pt;}
.y12f{bottom:230.449933pt;}
.yc{bottom:231.369467pt;}
.y1bf{bottom:231.446600pt;}
.y150{bottom:235.076933pt;}
.y7e{bottom:237.121267pt;}
.y143{bottom:239.090267pt;}
.y17d{bottom:239.471600pt;}
.yae{bottom:242.029600pt;}
.y49{bottom:242.359600pt;}
.y1be{bottom:243.447600pt;}
.ye7{bottom:244.069933pt;}
.y12e{bottom:246.452933pt;}
.y14f{bottom:251.105933pt;}
.y17c{bottom:251.472600pt;}
.y7d{bottom:253.124267pt;}
.y142{bottom:255.119267pt;}
.y1bd{bottom:256.482600pt;}
.yad{bottom:258.071600pt;}
.y48{bottom:258.362600pt;}
.ye6{bottom:260.111933pt;}
.y12d{bottom:262.494933pt;}
.y17b{bottom:264.507600pt;}
.y14e{bottom:267.108933pt;}
.y1bc{bottom:268.483600pt;}
.y141{bottom:271.122267pt;}
.yac{bottom:274.074600pt;}
.y47{bottom:274.404600pt;}
.ye5{bottom:276.114933pt;}
.y17a{bottom:276.508600pt;}
.y12c{bottom:278.497933pt;}
.y1bb{bottom:280.484600pt;}
.y14d{bottom:283.150933pt;}
.y7c{bottom:284.168267pt;}
.y140{bottom:287.164267pt;}
.y179{bottom:288.531600pt;}
.yab{bottom:290.103600pt;}
.y46{bottom:290.407600pt;}
.ye4{bottom:292.156933pt;}
.y1ba{bottom:292.529600pt;}
.yb{bottom:298.427800pt;}
.y14c{bottom:299.153933pt;}
.y116{bottom:299.490600pt;}
.y178{bottom:300.532600pt;}
.y13f{bottom:303.167267pt;}
.y1b9{bottom:305.531600pt;}
.yaa{bottom:306.106600pt;}
.y45{bottom:306.449600pt;}
.ye3{bottom:308.159933pt;}
.y12b{bottom:310.542933pt;}
.y77{bottom:311.209333pt;}
.y177{bottom:313.545600pt;}
.ya{bottom:314.456800pt;}
.y14b{bottom:315.182933pt;}
.y115{bottom:315.493600pt;}
.y1b8{bottom:317.532600pt;}
.ya9{bottom:322.148600pt;}
.y44{bottom:322.439600pt;}
.ye2{bottom:324.188933pt;}
.y176{bottom:325.568600pt;}
.y7b{bottom:326.236267pt;}
.y1b7{bottom:329.555600pt;}
.y14a{bottom:331.185933pt;}
.y114{bottom:331.535600pt;}
.y175{bottom:337.569600pt;}
.ya8{bottom:338.151600pt;}
.y43{bottom:338.481600pt;}
.ye1{bottom:340.191933pt;}
.y1b6{bottom:342.557600pt;}
.y9{bottom:346.462800pt;}
.y149{bottom:347.227933pt;}
.y113{bottom:347.538600pt;}
.y13e{bottom:350.236267pt;}
.ya7{bottom:354.154600pt;}
.y42{bottom:354.484600pt;}
.y1b5{bottom:354.602600pt;}
.ye0{bottom:356.220933pt;}
.yca{bottom:361.922267pt;}
.y136{bottom:362.596267pt;}
.y148{bottom:363.230933pt;}
.y112{bottom:363.580600pt;}
.y174{bottom:366.526600pt;}
.y1b4{bottom:366.603600pt;}
.ya6{bottom:370.183600pt;}
.y41{bottom:370.526600pt;}
.y76{bottom:371.234267pt;}
.ydf{bottom:372.236933pt;}
.yc9{bottom:377.912267pt;}
.y1b3{bottom:378.604600pt;}
.y111{bottom:379.570600pt;}
.ya5{bottom:386.186600pt;}
.y40{bottom:386.516600pt;}
.y75{bottom:387.276267pt;}
.yde{bottom:388.265933pt;}
.y1b2{bottom:391.628600pt;}
.y8{bottom:392.529467pt;}
.yc8{bottom:393.954267pt;}
.y147{bottom:395.262933pt;}
.y110{bottom:395.612600pt;}
.y173{bottom:398.558600pt;}
.ya4{bottom:402.228600pt;}
.y3f{bottom:402.558600pt;}
.y74{bottom:403.279267pt;}
.y1b1{bottom:403.629600pt;}
.ydd{bottom:404.268933pt;}
.yc7{bottom:409.957267pt;}
.y10f{bottom:411.615600pt;}
.y172{bottom:414.561600pt;}
.y21{bottom:414.674400pt;}
.y1b0{bottom:415.630600pt;}
.ya3{bottom:418.231600pt;}
.y3e{bottom:418.561600pt;}
.y73{bottom:419.321267pt;}
.ydc{bottom:420.310933pt;}
.yc6{bottom:425.986267pt;}
.y146{bottom:427.302933pt;}
.y10e{bottom:427.644600pt;}
.y1af{bottom:427.653600pt;}
.y20{bottom:428.007733pt;}
.y171{bottom:430.590600pt;}
.ya2{bottom:434.273600pt;}
.y52{bottom:434.590600pt;}
.y72{bottom:435.324267pt;}
.ydb{bottom:436.300933pt;}
.y1ae{bottom:440.666600pt;}
.y1f{bottom:441.341067pt;}
.yc5{bottom:442.002267pt;}
.y10d{bottom:443.660600pt;}
.ya1{bottom:450.276600pt;}
.y3d{bottom:450.606600pt;}
.y71{bottom:451.314267pt;}
.yda{bottom:452.342933pt;}
.y1ad{bottom:452.689600pt;}
.yc4{bottom:458.031267pt;}
.y10c{bottom:459.689600pt;}
.y170{bottom:462.635600pt;}
.y1e{bottom:463.304133pt;}
.y1ac{bottom:464.690600pt;}
.ya0{bottom:466.305600pt;}
.y51{bottom:466.635600pt;}
.y70{bottom:467.356267pt;}
.yc3{bottom:474.034267pt;}
.y10b{bottom:475.692600pt;}
.y1ab{bottom:476.691600pt;}
.y1d{bottom:477.308133pt;}
.yce{bottom:481.373600pt;}
.y9f{bottom:482.308600pt;}
.y3c{bottom:482.638600pt;}
.y6f{bottom:483.359267pt;}
.yd9{bottom:484.387933pt;}
.y1aa{bottom:489.726600pt;}
.y10a{bottom:491.734600pt;}
.y1c{bottom:492.344133pt;}
.y16f{bottom:494.680600pt;}
.ycd{bottom:495.409600pt;}
.y9e{bottom:498.350600pt;}
.y3b{bottom:498.680600pt;}
.y6e{bottom:499.401267pt;}
.y1a9{bottom:501.727600pt;}
.y1b{bottom:507.344133pt;}
.y109{bottom:507.737600pt;}
.y16e{bottom:510.683600pt;}
.y1a8{bottom:513.750600pt;}
.y9d{bottom:514.353600pt;}
.y3a{bottom:514.683600pt;}
.y6d{bottom:515.404267pt;}
.yd8{bottom:516.419933pt;}
.ybb{bottom:519.094600pt;}
.yc2{bottom:521.102933pt;}
.y1a{bottom:521.372133pt;}
.y108{bottom:523.766600pt;}
.y1a7{bottom:525.751600pt;}
.y16d{bottom:526.712600pt;}
.y9c{bottom:530.382600pt;}
.y39{bottom:530.712600pt;}
.y6c{bottom:531.433267pt;}
.yd7{bottom:532.422933pt;}
.yba{bottom:535.097600pt;}
.y19{bottom:536.372133pt;}
.y1a6{bottom:538.753600pt;}
.y16c{bottom:542.715600pt;}
.y38{bottom:546.715600pt;}
.y6b{bottom:547.427933pt;}
.yd6{bottom:548.451933pt;}
.y1a5{bottom:550.776600pt;}
.yb9{bottom:551.139600pt;}
.y18{bottom:551.408133pt;}
.y107{bottom:552.797333pt;}
.y16b{bottom:558.757600pt;}
.y9b{bottom:562.414600pt;}
.y37{bottom:562.757600pt;}
.y1a4{bottom:562.777600pt;}
.yd5{bottom:564.467933pt;}
.y17{bottom:565.412133pt;}
.y106{bottom:568.796000pt;}
.y16a{bottom:574.747600pt;}
.y1a3{bottom:575.779600pt;}
.y66{bottom:576.462667pt;}
.y137{bottom:576.809600pt;}
.y36{bottom:578.747600pt;}
.y16{bottom:580.436133pt;}
.yd4{bottom:580.457933pt;}
.y105{bottom:584.837333pt;}
.y1a2{bottom:587.824600pt;}
.y169{bottom:590.789600pt;}
.y35{bottom:594.789600pt;}
.y15{bottom:595.436133pt;}
.yd3{bottom:596.499933pt;}
.y6a{bottom:596.502933pt;}
.yb8{bottom:598.169600pt;}
.y1a1{bottom:599.825600pt;}
.y104{bottom:600.836000pt;}
.y168{bottom:606.792600pt;}
.y9a{bottom:609.461600pt;}
.y34{bottom:610.792600pt;}
.y1a0{bottom:611.870600pt;}
.yd2{bottom:612.502933pt;}
.y102{bottom:616.877333pt;}
.y167{bottom:622.834600pt;}
.y14{bottom:624.476133pt;}
.y19f{bottom:624.872600pt;}
.y99{bottom:625.503600pt;}
.y33{bottom:626.834600pt;}
.y129{bottom:627.876000pt;}
.y100{bottom:627.878933pt;}
.y101{bottom:632.876000pt;}
.y12a{bottom:632.876267pt;}
.y19e{bottom:636.873600pt;}
.y166{bottom:638.837600pt;}
.y65{bottom:641.504267pt;}
.y98{bottom:641.506600pt;}
.y32{bottom:642.837600pt;}
.yd1{bottom:643.541600pt;}
.y128{bottom:646.902667pt;}
.y19d{bottom:648.896600pt;}
.y165{bottom:654.866600pt;}
.y64{bottom:657.533267pt;}
.y97{bottom:657.535600pt;}
.yd0{bottom:657.566600pt;}
.y31{bottom:658.866600pt;}
.y19c{bottom:660.897600pt;}
.yff{bottom:664.902667pt;}
.y127{bottom:665.902667pt;}
.y164{bottom:670.869600pt;}
.ycf{bottom:671.569600pt;}
.y63{bottom:673.536267pt;}
.y96{bottom:673.538600pt;}
.y13{bottom:673.542800pt;}
.y19b{bottom:673.899600pt;}
.y30{bottom:674.869600pt;}
.yfe{bottom:680.942667pt;}
.y124{bottom:685.929333pt;}
.y19a{bottom:685.944600pt;}
.y12{bottom:686.542800pt;}
.y163{bottom:686.911600pt;}
.y62{bottom:689.578267pt;}
.y95{bottom:689.580600pt;}
.y2f{bottom:690.911600pt;}
.yfd{bottom:696.930667pt;}
.y199{bottom:697.945600pt;}
.y162{bottom:702.914600pt;}
.y61{bottom:705.581267pt;}
.y94{bottom:705.583600pt;}
.y2e{bottom:706.914600pt;}
.y11{bottom:707.569467pt;}
.y198{bottom:709.968600pt;}
.yfc{bottom:712.969333pt;}
.y123{bottom:717.969333pt;}
.y161{bottom:718.943600pt;}
.y60{bottom:721.610267pt;}
.y93{bottom:721.612600pt;}
.y2d{bottom:722.943600pt;}
.y197{bottom:722.970600pt;}
.yfa{bottom:723.972600pt;}
.yfb{bottom:728.969333pt;}
.y160{bottom:734.946600pt;}
.y196{bottom:734.971600pt;}
.y5f{bottom:737.613267pt;}
.y92{bottom:737.615600pt;}
.y2c{bottom:738.946600pt;}
.y10{bottom:739.604973pt;}
.y195{bottom:747.016600pt;}
.y15f{bottom:750.988600pt;}
.y11f{bottom:753.009333pt;}
.y5e{bottom:753.655267pt;}
.y91{bottom:753.657600pt;}
.y2b{bottom:754.988600pt;}
.y194{bottom:760.018600pt;}
.yf8{bottom:760.997333pt;}
.yf{bottom:765.609600pt;}
.y15e{bottom:766.991600pt;}
.y5d{bottom:769.658267pt;}
.y90{bottom:769.660600pt;}
.y2a{bottom:770.991600pt;}
.y193{bottom:772.019600pt;}
.y11d{bottom:773.036000pt;}
.yf6{bottom:777.036000pt;}
.y11e{bottom:778.036267pt;}
.y15d{bottom:783.020600pt;}
.y192{bottom:784.042600pt;}
.y5c{bottom:785.687267pt;}
.y8f{bottom:785.689600pt;}
.y29{bottom:787.020600pt;}
.y11a{bottom:792.036000pt;}
.yf2{bottom:793.036000pt;}
.y191{bottom:796.043600pt;}
.y15c{bottom:799.023600pt;}
.ye{bottom:801.636133pt;}
.y8e{bottom:801.692600pt;}
.y28{bottom:803.023600pt;}
.yf4{bottom:808.076267pt;}
.y190{bottom:809.078600pt;}
.y118{bottom:812.076000pt;}
.y15b{bottom:815.065600pt;}
.yef{bottom:817.076267pt;}
.y5b{bottom:817.732267pt;}
.y8d{bottom:817.734600pt;}
.y13d{bottom:818.692600pt;}
.y27{bottom:819.065600pt;}
.y18f{bottom:821.079600pt;}
.y15a{bottom:831.068600pt;}
.y18e{bottom:833.080600pt;}
.ycc{bottom:833.735267pt;}
.y8c{bottom:833.737600pt;}
.yf0{bottom:834.077333pt;}
.y13c{bottom:834.734600pt;}
.y26{bottom:835.068600pt;}
.yc1{bottom:835.403933pt;}
.y117{bottom:843.102667pt;}
.y18d{bottom:845.103600pt;}
.y159{bottom:847.097600pt;}
.y5a{bottom:849.764267pt;}
.y8b{bottom:849.766600pt;}
.y13b{bottom:850.737600pt;}
.y25{bottom:851.097600pt;}
.yc0{bottom:851.432933pt;}
.y3{bottom:854.338533pt;}
.y18c{bottom:858.105600pt;}
.y8a{bottom:862.769600pt;}
.y158{bottom:863.100600pt;}
.yb7{bottom:864.433933pt;}
.y59{bottom:865.767267pt;}
.y89{bottom:865.769600pt;}
.ybf{bottom:866.434933pt;}
.y13a{bottom:866.766600pt;}
.y24{bottom:867.100600pt;}
.yee{bottom:868.104600pt;}
.y18b{bottom:870.128600pt;}
.y1{bottom:879.110667pt;}
.y157{bottom:879.129600pt;}
.yb6{bottom:880.462933pt;}
.ybe{bottom:881.462933pt;}
.y58{bottom:881.796267pt;}
.yed{bottom:882.129600pt;}
.y139{bottom:882.769600pt;}
.y23{bottom:883.129600pt;}
.y2{bottom:918.559067pt;}
.y22{bottom:920.499333pt;}
.h23{height:15.000000pt;}
.h21{height:15.032000pt;}
.h24{height:15.033333pt;}
.h25{height:19.000000pt;}
.h27{height:19.033333pt;}
.hc{height:19.441406pt;}
.h28{height:20.020000pt;}
.h2a{height:20.033333pt;}
.h4{height:29.625000pt;}
.h26{height:30.033333pt;}
.h29{height:31.033333pt;}
.h5{height:32.000000pt;}
.hd{height:32.531250pt;}
.hf{height:33.328125pt;}
.h3{height:34.368000pt;}
.h7{height:35.242188pt;}
.h10{height:36.105469pt;}
.h6{height:38.607422pt;}
.h22{height:40.034667pt;}
.h16{height:42.033333pt;}
.he{height:42.117188pt;}
.h8{height:45.626953pt;}
.h11{height:47.066667pt;}
.h1a{height:47.665922pt;}
.h1c{height:50.066667pt;}
.h9{height:56.156250pt;}
.hb{height:59.783008pt;}
.ha{height:62.441927pt;}
.h2{height:66.352000pt;}
.h13{height:71.771484pt;}
.h18{height:83.669922pt;}
.h1b{height:91.673922pt;}
.h14{height:103.669922pt;}
.h12{height:111.669922pt;}
.h15{height:111.677922pt;}
.h1f{height:143.669922pt;}
.h19{height:143.829922pt;}
.h17{height:147.669922pt;}
.h1d{height:155.669922pt;}
.h1e{height:183.669922pt;}
.h20{height:900.902667pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w10{width:47.066667pt;}
.w11{width:47.068000pt;}
.wd{width:48.066667pt;}
.wc{width:49.066667pt;}
.w5{width:50.066667pt;}
.w6{width:50.068000pt;}
.w7{width:51.066667pt;}
.w8{width:55.098667pt;}
.w17{width:57.066667pt;}
.wa{width:58.098667pt;}
.we{width:75.100000pt;}
.w18{width:84.133333pt;}
.w13{width:85.133333pt;}
.w15{width:92.100000pt;}
.w12{width:94.133333pt;}
.w14{width:126.166667pt;}
.w3{width:311.441333pt;}
.w2{width:312.440000pt;}
.w16{width:472.626667pt;}
.wf{width:482.626667pt;}
.wb{width:496.666667pt;}
.w9{width:507.666667pt;}
.w4{width:510.666667pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:5.000000pt;}
.x52{left:5.986667pt;}
.x3f{left:6.986667pt;}
.x5f{left:8.000000pt;}
.x60{left:9.000000pt;}
.x44{left:10.013333pt;}
.x68{left:12.040000pt;}
.x5a{left:14.026667pt;}
.x3d{left:15.026667pt;}
.x4f{left:16.026667pt;}
.x39{left:17.026667pt;}
.x3b{left:18.026667pt;}
.x46{left:19.026667pt;}
.x31{left:20.000000pt;}
.x2d{left:20.993333pt;}
.x36{left:22.026667pt;}
.x6e{left:23.040000pt;}
.x63{left:24.026667pt;}
.x70{left:26.026667pt;}
.x61{left:28.040000pt;}
.x69{left:30.026667pt;}
.x6b{left:31.026667pt;}
.x6a{left:33.026667pt;}
.x71{left:42.040000pt;}
.x6f{left:44.040000pt;}
.x65{left:47.040000pt;}
.x10{left:49.071000pt;}
.x5{left:50.400000pt;}
.x4{left:51.855067pt;}
.xc{left:53.333333pt;}
.x48{left:57.066667pt;}
.x7{left:58.400000pt;}
.x27{left:63.102667pt;}
.xf{left:65.100000pt;}
.x6{left:66.429000pt;}
.xe{left:69.095667pt;}
.x14{left:72.100000pt;}
.x49{left:73.096667pt;}
.x19{left:76.100000pt;}
.x73{left:77.116667pt;}
.x75{left:83.100000pt;}
.x77{left:97.133333pt;}
.x17{left:100.130667pt;}
.x76{left:101.136667pt;}
.x21{left:105.133333pt;}
.x18{left:107.132333pt;}
.x72{left:109.133333pt;}
.x2c{left:113.166667pt;}
.x4a{left:116.166667pt;}
.x2e{left:122.166667pt;}
.x9{left:123.500000pt;}
.x53{left:132.166667pt;}
.x22{left:134.156667pt;}
.x28{left:137.200000pt;}
.x1a{left:139.200000pt;}
.xa{left:146.533333pt;}
.x29{left:148.200000pt;}
.x6c{left:157.200000pt;}
.x25{left:159.200000pt;}
.x6d{left:163.240000pt;}
.x2f{left:164.240000pt;}
.x4b{left:166.240000pt;}
.x8{left:168.573333pt;}
.x2b{left:173.240000pt;}
.x30{left:174.240000pt;}
.x54{left:181.240000pt;}
.x12{left:187.266667pt;}
.x15{left:189.266667pt;}
.x11{left:193.266667pt;}
.x1b{left:199.266667pt;}
.x1d{left:208.266667pt;}
.x2{left:209.887200pt;}
.x3{left:215.842267pt;}
.x4c{left:217.306667pt;}
.x32{left:226.306667pt;}
.x55{left:231.306667pt;}
.xd{left:232.712400pt;}
.x1e{left:243.336333pt;}
.x74{left:249.333333pt;}
.x62{left:251.333333pt;}
.x1{left:259.715200pt;}
.x33{left:266.373333pt;}
.xb{left:267.693333pt;}
.x34{left:278.360000pt;}
.x26{left:280.373333pt;}
.x56{left:281.373333pt;}
.x23{left:287.400000pt;}
.x24{left:294.400000pt;}
.x2a{left:316.432667pt;}
.x35{left:317.440000pt;}
.x4d{left:318.440000pt;}
.x37{left:326.440000pt;}
.x57{left:331.440000pt;}
.x64{left:336.466667pt;}
.x38{left:368.506667pt;}
.x4e{left:369.506667pt;}
.x3a{left:377.506667pt;}
.x58{left:380.506667pt;}
.x3c{left:419.573333pt;}
.x50{left:420.573333pt;}
.x59{left:429.573333pt;}
.x3e{left:431.573333pt;}
.x66{left:462.640000pt;}
.x40{left:470.640000pt;}
.x51{left:471.640000pt;}
.x5b{left:479.640000pt;}
.x41{left:481.640000pt;}
.x42{left:521.693333pt;}
.x5c{left:528.693333pt;}
.x43{left:531.706667pt;}
.x1f{left:545.733333pt;}
.x67{left:554.733333pt;}
.x20{left:571.763000pt;}
.x45{left:572.773333pt;}
.x5d{left:578.773333pt;}
.x47{left:584.800000pt;}
.x1c{left:653.866667pt;}
.x16{left:654.866667pt;}
.x13{left:655.866667pt;}
}




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