
    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_a8dc27f8e1c428605bdc87f1.woff2')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_aa58e3c38fdd53c3a66d9a20.woff2')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_f27ca5ed828ad441e55e75f5.woff2')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_d8327cbdc09107e10ef96b6d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_eaf5d81cfa8c10ba3c145e27.woff2')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_056001dadcdbd392c73566d7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ff906dcb3f592eed7a13b924.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_1afd61e5b77e1463ecd952e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_799d3fd5a34596175d2b1ac8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_e1653fb96d6419099173790b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_133d43c87179726bfbf59740.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2ac0d662652a6419d185dd33.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3cc4d0006ad48b4170914418.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9943d663ca10700fe73c1f45.woff2')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_df39ec5a8ae47ef408724f77.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;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_3cc4d0006ad48b4170914418.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_874efeb4b1444ffc55f0d8e0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;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_3cc4d0006ad48b4170914418.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_11f7fa909b6a2af6affc1079.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910645;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_3cc4d0006ad48b4170914418.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_778d03d1f1fc014376882fcd.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910645;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_3cc4d0006ad48b4170914418.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_e4126c05868e140c12b62d77.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910645;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_3cc4d0006ad48b4170914418.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_df03e10a0828672cbba4f1f0.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910645;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_3cc4d0006ad48b4170914418.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_e02332ea879ad4897f37d98c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.910645;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_3cc4d0006ad48b4170914418.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_d69f3d3b6b2dbc712a06b583.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910645;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_3cc4d0006ad48b4170914418.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_255c76df133622d51eefa664.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910645;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);}
.v3{vertical-align:-18.000000px;}
.v1{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.000000px;}
.ls35{letter-spacing:-0.721440px;}
.ls46{letter-spacing:-0.526680px;}
.ls34{letter-spacing:-0.480960px;}
.ls17{letter-spacing:-0.420840px;}
.ls2b{letter-spacing:-0.360720px;}
.ls15{letter-spacing:-0.240480px;}
.ls9{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.191520px;}
.ls18{letter-spacing:-0.180360px;}
.ls43{letter-spacing:-0.120240px;}
.lsa{letter-spacing:-0.108000px;}
.ls19{letter-spacing:-0.060120px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.019152px;}
.ls8{letter-spacing:0.047880px;}
.ls4{letter-spacing:0.101880px;}
.lse{letter-spacing:0.120240px;}
.ls2e{letter-spacing:0.139440px;}
.ls2f{letter-spacing:0.140640px;}
.ls1{letter-spacing:0.143640px;}
.ls20{letter-spacing:0.179400px;}
.ls2{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.180360px;}
.lsb{letter-spacing:0.180600px;}
.ls3{letter-spacing:0.191520px;}
.ls45{letter-spacing:0.239400px;}
.ls16{letter-spacing:0.240480px;}
.ls32{letter-spacing:0.300000px;}
.ls2d{letter-spacing:0.300600px;}
.ls11{letter-spacing:0.420840px;}
.ls24{letter-spacing:0.449400px;}
.ls25{letter-spacing:0.450000px;}
.ls1d{letter-spacing:0.480960px;}
.ls0{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.781560px;}
.ls3c{letter-spacing:0.809400px;}
.ls1f{letter-spacing:1.142280px;}
.ls29{letter-spacing:1.170000px;}
.ls38{letter-spacing:1.503000px;}
.ls40{letter-spacing:1.529400px;}
.ls39{letter-spacing:1.863720px;}
.ls41{letter-spacing:1.890000px;}
.ls33{letter-spacing:2.224440px;}
.ls3b{letter-spacing:2.249400px;}
.ls1e{letter-spacing:2.585160px;}
.ls27{letter-spacing:2.609400px;}
.ls28{letter-spacing:2.610000px;}
.ls26{letter-spacing:2.610600px;}
.ls47{letter-spacing:3.150000px;}
.ls44{letter-spacing:3.160080px;}
.ls14{letter-spacing:3.306600px;}
.ls3d{letter-spacing:3.330000px;}
.ls37{letter-spacing:3.667320px;}
.ls3e{letter-spacing:3.690600px;}
.ls42{letter-spacing:4.028040px;}
.ls13{letter-spacing:6.192360px;}
.ls3f{letter-spacing:6.210600px;}
.ls12{letter-spacing:6.553080px;}
.ls2a{letter-spacing:6.913800px;}
.ls48{letter-spacing:7.852320px;}
.ls36{letter-spacing:7.995960px;}
.ls3a{letter-spacing:8.010600px;}
.ls2c{letter-spacing:10.160280px;}
.ls31{letter-spacing:10.169400px;}
.ls30{letter-spacing:10.170000px;}
.ls22{letter-spacing:22.050000px;}
.ls1b{letter-spacing:22.064040px;}
.ls23{letter-spacing:22.410600px;}
.ls1c{letter-spacing:22.424760px;}
.ls10{letter-spacing:79.659000px;}
.ls21{letter-spacing:106.406040px;}
.ls1a{letter-spacing:106.412400px;}
.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;}
}
.ws5{word-spacing:-99.000000px;}
.wsc{word-spacing:-25.571880px;}
.ws2{word-spacing:-15.984000px;}
.ws1b{word-spacing:-15.210360px;}
.ws1e{word-spacing:-15.150240px;}
.ws1c{word-spacing:-15.030000px;}
.ws1{word-spacing:-15.012000px;}
.ws20{word-spacing:-14.969880px;}
.ws9e{word-spacing:-14.909760px;}
.ws1f{word-spacing:-14.849640px;}
.ws1d{word-spacing:-14.789520px;}
.ws9d{word-spacing:-14.669280px;}
.ws8b{word-spacing:-14.549040px;}
.ws8c{word-spacing:-14.308560px;}
.ws4{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.wsd{word-spacing:-12.780000px;}
.ws6{word-spacing:-12.161520px;}
.ws9{word-spacing:-12.113640px;}
.wsa{word-spacing:-12.017880px;}
.ws57{word-spacing:-12.000000px;}
.ws1a{word-spacing:-11.989152px;}
.ws8{word-spacing:-11.970000px;}
.ws7{word-spacing:-11.778480px;}
.ws71{word-spacing:-3.547080px;}
.ws6c{word-spacing:-3.486960px;}
.ws89{word-spacing:-3.366720px;}
.ws72{word-spacing:-3.306600px;}
.ws70{word-spacing:-3.186360px;}
.ws6d{word-spacing:-3.126240px;}
.ws91{word-spacing:-3.006000px;}
.wsb7{word-spacing:-2.968560px;}
.ws50{word-spacing:-2.945880px;}
.ws5e{word-spacing:-2.825640px;}
.ws43{word-spacing:-2.765520px;}
.ws44{word-spacing:-2.645280px;}
.wsad{word-spacing:-2.633400px;}
.ws4c{word-spacing:-2.585160px;}
.wsa9{word-spacing:-2.464920px;}
.ws3d{word-spacing:-2.404800px;}
.ws64{word-spacing:-2.224440px;}
.wsa8{word-spacing:-2.104200px;}
.ws26{word-spacing:-2.044080px;}
.wsbd{word-spacing:-1.963080px;}
.wsbc{word-spacing:-1.867320px;}
.ws63{word-spacing:-1.863720px;}
.ws3f{word-spacing:-1.803600px;}
.ws67{word-spacing:-1.743480px;}
.ws27{word-spacing:-1.683360px;}
.ws9f{word-spacing:-1.442880px;}
.ws9b{word-spacing:-1.382760px;}
.ws40{word-spacing:-1.322640px;}
.wsae{word-spacing:-1.292760px;}
.wsaf{word-spacing:-1.244880px;}
.wsb0{word-spacing:-1.149120px;}
.ws54{word-spacing:-1.022040px;}
.ws3b{word-spacing:-0.961920px;}
.ws66{word-spacing:-0.901800px;}
.ws53{word-spacing:-0.661320px;}
.ws3c{word-spacing:-0.601200px;}
.ws2b{word-spacing:-0.541080px;}
.ws10{word-spacing:-0.540000px;}
.wsc3{word-spacing:-0.526680px;}
.wsc2{word-spacing:-0.478800px;}
.wsaa{word-spacing:-0.430920px;}
.ws2c{word-spacing:-0.360720px;}
.ws13{word-spacing:-0.335160px;}
.ws94{word-spacing:-0.300600px;}
.ws3e{word-spacing:-0.240480px;}
.wsb4{word-spacing:-0.239400px;}
.ws11{word-spacing:-0.191520px;}
.ws19{word-spacing:-0.162000px;}
.ws12{word-spacing:-0.143640px;}
.ws25{word-spacing:-0.120240px;}
.wsb{word-spacing:-0.101880px;}
.ws0{word-spacing:-0.099000px;}
.ws58{word-spacing:-0.047880px;}
.wsf{word-spacing:0.000000px;}
.ws8f{word-spacing:0.060120px;}
.ws15{word-spacing:0.108000px;}
.wsbb{word-spacing:0.143640px;}
.ws18{word-spacing:0.162000px;}
.ws32{word-spacing:0.180360px;}
.ws14{word-spacing:0.203760px;}
.wsba{word-spacing:0.239400px;}
.ws5b{word-spacing:0.240480px;}
.ws16{word-spacing:0.270000px;}
.ws2d{word-spacing:0.360720px;}
.ws17{word-spacing:0.378000px;}
.ws2e{word-spacing:0.420840px;}
.wsb6{word-spacing:0.526680px;}
.ws35{word-spacing:0.541080px;}
.ws33{word-spacing:0.721440px;}
.ws34{word-spacing:0.781560px;}
.ws86{word-spacing:0.841680px;}
.ws60{word-spacing:0.901800px;}
.wsab{word-spacing:0.957600px;}
.ws6f{word-spacing:1.022040px;}
.ws48{word-spacing:1.082160px;}
.ws5f{word-spacing:1.262520px;}
.ws45{word-spacing:1.382760px;}
.ws46{word-spacing:1.442880px;}
.wsc8{word-spacing:1.580040px;}
.wsc9{word-spacing:1.675800px;}
.ws93{word-spacing:1.683360px;}
.ws62{word-spacing:1.803600px;}
.ws6e{word-spacing:1.923840px;}
.ws52{word-spacing:1.983960px;}
.wsac{word-spacing:2.010960px;}
.ws51{word-spacing:2.044080px;}
.ws5d{word-spacing:2.164320px;}
.ws88{word-spacing:2.224440px;}
.wsc0{word-spacing:2.298240px;}
.ws5c{word-spacing:2.344680px;}
.wsc1{word-spacing:2.346120px;}
.ws7c{word-spacing:2.525040px;}
.ws7d{word-spacing:2.705400px;}
.ws69{word-spacing:2.765520px;}
.ws8a{word-spacing:2.825640px;}
.ws65{word-spacing:2.885760px;}
.ws75{word-spacing:2.945880px;}
.wsbe{word-spacing:3.016440px;}
.ws56{word-spacing:3.066120px;}
.wsbf{word-spacing:3.112200px;}
.ws47{word-spacing:3.246480px;}
.wsa5{word-spacing:3.306600px;}
.ws55{word-spacing:3.366720px;}
.ws9c{word-spacing:3.426840px;}
.ws83{word-spacing:3.547080px;}
.ws24{word-spacing:3.607200px;}
.ws97{word-spacing:3.787560px;}
.wsa7{word-spacing:3.907800px;}
.ws42{word-spacing:3.967920px;}
.wsb8{word-spacing:4.069800px;}
.wsb9{word-spacing:4.165560px;}
.ws8d{word-spacing:4.328640px;}
.ws96{word-spacing:4.388760px;}
.ws85{word-spacing:4.509000px;}
.ws36{word-spacing:4.689360px;}
.ws37{word-spacing:4.749480px;}
.wsb1{word-spacing:4.883760px;}
.wsa0{word-spacing:4.989960px;}
.ws41{word-spacing:5.050080px;}
.wsa6{word-spacing:5.170320px;}
.ws82{word-spacing:5.410800px;}
.ws4d{word-spacing:5.771520px;}
.wsc7{word-spacing:5.985000px;}
.ws84{word-spacing:6.012000px;}
.ws4e{word-spacing:6.132240px;}
.wsb2{word-spacing:6.224400px;}
.wsb3{word-spacing:6.320160px;}
.ws4b{word-spacing:6.492960px;}
.ws6a{word-spacing:6.613200px;}
.ws49{word-spacing:6.673320px;}
.ws4a{word-spacing:6.733440px;}
.ws6b{word-spacing:6.853680px;}
.ws8e{word-spacing:7.034040px;}
.ws90{word-spacing:7.094160px;}
.ws4f{word-spacing:7.214400px;}
.ws87{word-spacing:7.575120px;}
.wsc4{word-spacing:7.660800px;}
.ws9a{word-spacing:7.755480px;}
.wsc5{word-spacing:7.804440px;}
.ws7b{word-spacing:7.935840px;}
.wsc6{word-spacing:8.043840px;}
.wsb5{word-spacing:8.139600px;}
.ws92{word-spacing:8.296560px;}
.ws73{word-spacing:8.416800px;}
.ws74{word-spacing:8.657280px;}
.ws98{word-spacing:9.018000px;}
.ws99{word-spacing:9.378720px;}
.ws80{word-spacing:9.739440px;}
.ws7f{word-spacing:10.100160px;}
.ws29{word-spacing:10.701360px;}
.ws28{word-spacing:10.761480px;}
.ws2a{word-spacing:10.941840px;}
.ws68{word-spacing:11.182320px;}
.ws23{word-spacing:11.302560px;}
.ws95{word-spacing:11.362680px;}
.ws22{word-spacing:11.543040px;}
.ws81{word-spacing:11.903760px;}
.ws31{word-spacing:13.647240px;}
.ws2f{word-spacing:13.767480px;}
.ws30{word-spacing:13.887720px;}
.ws61{word-spacing:14.068080px;}
.ws7e{word-spacing:14.789520px;}
.ws21{word-spacing:15.150240px;}
.ws3a{word-spacing:16.172280px;}
.ws38{word-spacing:16.232400px;}
.ws39{word-spacing:16.593120px;}
.ws7a{word-spacing:17.975880px;}
.ws79{word-spacing:18.096120px;}
.wsa1{word-spacing:18.276480px;}
.wsa4{word-spacing:18.336600px;}
.wsa2{word-spacing:18.396720px;}
.wsa3{word-spacing:18.456840px;}
.ws77{word-spacing:20.140200px;}
.ws78{word-spacing:20.500920px;}
.ws76{word-spacing:20.561040px;}
.ws5a{word-spacing:22.364640px;}
.ws59{word-spacing:22.484880px;}
.ws3{word-spacing:1361.383800px;}
._3{margin-left:-7.462200px;}
._2{margin-left:-6.211200px;}
._1{margin-left:-3.510600px;}
._0{margin-left:-1.791900px;}
._6{width:1.080000px;}
._e{width:2.464920px;}
._a{width:3.946680px;}
._5{width:5.093100px;}
._4{width:6.516900px;}
._10{width:7.671420px;}
._13{width:8.725320px;}
._f{width:9.859680px;}
._11{width:17.855640px;}
._12{width:19.226700px;}
._8{width:363.826800px;}
._14{width:644.766960px;}
._9{width:668.910000px;}
._b{width:670.069200px;}
._d{width:745.039320px;}
._7{width:766.068600px;}
._c{width:840.990000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,57,255);}
.fc2{color:rgb(0,158,227);}
.fc1{color:rgb(0,150,189);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:29.880000px;}
.fs4{font-size:47.880000px;}
.fs2{font-size:48.000000px;}
.fs8{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:60.120000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:78.120000px;}
.fs0{font-size:99.000000px;}
.fs6{font-size:101.880000px;}
.y3c{bottom:-364.085850px;}
.y83{bottom:-364.085700px;}
.y3b{bottom:-349.055850px;}
.y82{bottom:-349.055700px;}
.y3a{bottom:-334.025850px;}
.y81{bottom:-334.025700px;}
.y5a{bottom:-301.085850px;}
.ya0{bottom:-301.085700px;}
.y59{bottom:-286.055850px;}
.y9f{bottom:-286.055700px;}
.y58{bottom:-270.575850px;}
.y9e{bottom:-270.575700px;}
.y57{bottom:-238.775850px;}
.y9d{bottom:-238.775700px;}
.y56{bottom:-177.665850px;}
.y9c{bottom:-177.665700px;}
.y55{bottom:-160.385850px;}
.y9b{bottom:-160.385700px;}
.y54{bottom:-112.865700px;}
.y53{bottom:-82.805850px;}
.y9a{bottom:-82.805700px;}
.y52{bottom:-67.505850px;}
.y99{bottom:-67.505700px;}
.y51{bottom:-51.035850px;}
.y98{bottom:-51.035700px;}
.y18{bottom:-48.388350px;}
.y63{bottom:-48.388200px;}
.y50{bottom:-35.465850px;}
.y97{bottom:-35.465700px;}
.y17{bottom:-33.358350px;}
.y62{bottom:-33.358200px;}
.y9{bottom:-31.889700px;}
.y4f{bottom:-19.985850px;}
.y96{bottom:-19.985700px;}
.y16{bottom:-18.328350px;}
.y61{bottom:-18.328200px;}
.y4e{bottom:-4.415850px;}
.y95{bottom:-4.415700px;}
.y0{bottom:0.000000px;}
.y192{bottom:2.880300px;}
.ye1{bottom:3.598800px;}
.yfd{bottom:3.600300px;}
.yff{bottom:9.000300px;}
.y94{bottom:11.064300px;}
.y7f{bottom:14.611800px;}
.y191{bottom:16.740300px;}
.y93{bottom:26.634300px;}
.y7e{bottom:29.641800px;}
.y13{bottom:33.210300px;}
.y92{bottom:42.114300px;}
.y7d{bottom:45.121800px;}
.yf{bottom:50.160150px;}
.y5c{bottom:50.160300px;}
.y12{bottom:52.410150px;}
.y5f{bottom:52.410300px;}
.y91{bottom:57.684300px;}
.y8{bottom:68.315850px;}
.y90{bottom:73.164300px;}
.y7c{bottom:76.921800px;}
.y7{bottom:81.815850px;}
.y11{bottom:86.070150px;}
.y5e{bottom:86.070300px;}
.y8f{bottom:88.734300px;}
.yd1{bottom:90.703710px;}
.y18c{bottom:90.878880px;}
.y20c{bottom:94.555800px;}
.y1ec{bottom:94.617780px;}
.y6{bottom:95.315850px;}
.y132{bottom:95.666940px;}
.y157{bottom:102.897840px;}
.y179{bottom:103.075800px;}
.y8e{bottom:104.214300px;}
.y1c9{bottom:105.927540px;}
.yee{bottom:106.640400px;}
.y10a{bottom:106.705800px;}
.y20b{bottom:108.325800px;}
.y1eb{bottom:108.383280px;}
.yd0{bottom:108.709650px;}
.y5{bottom:108.815850px;}
.y18b{bottom:108.884820px;}
.y131{bottom:113.672880px;}
.y8d{bottom:119.814300px;}
.y156{bottom:120.903780px;}
.y178{bottom:121.075800px;}
.y20a{bottom:122.185800px;}
.y1ea{bottom:122.244540px;}
.y4{bottom:122.315850px;}
.y1c8{bottom:123.933480px;}
.yed{bottom:124.646340px;}
.y109{bottom:124.705800px;}
.ycf{bottom:126.715590px;}
.y18a{bottom:126.890760px;}
.y10{bottom:127.650150px;}
.y5d{bottom:127.650300px;}
.y130{bottom:131.678820px;}
.y8c{bottom:135.294300px;}
.y7b{bottom:138.031800px;}
.y155{bottom:138.909720px;}
.y177{bottom:139.075800px;}
.y209{bottom:140.455800px;}
.y1e9{bottom:140.510760px;}
.y19d{bottom:141.575430px;}
.y1aa{bottom:141.625800px;}
.y1c7{bottom:141.939420px;}
.yec{bottom:142.652280px;}
.y108{bottom:142.705800px;}
.y189{bottom:144.896700px;}
.y12f{bottom:149.684760px;}
.y8b{bottom:150.774300px;}
.y208{bottom:154.225800px;}
.y1e8{bottom:154.276260px;}
.y7a{bottom:155.311800px;}
.y154{bottom:156.915660px;}
.y176{bottom:157.075800px;}
.y19c{bottom:159.581370px;}
.y1a9{bottom:159.625800px;}
.y1c6{bottom:159.945360px;}
.yeb{bottom:160.658220px;}
.y107{bottom:160.705800px;}
.yce{bottom:162.712440px;}
.y188{bottom:162.902640px;}
.y12e{bottom:167.690700px;}
.y207{bottom:167.995800px;}
.y1e7{bottom:168.041760px;}
.y153{bottom:174.921600px;}
.y175{bottom:175.075800px;}
.y19b{bottom:177.587310px;}
.y1a8{bottom:177.625800px;}
.y1c5{bottom:177.951300px;}
.yea{bottom:178.664160px;}
.y106{bottom:178.705800px;}
.y187{bottom:180.908580px;}
.y8a{bottom:182.814300px;}
.y12d{bottom:185.696640px;}
.y206{bottom:186.355800px;}
.y1e6{bottom:186.403740px;}
.y152{bottom:192.957600px;}
.y174{bottom:193.105800px;}
.y19a{bottom:195.623310px;}
.y1a7{bottom:195.655800px;}
.y1c4{bottom:195.987300px;}
.ye9{bottom:196.700160px;}
.y105{bottom:196.735800px;}
.ycd{bottom:198.739350px;}
.y186{bottom:198.944580px;}
.y205{bottom:200.155800px;}
.y1e5{bottom:200.205150px;}
.y79{bottom:202.831800px;}
.y12c{bottom:203.732640px;}
.y151{bottom:210.963540px;}
.y173{bottom:211.105800px;}
.y199{bottom:213.629250px;}
.y1a6{bottom:213.655800px;}
.y204{bottom:213.925800px;}
.y1e4{bottom:213.970650px;}
.y1c3{bottom:213.993240px;}
.ye8{bottom:214.706100px;}
.y104{bottom:214.735800px;}
.ycc{bottom:216.745290px;}
.y185{bottom:216.950520px;}
.y12b{bottom:221.738580px;}
.y14{bottom:225.354000px;}
.y150{bottom:228.969480px;}
.y172{bottom:229.105800px;}
.y198{bottom:231.635190px;}
.y1a5{bottom:231.655800px;}
.y1c2{bottom:231.999180px;}
.y203{bottom:232.285800px;}
.y1e3{bottom:232.332630px;}
.ye7{bottom:232.712040px;}
.y103{bottom:232.735800px;}
.y2f{bottom:232.891650px;}
.y78{bottom:232.891800px;}
.y89{bottom:234.294300px;}
.ycb{bottom:234.751230px;}
.y184{bottom:234.956460px;}
.y12a{bottom:239.744520px;}
.y36{bottom:239.961330px;}
.y202{bottom:246.055800px;}
.y1e2{bottom:246.098130px;}
.y14f{bottom:246.975420px;}
.y171{bottom:247.105800px;}
.y2e{bottom:248.191650px;}
.y77{bottom:248.191800px;}
.y197{bottom:249.641130px;}
.y1a4{bottom:249.655800px;}
.y1c1{bottom:250.005120px;}
.ye6{bottom:250.717980px;}
.y102{bottom:250.735800px;}
.yca{bottom:252.757170px;}
.y183{bottom:252.962400px;}
.y35{bottom:254.995650px;}
.y129{bottom:257.750460px;}
.y88{bottom:258.324300px;}
.y201{bottom:259.825800px;}
.y1e1{bottom:259.863630px;}
.y2d{bottom:264.661650px;}
.y76{bottom:264.661800px;}
.y14e{bottom:264.981360px;}
.y170{bottom:265.105800px;}
.y196{bottom:267.647070px;}
.y1a3{bottom:267.655800px;}
.y1c0{bottom:268.011060px;}
.ye5{bottom:268.723920px;}
.y101{bottom:268.735800px;}
.y34{bottom:270.475650px;}
.yc9{bottom:270.763110px;}
.y128{bottom:275.756400px;}
.y200{bottom:278.185800px;}
.y1e0{bottom:278.225610px;}
.y2c{bottom:280.231650px;}
.y75{bottom:280.231800px;}
.y14d{bottom:282.987300px;}
.y16f{bottom:283.105800px;}
.y195{bottom:285.653010px;}
.y1a2{bottom:285.655800px;}
.y1bf{bottom:286.017000px;}
.ye4{bottom:286.729860px;}
.y100{bottom:286.735800px;}
.yc8{bottom:288.769050px;}
.y182{bottom:288.959250px;}
.y1ff{bottom:291.955800px;}
.y1df{bottom:291.991110px;}
.y87{bottom:292.794300px;}
.y127{bottom:293.762340px;}
.y2b{bottom:295.711650px;}
.y74{bottom:295.711800px;}
.y14c{bottom:300.993240px;}
.y16e{bottom:301.105800px;}
.y33{bottom:302.275650px;}
.y1a1{bottom:303.655800px;}
.y194{bottom:303.658950px;}
.y1be{bottom:304.022940px;}
.ye3{bottom:304.735800px;}
.yc7{bottom:306.774990px;}
.y1fe{bottom:310.225800px;}
.y1de{bottom:310.257330px;}
.y2a{bottom:311.281650px;}
.y73{bottom:311.281800px;}
.y126{bottom:311.768280px;}
.y14b{bottom:318.999180px;}
.y16d{bottom:319.105800px;}
.yfe{bottom:319.135500px;}
.y1bd{bottom:322.028880px;}
.y1fd{bottom:324.085800px;}
.y1dd{bottom:324.118590px;}
.yc6{bottom:324.780930px;}
.y181{bottom:324.956100px;}
.y29{bottom:326.761650px;}
.y72{bottom:326.761800px;}
.y86{bottom:327.264300px;}
.ye2{bottom:328.135800px;}
.y125{bottom:329.774220px;}
.y14a{bottom:337.005120px;}
.y16c{bottom:337.105800px;}
.y1fc{bottom:337.855800px;}
.y1dc{bottom:337.884090px;}
.y193{bottom:339.655800px;}
.y1bc{bottom:340.034820px;}
.y28{bottom:342.331650px;}
.y71{bottom:342.331800px;}
.yc5{bottom:342.786870px;}
.y180{bottom:342.962040px;}
.y124{bottom:347.780160px;}
.y149{bottom:355.011060px;}
.y16b{bottom:355.105800px;}
.yfc{bottom:355.135500px;}
.ye0{bottom:355.137000px;}
.y1fb{bottom:356.125800px;}
.y1db{bottom:356.150310px;}
.y27{bottom:357.811650px;}
.y70{bottom:357.811800px;}
.y1bb{bottom:358.040760px;}
.yc4{bottom:360.792810px;}
.y17f{bottom:360.967980px;}
.y32{bottom:363.381150px;}
.y123{bottom:365.786100px;}
.y85{bottom:366.864300px;}
.y1fa{bottom:369.985800px;}
.y1da{bottom:370.011570px;}
.y190{bottom:372.055500px;}
.y148{bottom:373.017000px;}
.y16a{bottom:373.105800px;}
.y26{bottom:373.381650px;}
.y6f{bottom:373.381800px;}
.y1ba{bottom:376.046700px;}
.yc3{bottom:378.798750px;}
.y17e{bottom:378.973920px;}
.y31{bottom:380.665650px;}
.y1f9{bottom:383.755800px;}
.y1d9{bottom:383.777070px;}
.y122{bottom:383.792040px;}
.y84{bottom:384.864300px;}
.y25{bottom:388.861650px;}
.y6e{bottom:388.861800px;}
.y147{bottom:391.022940px;}
.y169{bottom:391.105800px;}
.yc2{bottom:396.804690px;}
.y17d{bottom:396.979860px;}
.y1a0{bottom:399.685500px;}
.y18f{bottom:399.687000px;}
.y121{bottom:401.797980px;}
.y1f8{bottom:402.025800px;}
.y1d8{bottom:402.043290px;}
.y24{bottom:404.431650px;}
.y6d{bottom:404.431800px;}
.y146{bottom:409.028880px;}
.y168{bottom:409.105800px;}
.y1b9{bottom:412.043550px;}
.yc1{bottom:414.810630px;}
.y17c{bottom:414.985800px;}
.y1f7{bottom:415.885800px;}
.y1d7{bottom:415.904550px;}
.y120{bottom:419.803920px;}
.y23{bottom:419.911650px;}
.y6c{bottom:419.911800px;}
.y39{bottom:420.144150px;}
.y80{bottom:420.144300px;}
.y145{bottom:427.034820px;}
.y167{bottom:427.105800px;}
.y30{bottom:428.185800px;}
.y1f6{bottom:429.655800px;}
.y1d6{bottom:429.670050px;}
.yc0{bottom:432.816570px;}
.y22{bottom:435.511650px;}
.y6b{bottom:435.511800px;}
.y11f{bottom:437.809860px;}
.y17b{bottom:438.385800px;}
.y144{bottom:445.040760px;}
.y166{bottom:445.105800px;}
.y1f5{bottom:447.925800px;}
.y1d5{bottom:447.936270px;}
.y1b8{bottom:448.040400px;}
.ybf{bottom:450.822510px;}
.y21{bottom:450.991650px;}
.y6a{bottom:450.991800px;}
.yd{bottom:453.824550px;}
.y11e{bottom:455.815800px;}
.y1f4{bottom:461.785800px;}
.y1d4{bottom:461.797530px;}
.y143{bottom:463.046700px;}
.y165{bottom:463.105800px;}
.y17a{bottom:465.385500px;}
.y1b7{bottom:466.046340px;}
.y20{bottom:466.471650px;}
.y69{bottom:466.471800px;}
.yc{bottom:468.824550px;}
.ybe{bottom:468.828450px;}
.y11d{bottom:479.212920px;}
.y1f3{bottom:480.055800px;}
.y1d3{bottom:480.063750px;}
.y142{bottom:481.052640px;}
.y164{bottom:481.105800px;}
.yb{bottom:483.824550px;}
.y1b6{bottom:484.052280px;}
.ybd{bottom:486.834390px;}
.y1f2{bottom:493.825800px;}
.y1d2{bottom:493.829250px;}
.y1f{bottom:498.511650px;}
.y68{bottom:498.511800px;}
.ya{bottom:498.824550px;}
.y141{bottom:499.058580px;}
.y163{bottom:499.105800px;}
.y1b5{bottom:502.058220px;}
.ybc{bottom:504.840330px;}
.y11c{bottom:509.185800px;}
.y1f1{bottom:512.185800px;}
.y1d1{bottom:512.191230px;}
.y38{bottom:515.551500px;}
.y140{bottom:517.064520px;}
.y162{bottom:517.105800px;}
.y1b4{bottom:520.064160px;}
.ybb{bottom:522.846270px;}
.y4d{bottom:526.600650px;}
.y1f0{bottom:530.455800px;}
.y1d0{bottom:530.457450px;}
.y13f{bottom:535.070460px;}
.y161{bottom:535.105800px;}
.y11b{bottom:536.185500px;}
.y1b3{bottom:538.070100px;}
.yba{bottom:540.852210px;}
.y4c{bottom:542.166150px;}
.y1cf{bottom:548.723670px;}
.y1ef{bottom:548.725800px;}
.y1e{bottom:549.991650px;}
.y67{bottom:549.991800px;}
.y13e{bottom:553.076400px;}
.y160{bottom:553.105800px;}
.y1b2{bottom:556.076040px;}
.y4b{bottom:557.650650px;}
.yb9{bottom:558.858150px;}
.y1ce{bottom:567.025800px;}
.y13d{bottom:571.112400px;}
.y15f{bottom:571.135800px;}
.y4a{bottom:573.216150px;}
.y1d{bottom:574.021650px;}
.y66{bottom:574.021800px;}
.y1b1{bottom:574.112040px;}
.yb8{bottom:576.894150px;}
.y49{bottom:588.700650px;}
.y13c{bottom:589.118340px;}
.y15e{bottom:589.135800px;}
.y1b0{bottom:592.117980px;}
.yb7{bottom:594.900090px;}
.y1ee{bottom:599.515800px;}
.y1cd{bottom:599.518950px;}
.y48{bottom:604.266150px;}
.y13b{bottom:607.124280px;}
.y15d{bottom:607.135800px;}
.y1c{bottom:608.491650px;}
.y65{bottom:608.491800px;}
.y1af{bottom:610.123920px;}
.yb6{bottom:612.906030px;}
.y47{bottom:619.750650px;}
.y13a{bottom:625.130220px;}
.y15c{bottom:625.135800px;}
.y1ae{bottom:628.129860px;}
.yb5{bottom:630.911970px;}
.y46{bottom:635.356650px;}
.y1cc{bottom:635.515800px;}
.y1b{bottom:642.961650px;}
.y64{bottom:642.961800px;}
.y15b{bottom:643.135800px;}
.y139{bottom:643.136160px;}
.y1ad{bottom:646.135800px;}
.yb4{bottom:648.917910px;}
.y1ed{bottom:649.915500px;}
.y45{bottom:650.841150px;}
.y1cb{bottom:658.915800px;}
.y15a{bottom:661.135800px;}
.y138{bottom:661.142100px;}
.y44{bottom:666.325650px;}
.yb3{bottom:666.923850px;}
.y1ac{bottom:669.535800px;}
.y1a{bottom:682.561800px;}
.yb2{bottom:684.929790px;}
.y1ca{bottom:685.915500px;}
.y1ab{bottom:696.535500px;}
.y159{bottom:697.135800px;}
.y137{bottom:697.138950px;}
.y43{bottom:698.365650px;}
.y19{bottom:700.561800px;}
.yb1{bottom:702.935730px;}
.y18e{bottom:720.926640px;}
.yb0{bottom:720.941670px;}
.y19f{bottom:721.015800px;}
.y11a{bottom:722.441670px;}
.y136{bottom:733.135800px;}
.y15{bottom:735.841650px;}
.y60{bottom:735.841800px;}
.y18d{bottom:738.932580px;}
.yaf{bottom:738.947610px;}
.y19e{bottom:739.015800px;}
.y119{bottom:740.447610px;}
.y158{bottom:747.535500px;}
.y42{bottom:749.845650px;}
.y135{bottom:756.535800px;}
.ydf{bottom:756.938520px;}
.yae{bottom:756.953550px;}
.yfb{bottom:757.015800px;}
.y118{bottom:758.453550px;}
.y41{bottom:773.875650px;}
.yde{bottom:774.944460px;}
.yad{bottom:774.959490px;}
.yfa{bottom:775.015800px;}
.y117{bottom:776.459490px;}
.y134{bottom:783.535500px;}
.ydd{bottom:792.950400px;}
.yac{bottom:792.965430px;}
.yf9{bottom:793.015800px;}
.y116{bottom:794.465430px;}
.y40{bottom:808.354740px;}
.ydc{bottom:810.956340px;}
.yab{bottom:810.971370px;}
.yf8{bottom:811.015800px;}
.y115{bottom:812.471370px;}
.ydb{bottom:828.962280px;}
.yaa{bottom:828.977310px;}
.yf7{bottom:829.015800px;}
.y114{bottom:830.477310px;}
.y3f{bottom:842.815650px;}
.yda{bottom:846.968220px;}
.ya9{bottom:846.983250px;}
.yf6{bottom:847.015800px;}
.y113{bottom:848.483250px;}
.yd9{bottom:864.974160px;}
.ya8{bottom:864.989190px;}
.yf5{bottom:865.015800px;}
.y112{bottom:866.489190px;}
.y215{bottom:881.479680px;}
.y3e{bottom:882.415800px;}
.yd8{bottom:882.980100px;}
.ya7{bottom:882.995130px;}
.yf4{bottom:883.015800px;}
.y111{bottom:884.495130px;}
.y214{bottom:895.340940px;}
.y3d{bottom:900.415800px;}
.yd7{bottom:900.986040px;}
.ya6{bottom:901.001070px;}
.yf3{bottom:901.015800px;}
.y110{bottom:902.501070px;}
.y213{bottom:913.607160px;}
.yd6{bottom:918.991980px;}
.ya5{bottom:919.007010px;}
.yf2{bottom:919.015800px;}
.y10f{bottom:920.507010px;}
.y212{bottom:927.372660px;}
.yd5{bottom:937.027980px;}
.ya4{bottom:937.043010px;}
.yf1{bottom:937.045800px;}
.y10e{bottom:938.543010px;}
.y211{bottom:945.758580px;}
.yd4{bottom:955.033920px;}
.yf0{bottom:955.045800px;}
.ya3{bottom:955.048950px;}
.y10d{bottom:956.548950px;}
.y210{bottom:959.524080px;}
.y3{bottom:961.130850px;}
.y37{bottom:968.815500px;}
.yd3{bottom:973.039860px;}
.yef{bottom:973.045800px;}
.y20f{bottom:977.790300px;}
.y1{bottom:988.999500px;}
.ya2{bottom:991.045800px;}
.y20e{bottom:991.555800px;}
.y10c{bottom:992.545800px;}
.ye{bottom:994.315500px;}
.y20d{bottom:1023.415800px;}
.yd2{bottom:1026.325800px;}
.ya1{bottom:1026.415800px;}
.y133{bottom:1027.825800px;}
.y10b{bottom:1027.915800px;}
.y2{bottom:1033.378950px;}
.y5b{bottom:1035.561750px;}
.h7{height:-541.494000px;}
.h14{height:-29.910000px;}
.h8{height:20.746758px;}
.h1f{height:27.630000px;}
.hc{height:33.244805px;}
.hb{height:33.268184px;}
.h4{height:33.328125px;}
.h5{height:36.000000px;}
.h11{height:36.597656px;}
.h6{height:37.494141px;}
.h12{height:37.520508px;}
.h9{height:38.654297px;}
.h3{height:38.664000px;}
.h17{height:40.745391px;}
.h13{height:41.772832px;}
.h18{height:43.035117px;}
.he{height:50.027344px;}
.h10{height:62.519414px;}
.ha{height:65.983887px;}
.hf{height:70.788691px;}
.h2{height:74.646000px;}
.h1b{height:182.730000px;}
.h1c{height:205.410000px;}
.hd{height:227.467500px;}
.h21{height:301.528500px;}
.h22{height:301.530000px;}
.h20{height:308.911500px;}
.h1e{height:317.730000px;}
.h1d{height:342.030000px;}
.h19{height:398.280000px;}
.h15{height:423.354000px;}
.h23{height:1012.806000px;}
.h16{height:1015.807500px;}
.h1a{height:1017.307500px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w6{width:-655.128000px;}
.w7{width:-227.958000px;}
.wc{width:-60.108000px;}
.wf{width:-59.388000px;}
.w8{width:-47.658000px;}
.wb{width:0.102000px;}
.w9{width:3.102000px;}
.w2{width:94.890000px;}
.w4{width:180.300000px;}
.w3{width:427.170000px;}
.w10{width:700.920000px;}
.wa{width:701.010000px;}
.wd{width:701.641500px;}
.we{width:701.730000px;}
.w5{width:813.378000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x34{left:-761.118000px;}
.x24{left:-758.118000px;}
.x37{left:-753.018000px;}
.x33{left:-750.498000px;}
.x2c{left:-749.118000px;}
.x25{left:-745.338000px;}
.x35{left:-743.298000px;}
.x27{left:-740.208000px;}
.x36{left:-707.298000px;}
.x2b{left:-691.968000px;}
.x3e{left:-676.848000px;}
.x38{left:-673.067850px;}
.x41{left:-671.088000px;}
.x3b{left:-668.477850px;}
.x1e{left:-665.387850px;}
.x2a{left:-648.288000px;}
.x28{left:-606.347850px;}
.x1f{left:-568.727850px;}
.x21{left:-555.678000px;}
.x20{left:-509.687850px;}
.x29{left:-496.368000px;}
.x26{left:-482.147850px;}
.x3f{left:-410.688000px;}
.x23{left:-228.407850px;}
.x22{left:-56.838000px;}
.x0{left:0.000000px;}
.xe{left:3.000000px;}
.x31{left:8.100000px;}
.x5{left:56.125950px;}
.x4{left:58.251900px;}
.x2d{left:59.580000px;}
.x1d{left:64.260000px;}
.x6{left:66.360000px;}
.xf{left:68.040000px;}
.x17{left:71.040000px;}
.x11{left:73.170000px;}
.x16{left:76.261440px;}
.x2e{left:77.390550px;}
.x7{left:84.630000px;}
.x9{left:86.400000px;}
.xb{left:99.450000px;}
.x30{left:109.082430px;}
.x1c{left:121.410000px;}
.x15{left:124.410000px;}
.x2f{left:130.987530px;}
.x32{left:143.310000px;}
.xa{left:145.440000px;}
.x3a{left:147.900000px;}
.x40{left:149.430000px;}
.x8{left:161.250000px;}
.x14{left:165.090000px;}
.x1b{left:168.090000px;}
.xd{left:171.120000px;}
.x3c{left:202.710000px;}
.x12{left:207.030000px;}
.x19{left:210.040320px;}
.x2{left:236.123100px;}
.x3{left:248.268750px;}
.x1{left:292.179600px;}
.x13{left:317.010000px;}
.x1a{left:320.010000px;}
.x10{left:331.230000px;}
.x18{left:334.236000px;}
.x3d{left:350.430000px;}
.x39{left:410.459490px;}
.xc{left:588.420000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v1{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.000000pt;}
.ls35{letter-spacing:-0.641280pt;}
.ls46{letter-spacing:-0.468160pt;}
.ls34{letter-spacing:-0.427520pt;}
.ls17{letter-spacing:-0.374080pt;}
.ls2b{letter-spacing:-0.320640pt;}
.ls15{letter-spacing:-0.213760pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.170240pt;}
.ls18{letter-spacing:-0.160320pt;}
.ls43{letter-spacing:-0.106880pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls19{letter-spacing:-0.053440pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.017024pt;}
.ls8{letter-spacing:0.042560pt;}
.ls4{letter-spacing:0.090560pt;}
.lse{letter-spacing:0.106880pt;}
.ls2e{letter-spacing:0.123947pt;}
.ls2f{letter-spacing:0.125013pt;}
.ls1{letter-spacing:0.127680pt;}
.ls20{letter-spacing:0.159467pt;}
.ls2{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.160320pt;}
.lsb{letter-spacing:0.160533pt;}
.ls3{letter-spacing:0.170240pt;}
.ls45{letter-spacing:0.212800pt;}
.ls16{letter-spacing:0.213760pt;}
.ls32{letter-spacing:0.266667pt;}
.ls2d{letter-spacing:0.267200pt;}
.ls11{letter-spacing:0.374080pt;}
.ls24{letter-spacing:0.399467pt;}
.ls25{letter-spacing:0.400000pt;}
.ls1d{letter-spacing:0.427520pt;}
.ls0{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.694720pt;}
.ls3c{letter-spacing:0.719467pt;}
.ls1f{letter-spacing:1.015360pt;}
.ls29{letter-spacing:1.040000pt;}
.ls38{letter-spacing:1.336000pt;}
.ls40{letter-spacing:1.359467pt;}
.ls39{letter-spacing:1.656640pt;}
.ls41{letter-spacing:1.680000pt;}
.ls33{letter-spacing:1.977280pt;}
.ls3b{letter-spacing:1.999467pt;}
.ls1e{letter-spacing:2.297920pt;}
.ls27{letter-spacing:2.319467pt;}
.ls28{letter-spacing:2.320000pt;}
.ls26{letter-spacing:2.320533pt;}
.ls47{letter-spacing:2.800000pt;}
.ls44{letter-spacing:2.808960pt;}
.ls14{letter-spacing:2.939200pt;}
.ls3d{letter-spacing:2.960000pt;}
.ls37{letter-spacing:3.259840pt;}
.ls3e{letter-spacing:3.280533pt;}
.ls42{letter-spacing:3.580480pt;}
.ls13{letter-spacing:5.504320pt;}
.ls3f{letter-spacing:5.520533pt;}
.ls12{letter-spacing:5.824960pt;}
.ls2a{letter-spacing:6.145600pt;}
.ls48{letter-spacing:6.979840pt;}
.ls36{letter-spacing:7.107520pt;}
.ls3a{letter-spacing:7.120533pt;}
.ls2c{letter-spacing:9.031360pt;}
.ls31{letter-spacing:9.039467pt;}
.ls30{letter-spacing:9.040000pt;}
.ls22{letter-spacing:19.600000pt;}
.ls1b{letter-spacing:19.612480pt;}
.ls23{letter-spacing:19.920533pt;}
.ls1c{letter-spacing:19.933120pt;}
.ls10{letter-spacing:70.808000pt;}
.ls21{letter-spacing:94.583147pt;}
.ls1a{letter-spacing:94.588800pt;}
.ws5{word-spacing:-88.000000pt;}
.wsc{word-spacing:-22.730560pt;}
.ws2{word-spacing:-14.208000pt;}
.ws1b{word-spacing:-13.520320pt;}
.ws1e{word-spacing:-13.466880pt;}
.ws1c{word-spacing:-13.360000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws20{word-spacing:-13.306560pt;}
.ws9e{word-spacing:-13.253120pt;}
.ws1f{word-spacing:-13.199680pt;}
.ws1d{word-spacing:-13.146240pt;}
.ws9d{word-spacing:-13.039360pt;}
.ws8b{word-spacing:-12.932480pt;}
.ws8c{word-spacing:-12.718720pt;}
.ws4{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.360000pt;}
.ws6{word-spacing:-10.810240pt;}
.ws9{word-spacing:-10.767680pt;}
.wsa{word-spacing:-10.682560pt;}
.ws57{word-spacing:-10.666667pt;}
.ws1a{word-spacing:-10.657024pt;}
.ws8{word-spacing:-10.640000pt;}
.ws7{word-spacing:-10.469760pt;}
.ws71{word-spacing:-3.152960pt;}
.ws6c{word-spacing:-3.099520pt;}
.ws89{word-spacing:-2.992640pt;}
.ws72{word-spacing:-2.939200pt;}
.ws70{word-spacing:-2.832320pt;}
.ws6d{word-spacing:-2.778880pt;}
.ws91{word-spacing:-2.672000pt;}
.wsb7{word-spacing:-2.638720pt;}
.ws50{word-spacing:-2.618560pt;}
.ws5e{word-spacing:-2.511680pt;}
.ws43{word-spacing:-2.458240pt;}
.ws44{word-spacing:-2.351360pt;}
.wsad{word-spacing:-2.340800pt;}
.ws4c{word-spacing:-2.297920pt;}
.wsa9{word-spacing:-2.191040pt;}
.ws3d{word-spacing:-2.137600pt;}
.ws64{word-spacing:-1.977280pt;}
.wsa8{word-spacing:-1.870400pt;}
.ws26{word-spacing:-1.816960pt;}
.wsbd{word-spacing:-1.744960pt;}
.wsbc{word-spacing:-1.659840pt;}
.ws63{word-spacing:-1.656640pt;}
.ws3f{word-spacing:-1.603200pt;}
.ws67{word-spacing:-1.549760pt;}
.ws27{word-spacing:-1.496320pt;}
.ws9f{word-spacing:-1.282560pt;}
.ws9b{word-spacing:-1.229120pt;}
.ws40{word-spacing:-1.175680pt;}
.wsae{word-spacing:-1.149120pt;}
.wsaf{word-spacing:-1.106560pt;}
.wsb0{word-spacing:-1.021440pt;}
.ws54{word-spacing:-0.908480pt;}
.ws3b{word-spacing:-0.855040pt;}
.ws66{word-spacing:-0.801600pt;}
.ws53{word-spacing:-0.587840pt;}
.ws3c{word-spacing:-0.534400pt;}
.ws2b{word-spacing:-0.480960pt;}
.ws10{word-spacing:-0.480000pt;}
.wsc3{word-spacing:-0.468160pt;}
.wsc2{word-spacing:-0.425600pt;}
.wsaa{word-spacing:-0.383040pt;}
.ws2c{word-spacing:-0.320640pt;}
.ws13{word-spacing:-0.297920pt;}
.ws94{word-spacing:-0.267200pt;}
.ws3e{word-spacing:-0.213760pt;}
.wsb4{word-spacing:-0.212800pt;}
.ws11{word-spacing:-0.170240pt;}
.ws19{word-spacing:-0.144000pt;}
.ws12{word-spacing:-0.127680pt;}
.ws25{word-spacing:-0.106880pt;}
.wsb{word-spacing:-0.090560pt;}
.ws0{word-spacing:-0.088000pt;}
.ws58{word-spacing:-0.042560pt;}
.wsf{word-spacing:0.000000pt;}
.ws8f{word-spacing:0.053440pt;}
.ws15{word-spacing:0.096000pt;}
.wsbb{word-spacing:0.127680pt;}
.ws18{word-spacing:0.144000pt;}
.ws32{word-spacing:0.160320pt;}
.ws14{word-spacing:0.181120pt;}
.wsba{word-spacing:0.212800pt;}
.ws5b{word-spacing:0.213760pt;}
.ws16{word-spacing:0.240000pt;}
.ws2d{word-spacing:0.320640pt;}
.ws17{word-spacing:0.336000pt;}
.ws2e{word-spacing:0.374080pt;}
.wsb6{word-spacing:0.468160pt;}
.ws35{word-spacing:0.480960pt;}
.ws33{word-spacing:0.641280pt;}
.ws34{word-spacing:0.694720pt;}
.ws86{word-spacing:0.748160pt;}
.ws60{word-spacing:0.801600pt;}
.wsab{word-spacing:0.851200pt;}
.ws6f{word-spacing:0.908480pt;}
.ws48{word-spacing:0.961920pt;}
.ws5f{word-spacing:1.122240pt;}
.ws45{word-spacing:1.229120pt;}
.ws46{word-spacing:1.282560pt;}
.wsc8{word-spacing:1.404480pt;}
.wsc9{word-spacing:1.489600pt;}
.ws93{word-spacing:1.496320pt;}
.ws62{word-spacing:1.603200pt;}
.ws6e{word-spacing:1.710080pt;}
.ws52{word-spacing:1.763520pt;}
.wsac{word-spacing:1.787520pt;}
.ws51{word-spacing:1.816960pt;}
.ws5d{word-spacing:1.923840pt;}
.ws88{word-spacing:1.977280pt;}
.wsc0{word-spacing:2.042880pt;}
.ws5c{word-spacing:2.084160pt;}
.wsc1{word-spacing:2.085440pt;}
.ws7c{word-spacing:2.244480pt;}
.ws7d{word-spacing:2.404800pt;}
.ws69{word-spacing:2.458240pt;}
.ws8a{word-spacing:2.511680pt;}
.ws65{word-spacing:2.565120pt;}
.ws75{word-spacing:2.618560pt;}
.wsbe{word-spacing:2.681280pt;}
.ws56{word-spacing:2.725440pt;}
.wsbf{word-spacing:2.766400pt;}
.ws47{word-spacing:2.885760pt;}
.wsa5{word-spacing:2.939200pt;}
.ws55{word-spacing:2.992640pt;}
.ws9c{word-spacing:3.046080pt;}
.ws83{word-spacing:3.152960pt;}
.ws24{word-spacing:3.206400pt;}
.ws97{word-spacing:3.366720pt;}
.wsa7{word-spacing:3.473600pt;}
.ws42{word-spacing:3.527040pt;}
.wsb8{word-spacing:3.617600pt;}
.wsb9{word-spacing:3.702720pt;}
.ws8d{word-spacing:3.847680pt;}
.ws96{word-spacing:3.901120pt;}
.ws85{word-spacing:4.008000pt;}
.ws36{word-spacing:4.168320pt;}
.ws37{word-spacing:4.221760pt;}
.wsb1{word-spacing:4.341120pt;}
.wsa0{word-spacing:4.435520pt;}
.ws41{word-spacing:4.488960pt;}
.wsa6{word-spacing:4.595840pt;}
.ws82{word-spacing:4.809600pt;}
.ws4d{word-spacing:5.130240pt;}
.wsc7{word-spacing:5.320000pt;}
.ws84{word-spacing:5.344000pt;}
.ws4e{word-spacing:5.450880pt;}
.wsb2{word-spacing:5.532800pt;}
.wsb3{word-spacing:5.617920pt;}
.ws4b{word-spacing:5.771520pt;}
.ws6a{word-spacing:5.878400pt;}
.ws49{word-spacing:5.931840pt;}
.ws4a{word-spacing:5.985280pt;}
.ws6b{word-spacing:6.092160pt;}
.ws8e{word-spacing:6.252480pt;}
.ws90{word-spacing:6.305920pt;}
.ws4f{word-spacing:6.412800pt;}
.ws87{word-spacing:6.733440pt;}
.wsc4{word-spacing:6.809600pt;}
.ws9a{word-spacing:6.893760pt;}
.wsc5{word-spacing:6.937280pt;}
.ws7b{word-spacing:7.054080pt;}
.wsc6{word-spacing:7.150080pt;}
.wsb5{word-spacing:7.235200pt;}
.ws92{word-spacing:7.374720pt;}
.ws73{word-spacing:7.481600pt;}
.ws74{word-spacing:7.695360pt;}
.ws98{word-spacing:8.016000pt;}
.ws99{word-spacing:8.336640pt;}
.ws80{word-spacing:8.657280pt;}
.ws7f{word-spacing:8.977920pt;}
.ws29{word-spacing:9.512320pt;}
.ws28{word-spacing:9.565760pt;}
.ws2a{word-spacing:9.726080pt;}
.ws68{word-spacing:9.939840pt;}
.ws23{word-spacing:10.046720pt;}
.ws95{word-spacing:10.100160pt;}
.ws22{word-spacing:10.260480pt;}
.ws81{word-spacing:10.581120pt;}
.ws31{word-spacing:12.130880pt;}
.ws2f{word-spacing:12.237760pt;}
.ws30{word-spacing:12.344640pt;}
.ws61{word-spacing:12.504960pt;}
.ws7e{word-spacing:13.146240pt;}
.ws21{word-spacing:13.466880pt;}
.ws3a{word-spacing:14.375360pt;}
.ws38{word-spacing:14.428800pt;}
.ws39{word-spacing:14.749440pt;}
.ws7a{word-spacing:15.978560pt;}
.ws79{word-spacing:16.085440pt;}
.wsa1{word-spacing:16.245760pt;}
.wsa4{word-spacing:16.299200pt;}
.wsa2{word-spacing:16.352640pt;}
.wsa3{word-spacing:16.406080pt;}
.ws77{word-spacing:17.902400pt;}
.ws78{word-spacing:18.223040pt;}
.ws76{word-spacing:18.276480pt;}
.ws5a{word-spacing:19.879680pt;}
.ws59{word-spacing:19.986560pt;}
.ws3{word-spacing:1210.118933pt;}
._3{margin-left:-6.633067pt;}
._2{margin-left:-5.521067pt;}
._1{margin-left:-3.120533pt;}
._0{margin-left:-1.592800pt;}
._6{width:0.960000pt;}
._e{width:2.191040pt;}
._a{width:3.508160pt;}
._5{width:4.527200pt;}
._4{width:5.792800pt;}
._10{width:6.819040pt;}
._13{width:7.755840pt;}
._f{width:8.764160pt;}
._11{width:15.871680pt;}
._12{width:17.090400pt;}
._8{width:323.401600pt;}
._14{width:573.126187pt;}
._9{width:594.586667pt;}
._b{width:595.617067pt;}
._d{width:662.257173pt;}
._7{width:680.949867pt;}
._c{width:747.546667pt;}
.fs3{font-size:26.560000pt;}
.fs4{font-size:42.560000pt;}
.fs2{font-size:42.666667pt;}
.fs8{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.440000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.440000pt;}
.fs0{font-size:88.000000pt;}
.fs6{font-size:90.560000pt;}
.y3c{bottom:-323.631867pt;}
.y83{bottom:-323.631733pt;}
.y3b{bottom:-310.271867pt;}
.y82{bottom:-310.271733pt;}
.y3a{bottom:-296.911867pt;}
.y81{bottom:-296.911733pt;}
.y5a{bottom:-267.631867pt;}
.ya0{bottom:-267.631733pt;}
.y59{bottom:-254.271867pt;}
.y9f{bottom:-254.271733pt;}
.y58{bottom:-240.511867pt;}
.y9e{bottom:-240.511733pt;}
.y57{bottom:-212.245200pt;}
.y9d{bottom:-212.245067pt;}
.y56{bottom:-157.925200pt;}
.y9c{bottom:-157.925067pt;}
.y55{bottom:-142.565200pt;}
.y9b{bottom:-142.565067pt;}
.y54{bottom:-100.325067pt;}
.y53{bottom:-73.605200pt;}
.y9a{bottom:-73.605067pt;}
.y52{bottom:-60.005200pt;}
.y99{bottom:-60.005067pt;}
.y51{bottom:-45.365200pt;}
.y98{bottom:-45.365067pt;}
.y18{bottom:-43.011867pt;}
.y63{bottom:-43.011733pt;}
.y50{bottom:-31.525200pt;}
.y97{bottom:-31.525067pt;}
.y17{bottom:-29.651867pt;}
.y62{bottom:-29.651733pt;}
.y9{bottom:-28.346400pt;}
.y4f{bottom:-17.765200pt;}
.y96{bottom:-17.765067pt;}
.y16{bottom:-16.291867pt;}
.y61{bottom:-16.291733pt;}
.y4e{bottom:-3.925200pt;}
.y95{bottom:-3.925067pt;}
.y0{bottom:0.000000pt;}
.y192{bottom:2.560267pt;}
.ye1{bottom:3.198933pt;}
.yfd{bottom:3.200267pt;}
.yff{bottom:8.000267pt;}
.y94{bottom:9.834933pt;}
.y7f{bottom:12.988267pt;}
.y191{bottom:14.880267pt;}
.y93{bottom:23.674933pt;}
.y7e{bottom:26.348267pt;}
.y13{bottom:29.520267pt;}
.y92{bottom:37.434933pt;}
.y7d{bottom:40.108267pt;}
.yf{bottom:44.586800pt;}
.y5c{bottom:44.586933pt;}
.y12{bottom:46.586800pt;}
.y5f{bottom:46.586933pt;}
.y91{bottom:51.274933pt;}
.y8{bottom:60.725200pt;}
.y90{bottom:65.034933pt;}
.y7c{bottom:68.374933pt;}
.y7{bottom:72.725200pt;}
.y11{bottom:76.506800pt;}
.y5e{bottom:76.506933pt;}
.y8f{bottom:78.874933pt;}
.yd1{bottom:80.625520pt;}
.y18c{bottom:80.781227pt;}
.y20c{bottom:84.049600pt;}
.y1ec{bottom:84.104693pt;}
.y6{bottom:84.725200pt;}
.y132{bottom:85.037280pt;}
.y157{bottom:91.464747pt;}
.y179{bottom:91.622933pt;}
.y8e{bottom:92.634933pt;}
.y1c9{bottom:94.157813pt;}
.yee{bottom:94.791467pt;}
.y10a{bottom:94.849600pt;}
.y20b{bottom:96.289600pt;}
.y1eb{bottom:96.340693pt;}
.yd0{bottom:96.630800pt;}
.y5{bottom:96.725200pt;}
.y18b{bottom:96.786507pt;}
.y131{bottom:101.042560pt;}
.y8d{bottom:106.501600pt;}
.y156{bottom:107.470027pt;}
.y178{bottom:107.622933pt;}
.y20a{bottom:108.609600pt;}
.y1ea{bottom:108.661813pt;}
.y4{bottom:108.725200pt;}
.y1c8{bottom:110.163093pt;}
.yed{bottom:110.796747pt;}
.y109{bottom:110.849600pt;}
.ycf{bottom:112.636080pt;}
.y18a{bottom:112.791787pt;}
.y10{bottom:113.466800pt;}
.y5d{bottom:113.466933pt;}
.y130{bottom:117.047840pt;}
.y8c{bottom:120.261600pt;}
.y7b{bottom:122.694933pt;}
.y155{bottom:123.475307pt;}
.y177{bottom:123.622933pt;}
.y209{bottom:124.849600pt;}
.y1e9{bottom:124.898453pt;}
.y19d{bottom:125.844827pt;}
.y1aa{bottom:125.889600pt;}
.y1c7{bottom:126.168373pt;}
.yec{bottom:126.802027pt;}
.y108{bottom:126.849600pt;}
.y189{bottom:128.797067pt;}
.y12f{bottom:133.053120pt;}
.y8b{bottom:134.021600pt;}
.y208{bottom:137.089600pt;}
.y1e8{bottom:137.134453pt;}
.y7a{bottom:138.054933pt;}
.y154{bottom:139.480587pt;}
.y176{bottom:139.622933pt;}
.y19c{bottom:141.850107pt;}
.y1a9{bottom:141.889600pt;}
.y1c6{bottom:142.173653pt;}
.yeb{bottom:142.807307pt;}
.y107{bottom:142.849600pt;}
.yce{bottom:144.633280pt;}
.y188{bottom:144.802347pt;}
.y12e{bottom:149.058400pt;}
.y207{bottom:149.329600pt;}
.y1e7{bottom:149.370453pt;}
.y153{bottom:155.485867pt;}
.y175{bottom:155.622933pt;}
.y19b{bottom:157.855387pt;}
.y1a8{bottom:157.889600pt;}
.y1c5{bottom:158.178933pt;}
.yea{bottom:158.812587pt;}
.y106{bottom:158.849600pt;}
.y187{bottom:160.807627pt;}
.y8a{bottom:162.501600pt;}
.y12d{bottom:165.063680pt;}
.y206{bottom:165.649600pt;}
.y1e6{bottom:165.692213pt;}
.y152{bottom:171.517867pt;}
.y174{bottom:171.649600pt;}
.y19a{bottom:173.887387pt;}
.y1a7{bottom:173.916267pt;}
.y1c4{bottom:174.210933pt;}
.ye9{bottom:174.844587pt;}
.y105{bottom:174.876267pt;}
.ycd{bottom:176.657200pt;}
.y186{bottom:176.839627pt;}
.y205{bottom:177.916267pt;}
.y1e5{bottom:177.960133pt;}
.y79{bottom:180.294933pt;}
.y12c{bottom:181.095680pt;}
.y151{bottom:187.523147pt;}
.y173{bottom:187.649600pt;}
.y199{bottom:189.892667pt;}
.y1a6{bottom:189.916267pt;}
.y204{bottom:190.156267pt;}
.y1e4{bottom:190.196133pt;}
.y1c3{bottom:190.216213pt;}
.ye8{bottom:190.849867pt;}
.y104{bottom:190.876267pt;}
.ycc{bottom:192.662480pt;}
.y185{bottom:192.844907pt;}
.y12b{bottom:197.100960pt;}
.y14{bottom:200.314667pt;}
.y150{bottom:203.528427pt;}
.y172{bottom:203.649600pt;}
.y198{bottom:205.897947pt;}
.y1a5{bottom:205.916267pt;}
.y1c2{bottom:206.221493pt;}
.y203{bottom:206.476267pt;}
.y1e3{bottom:206.517893pt;}
.ye7{bottom:206.855147pt;}
.y103{bottom:206.876267pt;}
.y2f{bottom:207.014800pt;}
.y78{bottom:207.014933pt;}
.y89{bottom:208.261600pt;}
.ycb{bottom:208.667760pt;}
.y184{bottom:208.850187pt;}
.y12a{bottom:213.106240pt;}
.y36{bottom:213.298960pt;}
.y202{bottom:218.716267pt;}
.y1e2{bottom:218.753893pt;}
.y14f{bottom:219.533707pt;}
.y171{bottom:219.649600pt;}
.y2e{bottom:220.614800pt;}
.y77{bottom:220.614933pt;}
.y197{bottom:221.903227pt;}
.y1a4{bottom:221.916267pt;}
.y1c1{bottom:222.226773pt;}
.ye6{bottom:222.860427pt;}
.y102{bottom:222.876267pt;}
.yca{bottom:224.673040pt;}
.y183{bottom:224.855467pt;}
.y35{bottom:226.662800pt;}
.y129{bottom:229.111520pt;}
.y88{bottom:229.621600pt;}
.y201{bottom:230.956267pt;}
.y1e1{bottom:230.989893pt;}
.y2d{bottom:235.254800pt;}
.y76{bottom:235.254933pt;}
.y14e{bottom:235.538987pt;}
.y170{bottom:235.649600pt;}
.y196{bottom:237.908507pt;}
.y1a3{bottom:237.916267pt;}
.y1c0{bottom:238.232053pt;}
.ye5{bottom:238.865707pt;}
.y101{bottom:238.876267pt;}
.y34{bottom:240.422800pt;}
.yc9{bottom:240.678320pt;}
.y128{bottom:245.116800pt;}
.y200{bottom:247.276267pt;}
.y1e0{bottom:247.311653pt;}
.y2c{bottom:249.094800pt;}
.y75{bottom:249.094933pt;}
.y14d{bottom:251.544267pt;}
.y16f{bottom:251.649600pt;}
.y195{bottom:253.913787pt;}
.y1a2{bottom:253.916267pt;}
.y1bf{bottom:254.237333pt;}
.ye4{bottom:254.870987pt;}
.y100{bottom:254.876267pt;}
.yc8{bottom:256.683600pt;}
.y182{bottom:256.852667pt;}
.y1ff{bottom:259.516267pt;}
.y1df{bottom:259.547653pt;}
.y87{bottom:260.261600pt;}
.y127{bottom:261.122080pt;}
.y2b{bottom:262.854800pt;}
.y74{bottom:262.854933pt;}
.y14c{bottom:267.549547pt;}
.y16e{bottom:267.649600pt;}
.y33{bottom:268.689467pt;}
.y1a1{bottom:269.916267pt;}
.y194{bottom:269.919067pt;}
.y1be{bottom:270.242613pt;}
.ye3{bottom:270.876267pt;}
.yc7{bottom:272.688880pt;}
.y1fe{bottom:275.756267pt;}
.y1de{bottom:275.784293pt;}
.y2a{bottom:276.694800pt;}
.y73{bottom:276.694933pt;}
.y126{bottom:277.127360pt;}
.y14b{bottom:283.554827pt;}
.y16d{bottom:283.649600pt;}
.yfe{bottom:283.676000pt;}
.y1bd{bottom:286.247893pt;}
.y1fd{bottom:288.076267pt;}
.y1dd{bottom:288.105413pt;}
.yc6{bottom:288.694160pt;}
.y181{bottom:288.849867pt;}
.y29{bottom:290.454800pt;}
.y72{bottom:290.454933pt;}
.y86{bottom:290.901600pt;}
.ye2{bottom:291.676267pt;}
.y125{bottom:293.132640pt;}
.y14a{bottom:299.560107pt;}
.y16c{bottom:299.649600pt;}
.y1fc{bottom:300.316267pt;}
.y1dc{bottom:300.341413pt;}
.y193{bottom:301.916267pt;}
.y1bc{bottom:302.253173pt;}
.y28{bottom:304.294800pt;}
.y71{bottom:304.294933pt;}
.yc5{bottom:304.699440pt;}
.y180{bottom:304.855147pt;}
.y124{bottom:309.137920pt;}
.y149{bottom:315.565387pt;}
.y16b{bottom:315.649600pt;}
.yfc{bottom:315.676000pt;}
.ye0{bottom:315.677333pt;}
.y1fb{bottom:316.556267pt;}
.y1db{bottom:316.578053pt;}
.y27{bottom:318.054800pt;}
.y70{bottom:318.054933pt;}
.y1bb{bottom:318.258453pt;}
.yc4{bottom:320.704720pt;}
.y17f{bottom:320.860427pt;}
.y32{bottom:323.005467pt;}
.y123{bottom:325.143200pt;}
.y85{bottom:326.101600pt;}
.y1fa{bottom:328.876267pt;}
.y1da{bottom:328.899173pt;}
.y190{bottom:330.716000pt;}
.y148{bottom:331.570667pt;}
.y16a{bottom:331.649600pt;}
.y26{bottom:331.894800pt;}
.y6f{bottom:331.894933pt;}
.y1ba{bottom:334.263733pt;}
.yc3{bottom:336.710000pt;}
.y17e{bottom:336.865707pt;}
.y31{bottom:338.369467pt;}
.y1f9{bottom:341.116267pt;}
.y1d9{bottom:341.135173pt;}
.y122{bottom:341.148480pt;}
.y84{bottom:342.101600pt;}
.y25{bottom:345.654800pt;}
.y6e{bottom:345.654933pt;}
.y147{bottom:347.575947pt;}
.y169{bottom:347.649600pt;}
.yc2{bottom:352.715280pt;}
.y17d{bottom:352.870987pt;}
.y1a0{bottom:355.276000pt;}
.y18f{bottom:355.277333pt;}
.y121{bottom:357.153760pt;}
.y1f8{bottom:357.356267pt;}
.y1d8{bottom:357.371813pt;}
.y24{bottom:359.494800pt;}
.y6d{bottom:359.494933pt;}
.y146{bottom:363.581227pt;}
.y168{bottom:363.649600pt;}
.y1b9{bottom:366.260933pt;}
.yc1{bottom:368.720560pt;}
.y17c{bottom:368.876267pt;}
.y1f7{bottom:369.676267pt;}
.y1d7{bottom:369.692933pt;}
.y120{bottom:373.159040pt;}
.y23{bottom:373.254800pt;}
.y6c{bottom:373.254933pt;}
.y39{bottom:373.461467pt;}
.y80{bottom:373.461600pt;}
.y145{bottom:379.586507pt;}
.y167{bottom:379.649600pt;}
.y30{bottom:380.609600pt;}
.y1f6{bottom:381.916267pt;}
.y1d6{bottom:381.928933pt;}
.yc0{bottom:384.725840pt;}
.y22{bottom:387.121467pt;}
.y6b{bottom:387.121600pt;}
.y11f{bottom:389.164320pt;}
.y17b{bottom:389.676267pt;}
.y144{bottom:395.591787pt;}
.y166{bottom:395.649600pt;}
.y1f5{bottom:398.156267pt;}
.y1d5{bottom:398.165573pt;}
.y1b8{bottom:398.258133pt;}
.ybf{bottom:400.731120pt;}
.y21{bottom:400.881467pt;}
.y6a{bottom:400.881600pt;}
.yd{bottom:403.399600pt;}
.y11e{bottom:405.169600pt;}
.y1f4{bottom:410.476267pt;}
.y1d4{bottom:410.486693pt;}
.y143{bottom:411.597067pt;}
.y165{bottom:411.649600pt;}
.y17a{bottom:413.676000pt;}
.y1b7{bottom:414.263413pt;}
.y20{bottom:414.641467pt;}
.y69{bottom:414.641600pt;}
.yc{bottom:416.732933pt;}
.ybe{bottom:416.736400pt;}
.y11d{bottom:425.967040pt;}
.y1f3{bottom:426.716267pt;}
.y1d3{bottom:426.723333pt;}
.y142{bottom:427.602347pt;}
.y164{bottom:427.649600pt;}
.yb{bottom:430.066267pt;}
.y1b6{bottom:430.268693pt;}
.ybd{bottom:432.741680pt;}
.y1f2{bottom:438.956267pt;}
.y1d2{bottom:438.959333pt;}
.y1f{bottom:443.121467pt;}
.y68{bottom:443.121600pt;}
.ya{bottom:443.399600pt;}
.y141{bottom:443.607627pt;}
.y163{bottom:443.649600pt;}
.y1b5{bottom:446.273973pt;}
.ybc{bottom:448.746960pt;}
.y11c{bottom:452.609600pt;}
.y1f1{bottom:455.276267pt;}
.y1d1{bottom:455.281093pt;}
.y38{bottom:458.268000pt;}
.y140{bottom:459.612907pt;}
.y162{bottom:459.649600pt;}
.y1b4{bottom:462.279253pt;}
.ybb{bottom:464.752240pt;}
.y4d{bottom:468.089467pt;}
.y1f0{bottom:471.516267pt;}
.y1d0{bottom:471.517733pt;}
.y13f{bottom:475.618187pt;}
.y161{bottom:475.649600pt;}
.y11b{bottom:476.609333pt;}
.y1b3{bottom:478.284533pt;}
.yba{bottom:480.757520pt;}
.y4c{bottom:481.925467pt;}
.y1cf{bottom:487.754373pt;}
.y1ef{bottom:487.756267pt;}
.y1e{bottom:488.881467pt;}
.y67{bottom:488.881600pt;}
.y13e{bottom:491.623467pt;}
.y160{bottom:491.649600pt;}
.y1b2{bottom:494.289813pt;}
.y4b{bottom:495.689467pt;}
.yb9{bottom:496.762800pt;}
.y1ce{bottom:504.022933pt;}
.y13d{bottom:507.655467pt;}
.y15f{bottom:507.676267pt;}
.y4a{bottom:509.525467pt;}
.y1d{bottom:510.241467pt;}
.y66{bottom:510.241600pt;}
.y1b1{bottom:510.321813pt;}
.yb8{bottom:512.794800pt;}
.y49{bottom:523.289467pt;}
.y13c{bottom:523.660747pt;}
.y15e{bottom:523.676267pt;}
.y1b0{bottom:526.327093pt;}
.yb7{bottom:528.800080pt;}
.y1ee{bottom:532.902933pt;}
.y1cd{bottom:532.905733pt;}
.y48{bottom:537.125467pt;}
.y13b{bottom:539.666027pt;}
.y15d{bottom:539.676267pt;}
.y1c{bottom:540.881467pt;}
.y65{bottom:540.881600pt;}
.y1af{bottom:542.332373pt;}
.yb6{bottom:544.805360pt;}
.y47{bottom:550.889467pt;}
.y13a{bottom:555.671307pt;}
.y15c{bottom:555.676267pt;}
.y1ae{bottom:558.337653pt;}
.yb5{bottom:560.810640pt;}
.y46{bottom:564.761467pt;}
.y1cc{bottom:564.902933pt;}
.y1b{bottom:571.521467pt;}
.y64{bottom:571.521600pt;}
.y15b{bottom:571.676267pt;}
.y139{bottom:571.676587pt;}
.y1ad{bottom:574.342933pt;}
.yb4{bottom:576.815920pt;}
.y1ed{bottom:577.702667pt;}
.y45{bottom:578.525467pt;}
.y1cb{bottom:585.702933pt;}
.y15a{bottom:587.676267pt;}
.y138{bottom:587.681867pt;}
.y44{bottom:592.289467pt;}
.yb3{bottom:592.821200pt;}
.y1ac{bottom:595.142933pt;}
.y1a{bottom:606.721600pt;}
.yb2{bottom:608.826480pt;}
.y1ca{bottom:609.702667pt;}
.y1ab{bottom:619.142667pt;}
.y159{bottom:619.676267pt;}
.y137{bottom:619.679067pt;}
.y43{bottom:620.769467pt;}
.y19{bottom:622.721600pt;}
.yb1{bottom:624.831760pt;}
.y18e{bottom:640.823680pt;}
.yb0{bottom:640.837040pt;}
.y19f{bottom:640.902933pt;}
.y11a{bottom:642.170373pt;}
.y136{bottom:651.676267pt;}
.y15{bottom:654.081467pt;}
.y60{bottom:654.081600pt;}
.y18d{bottom:656.828960pt;}
.yaf{bottom:656.842320pt;}
.y19e{bottom:656.902933pt;}
.y119{bottom:658.175653pt;}
.y158{bottom:664.476000pt;}
.y42{bottom:666.529467pt;}
.y135{bottom:672.476267pt;}
.ydf{bottom:672.834240pt;}
.yae{bottom:672.847600pt;}
.yfb{bottom:672.902933pt;}
.y118{bottom:674.180933pt;}
.y41{bottom:687.889467pt;}
.yde{bottom:688.839520pt;}
.yad{bottom:688.852880pt;}
.yfa{bottom:688.902933pt;}
.y117{bottom:690.186213pt;}
.y134{bottom:696.476000pt;}
.ydd{bottom:704.844800pt;}
.yac{bottom:704.858160pt;}
.yf9{bottom:704.902933pt;}
.y116{bottom:706.191493pt;}
.y40{bottom:718.537547pt;}
.ydc{bottom:720.850080pt;}
.yab{bottom:720.863440pt;}
.yf8{bottom:720.902933pt;}
.y115{bottom:722.196773pt;}
.ydb{bottom:736.855360pt;}
.yaa{bottom:736.868720pt;}
.yf7{bottom:736.902933pt;}
.y114{bottom:738.202053pt;}
.y3f{bottom:749.169467pt;}
.yda{bottom:752.860640pt;}
.ya9{bottom:752.874000pt;}
.yf6{bottom:752.902933pt;}
.y113{bottom:754.207333pt;}
.yd9{bottom:768.865920pt;}
.ya8{bottom:768.879280pt;}
.yf5{bottom:768.902933pt;}
.y112{bottom:770.212613pt;}
.y215{bottom:783.537493pt;}
.y3e{bottom:784.369600pt;}
.yd8{bottom:784.871200pt;}
.ya7{bottom:784.884560pt;}
.yf4{bottom:784.902933pt;}
.y111{bottom:786.217893pt;}
.y214{bottom:795.858613pt;}
.y3d{bottom:800.369600pt;}
.yd7{bottom:800.876480pt;}
.ya6{bottom:800.889840pt;}
.yf3{bottom:800.902933pt;}
.y110{bottom:802.223173pt;}
.y213{bottom:812.095253pt;}
.yd6{bottom:816.881760pt;}
.ya5{bottom:816.895120pt;}
.yf2{bottom:816.902933pt;}
.y10f{bottom:818.228453pt;}
.y212{bottom:824.331253pt;}
.yd5{bottom:832.913760pt;}
.ya4{bottom:832.927120pt;}
.yf1{bottom:832.929600pt;}
.y10e{bottom:834.260453pt;}
.y211{bottom:840.674293pt;}
.yd4{bottom:848.919040pt;}
.yf0{bottom:848.929600pt;}
.ya3{bottom:848.932400pt;}
.y10d{bottom:850.265733pt;}
.y210{bottom:852.910293pt;}
.y3{bottom:854.338533pt;}
.y37{bottom:861.169333pt;}
.yd3{bottom:864.924320pt;}
.yef{bottom:864.929600pt;}
.y20f{bottom:869.146933pt;}
.y1{bottom:879.110667pt;}
.ya2{bottom:880.929600pt;}
.y20e{bottom:881.382933pt;}
.y10c{bottom:882.262933pt;}
.ye{bottom:883.836000pt;}
.y20d{bottom:909.702933pt;}
.yd2{bottom:912.289600pt;}
.ya1{bottom:912.369600pt;}
.y133{bottom:913.622933pt;}
.y10b{bottom:913.702933pt;}
.y2{bottom:918.559067pt;}
.y5b{bottom:920.499333pt;}
.h7{height:-481.328000pt;}
.h14{height:-26.586667pt;}
.h8{height:18.441562pt;}
.h1f{height:24.560000pt;}
.hc{height:29.550937pt;}
.hb{height:29.571719pt;}
.h4{height:29.625000pt;}
.h5{height:32.000000pt;}
.h11{height:32.531250pt;}
.h6{height:33.328125pt;}
.h12{height:33.351562pt;}
.h9{height:34.359375pt;}
.h3{height:34.368000pt;}
.h17{height:36.218125pt;}
.h13{height:37.131406pt;}
.h18{height:38.253437pt;}
.he{height:44.468750pt;}
.h10{height:55.572812pt;}
.ha{height:58.652344pt;}
.hf{height:62.923281pt;}
.h2{height:66.352000pt;}
.h1b{height:162.426667pt;}
.h1c{height:182.586667pt;}
.hd{height:202.193333pt;}
.h21{height:268.025333pt;}
.h22{height:268.026667pt;}
.h20{height:274.588000pt;}
.h1e{height:282.426667pt;}
.h1d{height:304.026667pt;}
.h19{height:354.026667pt;}
.h15{height:376.314667pt;}
.h23{height:900.272000pt;}
.h16{height:902.940000pt;}
.h1a{height:904.273333pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w6{width:-582.336000pt;}
.w7{width:-202.629333pt;}
.wc{width:-53.429333pt;}
.wf{width:-52.789333pt;}
.w8{width:-42.362667pt;}
.wb{width:0.090667pt;}
.w9{width:2.757333pt;}
.w2{width:84.346667pt;}
.w4{width:160.266667pt;}
.w3{width:379.706667pt;}
.w10{width:623.040000pt;}
.wa{width:623.120000pt;}
.wd{width:623.681333pt;}
.we{width:623.760000pt;}
.w5{width:723.002667pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x34{left:-676.549333pt;}
.x24{left:-673.882667pt;}
.x37{left:-669.349333pt;}
.x33{left:-667.109333pt;}
.x2c{left:-665.882667pt;}
.x25{left:-662.522667pt;}
.x35{left:-660.709333pt;}
.x27{left:-657.962667pt;}
.x36{left:-628.709333pt;}
.x2b{left:-615.082667pt;}
.x3e{left:-601.642667pt;}
.x38{left:-598.282533pt;}
.x41{left:-596.522667pt;}
.x3b{left:-594.202533pt;}
.x1e{left:-591.455867pt;}
.x2a{left:-576.256000pt;}
.x28{left:-538.975867pt;}
.x1f{left:-505.535867pt;}
.x21{left:-493.936000pt;}
.x20{left:-453.055867pt;}
.x29{left:-441.216000pt;}
.x26{left:-428.575867pt;}
.x3f{left:-365.056000pt;}
.x23{left:-203.029200pt;}
.x22{left:-50.522667pt;}
.x0{left:0.000000pt;}
.xe{left:2.666667pt;}
.x31{left:7.200000pt;}
.x5{left:49.889733pt;}
.x4{left:51.779467pt;}
.x2d{left:52.960000pt;}
.x1d{left:57.120000pt;}
.x6{left:58.986667pt;}
.xf{left:60.480000pt;}
.x17{left:63.146667pt;}
.x11{left:65.040000pt;}
.x16{left:67.787947pt;}
.x2e{left:68.791600pt;}
.x7{left:75.226667pt;}
.x9{left:76.800000pt;}
.xb{left:88.400000pt;}
.x30{left:96.962160pt;}
.x1c{left:107.920000pt;}
.x15{left:110.586667pt;}
.x2f{left:116.433360pt;}
.x32{left:127.386667pt;}
.xa{left:129.280000pt;}
.x3a{left:131.466667pt;}
.x40{left:132.826667pt;}
.x8{left:143.333333pt;}
.x14{left:146.746667pt;}
.x1b{left:149.413333pt;}
.xd{left:152.106667pt;}
.x3c{left:180.186667pt;}
.x12{left:184.026667pt;}
.x19{left:186.702507pt;}
.x2{left:209.887200pt;}
.x3{left:220.683333pt;}
.x1{left:259.715200pt;}
.x13{left:281.786667pt;}
.x1a{left:284.453333pt;}
.x10{left:294.426667pt;}
.x18{left:297.098667pt;}
.x3d{left:311.493333pt;}
.x39{left:364.852880pt;}
.xc{left:523.040000pt;}
}




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