
    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_93614949e929f1d2a445fa22.woff')format("woff");}.ff1{font-family:ff1;line-height:0.905000;font-style:normal;font-weight: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_dc442bfc4bc88b3c1cfd29d3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.735000;font-style:normal;font-weight: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_5ad43ed4a093cee660d8afaa.woff')format("woff");}.ff3{font-family:ff3;line-height:0.955000;font-style:normal;font-weight: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_44ce98f0d5bfdc54d543dbcc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.770000;font-style:normal;font-weight: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_6df1c66c964c6d1fde2cd5e0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ff36ceca6dac5193cea11b1b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.707000;font-style:normal;font-weight: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_de8afe68a1ae4a89d5a7bb4e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.911000;font-style:normal;font-weight: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_d433467ed67c6a01e4343abc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_943a2197a142e224c2b5a2f9.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2874d24cc6ae75d5ee92d6f5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.794000;font-style:normal;font-weight: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_fd6cc5ddac6dbef1f1d26b37.woff')format("woff");}.ffb{font-family:ffb;line-height:0.672000;font-style:normal;font-weight: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_acbd9d04dd746871065c7376.woff')format("woff");}.ffc{font-family:ffc;line-height:0.718000;font-style:normal;font-weight: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_a74e538324802fa98bdc0d8f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.073000;font-style:normal;font-weight: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_007c0850e2f1573a9913b2fa.woff')format("woff");}.ffe{font-family:ffe;line-height:0.456000;font-style:normal;font-weight: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_897a802e7a82b5b5e2fd7c92.woff')format("woff");}.fff{font-family:fff;line-height:0.895000;font-style:normal;font-weight: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_de946b4027473c57feb280ff.woff')format("woff");}.ff10{font-family:ff10;line-height:0.901000;font-style:normal;font-weight: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_54962ee5c0dc3a420d24f038.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_f5c709b7341d2f9233a6ae39.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_2dc9b89ecb7a6ba218a3e32c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.772000;font-style:normal;font-weight: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_a83d2d637c63e306ceddfc94.woff')format("woff");}.ff14{font-family:ff14;line-height:0.901000;font-style:normal;font-weight: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_deb2cf8863b7773c5cea2b07.woff')format("woff");}.ff15{font-family:ff15;line-height:0.999000;font-style:normal;font-weight: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_32941d7cbb473d5bd3138bc1.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_f9fb3ad42f8e1613e33b92bf.woff')format("woff");}.ff17{font-family:ff17;line-height:0.451000;font-style:normal;font-weight: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_335671035b344de68f598c07.woff')format("woff");}.ff18{font-family:ff18;line-height:2.399000;font-style:normal;font-weight: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_ac1f29323862221c1e230f56.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_757bf9e2cba2a67243dd6ecb.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.705000;font-style:normal;font-weight: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_5106a765ebcee5a157b0f55e.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.704000;font-style:normal;font-weight: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_f55ca83fbec98c2addb32162.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.683000;font-style:normal;font-weight: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_dff29790e6aaf5b43d689beb.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.999000;font-style:normal;font-weight: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_45944d3eb763d92f0f3d2c05.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_e2dcccef0f52a0bd1c49eb80.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.688000;font-style:normal;font-weight: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_e363c4a5d917dd912770cfbb.woff')format("woff");}.ff20{font-family:ff20;line-height:0.852000;font-style:normal;font-weight: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_8019b7b7ba8bbbdcc5ea36d4.woff')format("woff");}.ff21{font-family:ff21;line-height:0.700000;font-style:normal;font-weight: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_648163fe0733a2235f586ad0.woff')format("woff");}.ff22{font-family:ff22;line-height:0.923000;font-style:normal;font-weight: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_3e8b0c971ee41606df63a1c4.woff')format("woff");}.ff23{font-family:ff23;line-height:0.923000;font-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);}
.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);}
.v9{vertical-align:-44.010000px;}
.v2{vertical-align:-23.952000px;}
.v3{vertical-align:-8.100000px;}
.vd{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:9.000000px;}
.v14{vertical-align:12.912000px;}
.v8{vertical-align:17.334000px;}
.v4{vertical-align:19.596000px;}
.v12{vertical-align:20.694000px;}
.ve{vertical-align:21.774000px;}
.v13{vertical-align:23.622000px;}
.v5{vertical-align:24.774000px;}
.v1{vertical-align:26.130000px;}
.v7{vertical-align:31.590000px;}
.v11{vertical-align:32.622000px;}
.v6{vertical-align:40.590000px;}
.vf{vertical-align:42.234000px;}
.v15{vertical-align:57.000000px;}
.vb{vertical-align:65.934000px;}
.v10{vertical-align:81.666000px;}
.vc{vertical-align:84.600000px;}
.va{vertical-align:125.760000px;}
.lsf{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.002580px;}
.ls4{letter-spacing:0.003000px;}
.ls15{letter-spacing:0.003743px;}
.ls7{letter-spacing:0.004800px;}
.ls43{letter-spacing:0.006000px;}
.ls4c{letter-spacing:0.009014px;}
.ls7e{letter-spacing:0.010968px;}
.ls18{letter-spacing:0.012000px;}
.ls90{letter-spacing:0.012538px;}
.ls95{letter-spacing:0.013900px;}
.ls9{letter-spacing:0.016200px;}
.ls47{letter-spacing:0.018000px;}
.ls66{letter-spacing:0.018415px;}
.ls8c{letter-spacing:0.018449px;}
.ls7f{letter-spacing:0.018538px;}
.ls42{letter-spacing:0.022161px;}
.ls6a{letter-spacing:0.022461px;}
.ls3f{letter-spacing:0.023000px;}
.ls36{letter-spacing:0.024000px;}
.ls4b{letter-spacing:0.024499px;}
.ls30{letter-spacing:0.024538px;}
.ls45{letter-spacing:0.025397px;}
.ls8e{letter-spacing:0.026338px;}
.ls69{letter-spacing:0.029652px;}
.ls86{letter-spacing:0.030185px;}
.ls19{letter-spacing:1.301981px;}
.ls5{letter-spacing:1.323000px;}
.ls98{letter-spacing:1.512401px;}
.ls99{letter-spacing:1.662000px;}
.ls9b{letter-spacing:1.668000px;}
.ls6e{letter-spacing:1.673717px;}
.ls50{letter-spacing:1.680000px;}
.ls2{letter-spacing:1.728000px;}
.ls5b{letter-spacing:1.899798px;}
.ls5a{letter-spacing:1.912819px;}
.ls64{letter-spacing:2.148000px;}
.ls3d{letter-spacing:2.151922px;}
.ls51{letter-spacing:2.160000px;}
.ls5e{letter-spacing:2.176695px;}
.ls3c{letter-spacing:2.978656px;}
.ls25{letter-spacing:2.985924px;}
.lsa{letter-spacing:2.987700px;}
.ls37{letter-spacing:2.988277px;}
.ls49{letter-spacing:2.989070px;}
.ls7c{letter-spacing:2.989542px;}
.ls0{letter-spacing:2.990340px;}
.ls4a{letter-spacing:2.990789px;}
.ls1f{letter-spacing:2.991924px;}
.ls3{letter-spacing:2.993700px;}
.ls6{letter-spacing:3.007980px;}
.ls41{letter-spacing:3.407209px;}
.lsb2{letter-spacing:3.444000px;}
.ls20{letter-spacing:3.466985px;}
.ls83{letter-spacing:4.280360px;}
.ls52{letter-spacing:4.392000px;}
.ls6f{letter-spacing:4.423394px;}
.ls67{letter-spacing:5.032118px;}
.ls53{letter-spacing:6.467908px;}
.lsa2{letter-spacing:6.515540px;}
.ls27{letter-spacing:7.170000px;}
.ls21{letter-spacing:7.176000px;}
.ls71{letter-spacing:8.304000px;}
.ls7d{letter-spacing:8.306212px;}
.ls77{letter-spacing:8.306437px;}
.ls23{letter-spacing:8.308808px;}
.ls4e{letter-spacing:8.310000px;}
.ls9e{letter-spacing:8.316000px;}
.ls74{letter-spacing:8.320012px;}
.ls82{letter-spacing:8.330338px;}
.ls89{letter-spacing:8.334000px;}
.lsb5{letter-spacing:8.346000px;}
.ls75{letter-spacing:8.350012px;}
.ls7b{letter-spacing:8.358716px;}
.lsad{letter-spacing:9.440805px;}
.lsac{letter-spacing:9.443836px;}
.lsa9{letter-spacing:9.446805px;}
.lsa8{letter-spacing:9.449836px;}
.ls62{letter-spacing:9.960000px;}
.lsa5{letter-spacing:9.982525px;}
.lsa3{letter-spacing:9.984538px;}
.lsa4{letter-spacing:10.002000px;}
.lsa6{letter-spacing:10.042301px;}
.ls97{letter-spacing:10.161924px;}
.ls59{letter-spacing:10.759608px;}
.lsb4{letter-spacing:11.760000px;}
.ls58{letter-spacing:12.360000px;}
.ls85{letter-spacing:12.960000px;}
.ls5c{letter-spacing:12.974656px;}
.ls17{letter-spacing:13.320000px;}
.ls14{letter-spacing:13.329959px;}
.ls26{letter-spacing:13.346338px;}
.ls32{letter-spacing:13.380000px;}
.ls6b{letter-spacing:14.276360px;}
.lsb3{letter-spacing:14.767542px;}
.ls13{letter-spacing:15.000000px;}
.ls61{letter-spacing:15.480000px;}
.ls88{letter-spacing:15.960277px;}
.ls87{letter-spacing:15.966277px;}
.ls40{letter-spacing:16.310656px;}
.ls54{letter-spacing:16.312365px;}
.ls80{letter-spacing:16.320277px;}
.ls16{letter-spacing:16.321542px;}
.ls6c{letter-spacing:16.322789px;}
.ls8d{letter-spacing:16.326277px;}
.lsa1{letter-spacing:16.557841px;}
.ls68{letter-spacing:16.617617px;}
.ls35{letter-spacing:16.620000px;}
.ls63{letter-spacing:16.651312px;}
.ls5f{letter-spacing:16.653146px;}
.ls28{letter-spacing:16.662000px;}
.ls22{letter-spacing:16.668000px;}
.ls24{letter-spacing:16.677392px;}
.ls1e{letter-spacing:16.680000px;}
.ls57{letter-spacing:16.896000px;}
.ls65{letter-spacing:17.172241px;}
.ls6d{letter-spacing:17.178241px;}
.lsd{letter-spacing:17.226000px;}
.lse{letter-spacing:17.280000px;}
.ls29{letter-spacing:17.640000px;}
.ls93{letter-spacing:18.000000px;}
.ls92{letter-spacing:18.291334px;}
.ls73{letter-spacing:18.351109px;}
.ls2b{letter-spacing:18.364118px;}
.ls70{letter-spacing:18.780000px;}
.ls5d{letter-spacing:18.829314px;}
.ls34{letter-spacing:18.840000px;}
.ls56{letter-spacing:18.942000px;}
.ls38{letter-spacing:19.020000px;}
.ls2f{letter-spacing:19.080000px;}
.ls44{letter-spacing:19.646656px;}
.ls31{letter-spacing:19.650277px;}
.ls2c{letter-spacing:19.656277px;}
.ls12{letter-spacing:19.980000px;}
.ls1c{letter-spacing:20.040000px;}
.ls39{letter-spacing:20.100000px;}
.ls3a{letter-spacing:20.144377px;}
.ls7a{letter-spacing:20.160000px;}
.ls79{letter-spacing:20.220000px;}
.ls9c{letter-spacing:20.820000px;}
.ls9d{letter-spacing:20.880000px;}
.ls8f{letter-spacing:20.948360px;}
.lsc{letter-spacing:21.600000px;}
.ls78{letter-spacing:21.877870px;}
.ls9f{letter-spacing:22.920000px;}
.ls76{letter-spacing:22.987542px;}
.ls8{letter-spacing:24.462000px;}
.ls2e{letter-spacing:24.798000px;}
.ls1d{letter-spacing:24.986201px;}
.ls10{letter-spacing:25.740000px;}
.ls11{letter-spacing:25.800000px;}
.ls1{letter-spacing:25.866000px;}
.ls4d{letter-spacing:26.460000px;}
.ls60{letter-spacing:26.664000px;}
.ls96{letter-spacing:27.138122px;}
.lsa0{letter-spacing:27.420000px;}
.ls9a{letter-spacing:27.480000px;}
.ls4f{letter-spacing:28.094532px;}
.lsaf{letter-spacing:28.190362px;}
.lsab{letter-spacing:28.244160px;}
.ls3b{letter-spacing:29.988000px;}
.ls3e{letter-spacing:29.994000px;}
.lsb{letter-spacing:30.240000px;}
.ls2d{letter-spacing:31.944538px;}
.ls94{letter-spacing:35.460000px;}
.lsa7{letter-spacing:38.520000px;}
.lsb1{letter-spacing:56.434522px;}
.lsb0{letter-spacing:56.488320px;}
.lsaa{letter-spacing:59.770022px;}
.ls8b{letter-spacing:76.632319px;}
.ls8a{letter-spacing:80.930360px;}
.lsae{letter-spacing:88.014182px;}
.ls91{letter-spacing:138.768277px;}
.ls48{letter-spacing:169.440000px;}
.ls33{letter-spacing:269.520277px;}
.ls81{letter-spacing:369.354277px;}
.ls2a{letter-spacing:668.592277px;}
.ls55{letter-spacing:759.090241px;}
.ls1b{letter-spacing:759.950656px;}
.ls1a{letter-spacing:761.126656px;}
.ls72{letter-spacing:908.840360px;}
.ls84{letter-spacing:1358.192360px;}
.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;}
}
.wsc{word-spacing:-62.100000px;}
.ws30{word-spacing:-60.000000px;}
.wsf{word-spacing:-40.948200px;}
.ws2d{word-spacing:-39.084000px;}
.ws42{word-spacing:-34.494000px;}
.ws35{word-spacing:-33.283054px;}
.ws5{word-spacing:-32.993400px;}
.ws49{word-spacing:-31.751546px;}
.wsa{word-spacing:-30.580200px;}
.ws25{word-spacing:-29.994000px;}
.ws2b{word-spacing:-29.064000px;}
.ws34{word-spacing:-28.932000px;}
.wsaa{word-spacing:-28.297958px;}
.ws13{word-spacing:-23.830200px;}
.ws43{word-spacing:-23.604000px;}
.ws4f{word-spacing:-20.244000px;}
.ws5c{word-spacing:-19.284000px;}
.wsa5{word-spacing:-18.939623px;}
.ws33{word-spacing:-18.534000px;}
.ws4d{word-spacing:-17.184000px;}
.ws5d{word-spacing:-17.034000px;}
.ws36{word-spacing:-16.674000px;}
.wsc7{word-spacing:-16.494000px;}
.wscf{word-spacing:-16.374000px;}
.ws32{word-spacing:-16.134000px;}
.ws98{word-spacing:-15.954000px;}
.ws17{word-spacing:-15.894000px;}
.ws85{word-spacing:-15.654000px;}
.wsdb{word-spacing:-15.474000px;}
.wsdc{word-spacing:-15.354000px;}
.ws6e{word-spacing:-15.294000px;}
.ws9f{word-spacing:-14.994000px;}
.ws57{word-spacing:-14.934000px;}
.ws64{word-spacing:-14.814000px;}
.ws37{word-spacing:-14.514000px;}
.ws7c{word-spacing:-14.334000px;}
.ws74{word-spacing:-14.274000px;}
.ws18{word-spacing:-14.094000px;}
.ws68{word-spacing:-14.034000px;}
.ws56{word-spacing:-13.974000px;}
.wsd4{word-spacing:-13.554000px;}
.ws59{word-spacing:-13.316608px;}
.wsda{word-spacing:-12.894000px;}
.wsd9{word-spacing:-12.834000px;}
.ws7a{word-spacing:-12.774000px;}
.ws3c{word-spacing:-12.665400px;}
.wscb{word-spacing:-12.654000px;}
.ws3b{word-spacing:-12.599400px;}
.ws1b{word-spacing:-12.414000px;}
.wsd3{word-spacing:-12.354000px;}
.ws48{word-spacing:-12.174000px;}
.ws9e{word-spacing:-12.114000px;}
.ws60{word-spacing:-12.054000px;}
.wsa0{word-spacing:-11.994000px;}
.ws23{word-spacing:-11.934000px;}
.ws73{word-spacing:-11.874000px;}
.wsce{word-spacing:-11.694000px;}
.wsa4{word-spacing:-11.634000px;}
.ws2a{word-spacing:-11.514000px;}
.ws41{word-spacing:-11.454000px;}
.ws4a{word-spacing:-11.284237px;}
.ws4b{word-spacing:-11.274000px;}
.ws52{word-spacing:-11.214000px;}
.ws1c{word-spacing:-11.094000px;}
.ws4{word-spacing:-11.015400px;}
.ws3a{word-spacing:-10.974000px;}
.ws6{word-spacing:-10.949400px;}
.wsd8{word-spacing:-10.854000px;}
.wsc9{word-spacing:-10.794000px;}
.wsd1{word-spacing:-10.614000px;}
.ws40{word-spacing:-10.554000px;}
.ws1a{word-spacing:-10.314000px;}
.ws5a{word-spacing:-10.194000px;}
.ws20{word-spacing:-10.014000px;}
.ws3f{word-spacing:-9.954000px;}
.ws80{word-spacing:-9.714000px;}
.ws82{word-spacing:-9.414000px;}
.wsc2{word-spacing:-9.294000px;}
.wsc5{word-spacing:-9.174000px;}
.ws87{word-spacing:-8.934000px;}
.ws16{word-spacing:-8.754000px;}
.ws6a{word-spacing:-8.694000px;}
.ws1f{word-spacing:-8.394000px;}
.ws5f{word-spacing:-8.334000px;}
.wsa3{word-spacing:-8.274000px;}
.ws90{word-spacing:-8.214000px;}
.ws44{word-spacing:-7.914000px;}
.ws54{word-spacing:-7.854000px;}
.wsde{word-spacing:-7.794000px;}
.ws8e{word-spacing:-7.614000px;}
.wsc3{word-spacing:-7.554000px;}
.ws67{word-spacing:-7.494000px;}
.ws65{word-spacing:-7.434000px;}
.ws7f{word-spacing:-7.374000px;}
.ws6b{word-spacing:-7.314000px;}
.ws89{word-spacing:-7.074000px;}
.ws88{word-spacing:-6.894000px;}
.wsc8{word-spacing:-6.834000px;}
.ws79{word-spacing:-6.654000px;}
.ws7b{word-spacing:-6.474000px;}
.wsd0{word-spacing:-6.414000px;}
.wse9{word-spacing:-6.294000px;}
.wsd2{word-spacing:-6.234000px;}
.ws78{word-spacing:-6.054000px;}
.ws76{word-spacing:-5.994000px;}
.ws99{word-spacing:-5.874000px;}
.ws91{word-spacing:-5.805662px;}
.ws9b{word-spacing:-5.745662px;}
.ws22{word-spacing:-5.274000px;}
.wse6{word-spacing:-5.034000px;}
.ws1d{word-spacing:-4.914000px;}
.ws92{word-spacing:-4.854000px;}
.ws26{word-spacing:-4.374000px;}
.ws24{word-spacing:-4.254000px;}
.wse7{word-spacing:-4.194000px;}
.ws46{word-spacing:-4.134000px;}
.ws93{word-spacing:-3.654000px;}
.wscc{word-spacing:-3.594000px;}
.wsc0{word-spacing:-3.414000px;}
.wsbf{word-spacing:-3.354000px;}
.ws96{word-spacing:-3.294000px;}
.ws81{word-spacing:-3.054000px;}
.ws97{word-spacing:-2.754000px;}
.ws39{word-spacing:-2.634000px;}
.ws70{word-spacing:-2.514000px;}
.wse8{word-spacing:-2.274000px;}
.ws5e{word-spacing:-2.214000px;}
.ws86{word-spacing:-2.154000px;}
.ws6f{word-spacing:-1.905662px;}
.wsd6{word-spacing:-1.854000px;}
.wsc4{word-spacing:-1.554000px;}
.ws77{word-spacing:-1.494000px;}
.ws58{word-spacing:-1.485662px;}
.ws1e{word-spacing:-1.434000px;}
.ws63{word-spacing:-1.314000px;}
.wsa1{word-spacing:-1.254000px;}
.wsca{word-spacing:-1.194000px;}
.wsdf{word-spacing:-1.014000px;}
.ws69{word-spacing:-1.009801px;}
.ws29{word-spacing:-0.954000px;}
.ws8f{word-spacing:-0.894000px;}
.ws8d{word-spacing:-0.714000px;}
.ws8b{word-spacing:-0.114000px;}
.ws38{word-spacing:-0.072000px;}
.wsa6{word-spacing:-0.053798px;}
.ws3{word-spacing:-0.046200px;}
.ws2e{word-spacing:-0.041999px;}
.ws19{word-spacing:0.000000px;}
.ws95{word-spacing:0.006000px;}
.ws2c{word-spacing:0.011955px;}
.ws3d{word-spacing:0.014338px;}
.ws2f{word-spacing:0.071731px;}
.ws6d{word-spacing:0.246000px;}
.wse1{word-spacing:0.486000px;}
.ws27{word-spacing:0.606000px;}
.ws94{word-spacing:0.786000px;}
.wscd{word-spacing:0.966000px;}
.ws6c{word-spacing:1.026000px;}
.wsc6{word-spacing:1.746000px;}
.wse{word-spacing:2.946120px;}
.ws7e{word-spacing:3.186000px;}
.ws55{word-spacing:3.598491px;}
.ws66{word-spacing:4.274338px;}
.ws62{word-spacing:5.466000px;}
.ws61{word-spacing:5.526000px;}
.wsa2{word-spacing:6.846000px;}
.ws72{word-spacing:7.138626px;}
.wse5{word-spacing:7.446000px;}
.wse0{word-spacing:7.926000px;}
.ws9d{word-spacing:8.406000px;}
.wsc1{word-spacing:8.826000px;}
.ws47{word-spacing:9.254338px;}
.wsd7{word-spacing:10.326000px;}
.ws75{word-spacing:10.386000px;}
.ws84{word-spacing:11.046000px;}
.wse3{word-spacing:12.126000px;}
.ws71{word-spacing:12.564831px;}
.ws83{word-spacing:14.286000px;}
.ws9c{word-spacing:16.127770px;}
.ws3e{word-spacing:16.270328px;}
.ws14{word-spacing:16.944000px;}
.ws12{word-spacing:17.118000px;}
.wsb{word-spacing:17.172000px;}
.ws9{word-spacing:17.604000px;}
.wse4{word-spacing:17.646000px;}
.ws5b{word-spacing:19.612458px;}
.ws9a{word-spacing:19.615376px;}
.ws10{word-spacing:20.790000px;}
.ws53{word-spacing:21.420000px;}
.wsd{word-spacing:22.302000px;}
.ws8a{word-spacing:22.860000px;}
.ws2{word-spacing:23.400000px;}
.ws7{word-spacing:24.084000px;}
.wse2{word-spacing:24.726000px;}
.ws7d{word-spacing:25.506000px;}
.wsdd{word-spacing:25.866000px;}
.ws28{word-spacing:26.928000px;}
.ws8c{word-spacing:27.360000px;}
.wsa8{word-spacing:28.136563px;}
.wsa7{word-spacing:28.190362px;}
.ws8{word-spacing:28.242000px;}
.ws45{word-spacing:28.815084px;}
.wsd5{word-spacing:29.160000px;}
.ws11{word-spacing:29.655000px;}
.ws1{word-spacing:31.314000px;}
.ws15{word-spacing:31.416000px;}
.ws0{word-spacing:31.824000px;}
.ws21{word-spacing:47.124000px;}
.wsb7{word-spacing:56.434522px;}
.wsa9{word-spacing:59.740135px;}
.wsb4{word-spacing:87.984295px;}
.wsb9{word-spacing:112.869043px;}
.wsb5{word-spacing:169.357363px;}
.wsab{word-spacing:172.716775px;}
.wsbc{word-spacing:197.601523px;}
.wsb6{word-spacing:225.845683px;}
.wsbd{word-spacing:282.334003px;}
.wsac{word-spacing:285.639616px;}
.ws50{word-spacing:288.576000px;}
.wsba{word-spacing:367.012685px;}
.wsad{word-spacing:398.562458px;}
.wsaf{word-spacing:398.616256px;}
.wsbe{word-spacing:423.447206px;}
.wsb8{word-spacing:483.294938px;}
.wsae{word-spacing:511.539098px;}
.wsbb{word-spacing:536.477645px;}
.ws51{word-spacing:614.976000px;}
.wsb2{word-spacing:624.461939px;}
.wsb0{word-spacing:624.515738px;}
.wsb1{word-spacing:737.438579px;}
.ws4e{word-spacing:757.296000px;}
.ws4c{word-spacing:766.596000px;}
.wsb3{word-spacing:850.415219px;}
.ws31{word-spacing:869.616000px;}
._20{margin-left:-28.297958px;}
._e{margin-left:-16.677392px;}
._2{margin-left:-7.650000px;}
._6{margin-left:-6.390000px;}
._1{margin-left:-5.304000px;}
._9{margin-left:-4.102680px;}
._0{margin-left:-2.958000px;}
._3{margin-left:-1.944000px;}
._5{width:1.002000px;}
._4{width:2.992680px;}
._1c{width:4.680000px;}
._1d{width:6.659089px;}
._1b{width:8.814000px;}
._d{width:14.058000px;}
._8{width:16.572000px;}
._1a{width:18.912000px;}
._15{width:19.980000px;}
._b{width:20.982000px;}
._16{width:22.080000px;}
._f{width:23.922000px;}
._13{width:26.862000px;}
._2f{width:30.000000px;}
._10{width:37.950000px;}
._a{width:40.464000px;}
._17{width:44.942590px;}
._7{width:47.208000px;}
._1e{width:56.434522px;}
._c{width:66.750836px;}
._19{width:81.000000px;}
._2a{width:84.678682px;}
._18{width:94.111320px;}
._1f{width:112.922842px;}
._21{width:141.167002px;}
._23{width:169.411162px;}
._14{width:184.061763px;}
._2b{width:197.547725px;}
._22{width:225.899482px;}
._2d{width:254.089843px;}
._2c{width:310.524365px;}
._25{width:338.876122px;}
._27{width:367.066483px;}
._24{width:395.310643px;}
._26{width:423.554803px;}
._2e{width:451.798963px;}
._29{width:536.423846px;}
._28{width:564.668006px;}
._11{width:685.380000px;}
._12{width:896.340000px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:29.887800px;}
.fsc{font-size:30.000000px;}
.fs6{font-size:37.800000px;}
.fsb{font-size:41.999400px;}
.fs3{font-size:46.200000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:50.400000px;}
.fse{font-size:53.798400px;}
.fs5{font-size:54.000000px;}
.fsa{font-size:59.775600px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:283.819500px;}
.y9b{bottom:327.588000px;}
.y40{bottom:328.588500px;}
.ye0{bottom:329.254500px;}
.y1c8{bottom:331.068000px;}
.y178{bottom:331.860000px;}
.y101{bottom:333.382500px;}
.y1a9{bottom:334.056000px;}
.y122{bottom:334.818000px;}
.y18e{bottom:335.521500px;}
.y9a{bottom:338.146500px;}
.y147{bottom:341.409000px;}
.y1c{bottom:344.505000px;}
.y3f{bottom:346.588500px;}
.ydf{bottom:347.254500px;}
.y177{bottom:348.298500px;}
.y100{bottom:351.382500px;}
.y18d{bottom:351.960000px;}
.y121{bottom:352.818000px;}
.y146{bottom:357.847500px;}
.y1b{bottom:362.505000px;}
.y1c7{bottom:364.012500px;}
.y176{bottom:364.737000px;}
.yde{bottom:365.254500px;}
.yff{bottom:366.154500px;}
.y1a8{bottom:367.000500px;}
.y76{bottom:367.381500px;}
.y18c{bottom:368.398500px;}
.yfd{bottom:369.382500px;}
.y120{bottom:370.818000px;}
.yfe{bottom:372.481500px;}
.y145{bottom:374.286000px;}
.y3e{bottom:375.862500px;}
.y5b{bottom:376.470000px;}
.y99{bottom:379.558500px;}
.y1a{bottom:380.505000px;}
.y175{bottom:381.175500px;}
.y1c6{bottom:382.012500px;}
.ydd{bottom:383.254500px;}
.y18b{bottom:384.837000px;}
.y1a7{bottom:385.000500px;}
.y3d{bottom:386.152500px;}
.y144{bottom:390.724500px;}
.ybb{bottom:391.389000px;}
.y174{bottom:397.614000px;}
.y11f{bottom:397.785000px;}
.y1c5{bottom:400.012500px;}
.ydc{bottom:401.254500px;}
.y18a{bottom:401.275500px;}
.y1a6{bottom:403.000500px;}
.y75{bottom:404.809500px;}
.y98{bottom:406.525500px;}
.y143{bottom:407.163000px;}
.yfc{bottom:408.642000px;}
.yba{bottom:409.389000px;}
.y19{bottom:411.954000px;}
.y5a{bottom:412.402500px;}
.y173{bottom:414.052500px;}
.y189{bottom:417.712500px;}
.y1c4{bottom:418.012500px;}
.ydb{bottom:419.254500px;}
.y1a5{bottom:421.000500px;}
.y142{bottom:423.601500px;}
.y3c{bottom:424.617000px;}
.y74{bottom:425.797500px;}
.yfb{bottom:426.642000px;}
.yb9{bottom:427.389000px;}
.y172{bottom:430.489500px;}
.y188{bottom:434.151000px;}
.y18{bottom:435.954000px;}
.y11e{bottom:436.717500px;}
.yda{bottom:437.254500px;}
.y1a4{bottom:439.000500px;}
.y141{bottom:440.040000px;}
.y97{bottom:442.539000px;}
.yfa{bottom:444.642000px;}
.y73{bottom:445.293000px;}
.yb8{bottom:445.389000px;}
.y3b{bottom:445.650000px;}
.y171{bottom:446.928000px;}
.y59{bottom:448.335000px;}
.y187{bottom:450.589500px;}
.y1c3{bottom:450.955500px;}
.y11d{bottom:454.717500px;}
.yd9{bottom:455.254500px;}
.y140{bottom:456.478500px;}
.y96{bottom:460.539000px;}
.yf9{bottom:462.642000px;}
.y170{bottom:463.366500px;}
.yb7{bottom:463.389000px;}
.y3a{bottom:463.650000px;}
.y186{bottom:467.028000px;}
.y1c2{bottom:468.955500px;}
.y1a3{bottom:471.945000px;}
.y13f{bottom:472.915500px;}
.yd8{bottom:473.254500px;}
.y95{bottom:478.539000px;}
.y72{bottom:479.730000px;}
.y16f{bottom:479.805000px;}
.yf8{bottom:480.642000px;}
.yb6{bottom:481.389000px;}
.y39{bottom:481.650000px;}
.y185{bottom:483.466500px;}
.y58{bottom:484.267500px;}
.yd7{bottom:486.082500px;}
.y13e{bottom:489.354000px;}
.y1a2{bottom:489.945000px;}
.y11c{bottom:490.650000px;}
.yd6{bottom:491.254500px;}
.y16e{bottom:496.243500px;}
.y94{bottom:496.539000px;}
.yb5{bottom:499.389000px;}
.y184{bottom:499.905000px;}
.y1c1{bottom:501.900000px;}
.y13d{bottom:505.792500px;}
.y1a1{bottom:507.945000px;}
.yd5{bottom:510.931500px;}
.yf7{bottom:512.092500px;}
.y16d{bottom:512.682000px;}
.y17{bottom:513.751500px;}
.y71{bottom:515.664000px;}
.y183{bottom:516.343500px;}
.y38{bottom:517.099500px;}
.yb4{bottom:517.389000px;}
.y1c0{bottom:519.900000px;}
.y57{bottom:520.200000px;}
.y13c{bottom:522.231000px;}
.y93{bottom:523.506000px;}
.y11b{bottom:526.582500px;}
.y16{bottom:528.001500px;}
.yd4{bottom:528.931500px;}
.y16c{bottom:529.120500px;}
.y182{bottom:532.782000px;}
.yb3{bottom:535.389000px;}
.yf6{bottom:536.092500px;}
.y1bf{bottom:537.900000px;}
.y13b{bottom:538.669500px;}
.y1a0{bottom:540.888000px;}
.y70{bottom:542.629500px;}
.y92{bottom:544.506000px;}
.y11a{bottom:544.582500px;}
.y16b{bottom:545.559000px;}
.yd3{bottom:546.931500px;}
.y181{bottom:549.220500px;}
.y37{bottom:552.547500px;}
.y13a{bottom:555.108000px;}
.y56{bottom:556.134000px;}
.y15{bottom:557.196000px;}
.y19f{bottom:558.888000px;}
.y16a{bottom:561.997500px;}
.yb2{bottom:562.354500px;}
.yd2{bottom:564.931500px;}
.y180{bottom:565.659000px;}
.y14{bottom:568.633500px;}
.y1be{bottom:570.844500px;}
.y139{bottom:571.546500px;}
.y119{bottom:571.549500px;}
.y12{bottom:573.696000px;}
.y169{bottom:578.436000px;}
.y13{bottom:579.418500px;}
.y6f{bottom:580.062000px;}
.y91{bottom:582.019500px;}
.y17f{bottom:582.096000px;}
.yd1{bottom:582.931500px;}
.y138{bottom:587.985000px;}
.y36{bottom:587.997000px;}
.y1bd{bottom:588.844500px;}
.y11{bottom:590.196000px;}
.y19e{bottom:591.832500px;}
.y55{bottom:592.066500px;}
.y168{bottom:594.874500px;}
.yf5{bottom:596.025000px;}
.y17e{bottom:598.534500px;}
.yb1{bottom:599.787000px;}
.yd0{bottom:600.931500px;}
.y90{bottom:602.374500px;}
.y137{bottom:604.423500px;}
.y10{bottom:606.696000px;}
.y1bc{bottom:606.844500px;}
.y19d{bottom:609.832500px;}
.y118{bottom:610.482000px;}
.y167{bottom:611.311500px;}
.ycf{bottom:613.758000px;}
.yf4{bottom:614.025000px;}
.y17d{bottom:614.973000px;}
.y6e{bottom:615.996000px;}
.yb0{bottom:617.787000px;}
.yce{bottom:618.931500px;}
.y8f{bottom:620.374500px;}
.y136{bottom:620.862000px;}
.y54{bottom:621.844500px;}
.yf{bottom:623.196000px;}
.y35{bottom:623.446500px;}
.y166{bottom:627.750000px;}
.y19c{bottom:627.832500px;}
.y117{bottom:630.642000px;}
.y17c{bottom:631.411500px;}
.yf3{bottom:632.025000px;}
.y53{bottom:632.134500px;}
.ycd{bottom:636.931500px;}
.y135{bottom:637.300500px;}
.ye{bottom:639.696000px;}
.y1bb{bottom:639.787500px;}
.y8e{bottom:640.729500px;}
.y165{bottom:644.188500px;}
.y34{bottom:644.478000px;}
.y116{bottom:648.642000px;}
.yf2{bottom:650.025000px;}
.y6d{bottom:651.928500px;}
.yaf{bottom:653.721000px;}
.ycc{bottom:654.931500px;}
.y1ba{bottom:657.787500px;}
.y17b{bottom:658.461000px;}
.y8d{bottom:658.729500px;}
.y164{bottom:660.627000px;}
.yd{bottom:660.679500px;}
.y19b{bottom:660.777000px;}
.y33{bottom:662.478000px;}
.y115{bottom:666.642000px;}
.y134{bottom:670.176000px;}
.y6c{bottom:674.410500px;}
.y52{bottom:674.875500px;}
.yf1{bottom:676.990500px;}
.y163{bottom:677.065500px;}
.y19a{bottom:678.777000px;}
.y8c{bottom:679.086000px;}
.y17a{bottom:685.426500px;}
.ycb{bottom:686.380500px;}
.y133{bottom:686.614500px;}
.y32{bottom:689.445000px;}
.y1b9{bottom:690.732000px;}
.y6b{bottom:692.410500px;}
.y162{bottom:693.504000px;}
.y114{bottom:693.609000px;}
.y51{bottom:695.143500px;}
.yae{bottom:695.332500px;}
.yf0{bottom:696.486000px;}
.y199{bottom:696.777000px;}
.y8b{bottom:697.086000px;}
.y132{bottom:703.053000px;}
.y50{bottom:705.433500px;}
.y179{bottom:706.426500px;}
.y1b8{bottom:708.732000px;}
.y161{bottom:709.942500px;}
.yc{bottom:713.044500px;}
.yad{bottom:713.332500px;}
.yef{bottom:714.486000px;}
.y6a{bottom:714.894000px;}
.y8a{bottom:717.441000px;}
.y131{bottom:719.491500px;}
.y31{bottom:723.894000px;}
.y160{bottom:726.381000px;}
.yca{bottom:727.255500px;}
.y4f{bottom:728.677500px;}
.y198{bottom:729.720000px;}
.yee{bottom:732.486000px;}
.y113{bottom:732.541500px;}
.y69{bottom:732.894000px;}
.yb{bottom:733.294500px;}
.y130{bottom:735.930000px;}
.y89{bottom:736.935000px;}
.yac{bottom:740.299500px;}
.y1b7{bottom:741.675000px;}
.y15f{bottom:742.819500px;}
.yc9{bottom:745.255500px;}
.y197{bottom:747.720000px;}
.y30{bottom:747.894000px;}
.yed{bottom:748.990500px;}
.y112{bottom:750.541500px;}
.y12f{bottom:752.368500px;}
.y88{bottom:753.441000px;}
.y15e{bottom:759.258000px;}
.y1b6{bottom:759.675000px;}
.y4e{bottom:762.417000px;}
.yc8{bottom:763.255500px;}
.y196{bottom:765.720000px;}
.yec{bottom:766.990500px;}
.y111{bottom:768.541500px;}
.y12e{bottom:768.807000px;}
.y68{bottom:768.826500px;}
.ya9{bottom:771.112500px;}
.y87{bottom:773.796000px;}
.yab{bottom:774.490500px;}
.y15d{bottom:775.695000px;}
.y1b5{bottom:777.675000px;}
.yc7{bottom:781.255500px;}
.ya8{bottom:784.780500px;}
.y12d{bottom:785.245500px;}
.yeb{bottom:786.486000px;}
.y110{bottom:786.541500px;}
.y2f{bottom:788.860500px;}
.ya{bottom:789.409500px;}
.y86{bottom:791.796000px;}
.y15c{bottom:792.133500px;}
.y4d{bottom:793.857000px;}
.yaa{bottom:794.928000px;}
.y195{bottom:798.664500px;}
.yc6{bottom:799.255500px;}
.y12c{bottom:801.684000px;}
.yea{bottom:804.486000px;}
.y10f{bottom:804.541500px;}
.y67{bottom:804.760500px;}
.y15b{bottom:808.572000px;}
.y9{bottom:809.659500px;}
.y2e{bottom:809.892000px;}
.y1b4{bottom:810.619500px;}
.y85{bottom:812.151000px;}
.y194{bottom:816.664500px;}
.y4c{bottom:817.633500px;}
.y12b{bottom:818.121000px;}
.ye9{bottom:822.486000px;}
.y15a{bottom:825.010500px;}
.y2d{bottom:827.892000px;}
.y1b3{bottom:828.619500px;}
.y84{bottom:830.151000px;}
.yc5{bottom:830.706000px;}
.ya7{bottom:830.722500px;}
.y10e{bottom:831.508500px;}
.y12a{bottom:834.559500px;}
.y8{bottom:835.897500px;}
.y4b{bottom:840.117000px;}
.ye8{bottom:840.486000px;}
.y66{bottom:840.693000px;}
.y159{bottom:841.449000px;}
.y1b2{bottom:846.619500px;}
.y2c{bottom:848.925000px;}
.y193{bottom:849.609000px;}
.y7{bottom:850.159500px;}
.y83{bottom:850.506000px;}
.y158{bottom:857.887500px;}
.y4a{bottom:858.117000px;}
.ye7{bottom:858.486000px;}
.ya4{bottom:861.400500px;}
.y129{bottom:861.609000px;}
.ya6{bottom:864.508500px;}
.y2b{bottom:866.925000px;}
.y192{bottom:867.609000px;}
.y6{bottom:870.409500px;}
.y10d{bottom:870.441000px;}
.yc4{bottom:871.581000px;}
.y157{bottom:874.326000px;}
.ya3{bottom:875.067000px;}
.y49{bottom:876.117000px;}
.y65{bottom:876.625500px;}
.y1b1{bottom:879.564000px;}
.y2a{bottom:884.925000px;}
.ya5{bottom:885.214500px;}
.ye6{bottom:888.441000px;}
.y128{bottom:888.574500px;}
.y82{bottom:888.861000px;}
.yc3{bottom:889.581000px;}
.y156{bottom:890.764500px;}
.y5{bottom:896.647500px;}
.y1b0{bottom:897.564000px;}
.y191{bottom:900.552000px;}
.y29{bottom:902.925000px;}
.y64{bottom:903.592500px;}
.y10c{bottom:906.441000px;}
.y81{bottom:906.861000px;}
.y155{bottom:907.203000px;}
.yc2{bottom:907.581000px;}
.y127{bottom:909.574500px;}
.y48{bottom:912.049500px;}
.y1af{bottom:915.564000px;}
.y190{bottom:918.552000px;}
.ya2{bottom:920.176500px;}
.y28{bottom:920.925000px;}
.y4{bottom:921.370500px;}
.y154{bottom:923.641500px;}
.y10b{bottom:924.441000px;}
.yc1{bottom:925.581000px;}
.y80{bottom:927.216000px;}
.ye5{bottom:930.373500px;}
.y1ae{bottom:933.564000px;}
.y27{bottom:938.925000px;}
.y153{bottom:940.078500px;}
.y63{bottom:941.025000px;}
.y10a{bottom:942.441000px;}
.y7f{bottom:945.216000px;}
.ya1{bottom:947.142000px;}
.y47{bottom:947.982000px;}
.ye4{bottom:948.373500px;}
.y126{bottom:948.507000px;}
.y18f{bottom:950.002500px;}
.y152{bottom:956.517000px;}
.y26{bottom:956.925000px;}
.y62{bottom:959.025000px;}
.y109{bottom:960.441000px;}
.yc0{bottom:960.985500px;}
.y7e{bottom:965.571000px;}
.ye3{bottom:966.373500px;}
.y125{bottom:966.507000px;}
.y151{bottom:972.955500px;}
.y3{bottom:973.008000px;}
.y61{bottom:977.025000px;}
.y46{bottom:977.760000px;}
.y108{bottom:978.441000px;}
.y1cb{bottom:981.451500px;}
.ye2{bottom:984.373500px;}
.y124{bottom:984.507000px;}
.ya0{bottom:984.574500px;}
.y7d{bottom:985.065000px;}
.y44{bottom:988.050000px;}
.y25{bottom:988.374000px;}
.y150{bottom:989.394000px;}
.ybf{bottom:996.390000px;}
.y107{bottom:996.441000px;}
.y45{bottom:998.197500px;}
.y1ca{bottom:999.451500px;}
.y60{bottom:999.507000px;}
.ye1{bottom:1002.373500px;}
.y123{bottom:1002.507000px;}
.y14f{bottom:1005.832500px;}
.y2{bottom:1006.758000px;}
.y7c{bottom:1010.538000px;}
.ybe{bottom:1014.390000px;}
.y106{bottom:1014.441000px;}
.y1ad{bottom:1017.451500px;}
.y5f{bottom:1017.507000px;}
.y9f{bottom:1020.507000px;}
.y14e{bottom:1022.271000px;}
.y7b{bottom:1028.538000px;}
.y24{bottom:1029.339000px;}
.y43{bottom:1030.957500px;}
.y1ac{bottom:1035.451500px;}
.y14d{bottom:1038.709500px;}
.y1{bottom:1040.508000px;}
.y105{bottom:1041.406500px;}
.y23{bottom:1047.339000px;}
.y7a{bottom:1048.893000px;}
.ybd{bottom:1049.794500px;}
.y1c9{bottom:1050.396000px;}
.y5e{bottom:1053.441000px;}
.y14c{bottom:1055.148000px;}
.y9e{bottom:1056.441000px;}
.y42{bottom:1057.923000px;}
.y104{bottom:1062.406500px;}
.y22{bottom:1065.339000px;}
.y79{bottom:1066.893000px;}
.y1ab{bottom:1068.396000px;}
.y14b{bottom:1071.586500px;}
.ybc{bottom:1074.969000px;}
.y21{bottom:1083.339000px;}
.y1aa{bottom:1086.396000px;}
.y14a{bottom:1088.025000px;}
.y5d{bottom:1089.373500px;}
.y9d{bottom:1092.373500px;}
.y41{bottom:1096.857000px;}
.y20{bottom:1101.339000px;}
.y78{bottom:1102.116000px;}
.y149{bottom:1104.463500px;}
.y9c{bottom:1110.373500px;}
.y5c{bottom:1116.339000px;}
.y1f{bottom:1119.339000px;}
.y148{bottom:1120.900500px;}
.y103{bottom:1134.111000px;}
.y1e{bottom:1137.339000px;}
.y77{bottom:1138.834500px;}
.y102{bottom:1140.439500px;}
.h15{height:2.400000px;}
.h2b{height:20.263928px;}
.h9{height:26.535600px;}
.h1f{height:31.499550px;}
.h27{height:31.541549px;}
.h4{height:34.696200px;}
.hb{height:36.048000px;}
.h2a{height:37.443686px;}
.h6{height:37.854000px;}
.h7{height:40.500000px;}
.h10{height:42.060000px;}
.h14{height:43.320000px;}
.he{height:45.000000px;}
.hd{height:45.060000px;}
.h8{height:46.131600px;}
.h19{height:46.266000px;}
.h1d{height:49.500000px;}
.h5{height:49.566000px;}
.hf{height:50.472000px;}
.h20{height:53.267550px;}
.h1a{height:53.273550px;}
.h23{height:55.121550px;}
.h21{height:56.267550px;}
.h11{height:56.273550px;}
.h28{height:57.972000px;}
.h22{height:57.989550px;}
.ha{height:58.374000px;}
.hc{height:58.884000px;}
.h29{height:59.400000px;}
.h25{height:61.710000px;}
.h3{height:63.980400px;}
.h24{height:65.754000px;}
.h2{height:71.706000px;}
.h26{height:73.961550px;}
.h1e{height:85.355735px;}
.h1b{height:85.421700px;}
.h12{height:85.590000px;}
.h13{height:86.220000px;}
.h17{height:87.000000px;}
.h1c{height:87.294000px;}
.h18{height:97.433550px;}
.h16{height:128.160000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x54{left:114.826500px;}
.x52{left:119.911500px;}
.x4f{left:124.995000px;}
.x53{left:130.078500px;}
.xe{left:150.106500px;}
.x55{left:151.612500px;}
.x51{left:156.696000px;}
.x4d{left:161.779500px;}
.x2e{left:165.105000px;}
.x4c{left:166.864500px;}
.x2{left:168.039000px;}
.x42{left:169.054500px;}
.x8{left:170.601000px;}
.x20{left:172.522500px;}
.xf{left:173.725500px;}
.x7{left:178.360500px;}
.x50{left:179.994000px;}
.x1{left:181.224000px;}
.xa{left:185.665500px;}
.x11{left:186.892500px;}
.x5{left:194.455500px;}
.x43{left:200.406000px;}
.x45{left:201.889500px;}
.x35{left:209.308500px;}
.x13{left:210.511500px;}
.x49{left:216.396000px;}
.x56{left:217.717500px;}
.x26{left:222.883500px;}
.x4a{left:224.727000px;}
.x30{left:226.617000px;}
.x47{left:229.066500px;}
.x22{left:235.900500px;}
.x48{left:237.397500px;}
.x2c{left:252.045000px;}
.x41{left:268.356000px;}
.x6{left:269.497500px;}
.x40{left:281.496000px;}
.x37{left:294.934500px;}
.xb{left:319.008000px;}
.x3{left:332.512500px;}
.x21{left:335.670000px;}
.x46{left:337.002000px;}
.xd{left:350.211000px;}
.x4b{left:351.712500px;}
.x38{left:353.683500px;}
.x2d{left:355.608000px;}
.x33{left:357.247500px;}
.x4{left:359.352000px;}
.x9{left:370.534500px;}
.x3c{left:377.061000px;}
.x32{left:378.597000px;}
.x23{left:379.846500px;}
.x31{left:381.829500px;}
.x1f{left:385.141500px;}
.x25{left:388.116000px;}
.x17{left:393.504000px;}
.x16{left:395.590500px;}
.xc{left:397.516500px;}
.x1d{left:399.441000px;}
.x1e{left:405.168000px;}
.x2b{left:407.422500px;}
.x2f{left:409.312500px;}
.x36{left:412.110000px;}
.x34{left:414.499500px;}
.x1b{left:420.415500px;}
.x24{left:421.647000px;}
.x29{left:422.700000px;}
.x10{left:424.315500px;}
.x28{left:431.004000px;}
.x2a{left:438.600000px;}
.x15{left:439.717500px;}
.x1c{left:442.558500px;}
.x27{left:444.193500px;}
.x19{left:455.497500px;}
.x4e{left:457.351500px;}
.x14{left:458.431500px;}
.x12{left:459.817500px;}
.x1a{left:461.100000px;}
.x3d{left:467.961000px;}
.x3f{left:491.626500px;}
.x3e{left:494.394000px;}
.x18{left:497.961000px;}
.x39{left:501.537000px;}
.x3b{left:525.201000px;}
.x3a{left:550.942500px;}
.x44{left:634.534500px;}
@media print{
.v9{vertical-align:-39.120000pt;}
.v2{vertical-align:-21.290667pt;}
.v3{vertical-align:-7.200000pt;}
.vd{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:8.000000pt;}
.v14{vertical-align:11.477333pt;}
.v8{vertical-align:15.408000pt;}
.v4{vertical-align:17.418667pt;}
.v12{vertical-align:18.394667pt;}
.ve{vertical-align:19.354667pt;}
.v13{vertical-align:20.997333pt;}
.v5{vertical-align:22.021333pt;}
.v1{vertical-align:23.226667pt;}
.v7{vertical-align:28.080000pt;}
.v11{vertical-align:28.997333pt;}
.v6{vertical-align:36.080000pt;}
.vf{vertical-align:37.541333pt;}
.v15{vertical-align:50.666667pt;}
.vb{vertical-align:58.608000pt;}
.v10{vertical-align:72.592000pt;}
.vc{vertical-align:75.200000pt;}
.va{vertical-align:111.786667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.002293pt;}
.ls4{letter-spacing:0.002667pt;}
.ls15{letter-spacing:0.003327pt;}
.ls7{letter-spacing:0.004267pt;}
.ls43{letter-spacing:0.005333pt;}
.ls4c{letter-spacing:0.008013pt;}
.ls7e{letter-spacing:0.009750pt;}
.ls18{letter-spacing:0.010667pt;}
.ls90{letter-spacing:0.011145pt;}
.ls95{letter-spacing:0.012355pt;}
.ls9{letter-spacing:0.014400pt;}
.ls47{letter-spacing:0.016000pt;}
.ls66{letter-spacing:0.016369pt;}
.ls8c{letter-spacing:0.016399pt;}
.ls7f{letter-spacing:0.016479pt;}
.ls42{letter-spacing:0.019699pt;}
.ls6a{letter-spacing:0.019965pt;}
.ls3f{letter-spacing:0.020445pt;}
.ls36{letter-spacing:0.021333pt;}
.ls4b{letter-spacing:0.021777pt;}
.ls30{letter-spacing:0.021812pt;}
.ls45{letter-spacing:0.022575pt;}
.ls8e{letter-spacing:0.023412pt;}
.ls69{letter-spacing:0.026358pt;}
.ls86{letter-spacing:0.026831pt;}
.ls19{letter-spacing:1.157317pt;}
.ls5{letter-spacing:1.176000pt;}
.ls98{letter-spacing:1.344356pt;}
.ls99{letter-spacing:1.477333pt;}
.ls9b{letter-spacing:1.482667pt;}
.ls6e{letter-spacing:1.487748pt;}
.ls50{letter-spacing:1.493333pt;}
.ls2{letter-spacing:1.536000pt;}
.ls5b{letter-spacing:1.688709pt;}
.ls5a{letter-spacing:1.700284pt;}
.ls64{letter-spacing:1.909333pt;}
.ls3d{letter-spacing:1.912819pt;}
.ls51{letter-spacing:1.920000pt;}
.ls5e{letter-spacing:1.934840pt;}
.ls3c{letter-spacing:2.647695pt;}
.ls25{letter-spacing:2.654154pt;}
.lsa{letter-spacing:2.655733pt;}
.ls37{letter-spacing:2.656247pt;}
.ls49{letter-spacing:2.656951pt;}
.ls7c{letter-spacing:2.657370pt;}
.ls0{letter-spacing:2.658080pt;}
.ls4a{letter-spacing:2.658479pt;}
.ls1f{letter-spacing:2.659488pt;}
.ls3{letter-spacing:2.661067pt;}
.ls6{letter-spacing:2.673760pt;}
.ls41{letter-spacing:3.028630pt;}
.lsb2{letter-spacing:3.061333pt;}
.ls20{letter-spacing:3.081764pt;}
.ls83{letter-spacing:3.804765pt;}
.ls52{letter-spacing:3.904000pt;}
.ls6f{letter-spacing:3.931906pt;}
.ls67{letter-spacing:4.472994pt;}
.ls53{letter-spacing:5.749251pt;}
.lsa2{letter-spacing:5.791591pt;}
.ls27{letter-spacing:6.373333pt;}
.ls21{letter-spacing:6.378667pt;}
.ls71{letter-spacing:7.381333pt;}
.ls7d{letter-spacing:7.383300pt;}
.ls77{letter-spacing:7.383499pt;}
.ls23{letter-spacing:7.385607pt;}
.ls4e{letter-spacing:7.386667pt;}
.ls9e{letter-spacing:7.392000pt;}
.ls74{letter-spacing:7.395567pt;}
.ls82{letter-spacing:7.404745pt;}
.ls89{letter-spacing:7.408000pt;}
.lsb5{letter-spacing:7.418667pt;}
.ls75{letter-spacing:7.422233pt;}
.ls7b{letter-spacing:7.429970pt;}
.lsad{letter-spacing:8.391827pt;}
.lsac{letter-spacing:8.394521pt;}
.lsa9{letter-spacing:8.397160pt;}
.lsa8{letter-spacing:8.399855pt;}
.ls62{letter-spacing:8.853333pt;}
.lsa5{letter-spacing:8.873356pt;}
.lsa3{letter-spacing:8.875145pt;}
.lsa4{letter-spacing:8.890667pt;}
.lsa6{letter-spacing:8.926490pt;}
.ls97{letter-spacing:9.032821pt;}
.ls59{letter-spacing:9.564096pt;}
.lsb4{letter-spacing:10.453333pt;}
.ls58{letter-spacing:10.986667pt;}
.ls85{letter-spacing:11.520000pt;}
.ls5c{letter-spacing:11.533028pt;}
.ls17{letter-spacing:11.840000pt;}
.ls14{letter-spacing:11.848852pt;}
.ls26{letter-spacing:11.863412pt;}
.ls32{letter-spacing:11.893333pt;}
.ls6b{letter-spacing:12.690098pt;}
.lsb3{letter-spacing:13.126704pt;}
.ls13{letter-spacing:13.333333pt;}
.ls61{letter-spacing:13.760000pt;}
.ls88{letter-spacing:14.186913pt;}
.ls87{letter-spacing:14.192247pt;}
.ls40{letter-spacing:14.498361pt;}
.ls54{letter-spacing:14.499880pt;}
.ls80{letter-spacing:14.506913pt;}
.ls16{letter-spacing:14.508037pt;}
.ls6c{letter-spacing:14.509145pt;}
.ls8d{letter-spacing:14.512247pt;}
.lsa1{letter-spacing:14.718081pt;}
.ls68{letter-spacing:14.771215pt;}
.ls35{letter-spacing:14.773333pt;}
.ls63{letter-spacing:14.801166pt;}
.ls5f{letter-spacing:14.802796pt;}
.ls28{letter-spacing:14.810667pt;}
.ls22{letter-spacing:14.816000pt;}
.ls24{letter-spacing:14.824349pt;}
.ls1e{letter-spacing:14.826667pt;}
.ls57{letter-spacing:15.018667pt;}
.ls65{letter-spacing:15.264214pt;}
.ls6d{letter-spacing:15.269548pt;}
.lsd{letter-spacing:15.312000pt;}
.lse{letter-spacing:15.360000pt;}
.ls29{letter-spacing:15.680000pt;}
.ls93{letter-spacing:16.000000pt;}
.ls92{letter-spacing:16.258963pt;}
.ls73{letter-spacing:16.312097pt;}
.ls2b{letter-spacing:16.323660pt;}
.ls70{letter-spacing:16.693333pt;}
.ls5d{letter-spacing:16.737168pt;}
.ls34{letter-spacing:16.746667pt;}
.ls56{letter-spacing:16.837333pt;}
.ls38{letter-spacing:16.906667pt;}
.ls2f{letter-spacing:16.960000pt;}
.ls44{letter-spacing:17.463695pt;}
.ls31{letter-spacing:17.466913pt;}
.ls2c{letter-spacing:17.472247pt;}
.ls12{letter-spacing:17.760000pt;}
.ls1c{letter-spacing:17.813333pt;}
.ls39{letter-spacing:17.866667pt;}
.ls3a{letter-spacing:17.906113pt;}
.ls7a{letter-spacing:17.920000pt;}
.ls79{letter-spacing:17.973333pt;}
.ls9c{letter-spacing:18.506667pt;}
.ls9d{letter-spacing:18.560000pt;}
.ls8f{letter-spacing:18.620765pt;}
.lsc{letter-spacing:19.200000pt;}
.ls78{letter-spacing:19.446995pt;}
.ls9f{letter-spacing:20.373333pt;}
.ls76{letter-spacing:20.433370pt;}
.ls8{letter-spacing:21.744000pt;}
.ls2e{letter-spacing:22.042667pt;}
.ls1d{letter-spacing:22.209956pt;}
.ls10{letter-spacing:22.880000pt;}
.ls11{letter-spacing:22.933333pt;}
.ls1{letter-spacing:22.992000pt;}
.ls4d{letter-spacing:23.520000pt;}
.ls60{letter-spacing:23.701333pt;}
.ls96{letter-spacing:24.122775pt;}
.lsa0{letter-spacing:24.373333pt;}
.ls9a{letter-spacing:24.426667pt;}
.ls4f{letter-spacing:24.972917pt;}
.lsaf{letter-spacing:25.058099pt;}
.lsab{letter-spacing:25.105920pt;}
.ls3b{letter-spacing:26.656000pt;}
.ls3e{letter-spacing:26.661333pt;}
.lsb{letter-spacing:26.880000pt;}
.ls2d{letter-spacing:28.395145pt;}
.ls94{letter-spacing:31.520000pt;}
.lsa7{letter-spacing:34.240000pt;}
.lsb1{letter-spacing:50.164019pt;}
.lsb0{letter-spacing:50.211840pt;}
.lsaa{letter-spacing:53.128909pt;}
.ls8b{letter-spacing:68.117617pt;}
.ls8a{letter-spacing:71.938098pt;}
.lsae{letter-spacing:78.234829pt;}
.ls91{letter-spacing:123.349580pt;}
.ls48{letter-spacing:150.613333pt;}
.ls33{letter-spacing:239.573580pt;}
.ls81{letter-spacing:328.314913pt;}
.ls2a{letter-spacing:594.304247pt;}
.ls55{letter-spacing:674.746881pt;}
.ls1b{letter-spacing:675.511695pt;}
.ls1a{letter-spacing:676.557028pt;}
.ls72{letter-spacing:807.858098pt;}
.ls84{letter-spacing:1207.282098pt;}
.wsc{word-spacing:-55.200000pt;}
.ws30{word-spacing:-53.333333pt;}
.wsf{word-spacing:-36.398400pt;}
.ws2d{word-spacing:-34.741333pt;}
.ws42{word-spacing:-30.661333pt;}
.ws35{word-spacing:-29.584937pt;}
.ws5{word-spacing:-29.327467pt;}
.ws49{word-spacing:-28.223597pt;}
.wsa{word-spacing:-27.182400pt;}
.ws25{word-spacing:-26.661333pt;}
.ws2b{word-spacing:-25.834667pt;}
.ws34{word-spacing:-25.717333pt;}
.wsaa{word-spacing:-25.153741pt;}
.ws13{word-spacing:-21.182400pt;}
.ws43{word-spacing:-20.981333pt;}
.ws4f{word-spacing:-17.994667pt;}
.ws5c{word-spacing:-17.141333pt;}
.wsa5{word-spacing:-16.835220pt;}
.ws33{word-spacing:-16.474667pt;}
.ws4d{word-spacing:-15.274667pt;}
.ws5d{word-spacing:-15.141333pt;}
.ws36{word-spacing:-14.821333pt;}
.wsc7{word-spacing:-14.661333pt;}
.wscf{word-spacing:-14.554667pt;}
.ws32{word-spacing:-14.341333pt;}
.ws98{word-spacing:-14.181333pt;}
.ws17{word-spacing:-14.128000pt;}
.ws85{word-spacing:-13.914667pt;}
.wsdb{word-spacing:-13.754667pt;}
.wsdc{word-spacing:-13.648000pt;}
.ws6e{word-spacing:-13.594667pt;}
.ws9f{word-spacing:-13.328000pt;}
.ws57{word-spacing:-13.274667pt;}
.ws64{word-spacing:-13.168000pt;}
.ws37{word-spacing:-12.901333pt;}
.ws7c{word-spacing:-12.741333pt;}
.ws74{word-spacing:-12.688000pt;}
.ws18{word-spacing:-12.528000pt;}
.ws68{word-spacing:-12.474667pt;}
.ws56{word-spacing:-12.421333pt;}
.wsd4{word-spacing:-12.048000pt;}
.ws59{word-spacing:-11.836985pt;}
.wsda{word-spacing:-11.461333pt;}
.wsd9{word-spacing:-11.408000pt;}
.ws7a{word-spacing:-11.354667pt;}
.ws3c{word-spacing:-11.258133pt;}
.wscb{word-spacing:-11.248000pt;}
.ws3b{word-spacing:-11.199467pt;}
.ws1b{word-spacing:-11.034667pt;}
.wsd3{word-spacing:-10.981333pt;}
.ws48{word-spacing:-10.821333pt;}
.ws9e{word-spacing:-10.768000pt;}
.ws60{word-spacing:-10.714667pt;}
.wsa0{word-spacing:-10.661333pt;}
.ws23{word-spacing:-10.608000pt;}
.ws73{word-spacing:-10.554667pt;}
.wsce{word-spacing:-10.394667pt;}
.wsa4{word-spacing:-10.341333pt;}
.ws2a{word-spacing:-10.234667pt;}
.ws41{word-spacing:-10.181333pt;}
.ws4a{word-spacing:-10.030433pt;}
.ws4b{word-spacing:-10.021333pt;}
.ws52{word-spacing:-9.968000pt;}
.ws1c{word-spacing:-9.861333pt;}
.ws4{word-spacing:-9.791467pt;}
.ws3a{word-spacing:-9.754667pt;}
.ws6{word-spacing:-9.732800pt;}
.wsd8{word-spacing:-9.648000pt;}
.wsc9{word-spacing:-9.594667pt;}
.wsd1{word-spacing:-9.434667pt;}
.ws40{word-spacing:-9.381333pt;}
.ws1a{word-spacing:-9.168000pt;}
.ws5a{word-spacing:-9.061333pt;}
.ws20{word-spacing:-8.901333pt;}
.ws3f{word-spacing:-8.848000pt;}
.ws80{word-spacing:-8.634667pt;}
.ws82{word-spacing:-8.368000pt;}
.wsc2{word-spacing:-8.261333pt;}
.wsc5{word-spacing:-8.154667pt;}
.ws87{word-spacing:-7.941333pt;}
.ws16{word-spacing:-7.781333pt;}
.ws6a{word-spacing:-7.728000pt;}
.ws1f{word-spacing:-7.461333pt;}
.ws5f{word-spacing:-7.408000pt;}
.wsa3{word-spacing:-7.354667pt;}
.ws90{word-spacing:-7.301333pt;}
.ws44{word-spacing:-7.034667pt;}
.ws54{word-spacing:-6.981333pt;}
.wsde{word-spacing:-6.928000pt;}
.ws8e{word-spacing:-6.768000pt;}
.wsc3{word-spacing:-6.714667pt;}
.ws67{word-spacing:-6.661333pt;}
.ws65{word-spacing:-6.608000pt;}
.ws7f{word-spacing:-6.554667pt;}
.ws6b{word-spacing:-6.501333pt;}
.ws89{word-spacing:-6.288000pt;}
.ws88{word-spacing:-6.128000pt;}
.wsc8{word-spacing:-6.074667pt;}
.ws79{word-spacing:-5.914667pt;}
.ws7b{word-spacing:-5.754667pt;}
.wsd0{word-spacing:-5.701333pt;}
.wse9{word-spacing:-5.594667pt;}
.wsd2{word-spacing:-5.541333pt;}
.ws78{word-spacing:-5.381333pt;}
.ws76{word-spacing:-5.328000pt;}
.ws99{word-spacing:-5.221333pt;}
.ws91{word-spacing:-5.160588pt;}
.ws9b{word-spacing:-5.107255pt;}
.ws22{word-spacing:-4.688000pt;}
.wse6{word-spacing:-4.474667pt;}
.ws1d{word-spacing:-4.368000pt;}
.ws92{word-spacing:-4.314667pt;}
.ws26{word-spacing:-3.888000pt;}
.ws24{word-spacing:-3.781333pt;}
.wse7{word-spacing:-3.728000pt;}
.ws46{word-spacing:-3.674667pt;}
.ws93{word-spacing:-3.248000pt;}
.wscc{word-spacing:-3.194667pt;}
.wsc0{word-spacing:-3.034667pt;}
.wsbf{word-spacing:-2.981333pt;}
.ws96{word-spacing:-2.928000pt;}
.ws81{word-spacing:-2.714667pt;}
.ws97{word-spacing:-2.448000pt;}
.ws39{word-spacing:-2.341333pt;}
.ws70{word-spacing:-2.234667pt;}
.wse8{word-spacing:-2.021333pt;}
.ws5e{word-spacing:-1.968000pt;}
.ws86{word-spacing:-1.914667pt;}
.ws6f{word-spacing:-1.693921pt;}
.wsd6{word-spacing:-1.648000pt;}
.wsc4{word-spacing:-1.381333pt;}
.ws77{word-spacing:-1.328000pt;}
.ws58{word-spacing:-1.320588pt;}
.ws1e{word-spacing:-1.274667pt;}
.ws63{word-spacing:-1.168000pt;}
.wsa1{word-spacing:-1.114667pt;}
.wsca{word-spacing:-1.061333pt;}
.wsdf{word-spacing:-0.901333pt;}
.ws69{word-spacing:-0.897601pt;}
.ws29{word-spacing:-0.848000pt;}
.ws8f{word-spacing:-0.794667pt;}
.ws8d{word-spacing:-0.634667pt;}
.ws8b{word-spacing:-0.101333pt;}
.ws38{word-spacing:-0.064000pt;}
.wsa6{word-spacing:-0.047821pt;}
.ws3{word-spacing:-0.041067pt;}
.ws2e{word-spacing:-0.037333pt;}
.ws19{word-spacing:0.000000pt;}
.ws95{word-spacing:0.005333pt;}
.ws2c{word-spacing:0.010627pt;}
.ws3d{word-spacing:0.012745pt;}
.ws2f{word-spacing:0.063761pt;}
.ws6d{word-spacing:0.218667pt;}
.wse1{word-spacing:0.432000pt;}
.ws27{word-spacing:0.538667pt;}
.ws94{word-spacing:0.698667pt;}
.wscd{word-spacing:0.858667pt;}
.ws6c{word-spacing:0.912000pt;}
.wsc6{word-spacing:1.552000pt;}
.wse{word-spacing:2.618773pt;}
.ws7e{word-spacing:2.832000pt;}
.ws55{word-spacing:3.198659pt;}
.ws66{word-spacing:3.799412pt;}
.ws62{word-spacing:4.858667pt;}
.ws61{word-spacing:4.912000pt;}
.wsa2{word-spacing:6.085333pt;}
.ws72{word-spacing:6.345445pt;}
.wse5{word-spacing:6.618667pt;}
.wse0{word-spacing:7.045333pt;}
.ws9d{word-spacing:7.472000pt;}
.wsc1{word-spacing:7.845333pt;}
.ws47{word-spacing:8.226079pt;}
.wsd7{word-spacing:9.178667pt;}
.ws75{word-spacing:9.232000pt;}
.ws84{word-spacing:9.818667pt;}
.wse3{word-spacing:10.778667pt;}
.ws71{word-spacing:11.168739pt;}
.ws83{word-spacing:12.698667pt;}
.ws9c{word-spacing:14.335795pt;}
.ws3e{word-spacing:14.462514pt;}
.ws14{word-spacing:15.061333pt;}
.ws12{word-spacing:15.216000pt;}
.wsb{word-spacing:15.264000pt;}
.ws9{word-spacing:15.648000pt;}
.wse4{word-spacing:15.685333pt;}
.ws5b{word-spacing:17.433296pt;}
.ws9a{word-spacing:17.435890pt;}
.ws10{word-spacing:18.480000pt;}
.ws53{word-spacing:19.040000pt;}
.wsd{word-spacing:19.824000pt;}
.ws8a{word-spacing:20.320000pt;}
.ws2{word-spacing:20.800000pt;}
.ws7{word-spacing:21.408000pt;}
.wse2{word-spacing:21.978667pt;}
.ws7d{word-spacing:22.672000pt;}
.wsdd{word-spacing:22.992000pt;}
.ws28{word-spacing:23.936000pt;}
.ws8c{word-spacing:24.320000pt;}
.wsa8{word-spacing:25.010278pt;}
.wsa7{word-spacing:25.058099pt;}
.ws8{word-spacing:25.104000pt;}
.ws45{word-spacing:25.613408pt;}
.wsd5{word-spacing:25.920000pt;}
.ws11{word-spacing:26.360000pt;}
.ws1{word-spacing:27.834667pt;}
.ws15{word-spacing:27.925333pt;}
.ws0{word-spacing:28.288000pt;}
.ws21{word-spacing:41.888000pt;}
.wsb7{word-spacing:50.164019pt;}
.wsa9{word-spacing:53.102342pt;}
.wsb4{word-spacing:78.208262pt;}
.wsb9{word-spacing:100.328038pt;}
.wsb5{word-spacing:150.539878pt;}
.wsab{word-spacing:153.526022pt;}
.wsbc{word-spacing:175.645798pt;}
.wsb6{word-spacing:200.751718pt;}
.wsbd{word-spacing:250.963558pt;}
.wsac{word-spacing:253.901881pt;}
.ws50{word-spacing:256.512000pt;}
.wsba{word-spacing:326.233498pt;}
.wsad{word-spacing:354.277740pt;}
.wsaf{word-spacing:354.325561pt;}
.wsbe{word-spacing:376.397517pt;}
.wsb8{word-spacing:429.595500pt;}
.wsae{word-spacing:454.701420pt;}
.wsbb{word-spacing:476.869018pt;}
.ws51{word-spacing:546.645333pt;}
.wsb2{word-spacing:555.077279pt;}
.wsb0{word-spacing:555.125100pt;}
.wsb1{word-spacing:655.500959pt;}
.ws4e{word-spacing:673.152000pt;}
.ws4c{word-spacing:681.418667pt;}
.wsb3{word-spacing:755.924639pt;}
.ws31{word-spacing:772.992000pt;}
._20{margin-left:-25.153741pt;}
._e{margin-left:-14.824349pt;}
._2{margin-left:-6.800000pt;}
._6{margin-left:-5.680000pt;}
._1{margin-left:-4.714667pt;}
._9{margin-left:-3.646827pt;}
._0{margin-left:-2.629333pt;}
._3{margin-left:-1.728000pt;}
._5{width:0.890667pt;}
._4{width:2.660160pt;}
._1c{width:4.160000pt;}
._1d{width:5.919190pt;}
._1b{width:7.834667pt;}
._d{width:12.496000pt;}
._8{width:14.730667pt;}
._1a{width:16.810667pt;}
._15{width:17.760000pt;}
._b{width:18.650667pt;}
._16{width:19.626667pt;}
._f{width:21.264000pt;}
._13{width:23.877333pt;}
._2f{width:26.666667pt;}
._10{width:33.733333pt;}
._a{width:35.968000pt;}
._17{width:39.948969pt;}
._7{width:41.962667pt;}
._1e{width:50.164019pt;}
._c{width:59.334076pt;}
._19{width:72.000000pt;}
._2a{width:75.269939pt;}
._18{width:83.654507pt;}
._1f{width:100.375859pt;}
._21{width:125.481779pt;}
._23{width:150.587699pt;}
._14{width:163.610456pt;}
._2b{width:175.597978pt;}
._22{width:200.799539pt;}
._2d{width:225.857638pt;}
._2c{width:276.021658pt;}
._25{width:301.223219pt;}
._27{width:326.281318pt;}
._24{width:351.387238pt;}
._26{width:376.493158pt;}
._2e{width:401.599078pt;}
._29{width:476.821197pt;}
._28{width:501.927117pt;}
._11{width:609.226667pt;}
._12{width:796.746667pt;}
.fsd{font-size:26.566933pt;}
.fsc{font-size:26.666667pt;}
.fs6{font-size:33.600000pt;}
.fsb{font-size:37.332800pt;}
.fs3{font-size:41.066667pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:44.800000pt;}
.fse{font-size:47.820800pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:53.133867pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:252.284000pt;}
.y9b{bottom:291.189333pt;}
.y40{bottom:292.078667pt;}
.ye0{bottom:292.670667pt;}
.y1c8{bottom:294.282667pt;}
.y178{bottom:294.986667pt;}
.y101{bottom:296.340000pt;}
.y1a9{bottom:296.938667pt;}
.y122{bottom:297.616000pt;}
.y18e{bottom:298.241333pt;}
.y9a{bottom:300.574667pt;}
.y147{bottom:303.474667pt;}
.y1c{bottom:306.226667pt;}
.y3f{bottom:308.078667pt;}
.ydf{bottom:308.670667pt;}
.y177{bottom:309.598667pt;}
.y100{bottom:312.340000pt;}
.y18d{bottom:312.853333pt;}
.y121{bottom:313.616000pt;}
.y146{bottom:318.086667pt;}
.y1b{bottom:322.226667pt;}
.y1c7{bottom:323.566667pt;}
.y176{bottom:324.210667pt;}
.yde{bottom:324.670667pt;}
.yff{bottom:325.470667pt;}
.y1a8{bottom:326.222667pt;}
.y76{bottom:326.561333pt;}
.y18c{bottom:327.465333pt;}
.yfd{bottom:328.340000pt;}
.y120{bottom:329.616000pt;}
.yfe{bottom:331.094667pt;}
.y145{bottom:332.698667pt;}
.y3e{bottom:334.100000pt;}
.y5b{bottom:334.640000pt;}
.y99{bottom:337.385333pt;}
.y1a{bottom:338.226667pt;}
.y175{bottom:338.822667pt;}
.y1c6{bottom:339.566667pt;}
.ydd{bottom:340.670667pt;}
.y18b{bottom:342.077333pt;}
.y1a7{bottom:342.222667pt;}
.y3d{bottom:343.246667pt;}
.y144{bottom:347.310667pt;}
.ybb{bottom:347.901333pt;}
.y174{bottom:353.434667pt;}
.y11f{bottom:353.586667pt;}
.y1c5{bottom:355.566667pt;}
.ydc{bottom:356.670667pt;}
.y18a{bottom:356.689333pt;}
.y1a6{bottom:358.222667pt;}
.y75{bottom:359.830667pt;}
.y98{bottom:361.356000pt;}
.y143{bottom:361.922667pt;}
.yfc{bottom:363.237333pt;}
.yba{bottom:363.901333pt;}
.y19{bottom:366.181333pt;}
.y5a{bottom:366.580000pt;}
.y173{bottom:368.046667pt;}
.y189{bottom:371.300000pt;}
.y1c4{bottom:371.566667pt;}
.ydb{bottom:372.670667pt;}
.y1a5{bottom:374.222667pt;}
.y142{bottom:376.534667pt;}
.y3c{bottom:377.437333pt;}
.y74{bottom:378.486667pt;}
.yfb{bottom:379.237333pt;}
.yb9{bottom:379.901333pt;}
.y172{bottom:382.657333pt;}
.y188{bottom:385.912000pt;}
.y18{bottom:387.514667pt;}
.y11e{bottom:388.193333pt;}
.yda{bottom:388.670667pt;}
.y1a4{bottom:390.222667pt;}
.y141{bottom:391.146667pt;}
.y97{bottom:393.368000pt;}
.yfa{bottom:395.237333pt;}
.y73{bottom:395.816000pt;}
.yb8{bottom:395.901333pt;}
.y3b{bottom:396.133333pt;}
.y171{bottom:397.269333pt;}
.y59{bottom:398.520000pt;}
.y187{bottom:400.524000pt;}
.y1c3{bottom:400.849333pt;}
.y11d{bottom:404.193333pt;}
.yd9{bottom:404.670667pt;}
.y140{bottom:405.758667pt;}
.y96{bottom:409.368000pt;}
.yf9{bottom:411.237333pt;}
.y170{bottom:411.881333pt;}
.yb7{bottom:411.901333pt;}
.y3a{bottom:412.133333pt;}
.y186{bottom:415.136000pt;}
.y1c2{bottom:416.849333pt;}
.y1a3{bottom:419.506667pt;}
.y13f{bottom:420.369333pt;}
.yd8{bottom:420.670667pt;}
.y95{bottom:425.368000pt;}
.y72{bottom:426.426667pt;}
.y16f{bottom:426.493333pt;}
.yf8{bottom:427.237333pt;}
.yb6{bottom:427.901333pt;}
.y39{bottom:428.133333pt;}
.y185{bottom:429.748000pt;}
.y58{bottom:430.460000pt;}
.yd7{bottom:432.073333pt;}
.y13e{bottom:434.981333pt;}
.y1a2{bottom:435.506667pt;}
.y11c{bottom:436.133333pt;}
.yd6{bottom:436.670667pt;}
.y16e{bottom:441.105333pt;}
.y94{bottom:441.368000pt;}
.yb5{bottom:443.901333pt;}
.y184{bottom:444.360000pt;}
.y1c1{bottom:446.133333pt;}
.y13d{bottom:449.593333pt;}
.y1a1{bottom:451.506667pt;}
.yd5{bottom:454.161333pt;}
.yf7{bottom:455.193333pt;}
.y16d{bottom:455.717333pt;}
.y17{bottom:456.668000pt;}
.y71{bottom:458.368000pt;}
.y183{bottom:458.972000pt;}
.y38{bottom:459.644000pt;}
.yb4{bottom:459.901333pt;}
.y1c0{bottom:462.133333pt;}
.y57{bottom:462.400000pt;}
.y13c{bottom:464.205333pt;}
.y93{bottom:465.338667pt;}
.y11b{bottom:468.073333pt;}
.y16{bottom:469.334667pt;}
.yd4{bottom:470.161333pt;}
.y16c{bottom:470.329333pt;}
.y182{bottom:473.584000pt;}
.yb3{bottom:475.901333pt;}
.yf6{bottom:476.526667pt;}
.y1bf{bottom:478.133333pt;}
.y13b{bottom:478.817333pt;}
.y1a0{bottom:480.789333pt;}
.y70{bottom:482.337333pt;}
.y92{bottom:484.005333pt;}
.y11a{bottom:484.073333pt;}
.y16b{bottom:484.941333pt;}
.yd3{bottom:486.161333pt;}
.y181{bottom:488.196000pt;}
.y37{bottom:491.153333pt;}
.y13a{bottom:493.429333pt;}
.y56{bottom:494.341333pt;}
.y15{bottom:495.285333pt;}
.y19f{bottom:496.789333pt;}
.y16a{bottom:499.553333pt;}
.yb2{bottom:499.870667pt;}
.yd2{bottom:502.161333pt;}
.y180{bottom:502.808000pt;}
.y14{bottom:505.452000pt;}
.y1be{bottom:507.417333pt;}
.y139{bottom:508.041333pt;}
.y119{bottom:508.044000pt;}
.y12{bottom:509.952000pt;}
.y169{bottom:514.165333pt;}
.y13{bottom:515.038667pt;}
.y6f{bottom:515.610667pt;}
.y91{bottom:517.350667pt;}
.y17f{bottom:517.418667pt;}
.yd1{bottom:518.161333pt;}
.y138{bottom:522.653333pt;}
.y36{bottom:522.664000pt;}
.y1bd{bottom:523.417333pt;}
.y11{bottom:524.618667pt;}
.y19e{bottom:526.073333pt;}
.y55{bottom:526.281333pt;}
.y168{bottom:528.777333pt;}
.yf5{bottom:529.800000pt;}
.y17e{bottom:532.030667pt;}
.yb1{bottom:533.144000pt;}
.yd0{bottom:534.161333pt;}
.y90{bottom:535.444000pt;}
.y137{bottom:537.265333pt;}
.y10{bottom:539.285333pt;}
.y1bc{bottom:539.417333pt;}
.y19d{bottom:542.073333pt;}
.y118{bottom:542.650667pt;}
.y167{bottom:543.388000pt;}
.ycf{bottom:545.562667pt;}
.yf4{bottom:545.800000pt;}
.y17d{bottom:546.642667pt;}
.y6e{bottom:547.552000pt;}
.yb0{bottom:549.144000pt;}
.yce{bottom:550.161333pt;}
.y8f{bottom:551.444000pt;}
.y136{bottom:551.877333pt;}
.y54{bottom:552.750667pt;}
.yf{bottom:553.952000pt;}
.y35{bottom:554.174667pt;}
.y166{bottom:558.000000pt;}
.y19c{bottom:558.073333pt;}
.y117{bottom:560.570667pt;}
.y17c{bottom:561.254667pt;}
.yf3{bottom:561.800000pt;}
.y53{bottom:561.897333pt;}
.ycd{bottom:566.161333pt;}
.y135{bottom:566.489333pt;}
.ye{bottom:568.618667pt;}
.y1bb{bottom:568.700000pt;}
.y8e{bottom:569.537333pt;}
.y165{bottom:572.612000pt;}
.y34{bottom:572.869333pt;}
.y116{bottom:576.570667pt;}
.yf2{bottom:577.800000pt;}
.y6d{bottom:579.492000pt;}
.yaf{bottom:581.085333pt;}
.ycc{bottom:582.161333pt;}
.y1ba{bottom:584.700000pt;}
.y17b{bottom:585.298667pt;}
.y8d{bottom:585.537333pt;}
.y164{bottom:587.224000pt;}
.yd{bottom:587.270667pt;}
.y19b{bottom:587.357333pt;}
.y33{bottom:588.869333pt;}
.y115{bottom:592.570667pt;}
.y134{bottom:595.712000pt;}
.y6c{bottom:599.476000pt;}
.y52{bottom:599.889333pt;}
.yf1{bottom:601.769333pt;}
.y163{bottom:601.836000pt;}
.y19a{bottom:603.357333pt;}
.y8c{bottom:603.632000pt;}
.y17a{bottom:609.268000pt;}
.ycb{bottom:610.116000pt;}
.y133{bottom:610.324000pt;}
.y32{bottom:612.840000pt;}
.y1b9{bottom:613.984000pt;}
.y6b{bottom:615.476000pt;}
.y162{bottom:616.448000pt;}
.y114{bottom:616.541333pt;}
.y51{bottom:617.905333pt;}
.yae{bottom:618.073333pt;}
.yf0{bottom:619.098667pt;}
.y199{bottom:619.357333pt;}
.y8b{bottom:619.632000pt;}
.y132{bottom:624.936000pt;}
.y50{bottom:627.052000pt;}
.y179{bottom:627.934667pt;}
.y1b8{bottom:629.984000pt;}
.y161{bottom:631.060000pt;}
.yc{bottom:633.817333pt;}
.yad{bottom:634.073333pt;}
.yef{bottom:635.098667pt;}
.y6a{bottom:635.461333pt;}
.y8a{bottom:637.725333pt;}
.y131{bottom:639.548000pt;}
.y31{bottom:643.461333pt;}
.y160{bottom:645.672000pt;}
.yca{bottom:646.449333pt;}
.y4f{bottom:647.713333pt;}
.y198{bottom:648.640000pt;}
.yee{bottom:651.098667pt;}
.y113{bottom:651.148000pt;}
.y69{bottom:651.461333pt;}
.yb{bottom:651.817333pt;}
.y130{bottom:654.160000pt;}
.y89{bottom:655.053333pt;}
.yac{bottom:658.044000pt;}
.y1b7{bottom:659.266667pt;}
.y15f{bottom:660.284000pt;}
.yc9{bottom:662.449333pt;}
.y197{bottom:664.640000pt;}
.y30{bottom:664.794667pt;}
.yed{bottom:665.769333pt;}
.y112{bottom:667.148000pt;}
.y12f{bottom:668.772000pt;}
.y88{bottom:669.725333pt;}
.y15e{bottom:674.896000pt;}
.y1b6{bottom:675.266667pt;}
.y4e{bottom:677.704000pt;}
.yc8{bottom:678.449333pt;}
.y196{bottom:680.640000pt;}
.yec{bottom:681.769333pt;}
.y111{bottom:683.148000pt;}
.y12e{bottom:683.384000pt;}
.y68{bottom:683.401333pt;}
.ya9{bottom:685.433333pt;}
.y87{bottom:687.818667pt;}
.yab{bottom:688.436000pt;}
.y15d{bottom:689.506667pt;}
.y1b5{bottom:691.266667pt;}
.yc7{bottom:694.449333pt;}
.ya8{bottom:697.582667pt;}
.y12d{bottom:697.996000pt;}
.yeb{bottom:699.098667pt;}
.y110{bottom:699.148000pt;}
.y2f{bottom:701.209333pt;}
.ya{bottom:701.697333pt;}
.y86{bottom:703.818667pt;}
.y15c{bottom:704.118667pt;}
.y4d{bottom:705.650667pt;}
.yaa{bottom:706.602667pt;}
.y195{bottom:709.924000pt;}
.yc6{bottom:710.449333pt;}
.y12c{bottom:712.608000pt;}
.yea{bottom:715.098667pt;}
.y10f{bottom:715.148000pt;}
.y67{bottom:715.342667pt;}
.y15b{bottom:718.730667pt;}
.y9{bottom:719.697333pt;}
.y2e{bottom:719.904000pt;}
.y1b4{bottom:720.550667pt;}
.y85{bottom:721.912000pt;}
.y194{bottom:725.924000pt;}
.y4c{bottom:726.785333pt;}
.y12b{bottom:727.218667pt;}
.ye9{bottom:731.098667pt;}
.y15a{bottom:733.342667pt;}
.y2d{bottom:735.904000pt;}
.y1b3{bottom:736.550667pt;}
.y84{bottom:737.912000pt;}
.yc5{bottom:738.405333pt;}
.ya7{bottom:738.420000pt;}
.y10e{bottom:739.118667pt;}
.y12a{bottom:741.830667pt;}
.y8{bottom:743.020000pt;}
.y4b{bottom:746.770667pt;}
.ye8{bottom:747.098667pt;}
.y66{bottom:747.282667pt;}
.y159{bottom:747.954667pt;}
.y1b2{bottom:752.550667pt;}
.y2c{bottom:754.600000pt;}
.y193{bottom:755.208000pt;}
.y7{bottom:755.697333pt;}
.y83{bottom:756.005333pt;}
.y158{bottom:762.566667pt;}
.y4a{bottom:762.770667pt;}
.ye7{bottom:763.098667pt;}
.ya4{bottom:765.689333pt;}
.y129{bottom:765.874667pt;}
.ya6{bottom:768.452000pt;}
.y2b{bottom:770.600000pt;}
.y192{bottom:771.208000pt;}
.y6{bottom:773.697333pt;}
.y10d{bottom:773.725333pt;}
.yc4{bottom:774.738667pt;}
.y157{bottom:777.178667pt;}
.ya3{bottom:777.837333pt;}
.y49{bottom:778.770667pt;}
.y65{bottom:779.222667pt;}
.y1b1{bottom:781.834667pt;}
.y2a{bottom:786.600000pt;}
.ya5{bottom:786.857333pt;}
.ye6{bottom:789.725333pt;}
.y128{bottom:789.844000pt;}
.y82{bottom:790.098667pt;}
.yc3{bottom:790.738667pt;}
.y156{bottom:791.790667pt;}
.y5{bottom:797.020000pt;}
.y1b0{bottom:797.834667pt;}
.y191{bottom:800.490667pt;}
.y29{bottom:802.600000pt;}
.y64{bottom:803.193333pt;}
.y10c{bottom:805.725333pt;}
.y81{bottom:806.098667pt;}
.y155{bottom:806.402667pt;}
.yc2{bottom:806.738667pt;}
.y127{bottom:808.510667pt;}
.y48{bottom:810.710667pt;}
.y1af{bottom:813.834667pt;}
.y190{bottom:816.490667pt;}
.ya2{bottom:817.934667pt;}
.y28{bottom:818.600000pt;}
.y4{bottom:818.996000pt;}
.y154{bottom:821.014667pt;}
.y10b{bottom:821.725333pt;}
.yc1{bottom:822.738667pt;}
.y80{bottom:824.192000pt;}
.ye5{bottom:826.998667pt;}
.y1ae{bottom:829.834667pt;}
.y27{bottom:834.600000pt;}
.y153{bottom:835.625333pt;}
.y63{bottom:836.466667pt;}
.y10a{bottom:837.725333pt;}
.y7f{bottom:840.192000pt;}
.ya1{bottom:841.904000pt;}
.y47{bottom:842.650667pt;}
.ye4{bottom:842.998667pt;}
.y126{bottom:843.117333pt;}
.y18f{bottom:844.446667pt;}
.y152{bottom:850.237333pt;}
.y26{bottom:850.600000pt;}
.y62{bottom:852.466667pt;}
.y109{bottom:853.725333pt;}
.yc0{bottom:854.209333pt;}
.y7e{bottom:858.285333pt;}
.ye3{bottom:858.998667pt;}
.y125{bottom:859.117333pt;}
.y151{bottom:864.849333pt;}
.y3{bottom:864.896000pt;}
.y61{bottom:868.466667pt;}
.y46{bottom:869.120000pt;}
.y108{bottom:869.725333pt;}
.y1cb{bottom:872.401333pt;}
.ye2{bottom:874.998667pt;}
.y124{bottom:875.117333pt;}
.ya0{bottom:875.177333pt;}
.y7d{bottom:875.613333pt;}
.y44{bottom:878.266667pt;}
.y25{bottom:878.554667pt;}
.y150{bottom:879.461333pt;}
.ybf{bottom:885.680000pt;}
.y107{bottom:885.725333pt;}
.y45{bottom:887.286667pt;}
.y1ca{bottom:888.401333pt;}
.y60{bottom:888.450667pt;}
.ye1{bottom:890.998667pt;}
.y123{bottom:891.117333pt;}
.y14f{bottom:894.073333pt;}
.y2{bottom:894.896000pt;}
.y7c{bottom:898.256000pt;}
.ybe{bottom:901.680000pt;}
.y106{bottom:901.725333pt;}
.y1ad{bottom:904.401333pt;}
.y5f{bottom:904.450667pt;}
.y9f{bottom:907.117333pt;}
.y14e{bottom:908.685333pt;}
.y7b{bottom:914.256000pt;}
.y24{bottom:914.968000pt;}
.y43{bottom:916.406667pt;}
.y1ac{bottom:920.401333pt;}
.y14d{bottom:923.297333pt;}
.y1{bottom:924.896000pt;}
.y105{bottom:925.694667pt;}
.y23{bottom:930.968000pt;}
.y7a{bottom:932.349333pt;}
.ybd{bottom:933.150667pt;}
.y1c9{bottom:933.685333pt;}
.y5e{bottom:936.392000pt;}
.y14c{bottom:937.909333pt;}
.y9e{bottom:939.058667pt;}
.y42{bottom:940.376000pt;}
.y104{bottom:944.361333pt;}
.y22{bottom:946.968000pt;}
.y79{bottom:948.349333pt;}
.y1ab{bottom:949.685333pt;}
.y14b{bottom:952.521333pt;}
.ybc{bottom:955.528000pt;}
.y21{bottom:962.968000pt;}
.y1aa{bottom:965.685333pt;}
.y14a{bottom:967.133333pt;}
.y5d{bottom:968.332000pt;}
.y9d{bottom:970.998667pt;}
.y41{bottom:974.984000pt;}
.y20{bottom:978.968000pt;}
.y78{bottom:979.658667pt;}
.y149{bottom:981.745333pt;}
.y9c{bottom:986.998667pt;}
.y5c{bottom:992.301333pt;}
.y1f{bottom:994.968000pt;}
.y148{bottom:996.356000pt;}
.y103{bottom:1008.098667pt;}
.y1e{bottom:1010.968000pt;}
.y77{bottom:1012.297333pt;}
.y102{bottom:1013.724000pt;}
.h15{height:2.133333pt;}
.h2b{height:18.012381pt;}
.h9{height:23.587200pt;}
.h1f{height:27.999600pt;}
.h27{height:28.036933pt;}
.h4{height:30.841067pt;}
.hb{height:32.042667pt;}
.h2a{height:33.283277pt;}
.h6{height:33.648000pt;}
.h7{height:36.000000pt;}
.h10{height:37.386667pt;}
.h14{height:38.506667pt;}
.he{height:40.000000pt;}
.hd{height:40.053333pt;}
.h8{height:41.005867pt;}
.h19{height:41.125333pt;}
.h1d{height:44.000000pt;}
.h5{height:44.058667pt;}
.hf{height:44.864000pt;}
.h20{height:47.348933pt;}
.h1a{height:47.354267pt;}
.h23{height:48.996933pt;}
.h21{height:50.015600pt;}
.h11{height:50.020933pt;}
.h28{height:51.530667pt;}
.h22{height:51.546267pt;}
.ha{height:51.888000pt;}
.hc{height:52.341333pt;}
.h29{height:52.800000pt;}
.h25{height:54.853333pt;}
.h3{height:56.871467pt;}
.h24{height:58.448000pt;}
.h2{height:63.738667pt;}
.h26{height:65.743600pt;}
.h1e{height:75.871765pt;}
.h1b{height:75.930400pt;}
.h12{height:76.080000pt;}
.h13{height:76.640000pt;}
.h17{height:77.333333pt;}
.h1c{height:77.594667pt;}
.h18{height:86.607600pt;}
.h16{height:113.920000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x54{left:102.068000pt;}
.x52{left:106.588000pt;}
.x4f{left:111.106667pt;}
.x53{left:115.625333pt;}
.xe{left:133.428000pt;}
.x55{left:134.766667pt;}
.x51{left:139.285333pt;}
.x4d{left:143.804000pt;}
.x2e{left:146.760000pt;}
.x4c{left:148.324000pt;}
.x2{left:149.368000pt;}
.x42{left:150.270667pt;}
.x8{left:151.645333pt;}
.x20{left:153.353333pt;}
.xf{left:154.422667pt;}
.x7{left:158.542667pt;}
.x50{left:159.994667pt;}
.x1{left:161.088000pt;}
.xa{left:165.036000pt;}
.x11{left:166.126667pt;}
.x5{left:172.849333pt;}
.x43{left:178.138667pt;}
.x45{left:179.457333pt;}
.x35{left:186.052000pt;}
.x13{left:187.121333pt;}
.x49{left:192.352000pt;}
.x56{left:193.526667pt;}
.x26{left:198.118667pt;}
.x4a{left:199.757333pt;}
.x30{left:201.437333pt;}
.x47{left:203.614667pt;}
.x22{left:209.689333pt;}
.x48{left:211.020000pt;}
.x2c{left:224.040000pt;}
.x41{left:238.538667pt;}
.x6{left:239.553333pt;}
.x40{left:250.218667pt;}
.x37{left:262.164000pt;}
.xb{left:283.562667pt;}
.x3{left:295.566667pt;}
.x21{left:298.373333pt;}
.x46{left:299.557333pt;}
.xd{left:311.298667pt;}
.x4b{left:312.633333pt;}
.x38{left:314.385333pt;}
.x2d{left:316.096000pt;}
.x33{left:317.553333pt;}
.x4{left:319.424000pt;}
.x9{left:329.364000pt;}
.x3c{left:335.165333pt;}
.x32{left:336.530667pt;}
.x23{left:337.641333pt;}
.x31{left:339.404000pt;}
.x1f{left:342.348000pt;}
.x25{left:344.992000pt;}
.x17{left:349.781333pt;}
.x16{left:351.636000pt;}
.xc{left:353.348000pt;}
.x1d{left:355.058667pt;}
.x1e{left:360.149333pt;}
.x2b{left:362.153333pt;}
.x2f{left:363.833333pt;}
.x36{left:366.320000pt;}
.x34{left:368.444000pt;}
.x1b{left:373.702667pt;}
.x24{left:374.797333pt;}
.x29{left:375.733333pt;}
.x10{left:377.169333pt;}
.x28{left:383.114667pt;}
.x2a{left:389.866667pt;}
.x15{left:390.860000pt;}
.x1c{left:393.385333pt;}
.x27{left:394.838667pt;}
.x19{left:404.886667pt;}
.x4e{left:406.534667pt;}
.x14{left:407.494667pt;}
.x12{left:408.726667pt;}
.x1a{left:409.866667pt;}
.x3d{left:415.965333pt;}
.x3f{left:437.001333pt;}
.x3e{left:439.461333pt;}
.x18{left:442.632000pt;}
.x39{left:445.810667pt;}
.x3b{left:466.845333pt;}
.x3a{left:489.726667pt;}
.x44{left:564.030667pt;}
}




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