
    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_529acb7fca602c3aba145051.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c39e0afa6e1484bb2b37d1a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_5b735f9fc6e15c7a47f9b1e3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d1d9a7f46d342507a1afa755.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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_7258743329a959bf86d97267.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_12d33b2a497a7e1058bada16.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_da5e28154b2e255527cd177e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734000;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_289b706b198825e57260cf3b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.699000;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_2f4537a0f555918e9b537809.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fe7749e86eae39e2f2407306.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.046000;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_5dac906d2ac8a7dfcf3cfd3d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.780000;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_f4954d862f6af7d6956f41fa.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002000;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_9a102291f83d7fbefd9bf084.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_91bd6b62fc25dd206ce4eb23.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_fe5871230a5f19401c6b45dd.woff2')format("woff");}.fff{font-family:fff;line-height:1.001000;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_130b2071a08b1d12eb18489d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.430000;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_a166bf700a57cc3581235d9a.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_dde35e47587cc2e97ed53d8b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.001000;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_1b2cef300ff7b2f0352b70f1.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.002000;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_01d186415e577ce32f5989a3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5d7257d9a806184d87baed97.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.001000;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_6a08e78370aa52aeb1d79925.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_be52e6f0a1f88e80189a6df2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.686000;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_c9f4e92a052c6e7079d67677.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_3be1c1436d987822ffc1f4e2.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.698000;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_143595fc937854ea052bccb6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-21.696000px;}
.v5{vertical-align:-12.868074px;}
.v3{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:10.758000px;}
.va{vertical-align:14.694000px;}
.v8{vertical-align:16.878000px;}
.v2{vertical-align:23.754000px;}
.v6{vertical-align:26.034000px;}
.v7{vertical-align:29.616000px;}
.v1{vertical-align:31.242000px;}
.ls5{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000440px;}
.ls46{letter-spacing:0.005898px;}
.ls3a{letter-spacing:0.025868px;}
.ls35{letter-spacing:0.026423px;}
.ls2{letter-spacing:2.356366px;}
.ls3d{letter-spacing:2.510592px;}
.ls38{letter-spacing:2.984915px;}
.ls1{letter-spacing:2.987971px;}
.ls3{letter-spacing:2.990915px;}
.ls48{letter-spacing:2.991537px;}
.ls47{letter-spacing:2.992053px;}
.ls4{letter-spacing:2.992894px;}
.ls23{letter-spacing:3.203207px;}
.ls4f{letter-spacing:3.227904px;}
.ls1b{letter-spacing:3.586560px;}
.ls59{letter-spacing:3.765863px;}
.ls4a{letter-spacing:4.447334px;}
.ls49{letter-spacing:4.519066px;}
.ls5a{letter-spacing:4.722272px;}
.ls55{letter-spacing:5.021150px;}
.ls27{letter-spacing:5.092915px;}
.lsd{letter-spacing:5.164646px;}
.ls60{letter-spacing:5.200477px;}
.ls53{letter-spacing:5.379804px;}
.ls63{letter-spacing:5.439580px;}
.ls5d{letter-spacing:5.499355px;}
.ls56{letter-spacing:5.559131px;}
.ls5e{letter-spacing:5.618906px;}
.ls12{letter-spacing:5.666765px;}
.ls64{letter-spacing:5.738458px;}
.ls5c{letter-spacing:5.798233px;}
.ls67{letter-spacing:5.858009px;}
.ls65{letter-spacing:5.917784px;}
.ls61{letter-spacing:6.037336px;}
.ls58{letter-spacing:6.156887px;}
.ls5b{letter-spacing:6.276438px;}
.ls30{letter-spacing:7.675238px;}
.ls7{letter-spacing:9.755443px;}
.ls45{letter-spacing:11.046605px;}
.ls44{letter-spacing:11.118336px;}
.lsf{letter-spacing:15.924326px;}
.ls2a{letter-spacing:15.996058px;}
.ls24{letter-spacing:17.066578px;}
.ls17{letter-spacing:17.072026px;}
.ls16{letter-spacing:17.143757px;}
.ls0{letter-spacing:17.214560px;}
.ls41{letter-spacing:17.861069px;}
.lse{letter-spacing:17.932800px;}
.ls1d{letter-spacing:19.047724px;}
.ls26{letter-spacing:19.869542px;}
.ls32{letter-spacing:19.941274px;}
.ls18{letter-spacing:20.802048px;}
.ls39{letter-spacing:20.873779px;}
.ls22{letter-spacing:21.364339px;}
.ls1c{letter-spacing:21.450139px;}
.ls4d{letter-spacing:21.806285px;}
.ls3e{letter-spacing:22.308403px;}
.ls29{letter-spacing:22.380134px;}
.ls4b{letter-spacing:22.523597px;}
.ls1a{letter-spacing:22.667059px;}
.ls19{letter-spacing:22.738790px;}
.ls2c{letter-spacing:22.910915px;}
.ls2d{letter-spacing:23.384371px;}
.ls10{letter-spacing:23.456102px;}
.ls25{letter-spacing:23.766754px;}
.ls20{letter-spacing:23.852555px;}
.ls42{letter-spacing:24.101683px;}
.ls28{letter-spacing:25.034189px;}
.ls31{letter-spacing:25.105920px;}
.ls11{letter-spacing:25.464576px;}
.ls33{letter-spacing:25.902532px;}
.ls2f{letter-spacing:26.390915px;}
.ls37{letter-spacing:26.396915px;}
.ls2e{letter-spacing:27.473050px;}
.ls8{letter-spacing:27.544781px;}
.ls9{letter-spacing:27.616512px;}
.ls1e{letter-spacing:28.056782px;}
.ls40{letter-spacing:28.333824px;}
.ls1f{letter-spacing:28.828987px;}
.lsc{letter-spacing:31.131341px;}
.ls13{letter-spacing:32.207309px;}
.ls57{letter-spacing:32.996131px;}
.lsa{letter-spacing:33.068083px;}
.ls50{letter-spacing:33.857126px;}
.ls54{letter-spacing:34.908950px;}
.ls6{letter-spacing:35.148288px;}
.ls52{letter-spacing:35.267604px;}
.ls43{letter-spacing:35.506944px;}
.ls3b{letter-spacing:36.582912px;}
.ls3c{letter-spacing:37.013299px;}
.ls51{letter-spacing:37.658880px;}
.ls21{letter-spacing:37.752245px;}
.ls4c{letter-spacing:38.017536px;}
.ls15{letter-spacing:38.304461px;}
.ls3f{letter-spacing:39.573813px;}
.ls14{letter-spacing:40.671590px;}
.lsb{letter-spacing:41.173709px;}
.ls66{letter-spacing:44.951251px;}
.ls5f{letter-spacing:45.011027px;}
.ls62{letter-spacing:45.788110px;}
.ls4e{letter-spacing:152.070144px;}
.ls34{letter-spacing:716.777971px;}
.ls36{letter-spacing:849.871258px;}
.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;}
}
.ws53{word-spacing:-54.620635px;}
.ws15{word-spacing:-45.664082px;}
.ws5b{word-spacing:-41.999373px;}
.ws56{word-spacing:-40.377742px;}
.ws60{word-spacing:-40.341627px;}
.ws2e{word-spacing:-35.112422px;}
.wsb0{word-spacing:-33.684972px;}
.wsb1{word-spacing:-23.355679px;}
.ws79{word-spacing:-22.050171px;}
.ws76{word-spacing:-21.189396px;}
.ws32{word-spacing:-21.117665px;}
.ws69{word-spacing:-19.510886px;}
.ws7a{word-spacing:-19.188096px;}
.ws50{word-spacing:-18.901171px;}
.wsaf{word-spacing:-18.829440px;}
.wsa8{word-spacing:-18.540986px;}
.ws75{word-spacing:-18.470784px;}
.ws34{word-spacing:-18.399053px;}
.ws5a{word-spacing:-18.232618px;}
.ws5c{word-spacing:-18.146818px;}
.wsb{word-spacing:-18.078561px;}
.ws9{word-spacing:-17.764378px;}
.wsc0{word-spacing:-17.681741px;}
.ws78{word-spacing:-17.602836px;}
.wsa3{word-spacing:-17.466547px;}
.ws90{word-spacing:-16.957256px;}
.ws61{word-spacing:-16.885524px;}
.ws13{word-spacing:-16.820966px;}
.ws20{word-spacing:-16.534042px;}
.ws97{word-spacing:-16.462310px;}
.ws51{word-spacing:-16.079024px;}
.wsbe{word-spacing:-15.960192px;}
.ws1e{word-spacing:-15.953019px;}
.ws1a{word-spacing:-15.829597px;}
.ws7d{word-spacing:-15.816730px;}
.ws80{word-spacing:-15.744998px;}
.ws64{word-spacing:-15.743520px;}
.ws8c{word-spacing:-15.673267px;}
.ws39{word-spacing:-15.601536px;}
.ws4d{word-spacing:-15.379169px;}
.ws77{word-spacing:-15.314611px;}
.ws96{word-spacing:-15.199841px;}
.ws9d{word-spacing:-15.099418px;}
.ws8d{word-spacing:-14.812493px;}
.ws4f{word-spacing:-14.453837px;}
.ws3f{word-spacing:-14.095181px;}
.ws52{word-spacing:-14.028391px;}
.ws40{word-spacing:-14.023450px;}
.ws55{word-spacing:-13.942591px;}
.wsd{word-spacing:-13.889466px;}
.ws9e{word-spacing:-13.836948px;}
.ws1f{word-spacing:-13.808256px;}
.ws1{word-spacing:-13.677667px;}
.ws2f{word-spacing:-13.442427px;}
.ws4e{word-spacing:-13.377869px;}
.ws21{word-spacing:-13.298964px;}
.ws4{word-spacing:-13.038556px;}
.ws26{word-spacing:-12.940308px;}
.ws6e{word-spacing:-12.804019px;}
.ws3{word-spacing:-12.776738px;}
.ws14{word-spacing:-12.732288px;}
.ws33{word-spacing:-12.509921px;}
.ws18{word-spacing:-12.445363px;}
.wsa0{word-spacing:-12.301901px;}
.ws44{word-spacing:-12.007803px;}
.ws6d{word-spacing:-11.871514px;}
.ws19{word-spacing:-11.728051px;}
.ws28{word-spacing:-11.656320px;}
.ws1b{word-spacing:-11.584589px;}
.ws7c{word-spacing:-11.369395px;}
.ws7{word-spacing:-11.336737px;}
.ws9f{word-spacing:-11.297664px;}
.wsa1{word-spacing:-11.254625px;}
.ws27{word-spacing:-11.225933px;}
.ws87{word-spacing:-11.147028px;}
.ws5{word-spacing:-11.009464px;}
.ws11{word-spacing:-10.878555px;}
.ws8f{word-spacing:-10.824238px;}
.ws29{word-spacing:-10.752507px;}
.ws93{word-spacing:-10.723814px;}
.ws22{word-spacing:-10.680776px;}
.ws48{word-spacing:-10.573179px;}
.ws7e{word-spacing:-10.436890px;}
.ws8b{word-spacing:-10.149965px;}
.ws70{word-spacing:-10.078234px;}
.ws4b{word-spacing:-9.934771px;}
.ws6{word-spacing:-9.831281px;}
.ws68{word-spacing:-9.719578px;}
.ws86{word-spacing:-9.647846px;}
.ws2a{word-spacing:-9.640673px;}
.ws49{word-spacing:-9.145728px;}
.ws30{word-spacing:-9.138555px;}
.wsc{word-spacing:-9.045826px;}
.ws8e{word-spacing:-9.002266px;}
.ws23{word-spacing:-8.858803px;}
.ws67{word-spacing:-8.715341px;}
.ws3b{word-spacing:-8.708168px;}
.wsad{word-spacing:-8.392550px;}
.ws10{word-spacing:-8.129461px;}
.wsa4{word-spacing:-7.854566px;}
.wsab{word-spacing:-7.603507px;}
.ws3e{word-spacing:-7.567642px;}
.wsbc{word-spacing:-7.352448px;}
.wsa5{word-spacing:-7.165947px;}
.wse{word-spacing:-7.147642px;}
.ws8{word-spacing:-6.885824px;}
.ws45{word-spacing:-6.706867px;}
.ws89{word-spacing:-6.563405px;}
.wse5{word-spacing:-6.336214px;}
.ws24{word-spacing:-6.276480px;}
.ws7b{word-spacing:-6.249190px;}
.wsfc{word-spacing:-6.097111px;}
.ws8a{word-spacing:-6.018248px;}
.ws17{word-spacing:-5.989555px;}
.wsf{word-spacing:-5.969460px;}
.ws94{word-spacing:-5.917824px;}
.ws25{word-spacing:-5.803054px;}
.ws107{word-spacing:-5.798233px;}
.ws95{word-spacing:-5.702630px;}
.ws110{word-spacing:-5.618906px;}
.wsfe{word-spacing:-5.559131px;}
.wsf7{word-spacing:-5.439580px;}
.ws5d{word-spacing:-5.272243px;}
.wsf6{word-spacing:-5.260253px;}
.ws88{word-spacing:-5.200512px;}
.wsc6{word-spacing:-5.080926px;}
.ws38{word-spacing:-4.985318px;}
.wse4{word-spacing:-4.782048px;}
.ws85{word-spacing:-4.698394px;}
.ws16{word-spacing:-4.554931px;}
.ws81{word-spacing:-4.483200px;}
.ws91{word-spacing:-4.411469px;}
.ws92{word-spacing:-4.296699px;}
.ws59{word-spacing:-4.290028px;}
.ws74{word-spacing:-4.052813px;}
.ws35{word-spacing:-3.973908px;}
.wse3{word-spacing:-3.825638px;}
.ws9a{word-spacing:-3.722849px;}
.ws5f{word-spacing:-3.586560px;}
.wsa2{word-spacing:-3.550694px;}
.wsaa{word-spacing:-3.514829px;}
.ws37{word-spacing:-3.407232px;}
.wsb8{word-spacing:-3.120307px;}
.ws2b{word-spacing:-2.395822px;}
.ws82{word-spacing:-1.972608px;}
.wsbf{word-spacing:-1.900877px;}
.ws4c{word-spacing:-1.829146px;}
.ws62{word-spacing:-1.685683px;}
.ws6f{word-spacing:-1.613952px;}
.ws66{word-spacing:-1.319854px;}
.ws65{word-spacing:-1.111834px;}
.ws41{word-spacing:-1.104660px;}
.ws46{word-spacing:-1.040102px;}
.ws43{word-spacing:-0.896640px;}
.ws63{word-spacing:-0.817736px;}
.ws3d{word-spacing:-0.746004px;}
.ws4a{word-spacing:-0.351483px;}
.ws98{word-spacing:-0.179328px;}
.ws99{word-spacing:-0.136289px;}
.ws47{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.086077px;}
.wsa6{word-spacing:-0.071731px;}
.wsa{word-spacing:-0.065455px;}
.wsc2{word-spacing:-0.059776px;}
.ws54{word-spacing:-0.057200px;}
.ws73{word-spacing:-0.047821px;}
.ws1d{word-spacing:0.000000px;}
.ws3a{word-spacing:0.035866px;}
.ws5e{word-spacing:0.358656px;}
.ws31{word-spacing:0.430387px;}
.ws57{word-spacing:0.514803px;}
.wsae{word-spacing:1.506355px;}
.wsa9{word-spacing:1.972608px;}
.ws9b{word-spacing:2.015647px;}
.wsb5{word-spacing:3.012710px;}
.wsb3{word-spacing:3.084442px;}
.ws102{word-spacing:3.108331px;}
.ws71{word-spacing:3.156173px;}
.wsb9{word-spacing:5.272243px;}
.ws2c{word-spacing:6.097152px;}
.ws36{word-spacing:7.503084px;}
.ws3c{word-spacing:7.531776px;}
.wsdc{word-spacing:8.249033px;}
.wsd1{word-spacing:8.308808px;}
.ws10f{word-spacing:8.428360px;}
.wsf8{word-spacing:8.547911px;}
.wsde{word-spacing:8.607686px;}
.wsf4{word-spacing:8.667462px;}
.wsd7{word-spacing:8.727238px;}
.wsda{word-spacing:8.787013px;}
.wsdd{word-spacing:8.846789px;}
.wsdb{word-spacing:8.906564px;}
.ws113{word-spacing:8.966340px;}
.wse2{word-spacing:9.085891px;}
.ws101{word-spacing:9.324994px;}
.wsd8{word-spacing:9.683647px;}
.wsc9{word-spacing:11.417140px;}
.ws42{word-spacing:12.380805px;}
.wsb7{word-spacing:12.481229px;}
.wsb4{word-spacing:13.628928px;}
.ws122{word-spacing:13.688612px;}
.ws84{word-spacing:17.072026px;}
.wsbd{word-spacing:18.147994px;}
.wsb6{word-spacing:18.506650px;}
.ws1c{word-spacing:19.845499px;}
.ws7f{word-spacing:22.867701px;}
.wsa7{word-spacing:23.312640px;}
.ws9c{word-spacing:23.384371px;}
.ws72{word-spacing:24.281281px;}
.ws118{word-spacing:32.099497px;}
.ws2d{word-spacing:32.287328px;}
.ws108{word-spacing:32.398375px;}
.wsf2{word-spacing:32.876580px;}
.wscc{word-spacing:32.960266px;}
.ws10b{word-spacing:33.055907px;}
.ws10e{word-spacing:33.295009px;}
.ws10c{word-spacing:33.474336px;}
.ws11f{word-spacing:33.952541px;}
.wse9{word-spacing:34.430746px;}
.ws11a{word-spacing:34.490521px;}
.wse0{word-spacing:34.574207px;}
.wsca{word-spacing:34.610072px;}
.wse8{word-spacing:34.908950px;}
.ws106{word-spacing:35.028502px;}
.wsfb{word-spacing:35.148053px;}
.wsd6{word-spacing:35.650168px;}
.wsce{word-spacing:35.709943px;}
.ws112{word-spacing:35.984911px;}
.wsc3{word-spacing:36.403340px;}
.wsed{word-spacing:36.702218px;}
.wsc1{word-spacing:37.240199px;}
.wsc5{word-spacing:37.419526px;}
.wsf0{word-spacing:37.479301px;}
.ws121{word-spacing:37.539077px;}
.wsc8{word-spacing:37.598852px;}
.wsc7{word-spacing:37.957506px;}
.wsc4{word-spacing:38.136833px;}
.ws10d{word-spacing:38.495486px;}
.ws83{word-spacing:42.241030px;}
.ws104{word-spacing:42.799330px;}
.wsec{word-spacing:42.859105px;}
.ws0{word-spacing:43.763175px;}
.wscf{word-spacing:43.815515px;}
.wsd5{word-spacing:43.875290px;}
.wsd9{word-spacing:44.473046px;}
.wsea{word-spacing:44.891476px;}
.wsf5{word-spacing:44.951251px;}
.wsd3{word-spacing:45.130578px;}
.wsdf{word-spacing:45.429456px;}
.ws114{word-spacing:45.489232px;}
.wsfd{word-spacing:45.728334px;}
.wscd{word-spacing:45.967436px;}
.ws109{word-spacing:46.206539px;}
.wscb{word-spacing:46.445641px;}
.wsf3{word-spacing:46.505417px;}
.wsef{word-spacing:47.162948px;}
.ws120{word-spacing:47.222724px;}
.ws11c{word-spacing:47.282500px;}
.wsee{word-spacing:47.461826px;}
.wsfa{word-spacing:47.521602px;}
.ws117{word-spacing:48.179134px;}
.wse1{word-spacing:48.298685px;}
.ws12{word-spacing:55.726250px;}
.wsba{word-spacing:132.487526px;}
.ws58{word-spacing:162.272176px;}
.ws105{word-spacing:182.518817px;}
.wsd0{word-spacing:183.594778px;}
.wsd4{word-spacing:184.192534px;}
.wsd2{word-spacing:184.610963px;}
.wsff{word-spacing:185.447821px;}
.wse7{word-spacing:185.806475px;}
.wse6{word-spacing:185.926026px;}
.wsf1{word-spacing:186.045577px;}
.wseb{word-spacing:186.105353px;}
.wsf9{word-spacing:186.224904px;}
.ws10a{word-spacing:186.344455px;}
.ws6c{word-spacing:208.996024px;}
.ws6a{word-spacing:214.153498px;}
.ws111{word-spacing:335.723680px;}
.ws100{word-spacing:336.680089px;}
.ws103{word-spacing:336.799640px;}
.wsbb{word-spacing:340.651469px;}
.wsb2{word-spacing:364.131671px;}
.wsac{word-spacing:424.541107px;}
.ws116{word-spacing:484.804026px;}
.ws11b{word-spacing:485.820211px;}
.ws115{word-spacing:486.657070px;}
.ws119{word-spacing:487.135274px;}
.ws11e{word-spacing:637.470908px;}
.ws11d{word-spacing:637.829562px;}
.ws6b{word-spacing:788.074829px;}
._3e{margin-left:-35.420873px;}
._3f{margin-left:-28.032575px;}
._71{margin-left:-9.296316px;}
._14{margin-left:-7.833025px;}
._11{margin-left:-6.671002px;}
._8{margin-left:-5.432732px;}
._3c{margin-left:-4.346953px;}
._f{margin-left:-3.285275px;}
._1{margin-left:-2.238007px;}
._c{margin-left:-1.178180px;}
._9{width:1.321643px;}
._0{width:2.324084px;}
._2{width:4.115568px;}
._51{width:5.164646px;}
._65{width:6.168883px;}
._1e{width:7.522285px;}
._1c{width:8.890338px;}
._57{width:10.357973px;}
._3b{width:11.887717px;}
._75{width:13.550232px;}
._4b{width:15.924326px;}
._39{width:16.941127px;}
._18{width:18.320136px;}
._27{width:19.941274px;}
._6e{width:21.401007px;}
._4{width:22.626669px;}
._e{width:23.726886px;}
._3d{width:25.407185px;}
._6{width:26.443658px;}
._40{width:27.578057px;}
._3{width:28.800024px;}
._12{width:30.127104px;}
._15{width:31.203072px;}
._13{width:32.408142px;}
._38{width:33.641933px;}
._7{width:34.952756px;}
._a{width:36.798036px;}
._17{width:38.103607px;}
._76{width:39.186489px;}
._5{width:40.417769px;}
._74{width:42.459916px;}
._b{width:44.312764px;}
._16{width:46.121365px;}
._73{width:47.294275px;}
._d{width:48.405990px;}
._72{width:49.864468px;}
._5e{width:57.652223px;}
._70{width:60.693644px;}
._56{width:64.605799px;}
._28{width:70.153114px;}
._2b{width:71.731200px;}
._53{width:74.889935px;}
._5a{width:76.075555px;}
._29{width:82.203955px;}
._41{width:84.355129px;}
._19{width:89.016771px;}
._10{width:94.684920px;}
._60{width:102.398856px;}
._23{width:109.617313px;}
._3a{width:111.452500px;}
._44{width:114.781786px;}
._26{width:126.683044px;}
._45{width:130.180356px;}
._5c{width:132.298545px;}
._59{width:135.462446px;}
._43{width:139.961155px;}
._1d{width:142.298746px;}
._69{width:146.565880px;}
._6a{width:151.278297px;}
._49{width:154.649980px;}
._20{width:156.292817px;}
._46{width:159.620959px;}
._24{width:162.272176px;}
._63{width:165.459878px;}
._58{width:169.656147px;}
._54{width:171.320317px;}
._4a{width:176.585955px;}
._5b{width:178.864328px;}
._5d{width:193.361191px;}
._22{width:199.269429px;}
._1b{width:204.271549px;}
._47{width:206.043267px;}
._5f{width:225.549105px;}
._1f{width:230.629854px;}
._67{width:235.250753px;}
._4e{width:236.287265px;}
._31{width:249.337651px;}
._4c{width:257.168218px;}
._61{width:260.073331px;}
._1a{width:272.870258px;}
._4f{width:283.773313px;}
._50{width:287.399018px;}
._21{width:291.410648px;}
._52{width:292.412436px;}
._48{width:299.788785px;}
._6d{width:308.683453px;}
._25{width:312.362329px;}
._6f{width:323.890468px;}
._2d{width:346.461696px;}
._4d{width:354.404920px;}
._37{width:377.521306px;}
._2f{width:381.538253px;}
._66{width:386.748512px;}
._62{width:388.814377px;}
._55{width:402.385908px;}
._36{width:421.492531px;}
._2a{width:424.433510px;}
._68{width:434.126976px;}
._64{width:447.619608px;}
._6b{width:462.746871px;}
._35{width:515.388672px;}
._6c{width:522.889837px;}
._2c{width:541.068442px;}
._2e{width:611.293286px;}
._30{width:669.825946px;}
._42{width:688.864934px;}
._32{width:704.974234px;}
._34{width:740.050790px;}
._33{width:798.583450px;}
.fc3{color:rgb(0,153,0);}
.fc4{color:rgb(148,0,209);}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs9{font-size:57.200132px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs6{font-size:71.731200px;}
.fs8{font-size:85.800558px;}
.fs1{font-size:86.077200px;}
.fs5{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y21{bottom:61.467000px;}
.y47{bottom:106.299000px;}
.y14e{bottom:116.436000px;}
.y20{bottom:119.551500px;}
.y115{bottom:124.231500px;}
.y46{bottom:127.968000px;}
.y14d{bottom:134.368500px;}
.ye1{bottom:141.298500px;}
.y114{bottom:142.164000px;}
.y1f{bottom:146.307000px;}
.y45{bottom:149.637000px;}
.y14c{bottom:152.301000px;}
.y113{bottom:160.098000px;}
.y66{bottom:161.763000px;}
.ye0{bottom:162.967500px;}
.y1e{bottom:167.976000px;}
.y14b{bottom:170.233500px;}
.y112{bottom:178.030500px;}
.ydf{bottom:185.233500px;}
.y44{bottom:185.803500px;}
.y14a{bottom:188.167500px;}
.y65{bottom:195.558000px;}
.y111{bottom:195.963000px;}
.y1d{bottom:201.223500px;}
.y149{bottom:206.100000px;}
.yde{bottom:206.902500px;}
.y43{bottom:207.472500px;}
.y83{bottom:207.663000px;}
.y110{bottom:213.895500px;}
.y64{bottom:223.719000px;}
.y148{bottom:224.032500px;}
.y42{bottom:229.140000px;}
.ydd{bottom:229.168500px;}
.y82{bottom:229.330500px;}
.y10f{bottom:231.828000px;}
.y147{bottom:241.965000px;}
.y63{bottom:245.388000px;}
.y1c{bottom:245.875500px;}
.y10e{bottom:249.760500px;}
.y41{bottom:250.809000px;}
.ydc{bottom:251.436000px;}
.y146{bottom:259.897500px;}
.y81{bottom:262.578000px;}
.y10d{bottom:267.694500px;}
.y40{bottom:272.478000px;}
.ydb{bottom:273.105000px;}
.y145{bottom:277.830000px;}
.y62{bottom:278.635500px;}
.y10c{bottom:285.627000px;}
.yda{bottom:295.371000px;}
.y144{bottom:295.764000px;}
.y10b{bottom:303.559500px;}
.y1b{bottom:305.770500px;}
.y3f{bottom:308.644500px;}
.y143{bottom:313.696500px;}
.y80{bottom:314.565000px;}
.yd9{bottom:317.637000px;}
.y10a{bottom:321.492000px;}
.y61{bottom:323.935500px;}
.y1a{bottom:327.438000px;}
.y3e{bottom:330.313500px;}
.y142{bottom:331.629000px;}
.y109{bottom:339.424500px;}
.yd8{bottom:339.904500px;}
.y14f{bottom:341.343000px;}
.y19{bottom:349.107000px;}
.y141{bottom:349.561500px;}
.y60{bottom:350.259000px;}
.y3d{bottom:351.982500px;}
.y7f{bottom:354.166500px;}
.y108{bottom:357.357000px;}
.yd7{bottom:362.170500px;}
.y140{bottom:367.494000px;}
.y18{bottom:370.776000px;}
.y3c{bottom:373.651500px;}
.y107{bottom:375.291000px;}
.y9b{bottom:376.905000px;}
.y5f{bottom:384.055500px;}
.yd6{bottom:384.436500px;}
.y13f{bottom:385.426500px;}
.y17{bottom:392.445000px;}
.y106{bottom:393.223500px;}
.y7e{bottom:393.768000px;}
.y3b{bottom:395.319000px;}
.y9a{bottom:398.574000px;}
.y13e{bottom:403.360500px;}
.yd5{bottom:406.105500px;}
.yb8{bottom:409.516500px;}
.y105{bottom:411.156000px;}
.y16{bottom:414.114000px;}
.y5e{bottom:419.859000px;}
.y99{bottom:420.243000px;}
.y13d{bottom:421.293000px;}
.y7d{bottom:425.151000px;}
.yd4{bottom:428.371500px;}
.y104{bottom:429.088500px;}
.yb7{bottom:431.185500px;}
.y3a{bottom:431.485500px;}
.y13c{bottom:439.225500px;}
.y98{bottom:441.912000px;}
.y103{bottom:447.021000px;}
.y5d{bottom:449.599500px;}
.yd3{bottom:450.639000px;}
.y39{bottom:453.154500px;}
.y15{bottom:453.537000px;}
.y13b{bottom:457.158000px;}
.yb6{bottom:463.314000px;}
.y97{bottom:463.581000px;}
.y102{bottom:464.953500px;}
.y7c{bottom:468.487500px;}
.yd2{bottom:472.905000px;}
.y38{bottom:474.823500px;}
.y13a{bottom:475.090500px;}
.y101{bottom:482.887500px;}
.y5c{bottom:483.394500px;}
.yb5{bottom:484.983000px;}
.y7b{bottom:490.156500px;}
.y139{bottom:493.023000px;}
.yd1{bottom:494.574000px;}
.y100{bottom:500.820000px;}
.y96{bottom:503.002500px;}
.yb4{bottom:506.652000px;}
.y37{bottom:510.097500px;}
.y138{bottom:510.957000px;}
.y7a{bottom:511.825500px;}
.y14{bottom:513.430500px;}
.yd0{bottom:516.840000px;}
.y5b{bottom:517.191000px;}
.yff{bottom:518.752500px;}
.y137{bottom:528.889500px;}
.y36{bottom:531.766500px;}
.y13{bottom:533.754000px;}
.yfe{bottom:536.685000px;}
.yb3{bottom:538.782000px;}
.ycf{bottom:539.106000px;}
.y79{bottom:545.073000px;}
.y5a{bottom:545.350500px;}
.y136{bottom:546.822000px;}
.y12{bottom:554.077500px;}
.yfd{bottom:554.617500px;}
.yb2{bottom:560.449500px;}
.yce{bottom:560.775000px;}
.y95{bottom:562.897500px;}
.y135{bottom:564.754500px;}
.y35{bottom:565.014000px;}
.y59{bottom:567.019500px;}
.yfc{bottom:572.551500px;}
.y11{bottom:574.401000px;}
.yb1{bottom:582.118500px;}
.y134{bottom:582.687000px;}
.ycd{bottom:583.042500px;}
.y94{bottom:584.565000px;}
.yfb{bottom:590.484000px;}
.y78{bottom:591.829500px;}
.y10{bottom:594.724500px;}
.y58{bottom:600.267000px;}
.y133{bottom:600.619500px;}
.ycc{bottom:605.308500px;}
.y93{bottom:606.234000px;}
.yfa{bottom:608.416500px;}
.y77{bottom:613.497000px;}
.yb0{bottom:614.248500px;}
.yf{bottom:615.049500px;}
.y34{bottom:616.770000px;}
.y132{bottom:618.553500px;}
.yf9{bottom:626.349000px;}
.ycb{bottom:626.977500px;}
.y92{bottom:627.903000px;}
.yaf{bottom:632.244000px;}
.y57{bottom:633.514500px;}
.y76{bottom:635.166000px;}
.ye{bottom:635.373000px;}
.yae{bottom:635.917500px;}
.y131{bottom:636.486000px;}
.y33{bottom:638.437500px;}
.yf8{bottom:644.281500px;}
.yca{bottom:649.243500px;}
.y91{bottom:649.572000px;}
.y130{bottom:654.418500px;}
.yd{bottom:655.696500px;}
.yad{bottom:657.586500px;}
.y32{bottom:660.106500px;}
.yf7{bottom:662.214000px;}
.y90{bottom:671.241000px;}
.yc9{bottom:671.509500px;}
.y12f{bottom:672.351000px;}
.yc{bottom:676.020000px;}
.y56{bottom:678.168000px;}
.yf6{bottom:680.148000px;}
.y75{bottom:684.855000px;}
.yac{bottom:689.715000px;}
.y12e{bottom:690.283500px;}
.y8f{bottom:692.910000px;}
.yc8{bottom:693.178500px;}
.y31{bottom:696.273000px;}
.yb{bottom:696.343500px;}
.yf5{bottom:698.080500px;}
.y74{bottom:707.121000px;}
.y12d{bottom:708.216000px;}
.yab{bottom:711.384000px;}
.y8e{bottom:714.577500px;}
.yc7{bottom:715.444500px;}
.yf4{bottom:716.013000px;}
.ya{bottom:716.668500px;}
.y30{bottom:717.942000px;}
.y12c{bottom:726.150000px;}
.y73{bottom:728.790000px;}
.yf3{bottom:733.945500px;}
.y9{bottom:736.992000px;}
.yc6{bottom:737.712000px;}
.yaa{bottom:743.514000px;}
.y12b{bottom:744.082500px;}
.y55{bottom:745.096066px;}
.y72{bottom:750.459000px;}
.yf2{bottom:751.878000px;}
.y8d{bottom:754.000500px;}
.y2f{bottom:754.108500px;}
.yc5{bottom:759.978000px;}
.y12a{bottom:762.015000px;}
.ya9{bottom:765.183000px;}
.y8{bottom:767.395500px;}
.yf1{bottom:769.810500px;}
.y54{bottom:771.731114px;}
.y71{bottom:772.128000px;}
.y129{bottom:779.947500px;}
.yc4{bottom:781.647000px;}
.ya8{bottom:786.850500px;}
.yf0{bottom:787.744500px;}
.y2e{bottom:790.275000px;}
.y70{bottom:793.797000px;}
.y128{bottom:797.880000px;}
.y53{bottom:798.364367px;}
.yc3{bottom:803.913000px;}
.yef{bottom:805.677000px;}
.y2d{bottom:811.944000px;}
.y8c{bottom:813.894000px;}
.y6f{bottom:815.464500px;}
.y127{bottom:815.812500px;}
.ya7{bottom:818.980500px;}
.yee{bottom:823.609500px;}
.y52{bottom:824.997620px;}
.yc2{bottom:826.180500px;}
.y126{bottom:833.746500px;}
.y8b{bottom:835.563000px;}
.y6e{bottom:837.133500px;}
.ya6{bottom:840.649500px;}
.yed{bottom:841.542000px;}
.yc1{bottom:848.446500px;}
.y2c{bottom:851.254500px;}
.y51{bottom:851.632668px;}
.y125{bottom:851.679000px;}
.y7{bottom:852.906000px;}
.y6d{bottom:858.802500px;}
.yec{bottom:859.474500px;}
.ya5{bottom:862.318500px;}
.y124{bottom:869.611500px;}
.yc0{bottom:870.115500px;}
.y8a{bottom:872.176500px;}
.yeb{bottom:877.407000px;}
.y50{bottom:878.265921px;}
.y6c{bottom:881.068500px;}
.ya4{bottom:883.987500px;}
.y2b{bottom:884.502000px;}
.y123{bottom:887.544000px;}
.ybf{bottom:892.381500px;}
.y89{bottom:893.845500px;}
.y6{bottom:894.844500px;}
.yea{bottom:895.341000px;}
.y4f{bottom:904.899174px;}
.y122{bottom:905.476500px;}
.ye9{bottom:913.273500px;}
.ybe{bottom:914.647500px;}
.ya3{bottom:916.116000px;}
.y6b{bottom:918.279000px;}
.y5{bottom:921.744000px;}
.y121{bottom:923.409000px;}
.y88{bottom:927.093000px;}
.ye8{bottom:931.206000px;}
.y4e{bottom:931.534222px;}
.y2a{bottom:936.258000px;}
.ybd{bottom:936.915000px;}
.ya2{bottom:937.785000px;}
.y120{bottom:941.343000px;}
.y4{bottom:948.642000px;}
.ye7{bottom:949.138500px;}
.y29{bottom:957.925500px;}
.y4d{bottom:958.167475px;}
.ybc{bottom:959.181000px;}
.y11f{bottom:959.275500px;}
.y6a{bottom:960.345000px;}
.ya1{bottom:969.915000px;}
.y87{bottom:973.848000px;}
.ye6{bottom:974.091000px;}
.y11e{bottom:977.208000px;}
.ybb{bottom:981.447000px;}
.y69{bottom:982.014000px;}
.y4c{bottom:984.800728px;}
.y28{bottom:994.092000px;}
.y11d{bottom:995.140500px;}
.ye5{bottom:995.758500px;}
.y3{bottom:1001.874000px;}
.ya0{bottom:1002.043500px;}
.yba{bottom:1003.714500px;}
.y86{bottom:1010.461500px;}
.y4b{bottom:1011.435776px;}
.y11c{bottom:1013.073000px;}
.y68{bottom:1015.261500px;}
.y27{bottom:1015.761000px;}
.y9f{bottom:1023.712500px;}
.y2{bottom:1028.773500px;}
.y11b{bottom:1031.005500px;}
.y85{bottom:1032.130500px;}
.ye4{bottom:1035.181500px;}
.y26{bottom:1037.430000px;}
.yb9{bottom:1040.925000px;}
.y9e{bottom:1045.381500px;}
.y11a{bottom:1048.939500px;}
.y4a{bottom:1051.737000px;}
.y25{bottom:1059.099000px;}
.y67{bottom:1062.018000px;}
.y1{bottom:1066.132500px;}
.y119{bottom:1066.872000px;}
.y84{bottom:1068.742500px;}
.y9d{bottom:1077.511500px;}
.y49{bottom:1083.687000px;}
.y118{bottom:1084.804500px;}
.y24{bottom:1095.265500px;}
.y9c{bottom:1099.180500px;}
.ye3{bottom:1101.766500px;}
.y117{bottom:1102.737000px;}
.y48{bottom:1105.354500px;}
.y23{bottom:1116.934500px;}
.y116{bottom:1120.669500px;}
.ye2{bottom:1123.434000px;}
.y22{bottom:1138.602000px;}
.hb{height:23.195476px;}
.h16{height:24.281011px;}
.h15{height:41.603818px;}
.h6{height:49.156405px;}
.h5{height:53.195710px;}
.hf{height:53.798400px;}
.h9{height:53.870131px;}
.hc{height:53.941862px;}
.h7{height:56.080726px;}
.h11{height:58.354726px;}
.h10{height:58.360726px;}
.h3{height:60.598349px;}
.h13{height:61.942726px;}
.he{height:64.436219px;}
.hd{height:64.522019px;}
.ha{height:64.643977px;}
.h14{height:68.564131px;}
.h12{height:70.344624px;}
.h4{height:76.133476px;}
.h8{height:77.675885px;}
.h2{height:87.030450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:82.393500px;}
.x1d{left:87.871500px;}
.x1c{left:93.349500px;}
.xb{left:106.299000px;}
.x17{left:115.077000px;}
.x11{left:117.738883px;}
.xc{left:126.489000px;}
.xf{left:127.762500px;}
.xe{left:132.639000px;}
.x1f{left:137.128500px;}
.x18{left:142.386000px;}
.x1e{left:146.646000px;}
.xa{left:150.196500px;}
.x13{left:169.962000px;}
.x9{left:174.603000px;}
.x2{left:179.884500px;}
.x10{left:184.186500px;}
.x1{left:205.336500px;}
.x3{left:243.298500px;}
.x14{left:245.304000px;}
.x19{left:254.437500px;}
.x12{left:262.915500px;}
.x21{left:279.229500px;}
.x1b{left:280.483500px;}
.x5{left:293.554500px;}
.x15{left:307.179000px;}
.x6{left:313.885500px;}
.x16{left:340.554000px;}
.x7{left:366.943500px;}
.x4{left:378.739500px;}
.x8{left:410.724000px;}
.x22{left:437.679000px;}
.xd{left:442.068000px;}
.x1a{left:554.131500px;}
@media print{
.v4{vertical-align:-19.285333pt;}
.v5{vertical-align:-11.438288pt;}
.v3{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:9.562667pt;}
.va{vertical-align:13.061333pt;}
.v8{vertical-align:15.002667pt;}
.v2{vertical-align:21.114667pt;}
.v6{vertical-align:23.141333pt;}
.v7{vertical-align:26.325333pt;}
.v1{vertical-align:27.770667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000391pt;}
.ls46{letter-spacing:0.005243pt;}
.ls3a{letter-spacing:0.022994pt;}
.ls35{letter-spacing:0.023487pt;}
.ls2{letter-spacing:2.094547pt;}
.ls3d{letter-spacing:2.231637pt;}
.ls38{letter-spacing:2.653258pt;}
.ls1{letter-spacing:2.655975pt;}
.ls3{letter-spacing:2.658591pt;}
.ls48{letter-spacing:2.659144pt;}
.ls47{letter-spacing:2.659603pt;}
.ls4{letter-spacing:2.660350pt;}
.ls23{letter-spacing:2.847295pt;}
.ls4f{letter-spacing:2.869248pt;}
.ls1b{letter-spacing:3.188053pt;}
.ls59{letter-spacing:3.347434pt;}
.ls4a{letter-spacing:3.953186pt;}
.ls49{letter-spacing:4.016947pt;}
.ls5a{letter-spacing:4.197575pt;}
.ls55{letter-spacing:4.463245pt;}
.ls27{letter-spacing:4.527036pt;}
.lsd{letter-spacing:4.590797pt;}
.ls60{letter-spacing:4.622646pt;}
.ls53{letter-spacing:4.782048pt;}
.ls63{letter-spacing:4.835182pt;}
.ls5d{letter-spacing:4.888316pt;}
.ls56{letter-spacing:4.941450pt;}
.ls5e{letter-spacing:4.994583pt;}
.ls12{letter-spacing:5.037124pt;}
.ls64{letter-spacing:5.100851pt;}
.ls5c{letter-spacing:5.153985pt;}
.ls67{letter-spacing:5.207119pt;}
.ls65{letter-spacing:5.260253pt;}
.ls61{letter-spacing:5.366521pt;}
.ls58{letter-spacing:5.472788pt;}
.ls5b{letter-spacing:5.579056pt;}
.ls30{letter-spacing:6.822434pt;}
.ls7{letter-spacing:8.671505pt;}
.ls45{letter-spacing:9.819204pt;}
.ls44{letter-spacing:9.882965pt;}
.lsf{letter-spacing:14.154957pt;}
.ls2a{letter-spacing:14.218718pt;}
.ls24{letter-spacing:15.170291pt;}
.ls17{letter-spacing:15.175134pt;}
.ls16{letter-spacing:15.238895pt;}
.ls0{letter-spacing:15.301831pt;}
.ls41{letter-spacing:15.876506pt;}
.lse{letter-spacing:15.940267pt;}
.ls1d{letter-spacing:16.931310pt;}
.ls26{letter-spacing:17.661815pt;}
.ls32{letter-spacing:17.725577pt;}
.ls18{letter-spacing:18.490709pt;}
.ls39{letter-spacing:18.554470pt;}
.ls22{letter-spacing:18.990523pt;}
.ls1c{letter-spacing:19.066791pt;}
.ls4d{letter-spacing:19.383364pt;}
.ls3e{letter-spacing:19.829692pt;}
.ls29{letter-spacing:19.893453pt;}
.ls4b{letter-spacing:20.020975pt;}
.ls1a{letter-spacing:20.148497pt;}
.ls19{letter-spacing:20.212258pt;}
.ls2c{letter-spacing:20.365258pt;}
.ls2d{letter-spacing:20.786108pt;}
.ls10{letter-spacing:20.849869pt;}
.ls25{letter-spacing:21.126004pt;}
.ls20{letter-spacing:21.202271pt;}
.ls42{letter-spacing:21.423718pt;}
.ls28{letter-spacing:22.252612pt;}
.ls31{letter-spacing:22.316373pt;}
.ls11{letter-spacing:22.635179pt;}
.ls33{letter-spacing:23.024473pt;}
.ls2f{letter-spacing:23.458591pt;}
.ls37{letter-spacing:23.463925pt;}
.ls2e{letter-spacing:24.420489pt;}
.ls8{letter-spacing:24.484250pt;}
.ls9{letter-spacing:24.548011pt;}
.ls1e{letter-spacing:24.939362pt;}
.ls40{letter-spacing:25.185621pt;}
.ls1f{letter-spacing:25.625767pt;}
.lsc{letter-spacing:27.672303pt;}
.ls13{letter-spacing:28.628719pt;}
.ls57{letter-spacing:29.329894pt;}
.lsa{letter-spacing:29.393852pt;}
.ls50{letter-spacing:30.095223pt;}
.ls54{letter-spacing:31.030178pt;}
.ls6{letter-spacing:31.242923pt;}
.ls52{letter-spacing:31.348981pt;}
.ls43{letter-spacing:31.561728pt;}
.ls3b{letter-spacing:32.518144pt;}
.ls3c{letter-spacing:32.900710pt;}
.ls51{letter-spacing:33.474560pt;}
.ls21{letter-spacing:33.557551pt;}
.ls4c{letter-spacing:33.793365pt;}
.ls15{letter-spacing:34.048410pt;}
.ls3f{letter-spacing:35.176723pt;}
.ls14{letter-spacing:36.152525pt;}
.lsb{letter-spacing:36.598852pt;}
.ls66{letter-spacing:39.956668pt;}
.ls5f{letter-spacing:40.009802pt;}
.ls62{letter-spacing:40.700542pt;}
.ls4e{letter-spacing:135.173461pt;}
.ls34{letter-spacing:637.135975pt;}
.ls36{letter-spacing:755.441118pt;}
.ws53{word-spacing:-48.551676pt;}
.ws15{word-spacing:-40.590295pt;}
.ws5b{word-spacing:-37.332776pt;}
.ws56{word-spacing:-35.891327pt;}
.ws60{word-spacing:-35.859224pt;}
.ws2e{word-spacing:-31.211042pt;}
.wsb0{word-spacing:-29.942197pt;}
.wsb1{word-spacing:-20.760603pt;}
.ws79{word-spacing:-19.600152pt;}
.ws76{word-spacing:-18.835019pt;}
.ws32{word-spacing:-18.771258pt;}
.ws69{word-spacing:-17.343010pt;}
.ws7a{word-spacing:-17.056085pt;}
.ws50{word-spacing:-16.801041pt;}
.wsaf{word-spacing:-16.737280pt;}
.wsa8{word-spacing:-16.480876pt;}
.ws75{word-spacing:-16.418475pt;}
.ws34{word-spacing:-16.354714pt;}
.ws5a{word-spacing:-16.206772pt;}
.ws5c{word-spacing:-16.130505pt;}
.wsb{word-spacing:-16.069832pt;}
.ws9{word-spacing:-15.790559pt;}
.wsc0{word-spacing:-15.717103pt;}
.ws78{word-spacing:-15.646966pt;}
.wsa3{word-spacing:-15.525820pt;}
.ws90{word-spacing:-15.073116pt;}
.ws61{word-spacing:-15.009355pt;}
.ws13{word-spacing:-14.951970pt;}
.ws20{word-spacing:-14.696926pt;}
.ws97{word-spacing:-14.633165pt;}
.ws51{word-spacing:-14.292466pt;}
.wsbe{word-spacing:-14.186837pt;}
.ws1e{word-spacing:-14.180461pt;}
.ws1a{word-spacing:-14.070753pt;}
.ws7d{word-spacing:-14.059315pt;}
.ws80{word-spacing:-13.995554pt;}
.ws64{word-spacing:-13.994240pt;}
.ws8c{word-spacing:-13.931793pt;}
.ws39{word-spacing:-13.868032pt;}
.ws4d{word-spacing:-13.670373pt;}
.ws77{word-spacing:-13.612988pt;}
.ws96{word-spacing:-13.510970pt;}
.ws9d{word-spacing:-13.421705pt;}
.ws8d{word-spacing:-13.166660pt;}
.ws4f{word-spacing:-12.847855pt;}
.ws3f{word-spacing:-12.529050pt;}
.ws52{word-spacing:-12.469681pt;}
.ws40{word-spacing:-12.465289pt;}
.ws55{word-spacing:-12.393414pt;}
.wsd{word-spacing:-12.346192pt;}
.ws9e{word-spacing:-12.299510pt;}
.ws1f{word-spacing:-12.274005pt;}
.ws1{word-spacing:-12.157926pt;}
.ws2f{word-spacing:-11.948824pt;}
.ws4e{word-spacing:-11.891439pt;}
.ws21{word-spacing:-11.821302pt;}
.ws4{word-spacing:-11.589828pt;}
.ws26{word-spacing:-11.502496pt;}
.ws6e{word-spacing:-11.381350pt;}
.ws3{word-spacing:-11.357100pt;}
.ws14{word-spacing:-11.317589pt;}
.ws33{word-spacing:-11.119930pt;}
.ws18{word-spacing:-11.062545pt;}
.wsa0{word-spacing:-10.935023pt;}
.ws44{word-spacing:-10.673603pt;}
.ws6d{word-spacing:-10.552457pt;}
.ws19{word-spacing:-10.424934pt;}
.ws28{word-spacing:-10.361173pt;}
.ws1b{word-spacing:-10.297412pt;}
.ws7c{word-spacing:-10.106129pt;}
.ws7{word-spacing:-10.077099pt;}
.ws9f{word-spacing:-10.042368pt;}
.wsa1{word-spacing:-10.004111pt;}
.ws27{word-spacing:-9.978607pt;}
.ws87{word-spacing:-9.908470pt;}
.ws5{word-spacing:-9.786190pt;}
.ws11{word-spacing:-9.669826pt;}
.ws8f{word-spacing:-9.621545pt;}
.ws29{word-spacing:-9.557784pt;}
.ws93{word-spacing:-9.532279pt;}
.ws22{word-spacing:-9.494023pt;}
.ws48{word-spacing:-9.398381pt;}
.ws7e{word-spacing:-9.277235pt;}
.ws8b{word-spacing:-9.022191pt;}
.ws70{word-spacing:-8.958430pt;}
.ws4b{word-spacing:-8.830908pt;}
.ws6{word-spacing:-8.738916pt;}
.ws68{word-spacing:-8.639625pt;}
.ws86{word-spacing:-8.575863pt;}
.ws2a{word-spacing:-8.569487pt;}
.ws49{word-spacing:-8.129536pt;}
.ws30{word-spacing:-8.123160pt;}
.wsc{word-spacing:-8.040734pt;}
.ws8e{word-spacing:-8.002014pt;}
.ws23{word-spacing:-7.874492pt;}
.ws67{word-spacing:-7.746970pt;}
.ws3b{word-spacing:-7.740593pt;}
.wsad{word-spacing:-7.460045pt;}
.ws10{word-spacing:-7.226188pt;}
.wsa4{word-spacing:-6.981837pt;}
.wsab{word-spacing:-6.758673pt;}
.ws3e{word-spacing:-6.726793pt;}
.wsbc{word-spacing:-6.535509pt;}
.wsa5{word-spacing:-6.369731pt;}
.wse{word-spacing:-6.353460pt;}
.ws8{word-spacing:-6.120732pt;}
.ws45{word-spacing:-5.961660pt;}
.ws89{word-spacing:-5.834138pt;}
.wse5{word-spacing:-5.632190pt;}
.ws24{word-spacing:-5.579093pt;}
.ws7b{word-spacing:-5.554836pt;}
.wsfc{word-spacing:-5.419654pt;}
.ws8a{word-spacing:-5.349553pt;}
.ws17{word-spacing:-5.324049pt;}
.wsf{word-spacing:-5.306186pt;}
.ws94{word-spacing:-5.260288pt;}
.ws25{word-spacing:-5.158270pt;}
.ws107{word-spacing:-5.153985pt;}
.ws95{word-spacing:-5.069005pt;}
.ws110{word-spacing:-4.994583pt;}
.wsfe{word-spacing:-4.941450pt;}
.wsf7{word-spacing:-4.835182pt;}
.ws5d{word-spacing:-4.686438pt;}
.wsf6{word-spacing:-4.675780pt;}
.ws88{word-spacing:-4.622677pt;}
.wsc6{word-spacing:-4.516379pt;}
.ws38{word-spacing:-4.431394pt;}
.wse4{word-spacing:-4.250709pt;}
.ws85{word-spacing:-4.176350pt;}
.ws16{word-spacing:-4.048828pt;}
.ws81{word-spacing:-3.985067pt;}
.ws91{word-spacing:-3.921306pt;}
.ws92{word-spacing:-3.819288pt;}
.ws59{word-spacing:-3.813358pt;}
.ws74{word-spacing:-3.602500pt;}
.ws35{word-spacing:-3.532363pt;}
.wse3{word-spacing:-3.400567pt;}
.ws9a{word-spacing:-3.309199pt;}
.ws5f{word-spacing:-3.188053pt;}
.wsa2{word-spacing:-3.156173pt;}
.wsaa{word-spacing:-3.124292pt;}
.ws37{word-spacing:-3.028651pt;}
.wsb8{word-spacing:-2.773606pt;}
.ws2b{word-spacing:-2.129620pt;}
.ws82{word-spacing:-1.753429pt;}
.wsbf{word-spacing:-1.689668pt;}
.ws4c{word-spacing:-1.625907pt;}
.ws62{word-spacing:-1.498385pt;}
.ws6f{word-spacing:-1.434624pt;}
.ws66{word-spacing:-1.173204pt;}
.ws65{word-spacing:-0.988297pt;}
.ws41{word-spacing:-0.981920pt;}
.ws46{word-spacing:-0.924535pt;}
.ws43{word-spacing:-0.797013pt;}
.ws63{word-spacing:-0.726876pt;}
.ws3d{word-spacing:-0.663115pt;}
.ws4a{word-spacing:-0.312429pt;}
.ws98{word-spacing:-0.159403pt;}
.ws99{word-spacing:-0.121146pt;}
.ws47{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.076513pt;}
.wsa6{word-spacing:-0.063761pt;}
.wsa{word-spacing:-0.058182pt;}
.wsc2{word-spacing:-0.053134pt;}
.ws54{word-spacing:-0.050845pt;}
.ws73{word-spacing:-0.042507pt;}
.ws1d{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.031881pt;}
.ws5e{word-spacing:0.318805pt;}
.ws31{word-spacing:0.382566pt;}
.ws57{word-spacing:0.457603pt;}
.wsae{word-spacing:1.338982pt;}
.wsa9{word-spacing:1.753429pt;}
.ws9b{word-spacing:1.791686pt;}
.wsb5{word-spacing:2.677965pt;}
.wsb3{word-spacing:2.741726pt;}
.ws102{word-spacing:2.762961pt;}
.ws71{word-spacing:2.805487pt;}
.wsb9{word-spacing:4.686438pt;}
.ws2c{word-spacing:5.419691pt;}
.ws36{word-spacing:6.669408pt;}
.ws3c{word-spacing:6.694912pt;}
.wsdc{word-spacing:7.332474pt;}
.wsd1{word-spacing:7.385607pt;}
.ws10f{word-spacing:7.491875pt;}
.wsf8{word-spacing:7.598143pt;}
.wsde{word-spacing:7.651277pt;}
.wsf4{word-spacing:7.704411pt;}
.wsd7{word-spacing:7.757545pt;}
.wsda{word-spacing:7.810678pt;}
.wsdd{word-spacing:7.863812pt;}
.wsdb{word-spacing:7.916946pt;}
.ws113{word-spacing:7.970080pt;}
.wse2{word-spacing:8.076348pt;}
.ws101{word-spacing:8.288883pt;}
.wsd8{word-spacing:8.607686pt;}
.wsc9{word-spacing:10.148569pt;}
.ws42{word-spacing:11.005160pt;}
.wsb7{word-spacing:11.094426pt;}
.wsb4{word-spacing:12.114603pt;}
.ws122{word-spacing:12.167655pt;}
.ws84{word-spacing:15.175134pt;}
.wsbd{word-spacing:16.131550pt;}
.wsb6{word-spacing:16.450355pt;}
.ws1c{word-spacing:17.640444pt;}
.ws7f{word-spacing:20.326846pt;}
.wsa7{word-spacing:20.722347pt;}
.ws9c{word-spacing:20.786108pt;}
.ws72{word-spacing:21.583361pt;}
.ws118{word-spacing:28.532886pt;}
.ws2d{word-spacing:28.699847pt;}
.ws108{word-spacing:28.798556pt;}
.wsf2{word-spacing:29.223627pt;}
.wscc{word-spacing:29.298014pt;}
.ws10b{word-spacing:29.383028pt;}
.ws10e{word-spacing:29.595564pt;}
.ws10c{word-spacing:29.754965pt;}
.ws11f{word-spacing:30.180036pt;}
.wse9{word-spacing:30.605107pt;}
.ws11a{word-spacing:30.658241pt;}
.wse0{word-spacing:30.732628pt;}
.wsca{word-spacing:30.764509pt;}
.wse8{word-spacing:31.030178pt;}
.ws106{word-spacing:31.136446pt;}
.wsfb{word-spacing:31.242714pt;}
.wsd6{word-spacing:31.689038pt;}
.wsce{word-spacing:31.742172pt;}
.ws112{word-spacing:31.986588pt;}
.wsc3{word-spacing:32.358525pt;}
.wsed{word-spacing:32.624194pt;}
.wsc1{word-spacing:33.102399pt;}
.wsc5{word-spacing:33.261801pt;}
.wsf0{word-spacing:33.314934pt;}
.ws121{word-spacing:33.368068pt;}
.wsc8{word-spacing:33.421202pt;}
.wsc7{word-spacing:33.740005pt;}
.wsc4{word-spacing:33.899407pt;}
.ws10d{word-spacing:34.218210pt;}
.ws83{word-spacing:37.547582pt;}
.ws104{word-spacing:38.043849pt;}
.wsec{word-spacing:38.096982pt;}
.ws0{word-spacing:38.900600pt;}
.wscf{word-spacing:38.947124pt;}
.wsd5{word-spacing:39.000258pt;}
.wsd9{word-spacing:39.531597pt;}
.wsea{word-spacing:39.903534pt;}
.wsf5{word-spacing:39.956668pt;}
.wsd3{word-spacing:40.116069pt;}
.wsdf{word-spacing:40.381739pt;}
.ws114{word-spacing:40.434873pt;}
.wsfd{word-spacing:40.647408pt;}
.wscd{word-spacing:40.859943pt;}
.ws109{word-spacing:41.072479pt;}
.wscb{word-spacing:41.285014pt;}
.wsf3{word-spacing:41.338148pt;}
.wsef{word-spacing:41.922621pt;}
.ws120{word-spacing:41.975755pt;}
.ws11c{word-spacing:42.028889pt;}
.wsee{word-spacing:42.188290pt;}
.wsfa{word-spacing:42.241424pt;}
.ws117{word-spacing:42.825897pt;}
.wse1{word-spacing:42.932164pt;}
.ws12{word-spacing:49.534444pt;}
.wsba{word-spacing:117.766690pt;}
.ws58{word-spacing:144.241934pt;}
.ws105{word-spacing:162.238948pt;}
.wsd0{word-spacing:163.195358pt;}
.wsd4{word-spacing:163.726697pt;}
.wsd2{word-spacing:164.098634pt;}
.wsff{word-spacing:164.842508pt;}
.wse7{word-spacing:165.161311pt;}
.wse6{word-spacing:165.267579pt;}
.wsf1{word-spacing:165.373846pt;}
.wseb{word-spacing:165.426980pt;}
.wsf9{word-spacing:165.533248pt;}
.ws10a{word-spacing:165.639516pt;}
.ws6c{word-spacing:185.774244pt;}
.ws6a{word-spacing:190.358665pt;}
.ws111{word-spacing:298.421049pt;}
.ws100{word-spacing:299.271190pt;}
.ws103{word-spacing:299.377458pt;}
.wsbb{word-spacing:302.801306pt;}
.wsb2{word-spacing:323.672596pt;}
.wsac{word-spacing:377.369873pt;}
.ws116{word-spacing:430.936912pt;}
.ws11b{word-spacing:431.840188pt;}
.ws115{word-spacing:432.584062pt;}
.ws119{word-spacing:433.009133pt;}
.ws11e{word-spacing:566.640807pt;}
.ws11d{word-spacing:566.959611pt;}
.ws6b{word-spacing:700.510959pt;}
._3e{margin-left:-31.485220pt;}
._3f{margin-left:-24.917844pt;}
._71{margin-left:-8.263392pt;}
._14{margin-left:-6.962689pt;}
._11{margin-left:-5.929779pt;}
._8{margin-left:-4.829095pt;}
._3c{margin-left:-3.863958pt;}
._f{margin-left:-2.920244pt;}
._1{margin-left:-1.989340pt;}
._c{margin-left:-1.047271pt;}
._9{width:1.174794pt;}
._0{width:2.065853pt;}
._2{width:3.658283pt;}
._51{width:4.590797pt;}
._65{width:5.483452pt;}
._1e{width:6.686475pt;}
._1c{width:7.902523pt;}
._57{width:9.207087pt;}
._3b{width:10.566860pt;}
._75{width:12.044651pt;}
._4b{width:14.154957pt;}
._39{width:15.058780pt;}
._18{width:16.284565pt;}
._27{width:17.725577pt;}
._6e{width:19.023117pt;}
._4{width:20.112595pt;}
._e{width:21.090565pt;}
._3d{width:22.584164pt;}
._6{width:23.505474pt;}
._40{width:24.513829pt;}
._3{width:25.600021pt;}
._12{width:26.779648pt;}
._15{width:27.736064pt;}
._13{width:28.807237pt;}
._38{width:29.903940pt;}
._7{width:31.069117pt;}
._a{width:32.709365pt;}
._17{width:33.869873pt;}
._76{width:34.832435pt;}
._5{width:35.926906pt;}
._74{width:37.742147pt;}
._b{width:39.389124pt;}
._16{width:40.996769pt;}
._73{width:42.039356pt;}
._d{width:43.027547pt;}
._72{width:44.323971pt;}
._5e{width:51.246420pt;}
._70{width:53.949906pt;}
._56{width:57.427377pt;}
._28{width:62.358323pt;}
._2b{width:63.761067pt;}
._53{width:66.568831pt;}
._5a{width:67.622716pt;}
._29{width:73.070182pt;}
._41{width:74.982337pt;}
._19{width:79.126019pt;}
._10{width:84.164373pt;}
._60{width:91.021205pt;}
._23{width:97.437612pt;}
._3a{width:99.068889pt;}
._44{width:102.028254pt;}
._26{width:112.607150pt;}
._45{width:115.715872pt;}
._5c{width:117.598706pt;}
._59{width:120.411063pt;}
._43{width:124.409916pt;}
._1d{width:126.487774pt;}
._69{width:130.280783pt;}
._6a{width:134.469597pt;}
._49{width:137.466649pt;}
._20{width:138.926948pt;}
._46{width:141.885297pt;}
._24{width:144.241934pt;}
._63{width:147.075447pt;}
._58{width:150.805464pt;}
._54{width:152.284727pt;}
._4a{width:156.965294pt;}
._5b{width:158.990513pt;}
._5d{width:171.876614pt;}
._22{width:177.128382pt;}
._1b{width:181.574710pt;}
._47{width:183.149571pt;}
._5f{width:200.488093pt;}
._1f{width:205.004315pt;}
._67{width:209.111780pt;}
._4e{width:210.033125pt;}
._31{width:221.633468pt;}
._4c{width:228.593971pt;}
._61{width:231.176294pt;}
._1a{width:242.551341pt;}
._4f{width:252.242945pt;}
._50{width:255.465793pt;}
._21{width:259.031687pt;}
._52{width:259.922165pt;}
._48{width:266.478920pt;}
._6d{width:274.385292pt;}
._25{width:277.655404pt;}
._6f{width:287.902638pt;}
._2d{width:307.965952pt;}
._4d{width:315.026596pt;}
._37{width:335.574494pt;}
._2f{width:339.145114pt;}
._66{width:343.776455pt;}
._62{width:345.612780pt;}
._55{width:357.676362pt;}
._36{width:374.660028pt;}
._2a{width:377.274231pt;}
._68{width:385.890645pt;}
._64{width:397.884096pt;}
._6b{width:411.330552pt;}
._35{width:458.123264pt;}
._6c{width:464.790966pt;}
._2c{width:480.949726pt;}
._2e{width:543.371810pt;}
._30{width:595.400841pt;}
._42{width:612.324386pt;}
._32{width:626.643763pt;}
._34{width:657.822925pt;}
._33{width:709.851955pt;}
.fsa{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs9{font-size:50.844562pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs6{font-size:63.761067pt;}
.fs8{font-size:76.267162pt;}
.fs1{font-size:76.513067pt;}
.fs5{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:54.637333pt;}
.y47{bottom:94.488000pt;}
.y14e{bottom:103.498667pt;}
.y20{bottom:106.268000pt;}
.y115{bottom:110.428000pt;}
.y46{bottom:113.749333pt;}
.y14d{bottom:119.438667pt;}
.ye1{bottom:125.598667pt;}
.y114{bottom:126.368000pt;}
.y1f{bottom:130.050667pt;}
.y45{bottom:133.010667pt;}
.y14c{bottom:135.378667pt;}
.y113{bottom:142.309333pt;}
.y66{bottom:143.789333pt;}
.ye0{bottom:144.860000pt;}
.y1e{bottom:149.312000pt;}
.y14b{bottom:151.318667pt;}
.y112{bottom:158.249333pt;}
.ydf{bottom:164.652000pt;}
.y44{bottom:165.158667pt;}
.y14a{bottom:167.260000pt;}
.y65{bottom:173.829333pt;}
.y111{bottom:174.189333pt;}
.y1d{bottom:178.865333pt;}
.y149{bottom:183.200000pt;}
.yde{bottom:183.913333pt;}
.y43{bottom:184.420000pt;}
.y83{bottom:184.589333pt;}
.y110{bottom:190.129333pt;}
.y64{bottom:198.861333pt;}
.y148{bottom:199.140000pt;}
.y42{bottom:203.680000pt;}
.ydd{bottom:203.705333pt;}
.y82{bottom:203.849333pt;}
.y10f{bottom:206.069333pt;}
.y147{bottom:215.080000pt;}
.y63{bottom:218.122667pt;}
.y1c{bottom:218.556000pt;}
.y10e{bottom:222.009333pt;}
.y41{bottom:222.941333pt;}
.ydc{bottom:223.498667pt;}
.y146{bottom:231.020000pt;}
.y81{bottom:233.402667pt;}
.y10d{bottom:237.950667pt;}
.y40{bottom:242.202667pt;}
.ydb{bottom:242.760000pt;}
.y145{bottom:246.960000pt;}
.y62{bottom:247.676000pt;}
.y10c{bottom:253.890667pt;}
.yda{bottom:262.552000pt;}
.y144{bottom:262.901333pt;}
.y10b{bottom:269.830667pt;}
.y1b{bottom:271.796000pt;}
.y3f{bottom:274.350667pt;}
.y143{bottom:278.841333pt;}
.y80{bottom:279.613333pt;}
.yd9{bottom:282.344000pt;}
.y10a{bottom:285.770667pt;}
.y61{bottom:287.942667pt;}
.y1a{bottom:291.056000pt;}
.y3e{bottom:293.612000pt;}
.y142{bottom:294.781333pt;}
.y109{bottom:301.710667pt;}
.yd8{bottom:302.137333pt;}
.y14f{bottom:303.416000pt;}
.y19{bottom:310.317333pt;}
.y141{bottom:310.721333pt;}
.y60{bottom:311.341333pt;}
.y3d{bottom:312.873333pt;}
.y7f{bottom:314.814667pt;}
.y108{bottom:317.650667pt;}
.yd7{bottom:321.929333pt;}
.y140{bottom:326.661333pt;}
.y18{bottom:329.578667pt;}
.y3c{bottom:332.134667pt;}
.y107{bottom:333.592000pt;}
.y9b{bottom:335.026667pt;}
.y5f{bottom:341.382667pt;}
.yd6{bottom:341.721333pt;}
.y13f{bottom:342.601333pt;}
.y17{bottom:348.840000pt;}
.y106{bottom:349.532000pt;}
.y7e{bottom:350.016000pt;}
.y3b{bottom:351.394667pt;}
.y9a{bottom:354.288000pt;}
.y13e{bottom:358.542667pt;}
.yd5{bottom:360.982667pt;}
.yb8{bottom:364.014667pt;}
.y105{bottom:365.472000pt;}
.y16{bottom:368.101333pt;}
.y5e{bottom:373.208000pt;}
.y99{bottom:373.549333pt;}
.y13d{bottom:374.482667pt;}
.y7d{bottom:377.912000pt;}
.yd4{bottom:380.774667pt;}
.y104{bottom:381.412000pt;}
.yb7{bottom:383.276000pt;}
.y3a{bottom:383.542667pt;}
.y13c{bottom:390.422667pt;}
.y98{bottom:392.810667pt;}
.y103{bottom:397.352000pt;}
.y5d{bottom:399.644000pt;}
.yd3{bottom:400.568000pt;}
.y39{bottom:402.804000pt;}
.y15{bottom:403.144000pt;}
.y13b{bottom:406.362667pt;}
.yb6{bottom:411.834667pt;}
.y97{bottom:412.072000pt;}
.y102{bottom:413.292000pt;}
.y7c{bottom:416.433333pt;}
.yd2{bottom:420.360000pt;}
.y38{bottom:422.065333pt;}
.y13a{bottom:422.302667pt;}
.y101{bottom:429.233333pt;}
.y5c{bottom:429.684000pt;}
.yb5{bottom:431.096000pt;}
.y7b{bottom:435.694667pt;}
.y139{bottom:438.242667pt;}
.yd1{bottom:439.621333pt;}
.y100{bottom:445.173333pt;}
.y96{bottom:447.113333pt;}
.yb4{bottom:450.357333pt;}
.y37{bottom:453.420000pt;}
.y138{bottom:454.184000pt;}
.y7a{bottom:454.956000pt;}
.y14{bottom:456.382667pt;}
.yd0{bottom:459.413333pt;}
.y5b{bottom:459.725333pt;}
.yff{bottom:461.113333pt;}
.y137{bottom:470.124000pt;}
.y36{bottom:472.681333pt;}
.y13{bottom:474.448000pt;}
.yfe{bottom:477.053333pt;}
.yb3{bottom:478.917333pt;}
.ycf{bottom:479.205333pt;}
.y79{bottom:484.509333pt;}
.y5a{bottom:484.756000pt;}
.y136{bottom:486.064000pt;}
.y12{bottom:492.513333pt;}
.yfd{bottom:492.993333pt;}
.yb2{bottom:498.177333pt;}
.yce{bottom:498.466667pt;}
.y95{bottom:500.353333pt;}
.y135{bottom:502.004000pt;}
.y35{bottom:502.234667pt;}
.y59{bottom:504.017333pt;}
.yfc{bottom:508.934667pt;}
.y11{bottom:510.578667pt;}
.yb1{bottom:517.438667pt;}
.y134{bottom:517.944000pt;}
.ycd{bottom:518.260000pt;}
.y94{bottom:519.613333pt;}
.yfb{bottom:524.874667pt;}
.y78{bottom:526.070667pt;}
.y10{bottom:528.644000pt;}
.y58{bottom:533.570667pt;}
.y133{bottom:533.884000pt;}
.ycc{bottom:538.052000pt;}
.y93{bottom:538.874667pt;}
.yfa{bottom:540.814667pt;}
.y77{bottom:545.330667pt;}
.yb0{bottom:545.998667pt;}
.yf{bottom:546.710667pt;}
.y34{bottom:548.240000pt;}
.y132{bottom:549.825333pt;}
.yf9{bottom:556.754667pt;}
.ycb{bottom:557.313333pt;}
.y92{bottom:558.136000pt;}
.yaf{bottom:561.994667pt;}
.y57{bottom:563.124000pt;}
.y76{bottom:564.592000pt;}
.ye{bottom:564.776000pt;}
.yae{bottom:565.260000pt;}
.y131{bottom:565.765333pt;}
.y33{bottom:567.500000pt;}
.yf8{bottom:572.694667pt;}
.yca{bottom:577.105333pt;}
.y91{bottom:577.397333pt;}
.y130{bottom:581.705333pt;}
.yd{bottom:582.841333pt;}
.yad{bottom:584.521333pt;}
.y32{bottom:586.761333pt;}
.yf7{bottom:588.634667pt;}
.y90{bottom:596.658667pt;}
.yc9{bottom:596.897333pt;}
.y12f{bottom:597.645333pt;}
.yc{bottom:600.906667pt;}
.y56{bottom:602.816000pt;}
.yf6{bottom:604.576000pt;}
.y75{bottom:608.760000pt;}
.yac{bottom:613.080000pt;}
.y12e{bottom:613.585333pt;}
.y8f{bottom:615.920000pt;}
.yc8{bottom:616.158667pt;}
.y31{bottom:618.909333pt;}
.yb{bottom:618.972000pt;}
.yf5{bottom:620.516000pt;}
.y74{bottom:628.552000pt;}
.y12d{bottom:629.525333pt;}
.yab{bottom:632.341333pt;}
.y8e{bottom:635.180000pt;}
.yc7{bottom:635.950667pt;}
.yf4{bottom:636.456000pt;}
.ya{bottom:637.038667pt;}
.y30{bottom:638.170667pt;}
.y12c{bottom:645.466667pt;}
.y73{bottom:647.813333pt;}
.yf3{bottom:652.396000pt;}
.y9{bottom:655.104000pt;}
.yc6{bottom:655.744000pt;}
.yaa{bottom:660.901333pt;}
.y12b{bottom:661.406667pt;}
.y55{bottom:662.307615pt;}
.y72{bottom:667.074667pt;}
.yf2{bottom:668.336000pt;}
.y8d{bottom:670.222667pt;}
.y2f{bottom:670.318667pt;}
.yc5{bottom:675.536000pt;}
.y12a{bottom:677.346667pt;}
.ya9{bottom:680.162667pt;}
.y8{bottom:682.129333pt;}
.yf1{bottom:684.276000pt;}
.y54{bottom:685.983212pt;}
.y71{bottom:686.336000pt;}
.y129{bottom:693.286667pt;}
.yc4{bottom:694.797333pt;}
.ya8{bottom:699.422667pt;}
.yf0{bottom:700.217333pt;}
.y2e{bottom:702.466667pt;}
.y70{bottom:705.597333pt;}
.y128{bottom:709.226667pt;}
.y53{bottom:709.657215pt;}
.yc3{bottom:714.589333pt;}
.yef{bottom:716.157333pt;}
.y2d{bottom:721.728000pt;}
.y8c{bottom:723.461333pt;}
.y6f{bottom:724.857333pt;}
.y127{bottom:725.166667pt;}
.ya7{bottom:727.982667pt;}
.yee{bottom:732.097333pt;}
.y52{bottom:733.331218pt;}
.yc2{bottom:734.382667pt;}
.y126{bottom:741.108000pt;}
.y8b{bottom:742.722667pt;}
.y6e{bottom:744.118667pt;}
.ya6{bottom:747.244000pt;}
.yed{bottom:748.037333pt;}
.yc1{bottom:754.174667pt;}
.y2c{bottom:756.670667pt;}
.y51{bottom:757.006816pt;}
.y125{bottom:757.048000pt;}
.y7{bottom:758.138667pt;}
.y6d{bottom:763.380000pt;}
.yec{bottom:763.977333pt;}
.ya5{bottom:766.505333pt;}
.y124{bottom:772.988000pt;}
.yc0{bottom:773.436000pt;}
.y8a{bottom:775.268000pt;}
.yeb{bottom:779.917333pt;}
.y50{bottom:780.680819pt;}
.y6c{bottom:783.172000pt;}
.ya4{bottom:785.766667pt;}
.y2b{bottom:786.224000pt;}
.y123{bottom:788.928000pt;}
.ybf{bottom:793.228000pt;}
.y89{bottom:794.529333pt;}
.y6{bottom:795.417333pt;}
.yea{bottom:795.858667pt;}
.y4f{bottom:804.354822pt;}
.y122{bottom:804.868000pt;}
.ye9{bottom:811.798667pt;}
.ybe{bottom:813.020000pt;}
.ya3{bottom:814.325333pt;}
.y6b{bottom:816.248000pt;}
.y5{bottom:819.328000pt;}
.y121{bottom:820.808000pt;}
.y88{bottom:824.082667pt;}
.ye8{bottom:827.738667pt;}
.y4e{bottom:828.030419pt;}
.y2a{bottom:832.229333pt;}
.ybd{bottom:832.813333pt;}
.ya2{bottom:833.586667pt;}
.y120{bottom:836.749333pt;}
.y4{bottom:843.237333pt;}
.ye7{bottom:843.678667pt;}
.y29{bottom:851.489333pt;}
.y4d{bottom:851.704422pt;}
.ybc{bottom:852.605333pt;}
.y11f{bottom:852.689333pt;}
.y6a{bottom:853.640000pt;}
.ya1{bottom:862.146667pt;}
.y87{bottom:865.642667pt;}
.ye6{bottom:865.858667pt;}
.y11e{bottom:868.629333pt;}
.ybb{bottom:872.397333pt;}
.y69{bottom:872.901333pt;}
.y4c{bottom:875.378425pt;}
.y28{bottom:883.637333pt;}
.y11d{bottom:884.569333pt;}
.ye5{bottom:885.118667pt;}
.y3{bottom:890.554667pt;}
.ya0{bottom:890.705333pt;}
.yba{bottom:892.190667pt;}
.y86{bottom:898.188000pt;}
.y4b{bottom:899.054023pt;}
.y11c{bottom:900.509333pt;}
.y68{bottom:902.454667pt;}
.y27{bottom:902.898667pt;}
.y9f{bottom:909.966667pt;}
.y2{bottom:914.465333pt;}
.y11b{bottom:916.449333pt;}
.y85{bottom:917.449333pt;}
.ye4{bottom:920.161333pt;}
.y26{bottom:922.160000pt;}
.yb9{bottom:925.266667pt;}
.y9e{bottom:929.228000pt;}
.y11a{bottom:932.390667pt;}
.y4a{bottom:934.877333pt;}
.y25{bottom:941.421333pt;}
.y67{bottom:944.016000pt;}
.y1{bottom:947.673333pt;}
.y119{bottom:948.330667pt;}
.y84{bottom:949.993333pt;}
.y9d{bottom:957.788000pt;}
.y49{bottom:963.277333pt;}
.y118{bottom:964.270667pt;}
.y24{bottom:973.569333pt;}
.y9c{bottom:977.049333pt;}
.ye3{bottom:979.348000pt;}
.y117{bottom:980.210667pt;}
.y48{bottom:982.537333pt;}
.y23{bottom:992.830667pt;}
.y116{bottom:996.150667pt;}
.ye2{bottom:998.608000pt;}
.y22{bottom:1012.090667pt;}
.hb{height:20.618201pt;}
.h16{height:21.583121pt;}
.h15{height:36.981171pt;}
.h6{height:43.694582pt;}
.h5{height:47.285075pt;}
.hf{height:47.820800pt;}
.h9{height:47.884561pt;}
.hc{height:47.948322pt;}
.h7{height:49.849534pt;}
.h11{height:51.870867pt;}
.h10{height:51.876201pt;}
.h3{height:53.865199pt;}
.h13{height:55.060201pt;}
.he{height:57.276639pt;}
.hd{height:57.352906pt;}
.ha{height:57.461313pt;}
.h14{height:60.945894pt;}
.h12{height:62.528555pt;}
.h4{height:67.674201pt;}
.h8{height:69.045231pt;}
.h2{height:77.360400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:73.238667pt;}
.x1d{left:78.108000pt;}
.x1c{left:82.977333pt;}
.xb{left:94.488000pt;}
.x17{left:102.290667pt;}
.x11{left:104.656785pt;}
.xc{left:112.434667pt;}
.xf{left:113.566667pt;}
.xe{left:117.901333pt;}
.x1f{left:121.892000pt;}
.x18{left:126.565333pt;}
.x1e{left:130.352000pt;}
.xa{left:133.508000pt;}
.x13{left:151.077333pt;}
.x9{left:155.202667pt;}
.x2{left:159.897333pt;}
.x10{left:163.721333pt;}
.x1{left:182.521333pt;}
.x3{left:216.265333pt;}
.x14{left:218.048000pt;}
.x19{left:226.166667pt;}
.x12{left:233.702667pt;}
.x21{left:248.204000pt;}
.x1b{left:249.318667pt;}
.x5{left:260.937333pt;}
.x15{left:273.048000pt;}
.x6{left:279.009333pt;}
.x16{left:302.714667pt;}
.x7{left:326.172000pt;}
.x4{left:336.657333pt;}
.x8{left:365.088000pt;}
.x22{left:389.048000pt;}
.xd{left:392.949333pt;}
.x1a{left:492.561333pt;}
}




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