
    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_a257780d241160cc8bf2b014.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.975000;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_639159ad52564b9e74bdcce5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.665000;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_e52b27035f30aa6934a96576.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975000;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_780a5e56a08860b848be555b.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_ac23849248d8aa3386ee7ffa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.703450;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_2667a81b23b43e8b315d3e2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_ac816e1b4fbd1db7e41aea81.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a068b4969ae9e09a6985119a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897000;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_83d931c2642556acd4903911.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c26da676496137b50b38af71.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a134f1b3ca1621a01681d290.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_21b47553f6ca59282b36f5d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1f184e8bd70fcd0fcbb60b88.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.482000;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_8d9901ad4bc9b65ee5d16784.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.429000;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_24147c196f7375ffe32fabab.woff2')format("woff");}.fff{font-family:fff;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ef3d662b3e8845cb8762406d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_98e0ba2f142f411372b7b89f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5e62680376af9005a2b053c1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.521000;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_47c5f63f3d2f184f88135c4c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.715000;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_f78d0d57ea84cae2c165b7df.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_cbf30bc4529f234f541e3f1b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.702000;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_2ebabf8df895a34531ca678e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.862000;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_4a02b7d4ae9134e1eda99388.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.702000;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_2ebabf8df895a34531ca678e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.862000;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_3519ea05117e65ce0b38ea39.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.704474;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_831f3c64a44da2117965ec60.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.918000;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_8a36e5dfd69861489006442f.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_bd2959a59534b9ad0a7d7e38.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.702000;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_2ebabf8df895a34531ca678e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.862000;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_db5c63fce1d60110fe170ba7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v11{vertical-align:-25.308000px;}
.v2{vertical-align:-18.600000px;}
.v4{vertical-align:-16.878000px;}
.va{vertical-align:-14.940000px;}
.v12{vertical-align:-13.596202px;}
.v7{vertical-align:-10.788000px;}
.v6{vertical-align:-8.964000px;}
.vc{vertical-align:-7.806000px;}
.v8{vertical-align:-5.982000px;}
.vd{vertical-align:-4.152000px;}
.vb{vertical-align:-1.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.674000px;}
.v9{vertical-align:8.964000px;}
.v5{vertical-align:10.236000px;}
.v10{vertical-align:15.399900px;}
.v3{vertical-align:21.690000px;}
.vf{vertical-align:22.854000px;}
.ve{vertical-align:39.732000px;}
.lsb{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.000062px;}
.ls77{letter-spacing:0.000213px;}
.ls30{letter-spacing:0.000300px;}
.ls72{letter-spacing:0.000400px;}
.ls57{letter-spacing:0.000412px;}
.ls1b{letter-spacing:0.000564px;}
.ls7c{letter-spacing:0.000780px;}
.ls1d{letter-spacing:0.001409px;}
.ls75{letter-spacing:0.001936px;}
.ls33{letter-spacing:0.002015px;}
.ls4a{letter-spacing:0.002525px;}
.ls32{letter-spacing:0.002727px;}
.ls5e{letter-spacing:0.002800px;}
.ls14{letter-spacing:0.004200px;}
.ls15{letter-spacing:0.004896px;}
.ls35{letter-spacing:0.006993px;}
.ls8a{letter-spacing:0.235857px;}
.ls76{letter-spacing:2.123273px;}
.ls5b{letter-spacing:2.178704px;}
.ls6{letter-spacing:2.984525px;}
.ls1a{letter-spacing:2.985193px;}
.ls6b{letter-spacing:2.986118px;}
.ls3{letter-spacing:2.986307px;}
.ls28{letter-spacing:2.986363px;}
.ls21{letter-spacing:2.988150px;}
.ls86{letter-spacing:2.988209px;}
.ls5{letter-spacing:2.988411px;}
.ls54{letter-spacing:2.988532px;}
.ls7{letter-spacing:2.990525px;}
.ls25{letter-spacing:2.991193px;}
.ls2b{letter-spacing:2.992363px;}
.ls2a{letter-spacing:2.994150px;}
.ls65{letter-spacing:2.994532px;}
.ls4{letter-spacing:5.519440px;}
.ls47{letter-spacing:5.977480px;}
.ls3e{letter-spacing:5.980363px;}
.ls22{letter-spacing:5.982150px;}
.lsc{letter-spacing:6.192734px;}
.ls29{letter-spacing:8.161409px;}
.ls39{letter-spacing:8.167409px;}
.ls60{letter-spacing:9.211002px;}
.ls34{letter-spacing:9.964200px;}
.ls17{letter-spacing:12.912538px;}
.ls18{letter-spacing:12.916200px;}
.ls31{letter-spacing:13.278538px;}
.ls20{letter-spacing:13.284538px;}
.ls6d{letter-spacing:15.726532px;}
.ls3f{letter-spacing:16.116538px;}
.ls42{letter-spacing:16.122538px;}
.ls78{letter-spacing:16.266473px;}
.ls79{letter-spacing:16.270733px;}
.ls11{letter-spacing:16.438290px;}
.ls84{letter-spacing:17.161690px;}
.ls6e{letter-spacing:17.814532px;}
.ls4d{letter-spacing:17.816525px;}
.ls52{letter-spacing:17.882525px;}
.ls53{letter-spacing:17.990525px;}
.ls85{letter-spacing:18.452851px;}
.ls43{letter-spacing:19.106525px;}
.ls41{letter-spacing:19.112525px;}
.ls27{letter-spacing:19.258363px;}
.ls1f{letter-spacing:19.260150px;}
.ls2e{letter-spacing:19.394525px;}
.ls1{letter-spacing:19.604017px;}
.ls2{letter-spacing:19.610177px;}
.ls2f{letter-spacing:19.834363px;}
.ls5f{letter-spacing:19.920532px;}
.ls55{letter-spacing:19.926532px;}
.ls68{letter-spacing:19.952525px;}
.ls83{letter-spacing:20.148532px;}
.ls6c{letter-spacing:20.180525px;}
.ls12{letter-spacing:20.204153px;}
.ls45{letter-spacing:20.796538px;}
.ls82{letter-spacing:20.948525px;}
.lsa{letter-spacing:20.953576px;}
.ls63{letter-spacing:21.212525px;}
.ls5c{letter-spacing:21.280114px;}
.ls10{letter-spacing:21.399665px;}
.ls56{letter-spacing:21.420532px;}
.ls61{letter-spacing:21.804532px;}
.ls8c{letter-spacing:21.992525px;}
.ls69{letter-spacing:21.997421px;}
.ls66{letter-spacing:22.274525px;}
.lsd{letter-spacing:22.322355px;}
.ls26{letter-spacing:22.576363px;}
.ls1e{letter-spacing:22.584150px;}
.ls4f{letter-spacing:22.724525px;}
.ls88{letter-spacing:22.742525px;}
.ls24{letter-spacing:22.910525px;}
.ls87{letter-spacing:23.022532px;}
.ls67{letter-spacing:23.191480px;}
.ls46{letter-spacing:23.245480px;}
.ls3b{letter-spacing:23.372260px;}
.ls44{letter-spacing:23.786525px;}
.ls4e{letter-spacing:23.965409px;}
.ls49{letter-spacing:24.181480px;}
.ls71{letter-spacing:24.567772px;}
.ls51{letter-spacing:24.715480px;}
.ls64{letter-spacing:25.154525px;}
.ls50{letter-spacing:25.472525px;}
.ls7d{letter-spacing:25.514015px;}
.ls7f{letter-spacing:25.562525px;}
.ls1c{letter-spacing:25.580525px;}
.ls81{letter-spacing:25.712525px;}
.ls5d{letter-spacing:25.916525px;}
.ls8{letter-spacing:26.060525px;}
.ls70{letter-spacing:26.238532px;}
.ls3c{letter-spacing:26.361040px;}
.lse{letter-spacing:26.390525px;}
.ls4c{letter-spacing:26.402525px;}
.ls3d{letter-spacing:26.590438px;}
.ls4b{letter-spacing:26.624525px;}
.ls16{letter-spacing:27.992525px;}
.ls13{letter-spacing:28.034525px;}
.ls19{letter-spacing:28.100525px;}
.ls8d{letter-spacing:28.148525px;}
.ls9{letter-spacing:28.352525px;}
.ls7e{letter-spacing:28.496525px;}
.lsf{letter-spacing:29.432525px;}
.ls80{letter-spacing:29.546525px;}
.ls62{letter-spacing:29.636525px;}
.ls6f{letter-spacing:29.700532px;}
.ls89{letter-spacing:29.706532px;}
.ls2d{letter-spacing:29.788363px;}
.ls23{letter-spacing:30.090150px;}
.ls48{letter-spacing:31.927480px;}
.ls2c{letter-spacing:33.908525px;}
.ls8b{letter-spacing:35.522525px;}
.ls6a{letter-spacing:36.190894px;}
.ls0{letter-spacing:36.222603px;}
.ls58{letter-spacing:54.544116px;}
.ls59{letter-spacing:56.728565px;}
.ls37{letter-spacing:59.772538px;}
.ls36{letter-spacing:59.774015px;}
.ls5a{letter-spacing:72.514085px;}
.ls74{letter-spacing:105.656496px;}
.ls7a{letter-spacing:108.462601px;}
.ls3a{letter-spacing:117.358363px;}
.ls73{letter-spacing:149.956236px;}
.ls38{letter-spacing:274.962150px;}
.ls7b{letter-spacing:341.944681px;}
.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;}
}
.ws62{word-spacing:-38.937826px;}
.ws168{word-spacing:-19.092327px;}
.ws43{word-spacing:-16.605662px;}
.wscf{word-spacing:-15.359443px;}
.wse5{word-spacing:-14.111859px;}
.wsd2{word-spacing:-12.122133px;}
.ws135{word-spacing:-11.790020px;}
.wsea{word-spacing:-11.125411px;}
.wse7{word-spacing:-11.108755px;}
.ws157{word-spacing:-8.472786px;}
.wseb{word-spacing:-7.880499px;}
.wse8{word-spacing:-7.868701px;}
.wsba{word-spacing:-6.623136px;}
.wsec{word-spacing:-3.831870px;}
.ws7d{word-spacing:-3.335478px;}
.wsdd{word-spacing:-3.215927px;}
.ws16f{word-spacing:-3.036600px;}
.ws175{word-spacing:-2.976825px;}
.ws14d{word-spacing:-2.917049px;}
.ws23{word-spacing:-2.797498px;}
.ws8c{word-spacing:-2.737722px;}
.wsdc{word-spacing:-2.677947px;}
.ws17d{word-spacing:-2.609222px;}
.wsa2{word-spacing:-2.558396px;}
.wsf5{word-spacing:-2.501626px;}
.ws13c{word-spacing:-2.319293px;}
.ws17{word-spacing:-2.139966px;}
.ws83{word-spacing:-1.960640px;}
.ws118{word-spacing:-1.900864px;}
.ws29{word-spacing:-1.841088px;}
.wsbe{word-spacing:-1.781313px;}
.wsca{word-spacing:-1.721537px;}
.ws37{word-spacing:-1.661762px;}
.wscc{word-spacing:-1.601986px;}
.ws16a{word-spacing:-1.422659px;}
.ws12e{word-spacing:-1.391579px;}
.wsa1{word-spacing:-1.362884px;}
.wsad{word-spacing:-1.303108px;}
.ws155{word-spacing:-1.264262px;}
.wsf7{word-spacing:-1.183557px;}
.ws2c{word-spacing:-1.123781px;}
.ws14f{word-spacing:-1.064006px;}
.ws84{word-spacing:-1.004230px;}
.ws17e{word-spacing:-0.995270px;}
.ws55{word-spacing:-0.944454px;}
.ws183{word-spacing:-0.941472px;}
.wsa3{word-spacing:-0.824903px;}
.ws18{word-spacing:-0.765128px;}
.ws28{word-spacing:-0.705352px;}
.ws184{word-spacing:-0.672480px;}
.ws75{word-spacing:-0.645576px;}
.ws107{word-spacing:-0.526025px;}
.wsa7{word-spacing:-0.466250px;}
.ws151{word-spacing:-0.406474px;}
.ws149{word-spacing:-0.403488px;}
.ws52{word-spacing:-0.346698px;}
.ws88{word-spacing:-0.286923px;}
.ws8b{word-spacing:-0.227147px;}
.ws51{word-spacing:-0.167372px;}
.ws0{word-spacing:-0.119552px;}
.wsfa{word-spacing:-0.107596px;}
.ws77{word-spacing:-0.059776px;}
.ws180{word-spacing:-0.053798px;}
.ws110{word-spacing:-0.047820px;}
.ws7a{word-spacing:-0.041843px;}
.wsd1{word-spacing:-0.030545px;}
.ws134{word-spacing:-0.029708px;}
.ws10f{word-spacing:-0.020523px;}
.ws4{word-spacing:-0.005742px;}
.ws5{word-spacing:-0.002434px;}
.ws2{word-spacing:-0.001411px;}
.ws3{word-spacing:0.000000px;}
.ws7b{word-spacing:0.011955px;}
.ws18a{word-spacing:0.026899px;}
.ws105{word-spacing:0.071731px;}
.ws10a{word-spacing:0.131506px;}
.ws153{word-spacing:0.251058px;}
.ws17c{word-spacing:0.295891px;}
.ws3a{word-spacing:0.310833px;}
.ws10d{word-spacing:0.370609px;}
.ws182{word-spacing:0.403488px;}
.wse3{word-spacing:0.430384px;}
.wsfe{word-spacing:0.609711px;}
.wsaa{word-spacing:0.669487px;}
.wsd6{word-spacing:0.672480px;}
.ws12f{word-spacing:0.712527px;}
.ws14b{word-spacing:0.726278px;}
.wscd{word-spacing:0.729262px;}
.wsbd{word-spacing:0.789038px;}
.ws10b{word-spacing:0.848814px;}
.ws4b{word-spacing:0.908589px;}
.ws3d{word-spacing:0.968365px;}
.ws6c{word-spacing:1.028140px;}
.ws8d{word-spacing:1.087916px;}
.ws140{word-spacing:1.147692px;}
.ws14e{word-spacing:1.207467px;}
.ws13e{word-spacing:1.267243px;}
.ws36{word-spacing:1.327018px;}
.ws35{word-spacing:1.386794px;}
.ws14c{word-spacing:1.425658px;}
.ws53{word-spacing:1.446570px;}
.ws47{word-spacing:1.506345px;}
.wsd7{word-spacing:1.533254px;}
.ws40{word-spacing:1.566121px;}
.wsa8{word-spacing:1.605477px;}
.wsa9{word-spacing:1.625896px;}
.ws12c{word-spacing:1.685672px;}
.ws5d{word-spacing:1.745448px;}
.ws146{word-spacing:1.802246px;}
.ws3c{word-spacing:1.864999px;}
.ws119{word-spacing:1.924774px;}
.wsdb{word-spacing:1.984550px;}
.ws127{word-spacing:2.044326px;}
.wsc7{word-spacing:2.104101px;}
.ws1d{word-spacing:2.163877px;}
.ws69{word-spacing:2.223652px;}
.ws139{word-spacing:2.232634px;}
.ws24{word-spacing:2.283428px;}
.ws138{word-spacing:2.342725px;}
.ws42{word-spacing:2.343204px;}
.ws90{word-spacing:2.402979px;}
.ws2a{word-spacing:2.462755px;}
.ws79{word-spacing:2.522530px;}
.ws50{word-spacing:2.642082px;}
.ws106{word-spacing:2.660396px;}
.ws27{word-spacing:2.701857px;}
.ws39{word-spacing:2.761633px;}
.ws18b{word-spacing:2.770618px;}
.ws38{word-spacing:2.816633px;}
.ws4a{word-spacing:2.821408px;}
.ws1b{word-spacing:2.881184px;}
.wsc2{word-spacing:2.902672px;}
.wsc5{word-spacing:2.940960px;}
.ws187{word-spacing:2.985811px;}
.ws72{word-spacing:3.000735px;}
.wsce{word-spacing:3.039610px;}
.wsb0{word-spacing:3.060511px;}
.ws186{word-spacing:3.068502px;}
.wsa6{word-spacing:3.093408px;}
.ws3e{word-spacing:3.120286px;}
.ws126{word-spacing:3.239838px;}
.wsc9{word-spacing:3.297690px;}
.ws167{word-spacing:3.297714px;}
.ws13{word-spacing:3.299613px;}
.wsc8{word-spacing:3.317277px;}
.ws129{word-spacing:3.321477px;}
.ws169{word-spacing:3.350014px;}
.ws1f{word-spacing:3.359389px;}
.wsa4{word-spacing:3.419164px;}
.wsed{word-spacing:3.469997px;}
.ws6f{word-spacing:3.478940px;}
.ws6e{word-spacing:3.538716px;}
.ws2b{word-spacing:3.598491px;}
.wsee{word-spacing:3.631392px;}
.wsfb{word-spacing:3.658267px;}
.ws166{word-spacing:3.718042px;}
.ws14a{word-spacing:3.738989px;}
.ws4c{word-spacing:3.777818px;}
.wsef{word-spacing:3.789403px;}
.wsaf{word-spacing:3.795403px;}
.ws9e{word-spacing:3.801728px;}
.ws49{word-spacing:3.837594px;}
.ws6d{word-spacing:3.897369px;}
.wse{word-spacing:3.957145px;}
.ws25{word-spacing:4.016920px;}
.ws10{word-spacing:4.136472px;}
.ws174{word-spacing:4.153681px;}
.ws176{word-spacing:4.153804px;}
.ws1e{word-spacing:4.196247px;}
.ws108{word-spacing:4.254746px;}
.wse1{word-spacing:4.256023px;}
.ws32{word-spacing:4.315798px;}
.wsbf{word-spacing:4.371703px;}
.wsc0{word-spacing:4.375574px;}
.ws6a{word-spacing:4.435350px;}
.ws20{word-spacing:4.483200px;}
.wsf{word-spacing:4.495125px;}
.ws17a{word-spacing:4.517526px;}
.ws30{word-spacing:4.554901px;}
.ws1a{word-spacing:4.614676px;}
.ws148{word-spacing:4.653562px;}
.wsd8{word-spacing:4.674452px;}
.wsde{word-spacing:4.734228px;}
.ws4f{word-spacing:4.794003px;}
.wsbb{word-spacing:4.853779px;}
.wse2{word-spacing:4.913554px;}
.ws178{word-spacing:4.926008px;}
.ws125{word-spacing:4.973330px;}
.ws48{word-spacing:5.033106px;}
.ws66{word-spacing:5.092881px;}
.wsf1{word-spacing:5.152657px;}
.ws188{word-spacing:5.191546px;}
.wsac{word-spacing:5.212432px;}
.wsf8{word-spacing:5.331984px;}
.ws185{word-spacing:5.352941px;}
.ws44{word-spacing:5.391759px;}
.ws122{word-spacing:5.451535px;}
.ws9f{word-spacing:5.511310px;}
.ws100{word-spacing:5.571086px;}
.ws109{word-spacing:5.630862px;}
.ws13d{word-spacing:5.690637px;}
.wsda{word-spacing:5.750413px;}
.wsd9{word-spacing:5.810188px;}
.wsc1{word-spacing:5.869964px;}
.ws13a{word-spacing:5.890925px;}
.ws10c{word-spacing:5.929740px;}
.ws76{word-spacing:5.989515px;}
.ws3b{word-spacing:6.049291px;}
.ws54{word-spacing:6.109066px;}
.ws170{word-spacing:6.168842px;}
.wsbc{word-spacing:6.288393px;}
.wsdf{word-spacing:6.348169px;}
.ws132{word-spacing:6.407944px;}
.ws1c{word-spacing:6.467720px;}
.wsa0{word-spacing:6.527496px;}
.wsc6{word-spacing:6.587271px;}
.ws143{word-spacing:6.647047px;}
.ws150{word-spacing:6.706822px;}
.ws95{word-spacing:6.766598px;}
.ws3f{word-spacing:6.826374px;}
.ws18d{word-spacing:6.859296px;}
.ws112{word-spacing:6.886149px;}
.ws123{word-spacing:6.945925px;}
.wsa5{word-spacing:7.005700px;}
.ws70{word-spacing:7.065476px;}
.ws2e{word-spacing:7.125252px;}
.ws8a{word-spacing:7.185027px;}
.ws104{word-spacing:7.244803px;}
.ws6b{word-spacing:7.304578px;}
.ws2f{word-spacing:7.364354px;}
.ws152{word-spacing:7.424130px;}
.ws82{word-spacing:7.483905px;}
.wsb9{word-spacing:7.518773px;}
.wsb8{word-spacing:7.524333px;}
.ws19{word-spacing:7.543681px;}
.ws56{word-spacing:7.603456px;}
.ws145{word-spacing:7.612474px;}
.wse0{word-spacing:7.663232px;}
.ws12{word-spacing:7.723008px;}
.ws12d{word-spacing:7.842559px;}
.ws131{word-spacing:7.881466px;}
.ws103{word-spacing:7.902334px;}
.ws9b{word-spacing:7.962110px;}
.ws9d{word-spacing:8.021886px;}
.ws11{word-spacing:8.141437px;}
.ws17f{word-spacing:8.150458px;}
.ws11c{word-spacing:8.201212px;}
.ws12b{word-spacing:8.260988px;}
.ws78{word-spacing:8.320764px;}
.ws64{word-spacing:8.380539px;}
.ws61{word-spacing:8.440315px;}
.ws73{word-spacing:8.500090px;}
.ws21{word-spacing:8.559866px;}
.ws171{word-spacing:8.619642px;}
.ws97{word-spacing:8.679417px;}
.ws26{word-spacing:8.739193px;}
.ws74{word-spacing:8.798968px;}
.wsb3{word-spacing:8.858744px;}
.wse4{word-spacing:8.918520px;}
.ws141{word-spacing:8.978295px;}
.ws71{word-spacing:9.038071px;}
.wscb{word-spacing:9.157622px;}
.ws22{word-spacing:9.217398px;}
.ws142{word-spacing:9.277173px;}
.ws181{word-spacing:9.280224px;}
.ws33{word-spacing:9.336949px;}
.ws114{word-spacing:9.396724px;}
.ws18c{word-spacing:9.441619px;}
.ws80{word-spacing:9.695602px;}
.ws96{word-spacing:9.755378px;}
.ws4e{word-spacing:9.815154px;}
.ws4d{word-spacing:9.874929px;}
.wsae{word-spacing:9.934705px;}
.ws98{word-spacing:9.994480px;}
.wsab{word-spacing:10.018391px;}
.wsf0{word-spacing:10.054256px;}
.ws154{word-spacing:10.114032px;}
.ws8f{word-spacing:10.173807px;}
.ws9a{word-spacing:10.233583px;}
.ws161{word-spacing:10.472685px;}
.ws41{word-spacing:10.532461px;}
.wsb7{word-spacing:10.711788px;}
.ws92{word-spacing:10.771563px;}
.wsb4{word-spacing:10.831339px;}
.ws15{word-spacing:10.891114px;}
.ws144{word-spacing:10.950890px;}
.wsf9{word-spacing:11.010666px;}
.ws31{word-spacing:11.070441px;}
.ws91{word-spacing:11.189992px;}
.ws68{word-spacing:11.309544px;}
.wsf4{word-spacing:11.369319px;}
.ws130{word-spacing:11.378362px;}
.ws160{word-spacing:11.488870px;}
.wsb5{word-spacing:11.787748px;}
.ws111{word-spacing:11.847524px;}
.ws120{word-spacing:11.907300px;}
.ws113{word-spacing:11.967075px;}
.ws189{word-spacing:11.970144px;}
.ws11e{word-spacing:12.086626px;}
.wsfc{word-spacing:12.146402px;}
.ws57{word-spacing:12.206178px;}
.ws34{word-spacing:12.265953px;}
.ws163{word-spacing:12.325729px;}
.ws16{word-spacing:12.445280px;}
.ws15f{word-spacing:12.684382px;}
.ws81{word-spacing:12.803934px;}
.ws11d{word-spacing:12.923485px;}
.ws16b{word-spacing:13.102812px;}
.ws13f{word-spacing:13.162587px;}
.ws12a{word-spacing:13.222363px;}
.ws124{word-spacing:13.341914px;}
.ws15e{word-spacing:13.401690px;}
.ws11a{word-spacing:13.530298px;}
.ws173{word-spacing:13.939670px;}
.ws60{word-spacing:14.238548px;}
.ws5e{word-spacing:14.298324px;}
.ws89{word-spacing:14.358099px;}
.wsf6{word-spacing:14.579366px;}
.ws2d{word-spacing:14.597202px;}
.ws165{word-spacing:14.656977px;}
.ws58{word-spacing:15.254733px;}
.ws5b{word-spacing:15.374284px;}
.ws59{word-spacing:15.673162px;}
.ws121{word-spacing:15.912265px;}
.ws10e{word-spacing:16.013736px;}
.ws116{word-spacing:16.569796px;}
.ws117{word-spacing:16.629572px;}
.ws7{word-spacing:16.689348px;}
.ws11b{word-spacing:16.868674px;}
.ws87{word-spacing:17.227328px;}
.ws16e{word-spacing:17.287104px;}
.ws85{word-spacing:17.398114px;}
.ws7c{word-spacing:17.399408px;}
.ws94{word-spacing:17.404114px;}
.ws93{word-spacing:17.405408px;}
.ws11f{word-spacing:17.466430px;}
.ws162{word-spacing:17.645757px;}
.ws164{word-spacing:17.825084px;}
.ws115{word-spacing:18.801825px;}
.wsff{word-spacing:18.889090px;}
.ws16c{word-spacing:19.020596px;}
.ws172{word-spacing:19.199923px;}
.ws8e{word-spacing:19.544531px;}
.ws147{word-spacing:19.888694px;}
.ws128{word-spacing:20.505825px;}
.ws15d{word-spacing:20.754088px;}
.wsc3{word-spacing:20.921460px;}
.ws15b{word-spacing:21.384864px;}
.ws9{word-spacing:22.009376px;}
.wsc4{word-spacing:22.457208px;}
.wsb6{word-spacing:23.009971px;}
.wsf2{word-spacing:23.013606px;}
.ws15c{word-spacing:23.204888px;}
.ws45{word-spacing:23.252708px;}
.ws101{word-spacing:23.372260px;}
.wsc{word-spacing:23.862420px;}
.wsfd{word-spacing:23.910240px;}
.wsd{word-spacing:23.922195px;}
.ws13b{word-spacing:24.226694px;}
.ws7f{word-spacing:24.250114px;}
.ws16d{word-spacing:24.340624px;}
.wsa{word-spacing:24.400400px;}
.ws67{word-spacing:24.641208px;}
.wsf3{word-spacing:24.731208px;}
.ws46{word-spacing:24.947208px;}
.ws102{word-spacing:25.109208px;}
.ws8{word-spacing:25.655688px;}
.wsb{word-spacing:25.775239px;}
.wsb1{word-spacing:26.361040px;}
.ws14{word-spacing:27.487116px;}
.ws9c{word-spacing:27.551208px;}
.ws65{word-spacing:27.947208px;}
.ws63{word-spacing:27.953208px;}
.wsb2{word-spacing:28.379208px;}
.ws99{word-spacing:30.712114px;}
.ws1{word-spacing:33.115849px;}
.ws6{word-spacing:33.250974px;}
.ws5f{word-spacing:33.803208px;}
.ws5c{word-spacing:34.907208px;}
.ws5a{word-spacing:35.213208px;}
.ws159{word-spacing:35.363794px;}
.ws158{word-spacing:35.663716px;}
.ws15a{word-spacing:35.863990px;}
.ws137{word-spacing:39.138791px;}
.wsd5{word-spacing:40.241293px;}
.wsd4{word-spacing:47.528536px;}
.ws136{word-spacing:63.855855px;}
.ws177{word-spacing:71.563348px;}
.wsd3{word-spacing:72.929792px;}
.ws17b{word-spacing:82.822637px;}
.ws179{word-spacing:89.870227px;}
.ws86{word-spacing:155.638114px;}
.wsd0{word-spacing:161.513990px;}
.ws156{word-spacing:185.028003px;}
.wse6{word-spacing:205.347553px;}
.wse9{word-spacing:205.391032px;}
.ws7e{word-spacing:225.976114px;}
.ws133{word-spacing:542.065150px;}
._13{margin-left:-40.384666px;}
._1b{margin-left:-34.311194px;}
._19{margin-left:-32.111677px;}
._e{margin-left:-30.425792px;}
._d{margin-left:-29.349808px;}
._12{margin-left:-28.230968px;}
._32{margin-left:-27.174169px;}
._15{margin-left:-25.392739px;}
._11{margin-left:-23.312455px;}
._41{margin-left:-22.296263px;}
._2a{margin-left:-20.926234px;}
._37{margin-left:-19.235822px;}
._7{margin-left:-17.514239px;}
._4{margin-left:-8.368626px;}
._17{margin-left:-6.993745px;}
._b{margin-left:-5.738472px;}
._9{margin-left:-4.305262px;}
._0{margin-left:-2.391036px;}
._5{margin-left:-1.194101px;}
._f{width:1.016173px;}
._2{width:2.391036px;}
._14{width:3.465586px;}
._a{width:5.507632px;}
._6{width:6.834787px;}
._8{width:8.477658px;}
._1f{width:9.982525px;}
._3{width:13.315760px;}
._2c{width:15.001666px;}
._1{width:16.611685px;}
._16{width:17.949577px;}
._2b{width:19.606409px;}
._39{width:21.160588px;}
._1c{width:22.894055px;}
._1a{width:24.813048px;}
._c{width:26.106033px;}
._33{width:27.287298px;}
._1d{width:29.059078px;}
._38{width:33.534124px;}
._45{width:36.813633px;}
._10{width:43.397074px;}
._18{width:53.798400px;}
._28{width:63.724758px;}
._26{width:66.676095px;}
._1e{width:68.741940px;}
._29{width:71.868802px;}
._27{width:74.748790px;}
._25{width:76.900475px;}
._24{width:79.112409px;}
._23{width:91.330541px;}
._3f{width:106.356334px;}
._3c{width:147.608671px;}
._3e{width:161.741416px;}
._42{width:193.225661px;}
._43{width:200.023404px;}
._44{width:210.920676px;}
._2e{width:216.060095px;}
._2f{width:225.184826px;}
._30{width:239.468093px;}
._3b{width:244.246090px;}
._31{width:246.772840px;}
._35{width:254.483603px;}
._36{width:259.222746px;}
._21{width:358.313398px;}
._2d{width:429.096197px;}
._3d{width:456.407030px;}
._40{width:464.727805px;}
._22{width:486.206975px;}
._3a{width:560.007218px;}
._20{width:568.403400px;}
._34{width:578.249400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fs18{font-size:19.594879px;}
.fsb{font-size:21.818094px;}
.fs17{font-size:23.993729px;}
.fs12{font-size:27.813527px;}
.fs15{font-size:27.992684px;}
.fs14{font-size:29.708388px;}
.fs7{font-size:29.887800px;}
.fsa{font-size:30.545244px;}
.fse{font-size:31.474805px;}
.fs11{font-size:31.521998px;}
.fs16{font-size:33.891143px;}
.fs4{font-size:35.865600px;}
.fsc{font-size:37.029182px;}
.fsf{font-size:37.084703px;}
.fs3{font-size:41.842800px;}
.fs13{font-size:42.440676px;}
.fs9{font-size:43.636188px;}
.fsd{font-size:44.435019px;}
.fs10{font-size:44.501644px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs6{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.y177{bottom:3.913520px;}
.ydc{bottom:5.048781px;}
.ye7{bottom:5.509251px;}
.y176{bottom:12.386346px;}
.ydb{bottom:16.256775px;}
.ye6{bottom:16.734050px;}
.ydd{bottom:39.300720px;}
.y178{bottom:39.329223px;}
.ye8{bottom:39.845767px;}
.y38{bottom:61.467000px;}
.yde{bottom:72.263305px;}
.ye9{bottom:72.957109px;}
.y179{bottom:83.317727px;}
.ydf{bottom:105.225890px;}
.yea{bottom:106.068451px;}
.y89{bottom:106.297500px;}
.y29{bottom:106.299000px;}
.y11b{bottom:110.518500px;}
.y9e{bottom:111.231000px;}
.yd9{bottom:111.673500px;}
.y37{bottom:114.136500px;}
.y17d{bottom:121.132966px;}
.y204{bottom:122.737500px;}
.y28{bottom:124.231500px;}
.y162{bottom:125.221500px;}
.y17a{bottom:127.306230px;}
.y12c{bottom:127.669500px;}
.y88{bottom:128.713500px;}
.ye4{bottom:130.121295px;}
.yef{bottom:131.067352px;}
.y36{bottom:132.069000px;}
.y119{bottom:137.794500px;}
.ye0{bottom:138.221590px;}
.y203{bottom:139.176000px;}
.yeb{bottom:139.179793px;}
.y161{bottom:139.924500px;}
.y9d{bottom:141.940500px;}
.y27{bottom:142.164000px;}
.yd8{bottom:142.383000px;}
.y12b{bottom:144.108000px;}
.y35{bottom:150.001500px;}
.y1d3{bottom:155.041500px;}
.y202{bottom:155.614500px;}
.y118{bottom:155.727000px;}
.y87{bottom:155.814000px;}
.y15a{bottom:159.600000px;}
.y65{bottom:160.096500px;}
.y26{bottom:160.098000px;}
.y17e{bottom:163.071761px;}
.y160{bottom:164.532000px;}
.y34{bottom:167.934000px;}
.ye1{bottom:171.184175px;}
.y17b{bottom:171.294734px;}
.yec{bottom:172.291135px;}
.y1d2{bottom:172.974000px;}
.y117{bottom:173.659500px;}
.y86{bottom:173.748000px;}
.y12a{bottom:174.817500px;}
.y18d{bottom:176.373000px;}
.yf0{bottom:177.224671px;}
.y159{bottom:177.532500px;}
.y1a9{bottom:178.029000px;}
.y25{bottom:178.030500px;}
.y17f{bottom:178.218129px;}
.y15f{bottom:180.969000px;}
.y201{bottom:181.509000px;}
.y33{bottom:185.868000px;}
.y129{bottom:189.013500px;}
.yf1{bottom:189.508870px;}
.y1d1{bottom:190.906500px;}
.y116{bottom:191.592000px;}
.y85{bottom:191.680500px;}
.y180{bottom:192.989228px;}
.y158{bottom:195.465000px;}
.y24{bottom:195.963000px;}
.y15e{bottom:197.407500px;}
.y200{bottom:197.947500px;}
.y32{bottom:203.800500px;}
.yf2{bottom:204.044750px;}
.ye2{bottom:204.146760px;}
.yed{bottom:205.402477px;}
.y181{bottom:207.785402px;}
.y1d0{bottom:208.839000px;}
.y1a8{bottom:209.295000px;}
.y115{bottom:209.526000px;}
.y84{bottom:209.613000px;}
.y157{bottom:213.397500px;}
.y23{bottom:213.895500px;}
.y1ff{bottom:214.386000px;}
.y17c{bottom:215.283238px;}
.yf3{bottom:218.580629px;}
.y31{bottom:221.733000px;}
.y182{bottom:222.556500px;}
.y18c{bottom:224.023500px;}
.y1cf{bottom:226.771500px;}
.y1a7{bottom:227.227500px;}
.y114{bottom:227.458500px;}
.y83{bottom:227.545500px;}
.y15d{bottom:228.118500px;}
.y1fe{bottom:230.824500px;}
.y156{bottom:231.330000px;}
.y22{bottom:231.828000px;}
.yf4{bottom:233.083559px;}
.ye3{bottom:237.109344px;}
.yee{bottom:238.513819px;}
.y30{bottom:239.665500px;}
.y18b{bottom:241.956000px;}
.y1ce{bottom:244.704000px;}
.y1a6{bottom:245.160000px;}
.y113{bottom:245.391000px;}
.y1fd{bottom:247.261500px;}
.y155{bottom:249.264000px;}
.y21{bottom:249.760500px;}
.y169{bottom:249.762000px;}
.y82{bottom:253.965000px;}
.y2f{bottom:257.598000px;}
.y18a{bottom:259.890000px;}
.y1a5{bottom:263.092500px;}
.y112{bottom:263.323500px;}
.y154{bottom:267.196500px;}
.y64{bottom:267.693000px;}
.y20{bottom:267.694500px;}
.y81{bottom:272.047500px;}
.y1fc{bottom:273.156000px;}
.y1cd{bottom:275.514000px;}
.y2e{bottom:275.532000px;}
.y108{bottom:277.023000px;}
.y189{bottom:277.822500px;}
.y1a4{bottom:281.026500px;}
.y111{bottom:281.256000px;}
.y153{bottom:285.129000px;}
.y63{bottom:285.627000px;}
.y1fb{bottom:289.594500px;}
.y1cc{bottom:293.446500px;}
.y2d{bottom:293.464500px;}
.yff{bottom:295.302000px;}
.y188{bottom:295.755000px;}
.y80{bottom:298.168500px;}
.y11a{bottom:299.188500px;}
.y110{bottom:299.190000px;}
.y1f{bottom:301.306500px;}
.y152{bottom:303.061500px;}
.y62{bottom:303.559500px;}
.y168{bottom:305.890500px;}
.y1fa{bottom:306.033000px;}
.y107{bottom:307.734000px;}
.y1cb{bottom:311.379000px;}
.y2c{bottom:311.397000px;}
.y1a3{bottom:312.291000px;}
.y187{bottom:313.687500px;}
.y7f{bottom:316.101000px;}
.y10f{bottom:317.122500px;}
.y151{bottom:320.994000px;}
.y61{bottom:321.492000px;}
.y167{bottom:322.329000px;}
.y1f9{bottom:322.471500px;}
.y1ca{bottom:329.313000px;}
.y2b{bottom:329.329500px;}
.y1a2{bottom:330.223500px;}
.y186{bottom:331.620000px;}
.y7e{bottom:334.035000px;}
.y10e{bottom:335.055000px;}
.y166{bottom:338.767500px;}
.y150{bottom:338.926500px;}
.y60{bottom:339.424500px;}
.y1c9{bottom:347.245500px;}
.y2a{bottom:347.262000px;}
.y1a1{bottom:348.156000px;}
.y1f8{bottom:348.366000px;}
.y185{bottom:349.552500px;}
.y7d{bottom:351.967500px;}
.y10d{bottom:352.987500px;}
.y165{bottom:355.206000px;}
.y14f{bottom:356.860500px;}
.y5f{bottom:357.357000px;}
.y9c{bottom:363.495000px;}
.y1f7{bottom:364.804500px;}
.y1a0{bottom:366.088500px;}
.y7c{bottom:369.900000px;}
.y10c{bottom:370.920000px;}
.y164{bottom:371.644500px;}
.y14e{bottom:374.793000px;}
.y5e{bottom:375.289500px;}
.y126{bottom:375.291000px;}
.y1c8{bottom:378.054000px;}
.y1f6{bottom:381.243000px;}
.y1e{bottom:382.966500px;}
.y19f{bottom:384.022500px;}
.y7b{bottom:387.832500px;}
.y163{bottom:388.083000px;}
.yc7{bottom:390.879000px;}
.yd7{bottom:391.105500px;}
.y14d{bottom:392.725500px;}
.y184{bottom:392.730000px;}
.y5d{bottom:393.223500px;}
.y1c7{bottom:395.986500px;}
.y1f5{bottom:397.681500px;}
.y1d{bottom:400.899000px;}
.y7a{bottom:405.765000px;}
.yc6{bottom:408.811500px;}
.yd6{bottom:409.038000px;}
.y183{bottom:409.168500px;}
.y14c{bottom:410.658000px;}
.y5c{bottom:411.156000px;}
.y10b{bottom:411.717000px;}
.y1c6{bottom:413.920500px;}
.y1f4{bottom:414.120000px;}
.y19e{bottom:415.287000px;}
.y1c{bottom:418.833000px;}
.y79{bottom:423.697500px;}
.yc5{bottom:426.744000px;}
.yd5{bottom:426.970500px;}
.y14b{bottom:428.590500px;}
.yb7{bottom:429.088500px;}
.y1f3{bottom:430.558500px;}
.y1c5{bottom:431.853000px;}
.y19d{bottom:433.219500px;}
.y175{bottom:435.619500px;}
.y1b{bottom:436.765500px;}
.y78{bottom:441.631500px;}
.y10a{bottom:442.428000px;}
.yc4{bottom:444.676500px;}
.yd4{bottom:444.903000px;}
.y5b{bottom:446.200500px;}
.y14a{bottom:446.524500px;}
.yb6{bottom:447.021000px;}
.y1c4{bottom:449.785500px;}
.y19c{bottom:451.152000px;}
.y1a{bottom:454.698000px;}
.y1f2{bottom:456.453000px;}
.y77{bottom:459.564000px;}
.yc3{bottom:462.609000px;}
.yd3{bottom:462.837000px;}
.y149{bottom:464.457000px;}
.yb5{bottom:464.953500px;}
.y15c{bottom:464.964000px;}
.y1c3{bottom:467.718000px;}
.y19b{bottom:469.084500px;}
.y128{bottom:470.832000px;}
.y19{bottom:472.630500px;}
.y1f1{bottom:472.891500px;}
.y76{bottom:477.496500px;}
.yc2{bottom:480.543000px;}
.yd2{bottom:480.769500px;}
.y148{bottom:482.389500px;}
.yb4{bottom:482.886000px;}
.y125{bottom:482.887500px;}
.y127{bottom:485.029500px;}
.y19a{bottom:487.018500px;}
.y1f0{bottom:489.328500px;}
.y18{bottom:490.563000px;}
.y16b{bottom:492.952500px;}
.y5a{bottom:496.236000px;}
.yc1{bottom:498.475500px;}
.y1c2{bottom:498.528000px;}
.yd1{bottom:498.702000px;}
.y147{bottom:500.322000px;}
.yb3{bottom:500.820000px;}
.y75{bottom:504.597000px;}
.y1ef{bottom:505.767000px;}
.y17{bottom:508.495500px;}
.y16a{bottom:509.391000px;}
.y59{bottom:514.168500px;}
.y1c1{bottom:516.460500px;}
.yd0{bottom:516.634500px;}
.y199{bottom:518.283000px;}
.yb2{bottom:518.752500px;}
.y16{bottom:526.429500px;}
.y146{bottom:528.468000px;}
.y1ee{bottom:531.661500px;}
.y74{bottom:531.697500px;}
.y58{bottom:532.101000px;}
.y1c0{bottom:534.393000px;}
.ycf{bottom:534.567000px;}
.y198{bottom:536.215500px;}
.yb1{bottom:536.685000px;}
.y15{bottom:544.362000px;}
.y145{bottom:546.400500px;}
.yc0{bottom:547.641000px;}
.y1ed{bottom:548.100000px;}
.y73{bottom:549.630000px;}
.y57{bottom:550.033500px;}
.y9b{bottom:551.250000px;}
.y1bf{bottom:552.325500px;}
.yce{bottom:552.499500px;}
.y197{bottom:554.148000px;}
.yb0{bottom:554.617500px;}
.y14{bottom:562.294500px;}
.ybf{bottom:564.079500px;}
.y144{bottom:564.333000px;}
.y1ec{bottom:564.538500px;}
.y72{bottom:567.562500px;}
.y56{bottom:567.966000px;}
.y9a{bottom:569.184000px;}
.y1be{bottom:570.258000px;}
.ycd{bottom:570.433500px;}
.y196{bottom:572.082000px;}
.yaf{bottom:572.550000px;}
.y13{bottom:580.227000px;}
.ybe{bottom:580.518000px;}
.y1eb{bottom:580.977000px;}
.y143{bottom:582.265500px;}
.y106{bottom:583.035000px;}
.y71{bottom:585.496500px;}
.y55{bottom:585.900000px;}
.y99{bottom:587.116500px;}
.y1bd{bottom:588.192000px;}
.ycc{bottom:588.366000px;}
.yfe{bottom:588.373500px;}
.yae{bottom:590.482500px;}
.y124{bottom:590.484000px;}
.y12{bottom:598.159500px;}
.y142{bottom:600.199500px;}
.y105{bottom:600.967500px;}
.y70{bottom:603.429000px;}
.y54{bottom:603.832500px;}
.y98{bottom:605.049000px;}
.y195{bottom:605.454000px;}
.y1bc{bottom:606.124500px;}
.ycb{bottom:606.298500px;}
.yfd{bottom:606.306000px;}
.y1ea{bottom:606.871500px;}
.yad{bottom:608.416500px;}
.ybd{bottom:612.073650px;}
.y11{bottom:616.092000px;}
.y141{bottom:618.132000px;}
.y104{bottom:618.900000px;}
.y6f{bottom:621.361500px;}
.y53{bottom:621.765000px;}
.y97{bottom:622.981500px;}
.y1e9{bottom:623.310000px;}
.yca{bottom:624.231000px;}
.yfc{bottom:624.238500px;}
.yac{bottom:626.349000px;}
.ybc{bottom:629.092140px;}
.y10{bottom:634.026000px;}
.y140{bottom:636.064500px;}
.y103{bottom:636.834000px;}
.y1bb{bottom:636.933000px;}
.y6e{bottom:639.294000px;}
.y52{bottom:639.697500px;}
.y1e8{bottom:639.747000px;}
.y96{bottom:640.914000px;}
.yc9{bottom:642.163500px;}
.yfb{bottom:642.172500px;}
.yab{bottom:644.281500px;}
.ybb{bottom:646.109535px;}
.y194{bottom:650.721000px;}
.yf{bottom:651.958500px;}
.y13f{bottom:653.997000px;}
.y102{bottom:654.766500px;}
.y1ba{bottom:654.865500px;}
.y1e7{bottom:656.185500px;}
.y6d{bottom:657.226500px;}
.y51{bottom:657.630000px;}
.y95{bottom:658.846500px;}
.yc8{bottom:660.097500px;}
.yfa{bottom:660.105000px;}
.yaa{bottom:662.214000px;}
.yba{bottom:663.128025px;}
.y193{bottom:668.653500px;}
.ye{bottom:669.891000px;}
.y13e{bottom:671.929500px;}
.y101{bottom:672.699000px;}
.y1b9{bottom:672.799500px;}
.y50{bottom:675.562500px;}
.y94{bottom:676.780500px;}
.yf9{bottom:678.037500px;}
.ya9{bottom:680.146500px;}
.y1e6{bottom:682.080000px;}
.y6c{bottom:684.327000px;}
.y192{bottom:686.587500px;}
.yd{bottom:687.823500px;}
.y13d{bottom:689.862000px;}
.y100{bottom:690.631500px;}
.y1b8{bottom:690.732000px;}
.y4f{bottom:693.496500px;}
.y93{bottom:694.713000px;}
.y174{bottom:697.177500px;}
.ya8{bottom:698.080500px;}
.y1e5{bottom:700.014000px;}
.y191{bottom:704.520000px;}
.y15b{bottom:705.739500px;}
.yc{bottom:705.756000px;}
.y13c{bottom:707.796000px;}
.yf8{bottom:708.564000px;}
.y1b7{bottom:708.664500px;}
.y6b{bottom:711.427500px;}
.y4e{bottom:711.429000px;}
.y92{bottom:712.645500px;}
.y173{bottom:715.110000px;}
.y123{bottom:716.013000px;}
.y1e4{bottom:717.946500px;}
.yb9{bottom:718.827000px;}
.y190{bottom:722.452500px;}
.yb{bottom:723.688500px;}
.y13b{bottom:725.728500px;}
.ya7{bottom:726.445500px;}
.y1b6{bottom:726.597000px;}
.y4d{bottom:729.361500px;}
.y91{bottom:730.578000px;}
.y172{bottom:733.042500px;}
.y122{bottom:733.945500px;}
.y1e3{bottom:735.879000px;}
.y18f{bottom:740.385000px;}
.ya{bottom:741.622500px;}
.y13a{bottom:743.661000px;}
.y4c{bottom:747.294000px;}
.y90{bottom:748.510500px;}
.yf7{bottom:749.361000px;}
.yb8{bottom:749.536500px;}
.y171{bottom:750.975000px;}
.y121{bottom:751.878000px;}
.y1b5{bottom:757.407000px;}
.y9{bottom:759.555000px;}
.y139{bottom:761.593500px;}
.y1e2{bottom:763.267500px;}
.y4b{bottom:765.226500px;}
.yf6{bottom:765.799500px;}
.y8f{bottom:766.444500px;}
.ya6{bottom:767.518500px;}
.y170{bottom:768.909000px;}
.y120{bottom:769.810500px;}
.y18e{bottom:773.757000px;}
.y1b4{bottom:775.339500px;}
.y8{bottom:777.487500px;}
.y138{bottom:779.526000px;}
.y1e1{bottom:781.200000px;}
.yf5{bottom:782.238000px;}
.y4a{bottom:783.159000px;}
.y8e{bottom:784.377000px;}
.ya5{bottom:785.451000px;}
.y16f{bottom:786.841500px;}
.y11f{bottom:787.744500px;}
.y1b3{bottom:793.272000px;}
.y1e0{bottom:799.132500px;}
.y6a{bottom:801.091500px;}
.y49{bottom:801.093000px;}
.y8d{bottom:802.309500px;}
.ya4{bottom:803.385000px;}
.y16e{bottom:804.774000px;}
.y11e{bottom:805.677000px;}
.y1b2{bottom:811.204500px;}
.ye5{bottom:812.949000px;}
.y48{bottom:819.025500px;}
.y8c{bottom:820.242000px;}
.ya3{bottom:821.317500px;}
.y1df{bottom:826.522500px;}
.yda{bottom:828.864000px;}
.y1b1{bottom:829.137000px;}
.y137{bottom:831.727500px;}
.y47{bottom:836.958000px;}
.ya2{bottom:839.250000px;}
.y1de{bottom:844.455000px;}
.y1b0{bottom:847.071000px;}
.y8b{bottom:847.873500px;}
.y16d{bottom:847.951500px;}
.y136{bottom:848.166000px;}
.y46{bottom:854.890500px;}
.ya1{bottom:857.182500px;}
.y11d{bottom:857.341500px;}
.y1dd{bottom:862.387500px;}
.y16c{bottom:864.390000px;}
.y135{bottom:864.604500px;}
.y45{bottom:872.823000px;}
.y11c{bottom:873.780000px;}
.y1af{bottom:877.879500px;}
.y1dc{bottom:880.320000px;}
.y134{bottom:881.043000px;}
.y8a{bottom:883.044000px;}
.ya0{bottom:885.549000px;}
.y69{bottom:890.755500px;}
.y44{bottom:890.757000px;}
.y7{bottom:894.886500px;}
.y1ae{bottom:895.812000px;}
.y133{bottom:897.481500px;}
.y6{bottom:899.106000px;}
.y9f{bottom:903.481500px;}
.y1db{bottom:907.710000px;}
.y68{bottom:908.688000px;}
.y43{bottom:908.689500px;}
.y5{bottom:909.084000px;}
.y4{bottom:913.303500px;}
.y1ad{bottom:913.746000px;}
.y1da{bottom:925.642500px;}
.y42{bottom:926.622000px;}
.y132{bottom:929.088345px;}
.y1ac{bottom:931.678500px;}
.y3{bottom:936.037500px;}
.y1d9{bottom:943.575000px;}
.y41{bottom:944.554500px;}
.y131{bottom:946.277445px;}
.y1ab{bottom:949.611000px;}
.y1d8{bottom:961.507500px;}
.y40{bottom:962.487000px;}
.y130{bottom:963.466545px;}
.y1aa{bottom:967.543500px;}
.y3f{bottom:980.419500px;}
.y12f{bottom:980.654580px;}
.y1d7{bottom:988.896000px;}
.y2{bottom:990.880500px;}
.y12e{bottom:997.843680px;}
.y67{bottom:998.352000px;}
.y3e{bottom:998.353500px;}
.y1d6{bottom:1006.828500px;}
.y12d{bottom:1015.031715px;}
.y66{bottom:1016.284500px;}
.y3d{bottom:1016.286000px;}
.y109{bottom:1018.927500px;}
.y1{bottom:1020.769500px;}
.y208{bottom:1022.263500px;}
.y1d5{bottom:1024.762500px;}
.y3c{bottom:1034.218500px;}
.y207{bottom:1038.702000px;}
.y1d4{bottom:1042.695000px;}
.y3b{bottom:1052.151000px;}
.y206{bottom:1055.140500px;}
.y3a{bottom:1070.083500px;}
.y205{bottom:1071.579000px;}
.y39{bottom:1088.016000px;}
.h27{height:13.481277px;}
.h26{height:13.881371px;}
.h1c{height:19.135707px;}
.h24{height:19.258967px;}
.h25{height:23.520453px;}
.h4{height:24.871000px;}
.h1f{height:25.285248px;}
.h17{height:25.476077px;}
.h1a{height:25.514276px;}
.h18{height:30.837903px;}
.h1b{height:30.884141px;}
.h20{height:31.830507px;}
.h14{height:32.727141px;}
.h5{height:35.435065px;}
.hd{height:35.865450px;}
.h6{height:36.317065px;}
.h7{height:36.323065px;}
.h21{height:36.344314px;}
.h22{height:36.348574px;}
.h12{height:40.348800px;}
.h10{height:42.082022px;}
.ha{height:44.831700px;}
.h28{height:44.837700px;}
.h9{height:45.250129px;}
.h8{height:45.671065px;}
.h1d{height:47.744726px;}
.h15{height:49.858800px;}
.hb{height:50.498765px;}
.hc{height:51.105488px;}
.he{height:51.111488px;}
.h1e{height:51.189174px;}
.h3{height:53.072100px;}
.h11{height:55.397700px;}
.hf{height:55.403700px;}
.h13{height:56.439280px;}
.h2{height:90.500713px;}
.h1{height:92.174713px;}
.h23{height:240.541710px;}
.h16{height:257.687325px;}
.h19{height:259.155765px;}
.h0{height:1188.000000px;}
.w3{width:310.376400px;}
.w1{width:361.410525px;}
.w2{width:361.411380px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x56{left:6.513330px;}
.x36{left:8.399850px;}
.x33{left:11.937514px;}
.x35{left:15.045304px;}
.x54{left:16.310729px;}
.x34{left:19.739984px;}
.x31{left:21.360010px;}
.x57{left:69.521863px;}
.x59{left:71.096399px;}
.x58{left:73.545783px;}
.x1{left:85.039500px;}
.x4f{left:88.771365px;}
.x50{left:90.415500px;}
.x30{left:92.601000px;}
.x6{left:101.796000px;}
.x3a{left:104.468448px;}
.x3c{left:106.686908px;}
.x3b{left:110.196873px;}
.xd{left:112.536000px;}
.x47{left:116.658000px;}
.x39{left:121.653343px;}
.x43{left:130.105500px;}
.x19{left:137.446500px;}
.x42{left:143.331000px;}
.x55{left:147.076390px;}
.x7{left:155.617500px;}
.x40{left:167.736000px;}
.x32{left:169.873805px;}
.x2f{left:184.299000px;}
.x2a{left:188.253000px;}
.x9{left:194.167500px;}
.x2{left:195.714000px;}
.x2b{left:196.797000px;}
.x16{left:206.061000px;}
.x18{left:207.291000px;}
.x17{left:208.446000px;}
.x37{left:211.752000px;}
.x49{left:230.149500px;}
.x2c{left:239.469000px;}
.x2e{left:249.655500px;}
.xa{left:278.617500px;}
.x48{left:280.639500px;}
.x4c{left:303.532500px;}
.x41{left:315.778500px;}
.xb{left:323.127000px;}
.x4a{left:326.626500px;}
.x4{left:345.805500px;}
.x3{left:369.628500px;}
.x4b{left:394.270500px;}
.x2d{left:422.239500px;}
.x8{left:448.671000px;}
.x5{left:461.136000px;}
.x38{left:463.981500px;}
.xe{left:473.881500px;}
.x13{left:482.800500px;}
.x5a{left:489.655500px;}
.x12{left:500.968500px;}
.x1f{left:506.343000px;}
.x3e{left:510.790500px;}
.x1b{left:512.473500px;}
.x11{left:518.553000px;}
.x15{left:520.821000px;}
.x28{left:525.676500px;}
.x4e{left:529.384500px;}
.x52{left:530.662500px;}
.x10{left:547.887000px;}
.x22{left:551.703000px;}
.x3d{left:555.784500px;}
.x29{left:557.319000px;}
.x46{left:577.956000px;}
.x1a{left:579.228000px;}
.x25{left:606.604500px;}
.x23{left:613.170000px;}
.x51{left:615.540000px;}
.x1d{left:617.508000px;}
.xc{left:626.151000px;}
.x4d{left:640.549500px;}
.x1c{left:660.349500px;}
.x20{left:664.090500px;}
.x24{left:684.405000px;}
.x26{left:689.158500px;}
.x45{left:728.344500px;}
.x21{left:736.686000px;}
.x5b{left:743.872500px;}
.x44{left:745.851000px;}
.xf{left:750.223500px;}
.x1e{left:784.602000px;}
.x3f{left:785.932500px;}
.x53{left:808.144500px;}
.x14{left:813.865500px;}
.x27{left:821.752500px;}
@media print{
.v11{vertical-align:-22.496000pt;}
.v2{vertical-align:-16.533333pt;}
.v4{vertical-align:-15.002667pt;}
.va{vertical-align:-13.280000pt;}
.v12{vertical-align:-12.085512pt;}
.v7{vertical-align:-9.589333pt;}
.v6{vertical-align:-7.968000pt;}
.vc{vertical-align:-6.938667pt;}
.v8{vertical-align:-5.317333pt;}
.vd{vertical-align:-3.690667pt;}
.vb{vertical-align:-1.626667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.488000pt;}
.v9{vertical-align:7.968000pt;}
.v5{vertical-align:9.098667pt;}
.v10{vertical-align:13.688800pt;}
.v3{vertical-align:19.280000pt;}
.vf{vertical-align:20.314667pt;}
.ve{vertical-align:35.317333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.000055pt;}
.ls77{letter-spacing:0.000189pt;}
.ls30{letter-spacing:0.000267pt;}
.ls72{letter-spacing:0.000356pt;}
.ls57{letter-spacing:0.000366pt;}
.ls1b{letter-spacing:0.000501pt;}
.ls7c{letter-spacing:0.000693pt;}
.ls1d{letter-spacing:0.001253pt;}
.ls75{letter-spacing:0.001721pt;}
.ls33{letter-spacing:0.001791pt;}
.ls4a{letter-spacing:0.002245pt;}
.ls32{letter-spacing:0.002424pt;}
.ls5e{letter-spacing:0.002489pt;}
.ls14{letter-spacing:0.003733pt;}
.ls15{letter-spacing:0.004352pt;}
.ls35{letter-spacing:0.006216pt;}
.ls8a{letter-spacing:0.209650pt;}
.ls76{letter-spacing:1.887354pt;}
.ls5b{letter-spacing:1.936625pt;}
.ls6{letter-spacing:2.652911pt;}
.ls1a{letter-spacing:2.653505pt;}
.ls6b{letter-spacing:2.654327pt;}
.ls3{letter-spacing:2.654495pt;}
.ls28{letter-spacing:2.654545pt;}
.ls21{letter-spacing:2.656133pt;}
.ls86{letter-spacing:2.656186pt;}
.ls5{letter-spacing:2.656365pt;}
.ls54{letter-spacing:2.656473pt;}
.ls7{letter-spacing:2.658245pt;}
.ls25{letter-spacing:2.658838pt;}
.ls2b{letter-spacing:2.659879pt;}
.ls2a{letter-spacing:2.661467pt;}
.ls65{letter-spacing:2.661806pt;}
.ls4{letter-spacing:4.906169pt;}
.ls47{letter-spacing:5.313316pt;}
.ls3e{letter-spacing:5.315879pt;}
.ls22{letter-spacing:5.317467pt;}
.lsc{letter-spacing:5.504653pt;}
.ls29{letter-spacing:7.254586pt;}
.ls39{letter-spacing:7.259919pt;}
.ls60{letter-spacing:8.187558pt;}
.ls34{letter-spacing:8.857067pt;}
.ls17{letter-spacing:11.477812pt;}
.ls18{letter-spacing:11.481067pt;}
.ls31{letter-spacing:11.803145pt;}
.ls20{letter-spacing:11.808479pt;}
.ls6d{letter-spacing:13.979139pt;}
.ls3f{letter-spacing:14.325812pt;}
.ls42{letter-spacing:14.331145pt;}
.ls78{letter-spacing:14.459087pt;}
.ls79{letter-spacing:14.462874pt;}
.ls11{letter-spacing:14.611813pt;}
.ls84{letter-spacing:15.254835pt;}
.ls6e{letter-spacing:15.835139pt;}
.ls4d{letter-spacing:15.836911pt;}
.ls52{letter-spacing:15.895578pt;}
.ls53{letter-spacing:15.991578pt;}
.ls85{letter-spacing:16.402534pt;}
.ls43{letter-spacing:16.983578pt;}
.ls41{letter-spacing:16.988911pt;}
.ls27{letter-spacing:17.118545pt;}
.ls1f{letter-spacing:17.120133pt;}
.ls2e{letter-spacing:17.239578pt;}
.ls1{letter-spacing:17.425793pt;}
.ls2{letter-spacing:17.431269pt;}
.ls2f{letter-spacing:17.630545pt;}
.ls5f{letter-spacing:17.707139pt;}
.ls55{letter-spacing:17.712473pt;}
.ls68{letter-spacing:17.735578pt;}
.ls83{letter-spacing:17.909806pt;}
.ls6c{letter-spacing:17.938245pt;}
.ls12{letter-spacing:17.959247pt;}
.ls45{letter-spacing:18.485812pt;}
.ls82{letter-spacing:18.620911pt;}
.lsa{letter-spacing:18.625401pt;}
.ls63{letter-spacing:18.855578pt;}
.ls5c{letter-spacing:18.915657pt;}
.ls10{letter-spacing:19.021924pt;}
.ls56{letter-spacing:19.040473pt;}
.ls61{letter-spacing:19.381806pt;}
.ls8c{letter-spacing:19.548911pt;}
.ls69{letter-spacing:19.553263pt;}
.ls66{letter-spacing:19.799578pt;}
.lsd{letter-spacing:19.842093pt;}
.ls26{letter-spacing:20.067879pt;}
.ls1e{letter-spacing:20.074800pt;}
.ls4f{letter-spacing:20.199578pt;}
.ls88{letter-spacing:20.215578pt;}
.ls24{letter-spacing:20.364911pt;}
.ls87{letter-spacing:20.464473pt;}
.ls67{letter-spacing:20.614649pt;}
.ls46{letter-spacing:20.662649pt;}
.ls3b{letter-spacing:20.775342pt;}
.ls44{letter-spacing:21.143578pt;}
.ls4e{letter-spacing:21.302586pt;}
.ls49{letter-spacing:21.494649pt;}
.ls71{letter-spacing:21.838019pt;}
.ls51{letter-spacing:21.969316pt;}
.ls64{letter-spacing:22.359578pt;}
.ls50{letter-spacing:22.642245pt;}
.ls7d{letter-spacing:22.679124pt;}
.ls7f{letter-spacing:22.722245pt;}
.ls1c{letter-spacing:22.738245pt;}
.ls81{letter-spacing:22.855578pt;}
.ls5d{letter-spacing:23.036911pt;}
.ls8{letter-spacing:23.164911pt;}
.ls70{letter-spacing:23.323139pt;}
.ls3c{letter-spacing:23.432035pt;}
.lse{letter-spacing:23.458245pt;}
.ls4c{letter-spacing:23.468911pt;}
.ls3d{letter-spacing:23.635945pt;}
.ls4b{letter-spacing:23.666245pt;}
.ls16{letter-spacing:24.882245pt;}
.ls13{letter-spacing:24.919578pt;}
.ls19{letter-spacing:24.978245pt;}
.ls8d{letter-spacing:25.020911pt;}
.ls9{letter-spacing:25.202245pt;}
.ls7e{letter-spacing:25.330245pt;}
.lsf{letter-spacing:26.162245pt;}
.ls80{letter-spacing:26.263578pt;}
.ls62{letter-spacing:26.343578pt;}
.ls6f{letter-spacing:26.400473pt;}
.ls89{letter-spacing:26.405806pt;}
.ls2d{letter-spacing:26.478545pt;}
.ls23{letter-spacing:26.746800pt;}
.ls48{letter-spacing:28.379982pt;}
.ls2c{letter-spacing:30.140911pt;}
.ls8b{letter-spacing:31.575578pt;}
.ls6a{letter-spacing:32.169684pt;}
.ls0{letter-spacing:32.197869pt;}
.ls58{letter-spacing:48.483658pt;}
.ls59{letter-spacing:50.425391pt;}
.ls37{letter-spacing:53.131145pt;}
.ls36{letter-spacing:53.132458pt;}
.ls5a{letter-spacing:64.456965pt;}
.ls74{letter-spacing:93.916886pt;}
.ls7a{letter-spacing:96.411201pt;}
.ls3a{letter-spacing:104.318545pt;}
.ls73{letter-spacing:133.294432pt;}
.ls38{letter-spacing:244.410800pt;}
.ls7b{letter-spacing:303.950827pt;}
.ws62{word-spacing:-34.611401pt;}
.ws168{word-spacing:-16.970957pt;}
.ws43{word-spacing:-14.760588pt;}
.wscf{word-spacing:-13.652838pt;}
.wse5{word-spacing:-12.543875pt;}
.wsd2{word-spacing:-10.775229pt;}
.ws135{word-spacing:-10.480018pt;}
.wsea{word-spacing:-9.889254pt;}
.wse7{word-spacing:-9.874449pt;}
.ws157{word-spacing:-7.531365pt;}
.wseb{word-spacing:-7.004888pt;}
.wse8{word-spacing:-6.994401pt;}
.wsba{word-spacing:-5.887232pt;}
.wsec{word-spacing:-3.406106pt;}
.ws7d{word-spacing:-2.964870pt;}
.wsdd{word-spacing:-2.858602pt;}
.ws16f{word-spacing:-2.699200pt;}
.ws175{word-spacing:-2.646067pt;}
.ws14d{word-spacing:-2.592933pt;}
.ws23{word-spacing:-2.486665pt;}
.ws8c{word-spacing:-2.433531pt;}
.wsdc{word-spacing:-2.380397pt;}
.ws17d{word-spacing:-2.319309pt;}
.wsa2{word-spacing:-2.274129pt;}
.wsf5{word-spacing:-2.223667pt;}
.ws13c{word-spacing:-2.061594pt;}
.ws17{word-spacing:-1.902192pt;}
.ws83{word-spacing:-1.742791pt;}
.ws118{word-spacing:-1.689657pt;}
.ws29{word-spacing:-1.636523pt;}
.wsbe{word-spacing:-1.583389pt;}
.wsca{word-spacing:-1.530255pt;}
.ws37{word-spacing:-1.477121pt;}
.wscc{word-spacing:-1.423988pt;}
.ws16a{word-spacing:-1.264586pt;}
.ws12e{word-spacing:-1.236960pt;}
.wsa1{word-spacing:-1.211452pt;}
.wsad{word-spacing:-1.158318pt;}
.ws155{word-spacing:-1.123789pt;}
.wsf7{word-spacing:-1.052051pt;}
.ws2c{word-spacing:-0.998917pt;}
.ws14f{word-spacing:-0.945783pt;}
.ws84{word-spacing:-0.892649pt;}
.ws17e{word-spacing:-0.884685pt;}
.ws55{word-spacing:-0.839515pt;}
.ws183{word-spacing:-0.836864pt;}
.wsa3{word-spacing:-0.733247pt;}
.ws18{word-spacing:-0.680113pt;}
.ws28{word-spacing:-0.626980pt;}
.ws184{word-spacing:-0.597760pt;}
.ws75{word-spacing:-0.573846pt;}
.ws107{word-spacing:-0.467578pt;}
.wsa7{word-spacing:-0.414444pt;}
.ws151{word-spacing:-0.361310pt;}
.ws149{word-spacing:-0.358656pt;}
.ws52{word-spacing:-0.308176pt;}
.ws88{word-spacing:-0.255043pt;}
.ws8b{word-spacing:-0.201909pt;}
.ws51{word-spacing:-0.148775pt;}
.ws0{word-spacing:-0.106268pt;}
.wsfa{word-spacing:-0.095641pt;}
.ws77{word-spacing:-0.053134pt;}
.ws180{word-spacing:-0.047821pt;}
.ws110{word-spacing:-0.042507pt;}
.ws7a{word-spacing:-0.037194pt;}
.wsd1{word-spacing:-0.027151pt;}
.ws134{word-spacing:-0.026407pt;}
.ws10f{word-spacing:-0.018243pt;}
.ws4{word-spacing:-0.005104pt;}
.ws5{word-spacing:-0.002163pt;}
.ws2{word-spacing:-0.001254pt;}
.ws3{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.010627pt;}
.ws18a{word-spacing:0.023910pt;}
.ws105{word-spacing:0.063761pt;}
.ws10a{word-spacing:0.116895pt;}
.ws153{word-spacing:0.223162pt;}
.ws17c{word-spacing:0.263014pt;}
.ws3a{word-spacing:0.276296pt;}
.ws10d{word-spacing:0.329430pt;}
.ws182{word-spacing:0.358656pt;}
.wse3{word-spacing:0.382564pt;}
.wsfe{word-spacing:0.541965pt;}
.wsaa{word-spacing:0.595099pt;}
.wsd6{word-spacing:0.597760pt;}
.ws12f{word-spacing:0.633357pt;}
.ws14b{word-spacing:0.645581pt;}
.wscd{word-spacing:0.648233pt;}
.wsbd{word-spacing:0.701367pt;}
.ws10b{word-spacing:0.754501pt;}
.ws4b{word-spacing:0.807635pt;}
.ws3d{word-spacing:0.860769pt;}
.ws6c{word-spacing:0.913903pt;}
.ws8d{word-spacing:0.967036pt;}
.ws140{word-spacing:1.020170pt;}
.ws14e{word-spacing:1.073304pt;}
.ws13e{word-spacing:1.126438pt;}
.ws36{word-spacing:1.179572pt;}
.ws35{word-spacing:1.232706pt;}
.ws14c{word-spacing:1.267251pt;}
.ws53{word-spacing:1.285840pt;}
.ws47{word-spacing:1.338973pt;}
.wsd7{word-spacing:1.362893pt;}
.ws40{word-spacing:1.392107pt;}
.wsa8{word-spacing:1.427090pt;}
.wsa9{word-spacing:1.445241pt;}
.ws12c{word-spacing:1.498375pt;}
.ws5d{word-spacing:1.551509pt;}
.ws146{word-spacing:1.601997pt;}
.ws3c{word-spacing:1.657777pt;}
.ws119{word-spacing:1.710911pt;}
.wsdb{word-spacing:1.764044pt;}
.ws127{word-spacing:1.817178pt;}
.wsc7{word-spacing:1.870312pt;}
.ws1d{word-spacing:1.923446pt;}
.ws69{word-spacing:1.976580pt;}
.ws139{word-spacing:1.984563pt;}
.ws24{word-spacing:2.029714pt;}
.ws138{word-spacing:2.082423pt;}
.ws42{word-spacing:2.082848pt;}
.ws90{word-spacing:2.135981pt;}
.ws2a{word-spacing:2.189115pt;}
.ws79{word-spacing:2.242249pt;}
.ws50{word-spacing:2.348517pt;}
.ws106{word-spacing:2.364797pt;}
.ws27{word-spacing:2.401651pt;}
.ws39{word-spacing:2.454785pt;}
.ws18b{word-spacing:2.462771pt;}
.ws38{word-spacing:2.503674pt;}
.ws4a{word-spacing:2.507919pt;}
.ws1b{word-spacing:2.561052pt;}
.wsc2{word-spacing:2.580153pt;}
.wsc5{word-spacing:2.614186pt;}
.ws187{word-spacing:2.654054pt;}
.ws72{word-spacing:2.667320pt;}
.wsce{word-spacing:2.701875pt;}
.wsb0{word-spacing:2.720454pt;}
.ws186{word-spacing:2.727557pt;}
.wsa6{word-spacing:2.749696pt;}
.ws3e{word-spacing:2.773588pt;}
.ws126{word-spacing:2.879856pt;}
.wsc9{word-spacing:2.931280pt;}
.ws167{word-spacing:2.931301pt;}
.ws13{word-spacing:2.932989pt;}
.wsc8{word-spacing:2.948690pt;}
.ws129{word-spacing:2.952424pt;}
.ws169{word-spacing:2.977790pt;}
.ws1f{word-spacing:2.986123pt;}
.wsa4{word-spacing:3.039257pt;}
.wsed{word-spacing:3.084442pt;}
.ws6f{word-spacing:3.092391pt;}
.ws6e{word-spacing:3.145525pt;}
.ws2b{word-spacing:3.198659pt;}
.wsee{word-spacing:3.227904pt;}
.wsfb{word-spacing:3.251793pt;}
.ws166{word-spacing:3.304927pt;}
.ws14a{word-spacing:3.323546pt;}
.ws4c{word-spacing:3.358060pt;}
.wsef{word-spacing:3.368359pt;}
.wsaf{word-spacing:3.373692pt;}
.ws9e{word-spacing:3.379314pt;}
.ws49{word-spacing:3.411194pt;}
.ws6d{word-spacing:3.464328pt;}
.wse{word-spacing:3.517462pt;}
.ws25{word-spacing:3.570596pt;}
.ws10{word-spacing:3.676864pt;}
.ws174{word-spacing:3.692161pt;}
.ws176{word-spacing:3.692270pt;}
.ws1e{word-spacing:3.729997pt;}
.ws108{word-spacing:3.781996pt;}
.wse1{word-spacing:3.783131pt;}
.ws32{word-spacing:3.836265pt;}
.wsbf{word-spacing:3.885958pt;}
.wsc0{word-spacing:3.889399pt;}
.ws6a{word-spacing:3.942533pt;}
.ws20{word-spacing:3.985067pt;}
.wsf{word-spacing:3.995667pt;}
.ws17a{word-spacing:4.015578pt;}
.ws30{word-spacing:4.048801pt;}
.ws1a{word-spacing:4.101935pt;}
.ws148{word-spacing:4.136499pt;}
.wsd8{word-spacing:4.155068pt;}
.wsde{word-spacing:4.208202pt;}
.ws4f{word-spacing:4.261336pt;}
.wsbb{word-spacing:4.314470pt;}
.wse2{word-spacing:4.367604pt;}
.ws178{word-spacing:4.378674pt;}
.ws125{word-spacing:4.420738pt;}
.ws48{word-spacing:4.473872pt;}
.ws66{word-spacing:4.527005pt;}
.wsf1{word-spacing:4.580139pt;}
.ws188{word-spacing:4.614707pt;}
.wsac{word-spacing:4.633273pt;}
.wsf8{word-spacing:4.739541pt;}
.ws185{word-spacing:4.758170pt;}
.ws44{word-spacing:4.792675pt;}
.ws122{word-spacing:4.845809pt;}
.ws9f{word-spacing:4.898943pt;}
.ws100{word-spacing:4.952076pt;}
.ws109{word-spacing:5.005210pt;}
.ws13d{word-spacing:5.058344pt;}
.wsda{word-spacing:5.111478pt;}
.wsd9{word-spacing:5.164612pt;}
.wsc1{word-spacing:5.217746pt;}
.ws13a{word-spacing:5.236378pt;}
.ws10c{word-spacing:5.270880pt;}
.ws76{word-spacing:5.324013pt;}
.ws3b{word-spacing:5.377147pt;}
.ws54{word-spacing:5.430281pt;}
.ws170{word-spacing:5.483415pt;}
.wsbc{word-spacing:5.589683pt;}
.wsdf{word-spacing:5.642817pt;}
.ws132{word-spacing:5.695951pt;}
.ws1c{word-spacing:5.749084pt;}
.wsa0{word-spacing:5.802218pt;}
.wsc6{word-spacing:5.855352pt;}
.ws143{word-spacing:5.908486pt;}
.ws150{word-spacing:5.961620pt;}
.ws95{word-spacing:6.014754pt;}
.ws3f{word-spacing:6.067888pt;}
.ws18d{word-spacing:6.097152pt;}
.ws112{word-spacing:6.121021pt;}
.ws123{word-spacing:6.174155pt;}
.wsa5{word-spacing:6.227289pt;}
.ws70{word-spacing:6.280423pt;}
.ws2e{word-spacing:6.333557pt;}
.ws8a{word-spacing:6.386691pt;}
.ws104{word-spacing:6.439825pt;}
.ws6b{word-spacing:6.492959pt;}
.ws2f{word-spacing:6.546092pt;}
.ws152{word-spacing:6.599226pt;}
.ws82{word-spacing:6.652360pt;}
.wsb9{word-spacing:6.683353pt;}
.wsb8{word-spacing:6.688296pt;}
.ws19{word-spacing:6.705494pt;}
.ws56{word-spacing:6.758628pt;}
.ws145{word-spacing:6.766643pt;}
.wse0{word-spacing:6.811762pt;}
.ws12{word-spacing:6.864896pt;}
.ws12d{word-spacing:6.971163pt;}
.ws131{word-spacing:7.005747pt;}
.ws103{word-spacing:7.024297pt;}
.ws9b{word-spacing:7.077431pt;}
.ws9d{word-spacing:7.130565pt;}
.ws11{word-spacing:7.236833pt;}
.ws17f{word-spacing:7.244851pt;}
.ws11c{word-spacing:7.289967pt;}
.ws12b{word-spacing:7.343100pt;}
.ws78{word-spacing:7.396234pt;}
.ws64{word-spacing:7.449368pt;}
.ws61{word-spacing:7.502502pt;}
.ws73{word-spacing:7.555636pt;}
.ws21{word-spacing:7.608770pt;}
.ws171{word-spacing:7.661904pt;}
.ws97{word-spacing:7.715037pt;}
.ws26{word-spacing:7.768171pt;}
.ws74{word-spacing:7.821305pt;}
.wsb3{word-spacing:7.874439pt;}
.wse4{word-spacing:7.927573pt;}
.ws141{word-spacing:7.980707pt;}
.ws71{word-spacing:8.033841pt;}
.wscb{word-spacing:8.140108pt;}
.ws22{word-spacing:8.193242pt;}
.ws142{word-spacing:8.246376pt;}
.ws181{word-spacing:8.249088pt;}
.ws33{word-spacing:8.299510pt;}
.ws114{word-spacing:8.352644pt;}
.ws18c{word-spacing:8.392550pt;}
.ws80{word-spacing:8.618313pt;}
.ws96{word-spacing:8.671447pt;}
.ws4e{word-spacing:8.724581pt;}
.ws4d{word-spacing:8.777715pt;}
.wsae{word-spacing:8.830849pt;}
.ws98{word-spacing:8.883983pt;}
.wsab{word-spacing:8.905236pt;}
.wsf0{word-spacing:8.937116pt;}
.ws154{word-spacing:8.990250pt;}
.ws8f{word-spacing:9.043384pt;}
.ws9a{word-spacing:9.096518pt;}
.ws161{word-spacing:9.309053pt;}
.ws41{word-spacing:9.362187pt;}
.wsb7{word-spacing:9.521589pt;}
.ws92{word-spacing:9.574723pt;}
.wsb4{word-spacing:9.627857pt;}
.ws15{word-spacing:9.680991pt;}
.ws144{word-spacing:9.734124pt;}
.wsf9{word-spacing:9.787258pt;}
.ws31{word-spacing:9.840392pt;}
.ws91{word-spacing:9.946660pt;}
.ws68{word-spacing:10.052928pt;}
.wsf4{word-spacing:10.106061pt;}
.ws130{word-spacing:10.114099pt;}
.ws160{word-spacing:10.212329pt;}
.wsb5{word-spacing:10.477999pt;}
.ws111{word-spacing:10.531132pt;}
.ws120{word-spacing:10.584266pt;}
.ws113{word-spacing:10.637400pt;}
.ws189{word-spacing:10.640128pt;}
.ws11e{word-spacing:10.743668pt;}
.wsfc{word-spacing:10.796802pt;}
.ws57{word-spacing:10.849936pt;}
.ws34{word-spacing:10.903069pt;}
.ws163{word-spacing:10.956203pt;}
.ws16{word-spacing:11.062471pt;}
.ws15f{word-spacing:11.275007pt;}
.ws81{word-spacing:11.381274pt;}
.ws11d{word-spacing:11.487542pt;}
.ws16b{word-spacing:11.646944pt;}
.ws13f{word-spacing:11.700077pt;}
.ws12a{word-spacing:11.753211pt;}
.ws124{word-spacing:11.859479pt;}
.ws15e{word-spacing:11.912613pt;}
.ws11a{word-spacing:12.026931pt;}
.ws173{word-spacing:12.390818pt;}
.ws60{word-spacing:12.656487pt;}
.ws5e{word-spacing:12.709621pt;}
.ws89{word-spacing:12.762755pt;}
.wsf6{word-spacing:12.959437pt;}
.ws2d{word-spacing:12.975290pt;}
.ws165{word-spacing:13.028424pt;}
.ws58{word-spacing:13.559763pt;}
.ws5b{word-spacing:13.666031pt;}
.ws59{word-spacing:13.931700pt;}
.ws121{word-spacing:14.144235pt;}
.ws10e{word-spacing:14.234432pt;}
.ws116{word-spacing:14.728708pt;}
.ws117{word-spacing:14.781842pt;}
.ws7{word-spacing:14.834976pt;}
.ws11b{word-spacing:14.994377pt;}
.ws87{word-spacing:15.313180pt;}
.ws16e{word-spacing:15.366314pt;}
.ws85{word-spacing:15.464990pt;}
.ws7c{word-spacing:15.466140pt;}
.ws94{word-spacing:15.470323pt;}
.ws93{word-spacing:15.471473pt;}
.ws11f{word-spacing:15.525716pt;}
.ws162{word-spacing:15.685117pt;}
.ws164{word-spacing:15.844519pt;}
.ws115{word-spacing:16.712733pt;}
.wsff{word-spacing:16.790302pt;}
.ws16c{word-spacing:16.907196pt;}
.ws172{word-spacing:17.066598pt;}
.ws8e{word-spacing:17.372916pt;}
.ws147{word-spacing:17.678839pt;}
.ws128{word-spacing:18.227400pt;}
.ws15d{word-spacing:18.448079pt;}
.wsc3{word-spacing:18.596853pt;}
.ws15b{word-spacing:19.008768pt;}
.ws9{word-spacing:19.563890pt;}
.wsc4{word-spacing:19.961963pt;}
.wsb6{word-spacing:20.453308pt;}
.wsf2{word-spacing:20.456539pt;}
.ws15c{word-spacing:20.626567pt;}
.ws45{word-spacing:20.669074pt;}
.ws101{word-spacing:20.775342pt;}
.wsc{word-spacing:21.211040pt;}
.wsfd{word-spacing:21.253547pt;}
.wsd{word-spacing:21.264173pt;}
.ws13b{word-spacing:21.534839pt;}
.ws7f{word-spacing:21.555657pt;}
.ws16d{word-spacing:21.636111pt;}
.wsa{word-spacing:21.689244pt;}
.ws67{word-spacing:21.903296pt;}
.wsf3{word-spacing:21.983296pt;}
.ws46{word-spacing:22.175296pt;}
.ws102{word-spacing:22.319296pt;}
.ws8{word-spacing:22.805056pt;}
.wsb{word-spacing:22.911323pt;}
.wsb1{word-spacing:23.432035pt;}
.ws14{word-spacing:24.432992pt;}
.ws9c{word-spacing:24.489963pt;}
.ws65{word-spacing:24.841963pt;}
.ws63{word-spacing:24.847296pt;}
.wsb2{word-spacing:25.225963pt;}
.ws99{word-spacing:27.299657pt;}
.ws1{word-spacing:29.436310pt;}
.ws6{word-spacing:29.556421pt;}
.ws5f{word-spacing:30.047296pt;}
.ws5c{word-spacing:31.028629pt;}
.ws5a{word-spacing:31.300629pt;}
.ws159{word-spacing:31.434484pt;}
.ws158{word-spacing:31.701081pt;}
.ws15a{word-spacing:31.879103pt;}
.ws137{word-spacing:34.790037pt;}
.wsd5{word-spacing:35.770038pt;}
.wsd4{word-spacing:42.247588pt;}
.ws136{word-spacing:56.760760pt;}
.ws177{word-spacing:63.611865pt;}
.wsd3{word-spacing:64.826482pt;}
.ws17b{word-spacing:73.620122pt;}
.ws179{word-spacing:79.884646pt;}
.ws86{word-spacing:138.344990pt;}
.wsd0{word-spacing:143.567991pt;}
.ws156{word-spacing:164.469336pt;}
.wse6{word-spacing:182.531158pt;}
.wse9{word-spacing:182.569806pt;}
.ws7e{word-spacing:200.867657pt;}
.ws133{word-spacing:481.835689pt;}
._13{margin-left:-35.897481pt;}
._1b{margin-left:-30.498839pt;}
._19{margin-left:-28.543713pt;}
._e{margin-left:-27.045149pt;}
._d{margin-left:-26.088718pt;}
._12{margin-left:-25.094194pt;}
._32{margin-left:-24.154817pt;}
._15{margin-left:-22.571323pt;}
._11{margin-left:-20.722182pt;}
._41{margin-left:-19.818900pt;}
._2a{margin-left:-18.601097pt;}
._37{margin-left:-17.098508pt;}
._7{margin-left:-15.568212pt;}
._4{margin-left:-7.438779pt;}
._17{margin-left:-6.216662pt;}
._b{margin-left:-5.100864pt;}
._9{margin-left:-3.826900pt;}
._0{margin-left:-2.125365pt;}
._5{margin-left:-1.061423pt;}
._f{width:0.903265pt;}
._2{width:2.125365pt;}
._14{width:3.080521pt;}
._a{width:4.895673pt;}
._6{width:6.075366pt;}
._8{width:7.535696pt;}
._1f{width:8.873356pt;}
._3{width:11.836231pt;}
._2c{width:13.334814pt;}
._1{width:14.765942pt;}
._16{width:15.955180pt;}
._2b{width:17.427919pt;}
._39{width:18.809411pt;}
._1c{width:20.350271pt;}
._1a{width:22.056042pt;}
._c{width:23.205363pt;}
._33{width:24.255376pt;}
._1d{width:25.830291pt;}
._38{width:29.808110pt;}
._45{width:32.723230pt;}
._10{width:38.575177pt;}
._18{width:47.820800pt;}
._28{width:56.644230pt;}
._26{width:59.267640pt;}
._1e{width:61.103947pt;}
._29{width:63.883379pt;}
._27{width:66.443369pt;}
._25{width:68.355978pt;}
._24{width:70.322141pt;}
._23{width:81.182704pt;}
._3f{width:94.538964pt;}
._3c{width:131.207708pt;}
._3e{width:143.770148pt;}
._42{width:171.756143pt;}
._43{width:177.798582pt;}
._44{width:187.485046pt;}
._2e{width:192.053418pt;}
._2f{width:200.164290pt;}
._30{width:212.860527pt;}
._3b{width:217.107636pt;}
._31{width:219.353635pt;}
._35{width:226.207647pt;}
._36{width:230.420218pt;}
._21{width:318.500798pt;}
._2d{width:381.418842pt;}
._3d{width:405.695138pt;}
._40{width:413.091382pt;}
._22{width:432.183978pt;}
._3a{width:497.784194pt;}
._20{width:505.247467pt;}
._34{width:513.999467pt;}
.fs18{font-size:17.417670pt;}
.fsb{font-size:19.393861pt;}
.fs17{font-size:21.327759pt;}
.fs12{font-size:24.723135pt;}
.fs15{font-size:24.882386pt;}
.fs14{font-size:26.407456pt;}
.fs7{font-size:26.566933pt;}
.fsa{font-size:27.151328pt;}
.fse{font-size:27.977604pt;}
.fs11{font-size:28.019553pt;}
.fs16{font-size:30.125460pt;}
.fs4{font-size:31.880533pt;}
.fsc{font-size:32.914829pt;}
.fsf{font-size:32.964180pt;}
.fs3{font-size:37.193600pt;}
.fs13{font-size:37.725045pt;}
.fs9{font-size:38.787723pt;}
.fsd{font-size:39.497795pt;}
.fs10{font-size:39.557017pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs6{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.y177{bottom:3.478684pt;}
.ydc{bottom:4.487805pt;}
.ye7{bottom:4.897112pt;}
.y176{bottom:11.010085pt;}
.ydb{bottom:14.450467pt;}
.ye6{bottom:14.874711pt;}
.ydd{bottom:34.933974pt;}
.y178{bottom:34.959309pt;}
.ye8{bottom:35.418460pt;}
.y38{bottom:54.637333pt;}
.yde{bottom:64.234049pt;}
.ye9{bottom:64.850764pt;}
.y179{bottom:74.060202pt;}
.ydf{bottom:93.534124pt;}
.yea{bottom:94.283068pt;}
.y89{bottom:94.486667pt;}
.y29{bottom:94.488000pt;}
.y11b{bottom:98.238667pt;}
.y9e{bottom:98.872000pt;}
.yd9{bottom:99.265333pt;}
.y37{bottom:101.454667pt;}
.y17d{bottom:107.673748pt;}
.y204{bottom:109.100000pt;}
.y28{bottom:110.428000pt;}
.y162{bottom:111.308000pt;}
.y17a{bottom:113.161094pt;}
.y12c{bottom:113.484000pt;}
.y88{bottom:114.412000pt;}
.ye4{bottom:115.663373pt;}
.yef{bottom:116.504313pt;}
.y36{bottom:117.394667pt;}
.y119{bottom:122.484000pt;}
.ye0{bottom:122.863636pt;}
.y203{bottom:123.712000pt;}
.yeb{bottom:123.715372pt;}
.y161{bottom:124.377333pt;}
.y9d{bottom:126.169333pt;}
.y27{bottom:126.368000pt;}
.yd8{bottom:126.562667pt;}
.y12b{bottom:128.096000pt;}
.y35{bottom:133.334667pt;}
.y1d3{bottom:137.814667pt;}
.y202{bottom:138.324000pt;}
.y118{bottom:138.424000pt;}
.y87{bottom:138.501333pt;}
.y15a{bottom:141.866667pt;}
.y65{bottom:142.308000pt;}
.y26{bottom:142.309333pt;}
.y17e{bottom:144.952676pt;}
.y160{bottom:146.250667pt;}
.y34{bottom:149.274667pt;}
.ye1{bottom:152.163711pt;}
.y17b{bottom:152.261986pt;}
.yec{bottom:153.147676pt;}
.y1d2{bottom:153.754667pt;}
.y117{bottom:154.364000pt;}
.y86{bottom:154.442667pt;}
.y12a{bottom:155.393333pt;}
.y18d{bottom:156.776000pt;}
.yf0{bottom:157.533041pt;}
.y159{bottom:157.806667pt;}
.y1a9{bottom:158.248000pt;}
.y25{bottom:158.249333pt;}
.y17f{bottom:158.416115pt;}
.y15f{bottom:160.861333pt;}
.y201{bottom:161.341333pt;}
.y33{bottom:165.216000pt;}
.y129{bottom:168.012000pt;}
.yf1{bottom:168.452329pt;}
.y1d1{bottom:169.694667pt;}
.y116{bottom:170.304000pt;}
.y85{bottom:170.382667pt;}
.y180{bottom:171.545980pt;}
.y158{bottom:173.746667pt;}
.y24{bottom:174.189333pt;}
.y15e{bottom:175.473333pt;}
.y200{bottom:175.953333pt;}
.y32{bottom:181.156000pt;}
.yf2{bottom:181.373111pt;}
.ye2{bottom:181.463786pt;}
.yed{bottom:182.579980pt;}
.y181{bottom:184.698135pt;}
.y1d0{bottom:185.634667pt;}
.y1a8{bottom:186.040000pt;}
.y115{bottom:186.245333pt;}
.y84{bottom:186.322667pt;}
.y157{bottom:189.686667pt;}
.y23{bottom:190.129333pt;}
.y1ff{bottom:190.565333pt;}
.y17c{bottom:191.362878pt;}
.yf3{bottom:194.293892pt;}
.y31{bottom:197.096000pt;}
.y182{bottom:197.828000pt;}
.y18c{bottom:199.132000pt;}
.y1cf{bottom:201.574667pt;}
.y1a7{bottom:201.980000pt;}
.y114{bottom:202.185333pt;}
.y83{bottom:202.262667pt;}
.y15d{bottom:202.772000pt;}
.y1fe{bottom:205.177333pt;}
.y156{bottom:205.626667pt;}
.y22{bottom:206.069333pt;}
.yf4{bottom:207.185386pt;}
.ye3{bottom:210.763862pt;}
.yee{bottom:212.012284pt;}
.y30{bottom:213.036000pt;}
.y18b{bottom:215.072000pt;}
.y1ce{bottom:217.514667pt;}
.y1a6{bottom:217.920000pt;}
.y113{bottom:218.125333pt;}
.y1fd{bottom:219.788000pt;}
.y155{bottom:221.568000pt;}
.y21{bottom:222.009333pt;}
.y169{bottom:222.010667pt;}
.y82{bottom:225.746667pt;}
.y2f{bottom:228.976000pt;}
.y18a{bottom:231.013333pt;}
.y1a5{bottom:233.860000pt;}
.y112{bottom:234.065333pt;}
.y154{bottom:237.508000pt;}
.y64{bottom:237.949333pt;}
.y20{bottom:237.950667pt;}
.y81{bottom:241.820000pt;}
.y1fc{bottom:242.805333pt;}
.y1cd{bottom:244.901333pt;}
.y2e{bottom:244.917333pt;}
.y108{bottom:246.242667pt;}
.y189{bottom:246.953333pt;}
.y1a4{bottom:249.801333pt;}
.y111{bottom:250.005333pt;}
.y153{bottom:253.448000pt;}
.y63{bottom:253.890667pt;}
.y1fb{bottom:257.417333pt;}
.y1cc{bottom:260.841333pt;}
.y2d{bottom:260.857333pt;}
.yff{bottom:262.490667pt;}
.y188{bottom:262.893333pt;}
.y80{bottom:265.038667pt;}
.y11a{bottom:265.945333pt;}
.y110{bottom:265.946667pt;}
.y1f{bottom:267.828000pt;}
.y152{bottom:269.388000pt;}
.y62{bottom:269.830667pt;}
.y168{bottom:271.902667pt;}
.y1fa{bottom:272.029333pt;}
.y107{bottom:273.541333pt;}
.y1cb{bottom:276.781333pt;}
.y2c{bottom:276.797333pt;}
.y1a3{bottom:277.592000pt;}
.y187{bottom:278.833333pt;}
.y7f{bottom:280.978667pt;}
.y10f{bottom:281.886667pt;}
.y151{bottom:285.328000pt;}
.y61{bottom:285.770667pt;}
.y167{bottom:286.514667pt;}
.y1f9{bottom:286.641333pt;}
.y1ca{bottom:292.722667pt;}
.y2b{bottom:292.737333pt;}
.y1a2{bottom:293.532000pt;}
.y186{bottom:294.773333pt;}
.y7e{bottom:296.920000pt;}
.y10e{bottom:297.826667pt;}
.y166{bottom:301.126667pt;}
.y150{bottom:301.268000pt;}
.y60{bottom:301.710667pt;}
.y1c9{bottom:308.662667pt;}
.y2a{bottom:308.677333pt;}
.y1a1{bottom:309.472000pt;}
.y1f8{bottom:309.658667pt;}
.y185{bottom:310.713333pt;}
.y7d{bottom:312.860000pt;}
.y10d{bottom:313.766667pt;}
.y165{bottom:315.738667pt;}
.y14f{bottom:317.209333pt;}
.y5f{bottom:317.650667pt;}
.y9c{bottom:323.106667pt;}
.y1f7{bottom:324.270667pt;}
.y1a0{bottom:325.412000pt;}
.y7c{bottom:328.800000pt;}
.y10c{bottom:329.706667pt;}
.y164{bottom:330.350667pt;}
.y14e{bottom:333.149333pt;}
.y5e{bottom:333.590667pt;}
.y126{bottom:333.592000pt;}
.y1c8{bottom:336.048000pt;}
.y1f6{bottom:338.882667pt;}
.y1e{bottom:340.414667pt;}
.y19f{bottom:341.353333pt;}
.y7b{bottom:344.740000pt;}
.y163{bottom:344.962667pt;}
.yc7{bottom:347.448000pt;}
.yd7{bottom:347.649333pt;}
.y14d{bottom:349.089333pt;}
.y184{bottom:349.093333pt;}
.y5d{bottom:349.532000pt;}
.y1c7{bottom:351.988000pt;}
.y1f5{bottom:353.494667pt;}
.y1d{bottom:356.354667pt;}
.y7a{bottom:360.680000pt;}
.yc6{bottom:363.388000pt;}
.yd6{bottom:363.589333pt;}
.y183{bottom:363.705333pt;}
.y14c{bottom:365.029333pt;}
.y5c{bottom:365.472000pt;}
.y10b{bottom:365.970667pt;}
.y1c6{bottom:367.929333pt;}
.y1f4{bottom:368.106667pt;}
.y19e{bottom:369.144000pt;}
.y1c{bottom:372.296000pt;}
.y79{bottom:376.620000pt;}
.yc5{bottom:379.328000pt;}
.yd5{bottom:379.529333pt;}
.y14b{bottom:380.969333pt;}
.yb7{bottom:381.412000pt;}
.y1f3{bottom:382.718667pt;}
.y1c5{bottom:383.869333pt;}
.y19d{bottom:385.084000pt;}
.y175{bottom:387.217333pt;}
.y1b{bottom:388.236000pt;}
.y78{bottom:392.561333pt;}
.y10a{bottom:393.269333pt;}
.yc4{bottom:395.268000pt;}
.yd4{bottom:395.469333pt;}
.y5b{bottom:396.622667pt;}
.y14a{bottom:396.910667pt;}
.yb6{bottom:397.352000pt;}
.y1c4{bottom:399.809333pt;}
.y19c{bottom:401.024000pt;}
.y1a{bottom:404.176000pt;}
.y1f2{bottom:405.736000pt;}
.y77{bottom:408.501333pt;}
.yc3{bottom:411.208000pt;}
.yd3{bottom:411.410667pt;}
.y149{bottom:412.850667pt;}
.yb5{bottom:413.292000pt;}
.y15c{bottom:413.301333pt;}
.y1c3{bottom:415.749333pt;}
.y19b{bottom:416.964000pt;}
.y128{bottom:418.517333pt;}
.y19{bottom:420.116000pt;}
.y1f1{bottom:420.348000pt;}
.y76{bottom:424.441333pt;}
.yc2{bottom:427.149333pt;}
.yd2{bottom:427.350667pt;}
.y148{bottom:428.790667pt;}
.yb4{bottom:429.232000pt;}
.y125{bottom:429.233333pt;}
.y127{bottom:431.137333pt;}
.y19a{bottom:432.905333pt;}
.y1f0{bottom:434.958667pt;}
.y18{bottom:436.056000pt;}
.y16b{bottom:438.180000pt;}
.y5a{bottom:441.098667pt;}
.yc1{bottom:443.089333pt;}
.y1c2{bottom:443.136000pt;}
.yd1{bottom:443.290667pt;}
.y147{bottom:444.730667pt;}
.yb3{bottom:445.173333pt;}
.y75{bottom:448.530667pt;}
.y1ef{bottom:449.570667pt;}
.y17{bottom:451.996000pt;}
.y16a{bottom:452.792000pt;}
.y59{bottom:457.038667pt;}
.y1c1{bottom:459.076000pt;}
.yd0{bottom:459.230667pt;}
.y199{bottom:460.696000pt;}
.yb2{bottom:461.113333pt;}
.y16{bottom:467.937333pt;}
.y146{bottom:469.749333pt;}
.y1ee{bottom:472.588000pt;}
.y74{bottom:472.620000pt;}
.y58{bottom:472.978667pt;}
.y1c0{bottom:475.016000pt;}
.ycf{bottom:475.170667pt;}
.y198{bottom:476.636000pt;}
.yb1{bottom:477.053333pt;}
.y15{bottom:483.877333pt;}
.y145{bottom:485.689333pt;}
.yc0{bottom:486.792000pt;}
.y1ed{bottom:487.200000pt;}
.y73{bottom:488.560000pt;}
.y57{bottom:488.918667pt;}
.y9b{bottom:490.000000pt;}
.y1bf{bottom:490.956000pt;}
.yce{bottom:491.110667pt;}
.y197{bottom:492.576000pt;}
.yb0{bottom:492.993333pt;}
.y14{bottom:499.817333pt;}
.ybf{bottom:501.404000pt;}
.y144{bottom:501.629333pt;}
.y1ec{bottom:501.812000pt;}
.y72{bottom:504.500000pt;}
.y56{bottom:504.858667pt;}
.y9a{bottom:505.941333pt;}
.y1be{bottom:506.896000pt;}
.ycd{bottom:507.052000pt;}
.y196{bottom:508.517333pt;}
.yaf{bottom:508.933333pt;}
.y13{bottom:515.757333pt;}
.ybe{bottom:516.016000pt;}
.y1eb{bottom:516.424000pt;}
.y143{bottom:517.569333pt;}
.y106{bottom:518.253333pt;}
.y71{bottom:520.441333pt;}
.y55{bottom:520.800000pt;}
.y99{bottom:521.881333pt;}
.y1bd{bottom:522.837333pt;}
.ycc{bottom:522.992000pt;}
.yfe{bottom:522.998667pt;}
.yae{bottom:524.873333pt;}
.y124{bottom:524.874667pt;}
.y12{bottom:531.697333pt;}
.y142{bottom:533.510667pt;}
.y105{bottom:534.193333pt;}
.y70{bottom:536.381333pt;}
.y54{bottom:536.740000pt;}
.y98{bottom:537.821333pt;}
.y195{bottom:538.181333pt;}
.y1bc{bottom:538.777333pt;}
.ycb{bottom:538.932000pt;}
.yfd{bottom:538.938667pt;}
.y1ea{bottom:539.441333pt;}
.yad{bottom:540.814667pt;}
.ybd{bottom:544.065467pt;}
.y11{bottom:547.637333pt;}
.y141{bottom:549.450667pt;}
.y104{bottom:550.133333pt;}
.y6f{bottom:552.321333pt;}
.y53{bottom:552.680000pt;}
.y97{bottom:553.761333pt;}
.y1e9{bottom:554.053333pt;}
.yca{bottom:554.872000pt;}
.yfc{bottom:554.878667pt;}
.yac{bottom:556.754667pt;}
.ybc{bottom:559.193013pt;}
.y10{bottom:563.578667pt;}
.y140{bottom:565.390667pt;}
.y103{bottom:566.074667pt;}
.y1bb{bottom:566.162667pt;}
.y6e{bottom:568.261333pt;}
.y52{bottom:568.620000pt;}
.y1e8{bottom:568.664000pt;}
.y96{bottom:569.701333pt;}
.yc9{bottom:570.812000pt;}
.yfb{bottom:570.820000pt;}
.yab{bottom:572.694667pt;}
.ybb{bottom:574.319587pt;}
.y194{bottom:578.418667pt;}
.yf{bottom:579.518667pt;}
.y13f{bottom:581.330667pt;}
.y102{bottom:582.014667pt;}
.y1ba{bottom:582.102667pt;}
.y1e7{bottom:583.276000pt;}
.y6d{bottom:584.201333pt;}
.y51{bottom:584.560000pt;}
.y95{bottom:585.641333pt;}
.yc8{bottom:586.753333pt;}
.yfa{bottom:586.760000pt;}
.yaa{bottom:588.634667pt;}
.yba{bottom:589.447133pt;}
.y193{bottom:594.358667pt;}
.ye{bottom:595.458667pt;}
.y13e{bottom:597.270667pt;}
.y101{bottom:597.954667pt;}
.y1b9{bottom:598.044000pt;}
.y50{bottom:600.500000pt;}
.y94{bottom:601.582667pt;}
.yf9{bottom:602.700000pt;}
.ya9{bottom:604.574667pt;}
.y1e6{bottom:606.293333pt;}
.y6c{bottom:608.290667pt;}
.y192{bottom:610.300000pt;}
.yd{bottom:611.398667pt;}
.y13d{bottom:613.210667pt;}
.y100{bottom:613.894667pt;}
.y1b8{bottom:613.984000pt;}
.y4f{bottom:616.441333pt;}
.y93{bottom:617.522667pt;}
.y174{bottom:619.713333pt;}
.ya8{bottom:620.516000pt;}
.y1e5{bottom:622.234667pt;}
.y191{bottom:626.240000pt;}
.y15b{bottom:627.324000pt;}
.yc{bottom:627.338667pt;}
.y13c{bottom:629.152000pt;}
.yf8{bottom:629.834667pt;}
.y1b7{bottom:629.924000pt;}
.y6b{bottom:632.380000pt;}
.y4e{bottom:632.381333pt;}
.y92{bottom:633.462667pt;}
.y173{bottom:635.653333pt;}
.y123{bottom:636.456000pt;}
.y1e4{bottom:638.174667pt;}
.yb9{bottom:638.957333pt;}
.y190{bottom:642.180000pt;}
.yb{bottom:643.278667pt;}
.y13b{bottom:645.092000pt;}
.ya7{bottom:645.729333pt;}
.y1b6{bottom:645.864000pt;}
.y4d{bottom:648.321333pt;}
.y91{bottom:649.402667pt;}
.y172{bottom:651.593333pt;}
.y122{bottom:652.396000pt;}
.y1e3{bottom:654.114667pt;}
.y18f{bottom:658.120000pt;}
.ya{bottom:659.220000pt;}
.y13a{bottom:661.032000pt;}
.y4c{bottom:664.261333pt;}
.y90{bottom:665.342667pt;}
.yf7{bottom:666.098667pt;}
.yb8{bottom:666.254667pt;}
.y171{bottom:667.533333pt;}
.y121{bottom:668.336000pt;}
.y1b5{bottom:673.250667pt;}
.y9{bottom:675.160000pt;}
.y139{bottom:676.972000pt;}
.y1e2{bottom:678.460000pt;}
.y4b{bottom:680.201333pt;}
.yf6{bottom:680.710667pt;}
.y8f{bottom:681.284000pt;}
.ya6{bottom:682.238667pt;}
.y170{bottom:683.474667pt;}
.y120{bottom:684.276000pt;}
.y18e{bottom:687.784000pt;}
.y1b4{bottom:689.190667pt;}
.y8{bottom:691.100000pt;}
.y138{bottom:692.912000pt;}
.y1e1{bottom:694.400000pt;}
.yf5{bottom:695.322667pt;}
.y4a{bottom:696.141333pt;}
.y8e{bottom:697.224000pt;}
.ya5{bottom:698.178667pt;}
.y16f{bottom:699.414667pt;}
.y11f{bottom:700.217333pt;}
.y1b3{bottom:705.130667pt;}
.y1e0{bottom:710.340000pt;}
.y6a{bottom:712.081333pt;}
.y49{bottom:712.082667pt;}
.y8d{bottom:713.164000pt;}
.ya4{bottom:714.120000pt;}
.y16e{bottom:715.354667pt;}
.y11e{bottom:716.157333pt;}
.y1b2{bottom:721.070667pt;}
.ye5{bottom:722.621333pt;}
.y48{bottom:728.022667pt;}
.y8c{bottom:729.104000pt;}
.ya3{bottom:730.060000pt;}
.y1df{bottom:734.686667pt;}
.yda{bottom:736.768000pt;}
.y1b1{bottom:737.010667pt;}
.y137{bottom:739.313333pt;}
.y47{bottom:743.962667pt;}
.ya2{bottom:746.000000pt;}
.y1de{bottom:750.626667pt;}
.y1b0{bottom:752.952000pt;}
.y8b{bottom:753.665333pt;}
.y16d{bottom:753.734667pt;}
.y136{bottom:753.925333pt;}
.y46{bottom:759.902667pt;}
.ya1{bottom:761.940000pt;}
.y11d{bottom:762.081333pt;}
.y1dd{bottom:766.566667pt;}
.y16c{bottom:768.346667pt;}
.y135{bottom:768.537333pt;}
.y45{bottom:775.842667pt;}
.y11c{bottom:776.693333pt;}
.y1af{bottom:780.337333pt;}
.y1dc{bottom:782.506667pt;}
.y134{bottom:783.149333pt;}
.y8a{bottom:784.928000pt;}
.ya0{bottom:787.154667pt;}
.y69{bottom:791.782667pt;}
.y44{bottom:791.784000pt;}
.y7{bottom:795.454667pt;}
.y1ae{bottom:796.277333pt;}
.y133{bottom:797.761333pt;}
.y6{bottom:799.205333pt;}
.y9f{bottom:803.094667pt;}
.y1db{bottom:806.853333pt;}
.y68{bottom:807.722667pt;}
.y43{bottom:807.724000pt;}
.y5{bottom:808.074667pt;}
.y4{bottom:811.825333pt;}
.y1ad{bottom:812.218667pt;}
.y1da{bottom:822.793333pt;}
.y42{bottom:823.664000pt;}
.y132{bottom:825.856307pt;}
.y1ac{bottom:828.158667pt;}
.y3{bottom:832.033333pt;}
.y1d9{bottom:838.733333pt;}
.y41{bottom:839.604000pt;}
.y131{bottom:841.135507pt;}
.y1ab{bottom:844.098667pt;}
.y1d8{bottom:854.673333pt;}
.y40{bottom:855.544000pt;}
.y130{bottom:856.414707pt;}
.y1aa{bottom:860.038667pt;}
.y3f{bottom:871.484000pt;}
.y12f{bottom:871.692960pt;}
.y1d7{bottom:879.018667pt;}
.y2{bottom:880.782667pt;}
.y12e{bottom:886.972160pt;}
.y67{bottom:887.424000pt;}
.y3e{bottom:887.425333pt;}
.y1d6{bottom:894.958667pt;}
.y12d{bottom:902.250413pt;}
.y66{bottom:903.364000pt;}
.y3d{bottom:903.365333pt;}
.y109{bottom:905.713333pt;}
.y1{bottom:907.350667pt;}
.y208{bottom:908.678667pt;}
.y1d5{bottom:910.900000pt;}
.y3c{bottom:919.305333pt;}
.y207{bottom:923.290667pt;}
.y1d4{bottom:926.840000pt;}
.y3b{bottom:935.245333pt;}
.y206{bottom:937.902667pt;}
.y3a{bottom:951.185333pt;}
.y205{bottom:952.514667pt;}
.y39{bottom:967.125333pt;}
.h27{height:11.983357pt;}
.h26{height:12.338997pt;}
.h1c{height:17.009517pt;}
.h24{height:17.119082pt;}
.h25{height:20.907069pt;}
.h4{height:22.107556pt;}
.h1f{height:22.475776pt;}
.h17{height:22.645402pt;}
.h1a{height:22.679356pt;}
.h18{height:27.411469pt;}
.h1b{height:27.452570pt;}
.h20{height:28.293784pt;}
.h14{height:29.090792pt;}
.h5{height:31.497835pt;}
.hd{height:31.880400pt;}
.h6{height:32.281835pt;}
.h7{height:32.287169pt;}
.h21{height:32.306056pt;}
.h22{height:32.309843pt;}
.h12{height:35.865600pt;}
.h10{height:37.406242pt;}
.ha{height:39.850400pt;}
.h28{height:39.855733pt;}
.h9{height:40.222337pt;}
.h8{height:40.596502pt;}
.h1d{height:42.439757pt;}
.h15{height:44.318933pt;}
.hb{height:44.887791pt;}
.hc{height:45.427101pt;}
.he{height:45.432434pt;}
.h1e{height:45.501488pt;}
.h3{height:47.175200pt;}
.h11{height:49.242400pt;}
.hf{height:49.247733pt;}
.h13{height:50.168249pt;}
.h2{height:80.445078pt;}
.h1{height:81.933078pt;}
.h23{height:213.814853pt;}
.h16{height:229.055400pt;}
.h19{height:230.360680pt;}
.h0{height:1056.000000pt;}
.w3{width:275.890133pt;}
.w1{width:321.253800pt;}
.w2{width:321.254560pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x56{left:5.789627pt;}
.x36{left:7.466534pt;}
.x33{left:10.611123pt;}
.x35{left:13.373604pt;}
.x54{left:14.498426pt;}
.x34{left:17.546652pt;}
.x31{left:18.986676pt;}
.x57{left:61.797212pt;}
.x59{left:63.196799pt;}
.x58{left:65.374029pt;}
.x1{left:75.590667pt;}
.x4f{left:78.907880pt;}
.x50{left:80.369333pt;}
.x30{left:82.312000pt;}
.x6{left:90.485333pt;}
.x3a{left:92.860843pt;}
.x3c{left:94.832807pt;}
.x3b{left:97.952776pt;}
.xd{left:100.032000pt;}
.x47{left:103.696000pt;}
.x39{left:108.136305pt;}
.x43{left:115.649333pt;}
.x19{left:122.174667pt;}
.x42{left:127.405333pt;}
.x55{left:130.734569pt;}
.x7{left:138.326667pt;}
.x40{left:149.098667pt;}
.x32{left:150.998938pt;}
.x2f{left:163.821333pt;}
.x2a{left:167.336000pt;}
.x9{left:172.593333pt;}
.x2{left:173.968000pt;}
.x2b{left:174.930667pt;}
.x16{left:183.165333pt;}
.x18{left:184.258667pt;}
.x17{left:185.285333pt;}
.x37{left:188.224000pt;}
.x49{left:204.577333pt;}
.x2c{left:212.861333pt;}
.x2e{left:221.916000pt;}
.xa{left:247.660000pt;}
.x48{left:249.457333pt;}
.x4c{left:269.806667pt;}
.x41{left:280.692000pt;}
.xb{left:287.224000pt;}
.x4a{left:290.334667pt;}
.x4{left:307.382667pt;}
.x3{left:328.558667pt;}
.x4b{left:350.462667pt;}
.x2d{left:375.324000pt;}
.x8{left:398.818667pt;}
.x5{left:409.898667pt;}
.x38{left:412.428000pt;}
.xe{left:421.228000pt;}
.x13{left:429.156000pt;}
.x5a{left:435.249333pt;}
.x12{left:445.305333pt;}
.x1f{left:450.082667pt;}
.x3e{left:454.036000pt;}
.x1b{left:455.532000pt;}
.x11{left:460.936000pt;}
.x15{left:462.952000pt;}
.x28{left:467.268000pt;}
.x4e{left:470.564000pt;}
.x52{left:471.700000pt;}
.x10{left:487.010667pt;}
.x22{left:490.402667pt;}
.x3d{left:494.030667pt;}
.x29{left:495.394667pt;}
.x46{left:513.738667pt;}
.x1a{left:514.869333pt;}
.x25{left:539.204000pt;}
.x23{left:545.040000pt;}
.x51{left:547.146667pt;}
.x1d{left:548.896000pt;}
.xc{left:556.578667pt;}
.x4d{left:569.377333pt;}
.x1c{left:586.977333pt;}
.x20{left:590.302667pt;}
.x24{left:608.360000pt;}
.x26{left:612.585333pt;}
.x45{left:647.417333pt;}
.x21{left:654.832000pt;}
.x5b{left:661.220000pt;}
.x44{left:662.978667pt;}
.xf{left:666.865333pt;}
.x1e{left:697.424000pt;}
.x3f{left:698.606667pt;}
.x53{left:718.350667pt;}
.x14{left:723.436000pt;}
.x27{left:730.446667pt;}
}




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