
    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_52b078f9822a6a424ba4e8d0.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_a724f90a45addbb8354b7924.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_555051c3bbf248bc5e935bfe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_49744e3eed9cfe2a904dabd0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.908000;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_0ce4f1879874b517831a825a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bb639eb9e49253d43f97dd46.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_96b54f2adcca1524a569e142.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_a76b6cdc6011fa8cb8b75fd3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_755bee887a032c585b55c98f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b7a7604d38f6fa258ed268cc.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b0cccbeb3ae04273be1b748f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d4d4948d55907f71ed428585.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.899000;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_00a20d0dbe3eb3b1444e82cf.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f0185a80e1a86cbde5c745d0.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4acdb56c9db1fba93d14264d.woff2')format("woff");}.fff{font-family:fff;line-height:0.545000;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_18bffd1e39f540f7678d3722.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921000;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_66618fe42b11b63f7c18342c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.733000;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_0d282b3d489f12964406a27b.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_7a10430f536e7ca092e5b2b4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.922000;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_a066b2c934e64ef00185457a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.294000;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_40f125df0984e1ccbac60e2a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.534000;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_1da76a4010b141fd87ed22f8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.899000;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_3aaa626d65719601566e144e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.849000;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_94a3c4a1f58ea57717e7ac88.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.481000;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_e3f93821cdf750126f36991a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.725000;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_d93af1972ee80d49c4131d2d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.653000;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_4f81b9b56ec943e440a0aa4d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.733000;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_b64a2a44e6069fa4a5527f3b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-16.878000px;}
.v7{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:8.964000px;}
.v2{vertical-align:21.690000px;}
.v8{vertical-align:31.476000px;}
.v4{vertical-align:36.162000px;}
.v5{vertical-align:40.434000px;}
.vb{vertical-align:48.420000px;}
.v1{vertical-align:84.282000px;}
.va{vertical-align:89.418000px;}
.v6{vertical-align:97.788000px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000468px;}
.ls1e{letter-spacing:0.000843px;}
.ls23{letter-spacing:0.008918px;}
.ls20{letter-spacing:0.019158px;}
.ls27{letter-spacing:0.020987px;}
.ls21{letter-spacing:0.025158px;}
.ls2b{letter-spacing:0.025339px;}
.ls26{letter-spacing:0.026875px;}
.ls1c{letter-spacing:0.478205px;}
.lsd{letter-spacing:2.988532px;}
.ls24{letter-spacing:2.988710px;}
.ls1a{letter-spacing:2.992087px;}
.ls28{letter-spacing:2.994710px;}
.ls19{letter-spacing:9.922750px;}
.ls4{letter-spacing:9.982525px;}
.ls1f{letter-spacing:13.270183px;}
.ls2{letter-spacing:15.242778px;}
.lsb{letter-spacing:16.557841px;}
.ls5{letter-spacing:16.606438px;}
.ls15{letter-spacing:16.617617px;}
.ls14{letter-spacing:17.131403px;}
.ls1d{letter-spacing:17.134200px;}
.lsa{letter-spacing:19.247743px;}
.ls16{letter-spacing:19.594851px;}
.ls2a{letter-spacing:19.596710px;}
.ls11{letter-spacing:19.905275px;}
.ls12{letter-spacing:19.965050px;}
.ls6{letter-spacing:21.339889px;}
.ls3{letter-spacing:22.834279px;}
.ls8{letter-spacing:22.894055px;}
.ls17{letter-spacing:23.778538px;}
.ls10{letter-spacing:25.045976px;}
.ls1b{letter-spacing:25.105752px;}
.lse{letter-spacing:25.392739px;}
.lsf{letter-spacing:25.440559px;}
.ls2e{letter-spacing:25.703508px;}
.ls2f{letter-spacing:25.763284px;}
.ls2d{letter-spacing:27.018710px;}
.lsc{letter-spacing:27.300710px;}
.ls2c{letter-spacing:28.728710px;}
.ls0{letter-spacing:29.887800px;}
.ls9{letter-spacing:59.715824px;}
.ls7{letter-spacing:59.775600px;}
.ls29{letter-spacing:126.724200px;}
.ls13{letter-spacing:147.386085px;}
.ls22{letter-spacing:275.178710px;}
.ls18{letter-spacing:425.746200px;}
.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;}
}
.ws4{word-spacing:-48.418425px;}
.ws39{word-spacing:-47.324343px;}
.wsc9{word-spacing:-43.157983px;}
.wsc0{word-spacing:-37.001096px;}
.ws8b{word-spacing:-34.370970px;}
.ws40{word-spacing:-30.551309px;}
.ws1a{word-spacing:-29.887800px;}
.ws74{word-spacing:-25.407085px;}
.ws0{word-spacing:-19.367325px;}
.wsaa{word-spacing:-19.068416px;}
.wsa5{word-spacing:-17.574026px;}
.wsa7{word-spacing:-16.916495px;}
.wsc5{word-spacing:-16.677392px;}
.ws32{word-spacing:-16.617617px;}
.ws60{word-spacing:-16.557841px;}
.ws7{word-spacing:-16.139475px;}
.wsc3{word-spacing:-15.840534px;}
.ws12{word-spacing:-15.661207px;}
.ws9e{word-spacing:-15.541656px;}
.wsd5{word-spacing:-15.362329px;}
.wsf8{word-spacing:-15.183002px;}
.wsed{word-spacing:-14.943900px;}
.ws31{word-spacing:-14.884124px;}
.ws103{word-spacing:-14.764573px;}
.ws1e{word-spacing:-14.704798px;}
.wsa9{word-spacing:-14.645022px;}
.wscc{word-spacing:-14.525471px;}
.ws63{word-spacing:-14.465695px;}
.ws2a{word-spacing:-14.405920px;}
.wsd2{word-spacing:-13.987490px;}
.wsf9{word-spacing:-13.927715px;}
.wsd3{word-spacing:-13.867939px;}
.ws8f{word-spacing:-13.688612px;}
.ws90{word-spacing:-13.628837px;}
.wsbc{word-spacing:-13.509286px;}
.ws5f{word-spacing:-13.449600px;}
.ws1b{word-spacing:-13.449510px;}
.ws68{word-spacing:-13.389734px;}
.wsc8{word-spacing:-13.329959px;}
.ws11{word-spacing:-13.270183px;}
.ws94{word-spacing:-13.210408px;}
.ws14{word-spacing:-13.150632px;}
.wsa4{word-spacing:-13.090856px;}
.wsd4{word-spacing:-13.031081px;}
.wsee{word-spacing:-12.971305px;}
.wsb{word-spacing:-12.868541px;}
.ws6b{word-spacing:-12.851754px;}
.wse3{word-spacing:-12.738180px;}
.wsd8{word-spacing:-12.612652px;}
.ws6e{word-spacing:-12.552876px;}
.ws92{word-spacing:-12.493100px;}
.ws6f{word-spacing:-12.433325px;}
.ws5b{word-spacing:-12.313774px;}
.ws69{word-spacing:-12.253998px;}
.ws34{word-spacing:-12.194222px;}
.wsfa{word-spacing:-12.134447px;}
.wsd9{word-spacing:-12.074671px;}
.wsaf{word-spacing:-12.014896px;}
.wsef{word-spacing:-11.961098px;}
.wsba{word-spacing:-11.895344px;}
.ws5d{word-spacing:-11.835569px;}
.wsf7{word-spacing:-11.775793px;}
.ws64{word-spacing:-11.656242px;}
.wse7{word-spacing:-11.542668px;}
.ws5{word-spacing:-11.476915px;}
.wsc{word-spacing:-11.417140px;}
.wsec{word-spacing:-11.303566px;}
.ws61{word-spacing:-11.178037px;}
.wsff{word-spacing:-11.058486px;}
.wsea{word-spacing:-10.998710px;}
.ws53{word-spacing:-10.938935px;}
.ws57{word-spacing:-10.819384px;}
.wse0{word-spacing:-10.699832px;}
.ws1c{word-spacing:-10.520506px;}
.wsb3{word-spacing:-10.460730px;}
.ws2c{word-spacing:-10.341179px;}
.ws72{word-spacing:-10.281403px;}
.ws30{word-spacing:-10.161852px;}
.wsa6{word-spacing:-10.042301px;}
.ws8{word-spacing:-9.982525px;}
.ws6c{word-spacing:-9.922750px;}
.ws19{word-spacing:-9.743423px;}
.ws2f{word-spacing:-9.683647px;}
.ws13{word-spacing:-9.564096px;}
.wse{word-spacing:-9.504320px;}
.wsb9{word-spacing:-9.444545px;}
.wsbd{word-spacing:-9.384769px;}
.wse8{word-spacing:-9.330971px;}
.wsbe{word-spacing:-9.324994px;}
.wsf2{word-spacing:-9.151644px;}
.wse1{word-spacing:-9.145667px;}
.ws9d{word-spacing:-9.085891px;}
.wsd6{word-spacing:-8.966340px;}
.ws100{word-spacing:-8.906564px;}
.wseb{word-spacing:-8.792991px;}
.ws1d{word-spacing:-8.787013px;}
.ws15{word-spacing:-8.727238px;}
.wsde{word-spacing:-8.667462px;}
.wsf1{word-spacing:-8.553888px;}
.ws46{word-spacing:-8.547911px;}
.wse6{word-spacing:-8.488135px;}
.wse2{word-spacing:-8.434337px;}
.wsdd{word-spacing:-8.255010px;}
.ws97{word-spacing:-8.249033px;}
.ws96{word-spacing:-8.189257px;}
.ws4e{word-spacing:-8.069706px;}
.ws4c{word-spacing:-8.009930px;}
.ws23{word-spacing:-7.950155px;}
.ws101{word-spacing:-7.770828px;}
.wsa3{word-spacing:-7.711052px;}
.ws21{word-spacing:-7.651277px;}
.ws25{word-spacing:-7.471950px;}
.ws27{word-spacing:-7.412174px;}
.ws9c{word-spacing:-7.352399px;}
.ws59{word-spacing:-7.232848px;}
.wsb8{word-spacing:-7.179050px;}
.ws36{word-spacing:-7.053521px;}
.ws4d{word-spacing:-6.993745px;}
.wsbb{word-spacing:-6.814418px;}
.ws89{word-spacing:-6.754643px;}
.ws2e{word-spacing:-6.694867px;}
.ws7a{word-spacing:-6.575316px;}
.ws20{word-spacing:-6.515540px;}
.ws6d{word-spacing:-6.455765px;}
.ws44{word-spacing:-6.336214px;}
.wsf4{word-spacing:-6.276438px;}
.wsbf{word-spacing:-6.216662px;}
.ws66{word-spacing:-6.156887px;}
.ws55{word-spacing:-6.097111px;}
.wsf0{word-spacing:-6.037336px;}
.ws78{word-spacing:-5.917784px;}
.wsf3{word-spacing:-5.858009px;}
.ws8a{word-spacing:-5.798233px;}
.wsd1{word-spacing:-5.738458px;}
.ws9b{word-spacing:-5.618906px;}
.ws6a{word-spacing:-5.559131px;}
.ws51{word-spacing:-5.439580px;}
.ws17{word-spacing:-5.021150px;}
.ws98{word-spacing:-4.961375px;}
.ws93{word-spacing:-4.841824px;}
.wsc4{word-spacing:-4.782048px;}
.wse9{word-spacing:-4.722272px;}
.ws99{word-spacing:-4.602721px;}
.wsdf{word-spacing:-4.542946px;}
.wse5{word-spacing:-4.483170px;}
.ws45{word-spacing:-4.423394px;}
.wsa8{word-spacing:-4.244068px;}
.wsca{word-spacing:-4.184292px;}
.wsfc{word-spacing:-4.124516px;}
.wscf{word-spacing:-4.004965px;}
.ws10{word-spacing:-3.945190px;}
.ws8d{word-spacing:-3.885414px;}
.wsf5{word-spacing:-3.831616px;}
.wsf6{word-spacing:-3.771840px;}
.ws67{word-spacing:-3.712065px;}
.ws65{word-spacing:-3.652289px;}
.ws9a{word-spacing:-3.646312px;}
.wsdb{word-spacing:-3.586536px;}
.wsce{word-spacing:-3.466985px;}
.ws28{word-spacing:-3.347434px;}
.wsda{word-spacing:-3.168107px;}
.wsd{word-spacing:-2.988780px;}
.ws18{word-spacing:-2.689902px;}
.ws16{word-spacing:-2.630126px;}
.wsfe{word-spacing:-2.576328px;}
.wsfd{word-spacing:-2.516553px;}
.wsd0{word-spacing:-2.510575px;}
.ws3f{word-spacing:-2.331248px;}
.ws41{word-spacing:-2.151922px;}
.wsd7{word-spacing:-2.032370px;}
.ws62{word-spacing:-1.912819px;}
.ws71{word-spacing:-1.853044px;}
.ws2b{word-spacing:-1.793268px;}
.wsa0{word-spacing:-1.673717px;}
.wsa2{word-spacing:-1.613941px;}
.wsfb{word-spacing:-1.434614px;}
.wsf{word-spacing:-0.896634px;}
.wsab{word-spacing:-0.358654px;}
.wsac{word-spacing:-0.304856px;}
.wscb{word-spacing:-0.179327px;}
.wse4{word-spacing:-0.065753px;}
.ws9{word-spacing:-0.059776px;}
.wsb7{word-spacing:-0.041843px;}
.ws76{word-spacing:-0.029888px;}
.ws75{word-spacing:-0.014346px;}
.wsa{word-spacing:0.000000px;}
.ws77{word-spacing:0.033474px;}
.ws3d{word-spacing:0.298878px;}
.ws42{word-spacing:1.309086px;}
.wsdc{word-spacing:1.733492px;}
.ws95{word-spacing:2.450800px;}
.ws50{word-spacing:2.630126px;}
.ws9f{word-spacing:8.787013px;}
.ws33{word-spacing:9.862974px;}
.ws3a{word-spacing:9.922750px;}
.ws4a{word-spacing:10.819384px;}
.wsb6{word-spacing:13.210408px;}
.ws38{word-spacing:15.183002px;}
.ws8e{word-spacing:16.199188px;}
.wsb5{word-spacing:16.242625px;}
.wsc2{word-spacing:16.498066px;}
.wsad{word-spacing:16.557841px;}
.wsae{word-spacing:16.856719px;}
.ws91{word-spacing:17.334924px;}
.ws70{word-spacing:17.394700px;}
.ws5c{word-spacing:17.574026px;}
.ws49{word-spacing:17.992456px;}
.ws54{word-spacing:18.889090px;}
.ws56{word-spacing:18.948865px;}
.ws58{word-spacing:19.008641px;}
.wsb4{word-spacing:19.367294px;}
.wsb2{word-spacing:19.427070px;}
.ws73{word-spacing:19.546621px;}
.ws4b{word-spacing:19.845499px;}
.ws7c{word-spacing:19.905275px;}
.ws102{word-spacing:20.084652px;}
.ws24{word-spacing:20.323704px;}
.ws6{word-spacing:20.921460px;}
.ws47{word-spacing:21.339889px;}
.ws22{word-spacing:21.877870px;}
.wsb0{word-spacing:22.296299px;}
.ws26{word-spacing:22.415850px;}
.ws37{word-spacing:22.834279px;}
.ws35{word-spacing:22.894055px;}
.ws7b{word-spacing:23.192933px;}
.ws1f{word-spacing:23.312484px;}
.ws2{word-spacing:23.312640px;}
.ws3{word-spacing:23.384371px;}
.ws43{word-spacing:23.551586px;}
.wsc1{word-spacing:23.611362px;}
.ws79{word-spacing:23.910240px;}
.wscd{word-spacing:24.268894px;}
.ws52{word-spacing:24.448220px;}
.ws5a{word-spacing:24.806874px;}
.wsb1{word-spacing:25.404630px;}
.ws8c{word-spacing:25.882835px;}
.ws4f{word-spacing:26.241488px;}
.ws3e{word-spacing:27.496776px;}
.ws3c{word-spacing:27.556552px;}
.wsa1{word-spacing:28.154308px;}
.ws2d{word-spacing:29.050942px;}
.wsc7{word-spacing:29.768249px;}
.wsc6{word-spacing:29.828024px;}
.ws1{word-spacing:31.091012px;}
.ws29{word-spacing:40.348800px;}
.ws48{word-spacing:47.820480px;}
.ws5e{word-spacing:48.418425px;}
.ws3b{word-spacing:57.384576px;}
.ws7d{word-spacing:71.659469px;}
.ws87{word-spacing:85.222045px;}
.ws85{word-spacing:112.874423px;}
.ws7e{word-spacing:112.928221px;}
.ws81{word-spacing:155.859345px;}
.ws7f{word-spacing:155.913143px;}
.ws83{word-spacing:183.565521px;}
.ws82{word-spacing:266.319082px;}
.ws84{word-spacing:274.694630px;}
.ws80{word-spacing:322.790400px;}
.ws86{word-spacing:333.711475px;}
.ws88{word-spacing:403.380403px;}
._27{margin-left:-580.570515px;}
._3d{margin-left:-17.389979px;}
._3e{margin-left:-16.129705px;}
._3f{margin-left:-13.553134px;}
._2{margin-left:-8.160100px;}
._36{margin-left:-7.009606px;}
._4{margin-left:-5.810227px;}
._1b{margin-left:-4.696454px;}
._1{margin-left:-3.202064px;}
._5{margin-left:-2.080205px;}
._14{margin-left:-1.062084px;}
._a{width:1.349021px;}
._3{width:2.685602px;}
._1f{width:4.551085px;}
._18{width:15.362329px;}
._35{width:17.825123px;}
._23{width:18.865207px;}
._2b{width:21.250368px;}
._22{width:22.347935px;}
._21{width:24.089567px;}
._1d{width:25.737466px;}
._11{width:27.006630px;}
._17{width:28.094532px;}
._34{width:29.303921px;}
._1a{width:30.473615px;}
._16{width:31.826437px;}
._20{width:33.635984px;}
._28{width:35.446931px;}
._2a{width:36.463116px;}
._f{width:37.718404px;}
._29{width:38.816381px;}
._24{width:40.852553px;}
._25{width:42.155675px;}
._1e{width:43.614670px;}
._33{width:45.002887px;}
._1c{width:46.254373px;}
._15{width:47.461826px;}
._19{width:49.101586px;}
._0{width:51.646200px;}
._6{width:55.292430px;}
._3c{width:60.182088px;}
._37{width:71.721648px;}
._26{width:80.697600px;}
._32{width:85.055270px;}
._13{width:96.836850px;}
._7{width:175.381663px;}
._2c{width:226.975450px;}
._2d{width:235.421798px;}
._31{width:241.285824px;}
._2e{width:254.627827px;}
._30{width:263.020378px;}
._39{width:275.924170px;}
._2f{width:282.280205px;}
._3b{width:288.775924px;}
._38{width:293.256292px;}
._3a{width:306.108046px;}
._b{width:901.117170px;}
._12{width:919.719376px;}
._e{width:1036.266014px;}
._c{width:1531.570423px;}
._10{width:1689.856212px;}
._8{width:1744.383553px;}
._d{width:1896.833297px;}
._9{width:2105.685729px;}
.fc3{color:rgb(186,33,33);}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y16{bottom:194.469000px;}
.y15f{bottom:234.735000px;}
.y17f{bottom:239.301000px;}
.y15e{bottom:244.986000px;}
.yc5{bottom:255.907500px;}
.y17e{bottom:259.027500px;}
.y3b{bottom:261.790500px;}
.y1dd{bottom:265.230000px;}
.y117{bottom:265.554000px;}
.y1fa{bottom:268.255500px;}
.yc4{bottom:277.981500px;}
.y17d{bottom:278.752500px;}
.y3a{bottom:281.515500px;}
.y15d{bottom:284.523000px;}
.y1dc{bottom:284.956500px;}
.y116{bottom:285.279000px;}
.y1f9{bottom:288.091500px;}
.yc3{bottom:297.706500px;}
.y1bb{bottom:298.479000px;}
.y19e{bottom:300.597000px;}
.y1db{bottom:304.683000px;}
.y115{bottom:305.005500px;}
.y12a{bottom:305.602500px;}
.y17c{bottom:310.165500px;}
.y39{bottom:313.197000px;}
.y1ba{bottom:318.205500px;}
.y15c{bottom:318.900000px;}
.y19d{bottom:320.323500px;}
.y129{bottom:325.327500px;}
.y114{bottom:325.329000px;}
.y15{bottom:325.609500px;}
.yc2{bottom:329.388000px;}
.y1f8{bottom:329.892000px;}
.y38{bottom:332.923500px;}
.y1da{bottom:336.364500px;}
.y51{bottom:336.838500px;}
.y15b{bottom:338.626500px;}
.ya2{bottom:338.688000px;}
.y17b{bottom:340.543500px;}
.y113{bottom:345.654000px;}
.y14{bottom:345.933000px;}
.y19c{bottom:349.017000px;}
.yc1{bottom:349.114500px;}
.y1b9{bottom:352.726500px;}
.y1d9{bottom:356.089500px;}
.yeb{bottom:356.146500px;}
.y50{bottom:356.565000px;}
.y128{bottom:357.009000px;}
.ya1{bottom:358.414500px;}
.y1f7{bottom:361.573500px;}
.y37{bottom:362.298000px;}
.y142{bottom:364.320000px;}
.y13{bottom:366.258000px;}
.y15a{bottom:368.001000px;}
.y19b{bottom:368.742000px;}
.yc0{bottom:368.841000px;}
.y17a{bottom:371.955000px;}
.y1d8{bottom:375.816000px;}
.yea{bottom:375.873000px;}
.y4f{bottom:376.291500px;}
.y127{bottom:376.735500px;}
.ya0{bottom:378.139500px;}
.y112{bottom:380.323500px;}
.y1f6{bottom:381.298500px;}
.y12{bottom:386.581500px;}
.y179{bottom:391.681500px;}
.ye9{bottom:395.598000px;}
.y141{bottom:396.001500px;}
.y9f{bottom:397.866000px;}
.y159{bottom:399.856500px;}
.y111{bottom:400.050000px;}
.ybf{bottom:400.522500px;}
.y1f5{bottom:401.025000px;}
.y19a{bottom:401.589000px;}
.y1b8{bottom:404.370000px;}
.y4e{bottom:405.666000px;}
.y36{bottom:406.218000px;}
.y1d7{bottom:407.497500px;}
.y126{bottom:408.417000px;}
.y178{bottom:411.408000px;}
.y199{bottom:411.840000px;}
.ye8{bottom:415.324500px;}
.y9e{bottom:417.592500px;}
.y1f4{bottom:420.751500px;}
.ybe{bottom:420.846000px;}
.y11{bottom:421.102500px;}
.y1b7{bottom:424.096500px;}
.y35{bottom:425.944500px;}
.y1d6{bottom:427.224000px;}
.y140{bottom:427.683000px;}
.y110{bottom:429.424500px;}
.y177{bottom:431.133000px;}
.y9d{bottom:437.319000px;}
.y198{bottom:437.338500px;}
.y125{bottom:440.098500px;}
.y1f3{bottom:440.478000px;}
.ybd{bottom:441.169500px;}
.y158{bottom:443.727000px;}
.y1b6{bottom:443.821500px;}
.y34{bottom:445.671000px;}
.y4d{bottom:446.298000px;}
.y197{bottom:447.589500px;}
.y176{bottom:450.859500px;}
.y9c{bottom:457.045500px;}
.y1d5{bottom:458.905500px;}
.y124{bottom:459.825000px;}
.y1f2{bottom:460.203000px;}
.y13f{bottom:462.352500px;}
.y157{bottom:463.452000px;}
.y1b5{bottom:463.548000px;}
.ybc{bottom:464.184000px;}
.y33{bottom:465.397500px;}
.y4c{bottom:466.024500px;}
.ye7{bottom:468.637500px;}
.y175{bottom:470.586000px;}
.y196{bottom:473.086500px;}
.y10{bottom:473.206500px;}
.y10f{bottom:473.344500px;}
.y9b{bottom:476.770500px;}
.y1d4{bottom:478.630500px;}
.y123{bottom:479.550000px;}
.y1f1{bottom:479.929500px;}
.y1b4{bottom:483.274500px;}
.y195{bottom:483.337500px;}
.ye6{bottom:483.880500px;}
.ybb{bottom:484.507500px;}
.y32{bottom:485.122500px;}
.y156{bottom:489.097500px;}
.y13e{bottom:491.728500px;}
.y10e{bottom:493.071000px;}
.y4b{bottom:495.400500px;}
.y9a{bottom:496.497000px;}
.y1d3{bottom:498.357000px;}
.ye5{bottom:499.123500px;}
.y122{bottom:499.276500px;}
.y174{bottom:499.960500px;}
.yba{bottom:504.831000px;}
.y31{bottom:504.849000px;}
.yf{bottom:507.876000px;}
.y155{bottom:508.824000px;}
.y1f0{bottom:511.611000px;}
.y10d{bottom:512.797500px;}
.ye4{bottom:514.366500px;}
.y99{bottom:516.223500px;}
.y1b3{bottom:517.795500px;}
.y1d2{bottom:518.083500px;}
.y121{bottom:519.003000px;}
.y194{bottom:522.202500px;}
.y30{bottom:524.575500px;}
.yb9{bottom:527.845500px;}
.ye3{bottom:529.609500px;}
.y1ef{bottom:531.337500px;}
.y10c{bottom:532.522500px;}
.y154{bottom:534.468000px;}
.y13d{bottom:535.647000px;}
.y1d1{bottom:537.810000px;}
.y120{bottom:538.729500px;}
.y4a{bottom:539.320500px;}
.ye{bottom:542.547000px;}
.y173{bottom:543.319500px;}
.y2f{bottom:544.302000px;}
.ye2{bottom:544.852500px;}
.yb8{bottom:548.169000px;}
.y1ee{bottom:551.062500px;}
.y10b{bottom:552.249000px;}
.y153{bottom:554.194500px;}
.y13c{bottom:555.373500px;}
.y98{bottom:556.855500px;}
.y1d0{bottom:557.535000px;}
.y49{bottom:559.045500px;}
.ye1{bottom:560.095500px;}
.y193{bottom:560.967000px;}
.y2e{bottom:564.027000px;}
.y1b2{bottom:569.439000px;}
.y11f{bottom:570.411000px;}
.y1ed{bottom:570.789000px;}
.y172{bottom:573.697500px;}
.ye0{bottom:575.338500px;}
.y97{bottom:576.582000px;}
.yd{bottom:577.216500px;}
.yb7{bottom:579.850500px;}
.y10a{bottom:581.625000px;}
.y2d{bottom:583.753500px;}
.y192{bottom:585.177000px;}
.y13b{bottom:587.055000px;}
.y152{bottom:588.571500px;}
.y1b1{bottom:589.165500px;}
.y1cf{bottom:589.216500px;}
.y11e{bottom:590.136000px;}
.y1ec{bottom:590.515500px;}
.ydf{bottom:590.580000px;}
.y48{bottom:590.727000px;}
.y96{bottom:596.307000px;}
.y171{bottom:602.773500px;}
.y2c{bottom:603.480000px;}
.yde{bottom:605.823000px;}
.y13a{bottom:606.781500px;}
.y1b0{bottom:608.890500px;}
.y1ce{bottom:608.943000px;}
.y191{bottom:609.385500px;}
.y1eb{bottom:610.242000px;}
.y47{bottom:610.453500px;}
.yc{bottom:611.886000px;}
.yb6{bottom:614.520000px;}
.y11d{bottom:619.512000px;}
.ydd{bottom:621.066000px;}
.y151{bottom:623.092500px;}
.y109{bottom:625.545000px;}
.y1af{bottom:628.617000px;}
.y1cd{bottom:628.669500px;}
.y46{bottom:630.180000px;}
.y170{bottom:631.848000px;}
.yb5{bottom:634.246500px;}
.y95{bottom:634.845000px;}
.ydc{bottom:636.309000px;}
.y2b{bottom:638.001000px;}
.y139{bottom:638.463000px;}
.y1ea{bottom:641.923500px;}
.y190{bottom:642.538500px;}
.y91{bottom:644.344500px;}
.y108{bottom:645.270000px;}
.yb{bottom:646.557000px;}
.y1cc{bottom:648.396000px;}
.y90{bottom:648.828000px;}
.ydb{bottom:651.552000px;}
.y8f{bottom:653.310000px;}
.yb4{bottom:653.973000px;}
.y8e{bottom:657.793500px;}
.y1ae{bottom:657.993000px;}
.y11c{bottom:660.787500px;}
.y1e9{bottom:661.648500px;}
.y45{bottom:661.861500px;}
.y16f{bottom:662.226000px;}
.y8d{bottom:662.277000px;}
.y107{bottom:665.595000px;}
.yda{bottom:666.795000px;}
.y1cb{bottom:668.121000px;}
.y138{bottom:670.144500px;}
.y86{bottom:671.991000px;}
.y94{bottom:672.552000px;}
.yb3{bottom:673.699500px;}
.y150{bottom:675.145500px;}
.ya{bottom:681.226500px;}
.y1e8{bottom:681.375000px;}
.y44{bottom:681.586500px;}
.yd9{bottom:682.411500px;}
.y18f{bottom:685.071000px;}
.y106{bottom:685.918500px;}
.y8c{bottom:689.176500px;}
.y2a{bottom:690.105000px;}
.y16e{bottom:691.300500px;}
.y93{bottom:692.278500px;}
.yb2{bottom:693.424500px;}
.y8b{bottom:693.660000px;}
.yd8{bottom:697.654500px;}
.y8a{bottom:698.143500px;}
.y137{bottom:699.519000px;}
.y1ca{bottom:699.802500px;}
.y1e7{bottom:701.101500px;}
.y1ad{bottom:701.452500px;}
.y89{bottom:702.625500px;}
.y18e{bottom:704.797500px;}
.y105{bottom:706.242000px;}
.y88{bottom:707.109000px;}
.y14f{bottom:709.522500px;}
.y29{bottom:709.830000px;}
.y92{bottom:712.005000px;}
.yd7{bottom:712.897500px;}
.yb1{bottom:713.151000px;}
.y43{bottom:713.268000px;}
.y16d{bottom:714.775500px;}
.y9{bottom:715.897500px;}
.y1c9{bottom:719.529000px;}
.y87{bottom:720.559500px;}
.y1e6{bottom:720.828000px;}
.y1ac{bottom:721.179000px;}
.y16c{bottom:725.026500px;}
.y104{bottom:725.968500px;}
.yd6{bottom:728.140500px;}
.y28{bottom:729.556500px;}
.y18d{bottom:732.024000px;}
.y42{bottom:732.994500px;}
.y11b{bottom:733.836000px;}
.y1c8{bottom:739.255500px;}
.y1e5{bottom:740.553000px;}
.y1ab{bottom:740.904000px;}
.y14e{bottom:741.085500px;}
.yb0{bottom:742.525500px;}
.yd5{bottom:743.383500px;}
.y136{bottom:743.439000px;}
.y103{bottom:746.292000px;}
.y27{bottom:749.283000px;}
.y41{bottom:752.721000px;}
.y85{bottom:758.463000px;}
.yd4{bottom:758.626500px;}
.y1c7{bottom:758.980500px;}
.y1e4{bottom:760.279500px;}
.y1aa{bottom:760.630500px;}
.y16b{bottom:761.517000px;}
.y135{bottom:763.165500px;}
.y8{bottom:765.361500px;}
.y26{bottom:769.009500px;}
.y18c{bottom:770.553000px;}
.yd3{bottom:774.243000px;}
.y14d{bottom:775.462500px;}
.y84{bottom:778.189500px;}
.y1c6{bottom:778.707000px;}
.y1e3{bottom:780.006000px;}
.y40{bottom:784.402500px;}
.yaf{bottom:786.445500px;}
.yd2{bottom:789.859500px;}
.y1a9{bottom:790.005000px;}
.y16a{bottom:792.928500px;}
.y25{bottom:795.112500px;}
.y102{bottom:797.041500px;}
.y134{bottom:797.835000px;}
.y83{bottom:797.916000px;}
.y1c5{bottom:798.433500px;}
.y18b{bottom:799.929000px;}
.y3f{bottom:804.127500px;}
.y14c{bottom:804.837000px;}
.yd1{bottom:805.476000px;}
.yae{bottom:806.172000px;}
.y1e2{bottom:814.675500px;}
.y24{bottom:814.839000px;}
.y101{bottom:816.768000px;}
.y133{bottom:817.561500px;}
.yd0{bottom:821.092500px;}
.y169{bottom:823.306500px;}
.yad{bottom:825.898500px;}
.y82{bottom:827.290500px;}
.y1c4{bottom:830.115000px;}
.y7{bottom:831.931500px;}
.y1a8{bottom:833.466000px;}
.y1e1{bottom:834.402000px;}
.y23{bottom:834.565500px;}
.y3e{bottom:835.809000px;}
.y100{bottom:836.494500px;}
.ycf{bottom:836.709000px;}
.y18a{bottom:840.561000px;}
.yac{bottom:845.625000px;}
.y14b{bottom:848.706000px;}
.y132{bottom:849.243000px;}
.y1c3{bottom:849.841500px;}
.yce{bottom:851.952000px;}
.y1a7{bottom:853.191000px;}
.y1e0{bottom:854.128500px;}
.y22{bottom:854.290500px;}
.y168{bottom:854.719500px;}
.y6{bottom:854.944500px;}
.y3d{bottom:855.535500px;}
.y189{bottom:862.230000px;}
.y81{bottom:863.499000px;}
.yab{bottom:865.350000px;}
.ycd{bottom:867.195000px;}
.y1c2{bottom:869.566500px;}
.y188{bottom:872.479500px;}
.y1df{bottom:873.855000px;}
.y21{bottom:874.017000px;}
.yff{bottom:874.440000px;}
.y5{bottom:877.959000px;}
.y77{bottom:878.044500px;}
.y14a{bottom:880.270500px;}
.y1a6{bottom:880.281000px;}
.y131{bottom:880.924500px;}
.ycc{bottom:882.438000px;}
.y76{bottom:882.528000px;}
.y80{bottom:883.225500px;}
.y167{bottom:884.094000px;}
.yaa{bottom:885.076500px;}
.y75{bottom:887.010000px;}
.yf4{bottom:888.771000px;}
.y74{bottom:891.493500px;}
.y187{bottom:892.206000px;}
.y1de{bottom:893.580000px;}
.y73{bottom:895.977000px;}
.ycb{bottom:897.681000px;}
.yfe{bottom:900.022500px;}
.y20{bottom:900.121500px;}
.y72{bottom:900.460500px;}
.y1c1{bottom:901.248000px;}
.y7f{bottom:902.952000px;}
.y71{bottom:904.944000px;}
.y3c{bottom:906.285000px;}
.y70{bottom:909.427500px;}
.y149{bottom:911.835000px;}
.y186{bottom:911.932500px;}
.yca{bottom:912.924000px;}
.ya9{bottom:913.306500px;}
.y6f{bottom:913.909500px;}
.yf3{bottom:914.355000px;}
.y130{bottom:915.594000px;}
.yfc{bottom:918.105000px;}
.y6e{bottom:918.393000px;}
.y1a5{bottom:919.732500px;}
.y1f{bottom:919.848000px;}
.y1c0{bottom:920.974500px;}
.y6d{bottom:922.876500px;}
.y4{bottom:923.388000px;}
.y166{bottom:924.165000px;}
.y6c{bottom:927.360000px;}
.yc9{bottom:928.165500px;}
.y185{bottom:931.659000px;}
.y6b{bottom:931.843500px;}
.y7e{bottom:932.973000px;}
.ya8{bottom:933.033000px;}
.y12f{bottom:935.320500px;}
.yfd{bottom:936.187500px;}
.y6a{bottom:936.327000px;}
.y1a4{bottom:939.459000px;}
.y1e{bottom:939.573000px;}
.yf2{bottom:939.937500px;}
.y1bf{bottom:940.701000px;}
.y69{bottom:940.809000px;}
.y148{bottom:943.398000px;}
.yc8{bottom:943.408500px;}
.y165{bottom:943.891500px;}
.y68{bottom:945.292500px;}
.y3{bottom:945.723000px;}
.yf1{bottom:948.979500px;}
.y67{bottom:949.776000px;}
.y184{bottom:951.384000px;}
.y7d{bottom:952.698000px;}
.ya7{bottom:952.759500px;}
.y66{bottom:954.259500px;}
.yc7{bottom:958.651500px;}
.y1a3{bottom:959.185500px;}
.y1d{bottom:959.299500px;}
.y1be{bottom:960.427500px;}
.yfb{bottom:961.771500px;}
.y52{bottom:963.973500px;}
.y12e{bottom:964.695000px;}
.y7c{bottom:972.424500px;}
.ya6{bottom:972.484500px;}
.yc6{bottom:973.521000px;}
.y147{bottom:974.962500px;}
.y1a2{bottom:978.912000px;}
.y1c{bottom:979.026000px;}
.yf9{bottom:979.852500px;}
.y183{bottom:980.077500px;}
.y65{bottom:981.159000px;}
.y2{bottom:981.888000px;}
.yf0{bottom:983.604000px;}
.y164{bottom:983.962500px;}
.y64{bottom:985.642500px;}
.y63{bottom:990.124500px;}
.ya5{bottom:992.211000px;}
.y62{bottom:994.608000px;}
.y146{bottom:994.689000px;}
.y1fc{bottom:995.335500px;}
.y1bd{bottom:996.801000px;}
.yfa{bottom:997.935000px;}
.y1a1{bottom:998.637000px;}
.y1b{bottom:998.752500px;}
.y61{bottom:999.091500px;}
.y7b{bottom:1002.445500px;}
.y60{bottom:1003.575000px;}
.y163{bottom:1003.689000px;}
.y5f{bottom:1008.058500px;}
.y12d{bottom:1008.615000px;}
.yef{bottom:1009.186500px;}
.ya4{bottom:1011.937500px;}
.y5e{bottom:1012.542000px;}
.y5d{bottom:1017.024000px;}
.y1a0{bottom:1018.363500px;}
.y1a{bottom:1018.477500px;}
.y182{bottom:1019.529000px;}
.y5c{bottom:1021.507500px;}
.y7a{bottom:1022.172000px;}
.y1{bottom:1022.304000px;}
.yf8{bottom:1023.519000px;}
.y1fb{bottom:1024.711500px;}
.y5b{bottom:1025.991000px;}
.y145{bottom:1026.252000px;}
.yed{bottom:1027.269000px;}
.y12c{bottom:1028.341500px;}
.y5a{bottom:1030.474500px;}
.y162{bottom:1034.776500px;}
.y59{bottom:1034.958000px;}
.y19f{bottom:1038.090000px;}
.y181{bottom:1039.255500px;}
.y58{bottom:1039.441500px;}
.ya3{bottom:1041.312000px;}
.yf6{bottom:1041.601500px;}
.y79{bottom:1041.897000px;}
.y161{bottom:1042.500000px;}
.y57{bottom:1043.923500px;}
.yee{bottom:1045.351500px;}
.y12b{bottom:1048.068000px;}
.y11a{bottom:1048.306500px;}
.y56{bottom:1048.407000px;}
.y1bc{bottom:1048.905000px;}
.y160{bottom:1052.751000px;}
.y55{bottom:1052.890500px;}
.y19{bottom:1052.998500px;}
.y54{bottom:1057.374000px;}
.y144{bottom:1057.816500px;}
.y180{bottom:1058.982000px;}
.yf7{bottom:1059.684000px;}
.y78{bottom:1061.623500px;}
.y119{bottom:1068.630000px;}
.y53{bottom:1070.823000px;}
.yec{bottom:1070.935500px;}
.y18{bottom:1082.589000px;}
.yf5{bottom:1085.266500px;}
.y143{bottom:1087.191000px;}
.y118{bottom:1088.356500px;}
.y17{bottom:1146.040500px;}
.hb{height:2.391024px;}
.hf{height:15.451993px;}
.hd{height:23.850624px;}
.h17{height:29.833916px;}
.he{height:33.187496px;}
.h11{height:33.462605px;}
.h10{height:37.551283px;}
.h4{height:37.927872px;}
.h13{height:41.484266px;}
.h7{height:41.842920px;}
.h1b{height:42.799330px;}
.h8{height:44.831700px;}
.h9{height:50.211840px;}
.h5{height:51.216077px;}
.hc{height:51.523916px;}
.h6{height:60.254040px;}
.h2{height:72.304680px;}
.h3{height:72.511265px;}
.h12{height:74.089872px;}
.h15{height:83.145798px;}
.h14{height:85.265700px;}
.h18{height:85.271700px;}
.h1a{height:85.835700px;}
.ha{height:86.673024px;}
.h19{height:91.809024px;}
.h16{height:100.179024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:149.457000px;}
.x1a{left:158.422500px;}
.x2{left:161.685000px;}
.x16{left:166.095000px;}
.x9{left:167.721000px;}
.x1{left:168.733500px;}
.x2e{left:169.863000px;}
.xc{left:171.873000px;}
.x12{left:174.286500px;}
.x7{left:176.158500px;}
.x17{left:177.850500px;}
.xf{left:182.131500px;}
.xb{left:185.770500px;}
.xd{left:186.816000px;}
.x18{left:190.552500px;}
.xe{left:204.115500px;}
.x20{left:219.693000px;}
.x19{left:228.660000px;}
.x15{left:232.695000px;}
.x6{left:266.967000px;}
.x21{left:270.760500px;}
.x1b{left:274.443000px;}
.x1c{left:276.541500px;}
.x29{left:280.287000px;}
.x22{left:281.902500px;}
.x2d{left:301.329000px;}
.x2b{left:312.124500px;}
.x3{left:335.149500px;}
.x25{left:359.158500px;}
.x2f{left:361.509000px;}
.x2c{left:363.193500px;}
.x5{left:377.692500px;}
.x23{left:396.661500px;}
.x32{left:399.891000px;}
.x31{left:405.138000px;}
.x4{left:408.634500px;}
.x24{left:438.984000px;}
.xa{left:442.720500px;}
.x30{left:445.759500px;}
.x10{left:456.601500px;}
.x26{left:462.148500px;}
.x13{left:464.446500px;}
.x11{left:469.884000px;}
.x14{left:477.730500px;}
.x27{left:485.070000px;}
.x2a{left:494.568000px;}
.x1d{left:497.679000px;}
.x28{left:508.980000px;}
.x1e{left:564.004500px;}
.x1f{left:566.103000px;}
@media print{
.v3{vertical-align:-15.002667pt;}
.v7{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.968000pt;}
.v2{vertical-align:19.280000pt;}
.v8{vertical-align:27.978667pt;}
.v4{vertical-align:32.144000pt;}
.v5{vertical-align:35.941333pt;}
.vb{vertical-align:43.040000pt;}
.v1{vertical-align:74.917333pt;}
.va{vertical-align:79.482667pt;}
.v6{vertical-align:86.922667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000416pt;}
.ls1e{letter-spacing:0.000749pt;}
.ls23{letter-spacing:0.007927pt;}
.ls20{letter-spacing:0.017030pt;}
.ls27{letter-spacing:0.018655pt;}
.ls21{letter-spacing:0.022363pt;}
.ls2b{letter-spacing:0.022524pt;}
.ls26{letter-spacing:0.023889pt;}
.ls1c{letter-spacing:0.425071pt;}
.lsd{letter-spacing:2.656473pt;}
.ls24{letter-spacing:2.656631pt;}
.ls1a{letter-spacing:2.659633pt;}
.ls28{letter-spacing:2.661964pt;}
.ls19{letter-spacing:8.820222pt;}
.ls4{letter-spacing:8.873356pt;}
.ls1f{letter-spacing:11.795718pt;}
.ls2{letter-spacing:13.549136pt;}
.lsb{letter-spacing:14.718081pt;}
.ls5{letter-spacing:14.761279pt;}
.ls15{letter-spacing:14.771215pt;}
.ls14{letter-spacing:15.227914pt;}
.ls1d{letter-spacing:15.230400pt;}
.lsa{letter-spacing:17.109105pt;}
.ls16{letter-spacing:17.417645pt;}
.ls2a{letter-spacing:17.419297pt;}
.ls11{letter-spacing:17.693578pt;}
.ls12{letter-spacing:17.746711pt;}
.ls6{letter-spacing:18.968790pt;}
.ls3{letter-spacing:20.297137pt;}
.ls8{letter-spacing:20.350271pt;}
.ls17{letter-spacing:21.136479pt;}
.ls10{letter-spacing:22.263090pt;}
.ls1b{letter-spacing:22.316224pt;}
.lse{letter-spacing:22.571323pt;}
.lsf{letter-spacing:22.613830pt;}
.ls2e{letter-spacing:22.847563pt;}
.ls2f{letter-spacing:22.900697pt;}
.ls2d{letter-spacing:24.016631pt;}
.lsc{letter-spacing:24.267297pt;}
.ls2c{letter-spacing:25.536631pt;}
.ls0{letter-spacing:26.566933pt;}
.ls9{letter-spacing:53.080733pt;}
.ls7{letter-spacing:53.133867pt;}
.ls29{letter-spacing:112.643733pt;}
.ls13{letter-spacing:131.009853pt;}
.ls22{letter-spacing:244.603297pt;}
.ls18{letter-spacing:378.441067pt;}
.ws4{word-spacing:-43.038600pt;}
.ws39{word-spacing:-42.066082pt;}
.wsc9{word-spacing:-38.362652pt;}
.wsc0{word-spacing:-32.889863pt;}
.ws8b{word-spacing:-30.551973pt;}
.ws40{word-spacing:-27.156719pt;}
.ws1a{word-spacing:-26.566933pt;}
.ws74{word-spacing:-22.584075pt;}
.ws0{word-spacing:-17.215400pt;}
.wsaa{word-spacing:-16.949703pt;}
.wsa5{word-spacing:-15.621357pt;}
.wsa7{word-spacing:-15.036884pt;}
.wsc5{word-spacing:-14.824349pt;}
.ws32{word-spacing:-14.771215pt;}
.ws60{word-spacing:-14.718081pt;}
.ws7{word-spacing:-14.346200pt;}
.wsc3{word-spacing:-14.080475pt;}
.ws12{word-spacing:-13.921073pt;}
.ws9e{word-spacing:-13.814805pt;}
.wsd5{word-spacing:-13.655404pt;}
.wsf8{word-spacing:-13.496002pt;}
.wsed{word-spacing:-13.283467pt;}
.ws31{word-spacing:-13.230333pt;}
.ws103{word-spacing:-13.124065pt;}
.ws1e{word-spacing:-13.070931pt;}
.wsa9{word-spacing:-13.017797pt;}
.wscc{word-spacing:-12.911530pt;}
.ws63{word-spacing:-12.858396pt;}
.ws2a{word-spacing:-12.805262pt;}
.wsd2{word-spacing:-12.433325pt;}
.wsf9{word-spacing:-12.380191pt;}
.wsd3{word-spacing:-12.327057pt;}
.ws8f{word-spacing:-12.167655pt;}
.ws90{word-spacing:-12.114522pt;}
.wsbc{word-spacing:-12.008254pt;}
.ws5f{word-spacing:-11.955200pt;}
.ws1b{word-spacing:-11.955120pt;}
.ws68{word-spacing:-11.901986pt;}
.wsc8{word-spacing:-11.848852pt;}
.ws11{word-spacing:-11.795718pt;}
.ws94{word-spacing:-11.742585pt;}
.ws14{word-spacing:-11.689451pt;}
.wsa4{word-spacing:-11.636317pt;}
.wsd4{word-spacing:-11.583183pt;}
.wsee{word-spacing:-11.530049pt;}
.wsb{word-spacing:-11.438703pt;}
.ws6b{word-spacing:-11.423781pt;}
.wse3{word-spacing:-11.322827pt;}
.wsd8{word-spacing:-11.211246pt;}
.ws6e{word-spacing:-11.158112pt;}
.ws92{word-spacing:-11.104978pt;}
.ws6f{word-spacing:-11.051844pt;}
.ws5b{word-spacing:-10.945577pt;}
.ws69{word-spacing:-10.892443pt;}
.ws34{word-spacing:-10.839309pt;}
.wsfa{word-spacing:-10.786175pt;}
.wsd9{word-spacing:-10.733041pt;}
.wsaf{word-spacing:-10.679907pt;}
.wsef{word-spacing:-10.632087pt;}
.wsba{word-spacing:-10.573639pt;}
.ws5d{word-spacing:-10.520506pt;}
.wsf7{word-spacing:-10.467372pt;}
.ws64{word-spacing:-10.361104pt;}
.wse7{word-spacing:-10.260150pt;}
.ws5{word-spacing:-10.201702pt;}
.wsc{word-spacing:-10.148569pt;}
.wsec{word-spacing:-10.047614pt;}
.ws61{word-spacing:-9.936033pt;}
.wsff{word-spacing:-9.829765pt;}
.wsea{word-spacing:-9.776631pt;}
.ws53{word-spacing:-9.723498pt;}
.ws57{word-spacing:-9.617230pt;}
.wse0{word-spacing:-9.510962pt;}
.ws1c{word-spacing:-9.351561pt;}
.wsb3{word-spacing:-9.298427pt;}
.ws2c{word-spacing:-9.192159pt;}
.ws72{word-spacing:-9.139025pt;}
.ws30{word-spacing:-9.032757pt;}
.wsa6{word-spacing:-8.926490pt;}
.ws8{word-spacing:-8.873356pt;}
.ws6c{word-spacing:-8.820222pt;}
.ws19{word-spacing:-8.660820pt;}
.ws2f{word-spacing:-8.607686pt;}
.ws13{word-spacing:-8.501419pt;}
.wse{word-spacing:-8.448285pt;}
.wsb9{word-spacing:-8.395151pt;}
.wsbd{word-spacing:-8.342017pt;}
.wse8{word-spacing:-8.294197pt;}
.wsbe{word-spacing:-8.288883pt;}
.wsf2{word-spacing:-8.134795pt;}
.wse1{word-spacing:-8.129482pt;}
.ws9d{word-spacing:-8.076348pt;}
.wsd6{word-spacing:-7.970080pt;}
.ws100{word-spacing:-7.916946pt;}
.wseb{word-spacing:-7.815992pt;}
.ws1d{word-spacing:-7.810678pt;}
.ws15{word-spacing:-7.757545pt;}
.wsde{word-spacing:-7.704411pt;}
.wsf1{word-spacing:-7.603456pt;}
.ws46{word-spacing:-7.598143pt;}
.wse6{word-spacing:-7.545009pt;}
.wse2{word-spacing:-7.497189pt;}
.wsdd{word-spacing:-7.337787pt;}
.ws97{word-spacing:-7.332474pt;}
.ws96{word-spacing:-7.279340pt;}
.ws4e{word-spacing:-7.173072pt;}
.ws4c{word-spacing:-7.119938pt;}
.ws23{word-spacing:-7.066804pt;}
.ws101{word-spacing:-6.907403pt;}
.wsa3{word-spacing:-6.854269pt;}
.ws21{word-spacing:-6.801135pt;}
.ws25{word-spacing:-6.641733pt;}
.ws27{word-spacing:-6.588599pt;}
.ws9c{word-spacing:-6.535466pt;}
.ws59{word-spacing:-6.429198pt;}
.wsb8{word-spacing:-6.381377pt;}
.ws36{word-spacing:-6.269796pt;}
.ws4d{word-spacing:-6.216662pt;}
.wsbb{word-spacing:-6.057261pt;}
.ws89{word-spacing:-6.004127pt;}
.ws2e{word-spacing:-5.950993pt;}
.ws7a{word-spacing:-5.844725pt;}
.ws20{word-spacing:-5.791591pt;}
.ws6d{word-spacing:-5.738458pt;}
.ws44{word-spacing:-5.632190pt;}
.wsf4{word-spacing:-5.579056pt;}
.wsbf{word-spacing:-5.525922pt;}
.ws66{word-spacing:-5.472788pt;}
.ws55{word-spacing:-5.419654pt;}
.wsf0{word-spacing:-5.366521pt;}
.ws78{word-spacing:-5.260253pt;}
.wsf3{word-spacing:-5.207119pt;}
.ws8a{word-spacing:-5.153985pt;}
.wsd1{word-spacing:-5.100851pt;}
.ws9b{word-spacing:-4.994583pt;}
.ws6a{word-spacing:-4.941450pt;}
.ws51{word-spacing:-4.835182pt;}
.ws17{word-spacing:-4.463245pt;}
.ws98{word-spacing:-4.410111pt;}
.ws93{word-spacing:-4.303843pt;}
.wsc4{word-spacing:-4.250709pt;}
.wse9{word-spacing:-4.197575pt;}
.ws99{word-spacing:-4.091308pt;}
.wsdf{word-spacing:-4.038174pt;}
.wse5{word-spacing:-3.985040pt;}
.ws45{word-spacing:-3.931906pt;}
.wsa8{word-spacing:-3.772505pt;}
.wsca{word-spacing:-3.719371pt;}
.wsfc{word-spacing:-3.666237pt;}
.wscf{word-spacing:-3.559969pt;}
.ws10{word-spacing:-3.506835pt;}
.ws8d{word-spacing:-3.453701pt;}
.wsf5{word-spacing:-3.405881pt;}
.wsf6{word-spacing:-3.352747pt;}
.ws67{word-spacing:-3.299613pt;}
.ws65{word-spacing:-3.246479pt;}
.ws9a{word-spacing:-3.241166pt;}
.wsdb{word-spacing:-3.188032pt;}
.wsce{word-spacing:-3.081764pt;}
.ws28{word-spacing:-2.975497pt;}
.wsda{word-spacing:-2.816095pt;}
.wsd{word-spacing:-2.656693pt;}
.ws18{word-spacing:-2.391024pt;}
.ws16{word-spacing:-2.337890pt;}
.wsfe{word-spacing:-2.290070pt;}
.wsfd{word-spacing:-2.236936pt;}
.wsd0{word-spacing:-2.231622pt;}
.ws3f{word-spacing:-2.072221pt;}
.ws41{word-spacing:-1.912819pt;}
.wsd7{word-spacing:-1.806551pt;}
.ws62{word-spacing:-1.700284pt;}
.ws71{word-spacing:-1.647150pt;}
.ws2b{word-spacing:-1.594016pt;}
.wsa0{word-spacing:-1.487748pt;}
.wsa2{word-spacing:-1.434614pt;}
.wsfb{word-spacing:-1.275213pt;}
.wsf{word-spacing:-0.797008pt;}
.wsab{word-spacing:-0.318803pt;}
.wsac{word-spacing:-0.270983pt;}
.wscb{word-spacing:-0.159402pt;}
.wse4{word-spacing:-0.058447pt;}
.ws9{word-spacing:-0.053134pt;}
.wsb7{word-spacing:-0.037194pt;}
.ws76{word-spacing:-0.026567pt;}
.ws75{word-spacing:-0.012752pt;}
.wsa{word-spacing:0.000000pt;}
.ws77{word-spacing:0.029755pt;}
.ws3d{word-spacing:0.265669pt;}
.ws42{word-spacing:1.163632pt;}
.wsdc{word-spacing:1.540882pt;}
.ws95{word-spacing:2.178489pt;}
.ws50{word-spacing:2.337890pt;}
.ws9f{word-spacing:7.810678pt;}
.ws33{word-spacing:8.767088pt;}
.ws3a{word-spacing:8.820222pt;}
.ws4a{word-spacing:9.617230pt;}
.wsb6{word-spacing:11.742585pt;}
.ws38{word-spacing:13.496002pt;}
.ws8e{word-spacing:14.399278pt;}
.wsb5{word-spacing:14.437889pt;}
.wsc2{word-spacing:14.664947pt;}
.wsad{word-spacing:14.718081pt;}
.wsae{word-spacing:14.983750pt;}
.ws91{word-spacing:15.408821pt;}
.ws70{word-spacing:15.461955pt;}
.ws5c{word-spacing:15.621357pt;}
.ws49{word-spacing:15.993294pt;}
.ws54{word-spacing:16.790302pt;}
.ws56{word-spacing:16.843436pt;}
.ws58{word-spacing:16.896570pt;}
.wsb4{word-spacing:17.215373pt;}
.wsb2{word-spacing:17.268507pt;}
.ws73{word-spacing:17.374774pt;}
.ws4b{word-spacing:17.640444pt;}
.ws7c{word-spacing:17.693578pt;}
.ws102{word-spacing:17.853024pt;}
.ws24{word-spacing:18.065515pt;}
.ws6{word-spacing:18.596853pt;}
.ws47{word-spacing:18.968790pt;}
.ws22{word-spacing:19.446995pt;}
.wsb0{word-spacing:19.818932pt;}
.ws26{word-spacing:19.925200pt;}
.ws37{word-spacing:20.297137pt;}
.ws35{word-spacing:20.350271pt;}
.ws7b{word-spacing:20.615940pt;}
.ws1f{word-spacing:20.722208pt;}
.ws2{word-spacing:20.722347pt;}
.ws3{word-spacing:20.786108pt;}
.ws43{word-spacing:20.934743pt;}
.wsc1{word-spacing:20.987877pt;}
.ws79{word-spacing:21.253547pt;}
.wscd{word-spacing:21.572350pt;}
.ws52{word-spacing:21.731751pt;}
.ws5a{word-spacing:22.050555pt;}
.wsb1{word-spacing:22.581893pt;}
.ws8c{word-spacing:23.006964pt;}
.ws4f{word-spacing:23.325767pt;}
.ws3e{word-spacing:24.441579pt;}
.ws3c{word-spacing:24.494713pt;}
.wsa1{word-spacing:25.026051pt;}
.ws2d{word-spacing:25.823059pt;}
.wsc7{word-spacing:26.460666pt;}
.wsc6{word-spacing:26.513799pt;}
.ws1{word-spacing:27.636455pt;}
.ws29{word-spacing:35.865600pt;}
.ws48{word-spacing:42.507093pt;}
.ws5e{word-spacing:43.038600pt;}
.ws3b{word-spacing:51.008512pt;}
.ws7d{word-spacing:63.697306pt;}
.ws87{word-spacing:75.752929pt;}
.ws85{word-spacing:100.332820pt;}
.ws7e{word-spacing:100.380641pt;}
.ws81{word-spacing:138.541640pt;}
.ws7f{word-spacing:138.589460pt;}
.ws83{word-spacing:163.169352pt;}
.ws82{word-spacing:236.728073pt;}
.ws84{word-spacing:244.173005pt;}
.ws80{word-spacing:286.924800pt;}
.ws86{word-spacing:296.632422pt;}
.ws88{word-spacing:358.560358pt;}
._27{margin-left:-516.062680pt;}
._3d{margin-left:-15.457759pt;}
._3e{margin-left:-14.337515pt;}
._3f{margin-left:-12.047230pt;}
._2{margin-left:-7.253422pt;}
._36{margin-left:-6.230761pt;}
._4{margin-left:-5.164646pt;}
._1b{margin-left:-4.174626pt;}
._1{margin-left:-2.846279pt;}
._5{margin-left:-1.849071pt;}
._14{margin-left:-0.944075pt;}
._a{width:1.199130pt;}
._3{width:2.387202pt;}
._1f{width:4.045409pt;}
._18{width:13.655404pt;}
._35{width:15.844554pt;}
._23{width:16.769073pt;}
._2b{width:18.889216pt;}
._22{width:19.864831pt;}
._21{width:21.412948pt;}
._1d{width:22.877747pt;}
._11{width:24.005893pt;}
._17{width:24.972917pt;}
._34{width:26.047930pt;}
._1a{width:27.087658pt;}
._16{width:28.290166pt;}
._20{width:29.898653pt;}
._28{width:31.508383pt;}
._2a{width:32.411659pt;}
._f{width:33.527470pt;}
._29{width:34.503450pt;}
._24{width:36.313380pt;}
._25{width:37.471711pt;}
._1e{width:38.768595pt;}
._33{width:40.002566pt;}
._1c{width:41.114998pt;}
._15{width:42.188290pt;}
._19{width:43.645854pt;}
._0{width:45.907733pt;}
._6{width:49.148827pt;}
._3c{width:53.495189pt;}
._37{width:63.752576pt;}
._26{width:71.731200pt;}
._32{width:75.604685pt;}
._13{width:86.077200pt;}
._7{width:155.894812pt;}
._2c{width:201.755955pt;}
._2d{width:209.263821pt;}
._31{width:214.476288pt;}
._2e{width:226.335846pt;}
._30{width:233.795891pt;}
._39{width:245.265929pt;}
._2f{width:250.915738pt;}
._3b{width:256.689710pt;}
._38{width:260.672260pt;}
._3a{width:272.096041pt;}
._b{width:800.993040pt;}
._12{width:817.528334pt;}
._e{width:921.125346pt;}
._c{width:1361.395932pt;}
._10{width:1502.094411pt;}
._8{width:1550.563158pt;}
._d{width:1686.074042pt;}
._9{width:1871.720648pt;}
.fs8{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:172.861333pt;}
.y15f{bottom:208.653333pt;}
.y17f{bottom:212.712000pt;}
.y15e{bottom:217.765333pt;}
.yc5{bottom:227.473333pt;}
.y17e{bottom:230.246667pt;}
.y3b{bottom:232.702667pt;}
.y1dd{bottom:235.760000pt;}
.y117{bottom:236.048000pt;}
.y1fa{bottom:238.449333pt;}
.yc4{bottom:247.094667pt;}
.y17d{bottom:247.780000pt;}
.y3a{bottom:250.236000pt;}
.y15d{bottom:252.909333pt;}
.y1dc{bottom:253.294667pt;}
.y116{bottom:253.581333pt;}
.y1f9{bottom:256.081333pt;}
.yc3{bottom:264.628000pt;}
.y1bb{bottom:265.314667pt;}
.y19e{bottom:267.197333pt;}
.y1db{bottom:270.829333pt;}
.y115{bottom:271.116000pt;}
.y12a{bottom:271.646667pt;}
.y17c{bottom:275.702667pt;}
.y39{bottom:278.397333pt;}
.y1ba{bottom:282.849333pt;}
.y15c{bottom:283.466667pt;}
.y19d{bottom:284.732000pt;}
.y129{bottom:289.180000pt;}
.y114{bottom:289.181333pt;}
.y15{bottom:289.430667pt;}
.yc2{bottom:292.789333pt;}
.y1f8{bottom:293.237333pt;}
.y38{bottom:295.932000pt;}
.y1da{bottom:298.990667pt;}
.y51{bottom:299.412000pt;}
.y15b{bottom:301.001333pt;}
.ya2{bottom:301.056000pt;}
.y17b{bottom:302.705333pt;}
.y113{bottom:307.248000pt;}
.y14{bottom:307.496000pt;}
.y19c{bottom:310.237333pt;}
.yc1{bottom:310.324000pt;}
.y1b9{bottom:313.534667pt;}
.y1d9{bottom:316.524000pt;}
.yeb{bottom:316.574667pt;}
.y50{bottom:316.946667pt;}
.y128{bottom:317.341333pt;}
.ya1{bottom:318.590667pt;}
.y1f7{bottom:321.398667pt;}
.y37{bottom:322.042667pt;}
.y142{bottom:323.840000pt;}
.y13{bottom:325.562667pt;}
.y15a{bottom:327.112000pt;}
.y19b{bottom:327.770667pt;}
.yc0{bottom:327.858667pt;}
.y17a{bottom:330.626667pt;}
.y1d8{bottom:334.058667pt;}
.yea{bottom:334.109333pt;}
.y4f{bottom:334.481333pt;}
.y127{bottom:334.876000pt;}
.ya0{bottom:336.124000pt;}
.y112{bottom:338.065333pt;}
.y1f6{bottom:338.932000pt;}
.y12{bottom:343.628000pt;}
.y179{bottom:348.161333pt;}
.ye9{bottom:351.642667pt;}
.y141{bottom:352.001333pt;}
.y9f{bottom:353.658667pt;}
.y159{bottom:355.428000pt;}
.y111{bottom:355.600000pt;}
.ybf{bottom:356.020000pt;}
.y1f5{bottom:356.466667pt;}
.y19a{bottom:356.968000pt;}
.y1b8{bottom:359.440000pt;}
.y4e{bottom:360.592000pt;}
.y36{bottom:361.082667pt;}
.y1d7{bottom:362.220000pt;}
.y126{bottom:363.037333pt;}
.y178{bottom:365.696000pt;}
.y199{bottom:366.080000pt;}
.ye8{bottom:369.177333pt;}
.y9e{bottom:371.193333pt;}
.y1f4{bottom:374.001333pt;}
.ybe{bottom:374.085333pt;}
.y11{bottom:374.313333pt;}
.y1b7{bottom:376.974667pt;}
.y35{bottom:378.617333pt;}
.y1d6{bottom:379.754667pt;}
.y140{bottom:380.162667pt;}
.y110{bottom:381.710667pt;}
.y177{bottom:383.229333pt;}
.y9d{bottom:388.728000pt;}
.y198{bottom:388.745333pt;}
.y125{bottom:391.198667pt;}
.y1f3{bottom:391.536000pt;}
.ybd{bottom:392.150667pt;}
.y158{bottom:394.424000pt;}
.y1b6{bottom:394.508000pt;}
.y34{bottom:396.152000pt;}
.y4d{bottom:396.709333pt;}
.y197{bottom:397.857333pt;}
.y176{bottom:400.764000pt;}
.y9c{bottom:406.262667pt;}
.y1d5{bottom:407.916000pt;}
.y124{bottom:408.733333pt;}
.y1f2{bottom:409.069333pt;}
.y13f{bottom:410.980000pt;}
.y157{bottom:411.957333pt;}
.y1b5{bottom:412.042667pt;}
.ybc{bottom:412.608000pt;}
.y33{bottom:413.686667pt;}
.y4c{bottom:414.244000pt;}
.ye7{bottom:416.566667pt;}
.y175{bottom:418.298667pt;}
.y196{bottom:420.521333pt;}
.y10{bottom:420.628000pt;}
.y10f{bottom:420.750667pt;}
.y9b{bottom:423.796000pt;}
.y1d4{bottom:425.449333pt;}
.y123{bottom:426.266667pt;}
.y1f1{bottom:426.604000pt;}
.y1b4{bottom:429.577333pt;}
.y195{bottom:429.633333pt;}
.ye6{bottom:430.116000pt;}
.ybb{bottom:430.673333pt;}
.y32{bottom:431.220000pt;}
.y156{bottom:434.753333pt;}
.y13e{bottom:437.092000pt;}
.y10e{bottom:438.285333pt;}
.y4b{bottom:440.356000pt;}
.y9a{bottom:441.330667pt;}
.y1d3{bottom:442.984000pt;}
.ye5{bottom:443.665333pt;}
.y122{bottom:443.801333pt;}
.y174{bottom:444.409333pt;}
.yba{bottom:448.738667pt;}
.y31{bottom:448.754667pt;}
.yf{bottom:451.445333pt;}
.y155{bottom:452.288000pt;}
.y1f0{bottom:454.765333pt;}
.y10d{bottom:455.820000pt;}
.ye4{bottom:457.214667pt;}
.y99{bottom:458.865333pt;}
.y1b3{bottom:460.262667pt;}
.y1d2{bottom:460.518667pt;}
.y121{bottom:461.336000pt;}
.y194{bottom:464.180000pt;}
.y30{bottom:466.289333pt;}
.yb9{bottom:469.196000pt;}
.ye3{bottom:470.764000pt;}
.y1ef{bottom:472.300000pt;}
.y10c{bottom:473.353333pt;}
.y154{bottom:475.082667pt;}
.y13d{bottom:476.130667pt;}
.y1d1{bottom:478.053333pt;}
.y120{bottom:478.870667pt;}
.y4a{bottom:479.396000pt;}
.ye{bottom:482.264000pt;}
.y173{bottom:482.950667pt;}
.y2f{bottom:483.824000pt;}
.ye2{bottom:484.313333pt;}
.yb8{bottom:487.261333pt;}
.y1ee{bottom:489.833333pt;}
.y10b{bottom:490.888000pt;}
.y153{bottom:492.617333pt;}
.y13c{bottom:493.665333pt;}
.y98{bottom:494.982667pt;}
.y1d0{bottom:495.586667pt;}
.y49{bottom:496.929333pt;}
.ye1{bottom:497.862667pt;}
.y193{bottom:498.637333pt;}
.y2e{bottom:501.357333pt;}
.y1b2{bottom:506.168000pt;}
.y11f{bottom:507.032000pt;}
.y1ed{bottom:507.368000pt;}
.y172{bottom:509.953333pt;}
.ye0{bottom:511.412000pt;}
.y97{bottom:512.517333pt;}
.yd{bottom:513.081333pt;}
.yb7{bottom:515.422667pt;}
.y10a{bottom:517.000000pt;}
.y2d{bottom:518.892000pt;}
.y192{bottom:520.157333pt;}
.y13b{bottom:521.826667pt;}
.y152{bottom:523.174667pt;}
.y1b1{bottom:523.702667pt;}
.y1cf{bottom:523.748000pt;}
.y11e{bottom:524.565333pt;}
.y1ec{bottom:524.902667pt;}
.ydf{bottom:524.960000pt;}
.y48{bottom:525.090667pt;}
.y96{bottom:530.050667pt;}
.y171{bottom:535.798667pt;}
.y2c{bottom:536.426667pt;}
.yde{bottom:538.509333pt;}
.y13a{bottom:539.361333pt;}
.y1b0{bottom:541.236000pt;}
.y1ce{bottom:541.282667pt;}
.y191{bottom:541.676000pt;}
.y1eb{bottom:542.437333pt;}
.y47{bottom:542.625333pt;}
.yc{bottom:543.898667pt;}
.yb6{bottom:546.240000pt;}
.y11d{bottom:550.677333pt;}
.ydd{bottom:552.058667pt;}
.y151{bottom:553.860000pt;}
.y109{bottom:556.040000pt;}
.y1af{bottom:558.770667pt;}
.y1cd{bottom:558.817333pt;}
.y46{bottom:560.160000pt;}
.y170{bottom:561.642667pt;}
.yb5{bottom:563.774667pt;}
.y95{bottom:564.306667pt;}
.ydc{bottom:565.608000pt;}
.y2b{bottom:567.112000pt;}
.y139{bottom:567.522667pt;}
.y1ea{bottom:570.598667pt;}
.y190{bottom:571.145333pt;}
.y91{bottom:572.750667pt;}
.y108{bottom:573.573333pt;}
.yb{bottom:574.717333pt;}
.y1cc{bottom:576.352000pt;}
.y90{bottom:576.736000pt;}
.ydb{bottom:579.157333pt;}
.y8f{bottom:580.720000pt;}
.yb4{bottom:581.309333pt;}
.y8e{bottom:584.705333pt;}
.y1ae{bottom:584.882667pt;}
.y11c{bottom:587.366667pt;}
.y1e9{bottom:588.132000pt;}
.y45{bottom:588.321333pt;}
.y16f{bottom:588.645333pt;}
.y8d{bottom:588.690667pt;}
.y107{bottom:591.640000pt;}
.yda{bottom:592.706667pt;}
.y1cb{bottom:593.885333pt;}
.y138{bottom:595.684000pt;}
.y86{bottom:597.325333pt;}
.y94{bottom:597.824000pt;}
.yb3{bottom:598.844000pt;}
.y150{bottom:600.129333pt;}
.ya{bottom:605.534667pt;}
.y1e8{bottom:605.666667pt;}
.y44{bottom:605.854667pt;}
.yd9{bottom:606.588000pt;}
.y18f{bottom:608.952000pt;}
.y106{bottom:609.705333pt;}
.y8c{bottom:612.601333pt;}
.y2a{bottom:613.426667pt;}
.y16e{bottom:614.489333pt;}
.y93{bottom:615.358667pt;}
.yb2{bottom:616.377333pt;}
.y8b{bottom:616.586667pt;}
.yd8{bottom:620.137333pt;}
.y8a{bottom:620.572000pt;}
.y137{bottom:621.794667pt;}
.y1ca{bottom:622.046667pt;}
.y1e7{bottom:623.201333pt;}
.y1ad{bottom:623.513333pt;}
.y89{bottom:624.556000pt;}
.y18e{bottom:626.486667pt;}
.y105{bottom:627.770667pt;}
.y88{bottom:628.541333pt;}
.y14f{bottom:630.686667pt;}
.y29{bottom:630.960000pt;}
.y92{bottom:632.893333pt;}
.yd7{bottom:633.686667pt;}
.yb1{bottom:633.912000pt;}
.y43{bottom:634.016000pt;}
.y16d{bottom:635.356000pt;}
.y9{bottom:636.353333pt;}
.y1c9{bottom:639.581333pt;}
.y87{bottom:640.497333pt;}
.y1e6{bottom:640.736000pt;}
.y1ac{bottom:641.048000pt;}
.y16c{bottom:644.468000pt;}
.y104{bottom:645.305333pt;}
.yd6{bottom:647.236000pt;}
.y28{bottom:648.494667pt;}
.y18d{bottom:650.688000pt;}
.y42{bottom:651.550667pt;}
.y11b{bottom:652.298667pt;}
.y1c8{bottom:657.116000pt;}
.y1e5{bottom:658.269333pt;}
.y1ab{bottom:658.581333pt;}
.y14e{bottom:658.742667pt;}
.yb0{bottom:660.022667pt;}
.yd5{bottom:660.785333pt;}
.y136{bottom:660.834667pt;}
.y103{bottom:663.370667pt;}
.y27{bottom:666.029333pt;}
.y41{bottom:669.085333pt;}
.y85{bottom:674.189333pt;}
.yd4{bottom:674.334667pt;}
.y1c7{bottom:674.649333pt;}
.y1e4{bottom:675.804000pt;}
.y1aa{bottom:676.116000pt;}
.y16b{bottom:676.904000pt;}
.y135{bottom:678.369333pt;}
.y8{bottom:680.321333pt;}
.y26{bottom:683.564000pt;}
.y18c{bottom:684.936000pt;}
.yd3{bottom:688.216000pt;}
.y14d{bottom:689.300000pt;}
.y84{bottom:691.724000pt;}
.y1c6{bottom:692.184000pt;}
.y1e3{bottom:693.338667pt;}
.y40{bottom:697.246667pt;}
.yaf{bottom:699.062667pt;}
.yd2{bottom:702.097333pt;}
.y1a9{bottom:702.226667pt;}
.y16a{bottom:704.825333pt;}
.y25{bottom:706.766667pt;}
.y102{bottom:708.481333pt;}
.y134{bottom:709.186667pt;}
.y83{bottom:709.258667pt;}
.y1c5{bottom:709.718667pt;}
.y18b{bottom:711.048000pt;}
.y3f{bottom:714.780000pt;}
.y14c{bottom:715.410667pt;}
.yd1{bottom:715.978667pt;}
.yae{bottom:716.597333pt;}
.y1e2{bottom:724.156000pt;}
.y24{bottom:724.301333pt;}
.y101{bottom:726.016000pt;}
.y133{bottom:726.721333pt;}
.yd0{bottom:729.860000pt;}
.y169{bottom:731.828000pt;}
.yad{bottom:734.132000pt;}
.y82{bottom:735.369333pt;}
.y1c4{bottom:737.880000pt;}
.y7{bottom:739.494667pt;}
.y1a8{bottom:740.858667pt;}
.y1e1{bottom:741.690667pt;}
.y23{bottom:741.836000pt;}
.y3e{bottom:742.941333pt;}
.y100{bottom:743.550667pt;}
.ycf{bottom:743.741333pt;}
.y18a{bottom:747.165333pt;}
.yac{bottom:751.666667pt;}
.y14b{bottom:754.405333pt;}
.y132{bottom:754.882667pt;}
.y1c3{bottom:755.414667pt;}
.yce{bottom:757.290667pt;}
.y1a7{bottom:758.392000pt;}
.y1e0{bottom:759.225333pt;}
.y22{bottom:759.369333pt;}
.y168{bottom:759.750667pt;}
.y6{bottom:759.950667pt;}
.y3d{bottom:760.476000pt;}
.y189{bottom:766.426667pt;}
.y81{bottom:767.554667pt;}
.yab{bottom:769.200000pt;}
.ycd{bottom:770.840000pt;}
.y1c2{bottom:772.948000pt;}
.y188{bottom:775.537333pt;}
.y1df{bottom:776.760000pt;}
.y21{bottom:776.904000pt;}
.yff{bottom:777.280000pt;}
.y5{bottom:780.408000pt;}
.y77{bottom:780.484000pt;}
.y14a{bottom:782.462667pt;}
.y1a6{bottom:782.472000pt;}
.y131{bottom:783.044000pt;}
.ycc{bottom:784.389333pt;}
.y76{bottom:784.469333pt;}
.y80{bottom:785.089333pt;}
.y167{bottom:785.861333pt;}
.yaa{bottom:786.734667pt;}
.y75{bottom:788.453333pt;}
.yf4{bottom:790.018667pt;}
.y74{bottom:792.438667pt;}
.y187{bottom:793.072000pt;}
.y1de{bottom:794.293333pt;}
.y73{bottom:796.424000pt;}
.ycb{bottom:797.938667pt;}
.yfe{bottom:800.020000pt;}
.y20{bottom:800.108000pt;}
.y72{bottom:800.409333pt;}
.y1c1{bottom:801.109333pt;}
.y7f{bottom:802.624000pt;}
.y71{bottom:804.394667pt;}
.y3c{bottom:805.586667pt;}
.y70{bottom:808.380000pt;}
.y149{bottom:810.520000pt;}
.y186{bottom:810.606667pt;}
.yca{bottom:811.488000pt;}
.ya9{bottom:811.828000pt;}
.y6f{bottom:812.364000pt;}
.yf3{bottom:812.760000pt;}
.y130{bottom:813.861333pt;}
.yfc{bottom:816.093333pt;}
.y6e{bottom:816.349333pt;}
.y1a5{bottom:817.540000pt;}
.y1f{bottom:817.642667pt;}
.y1c0{bottom:818.644000pt;}
.y6d{bottom:820.334667pt;}
.y4{bottom:820.789333pt;}
.y166{bottom:821.480000pt;}
.y6c{bottom:824.320000pt;}
.yc9{bottom:825.036000pt;}
.y185{bottom:828.141333pt;}
.y6b{bottom:828.305333pt;}
.y7e{bottom:829.309333pt;}
.ya8{bottom:829.362667pt;}
.y12f{bottom:831.396000pt;}
.yfd{bottom:832.166667pt;}
.y6a{bottom:832.290667pt;}
.y1a4{bottom:835.074667pt;}
.y1e{bottom:835.176000pt;}
.yf2{bottom:835.500000pt;}
.y1bf{bottom:836.178667pt;}
.y69{bottom:836.274667pt;}
.y148{bottom:838.576000pt;}
.yc8{bottom:838.585333pt;}
.y165{bottom:839.014667pt;}
.y68{bottom:840.260000pt;}
.y3{bottom:840.642667pt;}
.yf1{bottom:843.537333pt;}
.y67{bottom:844.245333pt;}
.y184{bottom:845.674667pt;}
.y7d{bottom:846.842667pt;}
.ya7{bottom:846.897333pt;}
.y66{bottom:848.230667pt;}
.yc7{bottom:852.134667pt;}
.y1a3{bottom:852.609333pt;}
.y1d{bottom:852.710667pt;}
.y1be{bottom:853.713333pt;}
.yfb{bottom:854.908000pt;}
.y52{bottom:856.865333pt;}
.y12e{bottom:857.506667pt;}
.y7c{bottom:864.377333pt;}
.ya6{bottom:864.430667pt;}
.yc6{bottom:865.352000pt;}
.y147{bottom:866.633333pt;}
.y1a2{bottom:870.144000pt;}
.y1c{bottom:870.245333pt;}
.yf9{bottom:870.980000pt;}
.y183{bottom:871.180000pt;}
.y65{bottom:872.141333pt;}
.y2{bottom:872.789333pt;}
.yf0{bottom:874.314667pt;}
.y164{bottom:874.633333pt;}
.y64{bottom:876.126667pt;}
.y63{bottom:880.110667pt;}
.ya5{bottom:881.965333pt;}
.y62{bottom:884.096000pt;}
.y146{bottom:884.168000pt;}
.y1fc{bottom:884.742667pt;}
.y1bd{bottom:886.045333pt;}
.yfa{bottom:887.053333pt;}
.y1a1{bottom:887.677333pt;}
.y1b{bottom:887.780000pt;}
.y61{bottom:888.081333pt;}
.y7b{bottom:891.062667pt;}
.y60{bottom:892.066667pt;}
.y163{bottom:892.168000pt;}
.y5f{bottom:896.052000pt;}
.y12d{bottom:896.546667pt;}
.yef{bottom:897.054667pt;}
.ya4{bottom:899.500000pt;}
.y5e{bottom:900.037333pt;}
.y5d{bottom:904.021333pt;}
.y1a0{bottom:905.212000pt;}
.y1a{bottom:905.313333pt;}
.y182{bottom:906.248000pt;}
.y5c{bottom:908.006667pt;}
.y7a{bottom:908.597333pt;}
.y1{bottom:908.714667pt;}
.yf8{bottom:909.794667pt;}
.y1fb{bottom:910.854667pt;}
.y5b{bottom:911.992000pt;}
.y145{bottom:912.224000pt;}
.yed{bottom:913.128000pt;}
.y12c{bottom:914.081333pt;}
.y5a{bottom:915.977333pt;}
.y162{bottom:919.801333pt;}
.y59{bottom:919.962667pt;}
.y19f{bottom:922.746667pt;}
.y181{bottom:923.782667pt;}
.y58{bottom:923.948000pt;}
.ya3{bottom:925.610667pt;}
.yf6{bottom:925.868000pt;}
.y79{bottom:926.130667pt;}
.y161{bottom:926.666667pt;}
.y57{bottom:927.932000pt;}
.yee{bottom:929.201333pt;}
.y12b{bottom:931.616000pt;}
.y11a{bottom:931.828000pt;}
.y56{bottom:931.917333pt;}
.y1bc{bottom:932.360000pt;}
.y160{bottom:935.778667pt;}
.y55{bottom:935.902667pt;}
.y19{bottom:935.998667pt;}
.y54{bottom:939.888000pt;}
.y144{bottom:940.281333pt;}
.y180{bottom:941.317333pt;}
.yf7{bottom:941.941333pt;}
.y78{bottom:943.665333pt;}
.y119{bottom:949.893333pt;}
.y53{bottom:951.842667pt;}
.yec{bottom:951.942667pt;}
.y18{bottom:962.301333pt;}
.yf5{bottom:964.681333pt;}
.y143{bottom:966.392000pt;}
.y118{bottom:967.428000pt;}
.y17{bottom:1018.702667pt;}
.hb{height:2.125355pt;}
.hf{height:13.735105pt;}
.hd{height:21.200555pt;}
.h17{height:26.519037pt;}
.he{height:29.499997pt;}
.h11{height:29.744538pt;}
.h10{height:33.378918pt;}
.h4{height:33.713664pt;}
.h13{height:36.874903pt;}
.h7{height:37.193707pt;}
.h1b{height:38.043849pt;}
.h8{height:39.850400pt;}
.h9{height:44.632747pt;}
.h5{height:45.525402pt;}
.hc{height:45.799037pt;}
.h6{height:53.559147pt;}
.h2{height:64.270827pt;}
.h3{height:64.454458pt;}
.h12{height:65.857664pt;}
.h15{height:73.907376pt;}
.h14{height:75.791733pt;}
.h18{height:75.797067pt;}
.h1a{height:76.298400pt;}
.ha{height:77.042688pt;}
.h19{height:81.608021pt;}
.h16{height:89.048021pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:132.850667pt;}
.x1a{left:140.820000pt;}
.x2{left:143.720000pt;}
.x16{left:147.640000pt;}
.x9{left:149.085333pt;}
.x1{left:149.985333pt;}
.x2e{left:150.989333pt;}
.xc{left:152.776000pt;}
.x12{left:154.921333pt;}
.x7{left:156.585333pt;}
.x17{left:158.089333pt;}
.xf{left:161.894667pt;}
.xb{left:165.129333pt;}
.xd{left:166.058667pt;}
.x18{left:169.380000pt;}
.xe{left:181.436000pt;}
.x20{left:195.282667pt;}
.x19{left:203.253333pt;}
.x15{left:206.840000pt;}
.x6{left:237.304000pt;}
.x21{left:240.676000pt;}
.x1b{left:243.949333pt;}
.x1c{left:245.814667pt;}
.x29{left:249.144000pt;}
.x22{left:250.580000pt;}
.x2d{left:267.848000pt;}
.x2b{left:277.444000pt;}
.x3{left:297.910667pt;}
.x25{left:319.252000pt;}
.x2f{left:321.341333pt;}
.x2c{left:322.838667pt;}
.x5{left:335.726667pt;}
.x23{left:352.588000pt;}
.x32{left:355.458667pt;}
.x31{left:360.122667pt;}
.x4{left:363.230667pt;}
.x24{left:390.208000pt;}
.xa{left:393.529333pt;}
.x30{left:396.230667pt;}
.x10{left:405.868000pt;}
.x26{left:410.798667pt;}
.x13{left:412.841333pt;}
.x11{left:417.674667pt;}
.x14{left:424.649333pt;}
.x27{left:431.173333pt;}
.x2a{left:439.616000pt;}
.x1d{left:442.381333pt;}
.x28{left:452.426667pt;}
.x1e{left:501.337333pt;}
.x1f{left:503.202667pt;}
}




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