
    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_73bc03543d51ce0848a97770.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_dfd76ae11632316baf16be59.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_29a2145fd121b5236948fad6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.970703;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_44d3410950c831ee29d22b2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_e826e4abfc533786e012a0d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_a471e7fd0c6dd9449b35f3dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_623f4e769cedb30afc67845a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937500;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_0ea1b3107d49f32f1cc7f049.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_5520371b81b4bea8d1a76d8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_9a21c50a755ef70df6ba6bde.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937500;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_94926d6fa84fdabb2352341f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.979004;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_b7df8e60d81b059f9acfc7e0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979980;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_079cbed2f040faa31c4921f8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.763672;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_accf1e6cdb2a53d1b1abe360.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.100098;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_673a8db2ac568c0c19e6ad73.woff2')format("woff");}.fff{font-family:fff;line-height:0.876465;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_78453b28c4a1f07ff07e0749.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.077637;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_76e41325a08723efa3ba04a7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.066406;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_334b960a6d79449a4be7ed25.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.946777;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_8486a1f77dc9710a7d1360f2.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_d37e1438bb1b1916d04d805e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.100098;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_f6930fdbe1d93e0f30ef5ccf.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.937500;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;}
.m7{transform:matrix(0.000000,-0.249620,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249620,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249620,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249496,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249496,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249496,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249427,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249427,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249427,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249185,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249185,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249185,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.vf{vertical-align:-22.320000px;}
.v6{vertical-align:-20.880000px;}
.v2{vertical-align:-18.000000px;}
.ve{vertical-align:-14.400000px;}
.v9{vertical-align:-10.148976px;}
.v14{vertical-align:-8.981430px;}
.va{vertical-align:-7.946369px;}
.v3{vertical-align:-5.760000px;}
.v7{vertical-align:-1.691467px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.160000px;}
.vb{vertical-align:3.219871px;}
.v4{vertical-align:5.760000px;}
.v8{vertical-align:8.457685px;}
.v13{vertical-align:10.328644px;}
.vc{vertical-align:11.647199px;}
.v1{vertical-align:18.000000px;}
.v5{vertical-align:20.880000px;}
.v11{vertical-align:26.453671px;}
.v12{vertical-align:31.651373px;}
.v10{vertical-align:33.127763px;}
.ls35{letter-spacing:-0.942000px;}
.ls34{letter-spacing:-0.924000px;}
.lsc{letter-spacing:-0.774000px;}
.ls33{letter-spacing:-0.720000px;}
.ls36{letter-spacing:-0.666000px;}
.ls12{letter-spacing:-0.612000px;}
.ls6f{letter-spacing:-0.584400px;}
.lsf{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.538800px;}
.lsd{letter-spacing:-0.460200px;}
.ls3c{letter-spacing:-0.450600px;}
.lse{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.269400px;}
.ls70{letter-spacing:-0.259800px;}
.ls18{letter-spacing:-0.253200px;}
.ls40{letter-spacing:-0.248693px;}
.ls17{letter-spacing:-0.233400px;}
.ls10{letter-spacing:-0.206400px;}
.ls3e{letter-spacing:-0.203360px;}
.ls46{letter-spacing:-0.191274px;}
.ls43{letter-spacing:-0.190650px;}
.ls3b{letter-spacing:-0.181200px;}
.ls76{letter-spacing:-0.164830px;}
.ls48{letter-spacing:-0.137692px;}
.ls79{letter-spacing:-0.112268px;}
.ls13{letter-spacing:-0.106800px;}
.ls4c{letter-spacing:-0.105990px;}
.ls77{letter-spacing:-0.103145px;}
.ls7d{letter-spacing:-0.096772px;}
.ls4b{letter-spacing:-0.096719px;}
.ls3a{letter-spacing:-0.095497px;}
.ls21{letter-spacing:-0.089281px;}
.ls7a{letter-spacing:-0.086072px;}
.ls38{letter-spacing:-0.084573px;}
.ls4a{letter-spacing:-0.076260px;}
.ls20{letter-spacing:-0.074401px;}
.ls7c{letter-spacing:-0.060250px;}
.ls32{letter-spacing:-0.053280px;}
.ls3f{letter-spacing:-0.050840px;}
.ls83{letter-spacing:-0.045360px;}
.ls1e{letter-spacing:-0.044145px;}
.ls7b{letter-spacing:-0.038545px;}
.ls74{letter-spacing:-0.027966px;}
.ls39{letter-spacing:-0.027839px;}
.ls47{letter-spacing:-0.014282px;}
.ls6c{letter-spacing:-0.011520px;}
.ls1a{letter-spacing:-0.010714px;}
.ls6d{letter-spacing:-0.008640px;}
.lsb{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.008640px;}
.ls52{letter-spacing:0.017280px;}
.ls84{letter-spacing:0.020012px;}
.ls42{letter-spacing:0.025420px;}
.ls45{letter-spacing:0.025503px;}
.ls37{letter-spacing:0.042287px;}
.ls6{letter-spacing:0.053280px;}
.ls6e{letter-spacing:0.069600px;}
.ls60{letter-spacing:0.070422px;}
.ls78{letter-spacing:0.078588px;}
.ls25{letter-spacing:0.084573px;}
.ls1b{letter-spacing:0.104162px;}
.ls26{letter-spacing:0.105717px;}
.ls16{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.111602px;}
.ls2a{letter-spacing:0.114390px;}
.ls54{letter-spacing:0.115200px;}
.ls1d{letter-spacing:0.123258px;}
.ls6a{letter-spacing:0.123495px;}
.ls49{letter-spacing:0.134303px;}
.ls7f{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.148802px;}
.ls68{letter-spacing:0.151684px;}
.ls72{letter-spacing:0.152400px;}
.ls85{letter-spacing:0.153942px;}
.ls2e{letter-spacing:0.158629px;}
.ls2b{letter-spacing:0.165230px;}
.ls2d{letter-spacing:0.165771px;}
.ls0{letter-spacing:0.180000px;}
.ls73{letter-spacing:0.192015px;}
.ls14{letter-spacing:0.206400px;}
.ls6b{letter-spacing:0.206573px;}
.ls7e{letter-spacing:0.206640px;}
.ls30{letter-spacing:0.210826px;}
.ls2c{letter-spacing:0.216776px;}
.ls41{letter-spacing:0.228780px;}
.ls44{letter-spacing:0.229528px;}
.ls82{letter-spacing:0.233280px;}
.ls66{letter-spacing:0.242694px;}
.ls27{letter-spacing:0.243360px;}
.ls4{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls71{letter-spacing:0.269400px;}
.ls75{letter-spacing:0.282702px;}
.ls61{letter-spacing:0.288199px;}
.ls62{letter-spacing:0.303368px;}
.ls23{letter-spacing:0.311760px;}
.ls64{letter-spacing:0.323592px;}
.ls11{letter-spacing:0.360000px;}
.ls65{letter-spacing:0.364041px;}
.ls63{letter-spacing:0.404490px;}
.ls67{letter-spacing:0.424715px;}
.ls4f{letter-spacing:0.660000px;}
.ls4d{letter-spacing:0.684000px;}
.ls55{letter-spacing:0.900000px;}
.ls3d{letter-spacing:0.990000px;}
.ls56{letter-spacing:1.620000px;}
.ls59{letter-spacing:3.780000px;}
.ls58{letter-spacing:5.220000px;}
.ls80{letter-spacing:8.586720px;}
.ls5d{letter-spacing:8.820000px;}
.ls5a{letter-spacing:9.000000px;}
.ls5f{letter-spacing:9.540000px;}
.ls2f{letter-spacing:9.801375px;}
.ls69{letter-spacing:10.030461px;}
.ls5e{letter-spacing:10.260000px;}
.ls22{letter-spacing:10.746720px;}
.ls57{letter-spacing:10.980000px;}
.ls29{letter-spacing:11.218775px;}
.ls28{letter-spacing:11.292697px;}
.ls24{letter-spacing:14.580000px;}
.ls5c{letter-spacing:15.066720px;}
.ls7{letter-spacing:17.946720px;}
.ls81{letter-spacing:19.386720px;}
.ls5{letter-spacing:20.826720px;}
.ls5b{letter-spacing:27.540000px;}
.ls51{letter-spacing:28.440000px;}
.ls2{letter-spacing:30.186720px;}
.ls4e{letter-spacing:33.449760px;}
.ls9{letter-spacing:38.310633px;}
.ls8{letter-spacing:38.331465px;}
.ls50{letter-spacing:55.759680px;}
.ls31{letter-spacing:391.115120px;}
.ls53{letter-spacing:418.620000px;}
.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;}
}
.ws56{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.ws4{word-spacing:-30.780000px;}
.wsc{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.146400px;}
.ws13{word-spacing:-15.046800px;}
.ws58{word-spacing:-15.009600px;}
.wse{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws1e{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.ws59{word-spacing:-14.686800px;}
.ws5a{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.479800px;}
.wsd{word-spacing:-14.328000px;}
.ws20{word-spacing:-14.274000px;}
.ws8{word-spacing:-14.166000px;}
.ws5{word-spacing:-13.608000px;}
.ws3{word-spacing:-13.500000px;}
.ws35{word-spacing:-13.050000px;}
.ws75{word-spacing:-12.517753px;}
.ws14{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws70{word-spacing:-12.014640px;}
.ws34{word-spacing:-11.878800px;}
.ws0{word-spacing:-11.790600px;}
.ws1a{word-spacing:-11.764784px;}
.ws22{word-spacing:-11.755693px;}
.ws19{word-spacing:-11.737523px;}
.ws50{word-spacing:-11.700000px;}
.ws36{word-spacing:-11.674506px;}
.ws2c{word-spacing:-11.671119px;}
.ws5e{word-spacing:-11.525134px;}
.ws18{word-spacing:-11.521200px;}
.ws62{word-spacing:-11.334791px;}
.ws60{word-spacing:-11.301057px;}
.ws5b{word-spacing:-11.242432px;}
.ws1f{word-spacing:-11.118000px;}
.ws2f{word-spacing:-10.768214px;}
.ws2e{word-spacing:-10.756459px;}
.ws53{word-spacing:-10.749716px;}
.ws71{word-spacing:-10.698935px;}
.ws55{word-spacing:-10.643726px;}
.ws41{word-spacing:-10.558308px;}
.ws3f{word-spacing:-10.523893px;}
.ws49{word-spacing:-10.513725px;}
.ws4d{word-spacing:-10.485763px;}
.ws44{word-spacing:-10.367035px;}
.ws1c{word-spacing:-10.358305px;}
.ws1b{word-spacing:-10.341758px;}
.ws3e{word-spacing:-10.333243px;}
.ws6f{word-spacing:-10.312118px;}
.ws6b{word-spacing:-10.310949px;}
.ws6d{word-spacing:-10.287329px;}
.ws6c{word-spacing:-10.214177px;}
.ws72{word-spacing:-9.864418px;}
.ws73{word-spacing:-9.843020px;}
.ws65{word-spacing:-9.816739px;}
.ws67{word-spacing:-9.783004px;}
.ws12{word-spacing:-9.728640px;}
.ws11{word-spacing:-9.720000px;}
.ws57{word-spacing:-9.711360px;}
.ws46{word-spacing:-9.432089px;}
.ws68{word-spacing:-9.340687px;}
.ws6a{word-spacing:-9.149831px;}
.ws2{word-spacing:-9.000000px;}
.ws27{word-spacing:-7.913865px;}
.ws25{word-spacing:-7.829291px;}
.ws24{word-spacing:-7.817536px;}
.ws16{word-spacing:-7.560000px;}
.ws63{word-spacing:-7.455324px;}
.ws61{word-spacing:-7.421590px;}
.ws15{word-spacing:-7.326600px;}
.ws17{word-spacing:-7.306800px;}
.ws54{word-spacing:-7.136474px;}
.ws3c{word-spacing:-7.015929px;}
.ws29{word-spacing:-6.877080px;}
.ws69{word-spacing:-6.174733px;}
.ws28{word-spacing:-5.231283px;}
.ws4c{word-spacing:-0.988585px;}
.ws5f{word-spacing:-0.329313px;}
.ws52{word-spacing:-0.286614px;}
.ws21{word-spacing:-0.133908px;}
.ws47{word-spacing:-0.034165px;}
.ws48{word-spacing:-0.034063px;}
.ws1d{word-spacing:0.000000px;}
.ws45{word-spacing:0.014792px;}
.ws51{word-spacing:0.022794px;}
.ws4b{word-spacing:0.066702px;}
.ws4f{word-spacing:0.088970px;}
.ws37{word-spacing:0.215562px;}
.ws2d{word-spacing:0.253720px;}
.ws40{word-spacing:2.524813px;}
.ws3b{word-spacing:2.567423px;}
.ws5d{word-spacing:3.529017px;}
.ws3d{word-spacing:3.635065px;}
.ws42{word-spacing:4.003997px;}
.ws5c{word-spacing:4.015285px;}
.ws4e{word-spacing:4.067205px;}
.ws4a{word-spacing:4.118401px;}
.ws43{word-spacing:14.443290px;}
.ws2a{word-spacing:46.926920px;}
.ws23{word-spacing:62.958006px;}
.ws31{word-spacing:77.333428px;}
.ws26{word-spacing:77.375715px;}
.ws30{word-spacing:82.529825px;}
.ws64{word-spacing:227.860356px;}
.ws3a{word-spacing:269.526278px;}
.ws39{word-spacing:276.968229px;}
.ws74{word-spacing:298.068726px;}
.ws32{word-spacing:350.154001px;}
.ws66{word-spacing:529.894540px;}
.ws33{word-spacing:580.638182px;}
.ws6e{word-spacing:612.359408px;}
.ws2b{word-spacing:627.262752px;}
.ws38{word-spacing:1290.575025px;}
._32{margin-left:-904.535791px;}
._2{margin-left:-10.380360px;}
._14{margin-left:-4.571640px;}
._b{margin-left:-2.970000px;}
._0{margin-left:-1.151640px;}
._1{width:1.320000px;}
._a{width:3.072000px;}
._13{width:4.218360px;}
._10{width:6.095520px;}
._11{width:7.187880px;}
._e{width:8.741160px;}
._f{width:9.769320px;}
._3{width:11.153640px;}
._8{width:12.252000px;}
._17{width:13.814280px;}
._d{width:15.138000px;}
._c{width:16.344000px;}
._18{width:17.683320px;}
._1e{width:19.663920px;}
._16{width:20.693160px;}
._12{width:21.904560px;}
._19{width:23.800680px;}
._15{width:25.533720px;}
._27{width:27.204840px;}
._29{width:28.291800px;}
._2d{width:29.588280px;}
._26{width:30.804840px;}
._21{width:32.265120px;}
._20{width:33.340800px;}
._2e{width:34.962960px;}
._6{width:35.994000px;}
._1f{width:37.740960px;}
._5{width:38.999640px;}
._4{width:40.338000px;}
._9{width:41.634000px;}
._23{width:42.681000px;}
._1c{width:46.465920px;}
._1d{width:47.931360px;}
._7{width:50.922000px;}
._2b{width:61.848960px;}
._2a{width:63.950160px;}
._33{width:66.208680px;}
._2f{width:68.445000px;}
._30{width:69.629760px;}
._22{width:71.460000px;}
._35{width:76.566223px;}
._34{width:77.631418px;}
._1b{width:79.329600px;}
._1a{width:80.378640px;}
._24{width:84.277800px;}
._25{width:86.206320px;}
._31{width:105.514310px;}
._36{width:251.268100px;}
._37{width:253.034935px;}
._38{width:255.273501px;}
._28{width:275.355354px;}
._2c{width:296.611680px;}
.fc16{color:rgb(255,0,0);}
.fc15{color:rgb(109,111,114);}
.fc13{color:rgb(210,64,80);}
.fc10{color:rgb(39,182,143);}
.fc12{color:rgb(127,127,127);}
.fcd{color:rgb(55,105,222);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc5{color:rgb(85,85,85);}
.fc8{color:rgb(40,103,253);}
.fce{color:rgb(204,121,41);}
.fc2{color:rgb(60,60,59);}
.fc11{color:rgb(197,41,201);}
.fc4{color:rgb(30,30,29);}
.fc3{color:transparent;}
.fc6{color:rgb(6,226,227);}
.fcf{color:rgb(52,170,61);}
.fc9{color:rgb(19,81,180);}
.fc7{color:rgb(126,185,255);}
.fc14{color:rgb(7,11,22);}
.fca{color:rgb(201,22,41);}
.fcb{color:rgb(161,41,220);}
.fcc{color:rgb(194,186,35);}
.fs15{font-size:16.491799px;}
.fs13{font-size:18.817565px;}
.fs2b{font-size:20.700519px;}
.fs23{font-size:22.442781px;}
.fs3b{font-size:22.453574px;}
.fs14{font-size:24.737698px;}
.fs3f{font-size:25.148003px;}
.fs1f{font-size:25.420032px;}
.fs21{font-size:25.503161px;}
.fs27{font-size:25.521712px;}
.fs2d{font-size:25.817501px;}
.fs2f{font-size:25.856789px;}
.fs34{font-size:26.696365px;}
.fs31{font-size:26.750324px;}
.fs37{font-size:26.817713px;}
.fs11{font-size:28.120631px;}
.fs12{font-size:28.162918px;}
.fs1b{font-size:28.572116px;}
.fs6{font-size:30.240000px;}
.fs29{font-size:30.934484px;}
.fs2a{font-size:30.981002px;}
.fs16{font-size:31.714998px;}
.fs3a{font-size:33.680361px;}
.fs25{font-size:34.062843px;}
.fs24{font-size:34.164523px;}
.fs22{font-size:34.174235px;}
.fsc{font-size:34.819732px;}
.fs39{font-size:35.190664px;}
.fs38{font-size:35.312011px;}
.fs43{font-size:35.406546px;}
.fs44{font-size:35.483517px;}
.fs3{font-size:36.000000px;}
.fsb{font-size:37.200568px;}
.fse{font-size:37.260089px;}
.fs3c{font-size:37.272933px;}
.fs3e{font-size:37.358510px;}
.fs3d{font-size:37.362747px;}
.fs1e{font-size:38.130048px;}
.fs26{font-size:38.231728px;}
.fs20{font-size:38.254741px;}
.fs40{font-size:38.485376px;}
.fs18{font-size:38.692297px;}
.fs17{font-size:38.734584px;}
.fs2c{font-size:38.842547px;}
.fs5{font-size:38.880000px;}
.fs2e{font-size:38.948245px;}
.fs33{font-size:40.651284px;}
.fs30{font-size:40.733449px;}
.fs35{font-size:40.772631px;}
.fs28{font-size:41.760000px;}
.fs8{font-size:42.259845px;}
.fs10{font-size:42.286664px;}
.fs1a{font-size:42.298933px;}
.fsa{font-size:42.319366px;}
.fs19{font-size:42.328951px;}
.fs41{font-size:45.027890px;}
.fs42{font-size:45.104861px;}
.fs32{font-size:45.505168px;}
.fs36{font-size:45.626516px;}
.fs0{font-size:48.240000px;}
.fsd{font-size:49.699959px;}
.fs1c{font-size:50.840064px;}
.fs1d{font-size:50.941744px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:63.092163px;}
.fs9{font-size:63.151684px;}
.fsf{font-size:66.240000px;}
.fs1{font-size:144.000000px;}
.ye1{bottom:-52.920000px;}
.yf3{bottom:-36.000000px;}
.y64{bottom:-32.580000px;}
.ye0{bottom:-24.300000px;}
.y63{bottom:-15.480000px;}
.yf2{bottom:-8.820000px;}
.y0{bottom:0.000000px;}
.y62{bottom:1.080000px;}
.yd0{bottom:2.474607px;}
.yce{bottom:2.485178px;}
.y53{bottom:2.520000px;}
.ycd{bottom:2.643753px;}
.ycf{bottom:2.728283px;}
.yca{bottom:3.600000px;}
.y101{bottom:3.623081px;}
.y156{bottom:3.857069px;}
.y182{bottom:4.078598px;}
.ydf{bottom:4.500000px;}
.ye3{bottom:4.566497px;}
.y55{bottom:4.680000px;}
.y1ea{bottom:4.860000px;}
.yf1{bottom:5.040000px;}
.y5c{bottom:5.400000px;}
.ye5{bottom:6.015439px;}
.y57{bottom:7.560000px;}
.y59{bottom:7.740000px;}
.y61{bottom:14.940000px;}
.yd1{bottom:15.139507px;}
.y1f6{bottom:15.772162px;}
.y52{bottom:16.380000px;}
.y153{bottom:17.280000px;}
.yc9{bottom:17.460000px;}
.y72{bottom:17.849736px;}
.yde{bottom:18.360000px;}
.y1e9{bottom:18.720000px;}
.yf0{bottom:18.900000px;}
.y172{bottom:19.260000px;}
.yd2{bottom:23.596839px;}
.ycc{bottom:24.104279px;}
.yc8{bottom:28.620000px;}
.y60{bottom:28.800000px;}
.yef{bottom:30.060000px;}
.y51{bottom:30.240000px;}
.y71{bottom:30.497930px;}
.y152{bottom:30.960000px;}
.ydd{bottom:32.220000px;}
.y1e8{bottom:32.580000px;}
.y171{bottom:32.940000px;}
.y155{bottom:32.949534px;}
.ye7{bottom:34.154990px;}
.y1f4{bottom:37.593384px;}
.y151{bottom:42.294000px;}
.y5f{bottom:42.480000px;}
.y70{bottom:43.146123px;}
.yec{bottom:43.280782px;}
.y50{bottom:43.920000px;}
.yd8{bottom:44.264446px;}
.y170{bottom:44.280000px;}
.y165{bottom:44.356163px;}
.y1e7{bottom:46.260000px;}
.y1f3{bottom:48.176860px;}
.yd6{bottom:49.783737px;}
.y17e{bottom:50.939675px;}
.y17f{bottom:51.770457px;}
.yd7{bottom:52.827496px;}
.y78{bottom:53.666427px;}
.y5e{bottom:53.820000px;}
.yeb{bottom:54.618116px;}
.y6f{bottom:55.794316px;}
.y1{bottom:56.376000px;}
.y80{bottom:57.096000px;}
.y1e6{bottom:57.600000px;}
.y4f{bottom:57.774000px;}
.yd5{bottom:60.047063px;}
.y1f5{bottom:61.627489px;}
.y1f2{bottom:61.627517px;}
.y77{bottom:61.776151px;}
.y16a{bottom:63.316650px;}
.y15a{bottom:63.377323px;}
.y169{bottom:65.258204px;}
.yfb{bottom:65.701791px;}
.y6e{bottom:68.456149px;}
.y4e{bottom:71.634000px;}
.ye9{bottom:74.394901px;}
.y102{bottom:77.447656px;}
.yea{bottom:79.987308px;}
.y161{bottom:80.487267px;}
.y6d{bottom:81.104342px;}
.y167{bottom:81.124339px;}
.y4d{bottom:85.494000px;}
.ye8{bottom:86.266056px;}
.y7f{bottom:91.167082px;}
.yd3{bottom:91.255502px;}
.y6c{bottom:93.752535px;}
.y181{bottom:96.204209px;}
.y15b{bottom:96.292728px;}
.y163{bottom:97.627547px;}
.y1f7{bottom:101.979442px;}
.y1f1{bottom:102.901496px;}
.y4c{bottom:104.256000px;}
.y162{bottom:104.726353px;}
.y6b{bottom:106.419329px;}
.y16e{bottom:108.670134px;}
.y74{bottom:109.035757px;}
.yf6{bottom:109.612865px;}
.y5b{bottom:109.656000px;}
.yc7{bottom:109.836000px;}
.y164{bottom:110.490341px;}
.y180{bottom:111.697175px;}
.y13d{bottom:114.876000px;}
.yfc{bottom:115.209596px;}
.yd4{bottom:116.015224px;}
.y17c{bottom:116.749229px;}
.yf5{bottom:118.916469px;}
.y6a{bottom:119.067522px;}
.y7d{bottom:121.057740px;}
.y1ee{bottom:123.106307px;}
.yb0{bottom:123.696000px;}
.y159{bottom:126.567570px;}
.y75{bottom:126.625427px;}
.yfd{bottom:130.361871px;}
.y13c{bottom:131.256000px;}
.y69{bottom:131.715715px;}
.y16b{bottom:132.306277px;}
.y5a{bottom:132.696000px;}
.ydb{bottom:133.352756px;}
.yf7{bottom:133.618099px;}
.y15e{bottom:133.911598px;}
.y1ef{bottom:134.828324px;}
.yda{bottom:135.339349px;}
.y7a{bottom:136.756380px;}
.y168{bottom:138.462115px;}
.ycb{bottom:138.652500px;}
.yd9{bottom:139.629683px;}
.yaf{bottom:140.076000px;}
.yfe{bottom:142.432336px;}
.y15d{bottom:143.164316px;}
.yf8{bottom:143.478954px;}
.y68{bottom:144.363908px;}
.y13b{bottom:147.636000px;}
.y177{bottom:149.578225px;}
.y15f{bottom:150.874914px;}
.y73{bottom:151.921811px;}
.y154{bottom:152.280000px;}
.y1e4{bottom:153.030000px;}
.yf9{bottom:153.165361px;}
.yff{bottom:153.853485px;}
.y15c{bottom:155.299028px;}
.yae{bottom:156.450000px;}
.y58{bottom:156.990000px;}
.y67{bottom:157.024501px;}
.y166{bottom:157.182436px;}
.y16d{bottom:159.912746px;}
.yed{bottom:160.061468px;}
.y7e{bottom:162.592171px;}
.yfa{bottom:163.016518px;}
.y13a{bottom:164.010000px;}
.y1a5{bottom:165.090000px;}
.y100{bottom:165.216479px;}
.y160{bottom:165.891620px;}
.y7c{bottom:166.547835px;}
.y1e3{bottom:166.890000px;}
.y16c{bottom:167.825589px;}
.y66{bottom:169.672694px;}
.ye4{bottom:171.606399px;}
.ye6{bottom:172.411367px;}
.yad{bottom:173.010000px;}
.y7b{bottom:176.579586px;}
.y158{bottom:179.656933px;}
.y157{bottom:180.415352px;}
.y1e2{bottom:180.570000px;}
.y56{bottom:181.470000px;}
.yac{bottom:189.390000px;}
.y79{bottom:190.145397px;}
.y76{bottom:190.145407px;}
.y1e1{bottom:194.430000px;}
.y1a4{bottom:197.850000px;}
.y17d{bottom:198.817042px;}
.y178{bottom:199.022866px;}
.y175{bottom:201.427270px;}
.y17a{bottom:201.988609px;}
.y54{bottom:205.770000px;}
.y1e0{bottom:208.290000px;}
.y174{bottom:211.531378px;}
.y179{bottom:212.092717px;}
.y1a3{bottom:214.230000px;}
.y1df{bottom:221.970000px;}
.yab{bottom:222.150000px;}
.y33{bottom:222.870000px;}
.y5d{bottom:225.390000px;}
.y1a2{bottom:230.610000px;}
.y1de{bottom:235.830000px;}
.y176{bottom:238.400822px;}
.yaa{bottom:238.530000px;}
.y32{bottom:239.430000px;}
.y17b{bottom:240.402932px;}
.y1a1{bottom:246.990000px;}
.y1dd{bottom:249.690000px;}
.ya9{bottom:254.910000px;}
.y139{bottom:255.090000px;}
.y31{bottom:255.810000px;}
.y183{bottom:256.794041px;}
.y1a0{bottom:263.370000px;}
.ya8{bottom:271.290000px;}
.y138{bottom:271.470000px;}
.y30{bottom:272.190000px;}
.y1dc{bottom:277.230000px;}
.y19f{bottom:279.750000px;}
.y65{bottom:280.403896px;}
.ya7{bottom:287.715000px;}
.y137{bottom:287.895000px;}
.y2f{bottom:288.615000px;}
.y1db{bottom:291.135000px;}
.y19e{bottom:296.175000px;}
.yc6{bottom:299.415000px;}
.ya6{bottom:304.095000px;}
.y136{bottom:304.275000px;}
.y1da{bottom:304.815000px;}
.y2e{bottom:304.995000px;}
.y19d{bottom:312.555000px;}
.yc5{bottom:315.795000px;}
.y1d9{bottom:318.675000px;}
.ya5{bottom:320.475000px;}
.y135{bottom:320.655000px;}
.y19c{bottom:328.935000px;}
.y2d{bottom:330.375000px;}
.yc4{bottom:332.175000px;}
.y1d8{bottom:332.535000px;}
.ya4{bottom:336.855000px;}
.y134{bottom:337.035000px;}
.y1ed{bottom:339.835100px;}
.y19b{bottom:345.315000px;}
.y1d7{bottom:346.215000px;}
.y2c{bottom:346.755000px;}
.y1f0{bottom:347.652452px;}
.yc3{bottom:348.555000px;}
.y1ec{bottom:351.380712px;}
.ya3{bottom:353.235000px;}
.y133{bottom:353.415000px;}
.y1d6{bottom:360.075000px;}
.y19a{bottom:361.695000px;}
.y150{bottom:362.775000px;}
.y2b{bottom:363.135000px;}
.yc2{bottom:364.935000px;}
.ya2{bottom:369.615000px;}
.y132{bottom:369.795000px;}
.y1d5{bottom:373.935000px;}
.y199{bottom:378.075000px;}
.y14f{bottom:379.155000px;}
.y2a{bottom:379.515000px;}
.yc1{bottom:381.315000px;}
.y131{bottom:386.175000px;}
.y1d4{bottom:387.615000px;}
.y198{bottom:394.455000px;}
.ya1{bottom:394.995000px;}
.y14e{bottom:395.535000px;}
.y29{bottom:395.895000px;}
.yc0{bottom:397.695000px;}
.y1d3{bottom:401.475000px;}
.y130{bottom:402.555000px;}
.y197{bottom:410.835000px;}
.ya0{bottom:411.375000px;}
.y14d{bottom:411.915000px;}
.y28{bottom:412.275000px;}
.ybf{bottom:414.075000px;}
.y1d2{bottom:415.335000px;}
.y12f{bottom:418.935000px;}
.y196{bottom:427.215000px;}
.y9f{bottom:427.755000px;}
.y14c{bottom:428.295000px;}
.y27{bottom:428.655000px;}
.y1d1{bottom:429.015000px;}
.y12e{bottom:435.315000px;}
.ybe{bottom:439.455000px;}
.y1d0{bottom:442.875000px;}
.y195{bottom:443.595000px;}
.y9e{bottom:444.135000px;}
.y14b{bottom:444.675000px;}
.y26{bottom:445.035000px;}
.y12d{bottom:451.695000px;}
.ybd{bottom:455.835000px;}
.y1cf{bottom:456.735000px;}
.y194{bottom:459.975000px;}
.y9d{bottom:460.515000px;}
.y14a{bottom:461.055000px;}
.y25{bottom:461.415000px;}
.y12c{bottom:468.075000px;}
.y1ce{bottom:470.415000px;}
.ybc{bottom:472.215000px;}
.y193{bottom:476.355000px;}
.y9c{bottom:476.895000px;}
.y149{bottom:477.435000px;}
.y24{bottom:477.795000px;}
.y1cd{bottom:484.275000px;}
.y12b{bottom:484.455000px;}
.ybb{bottom:488.595000px;}
.y192{bottom:492.735000px;}
.y9b{bottom:493.275000px;}
.y148{bottom:493.815000px;}
.y23{bottom:494.175000px;}
.y1cc{bottom:498.135000px;}
.y12a{bottom:500.835000px;}
.yba{bottom:504.975000px;}
.y9a{bottom:509.655000px;}
.y147{bottom:510.195000px;}
.y22{bottom:510.555000px;}
.y1cb{bottom:511.815000px;}
.y191{bottom:515.415000px;}
.y4b{bottom:515.595000px;}
.y129{bottom:517.215000px;}
.yb9{bottom:521.355000px;}
.y1ca{bottom:525.675000px;}
.y99{bottom:526.035000px;}
.y146{bottom:526.575000px;}
.y21{bottom:526.935000px;}
.y4a{bottom:531.975000px;}
.y190{bottom:532.695000px;}
.yb8{bottom:537.915000px;}
.y1c9{bottom:539.535000px;}
.y98{bottom:542.415000px;}
.y128{bottom:542.595000px;}
.y145{bottom:542.955000px;}
.y20{bottom:543.315000px;}
.y49{bottom:548.355000px;}
.y1c8{bottom:553.215000px;}
.yb7{bottom:554.295000px;}
.y97{bottom:558.795000px;}
.y127{bottom:558.975000px;}
.y144{bottom:559.335000px;}
.y1f{bottom:559.695000px;}
.y18f{bottom:561.675000px;}
.y48{bottom:564.765000px;}
.y1c7{bottom:567.105000px;}
.y96{bottom:575.205000px;}
.y126{bottom:575.385000px;}
.y143{bottom:575.745000px;}
.y1e{bottom:576.105000px;}
.y18e{bottom:578.085000px;}
.y1c6{bottom:580.965000px;}
.y47{bottom:581.145000px;}
.y95{bottom:591.585000px;}
.y125{bottom:591.765000px;}
.y142{bottom:592.125000px;}
.y1d{bottom:592.485000px;}
.y18d{bottom:594.465000px;}
.y1c5{bottom:594.645000px;}
.y46{bottom:597.525000px;}
.yb6{bottom:601.485000px;}
.y124{bottom:608.145000px;}
.y141{bottom:608.505000px;}
.y1c{bottom:608.865000px;}
.y18c{bottom:610.845000px;}
.y94{bottom:612.645000px;}
.yb5{bottom:618.765000px;}
.y1c4{bottom:622.365000px;}
.y45{bottom:622.905000px;}
.y123{bottom:624.525000px;}
.y1b{bottom:625.245000px;}
.y18b{bottom:627.225000px;}
.y140{bottom:629.565000px;}
.yb4{bottom:636.045000px;}
.y93{bottom:638.745000px;}
.y44{bottom:639.285000px;}
.y122{bottom:640.905000px;}
.y1a{bottom:641.625000px;}
.y18a{bottom:643.605000px;}
.y1c3{bottom:649.905000px;}
.yb3{bottom:653.325000px;}
.y92{bottom:655.125000px;}
.y43{bottom:655.665000px;}
.y121{bottom:657.285000px;}
.y19{bottom:658.005000px;}
.y189{bottom:659.985000px;}
.y1c2{bottom:663.765000px;}
.yb2{bottom:670.605000px;}
.y91{bottom:671.505000px;}
.y42{bottom:672.045000px;}
.y188{bottom:676.365000px;}
.y1c1{bottom:677.445000px;}
.y18{bottom:680.685000px;}
.y90{bottom:687.885000px;}
.y41{bottom:688.425000px;}
.y1c0{bottom:691.305000px;}
.y120{bottom:691.485000px;}
.y187{bottom:692.745000px;}
.y8f{bottom:704.265000px;}
.y40{bottom:704.805000px;}
.y1bf{bottom:704.985000px;}
.y186{bottom:709.125000px;}
.yb1{bottom:710.925000px;}
.y17{bottom:712.365000px;}
.y1be{bottom:718.845000px;}
.y8e{bottom:720.645000px;}
.y3f{bottom:721.185000px;}
.y185{bottom:725.505000px;}
.y11f{bottom:726.225000px;}
.y16{bottom:728.025000px;}
.yee{bottom:734.325000px;}
.y8d{bottom:737.025000px;}
.y3e{bottom:737.565000px;}
.y1bd{bottom:739.365000px;}
.y184{bottom:741.885000px;}
.y11e{bottom:742.605000px;}
.y8c{bottom:753.405000px;}
.y3d{bottom:753.945000px;}
.y15{bottom:758.445000px;}
.y11d{bottom:758.985000px;}
.y1e5{bottom:761.145000px;}
.yf4{bottom:765.630000px;}
.y1bc{bottom:768.525000px;}
.y8b{bottom:769.785000px;}
.y3c{bottom:770.325000px;}
.y14{bottom:774.105000px;}
.y11c{bottom:775.365000px;}
.y1bb{bottom:784.905000px;}
.y8a{bottom:786.345000px;}
.y3b{bottom:786.705000px;}
.y13{bottom:789.585000px;}
.y11b{bottom:791.745000px;}
.y1ba{bottom:801.285000px;}
.y89{bottom:802.725000px;}
.y3a{bottom:803.085000px;}
.y12{bottom:805.245000px;}
.y11a{bottom:808.125000px;}
.y1b9{bottom:817.665000px;}
.y88{bottom:819.105000px;}
.y39{bottom:819.465000px;}
.y11{bottom:820.725000px;}
.y1eb{bottom:821.970846px;}
.y119{bottom:824.505000px;}
.y1b8{bottom:834.045000px;}
.y87{bottom:835.485000px;}
.y13f{bottom:835.845000px;}
.y10{bottom:836.205000px;}
.y38{bottom:840.525000px;}
.y118{bottom:840.885000px;}
.yf{bottom:851.730000px;}
.y86{bottom:851.910000px;}
.y13e{bottom:852.270000px;}
.y1b7{bottom:856.590000px;}
.y117{bottom:857.490000px;}
.y37{bottom:866.850000px;}
.ye{bottom:867.390000px;}
.y85{bottom:868.290000px;}
.y16f{bottom:871.530000px;}
.y116{bottom:873.870000px;}
.yd{bottom:882.870000px;}
.y84{bottom:884.670000px;}
.y1b6{bottom:885.930000px;}
.y115{bottom:894.750000px;}
.y36{bottom:896.010000px;}
.yc{bottom:898.350000px;}
.y83{bottom:901.050000px;}
.y1b5{bottom:903.030000px;}
.y35{bottom:912.390000px;}
.yb{bottom:913.830000px;}
.y173{bottom:916.305000px;}
.y82{bottom:917.430000px;}
.y1b4{bottom:920.310000px;}
.y114{bottom:920.850000px;}
.y34{bottom:928.770000px;}
.ya{bottom:929.490000px;}
.y81{bottom:933.810000px;}
.y113{bottom:937.230000px;}
.y1b3{bottom:937.590000px;}
.ydc{bottom:947.490000px;}
.y112{bottom:953.610000px;}
.y1b2{bottom:954.870000px;}
.y110{bottom:970.170000px;}
.y1b1{bottom:972.150000px;}
.y111{bottom:975.750000px;}
.y9{bottom:986.010000px;}
.y10e{bottom:987.450000px;}
.y1b0{bottom:989.430000px;}
.ye2{bottom:991.905000px;}
.y10f{bottom:993.030000px;}
.y8{bottom:1001.490000px;}
.y10d{bottom:1004.730000px;}
.y1af{bottom:1006.530000px;}
.y7{bottom:1016.970000px;}
.y10c{bottom:1021.110000px;}
.y1ae{bottom:1023.810000px;}
.y10b{bottom:1037.490000px;}
.y1ad{bottom:1041.090000px;}
.y6{bottom:1049.010000px;}
.y10a{bottom:1053.870000px;}
.y1ac{bottom:1058.370000px;}
.y5{bottom:1064.490000px;}
.y109{bottom:1070.250000px;}
.y1ab{bottom:1075.650000px;}
.y108{bottom:1086.630000px;}
.y1aa{bottom:1092.930000px;}
.y107{bottom:1103.010000px;}
.y4{bottom:1105.890000px;}
.y1a9{bottom:1110.030000px;}
.y106{bottom:1119.390000px;}
.y1a8{bottom:1127.310000px;}
.y105{bottom:1135.800000px;}
.y1a7{bottom:1144.620000px;}
.y3{bottom:1147.320000px;}
.y104{bottom:1152.180000px;}
.y1a6{bottom:1167.840000px;}
.y103{bottom:1168.560000px;}
.y2{bottom:1188.720000px;}
.hc{height:18.000000px;}
.h23{height:18.553274px;}
.h1f{height:21.090474px;}
.h20{height:21.163443px;}
.h22{height:22.570683px;}
.h21{height:22.570859px;}
.h36{height:23.200863px;}
.h37{height:23.235751px;}
.he{height:23.940000px;}
.h10{height:24.120000px;}
.h5{height:26.033203px;}
.h17{height:26.114799px;}
.h4a{height:26.392998px;}
.h48{height:26.484008px;}
.h59{height:26.554910px;}
.h5a{height:26.612638px;}
.h16{height:27.900426px;}
.h19{height:27.945067px;}
.h56{height:28.864032px;}
.h25{height:29.019223px;}
.h24{height:29.050938px;}
.h4d{height:29.124961px;}
.h38{height:29.131910px;}
.h30{height:29.455710px;}
.h2f{height:29.543638px;}
.h2e{height:29.568723px;}
.h4e{height:29.745284px;}
.h34{height:30.198516px;}
.h43{height:30.488463px;}
.h44{height:30.579473px;}
.h1e{height:31.714998px;}
.h26{height:31.746713px;}
.h4f{height:32.231623px;}
.h53{height:32.249823px;}
.h50{height:32.309290px;}
.h51{height:32.323867px;}
.h57{height:32.561673px;}
.h58{height:32.617334px;}
.h2b{height:32.991428px;}
.h31{height:33.060738px;}
.h2d{height:33.099317px;}
.h39{height:33.607907px;}
.h52{height:33.944190px;}
.h3a{height:34.019379px;}
.hd{height:34.036523px;}
.h45{height:34.219887px;}
.h2{height:34.884492px;}
.h5b{height:34.989621px;}
.h42{height:35.172888px;}
.h3c{height:35.194219px;}
.h40{height:35.243980px;}
.h33{height:35.261367px;}
.h18{height:35.940253px;}
.h29{height:36.598491px;}
.h2c{height:36.838244px;}
.h7{height:38.100586px;}
.h6{height:39.128906px;}
.h41{height:39.372636px;}
.hf{height:39.867891px;}
.h2a{height:40.058114px;}
.h9{height:43.215117px;}
.h8{height:43.506914px;}
.ha{height:43.681992px;}
.h4{height:44.033203px;}
.h14{height:45.932820px;}
.h15{height:45.976153px;}
.h1b{height:47.901094px;}
.h3d{height:48.971859px;}
.h1a{height:48.995859px;}
.h3b{height:52.524141px;}
.h49{height:58.135381px;}
.h47{height:60.582548px;}
.h46{height:63.616225px;}
.hb{height:100.440000px;}
.h3{height:104.132812px;}
.h11{height:114.480000px;}
.h1d{height:147.126756px;}
.h1c{height:175.890000px;}
.h35{height:178.826853px;}
.h28{height:183.596181px;}
.h3f{height:191.248111px;}
.h13{height:205.867963px;}
.h32{height:210.090000px;}
.h3e{height:233.670000px;}
.h27{height:234.030000px;}
.h12{height:260.850000px;}
.h4c{height:265.035000px;}
.h4b{height:309.810000px;}
.h55{height:359.526799px;}
.h54{height:420.375000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:45.360000px;}
.w8{width:49.356000px;}
.w7{width:94.860000px;}
.w5{width:97.956000px;}
.w4{width:290.235000px;}
.w15{width:291.950661px;}
.w11{width:307.248881px;}
.wb{width:346.558125px;}
.w13{width:360.000000px;}
.w10{width:360.435000px;}
.wd{width:360.597950px;}
.wc{width:360.975000px;}
.w12{width:362.055000px;}
.w14{width:362.490000px;}
.w9{width:362.595000px;}
.w3{width:364.965000px;}
.wa{width:365.475000px;}
.wf{width:751.195600px;}
.we{width:754.560000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:2.500492px;}
.x13{left:7.920000px;}
.x18{left:10.080000px;}
.x21{left:11.628392px;}
.x19{left:12.960000px;}
.x16{left:14.580000px;}
.x2f{left:18.276901px;}
.x6f{left:19.819078px;}
.x10{left:21.636000px;}
.x5f{left:42.399626px;}
.x5c{left:46.691440px;}
.x2c{left:49.365290px;}
.x3b{left:53.656389px;}
.x5a{left:55.567702px;}
.x43{left:56.628695px;}
.x2d{left:63.156845px;}
.x1{left:66.959987px;}
.xa{left:68.039987px;}
.x6e{left:69.120000px;}
.x70{left:72.428015px;}
.x69{left:77.665192px;}
.x4d{left:86.606621px;}
.x9{left:88.415987px;}
.xc{left:89.675987px;}
.x4e{left:90.789905px;}
.x12{left:97.965000px;}
.x3{left:100.835987px;}
.x5b{left:104.691029px;}
.x4c{left:105.999215px;}
.x60{left:110.453250px;}
.x2b{left:111.939394px;}
.x61{left:119.183370px;}
.x59{left:120.194048px;}
.x3a{left:121.294165px;}
.x66{left:122.831098px;}
.x58{left:125.057746px;}
.x33{left:126.953823px;}
.x2{left:128.375987px;}
.x34{left:132.039570px;}
.x4a{left:134.316482px;}
.x71{left:135.516977px;}
.x4b{left:137.995054px;}
.x4f{left:154.469987px;}
.x51{left:156.550194px;}
.x3c{left:160.526450px;}
.x5d{left:168.684078px;}
.x72{left:171.593277px;}
.x67{left:175.783777px;}
.x1c{left:182.745000px;}
.x37{left:184.442181px;}
.x20{left:188.623410px;}
.x68{left:189.849483px;}
.xb{left:192.269987px;}
.x38{left:200.220355px;}
.x1f{left:206.730813px;}
.x24{left:211.952302px;}
.x1e{left:214.550615px;}
.x57{left:217.625013px;}
.x4{left:223.949987px;}
.x62{left:229.908592px;}
.x35{left:231.295501px;}
.x25{left:245.344998px;}
.x36{left:246.892672px;}
.x27{left:248.757635px;}
.x47{left:250.647771px;}
.x46{left:254.258401px;}
.x52{left:258.231787px;}
.x48{left:263.226744px;}
.x49{left:264.799109px;}
.x26{left:270.258992px;}
.x5{left:272.954987px;}
.x7{left:276.014987px;}
.x22{left:283.443286px;}
.x30{left:285.923126px;}
.x31{left:287.768475px;}
.x23{left:289.559897px;}
.x64{left:294.638963px;}
.x63{left:300.987297px;}
.x65{left:303.209689px;}
.x39{left:305.484707px;}
.x42{left:311.324512px;}
.x32{left:313.682824px;}
.x53{left:315.988181px;}
.x54{left:320.877215px;}
.x6{left:323.894987px;}
.x55{left:328.666714px;}
.x56{left:330.034631px;}
.x44{left:334.335000px;}
.x3f{left:350.981925px;}
.x1b{left:356.115000px;}
.x8{left:357.914987px;}
.x2a{left:360.795000px;}
.x5e{left:362.955000px;}
.x40{left:435.578035px;}
.x28{left:446.504987px;}
.xd{left:460.004987px;}
.x50{left:461.265000px;}
.x1a{left:462.345000px;}
.x29{left:464.684987px;}
.x1d{left:471.502801px;}
.xe{left:479.084987px;}
.xf{left:481.604987px;}
.x45{left:488.250000px;}
.x6d{left:489.704987px;}
.x11{left:498.525000px;}
.x41{left:521.555564px;}
.x6b{left:581.324987px;}
.x6a{left:584.024987px;}
.x14{left:596.850000px;}
.x3e{left:602.092422px;}
.x6c{left:603.869987px;}
.x3d{left:619.052024px;}
.x15{left:644.370000px;}
.x17{left:739.410000px;}
@media print{
.vf{vertical-align:-19.840000pt;}
.v6{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.000000pt;}
.ve{vertical-align:-12.800000pt;}
.v9{vertical-align:-9.021312pt;}
.v14{vertical-align:-7.983493pt;}
.va{vertical-align:-7.063439pt;}
.v3{vertical-align:-5.120000pt;}
.v7{vertical-align:-1.503526pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.920000pt;}
.vb{vertical-align:2.862107pt;}
.v4{vertical-align:5.120000pt;}
.v8{vertical-align:7.517942pt;}
.v13{vertical-align:9.181017pt;}
.vc{vertical-align:10.353066pt;}
.v1{vertical-align:16.000000pt;}
.v5{vertical-align:18.560000pt;}
.v11{vertical-align:23.514374pt;}
.v12{vertical-align:28.134554pt;}
.v10{vertical-align:29.446900pt;}
.ls35{letter-spacing:-0.837333pt;}
.ls34{letter-spacing:-0.821333pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls33{letter-spacing:-0.640000pt;}
.ls36{letter-spacing:-0.592000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls6f{letter-spacing:-0.519467pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.478933pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls3c{letter-spacing:-0.400533pt;}
.lse{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.239467pt;}
.ls70{letter-spacing:-0.230933pt;}
.ls18{letter-spacing:-0.225067pt;}
.ls40{letter-spacing:-0.221060pt;}
.ls17{letter-spacing:-0.207467pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls3e{letter-spacing:-0.180765pt;}
.ls46{letter-spacing:-0.170021pt;}
.ls43{letter-spacing:-0.169467pt;}
.ls3b{letter-spacing:-0.161067pt;}
.ls76{letter-spacing:-0.146515pt;}
.ls48{letter-spacing:-0.122393pt;}
.ls79{letter-spacing:-0.099794pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls4c{letter-spacing:-0.094213pt;}
.ls77{letter-spacing:-0.091684pt;}
.ls7d{letter-spacing:-0.086020pt;}
.ls4b{letter-spacing:-0.085972pt;}
.ls3a{letter-spacing:-0.084887pt;}
.ls21{letter-spacing:-0.079361pt;}
.ls7a{letter-spacing:-0.076508pt;}
.ls38{letter-spacing:-0.075176pt;}
.ls4a{letter-spacing:-0.067787pt;}
.ls20{letter-spacing:-0.066134pt;}
.ls7c{letter-spacing:-0.053556pt;}
.ls32{letter-spacing:-0.047360pt;}
.ls3f{letter-spacing:-0.045191pt;}
.ls83{letter-spacing:-0.040320pt;}
.ls1e{letter-spacing:-0.039240pt;}
.ls7b{letter-spacing:-0.034262pt;}
.ls74{letter-spacing:-0.024859pt;}
.ls39{letter-spacing:-0.024746pt;}
.ls47{letter-spacing:-0.012695pt;}
.ls6c{letter-spacing:-0.010240pt;}
.ls1a{letter-spacing:-0.009523pt;}
.ls6d{letter-spacing:-0.007680pt;}
.lsb{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.007680pt;}
.ls52{letter-spacing:0.015360pt;}
.ls84{letter-spacing:0.017789pt;}
.ls42{letter-spacing:0.022596pt;}
.ls45{letter-spacing:0.022669pt;}
.ls37{letter-spacing:0.037588pt;}
.ls6{letter-spacing:0.047360pt;}
.ls6e{letter-spacing:0.061867pt;}
.ls60{letter-spacing:0.062598pt;}
.ls78{letter-spacing:0.069856pt;}
.ls25{letter-spacing:0.075176pt;}
.ls1b{letter-spacing:0.092588pt;}
.ls26{letter-spacing:0.093970pt;}
.ls16{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.099202pt;}
.ls2a{letter-spacing:0.101680pt;}
.ls54{letter-spacing:0.102400pt;}
.ls1d{letter-spacing:0.109563pt;}
.ls6a{letter-spacing:0.109773pt;}
.ls49{letter-spacing:0.119380pt;}
.ls7f{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.132269pt;}
.ls68{letter-spacing:0.134830pt;}
.ls72{letter-spacing:0.135467pt;}
.ls85{letter-spacing:0.136837pt;}
.ls2e{letter-spacing:0.141004pt;}
.ls2b{letter-spacing:0.146871pt;}
.ls2d{letter-spacing:0.147352pt;}
.ls0{letter-spacing:0.160000pt;}
.ls73{letter-spacing:0.170680pt;}
.ls14{letter-spacing:0.183467pt;}
.ls6b{letter-spacing:0.183620pt;}
.ls7e{letter-spacing:0.183680pt;}
.ls30{letter-spacing:0.187401pt;}
.ls2c{letter-spacing:0.192690pt;}
.ls41{letter-spacing:0.203360pt;}
.ls44{letter-spacing:0.204025pt;}
.ls82{letter-spacing:0.207360pt;}
.ls66{letter-spacing:0.215728pt;}
.ls27{letter-spacing:0.216320pt;}
.ls4{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls71{letter-spacing:0.239467pt;}
.ls75{letter-spacing:0.251291pt;}
.ls61{letter-spacing:0.256177pt;}
.ls62{letter-spacing:0.269660pt;}
.ls23{letter-spacing:0.277120pt;}
.ls64{letter-spacing:0.287638pt;}
.ls11{letter-spacing:0.320000pt;}
.ls65{letter-spacing:0.323592pt;}
.ls63{letter-spacing:0.359547pt;}
.ls67{letter-spacing:0.377524pt;}
.ls4f{letter-spacing:0.586667pt;}
.ls4d{letter-spacing:0.608000pt;}
.ls55{letter-spacing:0.800000pt;}
.ls3d{letter-spacing:0.880000pt;}
.ls56{letter-spacing:1.440000pt;}
.ls59{letter-spacing:3.360000pt;}
.ls58{letter-spacing:4.640000pt;}
.ls80{letter-spacing:7.632640pt;}
.ls5d{letter-spacing:7.840000pt;}
.ls5a{letter-spacing:8.000000pt;}
.ls5f{letter-spacing:8.480000pt;}
.ls2f{letter-spacing:8.712333pt;}
.ls69{letter-spacing:8.915965pt;}
.ls5e{letter-spacing:9.120000pt;}
.ls22{letter-spacing:9.552640pt;}
.ls57{letter-spacing:9.760000pt;}
.ls29{letter-spacing:9.972245pt;}
.ls28{letter-spacing:10.037953pt;}
.ls24{letter-spacing:12.960000pt;}
.ls5c{letter-spacing:13.392640pt;}
.ls7{letter-spacing:15.952640pt;}
.ls81{letter-spacing:17.232640pt;}
.ls5{letter-spacing:18.512640pt;}
.ls5b{letter-spacing:24.480000pt;}
.ls51{letter-spacing:25.280000pt;}
.ls2{letter-spacing:26.832640pt;}
.ls4e{letter-spacing:29.733120pt;}
.ls9{letter-spacing:34.053896pt;}
.ls8{letter-spacing:34.072414pt;}
.ls50{letter-spacing:49.564160pt;}
.ls31{letter-spacing:347.657885pt;}
.ls53{letter-spacing:372.106667pt;}
.ws56{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws4{word-spacing:-27.360000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.374933pt;}
.ws58{word-spacing:-13.341867pt;}
.wse{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.ws59{word-spacing:-13.054933pt;}
.ws5a{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.870933pt;}
.wsd{word-spacing:-12.736000pt;}
.ws20{word-spacing:-12.688000pt;}
.ws8{word-spacing:-12.592000pt;}
.ws5{word-spacing:-12.096000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws35{word-spacing:-11.600000pt;}
.ws75{word-spacing:-11.126892pt;}
.ws14{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws70{word-spacing:-10.679680pt;}
.ws34{word-spacing:-10.558933pt;}
.ws0{word-spacing:-10.480533pt;}
.ws1a{word-spacing:-10.457586pt;}
.ws22{word-spacing:-10.449504pt;}
.ws19{word-spacing:-10.433354pt;}
.ws50{word-spacing:-10.400000pt;}
.ws36{word-spacing:-10.377338pt;}
.ws2c{word-spacing:-10.374328pt;}
.ws5e{word-spacing:-10.244564pt;}
.ws18{word-spacing:-10.241067pt;}
.ws62{word-spacing:-10.075370pt;}
.ws60{word-spacing:-10.045384pt;}
.ws5b{word-spacing:-9.993273pt;}
.ws1f{word-spacing:-9.882667pt;}
.ws2f{word-spacing:-9.571746pt;}
.ws2e{word-spacing:-9.561297pt;}
.ws53{word-spacing:-9.555303pt;}
.ws71{word-spacing:-9.510164pt;}
.ws55{word-spacing:-9.461090pt;}
.ws41{word-spacing:-9.385163pt;}
.ws3f{word-spacing:-9.354572pt;}
.ws49{word-spacing:-9.345534pt;}
.ws4d{word-spacing:-9.320678pt;}
.ws44{word-spacing:-9.215142pt;}
.ws1c{word-spacing:-9.207382pt;}
.ws1b{word-spacing:-9.192674pt;}
.ws3e{word-spacing:-9.185105pt;}
.ws6f{word-spacing:-9.166327pt;}
.ws6b{word-spacing:-9.165288pt;}
.ws6d{word-spacing:-9.144293pt;}
.ws6c{word-spacing:-9.079268pt;}
.ws72{word-spacing:-8.768371pt;}
.ws73{word-spacing:-8.749351pt;}
.ws65{word-spacing:-8.725990pt;}
.ws67{word-spacing:-8.696004pt;}
.ws12{word-spacing:-8.647680pt;}
.ws11{word-spacing:-8.640000pt;}
.ws57{word-spacing:-8.632320pt;}
.ws46{word-spacing:-8.384079pt;}
.ws68{word-spacing:-8.302833pt;}
.ws6a{word-spacing:-8.133183pt;}
.ws2{word-spacing:-8.000000pt;}
.ws27{word-spacing:-7.034546pt;}
.ws25{word-spacing:-6.959370pt;}
.ws24{word-spacing:-6.948920pt;}
.ws16{word-spacing:-6.720000pt;}
.ws63{word-spacing:-6.626955pt;}
.ws61{word-spacing:-6.596969pt;}
.ws15{word-spacing:-6.512533pt;}
.ws17{word-spacing:-6.494933pt;}
.ws54{word-spacing:-6.343532pt;}
.ws3c{word-spacing:-6.236381pt;}
.ws29{word-spacing:-6.112960pt;}
.ws69{word-spacing:-5.488651pt;}
.ws28{word-spacing:-4.650030pt;}
.ws4c{word-spacing:-0.878742pt;}
.ws5f{word-spacing:-0.292722pt;}
.ws52{word-spacing:-0.254768pt;}
.ws21{word-spacing:-0.119029pt;}
.ws47{word-spacing:-0.030368pt;}
.ws48{word-spacing:-0.030278pt;}
.ws1d{word-spacing:0.000000pt;}
.ws45{word-spacing:0.013148pt;}
.ws51{word-spacing:0.020261pt;}
.ws4b{word-spacing:0.059291pt;}
.ws4f{word-spacing:0.079085pt;}
.ws37{word-spacing:0.191611pt;}
.ws2d{word-spacing:0.225529pt;}
.ws40{word-spacing:2.244278pt;}
.ws3b{word-spacing:2.282154pt;}
.ws5d{word-spacing:3.136904pt;}
.ws3d{word-spacing:3.231169pt;}
.ws42{word-spacing:3.559108pt;}
.ws5c{word-spacing:3.569142pt;}
.ws4e{word-spacing:3.615293pt;}
.ws4a{word-spacing:3.660801pt;}
.ws43{word-spacing:12.838480pt;}
.ws2a{word-spacing:41.712818pt;}
.ws23{word-spacing:55.962672pt;}
.ws31{word-spacing:68.740825pt;}
.ws26{word-spacing:68.778413pt;}
.ws30{word-spacing:73.359844pt;}
.ws64{word-spacing:202.542538pt;}
.ws3a{word-spacing:239.578913pt;}
.ws39{word-spacing:246.193982pt;}
.ws74{word-spacing:264.949979pt;}
.ws32{word-spacing:311.248001pt;}
.ws66{word-spacing:471.017369pt;}
.ws33{word-spacing:516.122828pt;}
.ws6e{word-spacing:544.319474pt;}
.ws2b{word-spacing:557.566891pt;}
.ws38{word-spacing:1147.177800pt;}
._32{margin-left:-804.031814pt;}
._2{margin-left:-9.226987pt;}
._14{margin-left:-4.063680pt;}
._b{margin-left:-2.640000pt;}
._0{margin-left:-1.023680pt;}
._1{width:1.173333pt;}
._a{width:2.730667pt;}
._13{width:3.749653pt;}
._10{width:5.418240pt;}
._11{width:6.389227pt;}
._e{width:7.769920pt;}
._f{width:8.683840pt;}
._3{width:9.914347pt;}
._8{width:10.890667pt;}
._17{width:12.279360pt;}
._d{width:13.456000pt;}
._c{width:14.528000pt;}
._18{width:15.718507pt;}
._1e{width:17.479040pt;}
._16{width:18.393920pt;}
._12{width:19.470720pt;}
._19{width:21.156160pt;}
._15{width:22.696640pt;}
._27{width:24.182080pt;}
._29{width:25.148267pt;}
._2d{width:26.300693pt;}
._26{width:27.382080pt;}
._21{width:28.680107pt;}
._20{width:29.636267pt;}
._2e{width:31.078187pt;}
._6{width:31.994667pt;}
._1f{width:33.547520pt;}
._5{width:34.666347pt;}
._4{width:35.856000pt;}
._9{width:37.008000pt;}
._23{width:37.938667pt;}
._1c{width:41.303040pt;}
._1d{width:42.605653pt;}
._7{width:45.264000pt;}
._2b{width:54.976853pt;}
._2a{width:56.844587pt;}
._33{width:58.852160pt;}
._2f{width:60.840000pt;}
._30{width:61.893120pt;}
._22{width:63.520000pt;}
._35{width:68.058865pt;}
._34{width:69.005705pt;}
._1b{width:70.515200pt;}
._1a{width:71.447680pt;}
._24{width:74.913600pt;}
._25{width:76.627840pt;}
._31{width:93.790498pt;}
._36{width:223.349423pt;}
._37{width:224.919942pt;}
._38{width:226.909779pt;}
._28{width:244.760314pt;}
._2c{width:263.654827pt;}
.fs15{font-size:14.659377pt;}
.fs13{font-size:16.726725pt;}
.fs2b{font-size:18.400461pt;}
.fs23{font-size:19.949139pt;}
.fs3b{font-size:19.958732pt;}
.fs14{font-size:21.989065pt;}
.fs3f{font-size:22.353780pt;}
.fs1f{font-size:22.595584pt;}
.fs21{font-size:22.669476pt;}
.fs27{font-size:22.685966pt;}
.fs2d{font-size:22.948890pt;}
.fs2f{font-size:22.983813pt;}
.fs34{font-size:23.730103pt;}
.fs31{font-size:23.778066pt;}
.fs37{font-size:23.837967pt;}
.fs11{font-size:24.996117pt;}
.fs12{font-size:25.033705pt;}
.fs1b{font-size:25.397436pt;}
.fs6{font-size:26.880000pt;}
.fs29{font-size:27.497319pt;}
.fs2a{font-size:27.538668pt;}
.fs16{font-size:28.191109pt;}
.fs3a{font-size:29.938099pt;}
.fs25{font-size:30.278083pt;}
.fs24{font-size:30.368465pt;}
.fs22{font-size:30.377098pt;}
.fsc{font-size:30.950873pt;}
.fs39{font-size:31.280590pt;}
.fs38{font-size:31.388454pt;}
.fs43{font-size:31.472485pt;}
.fs44{font-size:31.540904pt;}
.fs3{font-size:32.000000pt;}
.fsb{font-size:33.067172pt;}
.fse{font-size:33.120079pt;}
.fs3c{font-size:33.131496pt;}
.fs3e{font-size:33.207565pt;}
.fs3d{font-size:33.211331pt;}
.fs1e{font-size:33.893376pt;}
.fs26{font-size:33.983758pt;}
.fs20{font-size:34.004214pt;}
.fs40{font-size:34.209223pt;}
.fs18{font-size:34.393153pt;}
.fs17{font-size:34.430741pt;}
.fs2c{font-size:34.526709pt;}
.fs5{font-size:34.560000pt;}
.fs2e{font-size:34.620662pt;}
.fs33{font-size:36.134474pt;}
.fs30{font-size:36.207510pt;}
.fs35{font-size:36.242339pt;}
.fs28{font-size:37.120000pt;}
.fs8{font-size:37.564307pt;}
.fs10{font-size:37.588146pt;}
.fs1a{font-size:37.599052pt;}
.fsa{font-size:37.617214pt;}
.fs19{font-size:37.625734pt;}
.fs41{font-size:40.024791pt;}
.fs42{font-size:40.093210pt;}
.fs32{font-size:40.449039pt;}
.fs36{font-size:40.556903pt;}
.fs0{font-size:42.880000pt;}
.fsd{font-size:44.177741pt;}
.fs1c{font-size:45.191168pt;}
.fs1d{font-size:45.281550pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:56.081923pt;}
.fs9{font-size:56.134830pt;}
.fsf{font-size:58.880000pt;}
.fs1{font-size:128.000000pt;}
.ye1{bottom:-47.040000pt;}
.yf3{bottom:-32.000000pt;}
.y64{bottom:-28.960000pt;}
.ye0{bottom:-21.600000pt;}
.y63{bottom:-13.760000pt;}
.yf2{bottom:-7.840000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:0.960000pt;}
.yd0{bottom:2.199650pt;}
.yce{bottom:2.209047pt;}
.y53{bottom:2.240000pt;}
.ycd{bottom:2.350003pt;}
.ycf{bottom:2.425140pt;}
.yca{bottom:3.200000pt;}
.y101{bottom:3.220517pt;}
.y156{bottom:3.428505pt;}
.y182{bottom:3.625421pt;}
.ydf{bottom:4.000000pt;}
.ye3{bottom:4.059108pt;}
.y55{bottom:4.160000pt;}
.y1ea{bottom:4.320000pt;}
.yf1{bottom:4.480000pt;}
.y5c{bottom:4.800000pt;}
.ye5{bottom:5.347057pt;}
.y57{bottom:6.720000pt;}
.y59{bottom:6.880000pt;}
.y61{bottom:13.280000pt;}
.yd1{bottom:13.457339pt;}
.y1f6{bottom:14.019700pt;}
.y52{bottom:14.560000pt;}
.y153{bottom:15.360000pt;}
.yc9{bottom:15.520000pt;}
.y72{bottom:15.866432pt;}
.yde{bottom:16.320000pt;}
.y1e9{bottom:16.640000pt;}
.yf0{bottom:16.800000pt;}
.y172{bottom:17.120000pt;}
.yd2{bottom:20.974968pt;}
.ycc{bottom:21.426026pt;}
.yc8{bottom:25.440000pt;}
.y60{bottom:25.600000pt;}
.yef{bottom:26.720000pt;}
.y51{bottom:26.880000pt;}
.y71{bottom:27.109271pt;}
.y152{bottom:27.520000pt;}
.ydd{bottom:28.640000pt;}
.y1e8{bottom:28.960000pt;}
.y171{bottom:29.280000pt;}
.y155{bottom:29.288475pt;}
.ye7{bottom:30.359992pt;}
.y1f4{bottom:33.416342pt;}
.y151{bottom:37.594667pt;}
.y5f{bottom:37.760000pt;}
.y70{bottom:38.352109pt;}
.yec{bottom:38.471806pt;}
.y50{bottom:39.040000pt;}
.yd8{bottom:39.346175pt;}
.y170{bottom:39.360000pt;}
.y165{bottom:39.427700pt;}
.y1e7{bottom:41.120000pt;}
.y1f3{bottom:42.823876pt;}
.yd6{bottom:44.252211pt;}
.y17e{bottom:45.279711pt;}
.y17f{bottom:46.018184pt;}
.yd7{bottom:46.957774pt;}
.y78{bottom:47.703490pt;}
.y5e{bottom:47.840000pt;}
.yeb{bottom:48.549437pt;}
.y6f{bottom:49.594947pt;}
.y1{bottom:50.112000pt;}
.y80{bottom:50.752000pt;}
.y1e6{bottom:51.200000pt;}
.y4f{bottom:51.354667pt;}
.yd5{bottom:53.375167pt;}
.y1f5{bottom:54.779990pt;}
.y1f2{bottom:54.780015pt;}
.y77{bottom:54.912134pt;}
.y16a{bottom:56.281466pt;}
.y15a{bottom:56.335398pt;}
.y169{bottom:58.007292pt;}
.yfb{bottom:58.401592pt;}
.y6e{bottom:60.849910pt;}
.y4e{bottom:63.674667pt;}
.ye9{bottom:66.128801pt;}
.y102{bottom:68.842361pt;}
.yea{bottom:71.099830pt;}
.y161{bottom:71.544237pt;}
.y6d{bottom:72.092749pt;}
.y167{bottom:72.110524pt;}
.y4d{bottom:75.994667pt;}
.ye8{bottom:76.680939pt;}
.y7f{bottom:81.037406pt;}
.yd3{bottom:81.116001pt;}
.y6c{bottom:83.335587pt;}
.y181{bottom:85.514852pt;}
.y15b{bottom:85.593536pt;}
.y163{bottom:86.780042pt;}
.y1f7{bottom:90.648393pt;}
.y1f1{bottom:91.467996pt;}
.y4c{bottom:92.672000pt;}
.y162{bottom:93.090092pt;}
.y6b{bottom:94.594959pt;}
.y16e{bottom:96.595675pt;}
.y74{bottom:96.920673pt;}
.yf6{bottom:97.433658pt;}
.y5b{bottom:97.472000pt;}
.yc7{bottom:97.632000pt;}
.y164{bottom:98.213636pt;}
.y180{bottom:99.286378pt;}
.y13d{bottom:102.112000pt;}
.yfc{bottom:102.408529pt;}
.yd4{bottom:103.124644pt;}
.y17c{bottom:103.777092pt;}
.yf5{bottom:105.703528pt;}
.y6a{bottom:105.837797pt;}
.y7d{bottom:107.606880pt;}
.y1ee{bottom:109.427828pt;}
.yb0{bottom:109.952000pt;}
.y159{bottom:112.504507pt;}
.y75{bottom:112.555935pt;}
.yfd{bottom:115.877218pt;}
.y13c{bottom:116.672000pt;}
.y69{bottom:117.080635pt;}
.y16b{bottom:117.605580pt;}
.y5a{bottom:117.952000pt;}
.ydb{bottom:118.535784pt;}
.yf7{bottom:118.771643pt;}
.y15e{bottom:119.032532pt;}
.y1ef{bottom:119.847399pt;}
.yda{bottom:120.301643pt;}
.y7a{bottom:121.561227pt;}
.y168{bottom:123.077436pt;}
.ycb{bottom:123.246667pt;}
.yd9{bottom:124.115274pt;}
.yaf{bottom:124.512000pt;}
.yfe{bottom:126.606521pt;}
.y15d{bottom:127.257170pt;}
.yf8{bottom:127.536848pt;}
.y68{bottom:128.323474pt;}
.y13b{bottom:131.232000pt;}
.y177{bottom:132.958422pt;}
.y15f{bottom:134.111035pt;}
.y73{bottom:135.041610pt;}
.y154{bottom:135.360000pt;}
.y1e4{bottom:136.026667pt;}
.yf9{bottom:136.146988pt;}
.yff{bottom:136.758653pt;}
.y15c{bottom:138.043580pt;}
.yae{bottom:139.066667pt;}
.y58{bottom:139.546667pt;}
.y67{bottom:139.577334pt;}
.y166{bottom:139.717721pt;}
.y16d{bottom:142.144663pt;}
.yed{bottom:142.276861pt;}
.y7e{bottom:144.526374pt;}
.yfa{bottom:144.903572pt;}
.y13a{bottom:145.786667pt;}
.y1a5{bottom:146.746667pt;}
.y100{bottom:146.859093pt;}
.y160{bottom:147.459217pt;}
.y7c{bottom:148.042520pt;}
.y1e3{bottom:148.346667pt;}
.y16c{bottom:149.178301pt;}
.y66{bottom:150.820173pt;}
.ye4{bottom:152.539022pt;}
.ye6{bottom:153.254548pt;}
.yad{bottom:153.786667pt;}
.y7b{bottom:156.959632pt;}
.y158{bottom:159.695052pt;}
.y157{bottom:160.369202pt;}
.y1e2{bottom:160.506667pt;}
.y56{bottom:161.306667pt;}
.yac{bottom:168.346667pt;}
.y79{bottom:169.018130pt;}
.y76{bottom:169.018139pt;}
.y1e1{bottom:172.826667pt;}
.y1a4{bottom:175.866667pt;}
.y17d{bottom:176.726259pt;}
.y178{bottom:176.909214pt;}
.y175{bottom:179.046462pt;}
.y17a{bottom:179.545430pt;}
.y54{bottom:182.906667pt;}
.y1e0{bottom:185.146667pt;}
.y174{bottom:188.027892pt;}
.y179{bottom:188.526860pt;}
.y1a3{bottom:190.426667pt;}
.y1df{bottom:197.306667pt;}
.yab{bottom:197.466667pt;}
.y33{bottom:198.106667pt;}
.y5d{bottom:200.346667pt;}
.y1a2{bottom:204.986667pt;}
.y1de{bottom:209.626667pt;}
.y176{bottom:211.911841pt;}
.yaa{bottom:212.026667pt;}
.y32{bottom:212.826667pt;}
.y17b{bottom:213.691495pt;}
.y1a1{bottom:219.546667pt;}
.y1dd{bottom:221.946667pt;}
.ya9{bottom:226.586667pt;}
.y139{bottom:226.746667pt;}
.y31{bottom:227.386667pt;}
.y183{bottom:228.261370pt;}
.y1a0{bottom:234.106667pt;}
.ya8{bottom:241.146667pt;}
.y138{bottom:241.306667pt;}
.y30{bottom:241.946667pt;}
.y1dc{bottom:246.426667pt;}
.y19f{bottom:248.666667pt;}
.y65{bottom:249.247908pt;}
.ya7{bottom:255.746667pt;}
.y137{bottom:255.906667pt;}
.y2f{bottom:256.546667pt;}
.y1db{bottom:258.786667pt;}
.y19e{bottom:263.266667pt;}
.yc6{bottom:266.146667pt;}
.ya6{bottom:270.306667pt;}
.y136{bottom:270.466667pt;}
.y1da{bottom:270.946667pt;}
.y2e{bottom:271.106667pt;}
.y19d{bottom:277.826667pt;}
.yc5{bottom:280.706667pt;}
.y1d9{bottom:283.266667pt;}
.ya5{bottom:284.866667pt;}
.y135{bottom:285.026667pt;}
.y19c{bottom:292.386667pt;}
.y2d{bottom:293.666667pt;}
.yc4{bottom:295.266667pt;}
.y1d8{bottom:295.586667pt;}
.ya4{bottom:299.426667pt;}
.y134{bottom:299.586667pt;}
.y1ed{bottom:302.075644pt;}
.y19b{bottom:306.946667pt;}
.y1d7{bottom:307.746667pt;}
.y2c{bottom:308.226667pt;}
.y1f0{bottom:309.024401pt;}
.yc3{bottom:309.826667pt;}
.y1ec{bottom:312.338411pt;}
.ya3{bottom:313.986667pt;}
.y133{bottom:314.146667pt;}
.y1d6{bottom:320.066667pt;}
.y19a{bottom:321.506667pt;}
.y150{bottom:322.466667pt;}
.y2b{bottom:322.786667pt;}
.yc2{bottom:324.386667pt;}
.ya2{bottom:328.546667pt;}
.y132{bottom:328.706667pt;}
.y1d5{bottom:332.386667pt;}
.y199{bottom:336.066667pt;}
.y14f{bottom:337.026667pt;}
.y2a{bottom:337.346667pt;}
.yc1{bottom:338.946667pt;}
.y131{bottom:343.266667pt;}
.y1d4{bottom:344.546667pt;}
.y198{bottom:350.626667pt;}
.ya1{bottom:351.106667pt;}
.y14e{bottom:351.586667pt;}
.y29{bottom:351.906667pt;}
.yc0{bottom:353.506667pt;}
.y1d3{bottom:356.866667pt;}
.y130{bottom:357.826667pt;}
.y197{bottom:365.186667pt;}
.ya0{bottom:365.666667pt;}
.y14d{bottom:366.146667pt;}
.y28{bottom:366.466667pt;}
.ybf{bottom:368.066667pt;}
.y1d2{bottom:369.186667pt;}
.y12f{bottom:372.386667pt;}
.y196{bottom:379.746667pt;}
.y9f{bottom:380.226667pt;}
.y14c{bottom:380.706667pt;}
.y27{bottom:381.026667pt;}
.y1d1{bottom:381.346667pt;}
.y12e{bottom:386.946667pt;}
.ybe{bottom:390.626667pt;}
.y1d0{bottom:393.666667pt;}
.y195{bottom:394.306667pt;}
.y9e{bottom:394.786667pt;}
.y14b{bottom:395.266667pt;}
.y26{bottom:395.586667pt;}
.y12d{bottom:401.506667pt;}
.ybd{bottom:405.186667pt;}
.y1cf{bottom:405.986667pt;}
.y194{bottom:408.866667pt;}
.y9d{bottom:409.346667pt;}
.y14a{bottom:409.826667pt;}
.y25{bottom:410.146667pt;}
.y12c{bottom:416.066667pt;}
.y1ce{bottom:418.146667pt;}
.ybc{bottom:419.746667pt;}
.y193{bottom:423.426667pt;}
.y9c{bottom:423.906667pt;}
.y149{bottom:424.386667pt;}
.y24{bottom:424.706667pt;}
.y1cd{bottom:430.466667pt;}
.y12b{bottom:430.626667pt;}
.ybb{bottom:434.306667pt;}
.y192{bottom:437.986667pt;}
.y9b{bottom:438.466667pt;}
.y148{bottom:438.946667pt;}
.y23{bottom:439.266667pt;}
.y1cc{bottom:442.786667pt;}
.y12a{bottom:445.186667pt;}
.yba{bottom:448.866667pt;}
.y9a{bottom:453.026667pt;}
.y147{bottom:453.506667pt;}
.y22{bottom:453.826667pt;}
.y1cb{bottom:454.946667pt;}
.y191{bottom:458.146667pt;}
.y4b{bottom:458.306667pt;}
.y129{bottom:459.746667pt;}
.yb9{bottom:463.426667pt;}
.y1ca{bottom:467.266667pt;}
.y99{bottom:467.586667pt;}
.y146{bottom:468.066667pt;}
.y21{bottom:468.386667pt;}
.y4a{bottom:472.866667pt;}
.y190{bottom:473.506667pt;}
.yb8{bottom:478.146667pt;}
.y1c9{bottom:479.586667pt;}
.y98{bottom:482.146667pt;}
.y128{bottom:482.306667pt;}
.y145{bottom:482.626667pt;}
.y20{bottom:482.946667pt;}
.y49{bottom:487.426667pt;}
.y1c8{bottom:491.746667pt;}
.yb7{bottom:492.706667pt;}
.y97{bottom:496.706667pt;}
.y127{bottom:496.866667pt;}
.y144{bottom:497.186667pt;}
.y1f{bottom:497.506667pt;}
.y18f{bottom:499.266667pt;}
.y48{bottom:502.013333pt;}
.y1c7{bottom:504.093333pt;}
.y96{bottom:511.293333pt;}
.y126{bottom:511.453333pt;}
.y143{bottom:511.773333pt;}
.y1e{bottom:512.093333pt;}
.y18e{bottom:513.853333pt;}
.y1c6{bottom:516.413333pt;}
.y47{bottom:516.573333pt;}
.y95{bottom:525.853333pt;}
.y125{bottom:526.013333pt;}
.y142{bottom:526.333333pt;}
.y1d{bottom:526.653333pt;}
.y18d{bottom:528.413333pt;}
.y1c5{bottom:528.573333pt;}
.y46{bottom:531.133333pt;}
.yb6{bottom:534.653333pt;}
.y124{bottom:540.573333pt;}
.y141{bottom:540.893333pt;}
.y1c{bottom:541.213333pt;}
.y18c{bottom:542.973333pt;}
.y94{bottom:544.573333pt;}
.yb5{bottom:550.013333pt;}
.y1c4{bottom:553.213333pt;}
.y45{bottom:553.693333pt;}
.y123{bottom:555.133333pt;}
.y1b{bottom:555.773333pt;}
.y18b{bottom:557.533333pt;}
.y140{bottom:559.613333pt;}
.yb4{bottom:565.373333pt;}
.y93{bottom:567.773333pt;}
.y44{bottom:568.253333pt;}
.y122{bottom:569.693333pt;}
.y1a{bottom:570.333333pt;}
.y18a{bottom:572.093333pt;}
.y1c3{bottom:577.693333pt;}
.yb3{bottom:580.733333pt;}
.y92{bottom:582.333333pt;}
.y43{bottom:582.813333pt;}
.y121{bottom:584.253333pt;}
.y19{bottom:584.893333pt;}
.y189{bottom:586.653333pt;}
.y1c2{bottom:590.013333pt;}
.yb2{bottom:596.093333pt;}
.y91{bottom:596.893333pt;}
.y42{bottom:597.373333pt;}
.y188{bottom:601.213333pt;}
.y1c1{bottom:602.173333pt;}
.y18{bottom:605.053333pt;}
.y90{bottom:611.453333pt;}
.y41{bottom:611.933333pt;}
.y1c0{bottom:614.493333pt;}
.y120{bottom:614.653333pt;}
.y187{bottom:615.773333pt;}
.y8f{bottom:626.013333pt;}
.y40{bottom:626.493333pt;}
.y1bf{bottom:626.653333pt;}
.y186{bottom:630.333333pt;}
.yb1{bottom:631.933333pt;}
.y17{bottom:633.213333pt;}
.y1be{bottom:638.973333pt;}
.y8e{bottom:640.573333pt;}
.y3f{bottom:641.053333pt;}
.y185{bottom:644.893333pt;}
.y11f{bottom:645.533333pt;}
.y16{bottom:647.133333pt;}
.yee{bottom:652.733333pt;}
.y8d{bottom:655.133333pt;}
.y3e{bottom:655.613333pt;}
.y1bd{bottom:657.213333pt;}
.y184{bottom:659.453333pt;}
.y11e{bottom:660.093333pt;}
.y8c{bottom:669.693333pt;}
.y3d{bottom:670.173333pt;}
.y15{bottom:674.173333pt;}
.y11d{bottom:674.653333pt;}
.y1e5{bottom:676.573333pt;}
.yf4{bottom:680.560000pt;}
.y1bc{bottom:683.133333pt;}
.y8b{bottom:684.253333pt;}
.y3c{bottom:684.733333pt;}
.y14{bottom:688.093333pt;}
.y11c{bottom:689.213333pt;}
.y1bb{bottom:697.693333pt;}
.y8a{bottom:698.973333pt;}
.y3b{bottom:699.293333pt;}
.y13{bottom:701.853333pt;}
.y11b{bottom:703.773333pt;}
.y1ba{bottom:712.253333pt;}
.y89{bottom:713.533333pt;}
.y3a{bottom:713.853333pt;}
.y12{bottom:715.773333pt;}
.y11a{bottom:718.333333pt;}
.y1b9{bottom:726.813333pt;}
.y88{bottom:728.093333pt;}
.y39{bottom:728.413333pt;}
.y11{bottom:729.533333pt;}
.y1eb{bottom:730.640752pt;}
.y119{bottom:732.893333pt;}
.y1b8{bottom:741.373333pt;}
.y87{bottom:742.653333pt;}
.y13f{bottom:742.973333pt;}
.y10{bottom:743.293333pt;}
.y38{bottom:747.133333pt;}
.y118{bottom:747.453333pt;}
.yf{bottom:757.093333pt;}
.y86{bottom:757.253333pt;}
.y13e{bottom:757.573333pt;}
.y1b7{bottom:761.413333pt;}
.y117{bottom:762.213333pt;}
.y37{bottom:770.533333pt;}
.ye{bottom:771.013333pt;}
.y85{bottom:771.813333pt;}
.y16f{bottom:774.693333pt;}
.y116{bottom:776.773333pt;}
.yd{bottom:784.773333pt;}
.y84{bottom:786.373333pt;}
.y1b6{bottom:787.493333pt;}
.y115{bottom:795.333333pt;}
.y36{bottom:796.453333pt;}
.yc{bottom:798.533333pt;}
.y83{bottom:800.933333pt;}
.y1b5{bottom:802.693333pt;}
.y35{bottom:811.013333pt;}
.yb{bottom:812.293333pt;}
.y173{bottom:814.493333pt;}
.y82{bottom:815.493333pt;}
.y1b4{bottom:818.053333pt;}
.y114{bottom:818.533333pt;}
.y34{bottom:825.573333pt;}
.ya{bottom:826.213333pt;}
.y81{bottom:830.053333pt;}
.y113{bottom:833.093333pt;}
.y1b3{bottom:833.413333pt;}
.ydc{bottom:842.213333pt;}
.y112{bottom:847.653333pt;}
.y1b2{bottom:848.773333pt;}
.y110{bottom:862.373333pt;}
.y1b1{bottom:864.133333pt;}
.y111{bottom:867.333333pt;}
.y9{bottom:876.453333pt;}
.y10e{bottom:877.733333pt;}
.y1b0{bottom:879.493333pt;}
.ye2{bottom:881.693333pt;}
.y10f{bottom:882.693333pt;}
.y8{bottom:890.213333pt;}
.y10d{bottom:893.093333pt;}
.y1af{bottom:894.693333pt;}
.y7{bottom:903.973333pt;}
.y10c{bottom:907.653333pt;}
.y1ae{bottom:910.053333pt;}
.y10b{bottom:922.213333pt;}
.y1ad{bottom:925.413333pt;}
.y6{bottom:932.453333pt;}
.y10a{bottom:936.773333pt;}
.y1ac{bottom:940.773333pt;}
.y5{bottom:946.213333pt;}
.y109{bottom:951.333333pt;}
.y1ab{bottom:956.133333pt;}
.y108{bottom:965.893333pt;}
.y1aa{bottom:971.493333pt;}
.y107{bottom:980.453333pt;}
.y4{bottom:983.013333pt;}
.y1a9{bottom:986.693333pt;}
.y106{bottom:995.013333pt;}
.y1a8{bottom:1002.053333pt;}
.y105{bottom:1009.600000pt;}
.y1a7{bottom:1017.440000pt;}
.y3{bottom:1019.840000pt;}
.y104{bottom:1024.160000pt;}
.y1a6{bottom:1038.080000pt;}
.y103{bottom:1038.720000pt;}
.y2{bottom:1056.640000pt;}
.hc{height:16.000000pt;}
.h23{height:16.491799pt;}
.h1f{height:18.747088pt;}
.h20{height:18.811949pt;}
.h22{height:20.062829pt;}
.h21{height:20.062986pt;}
.h36{height:20.622989pt;}
.h37{height:20.654001pt;}
.he{height:21.280000pt;}
.h10{height:21.440000pt;}
.h5{height:23.140625pt;}
.h17{height:23.213154pt;}
.h4a{height:23.460442pt;}
.h48{height:23.541340pt;}
.h59{height:23.604364pt;}
.h5a{height:23.655678pt;}
.h16{height:24.800379pt;}
.h19{height:24.840059pt;}
.h56{height:25.656918pt;}
.h25{height:25.794865pt;}
.h24{height:25.823056pt;}
.h4d{height:25.888854pt;}
.h38{height:25.895031pt;}
.h30{height:26.182854pt;}
.h2f{height:26.261011pt;}
.h2e{height:26.283309pt;}
.h4e{height:26.440253pt;}
.h34{height:26.843125pt;}
.h43{height:27.100856pt;}
.h44{height:27.181754pt;}
.h1e{height:28.191109pt;}
.h26{height:28.219300pt;}
.h4f{height:28.650332pt;}
.h53{height:28.666509pt;}
.h50{height:28.719369pt;}
.h51{height:28.732326pt;}
.h57{height:28.943709pt;}
.h58{height:28.993185pt;}
.h2b{height:29.325714pt;}
.h31{height:29.387322pt;}
.h2d{height:29.421615pt;}
.h39{height:29.873695pt;}
.h52{height:30.172614pt;}
.h3a{height:30.239448pt;}
.hd{height:30.254687pt;}
.h45{height:30.417677pt;}
.h2{height:31.008437pt;}
.h5b{height:31.101886pt;}
.h42{height:31.264789pt;}
.h3c{height:31.283750pt;}
.h40{height:31.327982pt;}
.h33{height:31.343437pt;}
.h18{height:31.946892pt;}
.h29{height:32.531992pt;}
.h2c{height:32.745105pt;}
.h7{height:33.867188pt;}
.h6{height:34.781250pt;}
.h41{height:34.997899pt;}
.hf{height:35.438125pt;}
.h2a{height:35.607213pt;}
.h9{height:38.413438pt;}
.h8{height:38.672812pt;}
.ha{height:38.828437pt;}
.h4{height:39.140625pt;}
.h14{height:40.829173pt;}
.h15{height:40.867691pt;}
.h1b{height:42.578750pt;}
.h3d{height:43.530542pt;}
.h1a{height:43.551875pt;}
.h3b{height:46.688125pt;}
.h49{height:51.675894pt;}
.h47{height:53.851153pt;}
.h46{height:56.547756pt;}
.hb{height:89.280000pt;}
.h3{height:92.562500pt;}
.h11{height:101.760000pt;}
.h1d{height:130.779339pt;}
.h1c{height:156.346667pt;}
.h35{height:158.957203pt;}
.h28{height:163.196605pt;}
.h3f{height:169.998321pt;}
.h13{height:182.993745pt;}
.h32{height:186.746667pt;}
.h3e{height:207.706667pt;}
.h27{height:208.026667pt;}
.h12{height:231.866667pt;}
.h4c{height:235.586667pt;}
.h4b{height:275.386667pt;}
.h55{height:319.579377pt;}
.h54{height:373.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:40.320000pt;}
.w8{width:43.872000pt;}
.w7{width:84.320000pt;}
.w5{width:87.072000pt;}
.w4{width:257.986667pt;}
.w15{width:259.511699pt;}
.w11{width:273.110117pt;}
.wb{width:308.051666pt;}
.w13{width:320.000000pt;}
.w10{width:320.386667pt;}
.wd{width:320.531511pt;}
.wc{width:320.866667pt;}
.w12{width:321.826667pt;}
.w14{width:322.213333pt;}
.w9{width:322.306667pt;}
.w3{width:324.413333pt;}
.wa{width:324.866667pt;}
.wf{width:667.729422pt;}
.we{width:670.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:2.222659pt;}
.x13{left:7.040000pt;}
.x18{left:8.960000pt;}
.x21{left:10.336348pt;}
.x19{left:11.520000pt;}
.x16{left:12.960000pt;}
.x2f{left:16.246134pt;}
.x6f{left:17.616958pt;}
.x10{left:19.232000pt;}
.x5f{left:37.688557pt;}
.x5c{left:41.503502pt;}
.x2c{left:43.880258pt;}
.x3b{left:47.694568pt;}
.x5a{left:49.393513pt;}
.x43{left:50.336617pt;}
.x2d{left:56.139418pt;}
.x1{left:59.519988pt;}
.xa{left:60.479988pt;}
.x6e{left:61.440000pt;}
.x70{left:64.380458pt;}
.x69{left:69.035726pt;}
.x4d{left:76.983663pt;}
.x9{left:78.591988pt;}
.xc{left:79.711988pt;}
.x4e{left:80.702138pt;}
.x12{left:87.080000pt;}
.x3{left:89.631988pt;}
.x5b{left:93.058692pt;}
.x4c{left:94.221525pt;}
.x60{left:98.180666pt;}
.x2b{left:99.501683pt;}
.x61{left:105.940773pt;}
.x59{left:106.839154pt;}
.x3a{left:107.817035pt;}
.x66{left:109.183198pt;}
.x58{left:111.162441pt;}
.x33{left:112.847843pt;}
.x2{left:114.111988pt;}
.x34{left:117.368506pt;}
.x4a{left:119.392429pt;}
.x71{left:120.459535pt;}
.x4b{left:122.662270pt;}
.x4f{left:137.306655pt;}
.x51{left:139.155728pt;}
.x3c{left:142.690178pt;}
.x5d{left:149.941403pt;}
.x72{left:152.527357pt;}
.x67{left:156.252246pt;}
.x1c{left:162.440000pt;}
.x37{left:163.948605pt;}
.x20{left:167.665254pt;}
.x68{left:168.755096pt;}
.xb{left:170.906655pt;}
.x38{left:177.973649pt;}
.x1f{left:183.760722pt;}
.x24{left:188.402046pt;}
.x1e{left:190.711657pt;}
.x57{left:193.444456pt;}
.x4{left:199.066655pt;}
.x62{left:204.363193pt;}
.x35{left:205.596001pt;}
.x25{left:218.084443pt;}
.x36{left:219.460153pt;}
.x27{left:221.117898pt;}
.x47{left:222.798018pt;}
.x46{left:226.007468pt;}
.x52{left:229.539366pt;}
.x48{left:233.979328pt;}
.x49{left:235.376986pt;}
.x26{left:240.230215pt;}
.x5{left:242.626655pt;}
.x7{left:245.346655pt;}
.x22{left:251.949588pt;}
.x30{left:254.153889pt;}
.x31{left:255.794200pt;}
.x23{left:257.386575pt;}
.x64{left:261.901301pt;}
.x63{left:267.544264pt;}
.x65{left:269.519723pt;}
.x39{left:271.541962pt;}
.x42{left:276.732899pt;}
.x32{left:278.829177pt;}
.x53{left:280.878383pt;}
.x54{left:285.224191pt;}
.x6{left:287.906655pt;}
.x55{left:292.148190pt;}
.x56{left:293.364117pt;}
.x44{left:297.186667pt;}
.x3f{left:311.983934pt;}
.x1b{left:316.546667pt;}
.x8{left:318.146655pt;}
.x2a{left:320.706667pt;}
.x5e{left:322.626667pt;}
.x40{left:387.180475pt;}
.x28{left:396.893322pt;}
.xd{left:408.893322pt;}
.x50{left:410.013333pt;}
.x1a{left:410.973333pt;}
.x29{left:413.053322pt;}
.x1d{left:419.113601pt;}
.xe{left:425.853322pt;}
.xf{left:428.093322pt;}
.x45{left:434.000000pt;}
.x6d{left:435.293322pt;}
.x11{left:443.133333pt;}
.x41{left:463.604946pt;}
.x6b{left:516.733322pt;}
.x6a{left:519.133322pt;}
.x14{left:530.533333pt;}
.x3e{left:535.193264pt;}
.x6c{left:536.773322pt;}
.x3d{left:550.268466pt;}
.x15{left:572.773333pt;}
.x17{left:657.253333pt;}
}




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